feat: add asChild in button docs

This commit is contained in:
p-sw 2024-06-02 07:02:44 +09:00
parent bb4803c255
commit e7b05d8472

View File

@ -44,9 +44,9 @@ import { Button } from "@components/Button";
<Button>Button</Button>
```
### Props
## Props
#### Variants
### Variants
| Prop | Type | Default | Description |
| :--- | :--- | :------ | :---------- |
@ -56,6 +56,12 @@ import { Button } from "@components/Button";
| `decoration` | `"none" \| "link"` | `"none"` | The inner text decoration of the button |
| `presets` | `"default" \| "ghost" \| "link" \| "success" \| "warning" \| "danger"` | `"default"` | The preset of the variant props |
### Special
| Prop | Type | Default | Description |
| :--- | :--- | :------ | :---------- |
| `asChild` | `boolean` | `false` | Whether the button is rendered as a child of a component |
## Examples
### Default