storybook/docs/snippets/react/component-styled-variables-object-notation.js.mdx
2022-11-17 16:33:22 +01:00

9 lines
133 B
Plaintext

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