rsnext/packages/next-swc/crates/styled_components/tests/fixtures/.minify-css-to-use-without-transpilation/code.js
Donny/강동윤 16f7084e7f
feat(next-swc): Update swc crates (#35996)
* Move

* Adjust

* publish = false

* Tree

* Move tests

* fixup

* Split `emotion`

* Split `styled_jsx`

* Split `styled_jsx`

* fmt

* `--fix`

* clippy

* Update crates

* fixup

* publish

* Bump

* Rename

* authors

* Update

* More update

* Oh

* Update test refs

* Update test refs

* Update again

* Fix
2022-04-11 11:59:16 +02:00

36 lines
589 B
JavaScript

import styled from 'styled-components';
const Simple = styled.div`
width: 100%;
`;
const Interpolation = styled.div`
content: "https://test.com/${props => props.endpoint}";
`;
const SpecialCharacters = styled.div`
content: " ${props => props.text} ";\n color: red;
`;
const Comment = styled.div`
width: 100%;
// comment
color: red;
`;
const Parens = styled.div`
&:hover {
color: blue;
}
color: red;
`;
const UrlComments = styled.div`
color: red;
/* // */
background: red;
/* comment 1 */
/* comment 2 */
// comment 3
border: 1px solid green;
`;