mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-11-03 18:18:56 +01:00
9 lines
295 B
TypeScript
9 lines
295 B
TypeScript
"use client"
|
|
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
|
import type * as React from "react"
|
|
|
|
export function ThemeProvider({ children, ...props }: React.ComponentProps<typeof NextThemesProvider>) {
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
|
}
|