UNPKG

@hmlr/govuk-react-components-library

Version:

These are common component use for React applications based on GDS and govuk-frontend

8 lines (7 loc) 248 B
import { ElementType, HTMLAttributes } from "react"; export interface PanelProps extends HTMLAttributes<HTMLDivElement> { headingLevel?: ElementType; className?: string; titleChildren: React.ReactNode; children?: React.ReactNode; }