theme-provider.tsx 284 B

1234567
  1. "use client"
  2. import { ThemeProvider as NextThemesProvider } from "next-themes"
  3. import type { ThemeProviderProps } from "next-themes"
  4. export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
  5. return <NextThemesProvider {...props}>{children}</NextThemesProvider>
  6. }