@bigbinary/neeto-icons-rn 1.18.4 → 1.18.6
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/dist/appIcons/NeetoCode.js +87 -0
- package/dist/appIcons/index.js +1 -0
- package/dist/logos/NeetoCode.js +39 -0
- package/dist/logos/index.js +1 -0
- package/dist/misc/Outlook.js +557 -0
- package/dist/misc/index.js +1 -0
- package/dist/typefaceLogos/NeetoCode.js +49 -0
- package/dist/typefaceLogos/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, {
|
|
3
|
+
Path,
|
|
4
|
+
Mask,
|
|
5
|
+
Rect,
|
|
6
|
+
G,
|
|
7
|
+
Defs,
|
|
8
|
+
LinearGradient,
|
|
9
|
+
Stop,
|
|
10
|
+
} from "react-native-svg";
|
|
11
|
+
/* SVGR has dropped some elements not supported by react-native-svg: filter */
|
|
12
|
+
const SvgNeetoCode = (props) => (
|
|
13
|
+
<Svg
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
width={props.size}
|
|
16
|
+
height={props.size}
|
|
17
|
+
fill="none"
|
|
18
|
+
{...props}
|
|
19
|
+
>
|
|
20
|
+
<Path
|
|
21
|
+
fill="url(#NeetoCode_svg__a)"
|
|
22
|
+
d="M0 92.11C0 41.239 41.24 0 92.11 0h157.78C300.761 0 342 41.24 342 92.11v157.78c0 50.871-41.239 92.11-92.11 92.11H92.11C41.239 342 0 300.761 0 249.89z"
|
|
23
|
+
/>
|
|
24
|
+
<Mask
|
|
25
|
+
id="NeetoCode_svg__c"
|
|
26
|
+
width={342}
|
|
27
|
+
height={342}
|
|
28
|
+
x={0}
|
|
29
|
+
y={0}
|
|
30
|
+
maskUnits="userSpaceOnUse"
|
|
31
|
+
style={{
|
|
32
|
+
maskType: "alpha",
|
|
33
|
+
}}
|
|
34
|
+
>
|
|
35
|
+
<Rect width={342} height={342} fill="url(#NeetoCode_svg__b)" rx={92.11} />
|
|
36
|
+
</Mask>
|
|
37
|
+
<G mask="url(#NeetoCode_svg__c)">
|
|
38
|
+
<Path
|
|
39
|
+
fill="url(#NeetoCode_svg__d)"
|
|
40
|
+
d="M319.936 191.227c0-87.333-70.797-158.13-158.129-158.13H3.677v316.259h316.259z"
|
|
41
|
+
/>
|
|
42
|
+
</G>
|
|
43
|
+
<G filter="url(#NeetoCode_svg__e)">
|
|
44
|
+
<Path
|
|
45
|
+
fill={props.color}
|
|
46
|
+
fillRule="evenodd"
|
|
47
|
+
d="M246 171c0-41.421-33.579-75-75-75H96v150h150zm-71.111-33.909-51.436 36.328 14.804 14.803 36.632-25.873zm-27.776 59.985-8.854-8.854 8.854-6.254zm57.081-30.546-8.854-8.854v15.108zM219 181.333l-51.436 36.328v-25.258l36.633-25.873z"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
/>
|
|
50
|
+
</G>
|
|
51
|
+
<Defs>
|
|
52
|
+
<LinearGradient
|
|
53
|
+
id="NeetoCode_svg__a"
|
|
54
|
+
x1={136.5}
|
|
55
|
+
x2={553}
|
|
56
|
+
y1={135}
|
|
57
|
+
y2={758.5}
|
|
58
|
+
gradientUnits="userSpaceOnUse"
|
|
59
|
+
>
|
|
60
|
+
<Stop stopColor="#7976FF" />
|
|
61
|
+
<Stop offset={0.525} stopColor="#41AFFF" />
|
|
62
|
+
</LinearGradient>
|
|
63
|
+
<LinearGradient
|
|
64
|
+
id="NeetoCode_svg__b"
|
|
65
|
+
x1={-23.954}
|
|
66
|
+
x2={318.389}
|
|
67
|
+
y1={-19.463}
|
|
68
|
+
y2={522.498}
|
|
69
|
+
gradientUnits="userSpaceOnUse"
|
|
70
|
+
>
|
|
71
|
+
<Stop offset={1} stopColor="#FFD55C" />
|
|
72
|
+
</LinearGradient>
|
|
73
|
+
<LinearGradient
|
|
74
|
+
id="NeetoCode_svg__d"
|
|
75
|
+
x1={275.728}
|
|
76
|
+
x2={3.678}
|
|
77
|
+
y1={82.407}
|
|
78
|
+
y2={349.356}
|
|
79
|
+
gradientUnits="userSpaceOnUse"
|
|
80
|
+
>
|
|
81
|
+
<Stop stopColor={props.color} stopOpacity={0.16} />
|
|
82
|
+
<Stop offset={0.531} stopColor={props.color} stopOpacity={0} />
|
|
83
|
+
</LinearGradient>
|
|
84
|
+
</Defs>
|
|
85
|
+
</Svg>
|
|
86
|
+
);
|
|
87
|
+
export default SvgNeetoCode;
|
package/dist/appIcons/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { default as NeetoCrm } from "./NeetoCrm";
|
|
|
5
5
|
export { default as NeetoCal } from "./NeetoCal";
|
|
6
6
|
export { default as NeetoChangelog } from "./NeetoChangelog";
|
|
7
7
|
export { default as NeetoChat } from "./NeetoChat";
|
|
8
|
+
export { default as NeetoCode } from "./NeetoCode";
|
|
8
9
|
export { default as NeetoCourse } from "./NeetoCourse";
|
|
9
10
|
export { default as NeetoDeploy } from "./NeetoDeploy";
|
|
10
11
|
export { default as NeetoDesk } from "./NeetoDesk";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, LinearGradient, Stop } from "react-native-svg";
|
|
3
|
+
/* SVGR has dropped some elements not supported by react-native-svg: filter */
|
|
4
|
+
const SvgNeetoCode = (props) => (
|
|
5
|
+
<Svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={props.size}
|
|
8
|
+
height={props.size}
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="url(#NeetoCode_svg__a)"
|
|
14
|
+
d="M140 70c0-38.66-31.34-70-70-70H0v140h140z"
|
|
15
|
+
/>
|
|
16
|
+
<G filter="url(#NeetoCode_svg__b)">
|
|
17
|
+
<Path
|
|
18
|
+
fill={props.color}
|
|
19
|
+
fillRule="evenodd"
|
|
20
|
+
d="M103 70c0-18.225-14.775-33-33-33H37v66h66zM71.712 55.08 49.08 71.064l6.514 6.514 16.118-11.384zM59.491 81.474l-3.896-3.896 3.896-2.752zm25.114-13.44-3.896-3.897v6.648zm6.514 6.513L68.487 90.53V79.418l16.119-11.385z"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
/>
|
|
23
|
+
</G>
|
|
24
|
+
<Defs>
|
|
25
|
+
<LinearGradient
|
|
26
|
+
id="NeetoCode_svg__a"
|
|
27
|
+
x1={-15}
|
|
28
|
+
x2={202.5}
|
|
29
|
+
y1={-38.5}
|
|
30
|
+
y2={248}
|
|
31
|
+
gradientUnits="userSpaceOnUse"
|
|
32
|
+
>
|
|
33
|
+
<Stop offset={0.374} stopColor="#8176FF" />
|
|
34
|
+
<Stop offset={1} stopColor="#41BBFF" />
|
|
35
|
+
</LinearGradient>
|
|
36
|
+
</Defs>
|
|
37
|
+
</Svg>
|
|
38
|
+
);
|
|
39
|
+
export default SvgNeetoCode;
|
package/dist/logos/index.js
CHANGED
|
@@ -6,6 +6,7 @@ export { default as NeetoCrm } from "./NeetoCrm";
|
|
|
6
6
|
export { default as NeetoCal } from "./NeetoCal";
|
|
7
7
|
export { default as NeetoChangelog } from "./NeetoChangelog";
|
|
8
8
|
export { default as NeetoChat } from "./NeetoChat";
|
|
9
|
+
export { default as NeetoCode } from "./NeetoCode";
|
|
9
10
|
export { default as NeetoCourse } from "./NeetoCourse";
|
|
10
11
|
export { default as NeetoDeploy } from "./NeetoDeploy";
|
|
11
12
|
export { default as NeetoDesk } from "./NeetoDesk";
|
|
@@ -0,0 +1,557 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, {
|
|
3
|
+
Defs,
|
|
4
|
+
LinearGradient,
|
|
5
|
+
Stop,
|
|
6
|
+
Pattern,
|
|
7
|
+
Use,
|
|
8
|
+
Path,
|
|
9
|
+
Rect,
|
|
10
|
+
RadialGradient,
|
|
11
|
+
G,
|
|
12
|
+
Mask,
|
|
13
|
+
} from "react-native-svg";
|
|
14
|
+
/* SVGR has dropped some elements not supported by react-native-svg: filter */
|
|
15
|
+
const SvgOutlook = (props) => (
|
|
16
|
+
<Svg
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
19
|
+
width={props.size}
|
|
20
|
+
height={props.size}
|
|
21
|
+
viewBox="0 0 190 165"
|
|
22
|
+
{...props}
|
|
23
|
+
>
|
|
24
|
+
<Defs>
|
|
25
|
+
<LinearGradient id="Outlook_svg__a" x1="83.848%" y1="17.27%" y2="29.467%">
|
|
26
|
+
<Stop offset="0%" stopColor="#0052B2" />
|
|
27
|
+
<Stop offset="100%" stopColor="#0052B2" />
|
|
28
|
+
</LinearGradient>
|
|
29
|
+
<LinearGradient
|
|
30
|
+
id="Outlook_svg__f"
|
|
31
|
+
x1="104.505%"
|
|
32
|
+
x2="5.953%"
|
|
33
|
+
y1="2.109%"
|
|
34
|
+
y2="2.109%"
|
|
35
|
+
>
|
|
36
|
+
<Stop offset="0%" stopColor="#004CA9" />
|
|
37
|
+
<Stop offset="100%" stopColor="#003D88" />
|
|
38
|
+
</LinearGradient>
|
|
39
|
+
<LinearGradient
|
|
40
|
+
id="Outlook_svg__j"
|
|
41
|
+
x1="3.848%"
|
|
42
|
+
x2="103.648%"
|
|
43
|
+
y1="0%"
|
|
44
|
+
y2="100%"
|
|
45
|
+
>
|
|
46
|
+
<Stop offset="3.008%" stopColor="#004DA6" />
|
|
47
|
+
<Stop offset="100%" stopColor="#005ACB" />
|
|
48
|
+
</LinearGradient>
|
|
49
|
+
<LinearGradient
|
|
50
|
+
id="Outlook_svg__n"
|
|
51
|
+
x1="6.85%"
|
|
52
|
+
x2="103.648%"
|
|
53
|
+
y1="3.008%"
|
|
54
|
+
y2="100%"
|
|
55
|
+
>
|
|
56
|
+
<Stop offset="0%" stopColor="#05448D" />
|
|
57
|
+
<Stop offset="97.561%" stopColor="#004BB7" />
|
|
58
|
+
</LinearGradient>
|
|
59
|
+
<LinearGradient
|
|
60
|
+
id="Outlook_svg__r"
|
|
61
|
+
x1="11.155%"
|
|
62
|
+
x2="100.481%"
|
|
63
|
+
y1="7.321%"
|
|
64
|
+
y2="96.827%"
|
|
65
|
+
>
|
|
66
|
+
<Stop offset="0%" stopColor="#012557" />
|
|
67
|
+
<Stop offset="100%" stopColor="#0040A7" />
|
|
68
|
+
</LinearGradient>
|
|
69
|
+
<LinearGradient
|
|
70
|
+
id="Outlook_svg__v"
|
|
71
|
+
x1="103.648%"
|
|
72
|
+
x2="4.908%"
|
|
73
|
+
y1="100%"
|
|
74
|
+
y2="1.061%"
|
|
75
|
+
>
|
|
76
|
+
<Stop offset="0%" stopColor="#009CE9" />
|
|
77
|
+
<Stop offset="100%" stopColor="#007FC4" />
|
|
78
|
+
</LinearGradient>
|
|
79
|
+
<LinearGradient
|
|
80
|
+
id="Outlook_svg__z"
|
|
81
|
+
x1="3.848%"
|
|
82
|
+
x2="103.648%"
|
|
83
|
+
y1="0%"
|
|
84
|
+
y2="100%"
|
|
85
|
+
>
|
|
86
|
+
<Stop offset="0%" stopColor="#0057C8" />
|
|
87
|
+
<Stop offset="100%" stopColor="#0071E8" />
|
|
88
|
+
</LinearGradient>
|
|
89
|
+
<LinearGradient
|
|
90
|
+
id="Outlook_svg__D"
|
|
91
|
+
x1="3.848%"
|
|
92
|
+
x2="103.648%"
|
|
93
|
+
y1="0%"
|
|
94
|
+
y2="100%"
|
|
95
|
+
>
|
|
96
|
+
<Stop offset="0%" stopColor="#004CB7" />
|
|
97
|
+
<Stop offset="100%" stopColor="#0062D1" />
|
|
98
|
+
</LinearGradient>
|
|
99
|
+
<LinearGradient
|
|
100
|
+
id="Outlook_svg__H"
|
|
101
|
+
x1="103.648%"
|
|
102
|
+
x2="3.848%"
|
|
103
|
+
y1="100%"
|
|
104
|
+
y2="0%"
|
|
105
|
+
>
|
|
106
|
+
<Stop offset="0%" stopColor="#00DFFF" />
|
|
107
|
+
<Stop offset="100%" stopColor="#00B3E8" />
|
|
108
|
+
</LinearGradient>
|
|
109
|
+
<LinearGradient
|
|
110
|
+
id="Outlook_svg__L"
|
|
111
|
+
x1="103.648%"
|
|
112
|
+
x2="3.848%"
|
|
113
|
+
y1="100%"
|
|
114
|
+
y2="0%"
|
|
115
|
+
>
|
|
116
|
+
<Stop offset="0%" stopColor="#00C2FF" />
|
|
117
|
+
<Stop offset="100%" stopColor="#00A1ED" />
|
|
118
|
+
</LinearGradient>
|
|
119
|
+
<LinearGradient
|
|
120
|
+
id="Outlook_svg__P"
|
|
121
|
+
x1="3.848%"
|
|
122
|
+
x2="103.648%"
|
|
123
|
+
y1="0%"
|
|
124
|
+
y2="100%"
|
|
125
|
+
>
|
|
126
|
+
<Stop offset="0%" stopColor="#0061CC" />
|
|
127
|
+
<Stop offset="100%" stopColor="#0173EF" />
|
|
128
|
+
</LinearGradient>
|
|
129
|
+
<LinearGradient
|
|
130
|
+
id="Outlook_svg__T"
|
|
131
|
+
x1="96.375%"
|
|
132
|
+
x2="-2.72%"
|
|
133
|
+
y1="87.174%"
|
|
134
|
+
y2="39.981%"
|
|
135
|
+
>
|
|
136
|
+
<Stop offset="0%" stopColor="#00E2FF" />
|
|
137
|
+
<Stop offset="100%" stopColor="#00B9FF" />
|
|
138
|
+
<Stop offset="100%" stopColor="#00E3FF" />
|
|
139
|
+
</LinearGradient>
|
|
140
|
+
<LinearGradient id="Outlook_svg__X" x1="12.047%" y1="39.087%" y2="100%">
|
|
141
|
+
<Stop offset="0%" stopColor="#009CE6" />
|
|
142
|
+
<Stop offset="100%" stopColor="#00F3FF" />
|
|
143
|
+
</LinearGradient>
|
|
144
|
+
<LinearGradient
|
|
145
|
+
id="Outlook_svg__af"
|
|
146
|
+
x1="2.151%"
|
|
147
|
+
x2="113.177%"
|
|
148
|
+
y1="9.713%"
|
|
149
|
+
y2="104.673%"
|
|
150
|
+
>
|
|
151
|
+
<Stop offset="0%" stopColor="#00438D" />
|
|
152
|
+
<Stop offset="96.954%" stopColor="#0071D5" />
|
|
153
|
+
</LinearGradient>
|
|
154
|
+
<LinearGradient
|
|
155
|
+
id="Outlook_svg__an"
|
|
156
|
+
x1="29.468%"
|
|
157
|
+
x2="97.963%"
|
|
158
|
+
y1="50%"
|
|
159
|
+
y2="50%"
|
|
160
|
+
>
|
|
161
|
+
<Stop offset="0%" stopColor="#F0F0F0" />
|
|
162
|
+
<Stop offset="100%" stopColor="#FFF" />
|
|
163
|
+
</LinearGradient>
|
|
164
|
+
<Pattern
|
|
165
|
+
id="Outlook_svg__c"
|
|
166
|
+
width={512}
|
|
167
|
+
height={512}
|
|
168
|
+
x={-511}
|
|
169
|
+
y={-454}
|
|
170
|
+
patternUnits="userSpaceOnUse"
|
|
171
|
+
>
|
|
172
|
+
<Use xlinkHref="#Outlook_svg__a" />
|
|
173
|
+
</Pattern>
|
|
174
|
+
<Pattern
|
|
175
|
+
id="Outlook_svg__g"
|
|
176
|
+
width={512}
|
|
177
|
+
height={512}
|
|
178
|
+
x={-512}
|
|
179
|
+
y={-512}
|
|
180
|
+
patternUnits="userSpaceOnUse"
|
|
181
|
+
>
|
|
182
|
+
<Use xlinkHref="#Outlook_svg__b" />
|
|
183
|
+
</Pattern>
|
|
184
|
+
<Pattern
|
|
185
|
+
id="Outlook_svg__l"
|
|
186
|
+
width={512}
|
|
187
|
+
height={512}
|
|
188
|
+
x={-512}
|
|
189
|
+
y={-499}
|
|
190
|
+
patternUnits="userSpaceOnUse"
|
|
191
|
+
>
|
|
192
|
+
<Use xlinkHref="#Outlook_svg__c" />
|
|
193
|
+
</Pattern>
|
|
194
|
+
<Pattern
|
|
195
|
+
id="Outlook_svg__p"
|
|
196
|
+
width={512}
|
|
197
|
+
height={512}
|
|
198
|
+
x={-512}
|
|
199
|
+
y={-462}
|
|
200
|
+
patternUnits="userSpaceOnUse"
|
|
201
|
+
>
|
|
202
|
+
<Use xlinkHref="#Outlook_svg__d" />
|
|
203
|
+
</Pattern>
|
|
204
|
+
<Pattern
|
|
205
|
+
id="Outlook_svg__t"
|
|
206
|
+
width={512}
|
|
207
|
+
height={512}
|
|
208
|
+
x={-512}
|
|
209
|
+
y={-425}
|
|
210
|
+
patternUnits="userSpaceOnUse"
|
|
211
|
+
>
|
|
212
|
+
<Use xlinkHref="#Outlook_svg__e" />
|
|
213
|
+
</Pattern>
|
|
214
|
+
<Pattern
|
|
215
|
+
id="Outlook_svg__x"
|
|
216
|
+
width={512}
|
|
217
|
+
height={512}
|
|
218
|
+
x={-470}
|
|
219
|
+
y={-499}
|
|
220
|
+
patternUnits="userSpaceOnUse"
|
|
221
|
+
>
|
|
222
|
+
<Use xlinkHref="#Outlook_svg__f" />
|
|
223
|
+
</Pattern>
|
|
224
|
+
<Pattern
|
|
225
|
+
id="Outlook_svg__B"
|
|
226
|
+
width={512}
|
|
227
|
+
height={512}
|
|
228
|
+
x={-470}
|
|
229
|
+
y={-462}
|
|
230
|
+
patternUnits="userSpaceOnUse"
|
|
231
|
+
>
|
|
232
|
+
<Use xlinkHref="#Outlook_svg__g" />
|
|
233
|
+
</Pattern>
|
|
234
|
+
<Pattern
|
|
235
|
+
id="Outlook_svg__F"
|
|
236
|
+
width={512}
|
|
237
|
+
height={512}
|
|
238
|
+
x={-470}
|
|
239
|
+
y={-425}
|
|
240
|
+
patternUnits="userSpaceOnUse"
|
|
241
|
+
>
|
|
242
|
+
<Use xlinkHref="#Outlook_svg__h" />
|
|
243
|
+
</Pattern>
|
|
244
|
+
<Pattern
|
|
245
|
+
id="Outlook_svg__J"
|
|
246
|
+
width={512}
|
|
247
|
+
height={512}
|
|
248
|
+
x={-428}
|
|
249
|
+
y={-499}
|
|
250
|
+
patternUnits="userSpaceOnUse"
|
|
251
|
+
>
|
|
252
|
+
<Use xlinkHref="#Outlook_svg__i" />
|
|
253
|
+
</Pattern>
|
|
254
|
+
<Pattern
|
|
255
|
+
id="Outlook_svg__N"
|
|
256
|
+
width={512}
|
|
257
|
+
height={512}
|
|
258
|
+
x={-428}
|
|
259
|
+
y={-462}
|
|
260
|
+
patternUnits="userSpaceOnUse"
|
|
261
|
+
>
|
|
262
|
+
<Use xlinkHref="#Outlook_svg__j" />
|
|
263
|
+
</Pattern>
|
|
264
|
+
<Pattern
|
|
265
|
+
id="Outlook_svg__R"
|
|
266
|
+
width={512}
|
|
267
|
+
height={512}
|
|
268
|
+
x={-428}
|
|
269
|
+
y={-425}
|
|
270
|
+
patternUnits="userSpaceOnUse"
|
|
271
|
+
>
|
|
272
|
+
<Use xlinkHref="#Outlook_svg__k" />
|
|
273
|
+
</Pattern>
|
|
274
|
+
<Pattern
|
|
275
|
+
id="Outlook_svg__V"
|
|
276
|
+
width={512}
|
|
277
|
+
height={512}
|
|
278
|
+
x={-443.923}
|
|
279
|
+
y={-512}
|
|
280
|
+
patternUnits="userSpaceOnUse"
|
|
281
|
+
>
|
|
282
|
+
<Use xlinkHref="#Outlook_svg__l" />
|
|
283
|
+
</Pattern>
|
|
284
|
+
<Pattern
|
|
285
|
+
id="Outlook_svg__Z"
|
|
286
|
+
width={512}
|
|
287
|
+
height={512}
|
|
288
|
+
x={-511.2}
|
|
289
|
+
y={-512}
|
|
290
|
+
patternUnits="userSpaceOnUse"
|
|
291
|
+
>
|
|
292
|
+
<Use xlinkHref="#Outlook_svg__m" />
|
|
293
|
+
</Pattern>
|
|
294
|
+
<Pattern
|
|
295
|
+
id="Outlook_svg__ah"
|
|
296
|
+
width={512}
|
|
297
|
+
height={512}
|
|
298
|
+
x={-512}
|
|
299
|
+
y={-512}
|
|
300
|
+
patternUnits="userSpaceOnUse"
|
|
301
|
+
>
|
|
302
|
+
<Use xlinkHref="#Outlook_svg__n" />
|
|
303
|
+
</Pattern>
|
|
304
|
+
<Path id="Outlook_svg__k" d="M0 13h42v37H0z" />
|
|
305
|
+
<Path id="Outlook_svg__o" d="M0 50h42v37H0z" />
|
|
306
|
+
<Path id="Outlook_svg__s" d="M0 87h42v37H0z" />
|
|
307
|
+
<Path id="Outlook_svg__w" d="M42 13h42v37H42z" />
|
|
308
|
+
<Path id="Outlook_svg__A" d="M42 50h42v37H42z" />
|
|
309
|
+
<Path id="Outlook_svg__E" d="M42 87h42v37H42z" />
|
|
310
|
+
<Path id="Outlook_svg__I" d="M84 13h42v37H84z" />
|
|
311
|
+
<Path id="Outlook_svg__M" d="M84 50h42v37H84z" />
|
|
312
|
+
<Path id="Outlook_svg__Q" d="M84 87h42v37H84z" />
|
|
313
|
+
<Path
|
|
314
|
+
id="Outlook_svg__b"
|
|
315
|
+
d="M6.83 76.357 72 58l65.17 18.357a8 8 0 0 1 5.83 7.7v69.398H1V84.058a8 8 0 0 1 5.83-7.7"
|
|
316
|
+
/>
|
|
317
|
+
<Path
|
|
318
|
+
id="Outlook_svg__U"
|
|
319
|
+
d="M139.002 79.714 68.077 38.839c2.477 1.429 5.549 1.29 8.024-.142L143 0v72.904c0 4.419-3.928 6.772-3.998 6.81"
|
|
320
|
+
/>
|
|
321
|
+
<Path
|
|
322
|
+
id="Outlook_svg__Y"
|
|
323
|
+
d="m.8 0 138.202 79.714a7.96 7.96 0 0 1-4.202 1.19H8.8a8 8 0 0 1-8-8z"
|
|
324
|
+
/>
|
|
325
|
+
<Path
|
|
326
|
+
id="Outlook_svg__ab"
|
|
327
|
+
d="M8 75.746V8a8 8 0 0 1 8-8h110a8 8 0 0 1 8 8v67.746l2.17.611a8 8 0 0 1 5.83 7.7V157a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8V84.058a8 8 0 0 1 5.83-7.7z"
|
|
328
|
+
/>
|
|
329
|
+
<Path
|
|
330
|
+
id="Outlook_svg__am"
|
|
331
|
+
d="M47.79 73.688q-10.53 0-17.16-6.853T24 48.977q0-11.621 6.733-18.8Q37.468 23.002 48.575 23q10.494 0 16.97 6.87 6.477 6.87 6.477 18.115 0 11.553-6.716 18.628-6.715 7.075-17.517 7.075m.498-42.186q-6.279 0-9.973 4.633Q34.62 40.77 34.62 48.4q0 7.74 3.694 12.246t9.678 4.506q6.168 0 9.788-4.379t3.62-12.155q0-8.104-3.509-12.61t-9.604-4.506"
|
|
332
|
+
/>
|
|
333
|
+
<Rect id="Outlook_svg__e" width={126} height={165} rx={8} />
|
|
334
|
+
<Rect id="Outlook_svg__ae" width={96} height={96} rx={8} />
|
|
335
|
+
<Rect id="Outlook_svg__ak" width={96} height={98} y={-1} rx={8} />
|
|
336
|
+
<RadialGradient
|
|
337
|
+
id="Outlook_svg__ag"
|
|
338
|
+
cx="86.601%"
|
|
339
|
+
cy="84.21%"
|
|
340
|
+
r="62.398%"
|
|
341
|
+
fx="86.601%"
|
|
342
|
+
fy="84.21%"
|
|
343
|
+
>
|
|
344
|
+
<Stop offset="0%" stopColor="#004F9D" />
|
|
345
|
+
<Stop offset="100%" stopColor="#004F9D" stopOpacity={0} />
|
|
346
|
+
</RadialGradient>
|
|
347
|
+
</Defs>
|
|
348
|
+
<G fill="none" fillRule="evenodd">
|
|
349
|
+
<G transform="translate(47)">
|
|
350
|
+
<Use xlinkHref="#Outlook_svg__b" fill="url(#Outlook_svg__a)" />
|
|
351
|
+
<Use
|
|
352
|
+
xlinkHref="#Outlook_svg__b"
|
|
353
|
+
fill="url(#Outlook_svg__c)"
|
|
354
|
+
fillOpacity={0.012}
|
|
355
|
+
/>
|
|
356
|
+
<Use
|
|
357
|
+
xlinkHref="#Outlook_svg__b"
|
|
358
|
+
fill="#000"
|
|
359
|
+
filter="url(#Outlook_svg__d)"
|
|
360
|
+
/>
|
|
361
|
+
<G transform="translate(9)">
|
|
362
|
+
<Mask id="Outlook_svg__i" fill={props.color}>
|
|
363
|
+
<Use xlinkHref="#Outlook_svg__e" />
|
|
364
|
+
</Mask>
|
|
365
|
+
<Use xlinkHref="#Outlook_svg__e" fill="url(#Outlook_svg__f)" />
|
|
366
|
+
<Use
|
|
367
|
+
xlinkHref="#Outlook_svg__e"
|
|
368
|
+
fill="url(#Outlook_svg__g)"
|
|
369
|
+
fillOpacity={0.012}
|
|
370
|
+
/>
|
|
371
|
+
<Use
|
|
372
|
+
xlinkHref="#Outlook_svg__e"
|
|
373
|
+
fill="#000"
|
|
374
|
+
filter="url(#Outlook_svg__h)"
|
|
375
|
+
/>
|
|
376
|
+
<G mask="url(#Outlook_svg__i)">
|
|
377
|
+
<Use xlinkHref="#Outlook_svg__k" fill="url(#Outlook_svg__j)" />
|
|
378
|
+
<Use
|
|
379
|
+
xlinkHref="#Outlook_svg__k"
|
|
380
|
+
fill="url(#Outlook_svg__l)"
|
|
381
|
+
fillOpacity={0.012}
|
|
382
|
+
/>
|
|
383
|
+
<Use
|
|
384
|
+
xlinkHref="#Outlook_svg__k"
|
|
385
|
+
fill="#000"
|
|
386
|
+
filter="url(#Outlook_svg__m)"
|
|
387
|
+
/>
|
|
388
|
+
</G>
|
|
389
|
+
<G mask="url(#Outlook_svg__i)">
|
|
390
|
+
<Use xlinkHref="#Outlook_svg__o" fill="url(#Outlook_svg__n)" />
|
|
391
|
+
<Use
|
|
392
|
+
xlinkHref="#Outlook_svg__o"
|
|
393
|
+
fill="url(#Outlook_svg__p)"
|
|
394
|
+
fillOpacity={0.012}
|
|
395
|
+
/>
|
|
396
|
+
<Use
|
|
397
|
+
xlinkHref="#Outlook_svg__o"
|
|
398
|
+
fill="#000"
|
|
399
|
+
filter="url(#Outlook_svg__q)"
|
|
400
|
+
/>
|
|
401
|
+
</G>
|
|
402
|
+
<G mask="url(#Outlook_svg__i)">
|
|
403
|
+
<Use xlinkHref="#Outlook_svg__s" fill="url(#Outlook_svg__r)" />
|
|
404
|
+
<Use
|
|
405
|
+
xlinkHref="#Outlook_svg__s"
|
|
406
|
+
fill="url(#Outlook_svg__t)"
|
|
407
|
+
fillOpacity={0.012}
|
|
408
|
+
/>
|
|
409
|
+
<Use
|
|
410
|
+
xlinkHref="#Outlook_svg__s"
|
|
411
|
+
fill="#000"
|
|
412
|
+
filter="url(#Outlook_svg__u)"
|
|
413
|
+
/>
|
|
414
|
+
</G>
|
|
415
|
+
<G mask="url(#Outlook_svg__i)">
|
|
416
|
+
<Use xlinkHref="#Outlook_svg__w" fill="url(#Outlook_svg__v)" />
|
|
417
|
+
<Use
|
|
418
|
+
xlinkHref="#Outlook_svg__w"
|
|
419
|
+
fill="url(#Outlook_svg__x)"
|
|
420
|
+
fillOpacity={0.012}
|
|
421
|
+
/>
|
|
422
|
+
<Use
|
|
423
|
+
xlinkHref="#Outlook_svg__w"
|
|
424
|
+
fill="#000"
|
|
425
|
+
filter="url(#Outlook_svg__y)"
|
|
426
|
+
/>
|
|
427
|
+
</G>
|
|
428
|
+
<G mask="url(#Outlook_svg__i)">
|
|
429
|
+
<Use xlinkHref="#Outlook_svg__A" fill="url(#Outlook_svg__z)" />
|
|
430
|
+
<Use
|
|
431
|
+
xlinkHref="#Outlook_svg__A"
|
|
432
|
+
fill="url(#Outlook_svg__B)"
|
|
433
|
+
fillOpacity={0.012}
|
|
434
|
+
/>
|
|
435
|
+
<Use
|
|
436
|
+
xlinkHref="#Outlook_svg__A"
|
|
437
|
+
fill="#000"
|
|
438
|
+
filter="url(#Outlook_svg__C)"
|
|
439
|
+
/>
|
|
440
|
+
</G>
|
|
441
|
+
<G mask="url(#Outlook_svg__i)">
|
|
442
|
+
<Use xlinkHref="#Outlook_svg__E" fill="url(#Outlook_svg__D)" />
|
|
443
|
+
<Use
|
|
444
|
+
xlinkHref="#Outlook_svg__E"
|
|
445
|
+
fill="url(#Outlook_svg__F)"
|
|
446
|
+
fillOpacity={0.012}
|
|
447
|
+
/>
|
|
448
|
+
<Use
|
|
449
|
+
xlinkHref="#Outlook_svg__E"
|
|
450
|
+
fill="#000"
|
|
451
|
+
filter="url(#Outlook_svg__G)"
|
|
452
|
+
/>
|
|
453
|
+
</G>
|
|
454
|
+
<G mask="url(#Outlook_svg__i)">
|
|
455
|
+
<Use xlinkHref="#Outlook_svg__I" fill="url(#Outlook_svg__H)" />
|
|
456
|
+
<Use
|
|
457
|
+
xlinkHref="#Outlook_svg__I"
|
|
458
|
+
fill="url(#Outlook_svg__J)"
|
|
459
|
+
fillOpacity={0.012}
|
|
460
|
+
/>
|
|
461
|
+
<Use
|
|
462
|
+
xlinkHref="#Outlook_svg__I"
|
|
463
|
+
fill="#000"
|
|
464
|
+
filter="url(#Outlook_svg__K)"
|
|
465
|
+
/>
|
|
466
|
+
</G>
|
|
467
|
+
<G mask="url(#Outlook_svg__i)">
|
|
468
|
+
<Use xlinkHref="#Outlook_svg__M" fill="url(#Outlook_svg__L)" />
|
|
469
|
+
<Use
|
|
470
|
+
xlinkHref="#Outlook_svg__M"
|
|
471
|
+
fill="url(#Outlook_svg__N)"
|
|
472
|
+
fillOpacity={0.012}
|
|
473
|
+
/>
|
|
474
|
+
<Use
|
|
475
|
+
xlinkHref="#Outlook_svg__M"
|
|
476
|
+
fill="#000"
|
|
477
|
+
filter="url(#Outlook_svg__O)"
|
|
478
|
+
/>
|
|
479
|
+
</G>
|
|
480
|
+
<G mask="url(#Outlook_svg__i)">
|
|
481
|
+
<Use xlinkHref="#Outlook_svg__Q" fill="url(#Outlook_svg__P)" />
|
|
482
|
+
<Use
|
|
483
|
+
xlinkHref="#Outlook_svg__Q"
|
|
484
|
+
fill="url(#Outlook_svg__R)"
|
|
485
|
+
fillOpacity={0.012}
|
|
486
|
+
/>
|
|
487
|
+
<Use
|
|
488
|
+
xlinkHref="#Outlook_svg__Q"
|
|
489
|
+
fill="#000"
|
|
490
|
+
filter="url(#Outlook_svg__S)"
|
|
491
|
+
/>
|
|
492
|
+
</G>
|
|
493
|
+
</G>
|
|
494
|
+
<G transform="translate(0 84)">
|
|
495
|
+
<Use xlinkHref="#Outlook_svg__U" fill="url(#Outlook_svg__T)" />
|
|
496
|
+
<Use
|
|
497
|
+
xlinkHref="#Outlook_svg__U"
|
|
498
|
+
fill="url(#Outlook_svg__V)"
|
|
499
|
+
fillOpacity={0.012}
|
|
500
|
+
/>
|
|
501
|
+
<Use
|
|
502
|
+
xlinkHref="#Outlook_svg__U"
|
|
503
|
+
fill="#000"
|
|
504
|
+
filter="url(#Outlook_svg__W)"
|
|
505
|
+
/>
|
|
506
|
+
<Use xlinkHref="#Outlook_svg__Y" fill="url(#Outlook_svg__X)" />
|
|
507
|
+
<Use
|
|
508
|
+
xlinkHref="#Outlook_svg__Y"
|
|
509
|
+
fill="url(#Outlook_svg__Z)"
|
|
510
|
+
fillOpacity={0.012}
|
|
511
|
+
/>
|
|
512
|
+
<Use
|
|
513
|
+
xlinkHref="#Outlook_svg__Y"
|
|
514
|
+
fill="#000"
|
|
515
|
+
filter="url(#Outlook_svg__aa)"
|
|
516
|
+
/>
|
|
517
|
+
</G>
|
|
518
|
+
</G>
|
|
519
|
+
<G transform="translate(48)">
|
|
520
|
+
<Mask id="Outlook_svg__ad" fill={props.color}>
|
|
521
|
+
<Use xlinkHref="#Outlook_svg__ab" />
|
|
522
|
+
</Mask>
|
|
523
|
+
<Path
|
|
524
|
+
fill="#000"
|
|
525
|
+
fillOpacity={0.05}
|
|
526
|
+
d="M-40 33h80a8 8 0 0 1 8 8v80c0 4.418-13.582 18-18 18h-80a8 8 0 0 1-8-8V51c0-4.418 13.582-18 18-18"
|
|
527
|
+
filter="url(#Outlook_svg__ac)"
|
|
528
|
+
mask="url(#Outlook_svg__ad)"
|
|
529
|
+
/>
|
|
530
|
+
</G>
|
|
531
|
+
<G transform="translate(0 34)">
|
|
532
|
+
<Mask id="Outlook_svg__ai" fill={props.color}>
|
|
533
|
+
<Use xlinkHref="#Outlook_svg__ae" />
|
|
534
|
+
</Mask>
|
|
535
|
+
<Use xlinkHref="#Outlook_svg__ae" fill="url(#Outlook_svg__af)" />
|
|
536
|
+
<Use xlinkHref="#Outlook_svg__ae" fill="url(#Outlook_svg__ag)" />
|
|
537
|
+
<Use
|
|
538
|
+
xlinkHref="#Outlook_svg__ae"
|
|
539
|
+
fill="url(#Outlook_svg__ah)"
|
|
540
|
+
fillOpacity={0.013}
|
|
541
|
+
/>
|
|
542
|
+
<G fill="#000" mask="url(#Outlook_svg__ai)">
|
|
543
|
+
<Use xlinkHref="#Outlook_svg__ak" filter="url(#Outlook_svg__aj)" />
|
|
544
|
+
</G>
|
|
545
|
+
<G mask="url(#Outlook_svg__ai)">
|
|
546
|
+
<Use
|
|
547
|
+
xlinkHref="#Outlook_svg__am"
|
|
548
|
+
fill="#000"
|
|
549
|
+
filter="url(#Outlook_svg__al)"
|
|
550
|
+
/>
|
|
551
|
+
<Use xlinkHref="#Outlook_svg__am" fill="url(#Outlook_svg__an)" />
|
|
552
|
+
</G>
|
|
553
|
+
</G>
|
|
554
|
+
</G>
|
|
555
|
+
</Svg>
|
|
556
|
+
);
|
|
557
|
+
export default SvgOutlook;
|
package/dist/misc/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export { default as GoogleMeet } from "./GoogleMeet";
|
|
|
10
10
|
export { default as Instagram } from "./Instagram";
|
|
11
11
|
export { default as Linear } from "./Linear";
|
|
12
12
|
export { default as Microsoft } from "./Microsoft";
|
|
13
|
+
export { default as Outlook } from "./Outlook";
|
|
13
14
|
export { default as Safari } from "./Safari";
|
|
14
15
|
export { default as Shopify } from "./Shopify";
|
|
15
16
|
export { default as Slack } from "./Slack";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, LinearGradient, Stop } from "react-native-svg";
|
|
3
|
+
/* SVGR has dropped some elements not supported by react-native-svg: filter */
|
|
4
|
+
const SvgNeetoCode = (props) => (
|
|
5
|
+
<Svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={props.size}
|
|
8
|
+
height={props.size}
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="url(#neetoCode_svg__a)"
|
|
14
|
+
d="M55.996 31.998C55.996 18.744 45.252 8 31.998 8H8v47.996h47.996z"
|
|
15
|
+
/>
|
|
16
|
+
<G filter="url(#neetoCode_svg__b)">
|
|
17
|
+
<Path
|
|
18
|
+
fill={props.color}
|
|
19
|
+
fillRule="evenodd"
|
|
20
|
+
d="M43.31 31.998c0-6.248-5.065-11.313-11.313-11.313H20.684v22.627H43.31zm-10.724-5.115-7.76 5.48 2.234 2.233 5.526-3.903zm-4.19 9.049-1.336-1.336 1.336-.943zm8.61-4.61-1.337-1.335v2.28zm2.233 2.234-7.76 5.48v-3.81l5.527-3.903z"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
/>
|
|
23
|
+
</G>
|
|
24
|
+
<Path
|
|
25
|
+
fill="#11243E"
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
d="M98.083 17.627H81.236l8.336 8.198h8.511c5.365 0 9.708 4.25 9.708 9.488V53h8.38V35.313c0-9.77-8.101-17.686-18.088-17.686m-9.707 9.392-8.38-8.241V53h8.38zm64.602 20.198-5.317-5.504-.319.3c-1.845 1.742-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485zm38.825 0-5.317-5.504-.319.3c-1.845 1.742-4.937 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.413c.283-5.871-1.216-10.969-4.28-14.606-3.071-3.645-7.678-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.688 0 5.074 1.903 9.503 5.295 12.663 3.391 3.158 8.242 5.022 14.096 5.022 6.836 0 11.264-2.333 14.463-5.485zm10.587-29.292h-5.919v7.554h5.919v13.192c0 5.326.795 8.958 3.049 11.235 2.258 2.28 5.869 3.094 11.179 3.094h1.553v-7.746h-.44c-1.597 0-2.824-.06-3.774-.237-.945-.177-1.574-.462-2.011-.883-.436-.42-.73-1.02-.912-1.922-.182-.908-.244-2.082-.244-3.61V25.479h7.381v-7.555h-7.381V9h-8.4zm-65.138 7.188c2.705 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.191-1.941m38.825 0c2.705 0 4.69.797 6.084 2.096 1.292 1.205 2.113 2.874 2.507 4.836h-17.804c.514-2.15 1.56-3.827 3.022-4.991 1.577-1.256 3.673-1.941 6.191-1.941m62.798.015c5.59 0 10.034 4.57 10.034 10.186S244.465 45.5 238.875 45.5c-5.588 0-9.966-4.566-9.966-10.185s4.378-10.186 9.966-10.186m0-7.501c-10.032 0-18.054 7.756-18.054 17.687 0 9.863 8.02 17.686 18.054 17.686 10.031 0 18.121-7.82 18.121-17.686 0-9.933-8.091-17.687-18.121-17.687"
|
|
28
|
+
clipRule="evenodd"
|
|
29
|
+
/>
|
|
30
|
+
<Path
|
|
31
|
+
fill="#11243E"
|
|
32
|
+
d="M261.189 33.067q0-6.455 2.883-11.531 2.946-5.139 7.959-7.959 5.076-2.882 11.342-2.882 7.332 0 12.847 3.76t7.708 10.402h-10.089q-1.504-3.133-4.262-4.7-2.694-1.566-6.266-1.566-3.823 0-6.831 1.817-2.945 1.754-4.637 5.013-1.63 3.259-1.63 7.646 0 4.323 1.63 7.645 1.692 3.258 4.637 5.076 3.007 1.755 6.831 1.755 3.572 0 6.266-1.567 2.758-1.63 4.262-4.763h10.089q-2.193 6.705-7.708 10.466-5.452 3.697-12.847 3.697-6.266 0-11.342-2.82-5.013-2.883-7.959-7.959-2.883-5.076-2.883-11.53m64.982 22.497q-5.013 0-9.024-2.193-4.011-2.256-6.329-6.33-2.256-4.073-2.256-9.4 0-5.326 2.318-9.4 2.381-4.073 6.455-6.266 4.073-2.256 9.087-2.256t9.086 2.256q4.074 2.193 6.392 6.266 2.382 4.074 2.382 9.4t-2.444 9.4q-2.382 4.074-6.518 6.33-4.073 2.193-9.149 2.193m0-7.645a9.14 9.14 0 0 0 4.449-1.128q2.131-1.191 3.384-3.51 1.254-2.317 1.254-5.64 0-4.95-2.632-7.582-2.57-2.695-6.33-2.695t-6.329 2.695q-2.507 2.631-2.507 7.582t2.444 7.646q2.506 2.631 6.267 2.632m21.624-10.403q0-5.265 2.068-9.337 2.13-4.074 5.765-6.267t8.084-2.193q3.384 0 6.455 1.504 3.07 1.44 4.888 3.885V8.627h8.898V55h-8.898v-5.139q-1.63 2.57-4.575 4.136t-6.831 1.567q-4.386 0-8.021-2.256t-5.765-6.33q-2.068-4.135-2.068-9.462m27.322.125q0-3.196-1.253-5.452-1.254-2.318-3.384-3.509a8.87 8.87 0 0 0-4.575-1.253 8.9 8.9 0 0 0-4.512 1.19q-2.067 1.191-3.384 3.51-1.253 2.256-1.253 5.389t1.253 5.515q1.317 2.318 3.384 3.572 2.132 1.253 4.512 1.253a9.23 9.23 0 0 0 4.575-1.19q2.13-1.254 3.384-3.51 1.253-2.319 1.253-5.515m49.012-.752q0 1.881-.251 3.384h-25.38q.313 3.76 2.632 5.891 2.319 2.13 5.703 2.13 4.887 0 6.956-4.198h9.462q-1.503 5.014-5.765 8.272-4.261 3.196-10.465 3.196-5.014 0-9.024-2.193-3.948-2.256-6.204-6.33-2.194-4.073-2.194-9.4 0-5.39 2.194-9.462 2.193-4.074 6.141-6.267t9.087-2.193q4.95 0 8.836 2.13 3.948 2.13 6.078 6.079 2.194 3.885 2.194 8.961m-9.087-2.506q-.063-3.384-2.444-5.39-2.381-2.067-5.828-2.068-3.26 0-5.515 2.006-2.193 1.942-2.694 5.452z"
|
|
33
|
+
/>
|
|
34
|
+
<Defs>
|
|
35
|
+
<LinearGradient
|
|
36
|
+
id="neetoCode_svg__a"
|
|
37
|
+
x1={2.858}
|
|
38
|
+
x2={77.423}
|
|
39
|
+
y1={-5.199}
|
|
40
|
+
y2={93.022}
|
|
41
|
+
gradientUnits="userSpaceOnUse"
|
|
42
|
+
>
|
|
43
|
+
<Stop offset={0.374} stopColor="#8176FF" />
|
|
44
|
+
<Stop offset={1} stopColor="#41BBFF" />
|
|
45
|
+
</LinearGradient>
|
|
46
|
+
</Defs>
|
|
47
|
+
</Svg>
|
|
48
|
+
);
|
|
49
|
+
export default SvgNeetoCode;
|
|
@@ -4,6 +4,7 @@ export { default as NeetoCrm } from "./NeetoCrm";
|
|
|
4
4
|
export { default as NeetoCal } from "./NeetoCal";
|
|
5
5
|
export { default as NeetoChangelog } from "./NeetoChangelog";
|
|
6
6
|
export { default as NeetoChat } from "./NeetoChat";
|
|
7
|
+
export { default as NeetoCode } from "./NeetoCode";
|
|
7
8
|
export { default as NeetoCourse } from "./NeetoCourse";
|
|
8
9
|
export { default as NeetoDeploy } from "./NeetoDeploy";
|
|
9
10
|
export { default as NeetoDesk } from "./NeetoDesk";
|