@antv/l7-component 2.9.37 → 2.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/assets/iconfont/iconfont.js +53 -0
- package/es/constants/index.d.ts +60 -0
- package/es/constants/index.js +60 -0
- package/es/control/baseControl/buttonControl.d.ts +59 -0
- package/es/control/baseControl/buttonControl.js +191 -0
- package/es/control/baseControl/control.d.ts +113 -0
- package/es/control/baseControl/control.js +313 -0
- package/es/control/baseControl/index.d.ts +4 -0
- package/es/control/baseControl/index.js +4 -0
- package/es/control/baseControl/popperControl.d.ts +26 -0
- package/es/control/baseControl/popperControl.js +131 -0
- package/es/control/baseControl/selectControl.d.ts +46 -0
- package/es/control/baseControl/selectControl.js +232 -0
- package/es/control/exportImage.d.ts +18 -0
- package/es/control/exportImage.js +163 -0
- package/es/control/fullscreen.d.ts +19 -0
- package/es/control/fullscreen.js +151 -0
- package/es/control/geoLocate.d.ts +16 -0
- package/es/control/geoLocate.js +139 -0
- package/es/control/layerSwitch.d.ts +19 -0
- package/es/control/layerSwitch.js +172 -0
- package/es/control/logo.d.ts +10 -6
- package/es/control/logo.js +41 -11
- package/es/control/mapTheme.d.ts +10 -0
- package/es/control/mapTheme.js +135 -0
- package/es/control/mouseLocation.d.ts +15 -0
- package/es/control/mouseLocation.js +104 -0
- package/es/control/scale.d.ts +20 -10
- package/es/control/scale.js +77 -53
- package/es/control/zoom.d.ts +21 -10
- package/es/control/zoom.js +76 -49
- package/es/css/button.less +70 -0
- package/es/css/control.less +71 -0
- package/es/css/index.css +567 -0
- package/es/css/index.less +12 -0
- package/es/css/l7.less +60 -0
- package/es/css/layerPopup.less +8 -0
- package/es/css/logo.less +18 -0
- package/es/css/mouseLocation.less +9 -0
- package/es/css/popper.less +64 -0
- package/es/css/popup.less +169 -0
- package/es/css/scale.less +34 -0
- package/es/css/select.less +86 -0
- package/es/css/variables.less +28 -0
- package/es/css/zoom.less +21 -0
- package/es/images/logo.png +0 -0
- package/es/images/quanping.svg +12 -0
- package/es/index.d.ts +15 -8
- package/es/index.js +15 -9
- package/es/interface.d.ts +1 -20
- package/es/popup/layerPopup.d.ts +78 -0
- package/es/popup/layerPopup.js +308 -0
- package/es/popup/popup.d.ts +147 -0
- package/es/popup/popup.js +636 -0
- package/es/utils/icon.d.ts +1 -0
- package/es/utils/icon.js +9 -0
- package/es/utils/popper.d.ts +75 -0
- package/es/utils/popper.js +286 -0
- package/es/utils/screenfull.d.ts +2 -0
- package/es/utils/screenfull.js +157 -0
- package/lib/assets/iconfont/iconfont.js +55 -0
- package/lib/constants/index.js +68 -0
- package/lib/control/baseControl/buttonControl.js +207 -0
- package/lib/control/baseControl/control.js +340 -0
- package/lib/control/baseControl/index.js +57 -0
- package/lib/control/baseControl/popperControl.js +142 -0
- package/lib/control/baseControl/selectControl.js +253 -0
- package/lib/control/exportImage.js +177 -0
- package/lib/control/fullscreen.js +164 -0
- package/lib/control/geoLocate.js +154 -0
- package/lib/control/layerSwitch.js +183 -0
- package/lib/control/logo.js +50 -23
- package/lib/control/mapTheme.js +151 -0
- package/lib/control/mouseLocation.js +120 -0
- package/lib/control/scale.js +82 -62
- package/lib/control/zoom.js +78 -59
- package/lib/css/button.less +70 -0
- package/lib/css/control.less +71 -0
- package/lib/css/index.css +567 -0
- package/lib/css/index.less +12 -0
- package/lib/css/l7.less +60 -0
- package/lib/css/layerPopup.less +8 -0
- package/lib/css/logo.less +18 -0
- package/lib/css/mouseLocation.less +9 -0
- package/lib/css/popper.less +64 -0
- package/lib/css/popup.less +169 -0
- package/lib/css/scale.less +34 -0
- package/lib/css/select.less +86 -0
- package/lib/css/variables.less +28 -0
- package/lib/css/zoom.less +21 -0
- package/lib/images/logo.png +0 -0
- package/lib/images/quanping.svg +12 -0
- package/lib/index.js +165 -50
- package/lib/popup/layerPopup.js +317 -0
- package/lib/popup/popup.js +651 -0
- package/lib/utils/icon.js +18 -0
- package/lib/utils/popper.js +297 -0
- package/lib/utils/screenfull.js +167 -0
- package/package.json +8 -5
- package/es/control/BaseControl.d.ts +0 -27
- package/es/control/BaseControl.js +0 -134
- package/es/control/layer.d.ts +0 -38
- package/es/control/layer.js +0 -340
- package/es/css/l7.css +0 -502
- package/es/popup.d.ts +0 -35
- package/es/popup.js +0 -300
- package/lib/control/BaseControl.js +0 -160
- package/lib/control/layer.js +0 -362
- package/lib/css/l7.css +0 -502
- package/lib/popup.js +0 -317
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
@import 'variables';
|
|
2
|
+
|
|
3
|
+
.l7-popper {
|
|
4
|
+
position: absolute;
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
align-items: center;
|
|
8
|
+
z-index: 5;
|
|
9
|
+
color: @l7-control-font-color;
|
|
10
|
+
&.l7-popper-hide {
|
|
11
|
+
display: none;
|
|
12
|
+
}
|
|
13
|
+
.l7-popper-content {
|
|
14
|
+
min-height: @l7-btn-control-size;
|
|
15
|
+
background: @l7-popper-control-bg-color;
|
|
16
|
+
border-radius: @l7-btn-control-border-radius;
|
|
17
|
+
box-shadow: @l7-control-shadow;
|
|
18
|
+
}
|
|
19
|
+
.l7-popper-arrow {
|
|
20
|
+
width: 0;
|
|
21
|
+
height: 0;
|
|
22
|
+
border-width: @l7-popper-control-arrow-size;
|
|
23
|
+
border-style: solid;
|
|
24
|
+
border-top-color: transparent;
|
|
25
|
+
border-bottom-color: transparent;
|
|
26
|
+
border-left-color: transparent;
|
|
27
|
+
border-right-color: transparent;
|
|
28
|
+
box-shadow: @l7-control-shadow;
|
|
29
|
+
}
|
|
30
|
+
&.l7-popper-left {
|
|
31
|
+
flex-direction: row;
|
|
32
|
+
.l7-popper-arrow {
|
|
33
|
+
border-left-color: @l7-popper-control-bg-color;
|
|
34
|
+
margin: (@l7-btn-control-size / 2 - @l7-popper-control-arrow-size) 0;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
&.l7-popper-right {
|
|
38
|
+
flex-direction: row-reverse;
|
|
39
|
+
.l7-popper-arrow {
|
|
40
|
+
border-right-color: @l7-popper-control-bg-color;
|
|
41
|
+
margin: (@l7-btn-control-size / 2 - @l7-popper-control-arrow-size) 0;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
&.l7-popper-top {
|
|
45
|
+
flex-direction: column;
|
|
46
|
+
.l7-popper-arrow {
|
|
47
|
+
border-top-color: @l7-popper-control-bg-color;
|
|
48
|
+
margin: 0 (@l7-btn-control-size / 2 - @l7-popper-control-arrow-size);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
&.l7-popper-bottom {
|
|
52
|
+
flex-direction: column-reverse;
|
|
53
|
+
.l7-popper-arrow {
|
|
54
|
+
border-bottom-color: @l7-popper-control-bg-color;
|
|
55
|
+
margin: 0 (@l7-btn-control-size / 2 - @l7-popper-control-arrow-size);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
&.l7-popper-start {
|
|
59
|
+
align-items: flex-start;
|
|
60
|
+
}
|
|
61
|
+
&.l7-popper-end {
|
|
62
|
+
align-items: flex-end;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
@import 'variables';
|
|
2
|
+
|
|
3
|
+
.l7-popup {
|
|
4
|
+
position: absolute;
|
|
5
|
+
top: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
z-index: 5;
|
|
8
|
+
display: -webkit-flex;
|
|
9
|
+
display: flex;
|
|
10
|
+
pointer-events: none;
|
|
11
|
+
will-change: transform;
|
|
12
|
+
&.l7-popup-hide {
|
|
13
|
+
display: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.l7-popup-content {
|
|
17
|
+
position: relative;
|
|
18
|
+
padding: 16px;
|
|
19
|
+
background: #fff;
|
|
20
|
+
border-radius: 3px;
|
|
21
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
22
|
+
pointer-events: auto;
|
|
23
|
+
font-size: 14px;
|
|
24
|
+
|
|
25
|
+
.l7-popup-content__title {
|
|
26
|
+
font-weight: bold;
|
|
27
|
+
margin-bottom: 8px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.l7-popup-close-button {
|
|
31
|
+
position: absolute;
|
|
32
|
+
top: 0;
|
|
33
|
+
right: 0;
|
|
34
|
+
width: 18px;
|
|
35
|
+
height: 18px;
|
|
36
|
+
line-height: 18px;
|
|
37
|
+
text-align: center;
|
|
38
|
+
padding: 0;
|
|
39
|
+
background-color: transparent;
|
|
40
|
+
border: 0;
|
|
41
|
+
border-radius: 0 3px 0 0;
|
|
42
|
+
cursor: pointer;
|
|
43
|
+
font-size: 14px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.l7-popup-tip {
|
|
48
|
+
z-index: 1;
|
|
49
|
+
width: 0;
|
|
50
|
+
height: 0;
|
|
51
|
+
border: 10px solid transparent;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&.l7-popup-anchor-bottom,
|
|
55
|
+
&.l7-popup-anchor-bottom-left,
|
|
56
|
+
&.l7-popup-anchor-bottom-right {
|
|
57
|
+
-webkit-flex-direction: column-reverse;
|
|
58
|
+
flex-direction: column-reverse;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&.l7-popup-anchor-top,
|
|
62
|
+
&.l7-popup-anchor-top-left,
|
|
63
|
+
&.l7-popup-anchor-top-right {
|
|
64
|
+
-webkit-flex-direction: column;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&.l7-popup-anchor-left {
|
|
69
|
+
-webkit-flex-direction: row;
|
|
70
|
+
flex-direction: row;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&.l7-popup-anchor-right {
|
|
74
|
+
-webkit-flex-direction: row-reverse;
|
|
75
|
+
flex-direction: row-reverse;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.l7-popup-anchor-top .l7-popup-tip {
|
|
80
|
+
-webkit-align-self: center;
|
|
81
|
+
align-self: center;
|
|
82
|
+
border-top: none;
|
|
83
|
+
border-bottom-color: #fff;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.l7-popup-anchor-top-left .l7-popup-tip {
|
|
87
|
+
-webkit-align-self: flex-start;
|
|
88
|
+
align-self: flex-start;
|
|
89
|
+
border-top: none;
|
|
90
|
+
border-bottom-color: #fff;
|
|
91
|
+
border-left: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.l7-popup-anchor-top-right .l7-popup-tip {
|
|
95
|
+
-webkit-align-self: flex-end;
|
|
96
|
+
align-self: flex-end;
|
|
97
|
+
border-top: none;
|
|
98
|
+
border-right: none;
|
|
99
|
+
border-bottom-color: #fff;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.l7-popup-anchor-bottom .l7-popup-tip {
|
|
103
|
+
-webkit-align-self: center;
|
|
104
|
+
align-self: center;
|
|
105
|
+
border-top-color: #fff;
|
|
106
|
+
border-bottom: none;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.l7-popup-anchor-bottom-left .l7-popup-tip {
|
|
110
|
+
-webkit-align-self: flex-start;
|
|
111
|
+
align-self: flex-start;
|
|
112
|
+
border-top-color: #fff;
|
|
113
|
+
border-bottom: none;
|
|
114
|
+
border-left: none;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.l7-popup-anchor-bottom-right .l7-popup-tip {
|
|
118
|
+
-webkit-align-self: flex-end;
|
|
119
|
+
align-self: flex-end;
|
|
120
|
+
border-top-color: #fff;
|
|
121
|
+
border-right: none;
|
|
122
|
+
border-bottom: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.l7-popup-anchor-left .l7-popup-tip {
|
|
126
|
+
-webkit-align-self: center;
|
|
127
|
+
align-self: center;
|
|
128
|
+
border-right-color: #fff;
|
|
129
|
+
border-left: none;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.l7-popup-anchor-right .l7-popup-tip {
|
|
133
|
+
-webkit-align-self: center;
|
|
134
|
+
align-self: center;
|
|
135
|
+
border-right: none;
|
|
136
|
+
border-left-color: #fff;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.l7-popup-anchor-top-left .l7-popup-content {
|
|
140
|
+
border-top-left-radius: 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.l7-popup-anchor-top-right .l7-popup-content {
|
|
144
|
+
border-top-right-radius: 0;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.l7-popup-anchor-bottom-left .l7-popup-content {
|
|
148
|
+
border-bottom-left-radius: 0;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.l7-popup-anchor-bottom-right .l7-popup-content {
|
|
152
|
+
border-bottom-right-radius: 0;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.l7-popup-track-pointer {
|
|
156
|
+
display: none;
|
|
157
|
+
* {
|
|
158
|
+
user-select: none;
|
|
159
|
+
pointer-events: none;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.l7-map:hover .l7-popup-track-pointer {
|
|
164
|
+
display: flex;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.l7-map:active .l7-popup-track-pointer {
|
|
168
|
+
display: none;
|
|
169
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
@import 'variables';
|
|
2
|
+
|
|
3
|
+
.l7-control-scale {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
.l7-control-scale-line {
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
padding: 2px 5px 1px;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
color: @l7-control-font-color;
|
|
11
|
+
font-size: 10px;
|
|
12
|
+
line-height: 1.1;
|
|
13
|
+
white-space: nowrap;
|
|
14
|
+
background: @l7-control-bg-color;
|
|
15
|
+
border: 2px solid #000;
|
|
16
|
+
border-top: 0;
|
|
17
|
+
transition: width 0.1s;
|
|
18
|
+
& + & {
|
|
19
|
+
margin-top: -2px;
|
|
20
|
+
border-top: 2px solid #777;
|
|
21
|
+
border-bottom: none;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.l7-right {
|
|
27
|
+
.l7-control-scale {
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: flex-end;
|
|
30
|
+
.l7-control-scale-line {
|
|
31
|
+
text-align: right;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
@import 'variables';
|
|
2
|
+
|
|
3
|
+
.l7-select-control--normal {
|
|
4
|
+
padding: 4px 0;
|
|
5
|
+
.l7-select-control-item {
|
|
6
|
+
height: 24px;
|
|
7
|
+
line-height: 24px;
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
padding: 0 16px;
|
|
11
|
+
font-size: 12px;
|
|
12
|
+
> * + * {
|
|
13
|
+
margin-left: 6px;
|
|
14
|
+
}
|
|
15
|
+
input[type='checkbox'] {
|
|
16
|
+
height: 14px;
|
|
17
|
+
width: 14px;
|
|
18
|
+
}
|
|
19
|
+
&:hover {
|
|
20
|
+
background-color: @l7-btn-control-bg-hover-color;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.l7-select-control--image {
|
|
26
|
+
padding: 12px 12px 0 12px;
|
|
27
|
+
width: @l7-select-control-image-popper-width;
|
|
28
|
+
height: 320px;
|
|
29
|
+
overflow: auto;
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-wrap: wrap;
|
|
32
|
+
box-sizing: border-box;
|
|
33
|
+
align-items: flex-start;
|
|
34
|
+
.l7-select-control-item {
|
|
35
|
+
margin-right: 12px;
|
|
36
|
+
border-radius: @l7-btn-control-border-radius;
|
|
37
|
+
overflow: hidden;
|
|
38
|
+
border: 1px solid @l7-popper-control-bg-color;
|
|
39
|
+
box-sizing: content-box;
|
|
40
|
+
width: calc((100% - 36px) / 3);
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-direction: column;
|
|
43
|
+
justify-content: center;
|
|
44
|
+
margin-bottom: 12px;
|
|
45
|
+
position: relative;
|
|
46
|
+
font-size: 12px;
|
|
47
|
+
img {
|
|
48
|
+
width: 142px;
|
|
49
|
+
height: 80px;
|
|
50
|
+
}
|
|
51
|
+
input[type='checkbox'] {
|
|
52
|
+
position: absolute;
|
|
53
|
+
right: 0;
|
|
54
|
+
top: 0;
|
|
55
|
+
}
|
|
56
|
+
.l7-select-control-item-row {
|
|
57
|
+
display: flex;
|
|
58
|
+
justify-content: center;
|
|
59
|
+
align-items: center;
|
|
60
|
+
line-height: 26px;
|
|
61
|
+
> * + * {
|
|
62
|
+
margin-left: 8px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
&.l7-select-control-item-active {
|
|
66
|
+
border-color: @l7-select-control-active-color;
|
|
67
|
+
}
|
|
68
|
+
&:nth-child(3n) {
|
|
69
|
+
margin-right: 0;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.l7-select-control-item {
|
|
75
|
+
cursor: pointer;
|
|
76
|
+
input[type='checkbox'] {
|
|
77
|
+
margin: 0;
|
|
78
|
+
cursor: pointer;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.l7-select-control--multiple {
|
|
83
|
+
.l7-select-control-item:hover {
|
|
84
|
+
background-color: transparent;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// Control
|
|
2
|
+
@l7-control-space: 8px;
|
|
3
|
+
@l7-control-font-size: 12px;
|
|
4
|
+
@l7-control-font-color: #595959;
|
|
5
|
+
@l7-control-bg-color: #fff;
|
|
6
|
+
@l7-control-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
|
|
7
|
+
|
|
8
|
+
// ButtonControl
|
|
9
|
+
@l7-btn-control-bg-color: @l7-control-bg-color;
|
|
10
|
+
@l7-btn-control-bg-hover-color: #f3f3f3;
|
|
11
|
+
@l7-btn-control-bg-active-color: @l7-btn-control-bg-hover-color;
|
|
12
|
+
@l7-btn-control-size: 28px;
|
|
13
|
+
@l7-btn-icon-size: 16px;
|
|
14
|
+
@l7-btn-control-border-radius: 2px;
|
|
15
|
+
@l7-btn-control-disabled-bg-color: #fafafa;
|
|
16
|
+
@l7-btn-control-disabled-font-color: #bdbdbd;
|
|
17
|
+
@l7-btn-border-color: #f0f0f0;
|
|
18
|
+
@l7-btn-column-height: 44px;
|
|
19
|
+
|
|
20
|
+
// PopperControl
|
|
21
|
+
@l7-popper-control-bg-color: @l7-btn-control-bg-color;
|
|
22
|
+
@l7-popper-control-arrow-size: 4px;
|
|
23
|
+
|
|
24
|
+
// SelectControl
|
|
25
|
+
@l7-select-control-active-color: #0370fe;
|
|
26
|
+
@l7-select-control-image-popper-width: 474px;
|
|
27
|
+
|
|
28
|
+
@position-list: top, right, bottom, left;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@import 'variables';
|
|
2
|
+
|
|
3
|
+
@zoom-icon-size: 14px;
|
|
4
|
+
|
|
5
|
+
.l7-control-zoom {
|
|
6
|
+
box-shadow: @l7-control-shadow;
|
|
7
|
+
border-radius: @l7-btn-control-border-radius;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
.l7-button-control {
|
|
10
|
+
box-shadow: 0 0 0;
|
|
11
|
+
border-radius: 0;
|
|
12
|
+
font-size: @l7-btn-icon-size;
|
|
13
|
+
.l7-iconfont {
|
|
14
|
+
width: @zoom-icon-size;
|
|
15
|
+
height: @zoom-icon-size;
|
|
16
|
+
}
|
|
17
|
+
&:first-child {
|
|
18
|
+
border-bottom: 1px solid @l7-btn-border-color;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
package/lib/images/logo.png
CHANGED
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<!-- Created with Vectornator (http://vectornator.io/) -->
|
|
4
|
+
<svg height="100%" stroke-miterlimit="10" style="fill-rule:nonzero;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;" version="1.1" viewBox="0 0 682.67 682.67" width="100%" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:vectornator="http://vectornator.io" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
5
|
+
<defs/>
|
|
6
|
+
<clipPath id="ArtboardFrame">
|
|
7
|
+
<rect height="682.67" width="682.67" x="0" y="0"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
<g clip-path="url(#ArtboardFrame)" id="Untitled" vectornator:layerName="Untitled">
|
|
10
|
+
<path d="M0 477.87L0 580.27C0.00552233 636.822 45.8483 682.664 102.4 682.67L204.8 682.67C223.424 682.351 238.356 667.162 238.356 648.535C238.356 629.908 223.424 614.719 204.8 614.4L102.4 614.4C83.5505 614.4 68.27 599.119 68.27 580.27L68.27 477.87C68.4812 465.535 62.0216 454.046 51.3734 447.817C40.7252 441.588 27.5448 441.588 16.8966 447.817C6.24842 454.046-0.211108 465.535 0 477.87ZM477.87 682.67L580.27 682.67C636.822 682.664 682.664 636.822 682.67 580.27L682.67 477.87C682.881 465.535 676.422 454.046 665.773 447.817C655.125 441.588 641.945 441.588 631.297 447.817C620.648 454.046 614.189 465.535 614.4 477.87L614.4 580.27C614.4 599.119 599.119 614.4 580.27 614.4L477.87 614.4C465.535 614.189 454.046 620.648 447.817 631.297C441.588 641.945 441.588 655.125 447.817 665.773C454.046 676.422 465.535 682.881 477.87 682.67ZM682.67 204.8L682.67 102.4C682.664 45.8483 636.822 0.00553344 580.27 1.15748e-06L477.87 1.15748e-06C465.535-0.211139 454.046 6.24838 447.817 16.8966C441.588 27.5448 441.588 40.7252 447.817 51.3734C454.046 62.0216 465.535 68.4811 477.87 68.27L580.27 68.27C599.119 68.27 614.4 83.5505 614.4 102.4L614.4 204.8C614.719 223.424 629.908 238.356 648.535 238.356C667.162 238.356 682.351 223.424 682.67 204.8ZM204.8 0L102.4 0C45.8483 0.00551165 0.00552271 45.8483-3.66902e-07 102.4L-3.66902e-07 204.8C0.318807 223.424 15.5078 238.356 34.135 238.356C52.7622 238.356 67.9512 223.424 68.27 204.8L68.27 102.4C68.27 83.5505 83.5505 68.27 102.4 68.27L204.8 68.27C223.424 67.9512 238.356 52.7622 238.356 34.135C238.356 15.5078 223.424 0.318804 204.8 0Z" fill="#333333" fill-rule="nonzero" opacity="1" stroke="none"/>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|