From 8de1a433c13d94bba2633791215d0a8a3ad2e06d Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 21:00:17 +0900 Subject: [PATCH] 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". --- packages/react/src/docs/components/Tooltip.mdx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/react/src/docs/components/Tooltip.mdx b/packages/react/src/docs/components/Tooltip.mdx index 344fc0d..6df9b91 100644 --- a/packages/react/src/docs/components/Tooltip.mdx +++ b/packages/react/src/docs/components/Tooltip.mdx @@ -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