Skip to content

Styling breaks when using passed prop with backticks helpers #81

@pjg

Description

@pjg

Minimal reproducible testcase:

import styled from 'styled-components'

const media = {}

const Container = styled.main`
  padding: 10px;

  transform: translateX(var(--menu-${({ state }) => state}-width));

  ${media.md`
    transform: translateX(0);
  `}
`

const Content = () => {
  const state = 'open'

  return <Container state={state}>X</Container>
}

export default Content

Results in the following breaking of styling right after the backtick for the styled component definition (for the rest of the file):

image

(media is an external helper that I just replaced with an empty object for the purpose of documenting this issue).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions