import type { FC, PropsWithChildren, ReactNode } from 'react'; type LabeledFormGroupProps = PropsWithChildren<{ label: ReactNode; noMargin?: boolean; className?: string; labelClassName?: string; id?: string; }>; /* eslint-disable jsx-a11y/label-has-associated-control */ export const LabeledFormGroup: FC = ( { children, label, className = '', labelClassName = '', noMargin = false, id }, ) => (
{children}
);