Tooltips are used to provide additional information about a component when the user hovers over it.
Hello Tooltip. Hover Me!
import Tooltip from "@radui/ui/Tooltip"
const ToolTipExample = () => (
<Tooltip content="Tooltip content">
Hello Tooltip. Hover Me!
</Tooltip>
)
Note: Tooltips are not supposed to be interactable. If you require the content to be interactable by your users, use a Popover instead.