@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,1625 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+
4
+ function _extends() {
5
+ _extends = Object.assign || function (target) {
6
+ for (var i = 1; i < arguments.length; i++) {
7
+ var source = arguments[i];
8
+
9
+ for (var key in source) {
10
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
11
+ target[key] = source[key];
12
+ }
13
+ }
14
+ }
15
+
16
+ return target;
17
+ };
18
+
19
+ return _extends.apply(this, arguments);
20
+ }
21
+
22
+ function _objectWithoutPropertiesLoose(source, excluded) {
23
+ if (source == null) return {};
24
+ var target = {};
25
+ var sourceKeys = Object.keys(source);
26
+ var key, i;
27
+
28
+ for (i = 0; i < sourceKeys.length; i++) {
29
+ key = sourceKeys[i];
30
+ if (excluded.indexOf(key) >= 0) continue;
31
+ target[key] = source[key];
32
+ }
33
+
34
+ return target;
35
+ }
36
+
37
+ function _objectWithoutProperties(source, excluded) {
38
+ if (source == null) return {};
39
+
40
+ var target = _objectWithoutPropertiesLoose(source, excluded);
41
+
42
+ var key, i;
43
+
44
+ if (Object.getOwnPropertySymbols) {
45
+ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
46
+
47
+ for (i = 0; i < sourceSymbolKeys.length; i++) {
48
+ key = sourceSymbolKeys[i];
49
+ if (excluded.indexOf(key) >= 0) continue;
50
+ if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
51
+ target[key] = source[key];
52
+ }
53
+ }
54
+
55
+ return target;
56
+ }
57
+
58
+ var ArrowDownRight = function ArrowDownRight(props) {
59
+ var color = props.color,
60
+ size = props.size,
61
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
62
+
63
+ return /*#__PURE__*/React.createElement("svg", _extends({
64
+ xmlns: "http://www.w3.org/2000/svg",
65
+ width: size,
66
+ height: size,
67
+ viewBox: "0 0 24 24",
68
+ fill: color
69
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
70
+ fillRule: "evenodd",
71
+ clipRule: "evenodd",
72
+ 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"
73
+ }));
74
+ };
75
+
76
+ ArrowDownRight.propTypes = {
77
+ color: PropTypes.string,
78
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
79
+ };
80
+ ArrowDownRight.defaultProps = {
81
+ color: 'currentColor',
82
+ size: '24'
83
+ };
84
+
85
+ var ArrowLeft = function ArrowLeft(props) {
86
+ var color = props.color,
87
+ size = props.size,
88
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
89
+
90
+ return /*#__PURE__*/React.createElement("svg", _extends({
91
+ xmlns: "http://www.w3.org/2000/svg",
92
+ width: size,
93
+ height: size,
94
+ viewBox: "0 0 24 24",
95
+ fill: color
96
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
97
+ fillRule: "evenodd",
98
+ clipRule: "evenodd",
99
+ 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"
100
+ }));
101
+ };
102
+
103
+ ArrowLeft.propTypes = {
104
+ color: PropTypes.string,
105
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
106
+ };
107
+ ArrowLeft.defaultProps = {
108
+ color: 'currentColor',
109
+ size: '24'
110
+ };
111
+
112
+ var ArrowLeftCircle = function ArrowLeftCircle(props) {
113
+ var color = props.color,
114
+ size = props.size,
115
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
116
+
117
+ return /*#__PURE__*/React.createElement("svg", _extends({
118
+ xmlns: "http://www.w3.org/2000/svg",
119
+ width: size,
120
+ height: size,
121
+ viewBox: "0 0 24 24",
122
+ fill: color
123
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
124
+ fillRule: "evenodd",
125
+ clipRule: "evenodd",
126
+ 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"
127
+ }), /*#__PURE__*/React.createElement("path", {
128
+ 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"
129
+ }));
130
+ };
131
+
132
+ ArrowLeftCircle.propTypes = {
133
+ color: PropTypes.string,
134
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
135
+ };
136
+ ArrowLeftCircle.defaultProps = {
137
+ color: 'currentColor',
138
+ size: '24'
139
+ };
140
+
141
+ var ArrowRight = function ArrowRight(props) {
142
+ var color = props.color,
143
+ size = props.size,
144
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
145
+
146
+ return /*#__PURE__*/React.createElement("svg", _extends({
147
+ xmlns: "http://www.w3.org/2000/svg",
148
+ width: size,
149
+ height: size,
150
+ viewBox: "0 0 24 24",
151
+ fill: color
152
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
153
+ fillRule: "evenodd",
154
+ clipRule: "evenodd",
155
+ 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"
156
+ }));
157
+ };
158
+
159
+ ArrowRight.propTypes = {
160
+ color: PropTypes.string,
161
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
162
+ };
163
+ ArrowRight.defaultProps = {
164
+ color: 'currentColor',
165
+ size: '24'
166
+ };
167
+
168
+ var ArrowRightCircle = function ArrowRightCircle(props) {
169
+ var color = props.color,
170
+ size = props.size,
171
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
172
+
173
+ return /*#__PURE__*/React.createElement("svg", _extends({
174
+ xmlns: "http://www.w3.org/2000/svg",
175
+ width: size,
176
+ height: size,
177
+ viewBox: "0 0 24 24",
178
+ fill: color
179
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
180
+ fillRule: "evenodd",
181
+ clipRule: "evenodd",
182
+ 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"
183
+ }), /*#__PURE__*/React.createElement("path", {
184
+ 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"
185
+ }));
186
+ };
187
+
188
+ ArrowRightCircle.propTypes = {
189
+ color: PropTypes.string,
190
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
191
+ };
192
+ ArrowRightCircle.defaultProps = {
193
+ color: 'currentColor',
194
+ size: '24'
195
+ };
196
+
197
+ var ArrowUp = function ArrowUp(props) {
198
+ var color = props.color,
199
+ size = props.size,
200
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
201
+
202
+ return /*#__PURE__*/React.createElement("svg", _extends({
203
+ xmlns: "http://www.w3.org/2000/svg",
204
+ width: size,
205
+ height: size,
206
+ viewBox: "0 0 24 24",
207
+ fill: color
208
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
209
+ fillRule: "evenodd",
210
+ clipRule: "evenodd",
211
+ 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"
212
+ }));
213
+ };
214
+
215
+ ArrowUp.propTypes = {
216
+ color: PropTypes.string,
217
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
218
+ };
219
+ ArrowUp.defaultProps = {
220
+ color: 'currentColor',
221
+ size: '24'
222
+ };
223
+
224
+ var ArrowUpCircle = function ArrowUpCircle(props) {
225
+ var color = props.color,
226
+ size = props.size,
227
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
228
+
229
+ return /*#__PURE__*/React.createElement("svg", _extends({
230
+ xmlns: "http://www.w3.org/2000/svg",
231
+ width: size,
232
+ height: size,
233
+ viewBox: "0 0 24 24",
234
+ fill: color
235
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
236
+ fillRule: "evenodd",
237
+ clipRule: "evenodd",
238
+ 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"
239
+ }), /*#__PURE__*/React.createElement("path", {
240
+ 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"
241
+ }));
242
+ };
243
+
244
+ ArrowUpCircle.propTypes = {
245
+ color: PropTypes.string,
246
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
247
+ };
248
+ ArrowUpCircle.defaultProps = {
249
+ color: 'currentColor',
250
+ size: '24'
251
+ };
252
+
253
+ var ArrowUpLeft = function ArrowUpLeft(props) {
254
+ var color = props.color,
255
+ size = props.size,
256
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
257
+
258
+ return /*#__PURE__*/React.createElement("svg", _extends({
259
+ xmlns: "http://www.w3.org/2000/svg",
260
+ width: size,
261
+ height: size,
262
+ viewBox: "0 0 24 24",
263
+ fill: color
264
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
265
+ fillRule: "evenodd",
266
+ clipRule: "evenodd",
267
+ 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"
268
+ }));
269
+ };
270
+
271
+ ArrowUpLeft.propTypes = {
272
+ color: PropTypes.string,
273
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
274
+ };
275
+ ArrowUpLeft.defaultProps = {
276
+ color: 'currentColor',
277
+ size: '24'
278
+ };
279
+
280
+ var ArrowUpRight = function ArrowUpRight(props) {
281
+ var color = props.color,
282
+ size = props.size,
283
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
284
+
285
+ return /*#__PURE__*/React.createElement("svg", _extends({
286
+ xmlns: "http://www.w3.org/2000/svg",
287
+ width: size,
288
+ height: size,
289
+ viewBox: "0 0 24 24",
290
+ fill: color
291
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
292
+ fillRule: "evenodd",
293
+ clipRule: "evenodd",
294
+ 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"
295
+ }));
296
+ };
297
+
298
+ ArrowUpRight.propTypes = {
299
+ color: PropTypes.string,
300
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
301
+ };
302
+ ArrowUpRight.defaultProps = {
303
+ color: 'currentColor',
304
+ size: '24'
305
+ };
306
+
307
+ var AtSign = function AtSign(props) {
308
+ var color = props.color,
309
+ size = props.size,
310
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
311
+
312
+ return /*#__PURE__*/React.createElement("svg", _extends({
313
+ xmlns: "http://www.w3.org/2000/svg",
314
+ width: size,
315
+ height: size,
316
+ viewBox: "0 0 24 24",
317
+ fill: color
318
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
319
+ fillRule: "evenodd",
320
+ clipRule: "evenodd",
321
+ 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"
322
+ }));
323
+ };
324
+
325
+ AtSign.propTypes = {
326
+ color: PropTypes.string,
327
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
328
+ };
329
+ AtSign.defaultProps = {
330
+ color: 'currentColor',
331
+ size: '24'
332
+ };
333
+
334
+ var Award = function Award(props) {
335
+ var color = props.color,
336
+ size = props.size,
337
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
338
+
339
+ return /*#__PURE__*/React.createElement("svg", _extends({
340
+ xmlns: "http://www.w3.org/2000/svg",
341
+ width: size,
342
+ height: size,
343
+ viewBox: "0 0 24 24",
344
+ fill: color
345
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
346
+ clipPath: "url(#clip0)",
347
+ fillRule: "evenodd",
348
+ clipRule: "evenodd"
349
+ }, /*#__PURE__*/React.createElement("path", {
350
+ d: "M12 2a6 6 0 100 12 6 6 0 000-12zM4 8a8 8 0 1116 0A8 8 0 014 8z"
351
+ }), /*#__PURE__*/React.createElement("path", {
352
+ 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"
353
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
354
+ id: "clip0"
355
+ }, /*#__PURE__*/React.createElement("rect", {
356
+ width: "24",
357
+ height: "24"
358
+ }))));
359
+ };
360
+
361
+ Award.propTypes = {
362
+ color: PropTypes.string,
363
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
364
+ };
365
+ Award.defaultProps = {
366
+ color: 'currentColor',
367
+ size: '24'
368
+ };
369
+
370
+ var BarChart = function BarChart(props) {
371
+ var color = props.color,
372
+ size = props.size,
373
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
374
+
375
+ return /*#__PURE__*/React.createElement("svg", _extends({
376
+ xmlns: "http://www.w3.org/2000/svg",
377
+ width: size,
378
+ height: size,
379
+ viewBox: "0 0 24 24",
380
+ fill: color
381
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
382
+ fillRule: "evenodd",
383
+ clipRule: "evenodd",
384
+ d: "M12 9a1 1 0 011 1v10a1 1 0 11-2 0V10a1 1 0 011-1z"
385
+ }), /*#__PURE__*/React.createElement("path", {
386
+ fillRule: "evenodd",
387
+ clipRule: "evenodd",
388
+ d: "M18 3a1 1 0 011 1v16a1 1 0 11-2 0V4a1 1 0 011-1z"
389
+ }), /*#__PURE__*/React.createElement("path", {
390
+ fillRule: "evenodd",
391
+ clipRule: "evenodd",
392
+ d: "M6 15a1 1 0 011 1v4a1 1 0 11-2 0v-4a1 1 0 011-1z"
393
+ }));
394
+ };
395
+
396
+ BarChart.propTypes = {
397
+ color: PropTypes.string,
398
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
399
+ };
400
+ BarChart.defaultProps = {
401
+ color: 'currentColor',
402
+ size: '24'
403
+ };
404
+
405
+ var BarChart2 = function BarChart2(props) {
406
+ var color = props.color,
407
+ size = props.size,
408
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
409
+
410
+ return /*#__PURE__*/React.createElement("svg", _extends({
411
+ xmlns: "http://www.w3.org/2000/svg",
412
+ width: size,
413
+ height: size,
414
+ viewBox: "0 0 24 24",
415
+ fill: color
416
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
417
+ fillRule: "evenodd",
418
+ clipRule: "evenodd",
419
+ d: "M18 9a1 1 0 011 1v10a1 1 0 11-2 0V10a1 1 0 011-1z"
420
+ }), /*#__PURE__*/React.createElement("path", {
421
+ fillRule: "evenodd",
422
+ clipRule: "evenodd",
423
+ d: "M12 3a1 1 0 011 1v16a1 1 0 11-2 0V4a1 1 0 011-1z"
424
+ }), /*#__PURE__*/React.createElement("path", {
425
+ fillRule: "evenodd",
426
+ clipRule: "evenodd",
427
+ d: "M6 13a1 1 0 011 1v6a1 1 0 11-2 0v-6a1 1 0 011-1z"
428
+ }));
429
+ };
430
+
431
+ BarChart2.propTypes = {
432
+ color: PropTypes.string,
433
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
434
+ };
435
+ BarChart2.defaultProps = {
436
+ color: 'currentColor',
437
+ size: '24'
438
+ };
439
+
440
+ var Battery = function Battery(props) {
441
+ var color = props.color,
442
+ size = props.size,
443
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
444
+
445
+ return /*#__PURE__*/React.createElement("svg", _extends({
446
+ xmlns: "http://www.w3.org/2000/svg",
447
+ width: size,
448
+ height: size,
449
+ viewBox: "0 0 24 24",
450
+ fill: color
451
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
452
+ fillRule: "evenodd",
453
+ clipRule: "evenodd",
454
+ 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"
455
+ }), /*#__PURE__*/React.createElement("path", {
456
+ fillRule: "evenodd",
457
+ clipRule: "evenodd",
458
+ d: "M23 10a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
459
+ }));
460
+ };
461
+
462
+ Battery.propTypes = {
463
+ color: PropTypes.string,
464
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
465
+ };
466
+ Battery.defaultProps = {
467
+ color: 'currentColor',
468
+ size: '24'
469
+ };
470
+
471
+ var BatteryCharging = function BatteryCharging(props) {
472
+ var color = props.color,
473
+ size = props.size,
474
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
475
+
476
+ return /*#__PURE__*/React.createElement("svg", _extends({
477
+ xmlns: "http://www.w3.org/2000/svg",
478
+ width: size,
479
+ height: size,
480
+ viewBox: "0 0 24 24",
481
+ fill: color
482
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
483
+ fillRule: "evenodd",
484
+ clipRule: "evenodd",
485
+ 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"
486
+ }));
487
+ };
488
+
489
+ BatteryCharging.propTypes = {
490
+ color: PropTypes.string,
491
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
492
+ };
493
+ BatteryCharging.defaultProps = {
494
+ color: 'currentColor',
495
+ size: '24'
496
+ };
497
+
498
+ var Bell = function Bell(props) {
499
+ var color = props.color,
500
+ size = props.size,
501
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
502
+
503
+ return /*#__PURE__*/React.createElement("svg", _extends({
504
+ xmlns: "http://www.w3.org/2000/svg",
505
+ width: size,
506
+ height: size,
507
+ viewBox: "0 0 24 24",
508
+ fill: color
509
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
510
+ fillRule: "evenodd",
511
+ clipRule: "evenodd",
512
+ 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"
513
+ }));
514
+ };
515
+
516
+ Bell.propTypes = {
517
+ color: PropTypes.string,
518
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
519
+ };
520
+ Bell.defaultProps = {
521
+ color: 'currentColor',
522
+ size: '24'
523
+ };
524
+
525
+ var BellOff = function BellOff(props) {
526
+ var color = props.color,
527
+ size = props.size,
528
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
529
+
530
+ return /*#__PURE__*/React.createElement("svg", _extends({
531
+ xmlns: "http://www.w3.org/2000/svg",
532
+ width: size,
533
+ height: size,
534
+ viewBox: "0 0 24 24",
535
+ fill: color
536
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
537
+ fillRule: "evenodd",
538
+ clipRule: "evenodd",
539
+ 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"
540
+ }), /*#__PURE__*/React.createElement("path", {
541
+ 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"
542
+ }), /*#__PURE__*/React.createElement("path", {
543
+ 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"
544
+ }));
545
+ };
546
+
547
+ BellOff.propTypes = {
548
+ color: PropTypes.string,
549
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
550
+ };
551
+ BellOff.defaultProps = {
552
+ color: 'currentColor',
553
+ size: '24'
554
+ };
555
+
556
+ var Bluetooth = function Bluetooth(props) {
557
+ var color = props.color,
558
+ size = props.size,
559
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
560
+
561
+ return /*#__PURE__*/React.createElement("svg", _extends({
562
+ xmlns: "http://www.w3.org/2000/svg",
563
+ width: size,
564
+ height: size,
565
+ viewBox: "0 0 24 24",
566
+ fill: color
567
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
568
+ clipPath: "url(#clip0)"
569
+ }, /*#__PURE__*/React.createElement("path", {
570
+ fillRule: "evenodd",
571
+ clipRule: "evenodd",
572
+ 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"
573
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
574
+ id: "clip0"
575
+ }, /*#__PURE__*/React.createElement("rect", {
576
+ width: "24",
577
+ height: "24"
578
+ }))));
579
+ };
580
+
581
+ Bluetooth.propTypes = {
582
+ color: PropTypes.string,
583
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
584
+ };
585
+ Bluetooth.defaultProps = {
586
+ color: 'currentColor',
587
+ size: '24'
588
+ };
589
+
590
+ var Bold = function Bold(props) {
591
+ var color = props.color,
592
+ size = props.size,
593
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
594
+
595
+ return /*#__PURE__*/React.createElement("svg", _extends({
596
+ xmlns: "http://www.w3.org/2000/svg",
597
+ width: size,
598
+ height: size,
599
+ viewBox: "0 0 24 24",
600
+ fill: color
601
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
602
+ fillRule: "evenodd",
603
+ clipRule: "evenodd",
604
+ d: "M5 4a1 1 0 011-1h8a5 5 0 110 10H6a1 1 0 01-1-1V4zm2 1v6h7a3 3 0 000-6H7z"
605
+ }), /*#__PURE__*/React.createElement("path", {
606
+ fillRule: "evenodd",
607
+ clipRule: "evenodd",
608
+ d: "M5 12a1 1 0 011-1h9a5 5 0 110 10H6a1 1 0 01-1-1v-8zm2 1v6h8a3 3 0 000-6H7z"
609
+ }));
610
+ };
611
+
612
+ Bold.propTypes = {
613
+ color: PropTypes.string,
614
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
615
+ };
616
+ Bold.defaultProps = {
617
+ color: 'currentColor',
618
+ size: '24'
619
+ };
620
+
621
+ var Book = function Book(props) {
622
+ var color = props.color,
623
+ size = props.size,
624
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
625
+
626
+ return /*#__PURE__*/React.createElement("svg", _extends({
627
+ xmlns: "http://www.w3.org/2000/svg",
628
+ width: size,
629
+ height: size,
630
+ viewBox: "0 0 24 24",
631
+ fill: color
632
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
633
+ fillRule: "evenodd",
634
+ clipRule: "evenodd",
635
+ 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"
636
+ }), /*#__PURE__*/React.createElement("path", {
637
+ fillRule: "evenodd",
638
+ clipRule: "evenodd",
639
+ 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"
640
+ }));
641
+ };
642
+
643
+ Book.propTypes = {
644
+ color: PropTypes.string,
645
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
646
+ };
647
+ Book.defaultProps = {
648
+ color: 'currentColor',
649
+ size: '24'
650
+ };
651
+
652
+ var Bookmark = function Bookmark(props) {
653
+ var color = props.color,
654
+ size = props.size,
655
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
656
+
657
+ return /*#__PURE__*/React.createElement("svg", _extends({
658
+ xmlns: "http://www.w3.org/2000/svg",
659
+ width: size,
660
+ height: size,
661
+ viewBox: "0 0 24 24",
662
+ fill: color
663
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
664
+ fillRule: "evenodd",
665
+ clipRule: "evenodd",
666
+ 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"
667
+ }));
668
+ };
669
+
670
+ Bookmark.propTypes = {
671
+ color: PropTypes.string,
672
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
673
+ };
674
+ Bookmark.defaultProps = {
675
+ color: 'currentColor',
676
+ size: '24'
677
+ };
678
+
679
+ var BookOpen = function BookOpen(props) {
680
+ var color = props.color,
681
+ size = props.size,
682
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
683
+
684
+ return /*#__PURE__*/React.createElement("svg", _extends({
685
+ xmlns: "http://www.w3.org/2000/svg",
686
+ width: size,
687
+ height: size,
688
+ viewBox: "0 0 24 24",
689
+ fill: color
690
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
691
+ fillRule: "evenodd",
692
+ clipRule: "evenodd",
693
+ 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"
694
+ }), /*#__PURE__*/React.createElement("path", {
695
+ fillRule: "evenodd",
696
+ clipRule: "evenodd",
697
+ 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"
698
+ }));
699
+ };
700
+
701
+ BookOpen.propTypes = {
702
+ color: PropTypes.string,
703
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
704
+ };
705
+ BookOpen.defaultProps = {
706
+ color: 'currentColor',
707
+ size: '24'
708
+ };
709
+
710
+ var Box = function Box(props) {
711
+ var color = props.color,
712
+ size = props.size,
713
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
714
+
715
+ return /*#__PURE__*/React.createElement("svg", _extends({
716
+ xmlns: "http://www.w3.org/2000/svg",
717
+ width: size,
718
+ height: size,
719
+ viewBox: "0 0 24 24",
720
+ fill: color
721
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
722
+ fillRule: "evenodd",
723
+ clipRule: "evenodd",
724
+ 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"
725
+ }), /*#__PURE__*/React.createElement("path", {
726
+ fillRule: "evenodd",
727
+ clipRule: "evenodd",
728
+ 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"
729
+ }), /*#__PURE__*/React.createElement("path", {
730
+ fillRule: "evenodd",
731
+ clipRule: "evenodd",
732
+ d: "M12 10a1 1 0 011 1v11.76a1 1 0 11-2 0V11a1 1 0 011-1z"
733
+ }));
734
+ };
735
+
736
+ Box.propTypes = {
737
+ color: PropTypes.string,
738
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
739
+ };
740
+ Box.defaultProps = {
741
+ color: 'currentColor',
742
+ size: '24'
743
+ };
744
+
745
+ var Briefcase = function Briefcase(props) {
746
+ var color = props.color,
747
+ size = props.size,
748
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
749
+
750
+ return /*#__PURE__*/React.createElement("svg", _extends({
751
+ xmlns: "http://www.w3.org/2000/svg",
752
+ width: size,
753
+ height: size,
754
+ viewBox: "0 0 24 24",
755
+ fill: color
756
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
757
+ fillRule: "evenodd",
758
+ clipRule: "evenodd",
759
+ 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"
760
+ }), /*#__PURE__*/React.createElement("path", {
761
+ fillRule: "evenodd",
762
+ clipRule: "evenodd",
763
+ 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"
764
+ }));
765
+ };
766
+
767
+ Briefcase.propTypes = {
768
+ color: PropTypes.string,
769
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
770
+ };
771
+ Briefcase.defaultProps = {
772
+ color: 'currentColor',
773
+ size: '24'
774
+ };
775
+
776
+ var Calendar = function Calendar(props) {
777
+ var color = props.color,
778
+ size = props.size,
779
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
780
+
781
+ return /*#__PURE__*/React.createElement("svg", _extends({
782
+ xmlns: "http://www.w3.org/2000/svg",
783
+ width: size,
784
+ height: size,
785
+ viewBox: "0 0 24 24",
786
+ fill: color
787
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
788
+ fillRule: "evenodd",
789
+ clipRule: "evenodd",
790
+ 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"
791
+ }), /*#__PURE__*/React.createElement("path", {
792
+ fillRule: "evenodd",
793
+ clipRule: "evenodd",
794
+ d: "M16 1a1 1 0 011 1v4a1 1 0 11-2 0V2a1 1 0 011-1z"
795
+ }), /*#__PURE__*/React.createElement("path", {
796
+ fillRule: "evenodd",
797
+ clipRule: "evenodd",
798
+ d: "M8 1a1 1 0 011 1v4a1 1 0 01-2 0V2a1 1 0 011-1z"
799
+ }), /*#__PURE__*/React.createElement("path", {
800
+ fillRule: "evenodd",
801
+ clipRule: "evenodd",
802
+ d: "M2 10a1 1 0 011-1h18a1 1 0 110 2H3a1 1 0 01-1-1z"
803
+ }));
804
+ };
805
+
806
+ Calendar.propTypes = {
807
+ color: PropTypes.string,
808
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
809
+ };
810
+ Calendar.defaultProps = {
811
+ color: 'currentColor',
812
+ size: '24'
813
+ };
814
+
815
+ var Camera = function Camera(props) {
816
+ var color = props.color,
817
+ size = props.size,
818
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
819
+
820
+ return /*#__PURE__*/React.createElement("svg", _extends({
821
+ xmlns: "http://www.w3.org/2000/svg",
822
+ width: size,
823
+ height: size,
824
+ viewBox: "0 0 24 24",
825
+ fill: color
826
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
827
+ fillRule: "evenodd",
828
+ clipRule: "evenodd",
829
+ 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"
830
+ }), /*#__PURE__*/React.createElement("path", {
831
+ fillRule: "evenodd",
832
+ clipRule: "evenodd",
833
+ d: "M12 10a3 3 0 100 6 3 3 0 000-6zm-5 3a5 5 0 1110 0 5 5 0 01-10 0z"
834
+ }));
835
+ };
836
+
837
+ Camera.propTypes = {
838
+ color: PropTypes.string,
839
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
840
+ };
841
+ Camera.defaultProps = {
842
+ color: 'currentColor',
843
+ size: '24'
844
+ };
845
+
846
+ var CameraOff = function CameraOff(props) {
847
+ var color = props.color,
848
+ size = props.size,
849
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
850
+
851
+ return /*#__PURE__*/React.createElement("svg", _extends({
852
+ xmlns: "http://www.w3.org/2000/svg",
853
+ width: size,
854
+ height: size,
855
+ viewBox: "0 0 24 24",
856
+ fill: color
857
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
858
+ clipPath: "url(#clip0)",
859
+ fillRule: "evenodd",
860
+ clipRule: "evenodd"
861
+ }, /*#__PURE__*/React.createElement("path", {
862
+ d: "M.293.293a1 1 0 011.414 0l22 22a1 1 0 01-1.414 1.414l-22-22a1 1 0 010-1.414z"
863
+ }), /*#__PURE__*/React.createElement("path", {
864
+ 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"
865
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
866
+ id: "clip0"
867
+ }, /*#__PURE__*/React.createElement("rect", {
868
+ width: "24",
869
+ height: "24"
870
+ }))));
871
+ };
872
+
873
+ CameraOff.propTypes = {
874
+ color: PropTypes.string,
875
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
876
+ };
877
+ CameraOff.defaultProps = {
878
+ color: 'currentColor',
879
+ size: '24'
880
+ };
881
+
882
+ var Cast = function Cast(props) {
883
+ var color = props.color,
884
+ size = props.size,
885
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
886
+
887
+ return /*#__PURE__*/React.createElement("svg", _extends({
888
+ xmlns: "http://www.w3.org/2000/svg",
889
+ width: size,
890
+ height: size,
891
+ viewBox: "0 0 24 24",
892
+ fill: color
893
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
894
+ fillRule: "evenodd",
895
+ clipRule: "evenodd",
896
+ 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"
897
+ }));
898
+ };
899
+
900
+ Cast.propTypes = {
901
+ color: PropTypes.string,
902
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
903
+ };
904
+ Cast.defaultProps = {
905
+ color: 'currentColor',
906
+ size: '24'
907
+ };
908
+
909
+ var Check = function Check(props) {
910
+ var color = props.color,
911
+ size = props.size,
912
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
913
+
914
+ return /*#__PURE__*/React.createElement("svg", _extends({
915
+ xmlns: "http://www.w3.org/2000/svg",
916
+ width: size,
917
+ height: size,
918
+ viewBox: "0 0 24 24",
919
+ fill: color
920
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
921
+ fillRule: "evenodd",
922
+ clipRule: "evenodd",
923
+ 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"
924
+ }));
925
+ };
926
+
927
+ Check.propTypes = {
928
+ color: PropTypes.string,
929
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
930
+ };
931
+ Check.defaultProps = {
932
+ color: 'currentColor',
933
+ size: '24'
934
+ };
935
+
936
+ var CheckCircle = function CheckCircle(props) {
937
+ var color = props.color,
938
+ size = props.size,
939
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
940
+
941
+ return /*#__PURE__*/React.createElement("svg", _extends({
942
+ xmlns: "http://www.w3.org/2000/svg",
943
+ width: size,
944
+ height: size,
945
+ viewBox: "0 0 24 24",
946
+ fill: color
947
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
948
+ fillRule: "evenodd",
949
+ clipRule: "evenodd",
950
+ 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"
951
+ }), /*#__PURE__*/React.createElement("path", {
952
+ fillRule: "evenodd",
953
+ clipRule: "evenodd",
954
+ 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"
955
+ }));
956
+ };
957
+
958
+ CheckCircle.propTypes = {
959
+ color: PropTypes.string,
960
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
961
+ };
962
+ CheckCircle.defaultProps = {
963
+ color: 'currentColor',
964
+ size: '24'
965
+ };
966
+
967
+ var CheckSquare = function CheckSquare(props) {
968
+ var color = props.color,
969
+ size = props.size,
970
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
971
+
972
+ return /*#__PURE__*/React.createElement("svg", _extends({
973
+ xmlns: "http://www.w3.org/2000/svg",
974
+ width: size,
975
+ height: size,
976
+ viewBox: "0 0 24 24",
977
+ fill: color
978
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
979
+ fillRule: "evenodd",
980
+ clipRule: "evenodd",
981
+ 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"
982
+ }), /*#__PURE__*/React.createElement("path", {
983
+ fillRule: "evenodd",
984
+ clipRule: "evenodd",
985
+ 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"
986
+ }));
987
+ };
988
+
989
+ CheckSquare.propTypes = {
990
+ color: PropTypes.string,
991
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
992
+ };
993
+ CheckSquare.defaultProps = {
994
+ color: 'currentColor',
995
+ size: '24'
996
+ };
997
+
998
+ var ChevronDown = function ChevronDown(props) {
999
+ var color = props.color,
1000
+ size = props.size,
1001
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1002
+
1003
+ return /*#__PURE__*/React.createElement("svg", _extends({
1004
+ xmlns: "http://www.w3.org/2000/svg",
1005
+ width: size,
1006
+ height: size,
1007
+ viewBox: "0 0 24 24",
1008
+ fill: color
1009
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1010
+ fillRule: "evenodd",
1011
+ clipRule: "evenodd",
1012
+ 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"
1013
+ }));
1014
+ };
1015
+
1016
+ ChevronDown.propTypes = {
1017
+ color: PropTypes.string,
1018
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1019
+ };
1020
+ ChevronDown.defaultProps = {
1021
+ color: 'currentColor',
1022
+ size: '24'
1023
+ };
1024
+
1025
+ var ChevronLeft = function ChevronLeft(props) {
1026
+ var color = props.color,
1027
+ size = props.size,
1028
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1029
+
1030
+ return /*#__PURE__*/React.createElement("svg", _extends({
1031
+ xmlns: "http://www.w3.org/2000/svg",
1032
+ width: size,
1033
+ height: size,
1034
+ viewBox: "0 0 24 24",
1035
+ fill: color
1036
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1037
+ fillRule: "evenodd",
1038
+ clipRule: "evenodd",
1039
+ 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"
1040
+ }));
1041
+ };
1042
+
1043
+ ChevronLeft.propTypes = {
1044
+ color: PropTypes.string,
1045
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1046
+ };
1047
+ ChevronLeft.defaultProps = {
1048
+ color: 'currentColor',
1049
+ size: '24'
1050
+ };
1051
+
1052
+ var ChevronRight = function ChevronRight(props) {
1053
+ var color = props.color,
1054
+ size = props.size,
1055
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1056
+
1057
+ return /*#__PURE__*/React.createElement("svg", _extends({
1058
+ xmlns: "http://www.w3.org/2000/svg",
1059
+ width: size,
1060
+ height: size,
1061
+ viewBox: "0 0 24 24",
1062
+ fill: color
1063
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1064
+ fillRule: "evenodd",
1065
+ clipRule: "evenodd",
1066
+ 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"
1067
+ }));
1068
+ };
1069
+
1070
+ ChevronRight.propTypes = {
1071
+ color: PropTypes.string,
1072
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1073
+ };
1074
+ ChevronRight.defaultProps = {
1075
+ color: 'currentColor',
1076
+ size: '24'
1077
+ };
1078
+
1079
+ var ChevronsDown = function ChevronsDown(props) {
1080
+ var color = props.color,
1081
+ size = props.size,
1082
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1083
+
1084
+ return /*#__PURE__*/React.createElement("svg", _extends({
1085
+ xmlns: "http://www.w3.org/2000/svg",
1086
+ width: size,
1087
+ height: size,
1088
+ viewBox: "0 0 24 24",
1089
+ fill: color
1090
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1091
+ fillRule: "evenodd",
1092
+ clipRule: "evenodd",
1093
+ 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"
1094
+ }), /*#__PURE__*/React.createElement("path", {
1095
+ fillRule: "evenodd",
1096
+ clipRule: "evenodd",
1097
+ 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"
1098
+ }));
1099
+ };
1100
+
1101
+ ChevronsDown.propTypes = {
1102
+ color: PropTypes.string,
1103
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1104
+ };
1105
+ ChevronsDown.defaultProps = {
1106
+ color: 'currentColor',
1107
+ size: '24'
1108
+ };
1109
+
1110
+ var ChevronsLeft = function ChevronsLeft(props) {
1111
+ var color = props.color,
1112
+ size = props.size,
1113
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1114
+
1115
+ return /*#__PURE__*/React.createElement("svg", _extends({
1116
+ xmlns: "http://www.w3.org/2000/svg",
1117
+ width: size,
1118
+ height: size,
1119
+ viewBox: "0 0 24 24",
1120
+ fill: color
1121
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1122
+ fillRule: "evenodd",
1123
+ clipRule: "evenodd",
1124
+ 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"
1125
+ }), /*#__PURE__*/React.createElement("path", {
1126
+ fillRule: "evenodd",
1127
+ clipRule: "evenodd",
1128
+ 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"
1129
+ }));
1130
+ };
1131
+
1132
+ ChevronsLeft.propTypes = {
1133
+ color: PropTypes.string,
1134
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1135
+ };
1136
+ ChevronsLeft.defaultProps = {
1137
+ color: 'currentColor',
1138
+ size: '24'
1139
+ };
1140
+
1141
+ var ChevronsRight = function ChevronsRight(props) {
1142
+ var color = props.color,
1143
+ size = props.size,
1144
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1145
+
1146
+ return /*#__PURE__*/React.createElement("svg", _extends({
1147
+ xmlns: "http://www.w3.org/2000/svg",
1148
+ width: size,
1149
+ height: size,
1150
+ viewBox: "0 0 24 24",
1151
+ fill: color
1152
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1153
+ fillRule: "evenodd",
1154
+ clipRule: "evenodd",
1155
+ 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"
1156
+ }), /*#__PURE__*/React.createElement("path", {
1157
+ fillRule: "evenodd",
1158
+ clipRule: "evenodd",
1159
+ 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"
1160
+ }));
1161
+ };
1162
+
1163
+ ChevronsRight.propTypes = {
1164
+ color: PropTypes.string,
1165
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1166
+ };
1167
+ ChevronsRight.defaultProps = {
1168
+ color: 'currentColor',
1169
+ size: '24'
1170
+ };
1171
+
1172
+ var ChevronsUp = function ChevronsUp(props) {
1173
+ var color = props.color,
1174
+ size = props.size,
1175
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1176
+
1177
+ return /*#__PURE__*/React.createElement("svg", _extends({
1178
+ xmlns: "http://www.w3.org/2000/svg",
1179
+ width: size,
1180
+ height: size,
1181
+ viewBox: "0 0 24 24",
1182
+ fill: color
1183
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1184
+ fillRule: "evenodd",
1185
+ clipRule: "evenodd",
1186
+ 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"
1187
+ }), /*#__PURE__*/React.createElement("path", {
1188
+ fillRule: "evenodd",
1189
+ clipRule: "evenodd",
1190
+ 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"
1191
+ }));
1192
+ };
1193
+
1194
+ ChevronsUp.propTypes = {
1195
+ color: PropTypes.string,
1196
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1197
+ };
1198
+ ChevronsUp.defaultProps = {
1199
+ color: 'currentColor',
1200
+ size: '24'
1201
+ };
1202
+
1203
+ var ChevronUp = function ChevronUp(props) {
1204
+ var color = props.color,
1205
+ size = props.size,
1206
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1207
+
1208
+ return /*#__PURE__*/React.createElement("svg", _extends({
1209
+ xmlns: "http://www.w3.org/2000/svg",
1210
+ width: size,
1211
+ height: size,
1212
+ viewBox: "0 0 24 24",
1213
+ fill: color
1214
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1215
+ fillRule: "evenodd",
1216
+ clipRule: "evenodd",
1217
+ 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"
1218
+ }));
1219
+ };
1220
+
1221
+ ChevronUp.propTypes = {
1222
+ color: PropTypes.string,
1223
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1224
+ };
1225
+ ChevronUp.defaultProps = {
1226
+ color: 'currentColor',
1227
+ size: '24'
1228
+ };
1229
+
1230
+ var Chrome = function Chrome(props) {
1231
+ var color = props.color,
1232
+ size = props.size,
1233
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1234
+
1235
+ return /*#__PURE__*/React.createElement("svg", _extends({
1236
+ xmlns: "http://www.w3.org/2000/svg",
1237
+ width: size,
1238
+ height: size,
1239
+ viewBox: "0 0 24 24",
1240
+ fill: color
1241
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1242
+ fillRule: "evenodd",
1243
+ clipRule: "evenodd",
1244
+ 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"
1245
+ }), /*#__PURE__*/React.createElement("path", {
1246
+ fillRule: "evenodd",
1247
+ clipRule: "evenodd",
1248
+ d: "M12 9a3 3 0 100 6 3 3 0 000-6zm-5 3a5 5 0 1110 0 5 5 0 01-10 0z"
1249
+ }), /*#__PURE__*/React.createElement("path", {
1250
+ fillRule: "evenodd",
1251
+ clipRule: "evenodd",
1252
+ d: "M11 8a1 1 0 011-1h9.17a1 1 0 110 2H12a1 1 0 01-1-1z"
1253
+ }), /*#__PURE__*/React.createElement("path", {
1254
+ fillRule: "evenodd",
1255
+ clipRule: "evenodd",
1256
+ 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"
1257
+ }), /*#__PURE__*/React.createElement("path", {
1258
+ fillRule: "evenodd",
1259
+ clipRule: "evenodd",
1260
+ 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"
1261
+ }));
1262
+ };
1263
+
1264
+ Chrome.propTypes = {
1265
+ color: PropTypes.string,
1266
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1267
+ };
1268
+ Chrome.defaultProps = {
1269
+ color: 'currentColor',
1270
+ size: '24'
1271
+ };
1272
+
1273
+ var Circle = function Circle(props) {
1274
+ var color = props.color,
1275
+ size = props.size,
1276
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1277
+
1278
+ return /*#__PURE__*/React.createElement("svg", _extends({
1279
+ xmlns: "http://www.w3.org/2000/svg",
1280
+ width: size,
1281
+ height: size,
1282
+ viewBox: "0 0 24 24",
1283
+ fill: color
1284
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1285
+ fillRule: "evenodd",
1286
+ clipRule: "evenodd",
1287
+ 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"
1288
+ }));
1289
+ };
1290
+
1291
+ Circle.propTypes = {
1292
+ color: PropTypes.string,
1293
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1294
+ };
1295
+ Circle.defaultProps = {
1296
+ color: 'currentColor',
1297
+ size: '24'
1298
+ };
1299
+
1300
+ var Clipboard = function Clipboard(props) {
1301
+ var color = props.color,
1302
+ size = props.size,
1303
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1304
+
1305
+ return /*#__PURE__*/React.createElement("svg", _extends({
1306
+ xmlns: "http://www.w3.org/2000/svg",
1307
+ width: size,
1308
+ height: size,
1309
+ viewBox: "0 0 24 24",
1310
+ fill: color
1311
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1312
+ fillRule: "evenodd",
1313
+ clipRule: "evenodd",
1314
+ 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"
1315
+ }), /*#__PURE__*/React.createElement("path", {
1316
+ fillRule: "evenodd",
1317
+ clipRule: "evenodd",
1318
+ d: "M7 3a2 2 0 012-2h6a2 2 0 012 2v2a2 2 0 01-2 2H9a2 2 0 01-2-2V3zm8 0H9v2h6V3z"
1319
+ }));
1320
+ };
1321
+
1322
+ Clipboard.propTypes = {
1323
+ color: PropTypes.string,
1324
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1325
+ };
1326
+ Clipboard.defaultProps = {
1327
+ color: 'currentColor',
1328
+ size: '24'
1329
+ };
1330
+
1331
+ var Clock = function Clock(props) {
1332
+ var color = props.color,
1333
+ size = props.size,
1334
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1335
+
1336
+ return /*#__PURE__*/React.createElement("svg", _extends({
1337
+ xmlns: "http://www.w3.org/2000/svg",
1338
+ width: size,
1339
+ height: size,
1340
+ viewBox: "0 0 24 24",
1341
+ fill: color
1342
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1343
+ fillRule: "evenodd",
1344
+ clipRule: "evenodd",
1345
+ 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"
1346
+ }), /*#__PURE__*/React.createElement("path", {
1347
+ fillRule: "evenodd",
1348
+ clipRule: "evenodd",
1349
+ 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"
1350
+ }));
1351
+ };
1352
+
1353
+ Clock.propTypes = {
1354
+ color: PropTypes.string,
1355
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1356
+ };
1357
+ Clock.defaultProps = {
1358
+ color: 'currentColor',
1359
+ size: '24'
1360
+ };
1361
+
1362
+ var Cloud = function Cloud(props) {
1363
+ var color = props.color,
1364
+ size = props.size,
1365
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1366
+
1367
+ return /*#__PURE__*/React.createElement("svg", _extends({
1368
+ xmlns: "http://www.w3.org/2000/svg",
1369
+ width: size,
1370
+ height: size,
1371
+ viewBox: "0 0 24 24",
1372
+ fill: color
1373
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1374
+ clipPath: "url(#clip0)"
1375
+ }, /*#__PURE__*/React.createElement("path", {
1376
+ fillRule: "evenodd",
1377
+ clipRule: "evenodd",
1378
+ 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"
1379
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1380
+ id: "clip0"
1381
+ }, /*#__PURE__*/React.createElement("rect", {
1382
+ width: "24",
1383
+ height: "24"
1384
+ }))));
1385
+ };
1386
+
1387
+ Cloud.propTypes = {
1388
+ color: PropTypes.string,
1389
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1390
+ };
1391
+ Cloud.defaultProps = {
1392
+ color: 'currentColor',
1393
+ size: '24'
1394
+ };
1395
+
1396
+ var CloudDrizzle = function CloudDrizzle(props) {
1397
+ var color = props.color,
1398
+ size = props.size,
1399
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1400
+
1401
+ return /*#__PURE__*/React.createElement("svg", _extends({
1402
+ xmlns: "http://www.w3.org/2000/svg",
1403
+ width: size,
1404
+ height: size,
1405
+ viewBox: "0 0 24 24",
1406
+ fill: color
1407
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1408
+ clipPath: "url(#clip0)",
1409
+ fillRule: "evenodd",
1410
+ clipRule: "evenodd"
1411
+ }, /*#__PURE__*/React.createElement("path", {
1412
+ d: "M8 18a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1413
+ }), /*#__PURE__*/React.createElement("path", {
1414
+ d: "M8 12a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1415
+ }), /*#__PURE__*/React.createElement("path", {
1416
+ d: "M16 18a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1417
+ }), /*#__PURE__*/React.createElement("path", {
1418
+ d: "M16 12a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1419
+ }), /*#__PURE__*/React.createElement("path", {
1420
+ d: "M12 20a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1421
+ }), /*#__PURE__*/React.createElement("path", {
1422
+ d: "M12 14a1 1 0 011 1v2a1 1 0 11-2 0v-2a1 1 0 011-1z"
1423
+ }), /*#__PURE__*/React.createElement("path", {
1424
+ 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"
1425
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1426
+ id: "clip0"
1427
+ }, /*#__PURE__*/React.createElement("rect", {
1428
+ width: "24",
1429
+ height: "24"
1430
+ }))));
1431
+ };
1432
+
1433
+ CloudDrizzle.propTypes = {
1434
+ color: PropTypes.string,
1435
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1436
+ };
1437
+ CloudDrizzle.defaultProps = {
1438
+ color: 'currentColor',
1439
+ size: '24'
1440
+ };
1441
+
1442
+ var CloudRain = function CloudRain(props) {
1443
+ var color = props.color,
1444
+ size = props.size,
1445
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1446
+
1447
+ return /*#__PURE__*/React.createElement("svg", _extends({
1448
+ xmlns: "http://www.w3.org/2000/svg",
1449
+ width: size,
1450
+ height: size,
1451
+ viewBox: "0 0 24 24",
1452
+ fill: color
1453
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1454
+ clipPath: "url(#clip0)",
1455
+ fillRule: "evenodd",
1456
+ clipRule: "evenodd"
1457
+ }, /*#__PURE__*/React.createElement("path", {
1458
+ d: "M16 12a1 1 0 011 1v8a1 1 0 11-2 0v-8a1 1 0 011-1z"
1459
+ }), /*#__PURE__*/React.createElement("path", {
1460
+ d: "M8 12a1 1 0 011 1v8a1 1 0 11-2 0v-8a1 1 0 011-1z"
1461
+ }), /*#__PURE__*/React.createElement("path", {
1462
+ d: "M12 14a1 1 0 011 1v8a1 1 0 11-2 0v-8a1 1 0 011-1z"
1463
+ }), /*#__PURE__*/React.createElement("path", {
1464
+ 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"
1465
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1466
+ id: "clip0"
1467
+ }, /*#__PURE__*/React.createElement("rect", {
1468
+ width: "24",
1469
+ height: "24"
1470
+ }))));
1471
+ };
1472
+
1473
+ CloudRain.propTypes = {
1474
+ color: PropTypes.string,
1475
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1476
+ };
1477
+ CloudRain.defaultProps = {
1478
+ color: 'currentColor',
1479
+ size: '24'
1480
+ };
1481
+
1482
+ var Code = function Code(props) {
1483
+ var color = props.color,
1484
+ size = props.size,
1485
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1486
+
1487
+ return /*#__PURE__*/React.createElement("svg", _extends({
1488
+ xmlns: "http://www.w3.org/2000/svg",
1489
+ width: size,
1490
+ height: size,
1491
+ viewBox: "0 0 24 24",
1492
+ fill: color
1493
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
1494
+ fillRule: "evenodd",
1495
+ clipRule: "evenodd",
1496
+ 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"
1497
+ }), /*#__PURE__*/React.createElement("path", {
1498
+ fillRule: "evenodd",
1499
+ clipRule: "evenodd",
1500
+ 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"
1501
+ }));
1502
+ };
1503
+
1504
+ Code.propTypes = {
1505
+ color: PropTypes.string,
1506
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1507
+ };
1508
+ Code.defaultProps = {
1509
+ color: 'currentColor',
1510
+ size: '24'
1511
+ };
1512
+
1513
+ var CloudLightning = function CloudLightning(props) {
1514
+ var color = props.color,
1515
+ size = props.size,
1516
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1517
+
1518
+ return /*#__PURE__*/React.createElement("svg", _extends({
1519
+ xmlns: "http://www.w3.org/2000/svg",
1520
+ width: size,
1521
+ height: size,
1522
+ viewBox: "0 0 24 24",
1523
+ fill: color
1524
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1525
+ clipPath: "url(#clip0)"
1526
+ }, /*#__PURE__*/React.createElement("path", {
1527
+ 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"
1528
+ }), /*#__PURE__*/React.createElement("path", {
1529
+ 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"
1530
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1531
+ id: "clip0"
1532
+ }, /*#__PURE__*/React.createElement("rect", {
1533
+ width: "24",
1534
+ height: "24"
1535
+ }))));
1536
+ };
1537
+
1538
+ CloudLightning.propTypes = {
1539
+ color: PropTypes.string,
1540
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1541
+ };
1542
+ CloudLightning.defaultProps = {
1543
+ color: 'currentColor',
1544
+ size: '24'
1545
+ };
1546
+
1547
+ var CloudOff = function CloudOff(props) {
1548
+ var color = props.color,
1549
+ size = props.size,
1550
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1551
+
1552
+ return /*#__PURE__*/React.createElement("svg", _extends({
1553
+ xmlns: "http://www.w3.org/2000/svg",
1554
+ width: size,
1555
+ height: size,
1556
+ viewBox: "0 0 24 24",
1557
+ fill: color
1558
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1559
+ clipPath: "url(#clip0)"
1560
+ }, /*#__PURE__*/React.createElement("path", {
1561
+ 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"
1562
+ }), /*#__PURE__*/React.createElement("path", {
1563
+ 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"
1564
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1565
+ id: "clip0"
1566
+ }, /*#__PURE__*/React.createElement("rect", {
1567
+ width: "24",
1568
+ height: "24"
1569
+ }))));
1570
+ };
1571
+
1572
+ CloudOff.propTypes = {
1573
+ color: PropTypes.string,
1574
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1575
+ };
1576
+ CloudOff.defaultProps = {
1577
+ color: 'currentColor',
1578
+ size: '24'
1579
+ };
1580
+
1581
+ var CloudSnow = function CloudSnow(props) {
1582
+ var color = props.color,
1583
+ size = props.size,
1584
+ otherProps = _objectWithoutProperties(props, ["color", "size"]);
1585
+
1586
+ return /*#__PURE__*/React.createElement("svg", _extends({
1587
+ xmlns: "http://www.w3.org/2000/svg",
1588
+ width: size,
1589
+ height: size,
1590
+ viewBox: "0 0 24 24",
1591
+ fill: color
1592
+ }, otherProps), /*#__PURE__*/React.createElement("g", {
1593
+ clipPath: "url(#clip0)"
1594
+ }, /*#__PURE__*/React.createElement("path", {
1595
+ 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"
1596
+ }), /*#__PURE__*/React.createElement("path", {
1597
+ 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"
1598
+ }), /*#__PURE__*/React.createElement("path", {
1599
+ 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"
1600
+ }), /*#__PURE__*/React.createElement("path", {
1601
+ 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"
1602
+ }), /*#__PURE__*/React.createElement("path", {
1603
+ 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"
1604
+ }), /*#__PURE__*/React.createElement("path", {
1605
+ 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"
1606
+ }), /*#__PURE__*/React.createElement("path", {
1607
+ 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"
1608
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
1609
+ id: "clip0"
1610
+ }, /*#__PURE__*/React.createElement("rect", {
1611
+ width: "24",
1612
+ height: "24"
1613
+ }))));
1614
+ };
1615
+
1616
+ CloudSnow.propTypes = {
1617
+ color: PropTypes.string,
1618
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
1619
+ };
1620
+ CloudSnow.defaultProps = {
1621
+ color: 'currentColor',
1622
+ size: '24'
1623
+ };
1624
+
1625
+ export { ArrowDownRight, ArrowLeft, ArrowLeftCircle, ArrowRight, ArrowRightCircle, ArrowUp, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, AtSign, Award, BarChart, BarChart2, Battery, BatteryCharging, Bell, BellOff, Bluetooth, Bold, Book, BookOpen, Bookmark, Box, Briefcase, Calendar, Camera, CameraOff, Cast, Check, CheckCircle, CheckSquare, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsDown, ChevronsLeft, ChevronsRight, ChevronsUp, Chrome, Circle, Clipboard, Clock, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Code };