looood / src /components /theme-provider.tsx
looda3131's picture
Clean push without any binary history
cc276cc
raw
history blame contribute delete
327 Bytes
"use client"
import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
import type { ThemeProviderProps } from "next-themes/dist/types"
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}