UNPKG

797 BTypeScriptView Raw
1export interface ImageListItemClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to an `img` element to ensure it covers the item. */
5 img: string;
6 /** Styles applied to the root element if `variant="standard"`. */
7 standard: string;
8 /** Styles applied to the root element if `variant="woven"`. */
9 woven: string;
10 /** Styles applied to the root element if `variant="masonry"`. */
11 masonry: string;
12 /** Styles applied to the root element if `variant="quilted"`. */
13 quilted: string;
14}
15export type ImageListItemClassKey = keyof ImageListItemClasses;
16export declare function getImageListItemUtilityClass(slot: string): string;
17declare const imageListItemClasses: ImageListItemClasses;
18export default imageListItemClasses;