@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) • 438 B
TypeScript
export interface MenuClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the Paper component. */
paper: string;
/** Styles applied to the List component via `MenuList`. */
list: string;
}
export declare type MenuClassKey = keyof MenuClasses;
export declare function getMenuUtilityClass(slot: string): string;
declare const menuClasses: MenuClasses;
export default menuClasses;