storybook/docs/snippets/react/component-styled-variables-object-notation.js.mdx
2021-06-28 23:00:33 +01:00

8 lines
146 B
Plaintext

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