@jigoooo/shared-ui
Version:
A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.
7 lines (6 loc) • 332 B
TypeScript
import { ReactNode } from 'react';
import { Theme, CustomThemeExtensions } from './theme-type.ts';
export declare function ThemeProvider<TCustomTheme extends CustomThemeExtensions = Record<string, never>>({ theme, children, }: {
theme?: Theme<TCustomTheme>;
children: ReactNode;
}): import("react/jsx-runtime").JSX.Element;