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