storybook/docs/_snippets/component-styled-variables-template-literals.md
2024-06-13 17:53:08 +01:00

172 B

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