Complete configuration for build

This commit is contained in:
2025-08-09 19:09:49 -04:00
parent 689f446806
commit b3803162b4
15 changed files with 107 additions and 31 deletions

View File

@@ -22,7 +22,6 @@ export default function Button(props: ButtonProps){
className,
//Rounding
{
"rounded-none": rounding === "none",
"rounded-sm": rounding === "sm",
"rounded": rounding === "md",
"rounded-lg": rounding === "lg",

View File

@@ -22,7 +22,7 @@ export default function DragAndDropFileInput({
useEffect(() => {
onChange?.(file);
}, [ file ]);
}, [ file, onChange ]);
return (
<label

View File

@@ -35,8 +35,8 @@ export default function RubberSpinner({
className={className}
stroke={stroke}
fill={fill}
stroke-width="3"
stroke-linecap="round"
strokeWidth="3"
strokeLinecap="round"
>
<animate
attributeName="stroke-dasharray"