@hakuna-matata-ui/tooltip
v1.4.3
Published
A React Component for rendering dynamically positioned Tooltips
Downloads
8
Maintainers
Readme
Tooltip
Use this component to display extra information about an element by displaying a floating description.
Installation
yarn add @hakuna-matata-ui/tooltip
# or
npm i @hakuna-matata-ui/tooltipImport components
import { Tooltip } from "@hakuna-matata-ui/react"Usage
If the children of Tooltip is a string, we wrap with in a span with
tabIndex set to 0, to ensure it meets the accessibility requirements.
<Tooltip label="Hey, I'm here!">Hover me</Tooltip>