@bigbinary/neeto-icons-rn 1.18.5 → 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/misc/Outlook.js +557 -0
- package/dist/misc/index.js +1 -0
- package/package.json +1 -1
|
@@ -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";
|