Type Alias: ChakraThemeProviderProps
ChakraThemeProviderProps =
object
Defined in: chakra/ChakraThemeProvider.tsx:111
Properties
children?
optionalchildren?:React.ReactNode
Defined in: chakra/ChakraThemeProvider.tsx:112
overrides?
optionaloverrides?:Parameters<typeofcreateSystem>[1]
Defined in: chakra/ChakraThemeProvider.tsx:137
Optional Chakra-specific config overrides. Use this to add recipes, slot recipes, or customize tokens.
Example
<ChakraProvider
overrides={{
theme: {
slotRecipes: {
steps: stepsSlotRecipe,
},
},
}}
>
...
</ChakraProvider>
themeUITheme?
optionalthemeUITheme?:Theme
Defined in: chakra/ChakraThemeProvider.tsx:117
Optional Theme UI theme to use instead of reading from context. Useful when you need to pass a specific theme directly.