source: src/components/custom-dialog/types.ts

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

add customer

  • Property mode set to 100644
File size: 322 bytes
Line 
1// @mui
2import { DialogProps } from '@mui/material/Dialog';
3
4// ----------------------------------------------------------------------
5
6export type ConfirmDialogProps = Omit<DialogProps, 'title' | 'content'> & {
7 title: React.ReactNode;
8 content?: React.ReactNode;
9 action: React.ReactNode;
10 onClose: VoidFunction;
11};
Note: See TracBrowser for help on using the repository browser.