1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 02:58:09 +01:00
metamask-extension/ui/app/components/drop-menu-item.js

30 lines
641 B
JavaScript
Raw Normal View History

2016-05-18 23:36:35 +02: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 22:18:32 +02:00
function DropMenuItem () {
2016-05-18 23:36:35 +02:00
Component.call(this)
}
2016-06-21 22:18:32 +02:00
DropMenuItem.prototype.render = function () {
2016-05-18 23:36:35 +02:00
return h('li.drop-menu-item', {
2016-06-21 22:18:32 +02:00
onClick: () => {
2016-05-18 23:36:35 +02:00
this.props.closeMenu()
this.props.action()
},
style: {
listStyle: 'none',
padding: '6px 16px 6px 5px',
2016-05-18 23:36:35 +02:00
fontFamily: 'Transat Medium',
color: 'rgb(125, 128, 130)',
cursor: 'pointer',
},
}, [
this.props.icon,
this.props.label,
])
}