diff --git a/components/action-tooltip.js b/components/action-tooltip.js new file mode 100644 index 00000000..652d98ba --- /dev/null +++ b/components/action-tooltip.js @@ -0,0 +1,17 @@ +import { OverlayTrigger, Tooltip } from 'react-bootstrap' + +export default function ActionTooltip ({ children }) { + return ( + + 1 sat + + } + trigger={['hover', 'focus', 'active']} + > + {children} + + ) +}