mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-02 08:32:41 +00:00
yay for waindows pathing
This commit is contained in:
21
shared/naturalcrit2/logo/logo.jsx
Normal file
21
shared/naturalcrit2/logo/logo.jsx
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user