[dyad] Fixing a build error - wrote 1 file(s)

This commit is contained in:
[dyad]
2026-01-19 08:02:39 +01:00
parent c624e5b57a
commit 5bdbcbf7cc

View File

@@ -1,8 +1,7 @@
"use client" "use client"
import * as React from "react" import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes" import { ThemeProvider as NextThemesProvider, type ThemeProviderProps } from "next-themes"
import { type ThemeProviderProps } from "next-themes/dist/types"
export function ThemeProvider({ children, ...props }: ThemeProviderProps) { export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider> return <NextThemesProvider {...props}>{children}</NextThemesProvider>