Blame view

天文台pc/tianwentai-ui/node_modules/@mui/material/esm/CssBaseline/CssBaseline.d.ts 867 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  import * as React from 'react';
  import { StyledComponentProps } from "../styles/index.js";
  export interface CssBaselineProps extends StyledComponentProps<never> {
    /**
     * You can wrap a node.
     */
    children?: React.ReactNode;
    /**
     * Enable `color-scheme` CSS property to use `theme.palette.mode`.
     * For more details, check out https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme
     * For browser support, check out https://caniuse.com/?search=color-scheme
     * @default false
     */
    enableColorScheme?: boolean;
  }
  
  /**
   * Kickstart an elegant, consistent, and simple baseline to build upon.
   *
   * Demos:
   *
   * - [CSS Baseline](https://mui.com/material-ui/react-css-baseline/)
   *
   * API:
   *
   * - [CssBaseline API](https://mui.com/material-ui/api/css-baseline/)
   */
  export default function CssBaseline(props: CssBaselineProps): React.JSX.Element;