mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
2880f8631c
Made a local tooltip component for replicating our tooltip styles wherever we use tooltips. Applied that tooltip to other items that had tooltips.
23 lines
470 B
JavaScript
23 lines
470 B
JavaScript
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
const ReactTooltip = require('react-tooltip-component')
|
|
|
|
module.exports = Tooltip
|
|
|
|
inherits(Tooltip, Component)
|
|
function Tooltip () {
|
|
Component.call(this)
|
|
}
|
|
|
|
Tooltip.prototype.render = function () {
|
|
const props = this.props
|
|
|
|
return h(ReactTooltip, {
|
|
position: 'left',
|
|
title: props.title,
|
|
fixed: false,
|
|
}, props.children)
|
|
|
|
}
|