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 ( ); },