@tant/icons 0.1.14

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.
@@ -0,0 +1,1680 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
6
+
7
+ var React = _interopDefault(require('react'));
8
+ var PropTypes = _interopDefault(require('prop-types'));
9
+
10
+ function _extends() {
11
+ _extends = Object.assign || function (target) {
12
+ for (var i = 1; i < arguments.length; i++) {
13
+ var source = arguments[i];
14
+
15
+ for (var key in source) {
16
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
17
+ target[key] = source[key];
18
+ }
19
+ }
20
+ }
21
+
22
+ return target;
23
+ };
24
+
25
+ return _extends.apply(this, arguments);
26
+ }
27
+
28
+ function _objectWithoutPropertiesLoose(source, excluded) {
29
+ if (source == null) return {};
30
+ var target = {};
31
+ var sourceKeys = Object.keys(source);
32
+ var key, i;
33
+
34
+ for (i = 0; i < sourceKeys.length; i++) {
35
+ key = sourceKeys[i];
36
+ if (excluded.indexOf(key) >= 0) continue;
37
+ target[key] = source[key];
38
+ }
39
+
40
+ return target;
41
+ }
42
+
43
+ function _objectWithoutProperties(source, excluded) {
44
+ if (source == null) return {};
45
+
46
+ var target = _objectWithoutPropertiesLoose(source, excluded);
47
+
48
+ var key, i;
49
+
50
+ if (Object.getOwnPropertySymbols) {
51
+ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
52
+
53
+ for (i = 0; i < sourceSymbolKeys.length; i++) {
54
+ key = sourceSymbolKeys[i];
55
+ if (excluded.indexOf(key) >= 0) continue;
56
+ if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
57
+ target[key] = source[key];
58
+ }
59
+ }
60
+
61
+ return target;
62
+ }
63
+
64
+ var ArrowDownRight = function ArrowDownRight(props) {
65
+ var color = props.color,
66
+ size = props.size,
67
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
68
+
69
+ return /*#__PURE__*/React.createElement("svg", _extends({
70
+ xmlns: "http://www.w3.org/2000/svg",
71
+ width: size,
72
+ height: size,
73
+ viewBox: "0 0 24 24",
74
+ fill: color
75
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
76
+ fillRule: "evenodd",
77
+ clipRule: "evenodd",
78
+ d: "M7.707 6.293a1 1 0 00-1.414 1.414L14.586 16H7a1 1 0 100 2h10.003a.996.996 0 00.71-.3.997.997 0 00.287-.697V7a1 1 0 10-2 0v7.586L7.707 6.293z"
79
+ }));
80
+ };
81
+
82
+ ArrowDownRight.propTypes = {
83
+ color: PropTypes.string,
84
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
85
+ };
86
+ ArrowDownRight.defaultProps = {
87
+ color: 'currentColor',
88
+ size: '24'
89
+ };
90
+
91
+ var ArrowLeft = function ArrowLeft(props) {
92
+ var color = props.color,
93
+ size = props.size,
94
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
95
+
96
+ return /*#__PURE__*/React.createElement("svg", _extends({
97
+ xmlns: "http://www.w3.org/2000/svg",
98
+ width: size,
99
+ height: size,
100
+ viewBox: "0 0 24 24",
101
+ fill: color
102
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
103
+ fillRule: "evenodd",
104
+ clipRule: "evenodd",
105
+ d: "M12.707 5.707a1 1 0 00-1.414-1.414l-7 7a1 1 0 000 1.414l7 7a1 1 0 001.414-1.414L7.414 13H19a1 1 0 100-2H7.414l5.293-5.293z"
106
+ }));
107
+ };
108
+
109
+ ArrowLeft.propTypes = {
110
+ color: PropTypes.string,
111
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
112
+ };
113
+ ArrowLeft.defaultProps = {
114
+ color: 'currentColor',
115
+ size: '24'
116
+ };
117
+
118
+ var ArrowLeftCircle = function ArrowLeftCircle(props) {
119
+ var color = props.color,
120
+ size = props.size,
121
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
122
+
123
+ return /*#__PURE__*/React.createElement("svg", _extends({
124
+ xmlns: "http://www.w3.org/2000/svg",
125
+ width: size,
126
+ height: size,
127
+ viewBox: "0 0 24 24",
128
+ fill: color
129
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
130
+ fillRule: "evenodd",
131
+ clipRule: "evenodd",
132
+ d: "M12 3a9 9 0 100 18 9 9 0 000-18zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
133
+ }), /*#__PURE__*/React.createElement("path", {
134
+ d: "M12.707 8.707a1 1 0 00-1.414-1.414l-4 4a1 1 0 000 1.414l4 4a1 1 0 001.414-1.414L10.414 13H16a1 1 0 100-2h-5.586l2.293-2.293z"
135
+ }));
136
+ };
137
+
138
+ ArrowLeftCircle.propTypes = {
139
+ color: PropTypes.string,
140
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
141
+ };
142
+ ArrowLeftCircle.defaultProps = {
143
+ color: 'currentColor',
144
+ size: '24'
145
+ };
146
+
147
+ var ArrowRight = function ArrowRight(props) {
148
+ var color = props.color,
149
+ size = props.size,
150
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
151
+
152
+ return /*#__PURE__*/React.createElement("svg", _extends({
153
+ xmlns: "http://www.w3.org/2000/svg",
154
+ width: size,
155
+ height: size,
156
+ viewBox: "0 0 24 24",
157
+ fill: color
158
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
159
+ fillRule: "evenodd",
160
+ clipRule: "evenodd",
161
+ d: "M12.707 4.293a1 1 0 10-1.414 1.414L16.586 11H5a1 1 0 100 2h11.586l-5.293 5.293a1 1 0 001.414 1.414l7-7a1 1 0 000-1.414l-7-7z"
162
+ }));
163
+ };
164
+
165
+ ArrowRight.propTypes = {
166
+ color: PropTypes.string,
167
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
168
+ };
169
+ ArrowRight.defaultProps = {
170
+ color: 'currentColor',
171
+ size: '24'
172
+ };
173
+
174
+ var ArrowRightCircle = function ArrowRightCircle(props) {
175
+ var color = props.color,
176
+ size = props.size,
177
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
178
+
179
+ return /*#__PURE__*/React.createElement("svg", _extends({
180
+ xmlns: "http://www.w3.org/2000/svg",
181
+ width: size,
182
+ height: size,
183
+ viewBox: "0 0 24 24",
184
+ fill: color
185
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
186
+ fillRule: "evenodd",
187
+ clipRule: "evenodd",
188
+ d: "M12 3a9 9 0 100 18 9 9 0 000-18zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
189
+ }), /*#__PURE__*/React.createElement("path", {
190
+ d: "M12.707 7.293a1 1 0 10-1.414 1.414L13.586 11H8a1 1 0 100 2h5.586l-2.293 2.293a1 1 0 001.414 1.414l4-4a1 1 0 000-1.414l-4-4z"
191
+ }));
192
+ };
193
+
194
+ ArrowRightCircle.propTypes = {
195
+ color: PropTypes.string,
196
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
197
+ };
198
+ ArrowRightCircle.defaultProps = {
199
+ color: 'currentColor',
200
+ size: '24'
201
+ };
202
+
203
+ var ArrowUp = function ArrowUp(props) {
204
+ var color = props.color,
205
+ size = props.size,
206
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
207
+
208
+ return /*#__PURE__*/React.createElement("svg", _extends({
209
+ xmlns: "http://www.w3.org/2000/svg",
210
+ width: size,
211
+ height: size,
212
+ viewBox: "0 0 24 24",
213
+ fill: color
214
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
215
+ fillRule: "evenodd",
216
+ clipRule: "evenodd",
217
+ d: "M12.707 4.293a1 1 0 00-1.414 0l-7 7a1 1 0 101.414 1.414L11 7.414V19a1 1 0 102 0V7.414l5.293 5.293a1 1 0 001.414-1.414l-7-7z"
218
+ }));
219
+ };
220
+
221
+ ArrowUp.propTypes = {
222
+ color: PropTypes.string,
223
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
224
+ };
225
+ ArrowUp.defaultProps = {
226
+ color: 'currentColor',
227
+ size: '24'
228
+ };
229
+
230
+ var ArrowUpCircle = function ArrowUpCircle(props) {
231
+ var color = props.color,
232
+ size = props.size,
233
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
234
+
235
+ return /*#__PURE__*/React.createElement("svg", _extends({
236
+ xmlns: "http://www.w3.org/2000/svg",
237
+ width: size,
238
+ height: size,
239
+ viewBox: "0 0 24 24",
240
+ fill: color
241
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
242
+ fillRule: "evenodd",
243
+ clipRule: "evenodd",
244
+ d: "M12 3a9 9 0 100 18 9 9 0 000-18zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
245
+ }), /*#__PURE__*/React.createElement("path", {
246
+ d: "M12.707 7.293a1 1 0 00-1.414 0l-4 4a1 1 0 101.414 1.414L11 10.414V16a1 1 0 102 0v-5.586l2.293 2.293a1 1 0 001.414-1.414l-4-4z"
247
+ }));
248
+ };
249
+
250
+ ArrowUpCircle.propTypes = {
251
+ color: PropTypes.string,
252
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
253
+ };
254
+ ArrowUpCircle.defaultProps = {
255
+ color: 'currentColor',
256
+ size: '24'
257
+ };
258
+
259
+ var ArrowUpLeft = function ArrowUpLeft(props) {
260
+ var color = props.color,
261
+ size = props.size,
262
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
263
+
264
+ return /*#__PURE__*/React.createElement("svg", _extends({
265
+ xmlns: "http://www.w3.org/2000/svg",
266
+ width: size,
267
+ height: size,
268
+ viewBox: "0 0 24 24",
269
+ fill: color
270
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
271
+ fillRule: "evenodd",
272
+ clipRule: "evenodd",
273
+ d: "M7 6a1 1 0 00-1 1v10a1 1 0 102 0V9.34l8.293 8.367a1 1 0 001.414-1.414L9.487 8H17a1 1 0 100-2H7z"
274
+ }));
275
+ };
276
+
277
+ ArrowUpLeft.propTypes = {
278
+ color: PropTypes.string,
279
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
280
+ };
281
+ ArrowUpLeft.defaultProps = {
282
+ color: 'currentColor',
283
+ size: '24'
284
+ };
285
+
286
+ var ArrowUpRight = function ArrowUpRight(props) {
287
+ var color = props.color,
288
+ size = props.size,
289
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
290
+
291
+ return /*#__PURE__*/React.createElement("svg", _extends({
292
+ xmlns: "http://www.w3.org/2000/svg",
293
+ width: size,
294
+ height: size,
295
+ viewBox: "0 0 24 24",
296
+ fill: color
297
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
298
+ fillRule: "evenodd",
299
+ clipRule: "evenodd",
300
+ d: "M7 6a1 1 0 000 2h7.513l-8.22 8.293a1 1 0 101.414 1.414L16 9.341V17a1 1 0 102 0V7a1 1 0 00-1-1H7z"
301
+ }));
302
+ };
303
+
304
+ ArrowUpRight.propTypes = {
305
+ color: PropTypes.string,
306
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
307
+ };
308
+ ArrowUpRight.defaultProps = {
309
+ color: 'currentColor',
310
+ size: '24'
311
+ };
312
+
313
+ var AtSign = function AtSign(props) {
314
+ var color = props.color,
315
+ size = props.size,
316
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
317
+
318
+ return /*#__PURE__*/React.createElement("svg", _extends({
319
+ xmlns: "http://www.w3.org/2000/svg",
320
+ width: size,
321
+ height: size,
322
+ viewBox: "0 0 24 24",
323
+ fill: color
324
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
325
+ fillRule: "evenodd",
326
+ clipRule: "evenodd",
327
+ d: "M14.5 1.288a11 11 0 104.188 19.446 1 1 0 10-1.216-1.588A9 9 0 1121 12v1a2 2 0 01-4 0V8a1 1 0 00-2 0 5 5 0 10.74 7.319A3.996 3.996 0 0019 17a4 4 0 004-4v-1a11 11 0 00-8.5-10.712zM9 12a3 3 0 116 0 3 3 0 01-6 0z"
328
+ }));
329
+ };
330
+
331
+ AtSign.propTypes = {
332
+ color: PropTypes.string,
333
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
334
+ };
335
+ AtSign.defaultProps = {
336
+ color: 'currentColor',
337
+ size: '24'
338
+ };
339
+
340
+ var Award = function Award(props) {
341
+ var color = props.color,
342
+ size = props.size,
343
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
344
+
345
+ return /*#__PURE__*/React.createElement("svg", _extends({
346
+ xmlns: "http://www.w3.org/2000/svg",
347
+ width: size,
348
+ height: size,
349
+ viewBox: "0 0 24 24",
350
+ fill: color
351
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
352
+ clipPath: "url(#clip0)",
353
+ fillRule: "evenodd",
354
+ clipRule: "evenodd"
355
+ }, /*#__PURE__*/React.createElement("path", {
356
+ d: "M12 2a6 6 0 100 12 6 6 0 000-12zM4 8a8 8 0 1116 0A8 8 0 014 8z"
357
+ }), /*#__PURE__*/React.createElement("path", {
358
+ d: "M15.659 12.889a1 1 0 011.122.86l1.21 9.12a1 1 0 01-1.506.989L12 21.166l-4.486 2.692a1 1 0 01-1.505-.99l1.21-9.11a1 1 0 011.982.264l-.937 7.053 3.222-1.933a1 1 0 011.028 0l3.222 1.933-.937-7.063a1 1 0 01.86-1.123z"
359
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
360
+ id: "clip0"
361
+ }, /*#__PURE__*/React.createElement("rect", {
362
+ width: "24",
363
+ height: "24"
364
+ }))));
365
+ };
366
+
367
+ Award.propTypes = {
368
+ color: PropTypes.string,
369
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
370
+ };
371
+ Award.defaultProps = {
372
+ color: 'currentColor',
373
+ size: '24'
374
+ };
375
+
376
+ var BarChart = function BarChart(props) {
377
+ var color = props.color,
378
+ size = props.size,
379
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
380
+
381
+ return /*#__PURE__*/React.createElement("svg", _extends({
382
+ xmlns: "http://www.w3.org/2000/svg",
383
+ width: size,
384
+ height: size,
385
+ viewBox: "0 0 24 24",
386
+ fill: color
387
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
388
+ fillRule: "evenodd",
389
+ clipRule: "evenodd",
390
+ d: "M12 9a1 1 0 011 1v10a1 1 0 11-2 0V10a1 1 0 011-1z"
391
+ }), /*#__PURE__*/React.createElement("path", {
392
+ fillRule: "evenodd",
393
+ clipRule: "evenodd",
394
+ d: "M18 3a1 1 0 011 1v16a1 1 0 11-2 0V4a1 1 0 011-1z"
395
+ }), /*#__PURE__*/React.createElement("path", {
396
+ fillRule: "evenodd",
397
+ clipRule: "evenodd",
398
+ d: "M6 15a1 1 0 011 1v4a1 1 0 11-2 0v-4a1 1 0 011-1z"
399
+ }));
400
+ };
401
+
402
+ BarChart.propTypes = {
403
+ color: PropTypes.string,
404
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
405
+ };
406
+ BarChart.defaultProps = {
407
+ color: 'currentColor',
408
+ size: '24'
409
+ };
410
+
411
+ var BarChart2 = function BarChart2(props) {
412
+ var color = props.color,
413
+ size = props.size,
414
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
415
+
416
+ return /*#__PURE__*/React.createElement("svg", _extends({
417
+ xmlns: "http://www.w3.org/2000/svg",
418
+ width: size,
419
+ height: size,
420
+ viewBox: "0 0 24 24",
421
+ fill: color
422
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
423
+ fillRule: "evenodd",
424
+ clipRule: "evenodd",
425
+ d: "M18 9a1 1 0 011 1v10a1 1 0 11-2 0V10a1 1 0 011-1z"
426
+ }), /*#__PURE__*/React.createElement("path", {
427
+ fillRule: "evenodd",
428
+ clipRule: "evenodd",
429
+ d: "M12 3a1 1 0 011 1v16a1 1 0 11-2 0V4a1 1 0 011-1z"
430
+ }), /*#__PURE__*/React.createElement("path", {
431
+ fillRule: "evenodd",
432
+ clipRule: "evenodd",
433
+ d: "M6 13a1 1 0 011 1v6a1 1 0 11-2 0v-6a1 1 0 011-1z"
434
+ }));
435
+ };
436
+
437
+ BarChart2.propTypes = {
438
+ color: PropTypes.string,
439
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
440
+ };
441
+ BarChart2.defaultProps = {
442
+ color: 'currentColor',
443
+ size: '24'
444
+ };
445
+
446
+ var Battery = function Battery(props) {
447
+ var color = props.color,
448
+ size = props.size,
449
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
450
+
451
+ return /*#__PURE__*/React.createElement("svg", _extends({
452
+ xmlns: "http://www.w3.org/2000/svg",
453
+ width: size,
454
+ height: size,
455
+ viewBox: "0 0 24 24",
456
+ fill: color
457
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
458
+ fillRule: "evenodd",
459
+ clipRule: "evenodd",
460
+ d: "M3 7a1 1 0 00-1 1v8a1 1 0 001 1h14a1 1 0 001-1V8a1 1 0 00-1-1H3zM0 8a3 3 0 013-3h14a3 3 0 013 3v8a3 3 0 01-3 3H3a3 3 0 01-3-3V8z"
461
+ }), /*#__PURE__*/React.createElement("path", {
462
+ fillRule: "evenodd",
463
+ clipRule: "evenodd",
464
+ d: "M23 10a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
465
+ }));
466
+ };
467
+
468
+ Battery.propTypes = {
469
+ color: PropTypes.string,
470
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
471
+ };
472
+ Battery.defaultProps = {
473
+ color: 'currentColor',
474
+ size: '24'
475
+ };
476
+
477
+ var BatteryCharging = function BatteryCharging(props) {
478
+ var color = props.color,
479
+ size = props.size,
480
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
481
+
482
+ return /*#__PURE__*/React.createElement("svg", _extends({
483
+ xmlns: "http://www.w3.org/2000/svg",
484
+ width: size,
485
+ height: size,
486
+ viewBox: "0 0 24 24",
487
+ fill: color
488
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
489
+ fillRule: "evenodd",
490
+ clipRule: "evenodd",
491
+ d: "M11.832 6.555a1 1 0 00-1.664-1.11l-4 6A1 1 0 007 13h4.132l-2.964 4.445a1 1 0 101.664 1.11l4-6A1 1 0 0013 11H8.869l2.963-4.445zM3 7a1 1 0 00-1 1v8a1 1 0 001 1h2a1 1 0 110 2H3a3 3 0 01-3-3V8a3 3 0 013-3h3.19a1 1 0 010 2H3zm11-1a1 1 0 011-1h2a3 3 0 013 3v8a3 3 0 01-3 3h-3.19a1 1 0 110-2H17a1 1 0 001-1V8a1 1 0 00-1-1h-2a1 1 0 01-1-1zm9 4a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
492
+ }));
493
+ };
494
+
495
+ BatteryCharging.propTypes = {
496
+ color: PropTypes.string,
497
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
498
+ };
499
+ BatteryCharging.defaultProps = {
500
+ color: 'currentColor',
501
+ size: '24'
502
+ };
503
+
504
+ var Bell = function Bell(props) {
505
+ var color = props.color,
506
+ size = props.size,
507
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
508
+
509
+ return /*#__PURE__*/React.createElement("svg", _extends({
510
+ xmlns: "http://www.w3.org/2000/svg",
511
+ width: size,
512
+ height: size,
513
+ viewBox: "0 0 24 24",
514
+ fill: color
515
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
516
+ fillRule: "evenodd",
517
+ clipRule: "evenodd",
518
+ d: "M12 3a6 6 0 00-6 6v5a4 4 0 01-.536 2h13.072A4 4 0 0118 14V9a6 6 0 00-6-6zm10 13a2 2 0 01-2-2V9A8 8 0 004 9v5a2 2 0 01-2 2 1 1 0 100 2h20v-2zM9.768 20.135a1 1 0 011.367.363 1 1 0 001.73 0 1 1 0 011.73 1.004 3 3 0 01-5.19 0 1 1 0 01.363-1.367z"
519
+ }));
520
+ };
521
+
522
+ Bell.propTypes = {
523
+ color: PropTypes.string,
524
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
525
+ };
526
+ Bell.defaultProps = {
527
+ color: 'currentColor',
528
+ size: '24'
529
+ };
530
+
531
+ var BellOff = function BellOff(props) {
532
+ var color = props.color,
533
+ size = props.size,
534
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
535
+
536
+ return /*#__PURE__*/React.createElement("svg", _extends({
537
+ xmlns: "http://www.w3.org/2000/svg",
538
+ width: size,
539
+ height: size,
540
+ viewBox: "0 0 24 24",
541
+ fill: color
542
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
543
+ fillRule: "evenodd",
544
+ clipRule: "evenodd",
545
+ d: "M.293.293a1 1 0 011.414 0l4.779 4.779h.001l17.22 17.22a1 1 0 01-1.414 1.415L16.586 18H2a1 1 0 110-2 2 2 0 002-2V9c0-1.038.202-2.057.584-3.001L.293 1.707a1 1 0 010-1.414zm5.877 7.29L14.586 16H5.464A4 4 0 006 14V9c0-.481.058-.956.17-1.416z"
546
+ }), /*#__PURE__*/React.createElement("path", {
547
+ d: "M12.045 2.997a6 6 0 00-2.994.774 1 1 0 01-.982-1.742A8 8 0 0120 9.001V13a1 1 0 11-2 0V9a6.003 6.003 0 00-5.955-6.003z"
548
+ }), /*#__PURE__*/React.createElement("path", {
549
+ d: "M9.768 20.135a1 1 0 011.367.363 1 1 0 001.73 0 1 1 0 011.73 1.004 3 3 0 01-5.19 0 1 1 0 01.363-1.367z"
550
+ }));
551
+ };
552
+
553
+ BellOff.propTypes = {
554
+ color: PropTypes.string,
555
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
556
+ };
557
+ BellOff.defaultProps = {
558
+ color: 'currentColor',
559
+ size: '24'
560
+ };
561
+
562
+ var Bluetooth = function Bluetooth(props) {
563
+ var color = props.color,
564
+ size = props.size,
565
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
566
+
567
+ return /*#__PURE__*/React.createElement("svg", _extends({
568
+ xmlns: "http://www.w3.org/2000/svg",
569
+ width: size,
570
+ height: size,
571
+ viewBox: "0 0 24 24",
572
+ fill: color
573
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
574
+ clipPath: "url(#clip0)"
575
+ }, /*#__PURE__*/React.createElement("path", {
576
+ fillRule: "evenodd",
577
+ clipRule: "evenodd",
578
+ d: "M11.617.076a1 1 0 011.09.217l5.5 5.5a1 1 0 010 1.414L13.414 12l4.793 4.793a1 1 0 010 1.414l-5.5 5.5A1 1 0 0111 23v-8.586l-3.793 3.793a1 1 0 01-1.414-1.414L10.586 12 5.793 7.207a1 1 0 011.414-1.414L11 9.586V1a1 1 0 01.617-.924zM13 14.414l3.086 3.086L13 20.586v-6.172zm0-4.828V3.414L16.086 6.5 13 9.586z"
579
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
580
+ id: "clip0"
581
+ }, /*#__PURE__*/React.createElement("rect", {
582
+ width: "24",
583
+ height: "24"
584
+ }))));
585
+ };
586
+
587
+ Bluetooth.propTypes = {
588
+ color: PropTypes.string,
589
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
590
+ };
591
+ Bluetooth.defaultProps = {
592
+ color: 'currentColor',
593
+ size: '24'
594
+ };
595
+
596
+ var Bold = function Bold(props) {
597
+ var color = props.color,
598
+ size = props.size,
599
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
600
+
601
+ return /*#__PURE__*/React.createElement("svg", _extends({
602
+ xmlns: "http://www.w3.org/2000/svg",
603
+ width: size,
604
+ height: size,
605
+ viewBox: "0 0 24 24",
606
+ fill: color
607
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
608
+ fillRule: "evenodd",
609
+ clipRule: "evenodd",
610
+ d: "M5 4a1 1 0 011-1h8a5 5 0 110 10H6a1 1 0 01-1-1V4zm2 1v6h7a3 3 0 000-6H7z"
611
+ }), /*#__PURE__*/React.createElement("path", {
612
+ fillRule: "evenodd",
613
+ clipRule: "evenodd",
614
+ d: "M5 12a1 1 0 011-1h9a5 5 0 110 10H6a1 1 0 01-1-1v-8zm2 1v6h8a3 3 0 000-6H7z"
615
+ }));
616
+ };
617
+
618
+ Bold.propTypes = {
619
+ color: PropTypes.string,
620
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
621
+ };
622
+ Bold.defaultProps = {
623
+ color: 'currentColor',
624
+ size: '24'
625
+ };
626
+
627
+ var Book = function Book(props) {
628
+ var color = props.color,
629
+ size = props.size,
630
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
631
+
632
+ return /*#__PURE__*/React.createElement("svg", _extends({
633
+ xmlns: "http://www.w3.org/2000/svg",
634
+ width: size,
635
+ height: size,
636
+ viewBox: "0 0 24 24",
637
+ fill: color
638
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
639
+ fillRule: "evenodd",
640
+ clipRule: "evenodd",
641
+ d: "M6.5 18A1.5 1.5 0 005 19.5a1 1 0 11-2 0A3.5 3.5 0 016.5 16H20a1 1 0 110 2H6.5z"
642
+ }), /*#__PURE__*/React.createElement("path", {
643
+ fillRule: "evenodd",
644
+ clipRule: "evenodd",
645
+ d: "M6.5 3A1.5 1.5 0 005 4.5v15A1.5 1.5 0 006.5 21H19V3H6.5zm0-2H20a1 1 0 011 1v20a1 1 0 01-1 1H6.5A3.5 3.5 0 013 19.5v-15A3.5 3.5 0 016.5 1z"
646
+ }));
647
+ };
648
+
649
+ Book.propTypes = {
650
+ color: PropTypes.string,
651
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
652
+ };
653
+ Book.defaultProps = {
654
+ color: 'currentColor',
655
+ size: '24'
656
+ };
657
+
658
+ var Bookmark = function Bookmark(props) {
659
+ var color = props.color,
660
+ size = props.size,
661
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
662
+
663
+ return /*#__PURE__*/React.createElement("svg", _extends({
664
+ xmlns: "http://www.w3.org/2000/svg",
665
+ width: size,
666
+ height: size,
667
+ viewBox: "0 0 24 24",
668
+ fill: color
669
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
670
+ fillRule: "evenodd",
671
+ clipRule: "evenodd",
672
+ d: "M7 4a1 1 0 00-1 1v14.057l5.419-3.87a1 1 0 011.162 0L18 19.056V5a1 1 0 00-1-1H7zM4.879 2.879A3 3 0 017 2h10a3 3 0 013 3v16a1 1 0 01-1.581.814L12 17.229l-6.419 4.585A1 1 0 014 21V5a3 3 0 01.879-2.121z"
673
+ }));
674
+ };
675
+
676
+ Bookmark.propTypes = {
677
+ color: PropTypes.string,
678
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
679
+ };
680
+ Bookmark.defaultProps = {
681
+ color: 'currentColor',
682
+ size: '24'
683
+ };
684
+
685
+ var BookOpen = function BookOpen(props) {
686
+ var color = props.color,
687
+ size = props.size,
688
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
689
+
690
+ return /*#__PURE__*/React.createElement("svg", _extends({
691
+ xmlns: "http://www.w3.org/2000/svg",
692
+ width: size,
693
+ height: size,
694
+ viewBox: "0 0 24 24",
695
+ fill: color
696
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
697
+ fillRule: "evenodd",
698
+ clipRule: "evenodd",
699
+ d: "M1 3a1 1 0 011-1h6a5 5 0 015 5v14a1 1 0 11-2 0 2 2 0 00-2-2H2a1 1 0 01-1-1V3zm10 14.536V7a3 3 0 00-3-3H3v13h6a4 4 0 012 .536z"
700
+ }), /*#__PURE__*/React.createElement("path", {
701
+ fillRule: "evenodd",
702
+ clipRule: "evenodd",
703
+ d: "M12.464 3.464A5 5 0 0116 2h6a1 1 0 011 1v15a1 1 0 01-1 1h-7a2 2 0 00-2 2 1 1 0 11-2 0V7a5 5 0 011.464-3.536zM13 17.536A4 4 0 0115 17h6V4h-5a3 3 0 00-3 3v10.536z"
704
+ }));
705
+ };
706
+
707
+ BookOpen.propTypes = {
708
+ color: PropTypes.string,
709
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
710
+ };
711
+ BookOpen.defaultProps = {
712
+ color: 'currentColor',
713
+ size: '24'
714
+ };
715
+
716
+ var Box = function Box(props) {
717
+ var color = props.color,
718
+ size = props.size,
719
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
720
+
721
+ return /*#__PURE__*/React.createElement("svg", _extends({
722
+ xmlns: "http://www.w3.org/2000/svg",
723
+ width: size,
724
+ height: size,
725
+ viewBox: "0 0 24 24",
726
+ fill: color
727
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
728
+ fillRule: "evenodd",
729
+ clipRule: "evenodd",
730
+ d: "M11.556 2.345h-.001l-7.998 4h-.002A1 1 0 003 7.24v9.527a1 1 0 00.55.9l7.997 3.999a1.002 1.002 0 00.896 0l8-4 .002-.002A1 1 0 0021 16.77V7.242a1 1 0 00-.555-.895l-.002-.002-7.998-3.998a1 1 0 00-.89 0zm1.334-.895l.445-.896a3 3 0 00-2.67 0l-.002.002-7.998 3.998-.001.001A3 3 0 001 7.24v9.518a3 3 0 001.65 2.696l.003.001 8 4a3 3 0 002.684 0l7.998-3.998.001-.001A3 3 0 0023 16.771V7.24a3.002 3.002 0 00-1.664-2.685h-.001l-7.998-4-.447.895z"
731
+ }), /*#__PURE__*/React.createElement("path", {
732
+ fillRule: "evenodd",
733
+ clipRule: "evenodd",
734
+ d: "M1.426 5.713a1 1 0 011.341-.447L12 9.882l9.233-4.616a1 1 0 11.894 1.788l-9.68 4.84a1 1 0 01-.894 0l-9.68-4.84a1 1 0 01-.447-1.341z"
735
+ }), /*#__PURE__*/React.createElement("path", {
736
+ fillRule: "evenodd",
737
+ clipRule: "evenodd",
738
+ d: "M12 10a1 1 0 011 1v11.76a1 1 0 11-2 0V11a1 1 0 011-1z"
739
+ }));
740
+ };
741
+
742
+ Box.propTypes = {
743
+ color: PropTypes.string,
744
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
745
+ };
746
+ Box.defaultProps = {
747
+ color: 'currentColor',
748
+ size: '24'
749
+ };
750
+
751
+ var Briefcase = function Briefcase(props) {
752
+ var color = props.color,
753
+ size = props.size,
754
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
755
+
756
+ return /*#__PURE__*/React.createElement("svg", _extends({
757
+ xmlns: "http://www.w3.org/2000/svg",
758
+ width: size,
759
+ height: size,
760
+ viewBox: "0 0 24 24",
761
+ fill: color
762
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
763
+ fillRule: "evenodd",
764
+ clipRule: "evenodd",
765
+ d: "M4 8a1 1 0 00-1 1v10a1 1 0 001 1h16a1 1 0 001-1V9a1 1 0 00-1-1H4zM1 9a3 3 0 013-3h16a3 3 0 013 3v10a3 3 0 01-3 3H4a3 3 0 01-3-3V9z"
766
+ }), /*#__PURE__*/React.createElement("path", {
767
+ fillRule: "evenodd",
768
+ clipRule: "evenodd",
769
+ d: "M7.879 2.879A3 3 0 0110 2h4a3 3 0 013 3v16a1 1 0 11-2 0V5a1 1 0 00-1-1h-4a1 1 0 00-1 1v16a1 1 0 11-2 0V5a3 3 0 01.879-2.121z"
770
+ }));
771
+ };
772
+
773
+ Briefcase.propTypes = {
774
+ color: PropTypes.string,
775
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
776
+ };
777
+ Briefcase.defaultProps = {
778
+ color: 'currentColor',
779
+ size: '24'
780
+ };
781
+
782
+ var Calendar = function Calendar(props) {
783
+ var color = props.color,
784
+ size = props.size,
785
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
786
+
787
+ return /*#__PURE__*/React.createElement("svg", _extends({
788
+ xmlns: "http://www.w3.org/2000/svg",
789
+ width: size,
790
+ height: size,
791
+ viewBox: "0 0 24 24",
792
+ fill: color
793
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
794
+ fillRule: "evenodd",
795
+ clipRule: "evenodd",
796
+ d: "M5 5a1 1 0 00-1 1v14a1 1 0 001 1h14a1 1 0 001-1V6a1 1 0 00-1-1H5zM2 6a3 3 0 013-3h14a3 3 0 013 3v14a3 3 0 01-3 3H5a3 3 0 01-3-3V6z"
797
+ }), /*#__PURE__*/React.createElement("path", {
798
+ fillRule: "evenodd",
799
+ clipRule: "evenodd",
800
+ d: "M16 1a1 1 0 011 1v4a1 1 0 11-2 0V2a1 1 0 011-1z"
801
+ }), /*#__PURE__*/React.createElement("path", {
802
+ fillRule: "evenodd",
803
+ clipRule: "evenodd",
804
+ d: "M8 1a1 1 0 011 1v4a1 1 0 01-2 0V2a1 1 0 011-1z"
805
+ }), /*#__PURE__*/React.createElement("path", {
806
+ fillRule: "evenodd",
807
+ clipRule: "evenodd",
808
+ d: "M2 10a1 1 0 011-1h18a1 1 0 110 2H3a1 1 0 01-1-1z"
809
+ }));
810
+ };
811
+
812
+ Calendar.propTypes = {
813
+ color: PropTypes.string,
814
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
815
+ };
816
+ Calendar.defaultProps = {
817
+ color: 'currentColor',
818
+ size: '24'
819
+ };
820
+
821
+ var Camera = function Camera(props) {
822
+ var color = props.color,
823
+ size = props.size,
824
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
825
+
826
+ return /*#__PURE__*/React.createElement("svg", _extends({
827
+ xmlns: "http://www.w3.org/2000/svg",
828
+ width: size,
829
+ height: size,
830
+ viewBox: "0 0 24 24",
831
+ fill: color
832
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
833
+ fillRule: "evenodd",
834
+ clipRule: "evenodd",
835
+ d: "M8.168 2.445A1 1 0 019 2h6a1 1 0 01.832.445L17.535 5H21a3 3 0 013 3v11a3 3 0 01-3 3H3a3 3 0 01-3-3V8a3 3 0 013-3h3.465l1.703-2.555zM9.535 4L7.832 6.555A1 1 0 017 7H3a1 1 0 00-1 1v11a1 1 0 001 1h18a1 1 0 001-1V8a1 1 0 00-1-1h-4a1 1 0 01-.832-.445L14.465 4h-4.93z"
836
+ }), /*#__PURE__*/React.createElement("path", {
837
+ fillRule: "evenodd",
838
+ clipRule: "evenodd",
839
+ d: "M12 10a3 3 0 100 6 3 3 0 000-6zm-5 3a5 5 0 1110 0 5 5 0 01-10 0z"
840
+ }));
841
+ };
842
+
843
+ Camera.propTypes = {
844
+ color: PropTypes.string,
845
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
846
+ };
847
+ Camera.defaultProps = {
848
+ color: 'currentColor',
849
+ size: '24'
850
+ };
851
+
852
+ var CameraOff = function CameraOff(props) {
853
+ var color = props.color,
854
+ size = props.size,
855
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
856
+
857
+ return /*#__PURE__*/React.createElement("svg", _extends({
858
+ xmlns: "http://www.w3.org/2000/svg",
859
+ width: size,
860
+ height: size,
861
+ viewBox: "0 0 24 24",
862
+ fill: color
863
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
864
+ clipPath: "url(#clip0)",
865
+ fillRule: "evenodd",
866
+ clipRule: "evenodd"
867
+ }, /*#__PURE__*/React.createElement("path", {
868
+ d: "M.293.293a1 1 0 011.414 0l22 22a1 1 0 01-1.414 1.414l-22-22a1 1 0 010-1.414z"
869
+ }), /*#__PURE__*/React.createElement("path", {
870
+ d: "M8 3a1 1 0 011-1h6a1 1 0 01.832.445L17.535 5H21a3 3 0 013 3v9.34a1 1 0 11-2 0V8a1 1 0 00-1-1h-4a1 1 0 01-.832-.445L14.465 4H9a1 1 0 01-1-1zM3 7a1 1 0 00-1 1v11a1 1 0 001 1h15.586l-3.262-3.262a4.997 4.997 0 01-5.043.986 5 5 0 01-2.019-8.048L5.586 7H3zm7.413 1.999L6.707 5.293A1 1 0 006 5H3a3 3 0 00-3 3v11a3 3 0 003 3h18a1 1 0 00.707-1.707l-5.706-5.706a1.339 1.339 0 00-.026-.027L10.44 9.025A.978.978 0 0010.413 9zm-.733 2.095a2.996 2.996 0 00-.523 2.946 3 3 0 004.749 1.28L9.68 11.094z"
871
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
872
+ id: "clip0"
873
+ }, /*#__PURE__*/React.createElement("rect", {
874
+ width: "24",
875
+ height: "24"
876
+ }))));
877
+ };
878
+
879
+ CameraOff.propTypes = {
880
+ color: PropTypes.string,
881
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
882
+ };
883
+ CameraOff.defaultProps = {
884
+ color: 'currentColor',
885
+ size: '24'
886
+ };
887
+
888
+ var Cast = function Cast(props) {
889
+ var color = props.color,
890
+ size = props.size,
891
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
892
+
893
+ return /*#__PURE__*/React.createElement("svg", _extends({
894
+ xmlns: "http://www.w3.org/2000/svg",
895
+ width: size,
896
+ height: size,
897
+ viewBox: "0 0 24 24",
898
+ fill: color
899
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
900
+ fillRule: "evenodd",
901
+ clipRule: "evenodd",
902
+ d: "M4 5a1 1 0 00-1 1v2a1 1 0 11-2 0V6a3 3 0 013-3h16a3 3 0 013 3v12a3 3 0 01-3 3h-6a1 1 0 110-2h6a1 1 0 001-1V6a1 1 0 00-1-1H4zm-2.994 6.94a1 1 0 011.105-.884 10 10 0 018.833 8.834 1 1 0 11-1.988.22 8 8 0 00-7.067-7.066 1 1 0 01-.883-1.104zm.014 3.96a1 1 0 011.18-.78 6 6 0 014.68 4.68 1 1 0 11-1.96.4 4 4 0 00-3.12-3.12 1 1 0 01-.78-1.18z"
903
+ }));
904
+ };
905
+
906
+ Cast.propTypes = {
907
+ color: PropTypes.string,
908
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
909
+ };
910
+ Cast.defaultProps = {
911
+ color: 'currentColor',
912
+ size: '24'
913
+ };
914
+
915
+ var Check = function Check(props) {
916
+ var color = props.color,
917
+ size = props.size,
918
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
919
+
920
+ return /*#__PURE__*/React.createElement("svg", _extends({
921
+ xmlns: "http://www.w3.org/2000/svg",
922
+ width: size,
923
+ height: size,
924
+ viewBox: "0 0 24 24",
925
+ fill: color
926
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
927
+ fillRule: "evenodd",
928
+ clipRule: "evenodd",
929
+ d: "M20.707 5.293a1 1 0 010 1.414l-11 11a1 1 0 01-1.414 0l-5-5a1 1 0 111.414-1.414L9 15.586 19.293 5.293a1 1 0 011.414 0z"
930
+ }));
931
+ };
932
+
933
+ Check.propTypes = {
934
+ color: PropTypes.string,
935
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
936
+ };
937
+ Check.defaultProps = {
938
+ color: 'currentColor',
939
+ size: '24'
940
+ };
941
+
942
+ var CheckCircle = function CheckCircle(props) {
943
+ var color = props.color,
944
+ size = props.size,
945
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
946
+
947
+ return /*#__PURE__*/React.createElement("svg", _extends({
948
+ xmlns: "http://www.w3.org/2000/svg",
949
+ width: size,
950
+ height: size,
951
+ viewBox: "0 0 24 24",
952
+ fill: color
953
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
954
+ fillRule: "evenodd",
955
+ clipRule: "evenodd",
956
+ d: "M15.663 3.773A9 9 0 1021 12v-.919a1 1 0 112 0V12A11.002 11.002 0 018.188 22.313a11 11 0 118.289-20.366 1 1 0 11-.814 1.826z"
957
+ }), /*#__PURE__*/React.createElement("path", {
958
+ fillRule: "evenodd",
959
+ clipRule: "evenodd",
960
+ d: "M22.707 3.293a1 1 0 010 1.414l-10 10.01a1 1 0 01-1.414 0l-3-3a1 1 0 111.414-1.414L12 12.595l9.293-9.302a1 1 0 011.414 0z"
961
+ }));
962
+ };
963
+
964
+ CheckCircle.propTypes = {
965
+ color: PropTypes.string,
966
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
967
+ };
968
+ CheckCircle.defaultProps = {
969
+ color: 'currentColor',
970
+ size: '24'
971
+ };
972
+
973
+ var CheckSquare = function CheckSquare(props) {
974
+ var color = props.color,
975
+ size = props.size,
976
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
977
+
978
+ return /*#__PURE__*/React.createElement("svg", _extends({
979
+ xmlns: "http://www.w3.org/2000/svg",
980
+ width: size,
981
+ height: size,
982
+ viewBox: "0 0 24 24",
983
+ fill: color
984
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
985
+ fillRule: "evenodd",
986
+ clipRule: "evenodd",
987
+ d: "M22.707 3.293a1 1 0 010 1.414l-10 10a1 1 0 01-1.414 0l-3-3a1 1 0 111.414-1.414L12 12.586l9.293-9.293a1 1 0 011.414 0z"
988
+ }), /*#__PURE__*/React.createElement("path", {
989
+ fillRule: "evenodd",
990
+ clipRule: "evenodd",
991
+ d: "M5 4a1 1 0 00-1 1v14a1 1 0 001 1h14a1 1 0 001-1v-7a1 1 0 112 0v7a3 3 0 01-3 3H5a3 3 0 01-3-3V5a3 3 0 013-3h11a1 1 0 110 2H5z"
992
+ }));
993
+ };
994
+
995
+ CheckSquare.propTypes = {
996
+ color: PropTypes.string,
997
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
998
+ };
999
+ CheckSquare.defaultProps = {
1000
+ color: 'currentColor',
1001
+ size: '24'
1002
+ };
1003
+
1004
+ var ChevronDown = function ChevronDown(props) {
1005
+ var color = props.color,
1006
+ size = props.size,
1007
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1008
+
1009
+ return /*#__PURE__*/React.createElement("svg", _extends({
1010
+ xmlns: "http://www.w3.org/2000/svg",
1011
+ width: size,
1012
+ height: size,
1013
+ viewBox: "0 0 24 24",
1014
+ fill: color
1015
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1016
+ fillRule: "evenodd",
1017
+ clipRule: "evenodd",
1018
+ d: "M5.293 8.293a1 1 0 011.414 0L12 13.586l5.293-5.293a1 1 0 111.414 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 010-1.414z"
1019
+ }));
1020
+ };
1021
+
1022
+ ChevronDown.propTypes = {
1023
+ color: PropTypes.string,
1024
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1025
+ };
1026
+ ChevronDown.defaultProps = {
1027
+ color: 'currentColor',
1028
+ size: '24'
1029
+ };
1030
+
1031
+ var ChevronLeft = function ChevronLeft(props) {
1032
+ var color = props.color,
1033
+ size = props.size,
1034
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1035
+
1036
+ return /*#__PURE__*/React.createElement("svg", _extends({
1037
+ xmlns: "http://www.w3.org/2000/svg",
1038
+ width: size,
1039
+ height: size,
1040
+ viewBox: "0 0 24 24",
1041
+ fill: color
1042
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1043
+ fillRule: "evenodd",
1044
+ clipRule: "evenodd",
1045
+ d: "M15.707 5.293a1 1 0 010 1.414L10.414 12l5.293 5.293a1 1 0 01-1.414 1.414l-6-6a1 1 0 010-1.414l6-6a1 1 0 011.414 0z"
1046
+ }));
1047
+ };
1048
+
1049
+ ChevronLeft.propTypes = {
1050
+ color: PropTypes.string,
1051
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1052
+ };
1053
+ ChevronLeft.defaultProps = {
1054
+ color: 'currentColor',
1055
+ size: '24'
1056
+ };
1057
+
1058
+ var ChevronRight = function ChevronRight(props) {
1059
+ var color = props.color,
1060
+ size = props.size,
1061
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1062
+
1063
+ return /*#__PURE__*/React.createElement("svg", _extends({
1064
+ xmlns: "http://www.w3.org/2000/svg",
1065
+ width: size,
1066
+ height: size,
1067
+ viewBox: "0 0 24 24",
1068
+ fill: color
1069
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1070
+ fillRule: "evenodd",
1071
+ clipRule: "evenodd",
1072
+ d: "M8.293 5.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L13.586 12 8.293 6.707a1 1 0 010-1.414z"
1073
+ }));
1074
+ };
1075
+
1076
+ ChevronRight.propTypes = {
1077
+ color: PropTypes.string,
1078
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1079
+ };
1080
+ ChevronRight.defaultProps = {
1081
+ color: 'currentColor',
1082
+ size: '24'
1083
+ };
1084
+
1085
+ var ChevronsDown = function ChevronsDown(props) {
1086
+ var color = props.color,
1087
+ size = props.size,
1088
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1089
+
1090
+ return /*#__PURE__*/React.createElement("svg", _extends({
1091
+ xmlns: "http://www.w3.org/2000/svg",
1092
+ width: size,
1093
+ height: size,
1094
+ viewBox: "0 0 24 24",
1095
+ fill: color
1096
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1097
+ fillRule: "evenodd",
1098
+ clipRule: "evenodd",
1099
+ d: "M6.293 12.293a1 1 0 011.414 0L12 16.586l4.293-4.293a1 1 0 011.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z"
1100
+ }), /*#__PURE__*/React.createElement("path", {
1101
+ fillRule: "evenodd",
1102
+ clipRule: "evenodd",
1103
+ d: "M6.293 5.293a1 1 0 011.414 0L12 9.586l4.293-4.293a1 1 0 111.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z"
1104
+ }));
1105
+ };
1106
+
1107
+ ChevronsDown.propTypes = {
1108
+ color: PropTypes.string,
1109
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1110
+ };
1111
+ ChevronsDown.defaultProps = {
1112
+ color: 'currentColor',
1113
+ size: '24'
1114
+ };
1115
+
1116
+ var ChevronsLeft = function ChevronsLeft(props) {
1117
+ var color = props.color,
1118
+ size = props.size,
1119
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1120
+
1121
+ return /*#__PURE__*/React.createElement("svg", _extends({
1122
+ xmlns: "http://www.w3.org/2000/svg",
1123
+ width: size,
1124
+ height: size,
1125
+ viewBox: "0 0 24 24",
1126
+ fill: color
1127
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1128
+ fillRule: "evenodd",
1129
+ clipRule: "evenodd",
1130
+ d: "M11.707 6.293a1 1 0 010 1.414L7.414 12l4.293 4.293a1 1 0 01-1.414 1.414l-5-5a1 1 0 010-1.414l5-5a1 1 0 011.414 0z"
1131
+ }), /*#__PURE__*/React.createElement("path", {
1132
+ fillRule: "evenodd",
1133
+ clipRule: "evenodd",
1134
+ d: "M18.707 6.293a1 1 0 010 1.414L14.414 12l4.293 4.293a1 1 0 01-1.414 1.414l-5-5a1 1 0 010-1.414l5-5a1 1 0 011.414 0z"
1135
+ }));
1136
+ };
1137
+
1138
+ ChevronsLeft.propTypes = {
1139
+ color: PropTypes.string,
1140
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1141
+ };
1142
+ ChevronsLeft.defaultProps = {
1143
+ color: 'currentColor',
1144
+ size: '24'
1145
+ };
1146
+
1147
+ var ChevronsRight = function ChevronsRight(props) {
1148
+ var color = props.color,
1149
+ size = props.size,
1150
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1151
+
1152
+ return /*#__PURE__*/React.createElement("svg", _extends({
1153
+ xmlns: "http://www.w3.org/2000/svg",
1154
+ width: size,
1155
+ height: size,
1156
+ viewBox: "0 0 24 24",
1157
+ fill: color
1158
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1159
+ fillRule: "evenodd",
1160
+ clipRule: "evenodd",
1161
+ d: "M12.293 6.293a1 1 0 011.414 0l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-1.414-1.414L16.586 12l-4.293-4.293a1 1 0 010-1.414z"
1162
+ }), /*#__PURE__*/React.createElement("path", {
1163
+ fillRule: "evenodd",
1164
+ clipRule: "evenodd",
1165
+ d: "M5.293 6.293a1 1 0 011.414 0l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-1.414-1.414L9.586 12 5.293 7.707a1 1 0 010-1.414z"
1166
+ }));
1167
+ };
1168
+
1169
+ ChevronsRight.propTypes = {
1170
+ color: PropTypes.string,
1171
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1172
+ };
1173
+ ChevronsRight.defaultProps = {
1174
+ color: 'currentColor',
1175
+ size: '24'
1176
+ };
1177
+
1178
+ var ChevronsUp = function ChevronsUp(props) {
1179
+ var color = props.color,
1180
+ size = props.size,
1181
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1182
+
1183
+ return /*#__PURE__*/React.createElement("svg", _extends({
1184
+ xmlns: "http://www.w3.org/2000/svg",
1185
+ width: size,
1186
+ height: size,
1187
+ viewBox: "0 0 24 24",
1188
+ fill: color
1189
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1190
+ fillRule: "evenodd",
1191
+ clipRule: "evenodd",
1192
+ d: "M11.293 5.293a1 1 0 011.414 0l5 5a1 1 0 01-1.414 1.414L12 7.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5z"
1193
+ }), /*#__PURE__*/React.createElement("path", {
1194
+ fillRule: "evenodd",
1195
+ clipRule: "evenodd",
1196
+ d: "M11.293 12.293a1 1 0 011.414 0l5 5a1 1 0 01-1.414 1.414L12 14.414l-4.293 4.293a1 1 0 01-1.414-1.414l5-5z"
1197
+ }));
1198
+ };
1199
+
1200
+ ChevronsUp.propTypes = {
1201
+ color: PropTypes.string,
1202
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1203
+ };
1204
+ ChevronsUp.defaultProps = {
1205
+ color: 'currentColor',
1206
+ size: '24'
1207
+ };
1208
+
1209
+ var ChevronUp = function ChevronUp(props) {
1210
+ var color = props.color,
1211
+ size = props.size,
1212
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1213
+
1214
+ return /*#__PURE__*/React.createElement("svg", _extends({
1215
+ xmlns: "http://www.w3.org/2000/svg",
1216
+ width: size,
1217
+ height: size,
1218
+ viewBox: "0 0 24 24",
1219
+ fill: color
1220
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1221
+ fillRule: "evenodd",
1222
+ clipRule: "evenodd",
1223
+ d: "M11.293 8.293a1 1 0 011.414 0l6 6a1 1 0 01-1.414 1.414L12 10.414l-5.293 5.293a1 1 0 01-1.414-1.414l6-6z"
1224
+ }));
1225
+ };
1226
+
1227
+ ChevronUp.propTypes = {
1228
+ color: PropTypes.string,
1229
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1230
+ };
1231
+ ChevronUp.defaultProps = {
1232
+ color: 'currentColor',
1233
+ size: '24'
1234
+ };
1235
+
1236
+ var Chrome = function Chrome(props) {
1237
+ var color = props.color,
1238
+ size = props.size,
1239
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1240
+
1241
+ return /*#__PURE__*/React.createElement("svg", _extends({
1242
+ xmlns: "http://www.w3.org/2000/svg",
1243
+ width: size,
1244
+ height: size,
1245
+ viewBox: "0 0 24 24",
1246
+ fill: color
1247
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1248
+ fillRule: "evenodd",
1249
+ clipRule: "evenodd",
1250
+ d: "M12 3a9 9 0 100 18 9 9 0 000-18zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
1251
+ }), /*#__PURE__*/React.createElement("path", {
1252
+ fillRule: "evenodd",
1253
+ clipRule: "evenodd",
1254
+ d: "M12 9a3 3 0 100 6 3 3 0 000-6zm-5 3a5 5 0 1110 0 5 5 0 01-10 0z"
1255
+ }), /*#__PURE__*/React.createElement("path", {
1256
+ fillRule: "evenodd",
1257
+ clipRule: "evenodd",
1258
+ d: "M11 8a1 1 0 011-1h9.17a1 1 0 110 2H12a1 1 0 01-1-1z"
1259
+ }), /*#__PURE__*/React.createElement("path", {
1260
+ fillRule: "evenodd",
1261
+ clipRule: "evenodd",
1262
+ d: "M3.45 5.194a1 1 0 011.366.366l4.59 7.94a1 1 0 01-1.732 1l-4.59-7.94a1 1 0 01.366-1.366z"
1263
+ }), /*#__PURE__*/React.createElement("path", {
1264
+ fillRule: "evenodd",
1265
+ clipRule: "evenodd",
1266
+ d: "M15.96 13.134a1 1 0 01.366 1.366l-4.58 7.94a1 1 0 11-1.732-1l4.58-7.94a1 1 0 011.366-.366z"
1267
+ }));
1268
+ };
1269
+
1270
+ Chrome.propTypes = {
1271
+ color: PropTypes.string,
1272
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1273
+ };
1274
+ Chrome.defaultProps = {
1275
+ color: 'currentColor',
1276
+ size: '24'
1277
+ };
1278
+
1279
+ var Circle = function Circle(props) {
1280
+ var color = props.color,
1281
+ size = props.size,
1282
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1283
+
1284
+ return /*#__PURE__*/React.createElement("svg", _extends({
1285
+ xmlns: "http://www.w3.org/2000/svg",
1286
+ width: size,
1287
+ height: size,
1288
+ viewBox: "0 0 24 24",
1289
+ fill: color
1290
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1291
+ fillRule: "evenodd",
1292
+ clipRule: "evenodd",
1293
+ d: "M12 3a9 9 0 100 18 9 9 0 000-18zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
1294
+ }));
1295
+ };
1296
+
1297
+ Circle.propTypes = {
1298
+ color: PropTypes.string,
1299
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1300
+ };
1301
+ Circle.defaultProps = {
1302
+ color: 'currentColor',
1303
+ size: '24'
1304
+ };
1305
+
1306
+ var Clipboard = function Clipboard(props) {
1307
+ var color = props.color,
1308
+ size = props.size,
1309
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1310
+
1311
+ return /*#__PURE__*/React.createElement("svg", _extends({
1312
+ xmlns: "http://www.w3.org/2000/svg",
1313
+ width: size,
1314
+ height: size,
1315
+ viewBox: "0 0 24 24",
1316
+ fill: color
1317
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1318
+ fillRule: "evenodd",
1319
+ clipRule: "evenodd",
1320
+ d: "M6 5a1 1 0 00-1 1v14a1 1 0 001 1h12a1 1 0 001-1V6a1 1 0 00-1-1h-2a1 1 0 110-2h2a3 3 0 013 3v14a3 3 0 01-3 3H6a3 3 0 01-3-3V6a3 3 0 013-3h2a1 1 0 010 2H6z"
1321
+ }), /*#__PURE__*/React.createElement("path", {
1322
+ fillRule: "evenodd",
1323
+ clipRule: "evenodd",
1324
+ d: "M7 3a2 2 0 012-2h6a2 2 0 012 2v2a2 2 0 01-2 2H9a2 2 0 01-2-2V3zm8 0H9v2h6V3z"
1325
+ }));
1326
+ };
1327
+
1328
+ Clipboard.propTypes = {
1329
+ color: PropTypes.string,
1330
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1331
+ };
1332
+ Clipboard.defaultProps = {
1333
+ color: 'currentColor',
1334
+ size: '24'
1335
+ };
1336
+
1337
+ var Clock = function Clock(props) {
1338
+ var color = props.color,
1339
+ size = props.size,
1340
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1341
+
1342
+ return /*#__PURE__*/React.createElement("svg", _extends({
1343
+ xmlns: "http://www.w3.org/2000/svg",
1344
+ width: size,
1345
+ height: size,
1346
+ viewBox: "0 0 24 24",
1347
+ fill: color
1348
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1349
+ fillRule: "evenodd",
1350
+ clipRule: "evenodd",
1351
+ d: "M12 3a9 9 0 100 18 9 9 0 000-18zM1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12z"
1352
+ }), /*#__PURE__*/React.createElement("path", {
1353
+ fillRule: "evenodd",
1354
+ clipRule: "evenodd",
1355
+ d: "M12 5a1 1 0 011 1v5.382l3.447 1.724a1 1 0 11-.894 1.788l-4-2A1 1 0 0111 12V6a1 1 0 011-1z"
1356
+ }));
1357
+ };
1358
+
1359
+ Clock.propTypes = {
1360
+ color: PropTypes.string,
1361
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1362
+ };
1363
+ Clock.defaultProps = {
1364
+ color: 'currentColor',
1365
+ size: '24'
1366
+ };
1367
+
1368
+ var Cloud = function Cloud(props) {
1369
+ var color = props.color,
1370
+ size = props.size,
1371
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1372
+
1373
+ return /*#__PURE__*/React.createElement("svg", _extends({
1374
+ xmlns: "http://www.w3.org/2000/svg",
1375
+ width: size,
1376
+ height: size,
1377
+ viewBox: "0 0 24 24",
1378
+ fill: color
1379
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1380
+ clipPath: "url(#clip0)"
1381
+ }, /*#__PURE__*/React.createElement("path", {
1382
+ fillRule: "evenodd",
1383
+ clipRule: "evenodd",
1384
+ d: "M5.873 3.559A9 9 0 0117.479 9H18a6 6 0 010 12H9A9 9 0 01.01 12.518L0 12.5l.007-.011a8.999 8.999 0 015.862-8.93h.004zm.69 1.876a7.007 7.007 0 00-3.105 2.28A7 7 0 008.977 19H18a4 4 0 100-8h-1.26a1 1 0 01-.968-.75 7 7 0 00-9.208-4.815z"
1385
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1386
+ id: "clip0"
1387
+ }, /*#__PURE__*/React.createElement("rect", {
1388
+ width: "24",
1389
+ height: "24"
1390
+ }))));
1391
+ };
1392
+
1393
+ Cloud.propTypes = {
1394
+ color: PropTypes.string,
1395
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1396
+ };
1397
+ Cloud.defaultProps = {
1398
+ color: 'currentColor',
1399
+ size: '24'
1400
+ };
1401
+
1402
+ var CloudDrizzle = function CloudDrizzle(props) {
1403
+ var color = props.color,
1404
+ size = props.size,
1405
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1406
+
1407
+ return /*#__PURE__*/React.createElement("svg", _extends({
1408
+ xmlns: "http://www.w3.org/2000/svg",
1409
+ width: size,
1410
+ height: size,
1411
+ viewBox: "0 0 24 24",
1412
+ fill: color
1413
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1414
+ clipPath: "url(#clip0)",
1415
+ fillRule: "evenodd",
1416
+ clipRule: "evenodd"
1417
+ }, /*#__PURE__*/React.createElement("path", {
1418
+ d: "M8 18a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1419
+ }), /*#__PURE__*/React.createElement("path", {
1420
+ d: "M8 12a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1421
+ }), /*#__PURE__*/React.createElement("path", {
1422
+ d: "M16 18a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1423
+ }), /*#__PURE__*/React.createElement("path", {
1424
+ d: "M16 12a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1425
+ }), /*#__PURE__*/React.createElement("path", {
1426
+ d: "M12 20a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1427
+ }), /*#__PURE__*/React.createElement("path", {
1428
+ d: "M12 14a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1429
+ }), /*#__PURE__*/React.createElement("path", {
1430
+ d: "M8.082.047A9 9 0 0117.48 6h.522a6 6 0 012.4 11.496 1 1 0 11-.802-1.832A4 4 0 0017.999 8H16.74a1 1 0 01-.968-.75 7 7 0 10-11.148 7.219 1 1 0 01-1.248 1.562A9 9 0 018.082.047z"
1431
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1432
+ id: "clip0"
1433
+ }, /*#__PURE__*/React.createElement("rect", {
1434
+ width: "24",
1435
+ height: "24"
1436
+ }))));
1437
+ };
1438
+
1439
+ CloudDrizzle.propTypes = {
1440
+ color: PropTypes.string,
1441
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1442
+ };
1443
+ CloudDrizzle.defaultProps = {
1444
+ color: 'currentColor',
1445
+ size: '24'
1446
+ };
1447
+
1448
+ var CloudRain = function CloudRain(props) {
1449
+ var color = props.color,
1450
+ size = props.size,
1451
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1452
+
1453
+ return /*#__PURE__*/React.createElement("svg", _extends({
1454
+ xmlns: "http://www.w3.org/2000/svg",
1455
+ width: size,
1456
+ height: size,
1457
+ viewBox: "0 0 24 24",
1458
+ fill: color
1459
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1460
+ clipPath: "url(#clip0)",
1461
+ fillRule: "evenodd",
1462
+ clipRule: "evenodd"
1463
+ }, /*#__PURE__*/React.createElement("path", {
1464
+ d: "M16 12a1 1 0 011 1v8a1 1 0 11-2 0v-8a1 1 0 011-1z"
1465
+ }), /*#__PURE__*/React.createElement("path", {
1466
+ d: "M8 12a1 1 0 011 1v8a1 1 0 11-2 0v-8a1 1 0 011-1z"
1467
+ }), /*#__PURE__*/React.createElement("path", {
1468
+ d: "M12 14a1 1 0 011 1v8a1 1 0 11-2 0v-8a1 1 0 011-1z"
1469
+ }), /*#__PURE__*/React.createElement("path", {
1470
+ d: "M8.082.047A9 9 0 0117.48 6h.522a6 6 0 012.4 11.496 1 1 0 11-.802-1.832A4 4 0 0017.999 8H16.74a1 1 0 01-.968-.75 7 7 0 10-11.148 7.219 1 1 0 01-1.248 1.562A9 9 0 018.082.047z"
1471
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1472
+ id: "clip0"
1473
+ }, /*#__PURE__*/React.createElement("rect", {
1474
+ width: "24",
1475
+ height: "24"
1476
+ }))));
1477
+ };
1478
+
1479
+ CloudRain.propTypes = {
1480
+ color: PropTypes.string,
1481
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1482
+ };
1483
+ CloudRain.defaultProps = {
1484
+ color: 'currentColor',
1485
+ size: '24'
1486
+ };
1487
+
1488
+ var Code = function Code(props) {
1489
+ var color = props.color,
1490
+ size = props.size,
1491
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1492
+
1493
+ return /*#__PURE__*/React.createElement("svg", _extends({
1494
+ xmlns: "http://www.w3.org/2000/svg",
1495
+ width: size,
1496
+ height: size,
1497
+ viewBox: "0 0 24 24",
1498
+ fill: color
1499
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1500
+ fillRule: "evenodd",
1501
+ clipRule: "evenodd",
1502
+ d: "M15.293 5.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L20.586 12l-5.293-5.293a1 1 0 010-1.414z"
1503
+ }), /*#__PURE__*/React.createElement("path", {
1504
+ fillRule: "evenodd",
1505
+ clipRule: "evenodd",
1506
+ d: "M8.707 5.293a1 1 0 010 1.414L3.414 12l5.293 5.293a1 1 0 11-1.414 1.414l-6-6a1 1 0 010-1.414l6-6a1 1 0 011.414 0z"
1507
+ }));
1508
+ };
1509
+
1510
+ Code.propTypes = {
1511
+ color: PropTypes.string,
1512
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1513
+ };
1514
+ Code.defaultProps = {
1515
+ color: 'currentColor',
1516
+ size: '24'
1517
+ };
1518
+
1519
+ var CloudLightning = function CloudLightning(props) {
1520
+ var color = props.color,
1521
+ size = props.size,
1522
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1523
+
1524
+ return /*#__PURE__*/React.createElement("svg", _extends({
1525
+ xmlns: "http://www.w3.org/2000/svg",
1526
+ width: size,
1527
+ height: size,
1528
+ viewBox: "0 0 24 24",
1529
+ fill: color
1530
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1531
+ clipPath: "url(#clip0)"
1532
+ }, /*#__PURE__*/React.createElement("path", {
1533
+ d: "M19 17.9c-.5 0-.9-.3-1-.8-.1-.5.2-1.1.8-1.2 2.2-.4 3.6-2.6 3.1-4.7-.4-1.9-2-3.2-3.9-3.2h-1.3c-.5 0-.9-.3-1-.8-1-3.7-4.8-6-8.5-5-1.8.5-3.3 1.6-4.2 3.2-1 1.7-1.3 3.5-.8 5.4.5 1.9 1.7 3.4 3.4 4.4.5.2.7.8.4 1.3-.3.5-.9.7-1.4.4C2.4 15.7.9 13.7.2 11.3c-.6-2.3-.3-4.8 1-6.8C2.4 2.4 4.4 1 6.7.4c4.5-1.2 9.2 1.4 10.7 5.7h.6c2.8 0 5.3 2 5.9 4.8.7 3.2-1.4 6.4-4.7 7.1-.1-.1-.1-.1-.2-.1z"
1534
+ }), /*#__PURE__*/React.createElement("path", {
1535
+ d: "M11 24c-.2 0-.4-.1-.6-.2-.5-.3-.6-.9-.3-1.4l3-4.4H9c-.4 0-.7-.2-.9-.5-.2-.3-.2-.7 0-1l4-6c.3-.5.9-.6 1.4-.3.5.3.6.9.3 1.4l-3 4.4H15c.4 0 .7.2.9.5.2.3.2.7 0 1l-4 6c-.3.3-.6.5-.9.5z"
1536
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1537
+ id: "clip0"
1538
+ }, /*#__PURE__*/React.createElement("rect", {
1539
+ width: "24",
1540
+ height: "24"
1541
+ }))));
1542
+ };
1543
+
1544
+ CloudLightning.propTypes = {
1545
+ color: PropTypes.string,
1546
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1547
+ };
1548
+ CloudLightning.defaultProps = {
1549
+ color: 'currentColor',
1550
+ size: '24'
1551
+ };
1552
+
1553
+ var CloudOff = function CloudOff(props) {
1554
+ var color = props.color,
1555
+ size = props.size,
1556
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1557
+
1558
+ return /*#__PURE__*/React.createElement("svg", _extends({
1559
+ xmlns: "http://www.w3.org/2000/svg",
1560
+ width: size,
1561
+ height: size,
1562
+ viewBox: "0 0 24 24",
1563
+ fill: color
1564
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1565
+ clipPath: "url(#clip0)"
1566
+ }, /*#__PURE__*/React.createElement("path", {
1567
+ d: "M8.9 21c-3.3 0-6.3-1.8-7.9-4.6-1.2-2.1-1.4-4.5-.8-6.8.7-2.3 2.2-4.2 4.3-5.4.5-.3 1.1-.2 1.4.3.2.5.1 1.1-.4 1.4-1.6.9-2.8 2.4-3.3 4.2-.5 1.8-.3 3.7.6 5.3C4 17.7 6.4 19.1 9 19h9c.5 0 .9-.1 1.4-.2.5-.2 1.1.1 1.3.6.2.5-.1 1.1-.6 1.3-.7.2-1.3.4-2 .4H9c0-.1-.1-.1-.1-.1zm13.7-3c-.1 0-.3 0-.4-.1-.5-.2-.7-.8-.5-1.3.9-2-.1-4.4-2.1-5.2-.5-.2-1-.3-1.6-.3h-1.3c-.5 0-.9-.3-1-.8-.7-2.9-3.1-5-6.1-5.3-.6 0-1-.5-.9-1.1 0-.5.5-1 1.1-.9 3.5.3 6.5 2.7 7.7 6h.5c.8 0 1.6.2 2.3.5 3 1.3 4.5 4.8 3.2 7.9-.1.3-.5.6-.9.6z"
1568
+ }), /*#__PURE__*/React.createElement("path", {
1569
+ d: "M23 24c-.3 0-.5-.1-.7-.3l-22-22C-.1 1.3-.1.7.3.3c.4-.4 1-.4 1.4 0l22 22c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3z"
1570
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1571
+ id: "clip0"
1572
+ }, /*#__PURE__*/React.createElement("rect", {
1573
+ width: "24",
1574
+ height: "24"
1575
+ }))));
1576
+ };
1577
+
1578
+ CloudOff.propTypes = {
1579
+ color: PropTypes.string,
1580
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1581
+ };
1582
+ CloudOff.defaultProps = {
1583
+ color: 'currentColor',
1584
+ size: '24'
1585
+ };
1586
+
1587
+ var CloudSnow = function CloudSnow(props) {
1588
+ var color = props.color,
1589
+ size = props.size,
1590
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1591
+
1592
+ return /*#__PURE__*/React.createElement("svg", _extends({
1593
+ xmlns: "http://www.w3.org/2000/svg",
1594
+ width: size,
1595
+ height: size,
1596
+ viewBox: "0 0 24 24",
1597
+ fill: color
1598
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1599
+ clipPath: "url(#clip0)"
1600
+ }, /*#__PURE__*/React.createElement("path", {
1601
+ d: "M20 18.6c-.4 0-.8-.2-.9-.6-.2-.5 0-1.1.5-1.3 1-.4 1.7-1.2 2.1-2.2.4-1 .4-2.1-.1-3.1C21 9.9 19.6 9 18 9h-1.3c-.5 0-.9-.3-1-.8-1-3.7-4.8-6-8.5-5s-6 4.8-5 8.5c.4 1.5 1.2 2.8 2.4 3.7.4.3.5 1 .2 1.4-.3.4-1 .5-1.4.2a9.15 9.15 0 01-3.1-4.8C-1 7.4 1.9 2.5 6.7 1.3 11.3.1 15.9 2.7 17.4 7h.6c2.4 0 4.5 1.4 5.5 3.6.6 1.5.7 3.1.1 4.6-.6 1.5-1.7 2.7-3.2 3.3-.1.1-.3.1-.4.1z"
1602
+ }), /*#__PURE__*/React.createElement("path", {
1603
+ d: "M8 17c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .1 0 .3-.1.4-.1.1-.1.2-.2.3-.2.2-.4.3-.7.3z"
1604
+ }), /*#__PURE__*/React.createElement("path", {
1605
+ d: "M8 21c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.4-.2.8-.1 1.1.2.2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3z"
1606
+ }), /*#__PURE__*/React.createElement("path", {
1607
+ d: "M12 19c-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.2-.2-.3-.4-.3-.7 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .2.2.3.5.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3z"
1608
+ }), /*#__PURE__*/React.createElement("path", {
1609
+ d: "M12 23c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3 0 .1.1.3.1.4 0 .3-.1.5-.3.7-.1.1-.2.2-.3.2-.1 0-.3.1-.4.1z"
1610
+ }), /*#__PURE__*/React.createElement("path", {
1611
+ d: "M16 17c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3 0 .1.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3z"
1612
+ }), /*#__PURE__*/React.createElement("path", {
1613
+ d: "M16 21c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.6-.3.9-.3.1 0 .1 0 .2.1.1 0 .1 0 .2.1 0 0 .1.1.2.1.2.2.3.5.3.7 0 .3-.1.5-.3.7-.3.2-.5.3-.8.3z"
1614
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1615
+ id: "clip0"
1616
+ }, /*#__PURE__*/React.createElement("rect", {
1617
+ width: "24",
1618
+ height: "24"
1619
+ }))));
1620
+ };
1621
+
1622
+ CloudSnow.propTypes = {
1623
+ color: PropTypes.string,
1624
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1625
+ };
1626
+ CloudSnow.defaultProps = {
1627
+ color: 'currentColor',
1628
+ size: '24'
1629
+ };
1630
+
1631
+ exports.ArrowDownRight = ArrowDownRight;
1632
+ exports.ArrowLeft = ArrowLeft;
1633
+ exports.ArrowLeftCircle = ArrowLeftCircle;
1634
+ exports.ArrowRight = ArrowRight;
1635
+ exports.ArrowRightCircle = ArrowRightCircle;
1636
+ exports.ArrowUp = ArrowUp;
1637
+ exports.ArrowUpCircle = ArrowUpCircle;
1638
+ exports.ArrowUpLeft = ArrowUpLeft;
1639
+ exports.ArrowUpRight = ArrowUpRight;
1640
+ exports.AtSign = AtSign;
1641
+ exports.Award = Award;
1642
+ exports.BarChart = BarChart;
1643
+ exports.BarChart2 = BarChart2;
1644
+ exports.Battery = Battery;
1645
+ exports.BatteryCharging = BatteryCharging;
1646
+ exports.Bell = Bell;
1647
+ exports.BellOff = BellOff;
1648
+ exports.Bluetooth = Bluetooth;
1649
+ exports.Bold = Bold;
1650
+ exports.Book = Book;
1651
+ exports.BookOpen = BookOpen;
1652
+ exports.Bookmark = Bookmark;
1653
+ exports.Box = Box;
1654
+ exports.Briefcase = Briefcase;
1655
+ exports.Calendar = Calendar;
1656
+ exports.Camera = Camera;
1657
+ exports.CameraOff = CameraOff;
1658
+ exports.Cast = Cast;
1659
+ exports.Check = Check;
1660
+ exports.CheckCircle = CheckCircle;
1661
+ exports.CheckSquare = CheckSquare;
1662
+ exports.ChevronDown = ChevronDown;
1663
+ exports.ChevronLeft = ChevronLeft;
1664
+ exports.ChevronRight = ChevronRight;
1665
+ exports.ChevronUp = ChevronUp;
1666
+ exports.ChevronsDown = ChevronsDown;
1667
+ exports.ChevronsLeft = ChevronsLeft;
1668
+ exports.ChevronsRight = ChevronsRight;
1669
+ exports.ChevronsUp = ChevronsUp;
1670
+ exports.Chrome = Chrome;
1671
+ exports.Circle = Circle;
1672
+ exports.Clipboard = Clipboard;
1673
+ exports.Clock = Clock;
1674
+ exports.Cloud = Cloud;
1675
+ exports.CloudDrizzle = CloudDrizzle;
1676
+ exports.CloudLightning = CloudLightning;
1677
+ exports.CloudOff = CloudOff;
1678
+ exports.CloudRain = CloudRain;
1679
+ exports.CloudSnow = CloudSnow;
1680
+ exports.Code = Code;