baseui
Version:
A React Component library implementing the Base design language
9 lines (8 loc) • 297 B
TypeScript
import * as React from 'react';
import type { Theme } from './types';
export declare const ThemeContext: React.Context<Theme>;
export type ThemeProviderProps = {
theme: Theme;
};
declare const ThemeProvider: React.FC<React.PropsWithChildren<ThemeProviderProps>>;
export default ThemeProvider;