Files
Rahoot/src/components/Input.jsx
2024-02-01 19:10:40 +01:00

14 lines
278 B
JavaScript

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