@hmlr/govuk-react-components-library
Version:
These are common component use for React applications based on GDS and govuk-frontend
13 lines (12 loc) • 352 B
TypeScript
export interface LegendProps {
children: React.ReactNode;
className?: string;
isPageHeading?: boolean;
}
export interface FieldsetProps extends React.FieldsetHTMLAttributes<HTMLFieldSetElement> {
className?: string;
legend?: LegendProps;
children: React.ReactNode;
"aria-describedby"?: string;
[key: string]: unknown;
}