mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-16 05:04:41 +08:00
19 lines
425 B
TypeScript
19 lines
425 B
TypeScript
'use client';
|
|
|
|
import type { ThemeProviderProps } from 'next-themes';
|
|
import { ThemeProvider as NextThemesProvider } from 'next-themes';
|
|
import * as React from 'react';
|
|
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
|
return (
|
|
<NextThemesProvider
|
|
attribute='class'
|
|
defaultTheme='system'
|
|
enableSystem
|
|
{...props}
|
|
>
|
|
{children}
|
|
</NextThemesProvider>
|
|
);
|
|
}
|