"use client" import type * as React from "react" import { ThemeProvider as NextThemesProvider } from "next-themes" export { useTheme } from "next-themes" type ThemeProviderProps = React.ComponentProps export function ThemeProvider({ children, ...props }: ThemeProviderProps) { return {children} }