UNPKG

@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) 226 B
import { ReactNode } from 'react'; import { Theme } from './theme-type.ts'; export declare function ThemeProvider({ theme, children }: { theme?: Theme; children: ReactNode; }): import("react/jsx-runtime").JSX.Element;