55import React from 'react' ;
66import styled , { createGlobalStyle , css , keyframes } from 'styled-components' ;
77
8- const Base = ( props ) => React . createElement ( 'div' , null , props . name ) ;
8+ const Base = ( props ) =>
9+ /*#__PURE__*/ React . createElement ( 'div' , null , props . name ) ;
910
1011export const Styled = [
1112 styled . div . withConfig ( {
1213 displayName : 'source__Styled' ,
13- componentId : 'sc -1tkkdbu-0' ,
14+ componentId : 'tscp__sc -1tkkdbu-0' ,
1415 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
1516 styled ( Base ) . withConfig ( {
1617 displayName : 'source__Styled' ,
17- componentId : 'sc -1tkkdbu-1' ,
18+ componentId : 'tscp__sc -1tkkdbu-1' ,
1819 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
1920] ;
20- export const cssFragment = css (
21+ export const cssFragment = /*#__PURE__*/ css (
2122 [ 'display:block;background:' , ';color:white;' ] ,
2223 ( ) => 'black' ,
2324) ;
24- export const GlobalStyle = createGlobalStyle `
25+ export const GlobalStyle = /*#__PURE__*/ createGlobalStyle `
2526div{
2627 display: block;
2728 background: ${ ( ) => 'black' } ;
2829 color: white;
2930}
3031` ;
31- export const Keyframe = keyframes (
32+ export const Keyframe = /*#__PURE__*/ keyframes (
3233 [ '0%{display:block;background:' , ';color:white;}' ] ,
3334 'black' ,
3435) ;
@@ -39,39 +40,39 @@ export const WithAttrs = [
3940 } )
4041 . withConfig ( {
4142 displayName : 'source__WithAttrs' ,
42- componentId : 'sc -1tkkdbu-2' ,
43+ componentId : 'tscp__sc -1tkkdbu-2' ,
4344 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
4445 styled ( Base )
4546 . attrs ( {
4647 id : 'id' ,
4748 } )
4849 . withConfig ( {
4950 displayName : 'source__WithAttrs' ,
50- componentId : 'sc -1tkkdbu-3' ,
51+ componentId : 'tscp__sc -1tkkdbu-3' ,
5152 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
5253] ;
5354export const StyleObject = [
5455 styled . div . withConfig ( {
5556 displayName : 'source__StyleObject' ,
56- componentId : 'sc -1tkkdbu-4' ,
57+ componentId : 'tscp__sc -1tkkdbu-4' ,
5758 } ) ( {
5859 background : '#FFFFFF' ,
5960 } ) ,
6061 styled ( Base ) . withConfig ( {
6162 displayName : 'source__StyleObject' ,
62- componentId : 'sc -1tkkdbu-5' ,
63+ componentId : 'tscp__sc -1tkkdbu-5' ,
6364 } ) ( {
6465 background : '#FFFFFF' ,
6566 } ) ,
6667] ;
6768export const CastProps = [
6869 styled . div . withConfig ( {
6970 displayName : 'source__CastProps' ,
70- componentId : 'sc -1tkkdbu-6' ,
71+ componentId : 'tscp__sc -1tkkdbu-6' ,
7172 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
7273 styled ( Base ) . withConfig ( {
7374 displayName : 'source__CastProps' ,
74- componentId : 'sc -1tkkdbu-7' ,
75+ componentId : 'tscp__sc -1tkkdbu-7' ,
7576 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
7677] ;
7778export const CastFactory = [
@@ -80,7 +81,7 @@ export const CastFactory = [
8081 background: ${ ( ) => 'black' } ;
8182 color: white;
8283 ` ,
83- styled ( Base ) `
84+ /*#__PURE__*/ styled ( Base ) `
8485 display: block;
8586 background: ${ ( ) => 'black' } ;
8687 color: white;
@@ -89,16 +90,16 @@ export const CastFactory = [
8990export const CastAll = [
9091 styled . div . withConfig ( {
9192 displayName : 'source__CastAll' ,
92- componentId : 'sc -1tkkdbu-8' ,
93+ componentId : 'tscp__sc -1tkkdbu-8' ,
9394 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
9495 styled ( Base ) . withConfig ( {
9596 displayName : 'source__CastAll' ,
96- componentId : 'sc -1tkkdbu-9' ,
97+ componentId : 'tscp__sc -1tkkdbu-9' ,
9798 } ) ( [ 'display:block;background:' , ';color:white;' ] , ( ) => 'black' ) ,
9899] ;
99- export const TestBabelMinify = styled . div . withConfig ( {
100+ export const TestBabelMinify = /*#__PURE__*/ styled . div . withConfig ( {
100101 displayName : 'source__TestBabelMinify' ,
101- componentId : 'sc -1tkkdbu-10' ,
102+ componentId : 'tscp__sc -1tkkdbu-10' ,
102103} ) (
103104 [
104105 ".p0{content:'first raw';}.p1{content:" ,
@@ -108,7 +109,7 @@ export const TestBabelMinify = styled.div.withConfig({
108109 ( ) => 'first span' ,
109110 ( ) => 'second span' ,
110111) ;
111- export const TestBabelMinifyOnce = styled . div . withConfig ( {
112+ export const TestBabelMinifyOnce = /*#__PURE__*/ styled . div . withConfig ( {
112113 displayName : 'source__TestBabelMinifyOnce' ,
113- componentId : 'sc -1tkkdbu-11' ,
114+ componentId : 'tscp__sc -1tkkdbu-11' ,
114115} ) ( [ "content:'raw ';" ] ) ;
0 commit comments