UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

17 lines (16 loc) 562 B
import { BaseAlert } from "../../base-alert"; type InfoCardHeaderProps = BaseAlert.HeaderProps; /** * @see 🏷️ {@link InfoCardHeaderProps} * @example * ```jsx * <InfoCard> * <InfoCard.Header icon={<InformationSquareIcon aria-hidden />}> * <InfoCard.Title>Info title</InfoCard.Title> * </InfoCard.Header> * </InfoCard> * ``` */ declare const InfoCardHeader: import("react").ForwardRefExoticComponent<BaseAlert.HeaderProps & import("react").RefAttributes<HTMLDivElement>>; export { InfoCardHeader }; export type { InfoCardHeaderProps };