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.

19 lines (18 loc) 805 B
export interface ImageListItemClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to an `img` element to ensure it covers the item. */ img: string; /** Styles applied to the root element if `variant="standard"`. */ standard: string; /** Styles applied to the root element if `variant="woven"`. */ woven: string; /** Styles applied to the root element if `variant="masonry"`. */ masonry: string; /** Styles applied to the root element if `variant="quilted"`. */ quilted: string; } export declare type ImageListItemClassKey = keyof ImageListItemClasses; export declare function getImageListItemUtilityClass(slot: string): string; declare const imageListItemClasses: ImageListItemClasses; export default imageListItemClasses;