0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 07:02:38 +00:00
Files
homebrewery/shared/naturalCrit/logo/logo.jsx

16 lines
322 B
JavaScript

var React = require('react');
var Icon = require('naturalCrit/icon.svg.jsx');
var Logo = React.createClass({
render : function(){
return <a className='logo' {... this.props} href='/'>
<Icon />
<span className='name'>
Natural<span className='crit'>Crit</span>
</span>
</a>
}
});
module.exports = Logo;