Blame view

天文台pc/tianwentai-ui/node_modules/@mui/private-theming/ThemeProvider/ThemeProvider.d.ts 336 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
  import { DefaultTheme } from "../defaultTheme/index.js";
  export interface ThemeProviderProps<Theme = DefaultTheme> {
    children?: React.ReactNode;
    theme: Partial<Theme> | ((outerTheme: Theme) => Theme);
  }
  export default function ThemeProvider<T = DefaultTheme>(props: ThemeProviderProps<T>): React.ReactElement<ThemeProviderProps<T>>;