@mui/material
Version:
Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.
13 lines (12 loc) • 544 B
TypeScript
export interface SnackbarContentClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the message wrapper element. */
message: string;
/** Styles applied to the action wrapper element if `action` is provided. */
action: string;
}
export declare type SnackbarContentClassKey = keyof SnackbarContentClasses;
export declare function getSnackbarContentUtilityClass(slot: string): string;
declare const snackbarContentClasses: SnackbarContentClasses;
export default snackbarContentClasses;