From caf28f340aa4a23ee4b2b63be41c8208843c6773 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 19 May 2024 11:07:40 +0900 Subject: [PATCH] fix: use ComponentPropsWithoutRef for native element props --- 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 3ba739e..01bc64a 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -26,7 +26,7 @@ const variants = vcn({ }); export interface ButtonProps - extends React.ButtonHTMLAttributes, + extends Omit, "className">, VariantProps {} const Button = React.forwardRef(