UNPKG

razor-shared-library

Version:
13 lines (12 loc) 482 B
import { PropsWithChildren, ReactElement, ReactNode } from 'react'; import { DialogProps } from '@mui/material/Dialog'; interface Props { handleClose?: () => void; title?: string; actions?: ReactNode; open: boolean; headerColor?: string; headerFontColor?: string; } export declare function DialogCustom({ handleClose, title, actions, open, headerColor, headerFontColor, children, ...props }: PropsWithChildren<DialogProps & Props>): ReactElement; export {};