-
-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathoutput.js
More file actions
27 lines (27 loc) · 703 Bytes
/
output.js
File metadata and controls
27 lines (27 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { styled } from '@example/styled-components/native';
const Test = styled.div.withConfig({
displayName: "Test",
componentId: "sc-qtkc3x-0"
})`width:100%;`;
const Test2 = true ? styled.div.withConfig({
displayName: "Test2",
componentId: "sc-qtkc3x-1"
})`` : styled.div.withConfig({
displayName: "Test2",
componentId: "sc-qtkc3x-2"
})``;
const styles = {
One: styled.div.withConfig({
displayName: "One",
componentId: "sc-qtkc3x-3"
})``
};
let Component;
Component = styled.div.withConfig({
displayName: "Component",
componentId: "sc-qtkc3x-4"
})``;
const WrappedComponent = styled(Inner).withConfig({
displayName: "WrappedComponent",
componentId: "sc-qtkc3x-5"
})``;