Files
Rahoot/src/components/Input.jsx
2024-01-31 20:06:10 +01:00

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}
/>
)
}