2025-09-21 11:02:31 -07:00
|
|
|
"use client";
|
2024-10-11 18:00:22 +05:30
|
|
|
|
2025-09-21 11:02:31 -07:00
|
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes";
|
|
|
|
|
import type { ThemeProviderProps } from "next-themes/dist/types";
|
2024-10-11 18:00:22 +05:30
|
|
|
|
|
|
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
|
|
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
|
|
|
|
}
|