From 180cae69af1da5d845671ee89c85f6e8b42e21c7 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 28 Jun 2024 11:53:53 +0900 Subject: [PATCH] fix: add cursor-pointer in button to change cursor to pointer --- packages/react/components/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index 586027b..951c336 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -26,7 +26,7 @@ const colors = { }; 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`, + 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 cursor-pointer`, variants: { size: { link: "p-0 text-base",