2025-09-21 12:03:29 +01:00
|
|
|
'use client';
|
2024-10-11 18:00:22 +05:30
|
|
|
|
2025-09-21 12:03:29 +01:00
|
|
|
import { ThemeProvider as NextThemesProvider } from 'next-themes';
|
|
|
|
|
import type { ThemeProviderProps } from 'next-themes/dist/types';
|
2024-10-11 18:00:22 +05:30
|
|
|
|
|
|
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
|
|
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
|
|
|
|
}
|