storybook/docs/snippets/react/component-styled-variables-object-notation.js.mdx
2020-08-09 20:26:34 +01:00

8 lines
128 B
Plaintext

```js
// MyComponent.js
const Component = styled.div(({ theme }) => ({
background: theme.background.app,
width: 0,
}));
```