UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

7 lines (6 loc) 275 B
import { ChopLogicThemeMode } from '../../enums'; export interface ChopLogicThemeContextProps { mode?: ChopLogicThemeMode; setMode: (mode: ChopLogicThemeMode) => void; } export declare const ChopLogicThemeContext: import('react').Context<ChopLogicThemeContextProps>;