import { Checkbox, CheckboxProps, Field, Label } from '@headlessui/react'; import { CheckIcon } from '@heroicons/react/24/solid'; type CheckboxFieldProps = CheckboxProps & { label: string; name: string; }; const CheckboxField = ({ label, name, ...props }: CheckboxFieldProps) => { return ( {/* Checkmark icon */} ); }; export default CheckboxField;