storybook/docs/snippets/react/component-styled-variables-template-literals.js.mdx
2020-08-09 20:26:34 +01:00

6 lines
109 B
Plaintext

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