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

13
src/components/Input.jsx Normal file
View File

@@ -0,0 +1,13 @@
import clsx from "clsx"
export default function Input({ className, ...otherProps }) {
return (
<input
className={clsx(
"outline outline-gray-300 outline-2 rounded-sm p-2 font-semibold text-lg",
className
)}
{...otherProps}
/>
)
}