Blame view

天文台pc/tianwentai-ui/node_modules/@mui/system/Container/containerClasses.d.ts 917 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  export interface ContainerClasses {
    /** Styles applied to the root element. */
    root: string;
    /** Styles applied to the root element if `disableGutters={true}`. */
    disableGutters: string;
    /** Styles applied to the root element if `fixed={true}`. */
    fixed: string;
    /** Styles applied to the root element if `maxWidth="xs"`. */
    maxWidthXs: string;
    /** Styles applied to the root element if `maxWidth="sm"`. */
    maxWidthSm: string;
    /** Styles applied to the root element if `maxWidth="md"`. */
    maxWidthMd: string;
    /** Styles applied to the root element if `maxWidth="lg"`. */
    maxWidthLg: string;
    /** Styles applied to the root element if `maxWidth="xl"`. */
    maxWidthXl: string;
  }
  export type ContainerClassKey = keyof ContainerClasses;
  export declare function getContainerUtilityClass(slot: string): string;
  declare const containerClasses: ContainerClasses;
  export default containerClasses;