DocSpace-client/packages/asc-web-components/theme-provider
2021-02-26 00:19:45 +03:00
..
index.js Web: Components: changed component hierarchy 2021-02-24 17:42:09 +03:00
README.md Web: Components/Common: fix imports 2021-02-26 00:19:45 +03:00
theme-provider.js Web: applied new import from appserver/components 2021-02-24 20:11:23 +03:00
theme-provider.stories.js Web: Components/Common: fix imports 2021-02-26 00:19:45 +03:00
theme-provider.test.js Web: Components: changed component hierarchy 2021-02-24 17:42:09 +03:00

ThemeProvider

Custom theme provider based on Theme Provider.

List of themes:

You can change the CSS styles in the theme, and they will be applied to all children components of ThemeProvider

Usage

import ThemeProvider from "@appserver/components/theme-provider";
import Themes from "@appserver/components/themes";
const newTheme = {...Themes.Base, color: "red"}

<ThemeProvider theme={newTheme}>
  <Box>
    <Text>Base theme</Text>
  </Box>
</ThemeProvider>;

ThemeProvider Properties

Props Type Required Values Default Description
theme object - Base styles Applies a theme to all children components