0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 02:42:39 +00:00
Files
homebrewery/shared/naturalcrit2/logo/logo.jsx
2016-05-06 14:29:44 -04: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;