Skip to content

Commit

Permalink
fix: make children optional
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <[email protected]>
  • Loading branch information
Innei committed Mar 18, 2024
1 parent 534eb76 commit 882418c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions next-themes/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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
}

0 comments on commit 882418c

Please sign in to comment.