mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-03-13 20:15:35 +01:00
First Commit
This commit is contained in:
13
src/components/Input.jsx
Normal file
13
src/components/Input.jsx
Normal 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}
|
||||
/>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user