UNPKG

@waweb/uikit.theme.theme-provider

Version:
12 lines (11 loc) 387 B
/** @format */ import { HTMLAttributes } from "react"; import { ColorScheme } from "./theme"; import "./sass/main.scss"; export declare type ThemeProviderProps = { /** * primary color of theme. */ colorScheme?: ColorScheme; } & HTMLAttributes<HTMLDivElement>; export declare function ThemeProvider({ colorScheme, children, ...props }: ThemeProviderProps): JSX.Element;