diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index 3ad8f67..6ac6cb5 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -111,7 +111,8 @@ export interface ButtonProps const Button = React.forwardRef( (props, ref) => { const [variantProps, otherPropsCompressed] = resolveVariants(props); - const { asChild, type, ...otherPropsExtracted } = otherPropsCompressed; + const { asChild, type, role, ...otherPropsExtracted } = + otherPropsCompressed; const Comp = asChild ? Slot : "button"; @@ -120,6 +121,7 @@ const Button = React.forwardRef( ref={ref} type={type ?? "button"} className={buttonVariants(variantProps)} + role={role ?? "button"} {...otherPropsExtracted} /> );