/* eslint-disable jsx-a11y/label-has-for */ import React, { ReactNode } from 'react'; import CheckSmall from '../icons/CheckSmall'; import CloseSmall from '../icons/CloseSmall'; interface FieldProps { label?: string; htmlFor: string; children: ReactNode; className?: string; disabled?: boolean; checked?: boolean; error?: boolean; errorMessage?: string; vertical?: boolean; } const Field: React.FC = ({ label, htmlFor, children, className, disabled, checked, error, errorMessage, vertical, }) => { return ( ); }; export default Field;