import { ChangeEventHandler } from "react"; type Props = { label: string; state: boolean; className?: string; onClick: ChangeEventHandler; disabled?: boolean; }; export default function Checkbox({ label, state, className, onClick, disabled, }: Props) { return ( ); }