UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

19 lines (18 loc) 617 B
import { BaseAlert } from "../../base-alert"; type GlobalAlertContentProps = BaseAlert.ContentProps; /** * @see 🏷️ {@link GlobalAlertContentProps} * @example * ```jsx * <GlobalAlert> * <GlobalAlert.Header> * <GlobalAlert.Title>Info title</GlobalAlert.Title> * </GlobalAlert.Header> * * <GlobalAlert.Content>Content</GlobalAlert.Content> * </GlobalAlert> * ``` */ declare const GlobalAlertContent: import("react").ForwardRefExoticComponent<BaseAlert.ContentProps & import("react").RefAttributes<HTMLDivElement>>; export { GlobalAlertContent }; export type { GlobalAlertContentProps };