@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) • 311 B
TypeScript
import { ReactNode } from 'react';
import { Theme } from './theme-type.ts';
export declare function ThemeProvider<TCustomColors extends Record<string, string> = Record<string, never>>({ theme, children }: {
theme?: Theme<TCustomColors>;
children: ReactNode;
}): import("react/jsx-runtime").JSX.Element;