storybook/docs/snippets/react/component-styled-variables-object-notation.js.mdx
2020-10-07 12:23:34 +08:00

8 lines
128 B
Plaintext

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