Skip to content

v1.13.2-test.1

Pre-release
Pre-release

Choose a tag to compare

@quantizor quantizor released this 06 Jul 15:52
· 48 commits to main since this release

Teach the plugin how to handle namespace import syntax properly, fixes #315 e.g.

import * as styled from 'styled-components'

const css = styled.css`
  background: black;
`

const GlobalStyle = styled.createGlobalStyle`
  html {
    background: black;
  }
`

const Test = styled.default.div`
  color: red;
`

const before = styled.default.div`
  color: blue;
`

styled.default.div``

export default styled.default.button``