@app-studio/web 0.8.56 → 0.8.58

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.
@@ -242,15 +242,15 @@ var _excluded$4 = ["size", "color", "transform", "orientation", "children"],
242
242
  _excluded17 = ["size", "color", "filled", "strokeWidth"],
243
243
  _excluded18 = ["size", "color", "filled", "strokeWidth"],
244
244
  _excluded19 = ["size", "color", "filled", "strokeWidth"],
245
- _excluded20 = ["size", "color", "strokeWidth", "filled"],
245
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
246
246
  _excluded21 = ["size", "color", "filled", "strokeWidth"],
247
- _excluded22 = ["size", "color", "strokeWidth"],
247
+ _excluded22 = ["size", "color", "strokeWidth", "filled"],
248
248
  _excluded23 = ["size", "color", "filled", "strokeWidth"],
249
- _excluded24 = ["size", "color", "strokeWidth"],
249
+ _excluded24 = ["size", "color", "strokeWidth", "filled"],
250
250
  _excluded25 = ["size", "color", "filled", "strokeWidth"],
251
- _excluded26 = ["size", "color", "strokeWidth"],
251
+ _excluded26 = ["size", "color", "strokeWidth", "filled"],
252
252
  _excluded27 = ["size", "color", "filled", "strokeWidth"],
253
- _excluded28 = ["size", "color", "filled", "strokeWidth"],
253
+ _excluded28 = ["size", "color", "strokeWidth", "filled"],
254
254
  _excluded29 = ["size", "color", "filled", "strokeWidth"],
255
255
  _excluded30 = ["size", "color", "filled", "strokeWidth"],
256
256
  _excluded31 = ["size", "color", "filled", "strokeWidth"],
@@ -261,10 +261,10 @@ var _excluded$4 = ["size", "color", "transform", "orientation", "children"],
261
261
  _excluded36 = ["size", "color", "filled", "strokeWidth"],
262
262
  _excluded37 = ["size", "color", "filled", "strokeWidth"],
263
263
  _excluded38 = ["size", "color", "filled", "strokeWidth"],
264
- _excluded39 = ["size", "color", "strokeWidth"],
265
- _excluded40 = ["size", "color", "strokeWidth"],
266
- _excluded41 = ["size", "color", "filled", "strokeWidth"],
267
- _excluded42 = ["size", "color", "filled", "strokeWidth"],
264
+ _excluded39 = ["size", "color", "filled", "strokeWidth"],
265
+ _excluded40 = ["size", "color", "filled", "strokeWidth"],
266
+ _excluded41 = ["size", "color", "strokeWidth", "filled"],
267
+ _excluded42 = ["size", "color", "strokeWidth", "filled"],
268
268
  _excluded43 = ["size", "color", "filled", "strokeWidth"],
269
269
  _excluded44 = ["size", "color", "filled", "strokeWidth"],
270
270
  _excluded45 = ["size", "color", "filled", "strokeWidth"],
@@ -276,14 +276,16 @@ var _excluded$4 = ["size", "color", "transform", "orientation", "children"],
276
276
  _excluded51 = ["size", "color", "filled", "strokeWidth"],
277
277
  _excluded52 = ["size", "color", "filled", "strokeWidth"],
278
278
  _excluded53 = ["size", "color", "filled", "strokeWidth"],
279
- _excluded54 = ["size", "color", "strokeWidth"];
279
+ _excluded54 = ["size", "color", "filled", "strokeWidth"],
280
+ _excluded55 = ["size", "color", "filled", "strokeWidth"],
281
+ _excluded56 = ["size", "color", "strokeWidth", "filled"];
280
282
  // Default wrapper component for consistent sizing and styling
281
283
  var IconWrapper = _ref => {
282
284
  var {
283
285
  size,
284
286
  color = 'black',
285
287
  transform,
286
- orientation,
288
+ orientation = 'up',
287
289
  children
288
290
  } = _ref,
289
291
  rest = _objectWithoutPropertiesLoose(_ref, _excluded$4);
@@ -325,12 +327,12 @@ var ChevronIcon = _ref2 => {
325
327
  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"
326
328
  })));
327
329
  };
328
- // Example of another Icon: CloseIcon
329
- var CloseIcon = _ref3 => {
330
+ // Example of a Twitch Icon
331
+ var TwitchIcon = _ref3 => {
330
332
  var {
331
333
  size = 24,
332
334
  color = 'currentColor',
333
- filled = false,
335
+ filled = true,
334
336
  strokeWidth = 1
335
337
  } = _ref3,
336
338
  props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
@@ -341,6 +343,34 @@ var CloseIcon = _ref3 => {
341
343
  viewBox: "0 0 24 24",
342
344
  "aria-hidden": "true",
343
345
  focusable: "false"
346
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
347
+ d: "M2 2v16h5v4l4-4h5l6-6V2H2zm18 10-3 3h-5l-3 3v-3H4V4h16v8z",
348
+ fill: filled ? color : 'none',
349
+ stroke: color,
350
+ strokeWidth: filled ? 0 : strokeWidth
351
+ }), /*#__PURE__*/React__default.createElement("path", {
352
+ d: "M14 7h2v5h-2V7zm-4 0h2v5H10V7z",
353
+ fill: filled ? color : 'none',
354
+ stroke: color,
355
+ strokeWidth: filled ? 0 : strokeWidth
356
+ })));
357
+ };
358
+ // Example of another Icon: CloseIcon
359
+ var CloseIcon = _ref4 => {
360
+ var {
361
+ size = 24,
362
+ color = 'currentColor',
363
+ filled = false,
364
+ strokeWidth = 1
365
+ } = _ref4,
366
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
367
+ return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
368
+ size: size,
369
+ color: color
370
+ }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
371
+ viewBox: "0 0 24 24",
372
+ "aria-hidden": "true",
373
+ focusable: "false"
344
374
  }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
345
375
  stroke: color,
346
376
  x1: "18",
@@ -355,14 +385,14 @@ var CloseIcon = _ref3 => {
355
385
  y2: "18"
356
386
  })));
357
387
  };
358
- var InstagramIcon = _ref4 => {
388
+ var InstagramIcon = _ref5 => {
359
389
  var {
360
390
  size = 24,
361
391
  color = 'currentColor',
362
392
  filled = false,
363
393
  strokeWidth = 1
364
- } = _ref4,
365
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
394
+ } = _ref5,
395
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
366
396
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
367
397
  size: size,
368
398
  color: color
@@ -386,33 +416,64 @@ var InstagramIcon = _ref4 => {
386
416
  y2: "6.5"
387
417
  })));
388
418
  };
389
- var YoutubeIcon = _ref5 => {
419
+ var YoutubeIcon = _ref6 => {
390
420
  var {
391
421
  size = 24,
392
422
  color = 'currentColor',
393
- filled = false,
423
+ filled = true,
394
424
  strokeWidth = 1
395
- } = _ref5,
396
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
425
+ } = _ref6,
426
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
397
427
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
398
428
  size: size,
399
429
  color: color
400
430
  }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
401
- viewBox: "0 0 24 24"
431
+ viewBox: "0 0 24 24",
432
+ "aria-hidden": "true",
433
+ focusable: "false"
402
434
  }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
403
- d: "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
435
+ d: "M21.8 8.001A2.8 2.8 0 0 0 19 5.2C17.793 5 12 5 12 5s-5.793 0-7 0.2a2.8 2.8 0 0 0-2.8 2.8c-0.2 1.207-0.2 3-0.2 3s0 1.793 0.2 3a2.8 2.8 0 0 0 2.8 2.8c1.207 0.2 7 0.2 7 0.2s5.793 0 7-0.2a2.8 2.8 0 0 0 2.8-2.8c0.2-1.207 0.2-3 0.2-3s0-1.793-0.2-3z",
436
+ fill: filled ? color : 'none',
437
+ stroke: filled ? 'none' : color,
438
+ strokeWidth: filled ? 0 : strokeWidth
404
439
  }), /*#__PURE__*/React__default.createElement("polygon", {
405
- points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
440
+ points: "10 8 10 14 14 10",
441
+ fill: "white" // Ensures the play button is transparent
442
+ ,
443
+ stroke: 'white',
444
+ strokeWidth: strokeWidth
406
445
  })));
407
446
  };
408
- var LinkedinIcon = _ref6 => {
447
+ var FacebookIcon = _ref7 => {
409
448
  var {
410
449
  size = 24,
411
450
  color = 'currentColor',
412
451
  filled = true,
413
452
  strokeWidth = 1
414
- } = _ref6,
415
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
453
+ } = _ref7,
454
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
455
+ return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
456
+ size: size,
457
+ color: color
458
+ }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
459
+ viewBox: "0 0 24 24",
460
+ "aria-hidden": "true",
461
+ focusable: "false"
462
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
463
+ d: "M22 2H2v20h10v-7h-2v-3h2V9.5a4 4 0 0 1 4-4h3v3h-3a1 1 0 0 0-1 1V12h4l-1 3h-3v7h6V2z",
464
+ fill: filled ? color : 'none',
465
+ stroke: color,
466
+ strokeWidth: filled ? 0 : strokeWidth
467
+ })));
468
+ };
469
+ var LinkedinIcon = _ref8 => {
470
+ var {
471
+ size = 24,
472
+ color = 'currentColor',
473
+ filled = true,
474
+ strokeWidth = 1
475
+ } = _ref8,
476
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
416
477
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
417
478
  size: size,
418
479
  color: color
@@ -431,14 +492,14 @@ var LinkedinIcon = _ref6 => {
431
492
  r: "2"
432
493
  })));
433
494
  };
434
- var ThreadsIcon = _ref7 => {
495
+ var ThreadsIcon = _ref9 => {
435
496
  var {
436
497
  size = 24,
437
498
  color = 'currentColor',
438
499
  filled = false,
439
500
  strokeWidth = 1
440
- } = _ref7,
441
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
501
+ } = _ref9,
502
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
442
503
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
443
504
  size: size,
444
505
  color: color
@@ -453,15 +514,15 @@ var ThreadsIcon = _ref7 => {
453
514
  })));
454
515
  };
455
516
  // Example Refactored Icon: MinusIcon without undefined 'padding' prop
456
- var MinusIcon = _ref8 => {
517
+ var MinusIcon = _ref10 => {
457
518
  var {
458
519
  size = 24,
459
520
  color = 'currentColor',
460
521
  filled = false,
461
522
  // Assuming minus can be filled; adjust as needed
462
523
  strokeWidth = 1
463
- } = _ref8,
464
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
524
+ } = _ref10,
525
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
465
526
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
466
527
  size: size,
467
528
  color: color
@@ -478,14 +539,14 @@ var MinusIcon = _ref8 => {
478
539
  })));
479
540
  };
480
541
  // Example Refactored Icon: InfoIcon with accessibility enhancements
481
- var InfoIcon = _ref9 => {
542
+ var InfoIcon = _ref11 => {
482
543
  var {
483
544
  size = 24,
484
545
  color = 'currentColor',
485
546
  filled = false,
486
547
  strokeWidth = 1
487
- } = _ref9,
488
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
548
+ } = _ref11,
549
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
489
550
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
490
551
  size: size,
491
552
  color: color
@@ -499,14 +560,14 @@ var InfoIcon = _ref9 => {
499
560
  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"
500
561
  })));
501
562
  };
502
- var HeartIcon = _ref10 => {
563
+ var HeartIcon = _ref12 => {
503
564
  var {
504
565
  size = 24,
505
566
  color = 'currentColor',
506
567
  filled = true,
507
568
  strokeWidth = 1
508
- } = _ref10,
509
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
569
+ } = _ref12,
570
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
510
571
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
511
572
  size: size,
512
573
  color: color
@@ -518,14 +579,14 @@ var HeartIcon = _ref10 => {
518
579
  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"
519
580
  })));
520
581
  };
521
- var StarIcon = _ref11 => {
582
+ var StarIcon = _ref13 => {
522
583
  var {
523
584
  size = 24,
524
585
  color = 'currentColor',
525
586
  filled = true,
526
587
  strokeWidth = 1
527
- } = _ref11,
528
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
588
+ } = _ref13,
589
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
529
590
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
530
591
  size: size,
531
592
  color: color
@@ -537,14 +598,14 @@ var StarIcon = _ref11 => {
537
598
  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"
538
599
  })));
539
600
  };
540
- var SaveIcon = _ref12 => {
601
+ var SaveIcon = _ref14 => {
541
602
  var {
542
603
  size = 24,
543
604
  color = 'currentColor',
544
605
  filled = false,
545
606
  strokeWidth = 1
546
- } = _ref12,
547
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
607
+ } = _ref14,
608
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
548
609
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
549
610
  size: size,
550
611
  color: color
@@ -560,14 +621,14 @@ var SaveIcon = _ref12 => {
560
621
  points: "7 3 7 8 15 8"
561
622
  })));
562
623
  };
563
- var WarningIcon = _ref13 => {
624
+ var WarningIcon = _ref15 => {
564
625
  var {
565
626
  size = 24,
566
627
  color = 'currentColor',
567
628
  filled = false,
568
629
  strokeWidth = 1
569
- } = _ref13,
570
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
630
+ } = _ref15,
631
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
571
632
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
572
633
  size: size,
573
634
  color: color
@@ -591,14 +652,14 @@ var WarningIcon = _ref13 => {
591
652
  y2: "15"
592
653
  })));
593
654
  };
594
- var BatteryIcon = _ref14 => {
655
+ var BatteryIcon = _ref16 => {
595
656
  var {
596
657
  size = 24,
597
658
  color = 'currentColor',
598
659
  filled = true,
599
660
  strokeWidth = 1
600
- } = _ref14,
601
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
661
+ } = _ref16,
662
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
602
663
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
603
664
  size: size,
604
665
  color: color
@@ -610,14 +671,14 @@ var BatteryIcon = _ref14 => {
610
671
  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"
611
672
  })));
612
673
  };
613
- var BookmarkIcon = _ref15 => {
674
+ var BookmarkIcon = _ref17 => {
614
675
  var {
615
676
  size = 24,
616
677
  color = 'currentColor',
617
678
  filled = false,
618
679
  strokeWidth = 1
619
- } = _ref15,
620
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
680
+ } = _ref17,
681
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
621
682
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
622
683
  size: size,
623
684
  color: color
@@ -629,14 +690,14 @@ var BookmarkIcon = _ref15 => {
629
690
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
630
691
  })));
631
692
  };
632
- var CloudIcon = _ref16 => {
693
+ var CloudIcon = _ref18 => {
633
694
  var {
634
695
  size = 24,
635
696
  color = 'currentColor',
636
- filled = false,
697
+ filled = true,
637
698
  strokeWidth = 1
638
- } = _ref16,
639
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
699
+ } = _ref18,
700
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
640
701
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
641
702
  size: size,
642
703
  color: color
@@ -648,14 +709,14 @@ var CloudIcon = _ref16 => {
648
709
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
649
710
  })));
650
711
  };
651
- var CopyIcon = _ref17 => {
712
+ var CopyIcon = _ref19 => {
652
713
  var {
653
714
  size = 24,
654
715
  color = 'currentColor',
655
716
  filled = false,
656
717
  strokeWidth = 1
657
- } = _ref17,
658
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
718
+ } = _ref19,
719
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
659
720
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
660
721
  size: size,
661
722
  color: color
@@ -674,14 +735,14 @@ var CopyIcon = _ref17 => {
674
735
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
675
736
  })));
676
737
  };
677
- var DustBinIcon = _ref18 => {
738
+ var DustBinIcon = _ref20 => {
678
739
  var {
679
740
  size = 24,
680
741
  color = 'currentColor',
681
742
  filled = false,
682
743
  strokeWidth = 1
683
- } = _ref18,
684
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
744
+ } = _ref20,
745
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
685
746
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
686
747
  size: size,
687
748
  color: color
@@ -693,14 +754,14 @@ var DustBinIcon = _ref18 => {
693
754
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
694
755
  })));
695
756
  };
696
- var EditIcon = _ref19 => {
757
+ var EditIcon = _ref21 => {
697
758
  var {
698
759
  size = 24,
699
760
  color = 'currentColor',
700
761
  filled = false,
701
762
  strokeWidth = 1
702
- } = _ref19,
703
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
763
+ } = _ref21,
764
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
704
765
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
705
766
  size: size,
706
767
  color: color
@@ -712,14 +773,14 @@ var EditIcon = _ref19 => {
712
773
  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"
713
774
  })));
714
775
  };
715
- var ErrorIcon = _ref20 => {
776
+ var ErrorIcon = _ref22 => {
716
777
  var {
717
778
  size = 24,
718
779
  color = 'currentColor',
719
780
  strokeWidth = 1,
720
781
  filled = true
721
- } = _ref20,
722
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
782
+ } = _ref22,
783
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
723
784
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
724
785
  size: size,
725
786
  color: color
@@ -745,14 +806,14 @@ var ErrorIcon = _ref20 => {
745
806
  stroke: filled ? 'white' : color
746
807
  })));
747
808
  };
748
- var DownloadIcon = _ref21 => {
809
+ var DownloadIcon = _ref23 => {
749
810
  var {
750
811
  size = 24,
751
812
  color = 'currentColor',
752
813
  filled = true,
753
814
  strokeWidth = 1
754
- } = _ref21,
755
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
815
+ } = _ref23,
816
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
756
817
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
757
818
  size: size,
758
819
  color: color
@@ -764,13 +825,14 @@ var DownloadIcon = _ref21 => {
764
825
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
765
826
  })));
766
827
  };
767
- var MenuIcon = _ref22 => {
828
+ var MenuIcon = _ref24 => {
768
829
  var {
769
830
  size = 24,
770
831
  color = 'currentColor',
771
- strokeWidth = 1
772
- } = _ref22,
773
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
832
+ strokeWidth = 1,
833
+ filled = false
834
+ } = _ref24,
835
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
774
836
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
775
837
  size: size,
776
838
  color: color
@@ -778,7 +840,7 @@ var MenuIcon = _ref22 => {
778
840
  viewBox: "0 0 24 24",
779
841
  "aria-hidden": "false",
780
842
  focusable: "false"
781
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
843
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
782
844
  stroke: color,
783
845
  x1: "3",
784
846
  y1: "12",
@@ -798,14 +860,14 @@ var MenuIcon = _ref22 => {
798
860
  y2: "18"
799
861
  })));
800
862
  };
801
- var ShareIcon = _ref23 => {
863
+ var ShareIcon = _ref25 => {
802
864
  var {
803
865
  size = 24,
804
866
  color = 'currentColor',
805
867
  filled = false,
806
868
  strokeWidth = 1
807
- } = _ref23,
808
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
869
+ } = _ref25,
870
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
809
871
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
810
872
  size: size,
811
873
  color: color
@@ -839,13 +901,14 @@ var ShareIcon = _ref23 => {
839
901
  y2: "10.49"
840
902
  })));
841
903
  };
842
- var RefreshIcon = _ref24 => {
904
+ var RefreshIcon = _ref26 => {
843
905
  var {
844
906
  size = 24,
845
907
  color = 'currentColor',
846
- strokeWidth = 1
847
- } = _ref24,
848
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
908
+ strokeWidth = 1,
909
+ filled = false
910
+ } = _ref26,
911
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
849
912
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
850
913
  size: size,
851
914
  color: color
@@ -853,20 +916,20 @@ var RefreshIcon = _ref24 => {
853
916
  viewBox: "0 0 24 24",
854
917
  "aria-hidden": "false",
855
918
  focusable: "false"
856
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("polyline", {
919
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("polyline", {
857
920
  points: "23 4 23 10 17 10"
858
921
  }), /*#__PURE__*/React__default.createElement("path", {
859
922
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
860
923
  })));
861
924
  };
862
- var PrintIcon = _ref25 => {
925
+ var PrintIcon = _ref27 => {
863
926
  var {
864
927
  size = 24,
865
928
  color = 'currentColor',
866
929
  filled = true,
867
930
  strokeWidth = 1
868
- } = _ref25,
869
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
931
+ } = _ref27,
932
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
870
933
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
871
934
  size: size,
872
935
  color: color
@@ -879,13 +942,14 @@ var PrintIcon = _ref25 => {
879
942
  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"
880
943
  })));
881
944
  };
882
- var PanelIcon = _ref26 => {
945
+ var PanelIcon = _ref28 => {
883
946
  var {
884
947
  size = 24,
885
948
  color = 'currentColor',
886
- strokeWidth = 1
887
- } = _ref26,
888
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
949
+ strokeWidth = 1,
950
+ filled = false
951
+ } = _ref28,
952
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
889
953
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
890
954
  size: size,
891
955
  color: color
@@ -893,7 +957,7 @@ var PanelIcon = _ref26 => {
893
957
  viewBox: "0 0 24 24",
894
958
  "aria-hidden": "false",
895
959
  focusable: "false"
896
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
960
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
897
961
  stroke: color,
898
962
  x1: "4",
899
963
  y1: "21",
@@ -949,14 +1013,14 @@ var PanelIcon = _ref26 => {
949
1013
  y2: "16"
950
1014
  })));
951
1015
  };
952
- var FilterIcon = _ref27 => {
1016
+ var FilterIcon = _ref29 => {
953
1017
  var {
954
1018
  size = 24,
955
1019
  color = 'currentColor',
956
1020
  filled = false,
957
1021
  strokeWidth = 1
958
- } = _ref27,
959
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
1022
+ } = _ref29,
1023
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
960
1024
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
961
1025
  size: size,
962
1026
  color: color
@@ -968,14 +1032,14 @@ var FilterIcon = _ref27 => {
968
1032
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
969
1033
  })));
970
1034
  };
971
- var HomeIcon = _ref28 => {
1035
+ var HomeIcon = _ref30 => {
972
1036
  var {
973
1037
  size = 24,
974
1038
  color = 'currentColor',
975
1039
  filled = true,
976
1040
  strokeWidth = 1
977
- } = _ref28,
978
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
1041
+ } = _ref30,
1042
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
979
1043
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
980
1044
  size: size,
981
1045
  color: color
@@ -987,14 +1051,14 @@ var HomeIcon = _ref28 => {
987
1051
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
988
1052
  })));
989
1053
  };
990
- var LocationIcon = _ref29 => {
1054
+ var LocationIcon = _ref31 => {
991
1055
  var {
992
1056
  size = 24,
993
1057
  color = 'currentColor',
994
1058
  filled = true,
995
1059
  strokeWidth = 1
996
- } = _ref29,
997
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
1060
+ } = _ref31,
1061
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
998
1062
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
999
1063
  size: size,
1000
1064
  color: color
@@ -1006,14 +1070,14 @@ var LocationIcon = _ref29 => {
1006
1070
  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"
1007
1071
  })));
1008
1072
  };
1009
- var LockIcon = _ref30 => {
1073
+ var LockIcon = _ref32 => {
1010
1074
  var {
1011
1075
  size = 24,
1012
1076
  color = 'currentColor',
1013
1077
  filled = false,
1014
1078
  strokeWidth = 1
1015
- } = _ref30,
1016
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
1079
+ } = _ref32,
1080
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1017
1081
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1018
1082
  size: size,
1019
1083
  color: color
@@ -1032,14 +1096,14 @@ var LockIcon = _ref30 => {
1032
1096
  d: "M7 11V7a5 5 0 0 1 10 0v4"
1033
1097
  })));
1034
1098
  };
1035
- var MicrophoneIcon = _ref31 => {
1099
+ var MicrophoneIcon = _ref33 => {
1036
1100
  var {
1037
1101
  size = 24,
1038
1102
  color = 'currentColor',
1039
1103
  filled = false,
1040
1104
  strokeWidth = 1
1041
- } = _ref31,
1042
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1105
+ } = _ref33,
1106
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1043
1107
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1044
1108
  size: size,
1045
1109
  color: color
@@ -1065,14 +1129,14 @@ var MicrophoneIcon = _ref31 => {
1065
1129
  y2: "23"
1066
1130
  })));
1067
1131
  };
1068
- var MoonIcon = _ref32 => {
1132
+ var MoonIcon = _ref34 => {
1069
1133
  var {
1070
1134
  size = 24,
1071
1135
  color = 'currentColor',
1072
1136
  filled = true,
1073
1137
  strokeWidth = 1
1074
- } = _ref32,
1075
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1138
+ } = _ref34,
1139
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1076
1140
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1077
1141
  size: size,
1078
1142
  color: color
@@ -1084,14 +1148,14 @@ var MoonIcon = _ref32 => {
1084
1148
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
1085
1149
  })));
1086
1150
  };
1087
- var NotificationIcon = _ref33 => {
1151
+ var NotificationIcon = _ref35 => {
1088
1152
  var {
1089
1153
  size = 24,
1090
1154
  color = 'currentColor',
1091
1155
  filled = false,
1092
1156
  strokeWidth = 1
1093
- } = _ref33,
1094
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1157
+ } = _ref35,
1158
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1095
1159
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1096
1160
  size: size,
1097
1161
  color: color
@@ -1105,14 +1169,14 @@ var NotificationIcon = _ref33 => {
1105
1169
  d: "M13.73 21a2 2 0 0 1-3.46 0"
1106
1170
  })));
1107
1171
  };
1108
- var OpenEyeIcon = _ref34 => {
1172
+ var OpenEyeIcon = _ref36 => {
1109
1173
  var {
1110
1174
  size = 24,
1111
1175
  color = 'currentColor',
1112
1176
  filled = true,
1113
1177
  strokeWidth = 1
1114
- } = _ref34,
1115
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1178
+ } = _ref36,
1179
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1116
1180
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1117
1181
  size: size,
1118
1182
  color: color
@@ -1124,14 +1188,14 @@ var OpenEyeIcon = _ref34 => {
1124
1188
  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"
1125
1189
  })));
1126
1190
  };
1127
- var ProfileIcon = _ref35 => {
1191
+ var ProfileIcon = _ref37 => {
1128
1192
  var {
1129
1193
  size = 24,
1130
1194
  color = 'currentColor',
1131
1195
  filled = true,
1132
1196
  strokeWidth = 1
1133
- } = _ref35,
1134
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1197
+ } = _ref37,
1198
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1135
1199
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1136
1200
  size: size,
1137
1201
  color: color
@@ -1144,14 +1208,14 @@ var ProfileIcon = _ref35 => {
1144
1208
  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"
1145
1209
  }), ' '));
1146
1210
  };
1147
- var SettingsIcon = _ref36 => {
1211
+ var SettingsIcon = _ref38 => {
1148
1212
  var {
1149
1213
  size = 24,
1150
1214
  color = 'currentColor',
1151
1215
  filled = false,
1152
1216
  strokeWidth = 1
1153
- } = _ref36,
1154
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1217
+ } = _ref38,
1218
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1155
1219
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1156
1220
  size: size,
1157
1221
  color: color
@@ -1163,14 +1227,14 @@ var SettingsIcon = _ref36 => {
1163
1227
  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"
1164
1228
  })));
1165
1229
  };
1166
- var SuccessIcon = _ref37 => {
1230
+ var SuccessIcon = _ref39 => {
1167
1231
  var {
1168
1232
  size = 24,
1169
1233
  color = 'currentColor',
1170
1234
  filled = true,
1171
1235
  strokeWidth = 1
1172
- } = _ref37,
1173
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1236
+ } = _ref39,
1237
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1174
1238
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1175
1239
  size: size,
1176
1240
  color: color
@@ -1182,14 +1246,14 @@ var SuccessIcon = _ref37 => {
1182
1246
  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"
1183
1247
  })));
1184
1248
  };
1185
- var UnLikeIcon = _ref38 => {
1249
+ var UnLikeIcon = _ref40 => {
1186
1250
  var {
1187
1251
  size = 24,
1188
1252
  color = 'currentColor',
1189
1253
  filled = true,
1190
1254
  strokeWidth = 1
1191
- } = _ref38,
1192
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1255
+ } = _ref40,
1256
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1193
1257
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1194
1258
  size: size,
1195
1259
  color: color
@@ -1201,13 +1265,14 @@ var UnLikeIcon = _ref38 => {
1201
1265
  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"
1202
1266
  })));
1203
1267
  };
1204
- var ClockIcon = _ref39 => {
1268
+ var ClockIcon = _ref41 => {
1205
1269
  var {
1206
1270
  size = 24,
1207
1271
  color = 'currentColor',
1208
- strokeWidth = 1
1209
- } = _ref39,
1210
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1272
+ strokeWidth = 1,
1273
+ filled = false
1274
+ } = _ref41,
1275
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1211
1276
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1212
1277
  size: size,
1213
1278
  color: color
@@ -1215,7 +1280,7 @@ var ClockIcon = _ref39 => {
1215
1280
  viewBox: "0 0 24 24",
1216
1281
  "aria-hidden": "false",
1217
1282
  focusable: "false"
1218
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1283
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1219
1284
  cx: "12",
1220
1285
  cy: "12",
1221
1286
  r: "10"
@@ -1223,13 +1288,14 @@ var ClockIcon = _ref39 => {
1223
1288
  points: "12 6 12 12 16 14"
1224
1289
  })));
1225
1290
  };
1226
- var CameraIcon = _ref40 => {
1291
+ var CameraIcon = _ref42 => {
1227
1292
  var {
1228
1293
  size = 24,
1229
1294
  color = 'currentColor',
1230
- strokeWidth = 1
1231
- } = _ref40,
1232
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1295
+ strokeWidth = 1,
1296
+ filled = false
1297
+ } = _ref42,
1298
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1233
1299
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1234
1300
  size: size,
1235
1301
  color: color
@@ -1237,7 +1303,7 @@ var CameraIcon = _ref40 => {
1237
1303
  viewBox: "0 0 24 24",
1238
1304
  "aria-hidden": "false",
1239
1305
  focusable: "false"
1240
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1306
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1241
1307
  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"
1242
1308
  }), /*#__PURE__*/React__default.createElement("circle", {
1243
1309
  cx: "12",
@@ -1245,14 +1311,14 @@ var CameraIcon = _ref40 => {
1245
1311
  r: "4"
1246
1312
  })));
1247
1313
  };
1248
- var BluetoothIcon = _ref41 => {
1314
+ var BluetoothIcon = _ref43 => {
1249
1315
  var {
1250
1316
  size = 24,
1251
1317
  color = 'currentColor',
1252
1318
  filled = true,
1253
1319
  strokeWidth = 1
1254
- } = _ref41,
1255
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1320
+ } = _ref43,
1321
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1256
1322
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1257
1323
  size: size,
1258
1324
  color: color
@@ -1260,18 +1326,18 @@ var BluetoothIcon = _ref41 => {
1260
1326
  viewBox: "0 0 24 24",
1261
1327
  "aria-hidden": "false",
1262
1328
  focusable: "false"
1263
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1329
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1264
1330
  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"
1265
1331
  })));
1266
1332
  };
1267
- var LikeIcon = _ref42 => {
1333
+ var LikeIcon = _ref44 => {
1268
1334
  var {
1269
1335
  size = 24,
1270
1336
  color = 'currentColor',
1271
1337
  filled = true,
1272
1338
  strokeWidth = 1
1273
- } = _ref42,
1274
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1339
+ } = _ref44,
1340
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1275
1341
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1276
1342
  size: size,
1277
1343
  color: color
@@ -1283,14 +1349,14 @@ var LikeIcon = _ref42 => {
1283
1349
  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"
1284
1350
  })));
1285
1351
  };
1286
- var UnlockIcon = _ref43 => {
1352
+ var UnlockIcon = _ref45 => {
1287
1353
  var {
1288
1354
  size = 24,
1289
1355
  color = 'currentColor',
1290
1356
  filled = false,
1291
1357
  strokeWidth = 1
1292
- } = _ref43,
1293
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1358
+ } = _ref45,
1359
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1294
1360
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1295
1361
  size: size,
1296
1362
  color: color
@@ -1309,14 +1375,14 @@ var UnlockIcon = _ref43 => {
1309
1375
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1310
1376
  })));
1311
1377
  };
1312
- var WifiIcon = _ref44 => {
1378
+ var WifiIcon = _ref46 => {
1313
1379
  var {
1314
1380
  size = 24,
1315
1381
  color = 'currentColor',
1316
1382
  filled = false,
1317
1383
  strokeWidth = 1
1318
- } = _ref44,
1319
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1384
+ } = _ref46,
1385
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1320
1386
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1321
1387
  size: size,
1322
1388
  color: color
@@ -1328,14 +1394,14 @@ var WifiIcon = _ref44 => {
1328
1394
  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"
1329
1395
  })));
1330
1396
  };
1331
- var UploadIcon = _ref45 => {
1397
+ var UploadIcon = _ref47 => {
1332
1398
  var {
1333
1399
  size = 24,
1334
1400
  color = 'currentColor',
1335
1401
  filled = false,
1336
1402
  strokeWidth = 1
1337
- } = _ref45,
1338
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1403
+ } = _ref47,
1404
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1339
1405
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1340
1406
  size: size,
1341
1407
  color: color
@@ -1351,14 +1417,14 @@ var UploadIcon = _ref45 => {
1351
1417
  d: "M12 12l0 9"
1352
1418
  })));
1353
1419
  };
1354
- var SearchIcon = _ref46 => {
1420
+ var SearchIcon = _ref48 => {
1355
1421
  var {
1356
1422
  size = 24,
1357
1423
  color = 'currentColor',
1358
1424
  filled = true,
1359
1425
  strokeWidth = 1
1360
- } = _ref46,
1361
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1426
+ } = _ref48,
1427
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1362
1428
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1363
1429
  size: size,
1364
1430
  color: color
@@ -1366,18 +1432,18 @@ var SearchIcon = _ref46 => {
1366
1432
  viewBox: "0 0 24 24",
1367
1433
  "aria-hidden": "false",
1368
1434
  focusable: "false"
1369
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1435
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1370
1436
  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"
1371
1437
  })));
1372
1438
  };
1373
- var CloseEyeIcon = _ref47 => {
1439
+ var CloseEyeIcon = _ref49 => {
1374
1440
  var {
1375
1441
  size = 24,
1376
1442
  color = 'currentColor',
1377
1443
  filled = true,
1378
1444
  strokeWidth = 1
1379
- } = _ref47,
1380
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1445
+ } = _ref49,
1446
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1381
1447
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1382
1448
  size: size,
1383
1449
  color: color
@@ -1385,19 +1451,19 @@ var CloseEyeIcon = _ref47 => {
1385
1451
  viewBox: "0 0 24 24",
1386
1452
  "aria-hidden": "false",
1387
1453
  focusable: "false"
1388
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1454
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1389
1455
  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",
1390
1456
  fill: "currentColor"
1391
1457
  })));
1392
1458
  };
1393
- var ExternalLinkIcon = _ref48 => {
1459
+ var ExternalLinkIcon = _ref50 => {
1394
1460
  var {
1395
1461
  size = 24,
1396
1462
  color = 'currentColor',
1397
1463
  filled = true,
1398
1464
  strokeWidth = 1
1399
- } = _ref48,
1400
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1465
+ } = _ref50,
1466
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1401
1467
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1402
1468
  size: size,
1403
1469
  color: color
@@ -1405,18 +1471,18 @@ var ExternalLinkIcon = _ref48 => {
1405
1471
  viewBox: "0 0 24 24",
1406
1472
  "aria-hidden": "false",
1407
1473
  focusable: "false"
1408
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1474
+ }, getSvgProps(true, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1409
1475
  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"
1410
1476
  })));
1411
1477
  };
1412
- var PlusIcon = _ref49 => {
1478
+ var PlusIcon = _ref51 => {
1413
1479
  var {
1414
1480
  size = 24,
1415
1481
  color = 'currentColor',
1416
- filled = true,
1482
+ filled = false,
1417
1483
  strokeWidth = 1
1418
- } = _ref49,
1419
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1484
+ } = _ref51,
1485
+ props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1420
1486
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1421
1487
  size: size,
1422
1488
  color: color
@@ -1424,7 +1490,7 @@ var PlusIcon = _ref49 => {
1424
1490
  viewBox: "0 0 24 24",
1425
1491
  "aria-hidden": "false",
1426
1492
  focusable: "false"
1427
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1493
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1428
1494
  stroke: color,
1429
1495
  x1: "12",
1430
1496
  y1: "5",
@@ -1438,14 +1504,14 @@ var PlusIcon = _ref49 => {
1438
1504
  y2: "12"
1439
1505
  })));
1440
1506
  };
1441
- var TickIcon = _ref50 => {
1507
+ var TickIcon = _ref52 => {
1442
1508
  var {
1443
1509
  size = 24,
1444
1510
  color = 'currentColor',
1445
- filled = true,
1511
+ filled = false,
1446
1512
  strokeWidth = 1
1447
- } = _ref50,
1448
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1513
+ } = _ref52,
1514
+ props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1449
1515
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1450
1516
  size: size,
1451
1517
  color: color
@@ -1453,20 +1519,20 @@ var TickIcon = _ref50 => {
1453
1519
  viewBox: "0 0 24 24",
1454
1520
  "aria-hidden": "false",
1455
1521
  focusable: "false"
1456
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1522
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1457
1523
  d: "M5 13l4 4L19 7",
1458
1524
  strokeLinecap: "round",
1459
1525
  strokeLinejoin: "round"
1460
1526
  })));
1461
1527
  };
1462
- var BoldArrowIcon = _ref51 => {
1528
+ var BoldArrowIcon = _ref53 => {
1463
1529
  var {
1464
1530
  size = 24,
1465
1531
  color = 'currentColor',
1466
1532
  filled = true,
1467
1533
  strokeWidth = 1
1468
- } = _ref51,
1469
- props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1534
+ } = _ref53,
1535
+ props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1470
1536
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1471
1537
  size: size,
1472
1538
  color: color
@@ -1474,18 +1540,18 @@ var BoldArrowIcon = _ref51 => {
1474
1540
  viewBox: "0 0 24 24",
1475
1541
  "aria-hidden": "false",
1476
1542
  focusable: "false"
1477
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1543
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1478
1544
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1479
1545
  })));
1480
1546
  };
1481
- var ArrowIcon = _ref52 => {
1547
+ var ArrowIcon = _ref54 => {
1482
1548
  var {
1483
1549
  size = 24,
1484
1550
  color = 'currentColor',
1485
- filled = true,
1551
+ filled = false,
1486
1552
  strokeWidth = 1
1487
- } = _ref52,
1488
- props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1553
+ } = _ref54,
1554
+ props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1489
1555
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1490
1556
  size: size,
1491
1557
  color: color
@@ -1493,7 +1559,7 @@ var ArrowIcon = _ref52 => {
1493
1559
  viewBox: "0 0 24 24",
1494
1560
  "aria-hidden": "false",
1495
1561
  focusable: "false"
1496
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1562
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1497
1563
  stroke: color,
1498
1564
  x1: "12",
1499
1565
  y1: "20",
@@ -1503,14 +1569,14 @@ var ArrowIcon = _ref52 => {
1503
1569
  points: "6 12 12 6 18 12"
1504
1570
  })));
1505
1571
  };
1506
- var SpinnerIcon = _ref53 => {
1572
+ var SpinnerIcon = _ref55 => {
1507
1573
  var {
1508
1574
  size = 24,
1509
1575
  color = 'currentColor',
1510
- filled = true,
1576
+ filled = false,
1511
1577
  strokeWidth = 1
1512
- } = _ref53,
1513
- props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1578
+ } = _ref55,
1579
+ props = _objectWithoutPropertiesLoose(_ref55, _excluded55);
1514
1580
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1515
1581
  size: size,
1516
1582
  color: color
@@ -1518,7 +1584,7 @@ var SpinnerIcon = _ref53 => {
1518
1584
  viewBox: "0 0 24 24",
1519
1585
  "aria-hidden": "false",
1520
1586
  focusable: "false"
1521
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1587
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1522
1588
  cx: "12",
1523
1589
  cy: "12",
1524
1590
  r: "10",
@@ -1528,13 +1594,14 @@ var SpinnerIcon = _ref53 => {
1528
1594
  strokeOpacity: "1"
1529
1595
  })));
1530
1596
  };
1531
- var CalendarIcon = _ref54 => {
1597
+ var CalendarIcon = _ref56 => {
1532
1598
  var {
1533
1599
  size = 24,
1534
1600
  color = 'currentColor',
1535
- strokeWidth = 1
1536
- } = _ref54,
1537
- props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1601
+ strokeWidth = 1,
1602
+ filled = false
1603
+ } = _ref56,
1604
+ props = _objectWithoutPropertiesLoose(_ref56, _excluded56);
1538
1605
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1539
1606
  size: size,
1540
1607
  color: color
@@ -1542,7 +1609,7 @@ var CalendarIcon = _ref54 => {
1542
1609
  viewBox: "0 0 24 24",
1543
1610
  "aria-hidden": "false",
1544
1611
  focusable: "false"
1545
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
1612
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
1546
1613
  x: "3",
1547
1614
  y: "4",
1548
1615
  width: "18",
@@ -1573,9 +1640,11 @@ var CalendarIcon = _ref54 => {
1573
1640
  var Icon = {
1574
1641
  __proto__: null,
1575
1642
  ChevronIcon: ChevronIcon,
1643
+ TwitchIcon: TwitchIcon,
1576
1644
  CloseIcon: CloseIcon,
1577
1645
  InstagramIcon: InstagramIcon,
1578
1646
  YoutubeIcon: YoutubeIcon,
1647
+ FacebookIcon: FacebookIcon,
1579
1648
  LinkedinIcon: LinkedinIcon,
1580
1649
  ThreadsIcon: ThreadsIcon,
1581
1650
  MinusIcon: MinusIcon,
@@ -7397,6 +7466,7 @@ exports.DustBinIcon = DustBinIcon;
7397
7466
  exports.EditIcon = EditIcon;
7398
7467
  exports.ErrorIcon = ErrorIcon;
7399
7468
  exports.ExternalLinkIcon = ExternalLinkIcon;
7469
+ exports.FacebookIcon = FacebookIcon;
7400
7470
  exports.FileImage = FileImage;
7401
7471
  exports.FileSVG = FileSVG;
7402
7472
  exports.FilterIcon = FilterIcon;
@@ -7460,6 +7530,7 @@ exports.TickIcon = TickIcon;
7460
7530
  exports.Toggle = Toggle;
7461
7531
  exports.ToggleGroup = ToggleGroup;
7462
7532
  exports.Top = Top;
7533
+ exports.TwitchIcon = TwitchIcon;
7463
7534
  exports.UnLikeIcon = UnLikeIcon;
7464
7535
  exports.UnlockIcon = UnlockIcon;
7465
7536
  exports.UploadIcon = UploadIcon;