UNPKG

@launchmenu/core

Version:

An environment for visual keyboard controlled applets

18 lines 483 B
import React, { FC, ReactNode } from "react"; import { ITheme } from "./_types/ITheme"; /** * A context for the LaunchMenu theme */ export declare const ThemeContext: React.Context<ITheme>; /** * Retrieves the theme for the application */ export declare const useTheme: () => ITheme; /** * The provider for the theme context */ export declare const ThemeProvider: FC<{ theme?: ITheme; children: ReactNode; }>; //# sourceMappingURL=ThemeContext.d.ts.map