From 6349e5cf908b2a06f8c959cff31b9f157da007bc Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 19 May 2024 15:23:52 +0900 Subject: [PATCH] feat: add presets in button --- packages/react/components/Button.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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