Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@chakra-ui/tooltip) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Tooltip
Use this component to display extra information about an element by displaying a floating description.
Installation
yarn add @chakra-ui/tooltip
# or
npm i @chakra-ui/tooltip
Import components
import { Tooltip } from "@chakra-ui/react"
Usage
If the children
of Tooltip is a string, it will be wrapped with a focusable
span
element to ensure the Tooltip meets accessibility requirements.
<Tooltip label="Hey, I'm here!">Hover me</Tooltip>