2025-09-23 13:07:34 +00:00
|
|
|
"use client"
|
|
|
|
|
|
|
|
|
|
import * as React from "react"
|
|
|
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
2025-09-30 11:13:06 +00:00
|
|
|
import type { ThemeProviderProps } from "next-themes"
|
2025-09-23 13:07:34 +00:00
|
|
|
|
|
|
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
|
|
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
|
|
|
|
}
|