@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.
12 lines • 417 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 type MenuClassKey = keyof MenuClasses;
export declare function getMenuUtilityClass(slot: string): string;
declare const menuClasses: MenuClasses;
export default menuClasses;