You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
432 B
TypeScript
11 lines
432 B
TypeScript
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;
|