UNPKG

dgz-ui-shared

Version:

Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript, dgz-ui library

9 lines 389 B
import { type ReactNode } from "react"; import { ThemeMode } from "../enums"; export type ThemeProviderProps = { children: ReactNode; defaultTheme?: ThemeMode; storageKey?: string; }; export declare function ThemeProvider({ children, defaultTheme, storageKey, ...props }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ThemeProvider.d.ts.map