UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

6 lines (5 loc) 441 B
import React, { PropsWithChildren } from 'react'; import { IThemeInformationProvider, IUseThemeInformation, ThemeInformation } from './themeInformation.type'; export declare const ThemeInformationContext: React.Context<ThemeInformation | null>; export declare const ThemeInformationProvider: ({ children, value, }: PropsWithChildren<IThemeInformationProvider>) => JSX.Element; export declare const useThemeInformation: IUseThemeInformation;