UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

22 lines 868 B
export interface DrawerClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `variant="permanent or persistent"`. */ docked: string; /** Styles applied to the Paper component. */ paper: string; /** Styles applied to the root element if `anchor="left"`. */ anchorLeft: string; /** Styles applied to the root element if `anchor="right"`. */ anchorRight: string; /** Styles applied to the root element if `anchor="top"`. */ anchorTop: string; /** Styles applied to the root element if `anchor="bottom"`. */ anchorBottom: string; /** Styles applied to the Modal component. */ modal: string; } export type DrawerClassKey = keyof DrawerClasses; export declare function getDrawerUtilityClass(slot: string): string; declare const drawerClasses: DrawerClasses; export default drawerClasses;