@@ -68,52 +68,52 @@ TypeScript before transform:
6868TypeScript after transform:
6969
7070 import styled from 'styled-components';
71- const Button = styled.button.withConfig({ displayName: "Button", componentId: "-1okqsxw" }) \`
71+ const Button = styled.button.withConfig({ displayName: "Button", componentId: "sc -1okqsxw" }) \`
7272 color: red;
7373 \`;
7474 declare const nonStyled: any;
7575 const NonButton = nonStyled.button \`
7676 yo
7777 \`;
78- const OtherButton = styled(Button).withConfig({ displayName: "OtherButton", componentId: "-ce0fkl" }) \`
78+ const OtherButton = styled(Button).withConfig({ displayName: "OtherButton", componentId: "sc -ce0fkl" }) \`
7979 color: blue;
8080 \`;
8181 const SuperButton = Button.extend \`
8282 color: super;
8383 \`;
84- export default styled.link.withConfig({ componentId: "-vba0dl" }) \`
84+ export default styled.link.withConfig({ componentId: "sc -vba0dl" }) \`
8585 color: black;
8686 \`;
8787 export const SmallButton = Button.extend \`
8888 font-size: .7em;
8989 \`;
90- const MiniButton = styled(SmallButton).attrs({ size: 'mini' }).withConfig({ displayName: "MiniButton", componentId: "-ndnumj" }) \`
90+ const MiniButton = styled(SmallButton).attrs({ size: 'mini' }).withConfig({ displayName: "MiniButton", componentId: "sc -ndnumj" }) \`
9191 font-size: .1em;
9292 \`;
9393
9494
9595TypeScript after transpile module:
9696
9797 import styled from 'styled-components';
98- const Button = styled.button.withConfig({ displayName: "Button", componentId: "-13dat8f" }) \`
98+ const Button = styled.button.withConfig({ displayName: "Button", componentId: "sc -13dat8f" }) \`
9999 color: red;
100100 \`;
101101 const NonButton = nonStyled.button \`
102102 yo
103103 \`;
104- const OtherButton = styled(Button).withConfig({ displayName: "OtherButton", componentId: "-1pbo6g5" }) \`
104+ const OtherButton = styled(Button).withConfig({ displayName: "OtherButton", componentId: "sc -1pbo6g5" }) \`
105105 color: blue;
106106 \`;
107107 const SuperButton = Button.extend \`
108108 color: super;
109109 \`;
110- export default styled.link.withConfig({ componentId: "-ep20on" }) \`
110+ export default styled.link.withConfig({ componentId: "sc -ep20on" }) \`
111111 color: black;
112112 \`;
113113 export const SmallButton = Button.extend \`
114114 font-size: .7em;
115115 \`;
116- const MiniButton = styled(SmallButton).attrs({ size: 'mini' }).withConfig({ displayName: "MiniButton", componentId: "-1cgykmr" }) \`
116+ const MiniButton = styled(SmallButton).attrs({ size: 'mini' }).withConfig({ displayName: "MiniButton", componentId: "sc -1cgykmr" }) \`
117117 font-size: .1em;
118118 \`;
119119
0 commit comments