Convert VectorAuthHeaderLogo to modern code style

pull/8528/head
J. Ryan Stinnett 2019-02-11 16:14:34 +00:00
parent 86ced4cdad
commit 18d898cc1f
1 changed files with 9 additions and 11 deletions

View File

@ -22,20 +22,18 @@ import PropTypes from 'prop-types';
const LOGO_URI = "themes/riot/img/logos/riot-im-logo-black-text.svg";
module.exports = React.createClass({
displayName: 'VectorAuthHeaderLogo',
statics: {
replaces: 'AuthHeaderLogo',
},
propTypes: {
icon: PropTypes.string,
},
export default class VectorAuthHeaderLogo extends React.PureComponent {
static replaces = 'AuthHeaderLogo'
render: function() {
static propTypes = {
icon: PropTypes.string,
}
render() {
return (
<div className="mx_AuthHeaderLogo">
<img src={LOGO_URI} alt="Riot" />
</div>
);
},
});
}
}