@gravity-ui/uikit
Version:
Gravity UI base styling and components
9 lines (8 loc) • 327 B
TypeScript
import * as React from 'react';
import type { RealTheme } from "./types.js";
export type ThemeSettings = {
systemLightTheme: RealTheme;
systemDarkTheme: RealTheme;
};
export type ThemeSettingsContextProps = ThemeSettings | undefined;
export declare const ThemeSettingsContext: React.Context<ThemeSettingsContextProps>;