ntfy/web/src/components/DialogFooter.jsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
802 B
React
Raw Normal View History

2022-03-30 08:22:26 +13:00
import * as React from "react";
import Box from "@mui/material/Box";
import DialogContentText from "@mui/material/DialogContentText";
import DialogActions from "@mui/material/DialogActions";
const DialogFooter = (props) => {
return (
<Box
sx={{
display: "flex",
flexDirection: "row",
justifyContent: "space-between",
paddingLeft: "24px",
2022-04-04 11:51:32 +12:00
paddingBottom: "8px",
2022-03-30 08:22:26 +13:00
}}
>
2022-05-04 07:09:20 +12:00
<DialogContentText
component="div"
aria-live="polite"
sx={{
margin: "0px",
paddingTop: "12px",
paddingBottom: "4px",
}}
>
2022-03-30 08:22:26 +13:00
{props.status}
</DialogContentText>
2022-04-04 11:51:32 +12:00
<DialogActions sx={{ paddingRight: 2 }}>{props.children}</DialogActions>
2022-03-30 08:22:26 +13:00
</Box>
);
};
export default DialogFooter;