@sky-mavis/tanto-widget
Version:
Tanto Widget
8 lines (7 loc) • 391 B
TypeScript
import { type PropsWithChildren } from 'react';
import type { TantoWidgetCustomTheme, TantoWidgetTheme } from '../../types/theme';
export interface ThemeProviderProps {
theme?: TantoWidgetTheme['mode'];
customThemeToken?: TantoWidgetCustomTheme;
}
export declare function ThemeProvider(props: PropsWithChildren<ThemeProviderProps>): import("@emotion/react/jsx-runtime").JSX.Element;