@asphalt-react/theme-provider
Version:
Theme provider for Asphalt React
56 lines (37 loc) • 1.33 kB
Markdown

[](https://badge.fury.io/js/@asphalt-react%2Ftheme-provider)
ThemeProvider allows you to theme your app. You can even nest ThemeProviders to apply a theme on just a section of your app as well.
> ⚠️ ThemeProvider only works in [secure contexts](https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts)
```jsx
import { ThemeProvider } from "@asphalt-react/theme-provider"
import { Button } from "@asphalt-react/button"
const customTheme = {
// your theme tokens
}
function App() {
return (
<ThemeProvider theme={customTheme}>
<Button>Click me</Button>
</ThemeProvider>
)
}
```
[]:
React node or node tree to apply theme to.
| type | required | default |
| ---- | -------- | ------- |
| node | true | N/A |
Asphalt Theme object.
| type | required | default |
| ------ | -------- | --------------- |
| object | false | legacyVariables |
Html element/React component to render as container.
| type | required | default |
| ----------- | -------- | ------- |
| elementType | false | "div" |