mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-26 23:44:19 +00:00
19 lines
425 B
TypeScript
19 lines
425 B
TypeScript
'use client';
|
|
|
|
import { ThemeProvider as NextThemesProvider } from 'next-themes';
|
|
import { type ThemeProviderProps } from 'next-themes';
|
|
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
|
return (
|
|
<NextThemesProvider
|
|
attribute="class"
|
|
defaultTheme="system"
|
|
enableSystem
|
|
disableTransitionOnChange
|
|
{...props}
|
|
>
|
|
{children}
|
|
</NextThemesProvider>
|
|
);
|
|
}
|