1.4.3 • Published 4 years ago
@hakuna-matata-ui/tooltip v1.4.3
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>