UNPKG

photoncss

Version:

Go from 0 to app in seconds

10 lines (9 loc) 275 B
import { ReactNode } from "react"; import { Theme } from "../util/theme"; declare type Props = { theme?: string | Theme; global?: boolean; children?: ReactNode; }; export declare function ThemeProvider({ theme, global, children }: Props): JSX.Element; export {};