import { Checkbox } from '@headlessui/react'; import { CheckIcon } from '@heroicons/react/16/solid'; export type CheckboxButtonProps = { text: string; checked: boolean; onChange: React.Dispatch>; }; const CheckboxButton = ({ text, checked, onChange }: CheckboxButtonProps) => { const handleCheckboxChange = (value: boolean) => { onChange(value); }; return (

{text}

); }; export default CheckboxButton;