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.
21 lines
1.0 KiB
TypeScript
21 lines
1.0 KiB
TypeScript
export interface SnackbarClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the root element if `anchorOrigin={{ 'top', 'center' }}`. */
|
|
anchorOriginTopCenter: string;
|
|
/** Styles applied to the root element if `anchorOrigin={{ 'bottom', 'center' }}`. */
|
|
anchorOriginBottomCenter: string;
|
|
/** Styles applied to the root element if `anchorOrigin={{ 'top', 'right' }}`. */
|
|
anchorOriginTopRight: string;
|
|
/** Styles applied to the root element if `anchorOrigin={{ 'bottom', 'right' }}`. */
|
|
anchorOriginBottomRight: string;
|
|
/** Styles applied to the root element if `anchorOrigin={{ 'top', 'left' }}`. */
|
|
anchorOriginTopLeft: string;
|
|
/** Styles applied to the root element if `anchorOrigin={{ 'bottom', 'left' }}`. */
|
|
anchorOriginBottomLeft: string;
|
|
}
|
|
export type SnackbarClassKey = keyof SnackbarClasses;
|
|
export declare function getSnackbarUtilityClass(slot: string): string;
|
|
declare const snackbarClasses: SnackbarClasses;
|
|
export default snackbarClasses;
|