@plasma-ui/core
v1.3.5
Published
Plasma-ui
Downloads
65
Maintainers
Readme
Plasma ui is a component library for building reliable, beautiful and fully accessible React apps.
yarn add @plasma-ui/core @emotion/core @emotion/styled emotion-theming
How to use
Plasma UI has a peer dependency on emotion. Wrap your top level component with ThemeProvider from emotion-theming and pass down the theme from Plasma-ui so you can use our theme.
import { ThemeProvider } from "emotion-theming";
import { theme } from "@plasma-ui/core";
export default () => (
<ThemeProvider theme={theme}>
<App>. . .</App>
</ThemeProvider>
);
Documentation
See the official website for full documentation, recipes, and more.