1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-08-24 20:13:51 +02:00
ntfy/web/src/components/DialogFooter.jsx

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

32 lines
742 B
React
Raw Normal View History

2022-03-29 21:22:26 +02: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) => (
<Box
2023-05-24 09:03:28 +02:00
sx={{
2022-03-29 21:22:26 +02:00
display: "flex",
flexDirection: "row",
justifyContent: "space-between",
paddingLeft: "24px",
2022-04-04 01:51:32 +02:00
paddingBottom: "8px",
2023-05-24 09:03:28 +02:00
}}
>
2022-05-03 21:09:20 +02:00
<DialogContentText
component="div"
aria-live="polite"
2022-03-29 21:22:26 +02:00
sx={{
margin: "0px",
paddingTop: "12px",
2022-04-04 01:51:32 +02:00
paddingBottom: "4px",
2022-03-29 21:22:26 +02:00
}}
>
{props.status}
</DialogContentText>
2022-04-04 01:51:32 +02:00
<DialogActions sx={{ paddingRight: 2 }}>{props.children}</DialogActions>
2022-03-29 21:22:26 +02:00
</Box>
);
export default DialogFooter;