Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
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;
|