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

@@ -12,7 +12,6 @@ const DangerSwitch = forwardRef<HTMLButtonElement, MattrixwvSwitchProps>(({
}, ref ) => {
return (
<MattrixwvSwitch
{...props}
className={clsx(
"bg-neutral-mid",
className,
@@ -30,6 +29,7 @@ const DangerSwitch = forwardRef<HTMLButtonElement, MattrixwvSwitchProps>(({
)}
disabled={disabled}
ref={ref}
{...props}
/>
);
});