2024-04-06 19:03:04 -04:00
|
|
|
"use client"
|
|
|
|
|
|
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
|
|
|
import { type ThemeProviderProps } from "next-themes/dist/types"
|
|
|
|
|
|
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
|
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
|
|
|
}
|
2024-10-23 10:51:50 +01:00
|
|
|
|