0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 18:12:40 +00:00
Files
homebrewery/shared/naturalCrit/logo/logo.jsx
2016-01-11 17:00:21 -05:00

22 lines
396 B
JavaScript

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