import { ThemeProvider as NextThemeProvider, type ThemeProviderProps, } from "next-themes" import type { FC } from "react" export const ThemeProvider: FC = ({ children, attribute, ...props }) => ( {children} )