manifold/web/components/checkbox.tsx
Sinclair Chen 095af10d4f replace raw checkbox w/ Checkbox component
also run prettier
2022-07-13 16:50:08 -07:00

34 lines
899 B
TypeScript

import clsx from 'clsx'
export function Checkbox(props: {
label: string
checked: boolean
toggle: (checked: boolean) => void
className?: string
disabled?: boolean
}) {
const { label, checked, toggle, className, disabled } = props
return (
<div className={clsx(className, 'space-y-5')}>
<div className="relative flex items-center">
<div className="flex h-6 items-center">
<input
id={label}
type="checkbox"
className="h-5 w-5 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500"
checked={checked}
onChange={(e) => toggle(!e.target.checked)}
disabled={disabled}
/>
</div>
<div className="ml-3">
<label htmlFor={label} className="font-medium text-gray-700">
{label}
</label>
</div>
</div>
</div>
)
}