<StackTheme />
A component that applies a theme to its children.
For more information, please refer to the color and styles guide.
Props
Prop | Type | Default | Description |
---|---|---|---|
theme optional | ThemeConfig | — | Custom theme configuration to override the default theme. |
children optional | React.ReactNode | — | Child components to be rendered within the themed context. |
Example
const theme = {
light: {
primary: 'red',
},
dark: {
primary: '#00FF00',
},
radius: '8px',
}
// ...
<StackTheme theme={theme}>
{/* children */}
</StackTheme>