fix: add link size in Button
This commit is contained in:
parent
2633c525c3
commit
3e49b03129
@ -29,6 +29,7 @@ const [buttonVariants, resolveVariants] = vcn({
|
||||
base: `w-fit flex flex-row items-center justify-between rounded-md outline outline-1 outline-transparent outline-offset-2 ${colors.outline.focus} transition-all`,
|
||||
variants: {
|
||||
size: {
|
||||
link: "p-0 text-base",
|
||||
sm: "px-2 py-1 text-sm",
|
||||
md: "px-4 py-2 text-base",
|
||||
lg: "px-5 py-3 text-lg",
|
||||
@ -77,7 +78,7 @@ const [buttonVariants, resolveVariants] = vcn({
|
||||
border: "none",
|
||||
background: "transparent",
|
||||
decoration: "link",
|
||||
size: "md",
|
||||
size: "link",
|
||||
},
|
||||
success: {
|
||||
border: "success",
|
||||
|
@ -50,7 +50,7 @@ import { Button } from "@components/Button";
|
||||
|
||||
| Prop | Type | Default | Description |
|
||||
| :--- | :--- | :------ | :---------- |
|
||||
| `size` | `"sm" \| "md" \| "lg" \| "icon"` | `"md"` | The size of the button |
|
||||
| `size` | `"link" \| "sm" \| "md" \| "lg" \| "icon"` | `"md"` | The size of the button |
|
||||
| `border` | `"none" \| "solid" \| "success" \| "warning" \| "danger"` | `"solid"` | The border color of the button |
|
||||
| `background` | `"default" \| "ghost" \| "success" \| "warning" \| "danger" \| "transparent"` | `"default"` | The background color of the button |
|
||||
| `decoration` | `"none" \| "link"` | `"none"` | The inner text decoration of the button |
|
||||
|
Loading…
x
Reference in New Issue
Block a user