theme-provider.tsx 286 B

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