UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

10 lines (9 loc) 314 B
import React from "react"; export declare type ThemeProviderProps = React.PropsWithChildren<{ theme: "light" | "dark"; }>; export declare const ThemeProvider: (props: ThemeProviderProps) => JSX.Element; export declare const useTheme: () => { theme: "light" | "dark"; variables: Map<string, string>; };