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

8 lines
146 B
Plaintext

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