import { Field } from 'formik'; import React from 'react'; import tw from 'twin.macro'; import Label from '@/components/elements/Label'; interface Props { id: string; name: string; label?: string; className?: string; } const Checkbox = ({ id, name, label, className }: Props) => (
{label &&
}
); export default Checkbox;