@ozen-ui/kit
Version:
React component library
9 lines (8 loc) • 376 B
TypeScript
import type { Theme, ThemeSettings } from './entities';
export type OzenThemeContextValue = {
theme: Theme;
settings: ThemeSettings;
};
export declare const OzenThemeContextDefaultValue: OzenThemeContextValue;
export declare const OzenThemeContext: import("react").Context<OzenThemeContextValue>;
export declare const useOzenThemeContext: () => OzenThemeContextValue;