UNPKG

@cgi-learning-hub/ui

Version:

@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features

7 lines (6 loc) 232 B
import { DialogProps as MUIDialogProps } from '@mui/material/Dialog'; export type DialogProps = { showCloseButton?: boolean; } & MUIDialogProps; declare const Dialog: React.FunctionComponent<DialogProps>; export default Dialog;