feat(Tooltip): add "status" prop

The tooltip component now includes a new "status" property. This property determines the color of the tooltip, with options including "normal", "error", "success" and "warning".
This commit is contained in:
p-sw 2024-06-11 21:00:17 +09:00
parent 5dd74e4b3f
commit 8de1a433c1

View File

@ -60,10 +60,11 @@ import { Tooltip, TooltipContent } from "@components/Tooltip";
#### Variants
| 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 |
| 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 |
| `status` | `"normal" \| "error" \| "success" \| "warning"` | `"normal"` | Color of tooltip |
## Examples