First Commit

This commit is contained in:
Ralex91
2024-01-31 20:06:10 +01:00
commit e122fe1078
58 changed files with 6853 additions and 0 deletions

15
src/components/Button.jsx Normal file
View File

@@ -0,0 +1,15 @@
import clsx from "clsx"
export default function Button({ children, className, ...otherProps }) {
return (
<button
className={clsx(
"p-2 bg-primary rounded-md text-white font-semibold text-lg btn-shadow",
className
)}
{...otherProps}
>
<span>{children}</span>
</button>
)
}