@teravn/onui
Version:
The React UI component library is based on MUI
23 lines (22 loc) • 618 B
TypeScript
import { OwnerStateThemeType } from './';
declare const Dialog: () => {
MuiDialog: {
defaultProps: {
container: () => HTMLElement | null;
};
styleOverrides: {
root: ({ theme }: OwnerStateThemeType) => {
'& .MuiDialogContent-root': {
padding: string;
};
'& .MuiDialogTitle-root': {
padding: number;
};
'& .MuiDialogActions-root': {
padding: string;
};
};
};
};
};
export default Dialog;