deepsite / vortex-executor /components /theme-provider.tsx
Velaric's picture
Upload 71 files
0459956 verified
raw
history blame
292 Bytes
'use client'
import * as React from 'react'
import {
ThemeProvider as NextThemesProvider,
type ThemeProviderProps,
} from 'next-themes'
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}