UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

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