source: src/components/custom-dialog/confirm-dialog.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 938 bytes
Line 
1// @mui
2import Button from '@mui/material/Button';
3import Dialog from '@mui/material/Dialog';
4import DialogTitle from '@mui/material/DialogTitle';
5import DialogActions from '@mui/material/DialogActions';
6import DialogContent from '@mui/material/DialogContent';
7//
8import { ConfirmDialogProps } from './types';
9
10// ----------------------------------------------------------------------
11
12export default function ConfirmDialog({
13 title,
14 content,
15 action,
16 open,
17 onClose,
18 ...other
19}: ConfirmDialogProps) {
20 return (
21 <Dialog fullWidth maxWidth="xs" open={open} onClose={onClose} {...other}>
22 <DialogTitle sx={{ pb: 2 }}>{title}</DialogTitle>
23
24 {content && <DialogContent sx={{ typography: 'body2' }}> {content} </DialogContent>}
25
26 <DialogActions>
27 {action}
28
29 <Button variant="outlined" color="inherit" onClick={onClose}>
30 Cancel
31 </Button>
32 </DialogActions>
33 </Dialog>
34 );
35}
Note: See TracBrowser for help on using the repository browser.