@hmlr/govuk-react-components-library
Version:
These are common component use for React applications based on GDS and govuk-frontend
13 lines (12 loc) • 355 B
TypeScript
import { ElementType } from "react";
export interface NotificationBannerProps {
type: "success" | "error" | "info" | "warning";
titleChildren?: string;
titleHeadingLevel?: ElementType;
children: React.ReactNode;
className?: string;
titleId?: string;
role?: string;
disableAutoFocus?: boolean;
[key: string]: unknown;
}