import { FC, ReactNode } from 'react'; interface LabeledFormGroupProps { label: ReactNode; noMargin?: boolean; className?: string; labelClassName?: string; } export const LabeledFormGroup: FC = ( { children, label, className = '', labelClassName = '', noMargin = false }, ) => (
{children}
);