fbredius/storybook

View on GitHub
docs/snippets/react/component-styled-variables-object-notation.js.mdx

Summary

Maintainability
Test Coverage
```js
// MyComponent.js|jsx

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