feat: add presets in button

This commit is contained in:
p-sw 2024-05-19 15:23:52 +09:00
parent 2caa5dbea8
commit 6349e5cf90

View File

@ -32,6 +32,26 @@ const [buttonVariants, resolveVariants] = vcn({
background: "default",
decoration: "none",
},
presets: {
default: {
border: "solid",
background: "default",
decoration: "none",
size: "md",
},
ghost: {
border: "none",
background: "ghost",
decoration: "none",
size: "md",
},
link: {
border: "none",
background: "link",
decoration: "link",
size: "md",
},
},
});
export interface ButtonProps