UNPKG

3.3 kBTypeScriptView Raw
1export interface ImageListItemBarClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `position="bottom"`. */
5 positionBottom: string;
6 /** Styles applied to the root element if `position="top"`. */
7 positionTop: string;
8 /** Styles applied to the root element if `position="below"`. */
9 positionBelow: string;
10 /** Styles applied to the action container element if `actionPosition="left"`. */
11 actionPositionLeft: string;
12 /** Styles applied to the action container element if `actionPosition="right"`. */
13 actionPositionRight: string;
14 /** Styles applied to the title and subtitle container element. */
15 titleWrap: string;
16 /** Styles applied to the title and subtitle container element if `position="below"`.
17 * @deprecated Combine the [.MuiImageListItemBar-titleWrap](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-titleWrap) and [.MuiImageListItemBar-positionBelow](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-positionBelow) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
18 */
19 titleWrapBelow: string;
20 /** Styles applied to the container element if `actionPosition="left"`.
21 * @deprecated Combine the [.MuiImageListItemBar-titleWrap](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-titleWrap) and [.MuiImageListItemBar-actionPositionLeft](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-actionPositionLeft) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
22 */
23 titleWrapActionPosLeft: string;
24 /** Styles applied to the container element if `actionPosition="right"`.
25 * @deprecated Combine the [.MuiImageListItemBar-titleWrap](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-titleWrap) and [.MuiImageListItemBar-actionPositionRight](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-actionPositionRight) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
26 */
27 titleWrapActionPosRight: string;
28 /** Styles applied to the title container element. */
29 title: string;
30 /** Styles applied to the subtitle container element. */
31 subtitle: string;
32 /** Styles applied to the actionIcon if supplied. */
33 actionIcon: string;
34 /** Styles applied to the actionIcon if `actionPosition="left"`.
35 * @deprecated Combine the [.MuiImageListItemBar-actionIcon](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-actionIcon) and [.MuiImageListItemBar-actionPositionLeft](/material-ui/api/image-list-item-bar/#image-list-item-bar-classes-actionPositionLeft) classes instead. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
36 */
37 actionIconActionPosLeft: string;
38}
39export type ImageListItemBarClassKey = keyof ImageListItemBarClasses;
40export declare function getImageListItemBarUtilityClass(slot: string): string;
41declare const imageListItemBarClasses: ImageListItemBarClasses;
42export default imageListItemBarClasses;