storybook/docs/_snippets/component-styled-variables-template-literals.md
2024-11-17 16:46:37 +00:00

171 B

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