File size: 321 Bytes
4f8c3bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
export default function Checkbox({ className = '', ...props }) {
return (
<input
{...props}
type="checkbox"
className={
'rounded border-gray-300 text-indigo-600 shadow-sm focus:ring-indigo-500 ' +
className
}
/>
);
}
|