UNPKG

@material-ui/unstyled

Version:

Unstyled React components with which to implement custom design systems.

11 lines (10 loc) 445 B
export interface ModalUnstyledClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if the `Modal` has exited. */ hidden: string; } export declare type ModalUnstyledClassKey = keyof ModalUnstyledClasses; export declare function getModalUtilityClass(slot: string): string; declare const modalUnstyledClasses: ModalUnstyledClasses; export default modalUnstyledClasses;