UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

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