@lapilli-ui/styles v1.0.0-beta.6
Lapilli UI - Styles
A styling solution for React components, by using @emotion/styled and one or more themes.
This allows you to customize the style of your components in different contexts.
Installation
Install the module
npm install @lapilli-ui/styles @emotion/react @emotion/styled --saveKey concepts
Styled
Use the styled function to create styled versions of your components.
This will use the @emotion/styled library under the wood.
In this way, you have access to the global theme object, to retrieve params from that (e.g. colors, spacing, and so on...)
In addition, this will allow your styled components to use the sx prop to receive CSS customization.
Theme Provider
You can easily customize the style of your components or only for a specific "section", by using the ThemeProvider to configure the theme options.
const theme = {
palette:
{
primary: {
main : '#2470ff',
light : '#70aaff',
contrastText: '#ffffff'
}
}
};
<ThemeProvider theme={theme}>
<Button>Click me</Button>
</ThemeProvider>CSS classes utils
You can use our functions to easily create CSS classes for your components:
- generateComponentClasses
- mergeComponentClasses
- generateComponentSlotClasses
Documentation
See the main Lapilli UI website for the list of available components, API and usage documentation.
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago