feat: 氧化铝数字孪生系统监控大屏完成

This commit is contained in:
2026-04-08 21:44:08 +08:00
commit a48babc68d
67606 changed files with 3337335 additions and 0 deletions

View File

@@ -0,0 +1,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;