You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
596 B
28 lines
596 B
const inherits = require('util').inherits
|
|
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
|
|
|
|
inherits(NetworkDropdownIcon, Component)
|
|
module.exports = NetworkDropdownIcon
|
|
|
|
function NetworkDropdownIcon () {
|
|
Component.call(this)
|
|
}
|
|
|
|
NetworkDropdownIcon.prototype.render = function () {
|
|
const {
|
|
backgroundColor,
|
|
isSelected,
|
|
innerBorder = 'none',
|
|
} = this.props
|
|
|
|
return h(`.menu-icon-circle${isSelected ? '--active' : ''}`, {},
|
|
h('div', {
|
|
style: {
|
|
background: backgroundColor,
|
|
border: innerBorder,
|
|
},
|
|
})
|
|
)
|
|
}
|
|
|