diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index 1b96158..8f3cc97 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -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