diff --git a/next-themes/src/types.ts b/next-themes/src/types.ts index 1024119..807cec8 100644 --- a/next-themes/src/types.ts +++ b/next-themes/src/types.ts @@ -19,7 +19,7 @@ export interface UseThemeProps { systemTheme?: 'dark' | 'light' | undefined } -export interface ThemeProviderProps { +export interface ThemeProviderProps extends React.PropsWithChildren { /** List of all available theme names */ themes?: string[] | undefined /** Forced theme name for the current page */ @@ -40,6 +40,4 @@ export interface ThemeProviderProps { value?: ValueObject | undefined /** Nonce string to pass to the inline script for CSP headers */ nonce?: string | undefined - /** React children */ - children: React.ReactNode }