UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

18 lines (17 loc) 589 B
import React from "react"; import { BaseAlert } from "../../base-alert"; type GlobalAlertHeaderProps = Omit<BaseAlert.HeaderProps, "icon">; /** * @see 🏷️ {@link GlobalAlertHeaderProps} * @example * ```jsx * <GlobalAlert status="success"> * <GlobalAlert.Header> * <GlobalAlert.Title>Info title</GlobalAlert.Title> * </GlobalAlert.Header> * </GlobalAlert> * ``` */ declare const GlobalAlertHeader: React.ForwardRefExoticComponent<GlobalAlertHeaderProps & React.RefAttributes<HTMLDivElement>>; export { GlobalAlertHeader }; export type { GlobalAlertHeaderProps };