theme-provider.tsx 292 B

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