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

CE-3627: Add AlertType enum

parent 88204db6
No related branches found
No related tags found
1 merge request!220CE-3627: Migrate alertbanner
import { Alert, Button, Grid } from "@mui/material"; import { Alert, Button, Grid } from "@mui/material";
import { useUniqueKeys } from "../../../hooks/useUniqueKeys"; import { useUniqueKeys } from "../../../hooks/useUniqueKeys";
export type AlertTypes = "ERROR" | "WARNING" | "INFO" | "SUCCESS"; enum AlertTypes {
INFO = "INFO",
SUCCESS = "SUCCESS",
WARNING = "WARNING",
ERROR = "ERROR"
}
type LowercaseAlertTypes = Lowercase<AlertTypes>; type LowercaseAlertTypes = Lowercase<AlertTypes>;
export interface AlertBannerProps { export interface AlertBannerProps {
type?: AlertTypes; 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