From 9573fd1e1a4d201c0ee671ec4fdbfd3a2f21e42e Mon Sep 17 00:00:00 2001 From: p-sw Date: Thu, 4 Jul 2024 14:18:33 +0900 Subject: [PATCH] fix: add type in Button --- packages/react/components/Button.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index 40158d4..3310d6a 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -111,18 +111,16 @@ export interface ButtonProps const Button = React.forwardRef( (props, ref) => { const [variantProps, otherPropsCompressed] = resolveVariants(props); - const { asChild, ...otherPropsExtracted } = otherPropsCompressed; + const { asChild, type, ...otherPropsExtracted } = otherPropsCompressed; const Comp = asChild ? Slot : "button"; - const compProps = { - ...otherPropsExtracted, - className: buttonVariants(variantProps), - }; return ( ); },