Rad UI is under active development and looking for contributors to shape the future of the library. If you'd like to contribute to Rad UI, please check out Getting Started

Tooltips are used to provide additional information about a component when the user hovers over it.

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.