mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
10 lines
341 B
TypeScript
10 lines
341 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
|
//@ts-ignore
|
|
import { type ThemeProviderProps } from "next-themes/dist/types"
|
|
|
|
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
|
} |