UNPKG

@ogasphere/theme-manager

Version:

A reusable theme management package for Next.js and Vite applications

10 lines 384 B
import type { ReactNode } from "react"; type ThemeProviderProps = { children: ReactNode; defaultTheme?: string; attribute?: string; enableSystem?: boolean; }; export declare function ThemeProvider({ children, defaultTheme, attribute, enableSystem, }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=theme-provider.d.ts.map