UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

10 lines 423 B
export interface DialogContentClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `dividers={true}`. */ dividers: string; } export type DialogContentClassKey = keyof DialogContentClasses; export declare function getDialogContentUtilityClass(slot: string): string; declare const dialogContentClasses: DialogContentClasses; export default dialogContentClasses;