mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-06 10:21:05 +02:00
* mui v5 wip * wip * wip * wip * use compressor for all controlplane endpoints * wip * wip * add deps * fix authenticate URL * fix test * fix test * fix build * maybe fix build * fix integration test * remove image asset test * add yarn.lock
30 lines
901 B
TypeScript
30 lines
901 B
TypeScript
import Alert, { AlertColor } from "@mui/material/Alert";
|
|
import Dialog, { DialogProps } from "@mui/material/Dialog";
|
|
import DialogActions from "@mui/material/DialogActions";
|
|
import DialogContent from "@mui/material/DialogContent";
|
|
import DialogTitle from "@mui/material/DialogTitle";
|
|
import React, { FC } from "react";
|
|
|
|
export type AlertDialogProps = DialogProps & {
|
|
title?: React.ReactNode;
|
|
severity?: AlertColor;
|
|
actions?: React.ReactNode;
|
|
};
|
|
export const AlertDialog: FC<AlertDialogProps> = ({
|
|
title,
|
|
severity,
|
|
children,
|
|
actions,
|
|
...props
|
|
}) => {
|
|
return (
|
|
<Dialog transitionDuration={{ exit: 0 }} {...props}>
|
|
<DialogTitle>{title}</DialogTitle>
|
|
<DialogContent>
|
|
<Alert severity={severity || "info"}>{children}</Alert>
|
|
</DialogContent>
|
|
{actions ? <DialogActions>{actions}</DialogActions> : <></>}
|
|
</Dialog>
|
|
);
|
|
};
|
|
export default AlertDialog;
|