UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines (9 loc) 464 B
import React from "react"; import type { AkselColor } from "../../../types"; import type { BaseAlertContextProps } from "../root/BaseAlertRoot.context"; declare function baseAlertStatusToDataColor(status: BaseAlertContextProps["status"]): AkselColor; declare function BaseAlertStatusIcon({ status, fill, }: { status: BaseAlertContextProps["status"]; fill?: boolean; }): React.JSX.Element | null; export { BaseAlertStatusIcon, baseAlertStatusToDataColor };