aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tooltip.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-06-30 08:12:08 +0800
committerkumavis <aaron@kumavis.me>2016-06-30 08:12:08 +0800
commit41598a32a6fcecaeff5d90ada881bc4cfd52c08f (patch)
tree3e0fddda3ffaf59c7752f1bd38b5a2aabec5ad25 /ui/app/components/tooltip.js
parent94768175bf7630e9f8fd590181cb7816fd0ece7d (diff)
parentf7bb3cdcfebacc3f3970b469503db202e0bdda28 (diff)
downloadtangerine-wallet-browser-41598a32a6fcecaeff5d90ada881bc4cfd52c08f.tar.gz
tangerine-wallet-browser-41598a32a6fcecaeff5d90ada881bc4cfd52c08f.tar.zst
tangerine-wallet-browser-41598a32a6fcecaeff5d90ada881bc4cfd52c08f.zip
Merge branch 'master' of github.com:MetaMask/metamask-plugin into networkIndication
Diffstat (limited to 'ui/app/components/tooltip.js')
-rw-r--r--ui/app/components/tooltip.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/ui/app/components/tooltip.js b/ui/app/components/tooltip.js
new file mode 100644
index 000000000..4eab8611e
--- /dev/null
+++ b/ui/app/components/tooltip.js
@@ -0,0 +1,22 @@
+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)
+
+}