@expertbridge-ui/style
v2.0.0
Published
Component styles for Expertbridge
Downloads
2
Readme
@expertbridge-ui/style
Provides a style object containing a variety of style parameters for theming Expertbridge components with Emotion. See SIP-37 for additional context. This will eventually allow for custom themes to override default Expertbridge styles. These parameters (and the styled-components/emotion design pattern) will, over time, be used to whittle away at widely-scoped LESS styles, making it easier to build and (re)style Expertbridge components.
Usage
import { styled, expertbridgeTheme, ThemeProvider } from '@expertbridge-ui/style';
// use emotion api as normal, but the theme uses the correct types
const MyHeader = styled.h1`
color: ${props => props.theme.colors.primary.base};
font-family: sans-serif;
`
class App extends React.Component {
render() {
return (
<ThemeProvider theme={expertbridgeTheme}>
<MyHeader>Properly styled text!</MyHeader>
</ThemeProvider>
);
}
}
Note: the ThemeProvider
is already included in the project's Storybook
(as a decorator) meaning you should be able to apply/view any new Emotion-based theme attributes and see them reflected in the storybook without any additional setup.