@app-studio/web 0.8.29 → 0.8.31

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.
@@ -204,7 +204,7 @@
204
204
  }))));
205
205
  Center.displayName = 'Center';
206
206
 
207
- var _excluded$3 = ["size", "color", "transform", "orientation", "children"],
207
+ var _excluded$3 = ["size", "color", "filled", "strokeWidth"],
208
208
  _excluded2 = ["size", "color", "filled", "strokeWidth"],
209
209
  _excluded3 = ["size", "color", "filled", "strokeWidth"],
210
210
  _excluded4 = ["size", "color", "filled", "strokeWidth"],
@@ -218,14 +218,14 @@
218
218
  _excluded12 = ["size", "color", "filled", "strokeWidth"],
219
219
  _excluded13 = ["size", "color", "filled", "strokeWidth"],
220
220
  _excluded14 = ["size", "color", "filled", "strokeWidth"],
221
- _excluded15 = ["size", "color", "filled", "strokeWidth"],
222
- _excluded16 = ["size", "color", "strokeWidth", "filled"],
223
- _excluded17 = ["size", "color", "filled", "strokeWidth"],
224
- _excluded18 = ["size", "color", "strokeWidth"],
225
- _excluded19 = ["size", "color", "filled", "strokeWidth"],
226
- _excluded20 = ["size", "color", "strokeWidth"],
221
+ _excluded15 = ["size", "color"],
222
+ _excluded16 = ["size", "color"],
223
+ _excluded17 = ["size", "color"],
224
+ _excluded18 = ["size", "color"],
225
+ _excluded19 = ["size", "color"],
226
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
227
227
  _excluded21 = ["size", "color", "filled", "strokeWidth"],
228
- _excluded22 = ["size", "color", "strokeWidth"],
228
+ _excluded22 = ["size", "color", "filled", "strokeWidth"],
229
229
  _excluded23 = ["size", "color", "filled", "strokeWidth"],
230
230
  _excluded24 = ["size", "color", "filled", "strokeWidth"],
231
231
  _excluded25 = ["size", "color", "filled", "strokeWidth"],
@@ -235,74 +235,65 @@
235
235
  _excluded29 = ["size", "color", "filled", "strokeWidth"],
236
236
  _excluded30 = ["size", "color", "filled", "strokeWidth"],
237
237
  _excluded31 = ["size", "color", "filled", "strokeWidth"],
238
- _excluded32 = ["size", "color", "filled", "strokeWidth"],
239
- _excluded33 = ["size", "color", "filled", "strokeWidth"],
240
- _excluded34 = ["size", "color", "filled", "strokeWidth"],
241
- _excluded35 = ["size", "color", "strokeWidth"],
242
- _excluded36 = ["size", "color", "strokeWidth"],
238
+ _excluded32 = ["size", "color"],
239
+ _excluded33 = ["size", "color"],
240
+ _excluded34 = ["size", "color"],
241
+ _excluded35 = ["size", "color", "filled", "strokeWidth"],
242
+ _excluded36 = ["size", "color", "filled", "strokeWidth"],
243
243
  _excluded37 = ["size", "color", "filled", "strokeWidth"],
244
244
  _excluded38 = ["size", "color", "filled", "strokeWidth"],
245
- _excluded39 = ["size", "color", "filled", "strokeWidth"],
246
- _excluded40 = ["size", "color", "filled", "strokeWidth"],
247
- _excluded41 = ["size", "color", "filled", "strokeWidth"],
248
- _excluded42 = ["size", "color", "filled", "strokeWidth"],
249
- _excluded43 = ["size", "color", "filled", "strokeWidth"],
250
- _excluded44 = ["size", "color", "filled", "strokeWidth"],
251
- _excluded45 = ["size", "color", "filled", "strokeWidth"],
252
- _excluded46 = ["size", "color", "filled", "strokeWidth"],
253
- _excluded47 = ["size", "color", "filled", "strokeWidth"],
254
- _excluded48 = ["size", "color", "filled", "strokeWidth"],
255
- _excluded49 = ["size", "color", "filled", "strokeWidth"],
256
- _excluded50 = ["size", "color", "strokeWidth"];
257
- // Default wrapper component for consistent sizing and styling
245
+ _excluded39 = ["size", "color"],
246
+ _excluded40 = ["size", "color"],
247
+ _excluded41 = ["size", "color"],
248
+ _excluded42 = ["size", "color"],
249
+ _excluded43 = ["size", "color"],
250
+ _excluded44 = ["size", "color"],
251
+ _excluded45 = ["size", "color"],
252
+ _excluded46 = ["size", "color"],
253
+ _excluded47 = ["size", "color"],
254
+ _excluded48 = ["size", "color"],
255
+ _excluded49 = ["size", "color"];
256
+ // Default wrapper component for consistent sizing
258
257
  var IconWrapper = _ref => {
259
258
  var {
260
- size,
261
- color = 'black',
262
- transform,
263
- orientation,
264
- children
265
- } = _ref,
266
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$3);
267
- return /*#__PURE__*/React__default.createElement(Center, Object.assign({
259
+ size,
260
+ color = 'black',
261
+ transform,
262
+ orientation,
263
+ children
264
+ } = _ref;
265
+ return /*#__PURE__*/React__default.createElement(Center, {
268
266
  size: size,
269
267
  lineHeight: size,
270
268
  color: color,
271
269
  display: "flex",
272
- transform: transform ? transform : orientation === 'left' ? 'rotate(-90deg)' : orientation === 'right' ? 'rotate(90deg)' : orientation === 'up' ? 'rotate(0deg)' : orientation === 'down' ? 'rotate(180deg)' : 'none'
273
- }, rest), children);
274
- };
275
- // Utility function to handle fill and stroke based on 'filled' prop
276
- var getSvgProps = (filled, color, strokeWidth) => {
277
- return {
278
- fill: filled ? color : 'none',
279
- stroke: filled ? 'none' : color,
280
- strokeWidth,
281
- strokeLinecap: 'round',
282
- strokeLinejoin: 'round'
283
- };
270
+ transform: transform ? transform : orientation == 'left' ? 'rotate(-90deg)' : orientation == 'right' ? 'rotate(90deg)' : orientation == 'up' ? 'rotate(0deg)' : orientation == 'down' ? 'rotate(180deg)' : 'none'
271
+ }, children);
284
272
  };
285
- // Example Icon Component: ChevronIcon
286
273
  var ChevronIcon = _ref2 => {
287
274
  var {
288
275
  size = 24,
289
276
  color = 'currentColor',
290
- filled = true,
277
+ filled = false,
291
278
  strokeWidth = 1
292
279
  } = _ref2,
293
- props = _objectWithoutPropertiesLoose(_ref2, _excluded2);
280
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded$3);
294
281
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
295
282
  size: size,
296
283
  color: color
297
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
284
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
285
+ width: "16",
286
+ height: "16",
287
+ fill: filled ? color : 'none',
298
288
  viewBox: "0 0 24 24",
299
- "aria-hidden": "true",
300
- focusable: "false"
301
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
289
+ stroke: filled ? 'none' : color,
290
+ strokeWidth: strokeWidth,
291
+ strokeLinecap: "round",
292
+ strokeLinejoin: "round"
293
+ }, /*#__PURE__*/React__default.createElement("path", {
302
294
  d: "M12.771 7.115a.829.829 0 0 0-1.2 0L3 15.686l1.2 1.2 7.971-7.971 7.972 7.971 1.2-1.2-8.572-8.571Z"
303
295
  })));
304
296
  };
305
- // Example of another Icon: CloseIcon
306
297
  var CloseIcon = _ref3 => {
307
298
  var {
308
299
  size = 24,
@@ -310,126 +301,95 @@
310
301
  filled = false,
311
302
  strokeWidth = 1
312
303
  } = _ref3,
313
- props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
304
+ props = _objectWithoutPropertiesLoose(_ref3, _excluded2);
314
305
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
315
306
  size: size,
316
307
  color: color
317
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
308
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
309
+ xmlns: "http://www.w3.org/2000/svg",
318
310
  viewBox: "0 0 24 24",
319
- "aria-hidden": "true",
320
- focusable: "false"
321
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
322
- stroke: color,
311
+ fill: filled ? color : 'none',
312
+ stroke: filled ? 'none' : color,
313
+ strokeWidth: strokeWidth,
314
+ strokeLinecap: "round",
315
+ strokeLinejoin: "round"
316
+ }, /*#__PURE__*/React__default.createElement("line", {
323
317
  x1: "18",
324
318
  y1: "6",
325
319
  x2: "6",
326
320
  y2: "18"
327
321
  }), /*#__PURE__*/React__default.createElement("line", {
328
- stroke: color,
329
322
  x1: "6",
330
323
  y1: "6",
331
324
  x2: "18",
332
325
  y2: "18"
333
326
  })));
334
327
  };
335
- // Continue refactoring other icons similarly...
336
- // Example Refactored Icon: MinusIcon without undefined 'padding' prop
337
- var MinusIcon = _ref4 => {
338
- var {
339
- size = 24,
340
- color = 'currentColor',
341
- filled = false,
342
- // Assuming minus can be filled; adjust as needed
343
- strokeWidth = 1
344
- } = _ref4,
345
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
346
- return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
347
- size: size,
348
- color: color
349
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
350
- viewBox: "0 0 24 24",
351
- "aria-hidden": "true",
352
- focusable: "false"
353
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
354
- d: "M5 12h14"
355
- })));
356
- };
357
- // Example Refactored Icon: InfoIcon with accessibility enhancements
358
- var InfoIcon = _ref5 => {
359
- var {
360
- size = 24,
361
- color = 'currentColor',
362
- filled = false,
363
- strokeWidth = 1
364
- } = _ref5,
365
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
366
- return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
367
- size: size,
368
- color: color
369
- }, props, {
370
- "aria-label": "Information"
371
- }), /*#__PURE__*/React__default.createElement("svg", Object.assign({
372
- viewBox: "0 0 24 24",
373
- "aria-hidden": "false",
374
- focusable: "false"
375
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
376
- d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"
377
- })));
378
- };
379
- var HeartIcon = _ref6 => {
328
+ var HeartIcon = _ref4 => {
380
329
  var {
381
330
  size = 24,
382
331
  color = 'currentColor',
383
332
  filled = true,
384
333
  strokeWidth = 1
385
- } = _ref6,
386
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
334
+ } = _ref4,
335
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded3);
387
336
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
388
337
  size: size,
389
338
  color: color
390
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
339
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
340
+ xmlns: "http://www.w3.org/2000/svg",
391
341
  viewBox: "0 0 24 24",
392
- "aria-hidden": "false",
393
- focusable: "false"
394
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
342
+ fill: filled ? color : 'none',
343
+ stroke: filled ? 'none' : color,
344
+ strokeWidth: strokeWidth,
345
+ strokeLinecap: "round",
346
+ strokeLinejoin: "round"
347
+ }, /*#__PURE__*/React__default.createElement("path", {
395
348
  d: "M20.84 4.61c-1.54-1.56-4.04-1.56-5.59 0l-.7.72-.7-.72a3.95 3.95 0 0 0-5.59 0c-1.56 1.56-1.56 4.09 0 5.66l6.29 6.36 6.29-6.36c1.56-1.56 1.56-4.09 0-5.66z"
396
349
  })));
397
350
  };
398
- var StarIcon = _ref7 => {
351
+ var StarIcon = _ref5 => {
399
352
  var {
400
353
  size = 24,
401
354
  color = 'currentColor',
402
355
  filled = true,
403
356
  strokeWidth = 1
404
- } = _ref7,
405
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
357
+ } = _ref5,
358
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded4);
406
359
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
407
360
  size: size,
408
361
  color: color
409
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
362
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
363
+ xmlns: "http://www.w3.org/2000/svg",
410
364
  viewBox: "0 0 24 24",
411
- "aria-hidden": "false",
412
- focusable: "false"
413
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("polygon", {
365
+ fill: filled ? color : 'none',
366
+ stroke: filled ? 'none' : color,
367
+ strokeWidth: strokeWidth,
368
+ strokeLinecap: "round",
369
+ strokeLinejoin: "round"
370
+ }, /*#__PURE__*/React__default.createElement("polygon", {
414
371
  points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
415
372
  })));
416
373
  };
417
- var SaveIcon = _ref8 => {
374
+ var SaveIcon = _ref6 => {
418
375
  var {
419
376
  size = 24,
420
377
  color = 'currentColor',
421
378
  filled = false,
422
379
  strokeWidth = 1
423
- } = _ref8,
424
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
380
+ } = _ref6,
381
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded5);
425
382
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
426
383
  size: size,
427
384
  color: color
428
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
385
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
429
386
  viewBox: "0 0 24 24",
430
- "aria-hidden": "false",
431
- focusable: "false"
432
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
387
+ fill: filled ? color : 'none',
388
+ stroke: filled ? 'none' : color,
389
+ strokeWidth: strokeWidth,
390
+ strokeLinecap: "round",
391
+ strokeLinejoin: "round"
392
+ }, /*#__PURE__*/React__default.createElement("path", {
433
393
  d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"
434
394
  }), /*#__PURE__*/React__default.createElement("polyline", {
435
395
  points: "17 21 17 13 7 13 7 21"
@@ -437,110 +397,123 @@
437
397
  points: "7 3 7 8 15 8"
438
398
  })));
439
399
  };
440
- var WarningIcon = _ref9 => {
400
+ var WarningIcon = _ref7 => {
441
401
  var {
442
402
  size = 24,
443
403
  color = 'currentColor',
444
404
  filled = false,
445
405
  strokeWidth = 1
446
- } = _ref9,
447
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
406
+ } = _ref7,
407
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded6);
448
408
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
449
409
  size: size,
450
410
  color: color
451
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
411
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
452
412
  viewBox: "0 0 24 24",
453
- "aria-hidden": "false",
454
- focusable: "false"
455
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
413
+ fill: filled ? color : 'none',
414
+ stroke: filled ? 'none' : color,
415
+ strokeWidth: strokeWidth,
416
+ strokeLinecap: "round",
417
+ strokeLinejoin: "round"
418
+ }, /*#__PURE__*/React__default.createElement("path", {
456
419
  d: "M10.29 3.86l-6.6 11.4c-.78 1.36.2 3.1 1.71 3.1h13.2c1.51 0 2.49-1.74 1.71-3.1l-6.6-11.4a2 2 0 0 0-3.42 0z"
457
420
  }), /*#__PURE__*/React__default.createElement("line", {
458
- stroke: color,
459
421
  x1: "12",
460
422
  y1: "6",
461
423
  x2: "12",
462
424
  y2: "13"
463
425
  }), /*#__PURE__*/React__default.createElement("line", {
464
- stroke: color,
465
426
  x1: "12",
466
427
  y1: "15",
467
428
  x2: "12",
468
429
  y2: "15"
469
430
  })));
470
431
  };
471
- var BatteryIcon = _ref10 => {
432
+ var BatteryIcon = _ref8 => {
472
433
  var {
473
434
  size = 24,
474
435
  color = 'currentColor',
475
436
  filled = true,
476
437
  strokeWidth = 1
477
- } = _ref10,
478
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
438
+ } = _ref8,
439
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded7);
479
440
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
480
441
  size: size,
481
442
  color: color
482
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
443
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
483
444
  viewBox: "0 0 24 24",
484
- "aria-hidden": "false",
485
- focusable: "false"
486
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
445
+ fill: filled ? color : 'none',
446
+ stroke: filled ? 'none' : color,
447
+ strokeWidth: strokeWidth,
448
+ strokeLinecap: "round",
449
+ strokeLinejoin: "round"
450
+ }, /*#__PURE__*/React__default.createElement("path", {
487
451
  d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"
488
452
  })));
489
453
  };
490
- var BookmarkIcon = _ref11 => {
454
+ var BookmarkIcon = _ref9 => {
491
455
  var {
492
456
  size = 24,
493
457
  color = 'currentColor',
494
458
  filled = false,
495
459
  strokeWidth = 1
496
- } = _ref11,
497
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
460
+ } = _ref9,
461
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded8);
498
462
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
499
463
  size: size,
500
464
  color: color
501
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
465
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
502
466
  viewBox: "0 0 24 24",
503
- "aria-hidden": "false",
504
- focusable: "false"
505
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
467
+ fill: filled ? color : 'none',
468
+ stroke: filled ? 'none' : color,
469
+ strokeWidth: strokeWidth,
470
+ strokeLinecap: "round",
471
+ strokeLinejoin: "round"
472
+ }, /*#__PURE__*/React__default.createElement("path", {
506
473
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
507
474
  })));
508
475
  };
509
- var CloudIcon = _ref12 => {
476
+ var CloudIcon = _ref10 => {
510
477
  var {
511
478
  size = 24,
512
479
  color = 'currentColor',
513
480
  filled = false,
514
481
  strokeWidth = 1
515
- } = _ref12,
516
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
482
+ } = _ref10,
483
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded9);
517
484
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
518
485
  size: size,
519
486
  color: color
520
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
487
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
521
488
  viewBox: "0 0 24 24",
522
- "aria-hidden": "false",
523
- focusable: "false"
524
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
489
+ fill: filled ? color : 'none',
490
+ stroke: filled ? 'none' : color,
491
+ strokeWidth: strokeWidth,
492
+ strokeLinecap: "round",
493
+ strokeLinejoin: "round"
494
+ }, /*#__PURE__*/React__default.createElement("path", {
525
495
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
526
496
  })));
527
497
  };
528
- var CopyIcon = _ref13 => {
498
+ var CopyIcon = _ref11 => {
529
499
  var {
530
500
  size = 24,
531
501
  color = 'currentColor',
532
502
  filled = false,
533
503
  strokeWidth = 1
534
- } = _ref13,
535
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
504
+ } = _ref11,
505
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded10);
536
506
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
537
507
  size: size,
538
508
  color: color
539
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
509
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
540
510
  viewBox: "0 0 24 24",
541
- "aria-hidden": "false",
542
- focusable: "false"
543
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
511
+ fill: filled ? color : 'none',
512
+ stroke: filled ? 'none' : color,
513
+ strokeWidth: strokeWidth,
514
+ strokeLinecap: "round",
515
+ strokeLinejoin: "round"
516
+ }, /*#__PURE__*/React__default.createElement("rect", {
544
517
  x: "9",
545
518
  y: "9",
546
519
  width: "13",
@@ -551,146 +524,158 @@
551
524
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
552
525
  })));
553
526
  };
554
- var DustBinIcon = _ref14 => {
527
+ var DustBinIcon = _ref12 => {
555
528
  var {
556
529
  size = 24,
557
530
  color = 'currentColor',
558
531
  filled = false,
559
532
  strokeWidth = 1
560
- } = _ref14,
561
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
533
+ } = _ref12,
534
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded11);
562
535
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
563
536
  size: size,
564
537
  color: color
565
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
538
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
566
539
  viewBox: "0 0 24 24",
567
- "aria-hidden": "false",
568
- focusable: "false"
569
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
540
+ fill: filled ? color : 'none',
541
+ stroke: filled ? 'none' : color,
542
+ strokeWidth: strokeWidth,
543
+ strokeLinecap: "round",
544
+ strokeLinejoin: "round"
545
+ }, /*#__PURE__*/React__default.createElement("path", {
570
546
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
571
547
  })));
572
548
  };
573
- var EditIcon = _ref15 => {
549
+ var EditIcon = _ref13 => {
574
550
  var {
575
551
  size = 24,
576
552
  color = 'currentColor',
577
553
  filled = false,
578
554
  strokeWidth = 1
579
- } = _ref15,
580
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
555
+ } = _ref13,
556
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded12);
581
557
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
582
558
  size: size,
583
559
  color: color
584
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
560
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
585
561
  viewBox: "0 0 24 24",
586
- "aria-hidden": "false",
587
- focusable: "false"
588
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
562
+ fill: filled ? color : 'none',
563
+ stroke: filled ? 'none' : color,
564
+ strokeWidth: strokeWidth,
565
+ strokeLinecap: "round",
566
+ strokeLinejoin: "round"
567
+ }, /*#__PURE__*/React__default.createElement("path", {
589
568
  d: "M18.3785 8.44975L8.9636 17.8648C8.6844 18.144 8.3288 18.3343 7.94161 18.4117L4.99988 19.0001L5.58823 16.0583C5.66566 15.6711 5.85597 15.3155 6.13517 15.0363L15.5501 5.62132M18.3785 8.44975L19.7927 7.03553C20.1832 6.64501 20.1832 6.01184 19.7927 5.62132L18.3785 4.20711C17.988 3.81658 17.3548 3.81658 16.9643 4.20711L15.5501 5.62132M18.3785 8.44975L15.5501 5.62132"
590
569
  })));
591
570
  };
592
- var ErrorIcon = _ref16 => {
571
+ var ErrorIcon = _ref14 => {
593
572
  var {
594
573
  size = 24,
595
574
  color = 'currentColor',
596
- strokeWidth = 1,
597
- filled = true
598
- } = _ref16,
599
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
575
+ filled = true,
576
+ strokeWidth = 1
577
+ } = _ref14,
578
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded13);
600
579
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
601
580
  size: size,
602
581
  color: color
603
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
582
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
604
583
  viewBox: "0 0 24 24",
605
- "aria-hidden": "false",
606
- focusable: "false"
607
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
584
+ fill: filled ? 'currentColor' : 'none',
585
+ stroke: filled ? 'white' : 'currentColor',
586
+ strokeWidth: strokeWidth,
587
+ strokeLinecap: "round",
588
+ strokeLinejoin: "round"
589
+ }, /*#__PURE__*/React__default.createElement("circle", {
608
590
  cx: "12",
609
591
  cy: "12",
610
592
  r: "10"
611
593
  }), /*#__PURE__*/React__default.createElement("line", {
594
+ fill: filled ? 'currentColor' : 'none',
612
595
  x1: "15",
613
596
  y1: "9",
614
597
  x2: "9",
615
- y2: "15",
616
- stroke: filled ? 'white' : color
598
+ y2: "15"
617
599
  }), /*#__PURE__*/React__default.createElement("line", {
600
+ fill: filled ? 'currentColor' : 'none',
618
601
  x1: "9",
619
602
  y1: "9",
620
603
  x2: "15",
621
- y2: "15",
622
- stroke: filled ? 'white' : color
604
+ y2: "15"
623
605
  })));
624
606
  };
625
- var DownloadIcon = _ref17 => {
607
+ var DownloadIcon = _ref15 => {
626
608
  var {
627
609
  size = 24,
628
610
  color = 'currentColor',
629
611
  filled = true,
630
612
  strokeWidth = 1
631
- } = _ref17,
632
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
613
+ } = _ref15,
614
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded14);
633
615
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
634
616
  size: size,
635
617
  color: color
636
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
618
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
637
619
  viewBox: "0 0 24 24",
638
- "aria-hidden": "false",
639
- focusable: "false"
640
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
620
+ fill: filled ? color : 'none',
621
+ stroke: filled ? 'none' : color,
622
+ strokeWidth: strokeWidth,
623
+ strokeLinecap: "round",
624
+ strokeLinejoin: "round"
625
+ }, /*#__PURE__*/React__default.createElement("path", {
641
626
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
642
627
  })));
643
628
  };
644
- var MenuIcon = _ref18 => {
629
+ var MenuIcon = _ref16 => {
645
630
  var {
646
631
  size = 24,
647
- color = 'currentColor',
648
- strokeWidth = 1
649
- } = _ref18,
650
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
632
+ color = 'currentColor'
633
+ } = _ref16,
634
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded15);
651
635
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
652
636
  size: size,
653
637
  color: color
654
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
638
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
655
639
  viewBox: "0 0 24 24",
656
- "aria-hidden": "false",
657
- focusable: "false"
658
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
659
- stroke: color,
640
+ fill: "none",
641
+ stroke: "currentColor",
642
+ strokeWidth: "1",
643
+ strokeLinecap: "round",
644
+ strokeLinejoin: "round"
645
+ }, /*#__PURE__*/React__default.createElement("line", {
660
646
  x1: "3",
661
647
  y1: "12",
662
648
  x2: "21",
663
649
  y2: "12"
664
650
  }), /*#__PURE__*/React__default.createElement("line", {
665
- stroke: color,
666
651
  x1: "3",
667
652
  y1: "6",
668
653
  x2: "21",
669
654
  y2: "6"
670
655
  }), /*#__PURE__*/React__default.createElement("line", {
671
- stroke: color,
672
656
  x1: "3",
673
657
  y1: "18",
674
658
  x2: "21",
675
659
  y2: "18"
676
660
  })));
677
661
  };
678
- var ShareIcon = _ref19 => {
662
+ var ShareIcon = _ref17 => {
679
663
  var {
680
664
  size = 24,
681
- color = 'currentColor',
682
- filled = false,
683
- strokeWidth = 1
684
- } = _ref19,
685
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
665
+ color = 'currentColor'
666
+ } = _ref17,
667
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded16);
686
668
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
687
669
  size: size,
688
670
  color: color
689
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
671
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
690
672
  viewBox: "0 0 24 24",
691
- "aria-hidden": "false",
692
- focusable: "false"
693
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
673
+ fill: "none",
674
+ stroke: "currentColor",
675
+ strokeWidth: "1",
676
+ strokeLinecap: "round",
677
+ strokeLinejoin: "round"
678
+ }, /*#__PURE__*/React__default.createElement("circle", {
694
679
  cx: "18",
695
680
  cy: "5",
696
681
  r: "3"
@@ -703,47 +688,45 @@
703
688
  cy: "19",
704
689
  r: "3"
705
690
  }), /*#__PURE__*/React__default.createElement("line", {
706
- stroke: color,
707
691
  x1: "8.59",
708
692
  y1: "13.51",
709
693
  x2: "15.42",
710
694
  y2: "17.49"
711
695
  }), /*#__PURE__*/React__default.createElement("line", {
712
- stroke: color,
713
696
  x1: "15.41",
714
697
  y1: "6.51",
715
698
  x2: "8.59",
716
699
  y2: "10.49"
717
700
  })));
718
701
  };
719
- var RefreshIcon = _ref20 => {
702
+ var RefreshIcon = _ref18 => {
720
703
  var {
721
704
  size = 24,
722
- color = 'currentColor',
723
- strokeWidth = 1
724
- } = _ref20,
725
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
705
+ color = 'currentColor'
706
+ } = _ref18,
707
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded17);
726
708
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
727
709
  size: size,
728
710
  color: color
729
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
711
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
730
712
  viewBox: "0 0 24 24",
731
- "aria-hidden": "false",
732
- focusable: "false"
733
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("polyline", {
713
+ fill: "none",
714
+ stroke: "currentColor",
715
+ strokeWidth: "1",
716
+ strokeLinecap: "round",
717
+ strokeLinejoin: "round"
718
+ }, /*#__PURE__*/React__default.createElement("polyline", {
734
719
  points: "23 4 23 10 17 10"
735
720
  }), /*#__PURE__*/React__default.createElement("path", {
736
721
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
737
722
  })));
738
723
  };
739
- var PrintIcon = _ref21 => {
724
+ var PrintIcon = _ref19 => {
740
725
  var {
741
726
  size = 24,
742
- color = 'currentColor',
743
- filled = true,
744
- strokeWidth = 1
745
- } = _ref21,
746
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
727
+ color = 'currentColor'
728
+ } = _ref19,
729
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded18);
747
730
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
748
731
  size: size,
749
732
  color: color
@@ -756,149 +739,155 @@
756
739
  d: "M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"
757
740
  })));
758
741
  };
759
- var PanelIcon = _ref22 => {
742
+ var PanelIcon = _ref20 => {
760
743
  var {
761
744
  size = 24,
762
- color = 'currentColor',
763
- strokeWidth = 1
764
- } = _ref22,
765
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
745
+ color = 'currentColor'
746
+ } = _ref20,
747
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded19);
766
748
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
767
749
  size: size,
768
750
  color: color
769
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
751
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
752
+ xmlns: "http://www.w3.org/2000/svg",
770
753
  viewBox: "0 0 24 24",
771
- "aria-hidden": "false",
772
- focusable: "false"
773
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
774
- stroke: color,
754
+ fill: "none",
755
+ stroke: "currentColor",
756
+ strokeWidth: "1",
757
+ strokeLinecap: "round",
758
+ strokeLinejoin: "round"
759
+ }, /*#__PURE__*/React__default.createElement("line", {
775
760
  x1: "4",
776
761
  y1: "21",
777
762
  x2: "4",
778
763
  y2: "14"
779
764
  }), /*#__PURE__*/React__default.createElement("line", {
780
- stroke: color,
781
765
  x1: "4",
782
766
  y1: "10",
783
767
  x2: "4",
784
768
  y2: "3"
785
769
  }), /*#__PURE__*/React__default.createElement("line", {
786
- stroke: color,
787
770
  x1: "12",
788
771
  y1: "21",
789
772
  x2: "12",
790
773
  y2: "12"
791
774
  }), /*#__PURE__*/React__default.createElement("line", {
792
- stroke: color,
793
775
  x1: "12",
794
776
  y1: "8",
795
777
  x2: "12",
796
778
  y2: "3"
797
779
  }), /*#__PURE__*/React__default.createElement("line", {
798
- stroke: color,
799
780
  x1: "20",
800
781
  y1: "21",
801
782
  x2: "20",
802
783
  y2: "16"
803
784
  }), /*#__PURE__*/React__default.createElement("line", {
804
- stroke: color,
805
785
  x1: "20",
806
786
  y1: "12",
807
787
  x2: "20",
808
788
  y2: "3"
809
789
  }), /*#__PURE__*/React__default.createElement("line", {
810
- stroke: color,
811
790
  x1: "1",
812
791
  y1: "14",
813
792
  x2: "7",
814
793
  y2: "14"
815
794
  }), /*#__PURE__*/React__default.createElement("line", {
816
- stroke: color,
817
795
  x1: "9",
818
796
  y1: "8",
819
797
  x2: "15",
820
798
  y2: "8"
821
799
  }), /*#__PURE__*/React__default.createElement("line", {
822
- stroke: color,
823
800
  x1: "17",
824
801
  y1: "16",
825
802
  x2: "23",
826
803
  y2: "16"
827
804
  })));
828
805
  };
829
- var FilterIcon = _ref23 => {
806
+ var FilterIcon = _ref21 => {
830
807
  var {
831
808
  size = 24,
832
809
  color = 'currentColor',
833
810
  filled = false,
834
811
  strokeWidth = 1
835
- } = _ref23,
836
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
812
+ } = _ref21,
813
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded20);
837
814
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
838
815
  size: size,
839
816
  color: color
840
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
817
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
841
818
  viewBox: "0 0 24 24",
842
- "aria-hidden": "false",
843
- focusable: "false"
844
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
819
+ fill: filled ? color : 'none',
820
+ stroke: filled ? 'none' : color,
821
+ strokeWidth: strokeWidth,
822
+ strokeLinecap: "round",
823
+ strokeLinejoin: "round"
824
+ }, /*#__PURE__*/React__default.createElement("path", {
845
825
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
846
826
  })));
847
827
  };
848
- var HomeIcon = _ref24 => {
828
+ var HomeIcon = _ref22 => {
849
829
  var {
850
830
  size = 24,
851
831
  color = 'currentColor',
852
832
  filled = true,
853
833
  strokeWidth = 1
854
- } = _ref24,
855
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
834
+ } = _ref22,
835
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded21);
856
836
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
857
837
  size: size,
858
838
  color: color
859
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
839
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
860
840
  viewBox: "0 0 24 24",
861
- "aria-hidden": "false",
862
- focusable: "false"
863
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
841
+ fill: filled ? color : 'none',
842
+ stroke: filled ? 'none' : color,
843
+ strokeWidth: strokeWidth,
844
+ strokeLinecap: "round",
845
+ strokeLinejoin: "round"
846
+ }, /*#__PURE__*/React__default.createElement("path", {
864
847
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
865
848
  })));
866
849
  };
867
- var LocationIcon = _ref25 => {
850
+ var LocationIcon = _ref23 => {
868
851
  var {
869
852
  size = 24,
870
853
  color = 'currentColor',
871
854
  filled = true,
872
855
  strokeWidth = 1
873
- } = _ref25,
874
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
856
+ } = _ref23,
857
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded22);
875
858
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
876
859
  size: size,
877
860
  color: color
878
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
861
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
879
862
  viewBox: "0 0 24 24",
880
- "aria-hidden": "false",
881
- focusable: "false"
882
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
863
+ fill: filled ? color : 'none',
864
+ stroke: filled ? 'none' : color,
865
+ strokeWidth: strokeWidth,
866
+ strokeLinecap: "round",
867
+ strokeLinejoin: "round"
868
+ }, /*#__PURE__*/React__default.createElement("path", {
883
869
  d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"
884
870
  })));
885
871
  };
886
- var LockIcon = _ref26 => {
872
+ var LockIcon = _ref24 => {
887
873
  var {
888
874
  size = 24,
889
875
  color = 'currentColor',
890
876
  filled = false,
891
877
  strokeWidth = 1
892
- } = _ref26,
893
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
878
+ } = _ref24,
879
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded23);
894
880
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
895
881
  size: size,
896
882
  color: color
897
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
883
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
898
884
  viewBox: "0 0 24 24",
899
- "aria-hidden": "false",
900
- focusable: "false"
901
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
885
+ fill: filled ? color : 'none',
886
+ stroke: filled ? 'none' : color,
887
+ strokeWidth: strokeWidth,
888
+ strokeLinecap: "round",
889
+ strokeLinejoin: "round"
890
+ }, /*#__PURE__*/React__default.createElement("rect", {
902
891
  x: "3",
903
892
  y: "11",
904
893
  width: "18",
@@ -909,190 +898,214 @@
909
898
  d: "M7 11V7a5 5 0 0 1 10 0v4"
910
899
  })));
911
900
  };
912
- var MicrophoneIcon = _ref27 => {
901
+ var MicrophoneIcon = _ref25 => {
913
902
  var {
914
903
  size = 24,
915
904
  color = 'currentColor',
916
905
  filled = false,
917
906
  strokeWidth = 1
918
- } = _ref27,
919
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
907
+ } = _ref25,
908
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded24);
920
909
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
921
910
  size: size,
922
911
  color: color
923
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
912
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
924
913
  viewBox: "0 0 24 24",
925
- "aria-hidden": "false",
926
- focusable: "false"
927
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
914
+ fill: filled ? color : 'none',
915
+ stroke: filled ? 'none' : color,
916
+ strokeWidth: strokeWidth,
917
+ strokeLinecap: "round",
918
+ strokeLinejoin: "round"
919
+ }, /*#__PURE__*/React__default.createElement("path", {
928
920
  d: "M12 1a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V5a4 4 0 0 0-4-4z"
929
921
  }), /*#__PURE__*/React__default.createElement("path", {
930
922
  d: "M19 10v2a7 7 0 0 1-14 0v-2"
931
923
  }), /*#__PURE__*/React__default.createElement("line", {
932
- stroke: color,
933
924
  x1: "12",
934
925
  y1: "19",
935
926
  x2: "12",
936
927
  y2: "23"
937
928
  }), /*#__PURE__*/React__default.createElement("line", {
938
- stroke: color,
939
929
  x1: "8",
940
930
  y1: "23",
941
931
  x2: "16",
942
932
  y2: "23"
943
933
  })));
944
934
  };
945
- var MoonIcon = _ref28 => {
935
+ var MoonIcon = _ref26 => {
946
936
  var {
947
937
  size = 24,
948
938
  color = 'currentColor',
949
- filled = true,
939
+ filled = false,
950
940
  strokeWidth = 1
951
- } = _ref28,
952
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
941
+ } = _ref26,
942
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded25);
953
943
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
954
944
  size: size,
955
945
  color: color
956
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
946
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
957
947
  viewBox: "0 0 24 24",
958
- "aria-hidden": "false",
959
- focusable: "false"
960
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
948
+ fill: filled ? color : 'none',
949
+ stroke: filled ? 'none' : color,
950
+ strokeWidth: strokeWidth,
951
+ strokeLinecap: "round",
952
+ strokeLinejoin: "round"
953
+ }, /*#__PURE__*/React__default.createElement("path", {
961
954
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
962
955
  })));
963
956
  };
964
- var NotificationIcon = _ref29 => {
957
+ var NotificationIcon = _ref27 => {
965
958
  var {
966
959
  size = 24,
967
960
  color = 'currentColor',
968
961
  filled = false,
969
962
  strokeWidth = 1
970
- } = _ref29,
971
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
963
+ } = _ref27,
964
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded26);
972
965
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
973
966
  size: size,
974
967
  color: color
975
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
968
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
976
969
  viewBox: "0 0 24 24",
977
- "aria-hidden": "false",
978
- focusable: "false"
979
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
970
+ fill: filled ? color : 'none',
971
+ stroke: filled ? 'none' : color,
972
+ strokeWidth: strokeWidth,
973
+ strokeLinecap: "round",
974
+ strokeLinejoin: "round"
975
+ }, /*#__PURE__*/React__default.createElement("path", {
980
976
  d: "M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9"
981
977
  }), /*#__PURE__*/React__default.createElement("path", {
982
978
  d: "M13.73 21a2 2 0 0 1-3.46 0"
983
979
  })));
984
980
  };
985
- var OpenEyeIcon = _ref30 => {
981
+ var OpenEyeIcon = _ref28 => {
986
982
  var {
987
983
  size = 24,
988
984
  color = 'currentColor',
989
985
  filled = true,
990
986
  strokeWidth = 1
991
- } = _ref30,
992
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
987
+ } = _ref28,
988
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded27);
993
989
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
994
990
  size: size,
995
991
  color: color
996
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
992
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
997
993
  viewBox: "0 0 24 24",
998
- "aria-hidden": "false",
999
- focusable: "false"
1000
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
994
+ fill: filled ? color : 'none',
995
+ stroke: filled ? 'none' : color,
996
+ strokeWidth: strokeWidth,
997
+ strokeLinecap: "round",
998
+ strokeLinejoin: "round"
999
+ }, /*#__PURE__*/React__default.createElement("path", {
1001
1000
  d: "M12 4C7 4 2.73 7.11 1 12c1.73 4.89 6 8 11 8s9.27-3.11 11-8c-1.73-4.89-6-8-11-8zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"
1002
1001
  })));
1003
1002
  };
1004
- var ProfileIcon = _ref31 => {
1003
+ var ProfileIcon = _ref29 => {
1005
1004
  var {
1006
1005
  size = 24,
1007
1006
  color = 'currentColor',
1008
1007
  filled = true,
1009
1008
  strokeWidth = 1
1010
- } = _ref31,
1011
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1009
+ } = _ref29,
1010
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded28);
1012
1011
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1013
1012
  size: size,
1014
1013
  color: color
1015
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1014
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1016
1015
  viewBox: "0 0 24 24",
1017
- "aria-hidden": "false",
1018
- focusable: "false"
1019
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1016
+ fill: filled ? color : 'none',
1017
+ stroke: filled ? 'none' : color,
1018
+ strokeWidth: strokeWidth,
1019
+ strokeLinecap: "round",
1020
+ strokeLinejoin: "round"
1021
+ }, /*#__PURE__*/React__default.createElement("path", {
1020
1022
  fill: filled ? color : 'none',
1021
1023
  d: "M12 13c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm0-9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z M12 2C9.79 2 8 3.79 8 6s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"
1022
1024
  }), ' '));
1023
1025
  };
1024
- var SettingsIcon = _ref32 => {
1026
+ var SettingsIcon = _ref30 => {
1025
1027
  var {
1026
1028
  size = 24,
1027
1029
  color = 'currentColor',
1028
1030
  filled = false,
1029
1031
  strokeWidth = 1
1030
- } = _ref32,
1031
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1032
+ } = _ref30,
1033
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded29);
1032
1034
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1033
1035
  size: size,
1034
1036
  color: color
1035
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1037
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1036
1038
  viewBox: "0 0 24 24",
1037
- "aria-hidden": "false",
1038
- focusable: "false"
1039
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1039
+ fill: filled ? color : 'none',
1040
+ stroke: filled ? 'none' : color,
1041
+ strokeWidth: strokeWidth,
1042
+ strokeLinecap: "round",
1043
+ strokeLinejoin: "round"
1044
+ }, /*#__PURE__*/React__default.createElement("path", {
1040
1045
  d: "M19.4 13c0-.3.1-.6.1-1s0-.7-.1-1l2.1-1.6c.2-.2.2-.4.1-.6l-2-3.5c-.1-.2-.4-.3-.6-.2l-2.5 1c-.5-.4-1.1-.7-1.7-.9l-.4-2.6c0-.2-.3-.4-.5-.4h-4c-.2 0-.5.2-.5.4l-.4 2.6c-.6.2-1.2.5-1.7.9l-2.5-1c-.2-.1-.5 0-.6.2l-2 3.5c-.1.2-.1.4.1.6L4.6 11c0 .3-.1.6-.1 1s0 .7.1 1l-2.1 1.6c-.2.2-.2.4-.1.6l2 3.5c.1.2.4.3.6.2l2.5-1c.5.4 1.1.7 1.7.9l.4 2.6c0 .2.3.4.5.4h4c.2 0 .5-.2.5-.4l.4-2.6c.6-.2 1.2-.5 1.7-.9l2.5 1c.2.1.5 0 .6-.2l2-3.5c.1-.2.1-.4-.1-.6L19.4 13zM12 15.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"
1041
1046
  })));
1042
1047
  };
1043
- var SuccessIcon = _ref33 => {
1048
+ var SuccessIcon = _ref31 => {
1044
1049
  var {
1045
1050
  size = 24,
1046
1051
  color = 'currentColor',
1047
1052
  filled = true,
1048
1053
  strokeWidth = 1
1049
- } = _ref33,
1050
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1054
+ } = _ref31,
1055
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded30);
1051
1056
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1052
1057
  size: size,
1053
1058
  color: color
1054
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1059
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1055
1060
  viewBox: "0 0 24 24",
1056
- "aria-hidden": "false",
1057
- focusable: "false"
1058
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1061
+ fill: filled ? color : 'none',
1062
+ stroke: filled ? 'none' : color,
1063
+ strokeWidth: strokeWidth,
1064
+ strokeLinecap: "round",
1065
+ strokeLinejoin: "round"
1066
+ }, /*#__PURE__*/React__default.createElement("path", {
1059
1067
  d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"
1060
1068
  })));
1061
1069
  };
1062
- var UnLikeIcon = _ref34 => {
1070
+ var UnLikeIcon = _ref32 => {
1063
1071
  var {
1064
1072
  size = 24,
1065
1073
  color = 'currentColor',
1066
1074
  filled = true,
1067
1075
  strokeWidth = 1
1068
- } = _ref34,
1069
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1076
+ } = _ref32,
1077
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded31);
1070
1078
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1071
1079
  size: size,
1072
1080
  color: color
1073
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1081
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1074
1082
  viewBox: "0 0 24 24",
1075
- "aria-hidden": "false",
1076
- focusable: "false"
1077
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1083
+ fill: filled ? color : 'none',
1084
+ stroke: filled ? 'none' : color,
1085
+ strokeWidth: strokeWidth,
1086
+ strokeLinecap: "round",
1087
+ strokeLinejoin: "round"
1088
+ }, /*#__PURE__*/React__default.createElement("path", {
1078
1089
  d: "M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z"
1079
1090
  })));
1080
1091
  };
1081
- var ClockIcon = _ref35 => {
1092
+ var ClockIcon = _ref33 => {
1082
1093
  var {
1083
1094
  size = 24,
1084
- color = 'currentColor',
1085
- strokeWidth = 1
1086
- } = _ref35,
1087
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1095
+ color = 'currentColor'
1096
+ } = _ref33,
1097
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded32);
1088
1098
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1089
1099
  size: size,
1090
1100
  color: color
1091
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1101
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1092
1102
  viewBox: "0 0 24 24",
1093
- "aria-hidden": "false",
1094
- focusable: "false"
1095
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1103
+ fill: "none",
1104
+ stroke: "currentColor",
1105
+ strokeWidth: "1",
1106
+ strokeLinecap: "round",
1107
+ strokeLinejoin: "round"
1108
+ }, /*#__PURE__*/React__default.createElement("circle", {
1096
1109
  cx: "12",
1097
1110
  cy: "12",
1098
1111
  r: "10"
@@ -1100,21 +1113,23 @@
1100
1113
  points: "12 6 12 12 16 14"
1101
1114
  })));
1102
1115
  };
1103
- var CameraIcon = _ref36 => {
1116
+ var CameraIcon = _ref34 => {
1104
1117
  var {
1105
1118
  size = 24,
1106
- color = 'currentColor',
1107
- strokeWidth = 1
1108
- } = _ref36,
1109
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1119
+ color = 'currentColor'
1120
+ } = _ref34,
1121
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded33);
1110
1122
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1111
1123
  size: size,
1112
1124
  color: color
1113
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1125
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1114
1126
  viewBox: "0 0 24 24",
1115
- "aria-hidden": "false",
1116
- focusable: "false"
1117
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1127
+ fill: "none",
1128
+ stroke: "currentColor",
1129
+ strokeWidth: "1",
1130
+ strokeLinecap: "round",
1131
+ strokeLinejoin: "round"
1132
+ }, /*#__PURE__*/React__default.createElement("path", {
1118
1133
  d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3l2-3h8l2 3h3a2 2 0 0 1 2 2z"
1119
1134
  }), /*#__PURE__*/React__default.createElement("circle", {
1120
1135
  cx: "12",
@@ -1122,60 +1137,63 @@
1122
1137
  r: "4"
1123
1138
  })));
1124
1139
  };
1125
- var BluetoothIcon = _ref37 => {
1140
+ var BluetoothIcon = _ref35 => {
1126
1141
  var {
1127
1142
  size = 24,
1128
- color = 'currentColor',
1129
- filled = true,
1130
- strokeWidth = 1
1131
- } = _ref37,
1132
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1143
+ color = 'currentColor'
1144
+ } = _ref35,
1145
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded34);
1133
1146
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1134
1147
  size: size,
1135
1148
  color: color
1136
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1149
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1137
1150
  viewBox: "0 0 24 24",
1138
- "aria-hidden": "false",
1139
- focusable: "false"
1140
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1151
+ fill: 'currentColor'
1152
+ }, /*#__PURE__*/React__default.createElement("path", {
1141
1153
  d: "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"
1142
1154
  })));
1143
1155
  };
1144
- var LikeIcon = _ref38 => {
1156
+ var LikeIcon = _ref36 => {
1145
1157
  var {
1146
1158
  size = 24,
1147
1159
  color = 'currentColor',
1148
1160
  filled = true,
1149
1161
  strokeWidth = 1
1150
- } = _ref38,
1151
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1162
+ } = _ref36,
1163
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded35);
1152
1164
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1153
1165
  size: size,
1154
1166
  color: color
1155
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1167
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1156
1168
  viewBox: "0 0 24 24",
1157
- "aria-hidden": "false",
1158
- focusable: "false"
1159
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1169
+ fill: filled ? color : 'none',
1170
+ stroke: filled ? 'none' : color,
1171
+ strokeWidth: strokeWidth,
1172
+ strokeLinecap: "round",
1173
+ strokeLinejoin: "round"
1174
+ }, /*#__PURE__*/React__default.createElement("path", {
1160
1175
  d: "M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z"
1161
1176
  })));
1162
1177
  };
1163
- var UnlockIcon = _ref39 => {
1178
+ var UnlockIcon = _ref37 => {
1164
1179
  var {
1165
1180
  size = 24,
1166
1181
  color = 'currentColor',
1167
1182
  filled = false,
1168
1183
  strokeWidth = 1
1169
- } = _ref39,
1170
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1184
+ } = _ref37,
1185
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded36);
1171
1186
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1172
1187
  size: size,
1173
1188
  color: color
1174
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1189
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1175
1190
  viewBox: "0 0 24 24",
1176
- "aria-hidden": "false",
1177
- focusable: "false"
1178
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
1191
+ fill: filled ? color : 'none',
1192
+ stroke: filled ? 'none' : color,
1193
+ strokeWidth: strokeWidth,
1194
+ strokeLinecap: "round",
1195
+ strokeLinejoin: "round"
1196
+ }, /*#__PURE__*/React__default.createElement("rect", {
1179
1197
  x: "3",
1180
1198
  y: "11",
1181
1199
  width: "18",
@@ -1186,41 +1204,47 @@
1186
1204
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1187
1205
  })));
1188
1206
  };
1189
- var WifiIcon = _ref40 => {
1207
+ var WifiIcon = _ref38 => {
1190
1208
  var {
1191
1209
  size = 24,
1192
1210
  color = 'currentColor',
1193
1211
  filled = false,
1194
1212
  strokeWidth = 1
1195
- } = _ref40,
1196
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1213
+ } = _ref38,
1214
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded37);
1197
1215
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1198
1216
  size: size,
1199
1217
  color: color
1200
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1218
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1201
1219
  viewBox: "0 0 24 24",
1202
- "aria-hidden": "false",
1203
- focusable: "false"
1204
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1220
+ fill: filled ? color : 'none',
1221
+ stroke: filled ? 'none' : color,
1222
+ strokeWidth: strokeWidth,
1223
+ strokeLinecap: "round",
1224
+ strokeLinejoin: "round"
1225
+ }, /*#__PURE__*/React__default.createElement("path", {
1205
1226
  d: "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"
1206
1227
  })));
1207
1228
  };
1208
- var UploadIcon = _ref41 => {
1229
+ var UploadIcon = _ref39 => {
1209
1230
  var {
1210
1231
  size = 24,
1211
1232
  color = 'currentColor',
1212
1233
  filled = false,
1213
1234
  strokeWidth = 1
1214
- } = _ref41,
1215
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1235
+ } = _ref39,
1236
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded38);
1216
1237
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1217
1238
  size: size,
1218
1239
  color: color
1219
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1240
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1220
1241
  viewBox: "0 0 24 24",
1221
- "aria-hidden": "false",
1222
- focusable: "false"
1223
- }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1242
+ fill: filled ? color : 'none',
1243
+ stroke: filled ? 'none' : color,
1244
+ strokeWidth: strokeWidth,
1245
+ strokeLinecap: "round",
1246
+ strokeLinejoin: "round"
1247
+ }, /*#__PURE__*/React__default.createElement("path", {
1224
1248
  d: "M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7h-1"
1225
1249
  }), /*#__PURE__*/React__default.createElement("path", {
1226
1250
  d: "M9 15l3 -3l3 3"
@@ -1228,99 +1252,123 @@
1228
1252
  d: "M12 12l0 9"
1229
1253
  })));
1230
1254
  };
1231
- var SearchIcon = _ref42 => {
1255
+ var SearchIcon = _ref40 => {
1232
1256
  var {
1233
1257
  size = 24,
1234
- color = 'currentColor',
1235
- filled = true,
1236
- strokeWidth = 1
1237
- } = _ref42,
1238
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1258
+ color = 'currentColor'
1259
+ } = _ref40,
1260
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded39);
1239
1261
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1240
1262
  size: size,
1241
1263
  color: color
1242
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1264
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1243
1265
  viewBox: "0 0 24 24",
1244
- "aria-hidden": "false",
1245
- focusable: "false"
1246
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1266
+ fill: 'currentColor'
1267
+ }, /*#__PURE__*/React__default.createElement("path", {
1247
1268
  d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
1248
1269
  })));
1249
1270
  };
1250
- var CloseEyeIcon = _ref43 => {
1271
+ var CloseEyeIcon = _ref41 => {
1251
1272
  var {
1252
1273
  size = 24,
1253
- color = 'currentColor',
1254
- filled = true,
1255
- strokeWidth = 1
1256
- } = _ref43,
1257
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1274
+ color = 'currentColor'
1275
+ } = _ref41,
1276
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded40);
1258
1277
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1259
1278
  size: size,
1260
1279
  color: color
1261
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1280
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1262
1281
  viewBox: "0 0 24 24",
1263
- "aria-hidden": "false",
1264
- focusable: "false"
1265
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1282
+ fill: color
1283
+ }, /*#__PURE__*/React__default.createElement("path", {
1266
1284
  d: "M19.7071 5.70711C20.0976 5.31658 20.0976 4.68342 19.7071 4.29289C19.3166 3.90237 18.6834 3.90237 18.2929 4.29289L14.032 8.55382C13.4365 8.20193 12.7418 8 12 8C9.79086 8 8 9.79086 8 12C8 12.7418 8.20193 13.4365 8.55382 14.032L4.29289 18.2929C3.90237 18.6834 3.90237 19.3166 4.29289 19.7071C4.68342 20.0976 5.31658 20.0976 5.70711 19.7071L9.96803 15.4462C10.5635 15.7981 11.2582 16 12 16C14.2091 16 16 14.2091 16 12C16 11.2582 15.7981 10.5635 15.4462 9.96803L19.7071 5.70711ZM12.518 10.0677C12.3528 10.0236 12.1792 10 12 10C10.8954 10 10 10.8954 10 12C10 12.1792 10.0236 12.3528 10.0677 12.518L12.518 10.0677ZM11.482 13.9323L13.9323 11.482C13.9764 11.6472 14 11.8208 14 12C14 13.1046 13.1046 14 12 14C11.8208 14 11.6472 13.9764 11.482 13.9323ZM15.7651 4.8207C14.6287 4.32049 13.3675 4 12 4C9.14754 4 6.75717 5.39462 4.99812 6.90595C3.23268 8.42276 2.00757 10.1376 1.46387 10.9698C1.05306 11.5985 1.05306 12.4015 1.46387 13.0302C1.92276 13.7326 2.86706 15.0637 4.21194 16.3739L5.62626 14.9596C4.4555 13.8229 3.61144 12.6531 3.18002 12C3.6904 11.2274 4.77832 9.73158 6.30147 8.42294C7.87402 7.07185 9.81574 6 12 6C12.7719 6 13.5135 6.13385 14.2193 6.36658L15.7651 4.8207ZM12 18C11.2282 18 10.4866 17.8661 9.78083 17.6334L8.23496 19.1793C9.37136 19.6795 10.6326 20 12 20C14.8525 20 17.2429 18.6054 19.002 17.0941C20.7674 15.5772 21.9925 13.8624 22.5362 13.0302C22.947 12.4015 22.947 11.5985 22.5362 10.9698C22.0773 10.2674 21.133 8.93627 19.7881 7.62611L18.3738 9.04043C19.5446 10.1771 20.3887 11.3469 20.8201 12C20.3097 12.7726 19.2218 14.2684 17.6986 15.5771C16.1261 16.9282 14.1843 18 12 18Z",
1267
1285
  fill: "currentColor"
1268
1286
  })));
1269
1287
  };
1270
- var ExternalLinkIcon = _ref44 => {
1288
+ var ExternalLinkIcon = _ref42 => {
1271
1289
  var {
1272
1290
  size = 24,
1273
- color = 'currentColor',
1274
- filled = true,
1275
- strokeWidth = 1
1276
- } = _ref44,
1277
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1291
+ color = 'currentColor'
1292
+ } = _ref42,
1293
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded41);
1278
1294
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1279
1295
  size: size,
1280
1296
  color: color
1281
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1297
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1282
1298
  viewBox: "0 0 24 24",
1283
- "aria-hidden": "false",
1284
- focusable: "false"
1285
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1299
+ fill: 'currentColor'
1300
+ }, /*#__PURE__*/React__default.createElement("path", {
1286
1301
  d: "M14 3h7v7h-2V5.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3ZM5 5h5v2H6v11h11v-4h2v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Z"
1287
1302
  })));
1288
1303
  };
1304
+ var MinusIcon = _ref43 => {
1305
+ var {
1306
+ size = 24,
1307
+ color = 'currentColor'
1308
+ } = _ref43,
1309
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded42);
1310
+ return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1311
+ padding: 2,
1312
+ size: size,
1313
+ color: color
1314
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1315
+ viewBox: "0 0 24 24",
1316
+ fill: "none",
1317
+ stroke: 'currentColor',
1318
+ strokeWidth: "1"
1319
+ }, /*#__PURE__*/React__default.createElement("path", {
1320
+ d: "M7 12h10",
1321
+ strokeLinecap: "round",
1322
+ strokeLinejoin: "round"
1323
+ })));
1324
+ };
1325
+ var InfoIcon = _ref44 => {
1326
+ var {
1327
+ size = 24,
1328
+ color = 'currentColor'
1329
+ } = _ref44,
1330
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded43);
1331
+ return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1332
+ size: size,
1333
+ color: color
1334
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1335
+ viewBox: "0 0 24 24",
1336
+ fill: 'currentColor'
1337
+ }, /*#__PURE__*/React__default.createElement("path", {
1338
+ d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"
1339
+ })));
1340
+ };
1289
1341
  var PlusIcon = _ref45 => {
1290
1342
  var {
1291
1343
  size = 24,
1292
- color = 'currentColor',
1293
- filled = true,
1294
- strokeWidth = 1
1344
+ color = 'currentColor'
1295
1345
  } = _ref45,
1296
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1346
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded44);
1297
1347
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1298
1348
  size: size,
1299
1349
  color: color
1300
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1350
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1301
1351
  viewBox: "0 0 24 24",
1302
- "aria-hidden": "false",
1303
- focusable: "false"
1304
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1352
+ fill: 'currentColor'
1353
+ }, /*#__PURE__*/React__default.createElement("path", {
1305
1354
  d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
1306
1355
  })));
1307
1356
  };
1308
1357
  var TickIcon = _ref46 => {
1309
1358
  var {
1310
1359
  size = 24,
1311
- color = 'currentColor',
1312
- filled = true,
1313
- strokeWidth = 1
1360
+ color = 'currentColor'
1314
1361
  } = _ref46,
1315
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1362
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded45);
1316
1363
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1317
1364
  size: size,
1318
1365
  color: color
1319
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1366
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1320
1367
  viewBox: "0 0 24 24",
1321
- "aria-hidden": "false",
1322
- focusable: "false"
1323
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1368
+ fill: "none",
1369
+ stroke: 'currentColor',
1370
+ strokeWidth: "1"
1371
+ }, /*#__PURE__*/React__default.createElement("path", {
1324
1372
  d: "M5 13l4 4L19 7",
1325
1373
  strokeLinecap: "round",
1326
1374
  strokeLinejoin: "round"
@@ -1329,39 +1377,38 @@
1329
1377
  var BoldArrowIcon = _ref47 => {
1330
1378
  var {
1331
1379
  size = 24,
1332
- color = 'currentColor',
1333
- filled = true,
1334
- strokeWidth = 1
1380
+ color = 'currentColor'
1335
1381
  } = _ref47,
1336
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1382
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded46);
1337
1383
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1338
1384
  size: size,
1339
1385
  color: color
1340
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1386
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1341
1387
  viewBox: "0 0 24 24",
1342
- "aria-hidden": "false",
1343
- focusable: "false"
1344
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1388
+ fill: 'currentColor'
1389
+ }, /*#__PURE__*/React__default.createElement("path", {
1345
1390
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1346
1391
  })));
1347
1392
  };
1348
1393
  var ArrowIcon = _ref48 => {
1349
1394
  var {
1350
1395
  size = 24,
1351
- color = 'currentColor',
1352
- filled = true,
1353
- strokeWidth = 1
1396
+ color = 'currentColor'
1354
1397
  } = _ref48,
1355
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1398
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded47);
1356
1399
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1357
1400
  size: size,
1358
1401
  color: color
1359
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1402
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1403
+ width: "24",
1404
+ height: "24",
1360
1405
  viewBox: "0 0 24 24",
1361
- "aria-hidden": "false",
1362
- focusable: "false"
1363
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1364
- stroke: color,
1406
+ strokeWidth: "1",
1407
+ stroke: 'currentColor',
1408
+ fill: "none",
1409
+ strokeLinecap: "round",
1410
+ strokeLinejoin: "round"
1411
+ }, /*#__PURE__*/React__default.createElement("line", {
1365
1412
  x1: "12",
1366
1413
  y1: "20",
1367
1414
  x2: "12",
@@ -1373,19 +1420,23 @@
1373
1420
  var SpinnerIcon = _ref49 => {
1374
1421
  var {
1375
1422
  size = 24,
1376
- color = 'currentColor',
1377
- filled = true,
1378
- strokeWidth = 1
1423
+ color = 'currentColor'
1379
1424
  } = _ref49,
1380
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1425
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded48);
1381
1426
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1382
1427
  size: size,
1383
1428
  color: color
1384
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1429
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1430
+ xmlns: "http://www.w3.org/2000/svg",
1431
+ width: "24",
1432
+ height: "24",
1385
1433
  viewBox: "0 0 24 24",
1386
- "aria-hidden": "false",
1387
- focusable: "false"
1388
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1434
+ fill: "none",
1435
+ stroke: "currentColor",
1436
+ strokeWidth: "2",
1437
+ strokeLinecap: "round",
1438
+ strokeLinejoin: "round"
1439
+ }, /*#__PURE__*/React__default.createElement("circle", {
1389
1440
  cx: "12",
1390
1441
  cy: "12",
1391
1442
  r: "10",
@@ -1398,18 +1449,20 @@
1398
1449
  var CalendarIcon = _ref50 => {
1399
1450
  var {
1400
1451
  size = 24,
1401
- color = 'currentColor',
1402
- strokeWidth = 1
1452
+ color = 'currentColor'
1403
1453
  } = _ref50,
1404
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1454
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded49);
1405
1455
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1406
1456
  size: size,
1407
1457
  color: color
1408
- }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
1458
+ }, props), /*#__PURE__*/React__default.createElement("svg", {
1409
1459
  viewBox: "0 0 24 24",
1410
- "aria-hidden": "false",
1411
- focusable: "false"
1412
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
1460
+ fill: "none",
1461
+ stroke: "currentColor",
1462
+ strokeWidth: "1",
1463
+ strokeLinecap: "round",
1464
+ strokeLinejoin: "round"
1465
+ }, /*#__PURE__*/React__default.createElement("rect", {
1413
1466
  x: "3",
1414
1467
  y: "4",
1415
1468
  width: "18",
@@ -1417,19 +1470,16 @@
1417
1470
  rx: "2",
1418
1471
  ry: "2"
1419
1472
  }), /*#__PURE__*/React__default.createElement("line", {
1420
- stroke: color,
1421
1473
  x1: "16",
1422
1474
  y1: "2",
1423
1475
  x2: "16",
1424
1476
  y2: "6"
1425
1477
  }), /*#__PURE__*/React__default.createElement("line", {
1426
- stroke: color,
1427
1478
  x1: "8",
1428
1479
  y1: "2",
1429
1480
  x2: "8",
1430
1481
  y2: "6"
1431
1482
  }), /*#__PURE__*/React__default.createElement("line", {
1432
- stroke: color,
1433
1483
  x1: "3",
1434
1484
  y1: "10",
1435
1485
  x2: "21",
@@ -1441,8 +1491,6 @@
1441
1491
  __proto__: null,
1442
1492
  ChevronIcon: ChevronIcon,
1443
1493
  CloseIcon: CloseIcon,
1444
- MinusIcon: MinusIcon,
1445
- InfoIcon: InfoIcon,
1446
1494
  HeartIcon: HeartIcon,
1447
1495
  StarIcon: StarIcon,
1448
1496
  SaveIcon: SaveIcon,
@@ -1482,6 +1530,8 @@
1482
1530
  SearchIcon: SearchIcon,
1483
1531
  CloseEyeIcon: CloseEyeIcon,
1484
1532
  ExternalLinkIcon: ExternalLinkIcon,
1533
+ MinusIcon: MinusIcon,
1534
+ InfoIcon: InfoIcon,
1485
1535
  PlusIcon: PlusIcon,
1486
1536
  TickIcon: TickIcon,
1487
1537
  BoldArrowIcon: BoldArrowIcon,