UNPKG

@konstructio/ui

Version:

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

8 lines (7 loc) 185 B
import { Theme } from '../../domain/theme'; type ThemeProps = { theme?: Theme; setTheme?: (theme: Theme) => void; }; export declare const useTheme: () => ThemeProps; export {};