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