mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
32 lines
640 B
JavaScript
32 lines
640 B
JavaScript
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
|
|
module.exports = DropMenuItem
|
|
|
|
|
|
inherits(DropMenuItem, Component)
|
|
function DropMenuItem() {
|
|
Component.call(this)
|
|
}
|
|
|
|
DropMenuItem.prototype.render = function() {
|
|
|
|
return h('li.drop-menu-item', {
|
|
onClick:() => {
|
|
this.props.closeMenu()
|
|
this.props.action()
|
|
},
|
|
style: {
|
|
listStyle: 'none',
|
|
padding: '6px 16px 6px 5px',
|
|
fontFamily: 'Transat Medium',
|
|
color: 'rgb(125, 128, 130)',
|
|
cursor: 'pointer',
|
|
},
|
|
}, [
|
|
this.props.icon,
|
|
this.props.label,
|
|
])
|
|
}
|