Update prop expansion on components

This commit is contained in:
2026-02-12 21:30:04 -05:00
parent 45ff84b106
commit f40845723d
34 changed files with 34 additions and 34 deletions

View File

@@ -19,7 +19,6 @@ const Button = forwardRef<HTMLButtonElement, ButtonProps>(({
data-testid="mattrixwv-button"
ref={ref}
type={type}
{...buttonProps}
disabled={disabled}
className={clsx(
className,
@@ -57,6 +56,7 @@ const Button = forwardRef<HTMLButtonElement, ButtonProps>(({
"cursor-not-allowed opacity-75": disabled
}
)}
{...buttonProps}
/>
);
});