mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-03-13 20:15:35 +01:00
14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
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}
|
|
/>
|
|
)
|
|
}
|