UNPKG

@konstructio/ui

Version:

A set of reusable and customizable React components built for konstruct.io

7 lines (6 loc) 214 B
import { Theme } from '../../domain/theme'; export type ThemeContextType = { theme: Theme; setTheme: (theme: Theme) => void; }; export declare const ThemeContext: import('react').Context<ThemeContextType>;