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

9 lines
133 B
Plaintext

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