Skip to content
Snippets Groups Projects
Commit 88204db6 authored by Max Frederiksen's avatar Max Frederiksen
Browse files

CE-3627: Export AlertTypes

parent 8697d918
No related branches found
No related tags found
1 merge request!220CE-3627: Migrate alertbanner
import { Alert, Button, Grid } from "@mui/material";
import { useUniqueKeys } from "../../../hooks/useUniqueKeys";
type AlertTypes = "ERROR" | "WARNING" | "INFO" | "SUCCESS";
export type AlertTypes = "ERROR" | "WARNING" | "INFO" | "SUCCESS";
type LowercaseAlertTypes = Lowercase<AlertTypes>;
export interface AlertBannerProps {
type?: AlertTypes;
......
......@@ -2,12 +2,14 @@ import {
AlertBanner,
AlertBannerList,
type AlertBannerListProps,
type AlertBannerProps
type AlertBannerProps,
type AlertTypes
} from "./AlertBanner";
export {
AlertBanner,
AlertBannerList,
type AlertBannerListProps,
type AlertBannerProps
type AlertBannerProps,
type AlertTypes
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment