import React, { ChangeEvent, ReactNode } from 'react' import { CheckIcon } from '@heroicons/react/20/solid' interface CheckboxProps { checked: boolean children: ReactNode onChange: (x: ChangeEvent) => void disabled?: boolean halfState?: boolean labelClass?: string } const Checkbox = ({ checked, children, disabled = false, halfState = false, labelClass, ...props }: CheckboxProps) => ( ) export default Checkbox