nifty-wallet/ui/app/components/drop-menu-item.js

30 lines
645 B
JavaScript
Raw Normal View History

2016-05-18 14:36:35 -07:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
module.exports = DropMenuItem
inherits(DropMenuItem, Component)
2016-06-21 13:18:32 -07:00
function DropMenuItem () {
2016-05-18 14:36:35 -07:00
Component.call(this)
}
2016-06-21 13:18:32 -07:00
DropMenuItem.prototype.render = function () {
2016-05-18 14:36:35 -07:00
return h('li.drop-menu-item', {
2016-06-21 13:18:32 -07:00
onClick: () => {
2016-05-18 14:36:35 -07:00
this.props.closeMenu()
this.props.action()
},
style: {
listStyle: 'none',
padding: '6px 16px 6px 5px',
2016-06-22 15:31:02 -07:00
fontFamily: 'Montserrat Regular',
2016-05-18 14:36:35 -07:00
color: 'rgb(125, 128, 130)',
cursor: 'pointer',
},
}, [
this.props.icon,
this.props.label,
])
}