UNPKG

kitchen-color-studio

Version:

an open-source color editor for designing color system

9 lines (8 loc) 294 B
import { type ThemeMode } from 'antd-style'; import { type ReactNode } from 'react'; export interface ThemeProviderProps { children: ReactNode; themeMode?: ThemeMode; } declare const ThemeProvider: import("react").NamedExoticComponent<ThemeProviderProps>; export default ThemeProvider;