mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-26 20:22:42 +00:00
22 lines
396 B
JavaScript
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;
|