@wise/components-theming
Version:
Provides theming support for the Wise Design system components
7 lines • 412 B
TypeScript
import { PropsWithChildren } from 'react';
import type { Theming } from './const';
export type ThemeProviderProps = PropsWithChildren<Theming> & {
className?: string;
};
export declare const ThemeProvider: ({ theme: initialTheme, screenMode: initialScreenMode, isNotRootProvider: isLocal, children, className, }: ThemeProviderProps) => import("react").JSX.Element;
//# sourceMappingURL=ThemeProvider.d.ts.map