2015-12-01 16:27:23 +00:00
|
|
|
/*
|
2016-01-07 04:17:56 +00:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-01-21 18:40:34 -06:00
|
|
|
Copyright 2019 New Vector Ltd
|
2015-12-01 16:27:23 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-10-11 16:46:05 +01:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2015-12-01 16:27:23 +00:00
|
|
|
|
2019-02-01 13:04:48 -06:00
|
|
|
const LOGO_URI = "themes/riot/img/logos/riot-im-logo-black-text.svg";
|
2017-04-21 17:03:31 +01:00
|
|
|
|
2015-12-01 16:27:23 +00:00
|
|
|
module.exports = React.createClass({
|
2019-01-22 21:53:46 -06:00
|
|
|
displayName: 'VectorAuthHeaderLogo',
|
2015-12-01 18:31:13 +00:00
|
|
|
statics: {
|
2019-01-22 21:53:46 -06:00
|
|
|
replaces: 'AuthHeaderLogo',
|
2015-12-01 18:31:13 +00:00
|
|
|
},
|
2017-01-27 16:08:14 +00:00
|
|
|
propTypes: {
|
2017-10-11 16:46:05 +01:00
|
|
|
icon: PropTypes.string,
|
2017-01-27 16:08:14 +00:00
|
|
|
},
|
2015-12-01 16:27:23 +00:00
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
2019-01-22 21:53:46 -06:00
|
|
|
<div className="mx_AuthHeaderLogo">
|
2019-02-01 13:04:48 -06:00
|
|
|
<img src={LOGO_URI} alt="Riot" />
|
2015-12-01 16:27:23 +00:00
|
|
|
</div>
|
|
|
|
);
|
2018-11-22 18:25:55 +00:00
|
|
|
},
|
2015-12-01 16:27:23 +00:00
|
|
|
});
|