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

8 lines
132 B
Plaintext

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