Tooltips provide additional context or information about an element when users hover or focus on it. They help improve user experience by explaining functionality without cluttering the interface.
Hello Tooltip. Hover Me!
The wrapper component that provides context for the tooltip.
Prop | Type | Default |
---|---|---|
defaultOpen | boolean | false |
open | boolean | -- |
onOpenChange | function | -- |
delayDuration | number | 700 |
The element that triggers the tooltip. Must be an interactive element.
Prop | Type | Default |
---|---|---|
asChild | boolean | false |
The content displayed inside the tooltip.
Prop | Type | Default |
---|---|---|
side | enum | top |
sideOffset | number | 5 |
align | enum | center |
alignOffset | number | 0 |
avoidCollisions | boolean | true |
className | string | -- |
Shortcut | Description |
---|---|
Tab | Moves focus to the trigger element. |
Space | When focus is on the trigger, toggles the tooltip. |
Enter | When focus is on the trigger, toggles the tooltip. |
Escape | Dismisses an open tooltip. |