feat: replace prop description to table

This commit is contained in:
p-sw 2024-06-02 02:07:23 +09:00
parent a905ca1aaf
commit ab3ecd0d55

View File

@ -46,22 +46,15 @@ import { Button } from "@components/Button";
### Props ### Props
* `<Button />` #### Variants
- `size`: `"sm" | "md" | "lg" | "icon"`
* defaults to `"md"` | Prop | Type | Default | Description |
* padding & text size | :--- | :--- | :------ | :---------- |
- `border`: `"none" | "solid" | "success" | "warning" | "danger"` | `size` | `"sm" \| "md" \| "lg" \| "icon"` | `"md"` | The size of the button |
* defaults to `"solid"` | `border` | `"none" \| "solid" \| "success" \| "warning" \| "danger"` | `"solid"` | The border color of the button |
* border colors | `background` | `"default" \| "ghost" \| "success" \| "warning" \| "danger" \| "transparent"` | `"default"` | The background color of the button |
- `background`: `"default" | "ghost" | "success" | "warning" | "danger" | "transparent"` | `decoration` | `"none" \| "link"` | `"none"` | The inner text decoration of the button |
* defaults to `"default"` | `presets` | `"default" \| "ghost" \| "link" \| "success" \| "warning" \| "danger"` | `"default"` | The preset of the variant props |
* background colors
- `decoration`: `"none" | "link"`
* defaults to `"none"`
* inner text decorations
- `presets`: `"default" | "ghost" | "link" | "success" | "warning" | "danger"`
* defaults to `"default"`
* preset of variant props
## Examples ## Examples