filament_inventory/resources/js/Components/Checkbox.jsx
2026-06-01 18:28:36 +02:00

12 lines
324 B
JavaScript

export default function Checkbox({ className = '', ...props }) {
return (
<input
{...props}
type="checkbox"
className={
'rounded-sm border-gray-300 text-indigo-600 shadow-xs focus:ring-indigo-500 ' +
className
}
/>
);
}