storybook/docs/snippets/react/component-styled-variables-object-notation.js.mdx
2021-11-06 03:20:29 +00:00

8 lines
132 B
Plaintext

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