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