({ children, ...props }: ThemeProviderProps)
| 5 | import { type ThemeProviderProps } from "next-themes/dist/types"; |
| 6 | |
| 7 | export function ThemeProvider({ children, ...props }: ThemeProviderProps) { |
| 8 | return <NextThemesProvider {...props}>{children}</NextThemesProvider>; |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected