Repository URL to install this package:
|
Version:
0.0.4 ▾
|
import React from 'react';
import { CustomTheme, Mode, Theme } from './../../types';
declare type ContextValue = {
theme: Theme;
mode: Mode;
customTheme: CustomTheme | undefined;
};
declare type ConnectKitThemeProviderProps = {
children?: React.ReactNode;
theme?: Theme;
mode?: Mode;
customTheme?: CustomTheme | undefined;
};
export declare const ConnectKitThemeProvider: React.FC<ConnectKitThemeProviderProps>;
export declare const useThemeContext: () => ContextValue;
export {};