import {Dispatch, SetStateAction} from "react"; interface CheckBoxProps { isChecked: boolean; setIsChecked: Dispatch>; label: string; description: string; id: string; } export default function CheckBox( { isChecked, setIsChecked, label, description, id, }: CheckBoxProps) { return (
setIsChecked(!isChecked)} className="hidden" />

{description}

) }