A React Component for rendering dynamically positioned Tooltips
npm install @chakra-ui/tooltipUse this component to display extra information about an element by displaying a
floating description.
``sh
yarn add @chakra-ui/tooltip
npm i @chakra-ui/tooltip
`
`js`
import { Tooltip } from "@chakra-ui/react"
If the children of Tooltip is a string, it will be wrapped with a focusablespan element to ensure the Tooltip meets accessibility requirements.
`jsx``