UNPKG

422 BTypeScriptView Raw
1import * as React from 'react';
2import { DefaultTheme } from '@mui/system';
3export interface ThemeProviderNoVarsProps<Theme = DefaultTheme> {
4 children?: React.ReactNode;
5 theme: Partial<Theme> | ((outerTheme: Theme) => Theme);
6}
7export default function ThemeProviderNoVars<Theme = DefaultTheme>({ theme: themeInput, ...props }: ThemeProviderNoVarsProps<Theme>): React.ReactElement<ThemeProviderNoVarsProps<Theme>>;
8
\No newline at end of file