UNPKG

@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.

17 lines (16 loc) 684 B
export interface ImageListClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `variant="masonry"`. */ masonry: string; /** Styles applied to the root element if `variant="quilted"`. */ quilted: string; /** Styles applied to the root element if `variant="standard"`. */ standard: string; /** Styles applied to the root element if `variant="woven"`. */ woven: string; } export declare type ImageListClassKey = keyof ImageListClasses; export declare function getImageListUtilityClass(slot: string): string; declare const imageListClasses: ImageListClasses; export default imageListClasses;