import { classNames } from '@app/utils/classes' import { DetailedHTMLProps, FC, LabelHTMLAttributes, PropsWithChildren, } from 'react' interface LabelProps extends DetailedHTMLProps< LabelHTMLAttributes, HTMLLabelElement > { visible?: boolean disabled?: boolean // is the input disabled id?: string } export const FormControl: FC> = ({ disabled, htmlFor, visible, id, children, className, }) => { return ( ) }