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