import { ReactNode } from 'react'; import classnames from 'classnames'; import style from './InternalFieldset.css'; import boxStyles from '../Box.css'; import formStyles from '../sharedSubcomponents/FormElement.css'; import FormErrorMessage from '../sharedSubcomponents/FormErrorMessage'; import FormHelperText from '../sharedSubcomponents/FormHelperText'; import Text from '../Text'; import whitespaceStyles from '../Whitespace.css'; type Props = { children: ReactNode; id?: string; errorMessage?: string; legend: string; legendDisplay?: 'visible' | 'hidden'; helperText?: string; marginTop?: boolean; }; export default function InternalFieldset({ id, errorMessage, legend, legendDisplay, children, helperText, marginTop, }: Props) { return (
); } InternalFieldset.displayName = 'InternalFieldset';