Added tests for buttons

This commit is contained in:
2025-11-17 23:08:37 -05:00
parent 7d9d0bdf73
commit 91c8169e97
22 changed files with 3342 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ export default function Button(props: ButtonProps){
return (
<button
data-testid="mattrixwv-button"
{...buttonProps}
disabled={disabled}
className={clsx(
@@ -23,7 +24,7 @@ export default function Button(props: ButtonProps){
//Rounding
{
"rounded-sm": rounding === "sm",
"rounded": rounding === "md",
"rounded-md": rounding === "md",
"rounded-lg": rounding === "lg",
"rounded-full": rounding === "full"
},