rsnext/packages/next-swc/crates/styled_components/tests/fixtures/use-namespace/code.js

24 lines
342 B
JavaScript
Raw Normal View History

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``