aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/drop-menu-item.js
blob: c8e61278c1c94f0f3e2b2aff1aebe43817d3a95b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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,
  ])
}