docs(Tooltip): add delay prop in docs

The documentation for the Tooltip component in the react package has been updated to include a new 'delay' prop. This prop controls the time between hover start and the appearance of the tooltip.
This commit is contained in:
p-sw 2024-06-11 19:23:48 +09:00
parent b28e5d1c8d
commit ea987ad590

View File

@ -58,9 +58,10 @@ import { Tooltip, TooltipContent } from "@components/Tooltip";
#### Variants
| Prop | Type | Default | Description |
|:---------|:-----------------------|:--------|:-----------------------------------------|
| `offset` | `"sm" \| "md" \| "lg"` | `"md"` | Gap between the tooltip and the trigger. |
| Prop | Type | Default | Description |
|:---------|:------------------------------------------|:-----------|:---------------------------------------------------|
| `offset` | `"sm" \| "md" \| "lg"` | `"md"` | Gap between the tooltip and the trigger. |
| `delay` | `"none" \| "early" \| "normal" \| "late"` | `"normal"` | The time between hover start and appear of tooltip |
## Examples