mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
|
import { ThemeProviderProps } from "next-themes/dist/types"
|
|
|
|
export function ThemeProvider({ children }: ThemeProviderProps) {
|
|
return <NextThemesProvider>{children}</NextThemesProvider>
|
|
}
|