@app-studio/web 0.8.56 → 0.8.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/web.esm.js CHANGED
@@ -235,14 +235,14 @@ var _excluded$4 = ["size", "color", "transform", "orientation", "children"],
235
235
  _excluded17 = ["size", "color", "filled", "strokeWidth"],
236
236
  _excluded18 = ["size", "color", "filled", "strokeWidth"],
237
237
  _excluded19 = ["size", "color", "filled", "strokeWidth"],
238
- _excluded20 = ["size", "color", "strokeWidth", "filled"],
239
- _excluded21 = ["size", "color", "filled", "strokeWidth"],
240
- _excluded22 = ["size", "color", "strokeWidth"],
241
- _excluded23 = ["size", "color", "filled", "strokeWidth"],
242
- _excluded24 = ["size", "color", "strokeWidth"],
243
- _excluded25 = ["size", "color", "filled", "strokeWidth"],
244
- _excluded26 = ["size", "color", "strokeWidth"],
245
- _excluded27 = ["size", "color", "filled", "strokeWidth"],
238
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
239
+ _excluded21 = ["size", "color", "strokeWidth", "filled"],
240
+ _excluded22 = ["size", "color", "filled", "strokeWidth"],
241
+ _excluded23 = ["size", "color", "strokeWidth"],
242
+ _excluded24 = ["size", "color", "filled", "strokeWidth"],
243
+ _excluded25 = ["size", "color", "strokeWidth"],
244
+ _excluded26 = ["size", "color", "filled", "strokeWidth"],
245
+ _excluded27 = ["size", "color", "strokeWidth"],
246
246
  _excluded28 = ["size", "color", "filled", "strokeWidth"],
247
247
  _excluded29 = ["size", "color", "filled", "strokeWidth"],
248
248
  _excluded30 = ["size", "color", "filled", "strokeWidth"],
@@ -254,9 +254,9 @@ var _excluded$4 = ["size", "color", "transform", "orientation", "children"],
254
254
  _excluded36 = ["size", "color", "filled", "strokeWidth"],
255
255
  _excluded37 = ["size", "color", "filled", "strokeWidth"],
256
256
  _excluded38 = ["size", "color", "filled", "strokeWidth"],
257
- _excluded39 = ["size", "color", "strokeWidth"],
257
+ _excluded39 = ["size", "color", "filled", "strokeWidth"],
258
258
  _excluded40 = ["size", "color", "strokeWidth"],
259
- _excluded41 = ["size", "color", "filled", "strokeWidth"],
259
+ _excluded41 = ["size", "color", "strokeWidth"],
260
260
  _excluded42 = ["size", "color", "filled", "strokeWidth"],
261
261
  _excluded43 = ["size", "color", "filled", "strokeWidth"],
262
262
  _excluded44 = ["size", "color", "filled", "strokeWidth"],
@@ -269,14 +269,15 @@ var _excluded$4 = ["size", "color", "transform", "orientation", "children"],
269
269
  _excluded51 = ["size", "color", "filled", "strokeWidth"],
270
270
  _excluded52 = ["size", "color", "filled", "strokeWidth"],
271
271
  _excluded53 = ["size", "color", "filled", "strokeWidth"],
272
- _excluded54 = ["size", "color", "strokeWidth"];
272
+ _excluded54 = ["size", "color", "filled", "strokeWidth"],
273
+ _excluded55 = ["size", "color", "strokeWidth"];
273
274
  // Default wrapper component for consistent sizing and styling
274
275
  var IconWrapper = _ref => {
275
276
  var {
276
277
  size,
277
278
  color = 'black',
278
279
  transform,
279
- orientation,
280
+ orientation = 'up',
280
281
  children
281
282
  } = _ref,
282
283
  rest = _objectWithoutPropertiesLoose(_ref, _excluded$4);
@@ -318,8 +319,8 @@ var ChevronIcon = _ref2 => {
318
319
  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"
319
320
  })));
320
321
  };
321
- // Example of another Icon: CloseIcon
322
- var CloseIcon = _ref3 => {
322
+ // Example of a Twitch Icon
323
+ var TwitchIcon = _ref3 => {
323
324
  var {
324
325
  size = 24,
325
326
  color = 'currentColor',
@@ -334,6 +335,34 @@ var CloseIcon = _ref3 => {
334
335
  viewBox: "0 0 24 24",
335
336
  "aria-hidden": "true",
336
337
  focusable: "false"
338
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
339
+ d: "M2 2v16h5v4l4-4h5l6-6V2H2zm18 10-3 3h-5l-3 3v-3H4V4h16v8z",
340
+ fill: filled ? color : 'none',
341
+ stroke: color,
342
+ strokeWidth: filled ? 0 : strokeWidth
343
+ }), /*#__PURE__*/React.createElement("path", {
344
+ d: "M14 7h2v5h-2V7zm-4 0h2v5H10V7z",
345
+ fill: filled ? color : 'none',
346
+ stroke: color,
347
+ strokeWidth: filled ? 0 : strokeWidth
348
+ })));
349
+ };
350
+ // Example of another Icon: CloseIcon
351
+ var CloseIcon = _ref4 => {
352
+ var {
353
+ size = 24,
354
+ color = 'currentColor',
355
+ filled = false,
356
+ strokeWidth = 1
357
+ } = _ref4,
358
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
359
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
360
+ size: size,
361
+ color: color
362
+ }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
363
+ viewBox: "0 0 24 24",
364
+ "aria-hidden": "true",
365
+ focusable: "false"
337
366
  }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
338
367
  stroke: color,
339
368
  x1: "18",
@@ -348,14 +377,14 @@ var CloseIcon = _ref3 => {
348
377
  y2: "18"
349
378
  })));
350
379
  };
351
- var InstagramIcon = _ref4 => {
380
+ var InstagramIcon = _ref5 => {
352
381
  var {
353
382
  size = 24,
354
383
  color = 'currentColor',
355
384
  filled = false,
356
385
  strokeWidth = 1
357
- } = _ref4,
358
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
386
+ } = _ref5,
387
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
359
388
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
360
389
  size: size,
361
390
  color: color
@@ -379,14 +408,14 @@ var InstagramIcon = _ref4 => {
379
408
  y2: "6.5"
380
409
  })));
381
410
  };
382
- var YoutubeIcon = _ref5 => {
411
+ var YoutubeIcon = _ref6 => {
383
412
  var {
384
413
  size = 24,
385
414
  color = 'currentColor',
386
415
  filled = false,
387
416
  strokeWidth = 1
388
- } = _ref5,
389
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
417
+ } = _ref6,
418
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
390
419
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
391
420
  size: size,
392
421
  color: color
@@ -398,14 +427,14 @@ var YoutubeIcon = _ref5 => {
398
427
  points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
399
428
  })));
400
429
  };
401
- var LinkedinIcon = _ref6 => {
430
+ var LinkedinIcon = _ref7 => {
402
431
  var {
403
432
  size = 24,
404
433
  color = 'currentColor',
405
434
  filled = true,
406
435
  strokeWidth = 1
407
- } = _ref6,
408
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
436
+ } = _ref7,
437
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
409
438
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
410
439
  size: size,
411
440
  color: color
@@ -424,14 +453,14 @@ var LinkedinIcon = _ref6 => {
424
453
  r: "2"
425
454
  })));
426
455
  };
427
- var ThreadsIcon = _ref7 => {
456
+ var ThreadsIcon = _ref8 => {
428
457
  var {
429
458
  size = 24,
430
459
  color = 'currentColor',
431
460
  filled = false,
432
461
  strokeWidth = 1
433
- } = _ref7,
434
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
462
+ } = _ref8,
463
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
435
464
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
436
465
  size: size,
437
466
  color: color
@@ -446,15 +475,15 @@ var ThreadsIcon = _ref7 => {
446
475
  })));
447
476
  };
448
477
  // Example Refactored Icon: MinusIcon without undefined 'padding' prop
449
- var MinusIcon = _ref8 => {
478
+ var MinusIcon = _ref9 => {
450
479
  var {
451
480
  size = 24,
452
481
  color = 'currentColor',
453
482
  filled = false,
454
483
  // Assuming minus can be filled; adjust as needed
455
484
  strokeWidth = 1
456
- } = _ref8,
457
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
485
+ } = _ref9,
486
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
458
487
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
459
488
  size: size,
460
489
  color: color
@@ -471,14 +500,14 @@ var MinusIcon = _ref8 => {
471
500
  })));
472
501
  };
473
502
  // Example Refactored Icon: InfoIcon with accessibility enhancements
474
- var InfoIcon = _ref9 => {
503
+ var InfoIcon = _ref10 => {
475
504
  var {
476
505
  size = 24,
477
506
  color = 'currentColor',
478
507
  filled = false,
479
508
  strokeWidth = 1
480
- } = _ref9,
481
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
509
+ } = _ref10,
510
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
482
511
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
483
512
  size: size,
484
513
  color: color
@@ -492,14 +521,14 @@ var InfoIcon = _ref9 => {
492
521
  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"
493
522
  })));
494
523
  };
495
- var HeartIcon = _ref10 => {
524
+ var HeartIcon = _ref11 => {
496
525
  var {
497
526
  size = 24,
498
527
  color = 'currentColor',
499
528
  filled = true,
500
529
  strokeWidth = 1
501
- } = _ref10,
502
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
530
+ } = _ref11,
531
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
503
532
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
504
533
  size: size,
505
534
  color: color
@@ -511,14 +540,14 @@ var HeartIcon = _ref10 => {
511
540
  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"
512
541
  })));
513
542
  };
514
- var StarIcon = _ref11 => {
543
+ var StarIcon = _ref12 => {
515
544
  var {
516
545
  size = 24,
517
546
  color = 'currentColor',
518
547
  filled = true,
519
548
  strokeWidth = 1
520
- } = _ref11,
521
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
549
+ } = _ref12,
550
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
522
551
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
523
552
  size: size,
524
553
  color: color
@@ -530,14 +559,14 @@ var StarIcon = _ref11 => {
530
559
  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"
531
560
  })));
532
561
  };
533
- var SaveIcon = _ref12 => {
562
+ var SaveIcon = _ref13 => {
534
563
  var {
535
564
  size = 24,
536
565
  color = 'currentColor',
537
566
  filled = false,
538
567
  strokeWidth = 1
539
- } = _ref12,
540
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
568
+ } = _ref13,
569
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
541
570
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
542
571
  size: size,
543
572
  color: color
@@ -553,14 +582,14 @@ var SaveIcon = _ref12 => {
553
582
  points: "7 3 7 8 15 8"
554
583
  })));
555
584
  };
556
- var WarningIcon = _ref13 => {
585
+ var WarningIcon = _ref14 => {
557
586
  var {
558
587
  size = 24,
559
588
  color = 'currentColor',
560
589
  filled = false,
561
590
  strokeWidth = 1
562
- } = _ref13,
563
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
591
+ } = _ref14,
592
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
564
593
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
565
594
  size: size,
566
595
  color: color
@@ -584,14 +613,14 @@ var WarningIcon = _ref13 => {
584
613
  y2: "15"
585
614
  })));
586
615
  };
587
- var BatteryIcon = _ref14 => {
616
+ var BatteryIcon = _ref15 => {
588
617
  var {
589
618
  size = 24,
590
619
  color = 'currentColor',
591
620
  filled = true,
592
621
  strokeWidth = 1
593
- } = _ref14,
594
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
622
+ } = _ref15,
623
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
595
624
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
596
625
  size: size,
597
626
  color: color
@@ -603,14 +632,14 @@ var BatteryIcon = _ref14 => {
603
632
  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"
604
633
  })));
605
634
  };
606
- var BookmarkIcon = _ref15 => {
635
+ var BookmarkIcon = _ref16 => {
607
636
  var {
608
637
  size = 24,
609
638
  color = 'currentColor',
610
639
  filled = false,
611
640
  strokeWidth = 1
612
- } = _ref15,
613
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
641
+ } = _ref16,
642
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
614
643
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
615
644
  size: size,
616
645
  color: color
@@ -622,14 +651,14 @@ var BookmarkIcon = _ref15 => {
622
651
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
623
652
  })));
624
653
  };
625
- var CloudIcon = _ref16 => {
654
+ var CloudIcon = _ref17 => {
626
655
  var {
627
656
  size = 24,
628
657
  color = 'currentColor',
629
658
  filled = false,
630
659
  strokeWidth = 1
631
- } = _ref16,
632
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
660
+ } = _ref17,
661
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
633
662
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
634
663
  size: size,
635
664
  color: color
@@ -641,14 +670,14 @@ var CloudIcon = _ref16 => {
641
670
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
642
671
  })));
643
672
  };
644
- var CopyIcon = _ref17 => {
673
+ var CopyIcon = _ref18 => {
645
674
  var {
646
675
  size = 24,
647
676
  color = 'currentColor',
648
677
  filled = false,
649
678
  strokeWidth = 1
650
- } = _ref17,
651
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
679
+ } = _ref18,
680
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
652
681
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
653
682
  size: size,
654
683
  color: color
@@ -667,14 +696,14 @@ var CopyIcon = _ref17 => {
667
696
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
668
697
  })));
669
698
  };
670
- var DustBinIcon = _ref18 => {
699
+ var DustBinIcon = _ref19 => {
671
700
  var {
672
701
  size = 24,
673
702
  color = 'currentColor',
674
703
  filled = false,
675
704
  strokeWidth = 1
676
- } = _ref18,
677
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
705
+ } = _ref19,
706
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
678
707
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
679
708
  size: size,
680
709
  color: color
@@ -686,14 +715,14 @@ var DustBinIcon = _ref18 => {
686
715
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
687
716
  })));
688
717
  };
689
- var EditIcon = _ref19 => {
718
+ var EditIcon = _ref20 => {
690
719
  var {
691
720
  size = 24,
692
721
  color = 'currentColor',
693
722
  filled = false,
694
723
  strokeWidth = 1
695
- } = _ref19,
696
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
724
+ } = _ref20,
725
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
697
726
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
698
727
  size: size,
699
728
  color: color
@@ -705,14 +734,14 @@ var EditIcon = _ref19 => {
705
734
  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"
706
735
  })));
707
736
  };
708
- var ErrorIcon = _ref20 => {
737
+ var ErrorIcon = _ref21 => {
709
738
  var {
710
739
  size = 24,
711
740
  color = 'currentColor',
712
741
  strokeWidth = 1,
713
742
  filled = true
714
- } = _ref20,
715
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
743
+ } = _ref21,
744
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
716
745
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
717
746
  size: size,
718
747
  color: color
@@ -738,14 +767,14 @@ var ErrorIcon = _ref20 => {
738
767
  stroke: filled ? 'white' : color
739
768
  })));
740
769
  };
741
- var DownloadIcon = _ref21 => {
770
+ var DownloadIcon = _ref22 => {
742
771
  var {
743
772
  size = 24,
744
773
  color = 'currentColor',
745
774
  filled = true,
746
775
  strokeWidth = 1
747
- } = _ref21,
748
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
776
+ } = _ref22,
777
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
749
778
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
750
779
  size: size,
751
780
  color: color
@@ -757,13 +786,13 @@ var DownloadIcon = _ref21 => {
757
786
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
758
787
  })));
759
788
  };
760
- var MenuIcon = _ref22 => {
789
+ var MenuIcon = _ref23 => {
761
790
  var {
762
791
  size = 24,
763
792
  color = 'currentColor',
764
793
  strokeWidth = 1
765
- } = _ref22,
766
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
794
+ } = _ref23,
795
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
767
796
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
768
797
  size: size,
769
798
  color: color
@@ -791,14 +820,14 @@ var MenuIcon = _ref22 => {
791
820
  y2: "18"
792
821
  })));
793
822
  };
794
- var ShareIcon = _ref23 => {
823
+ var ShareIcon = _ref24 => {
795
824
  var {
796
825
  size = 24,
797
826
  color = 'currentColor',
798
827
  filled = false,
799
828
  strokeWidth = 1
800
- } = _ref23,
801
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
829
+ } = _ref24,
830
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
802
831
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
803
832
  size: size,
804
833
  color: color
@@ -832,13 +861,13 @@ var ShareIcon = _ref23 => {
832
861
  y2: "10.49"
833
862
  })));
834
863
  };
835
- var RefreshIcon = _ref24 => {
864
+ var RefreshIcon = _ref25 => {
836
865
  var {
837
866
  size = 24,
838
867
  color = 'currentColor',
839
868
  strokeWidth = 1
840
- } = _ref24,
841
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
869
+ } = _ref25,
870
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
842
871
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
843
872
  size: size,
844
873
  color: color
@@ -852,14 +881,14 @@ var RefreshIcon = _ref24 => {
852
881
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
853
882
  })));
854
883
  };
855
- var PrintIcon = _ref25 => {
884
+ var PrintIcon = _ref26 => {
856
885
  var {
857
886
  size = 24,
858
887
  color = 'currentColor',
859
888
  filled = true,
860
889
  strokeWidth = 1
861
- } = _ref25,
862
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
890
+ } = _ref26,
891
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
863
892
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
864
893
  size: size,
865
894
  color: color
@@ -872,13 +901,13 @@ var PrintIcon = _ref25 => {
872
901
  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"
873
902
  })));
874
903
  };
875
- var PanelIcon = _ref26 => {
904
+ var PanelIcon = _ref27 => {
876
905
  var {
877
906
  size = 24,
878
907
  color = 'currentColor',
879
908
  strokeWidth = 1
880
- } = _ref26,
881
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
909
+ } = _ref27,
910
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
882
911
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
883
912
  size: size,
884
913
  color: color
@@ -942,14 +971,14 @@ var PanelIcon = _ref26 => {
942
971
  y2: "16"
943
972
  })));
944
973
  };
945
- var FilterIcon = _ref27 => {
974
+ var FilterIcon = _ref28 => {
946
975
  var {
947
976
  size = 24,
948
977
  color = 'currentColor',
949
978
  filled = false,
950
979
  strokeWidth = 1
951
- } = _ref27,
952
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
980
+ } = _ref28,
981
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
953
982
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
954
983
  size: size,
955
984
  color: color
@@ -961,14 +990,14 @@ var FilterIcon = _ref27 => {
961
990
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
962
991
  })));
963
992
  };
964
- var HomeIcon = _ref28 => {
993
+ var HomeIcon = _ref29 => {
965
994
  var {
966
995
  size = 24,
967
996
  color = 'currentColor',
968
997
  filled = true,
969
998
  strokeWidth = 1
970
- } = _ref28,
971
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
999
+ } = _ref29,
1000
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
972
1001
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
973
1002
  size: size,
974
1003
  color: color
@@ -980,14 +1009,14 @@ var HomeIcon = _ref28 => {
980
1009
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
981
1010
  })));
982
1011
  };
983
- var LocationIcon = _ref29 => {
1012
+ var LocationIcon = _ref30 => {
984
1013
  var {
985
1014
  size = 24,
986
1015
  color = 'currentColor',
987
1016
  filled = true,
988
1017
  strokeWidth = 1
989
- } = _ref29,
990
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
1018
+ } = _ref30,
1019
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
991
1020
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
992
1021
  size: size,
993
1022
  color: color
@@ -999,14 +1028,14 @@ var LocationIcon = _ref29 => {
999
1028
  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"
1000
1029
  })));
1001
1030
  };
1002
- var LockIcon = _ref30 => {
1031
+ var LockIcon = _ref31 => {
1003
1032
  var {
1004
1033
  size = 24,
1005
1034
  color = 'currentColor',
1006
1035
  filled = false,
1007
1036
  strokeWidth = 1
1008
- } = _ref30,
1009
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
1037
+ } = _ref31,
1038
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1010
1039
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1011
1040
  size: size,
1012
1041
  color: color
@@ -1025,14 +1054,14 @@ var LockIcon = _ref30 => {
1025
1054
  d: "M7 11V7a5 5 0 0 1 10 0v4"
1026
1055
  })));
1027
1056
  };
1028
- var MicrophoneIcon = _ref31 => {
1057
+ var MicrophoneIcon = _ref32 => {
1029
1058
  var {
1030
1059
  size = 24,
1031
1060
  color = 'currentColor',
1032
1061
  filled = false,
1033
1062
  strokeWidth = 1
1034
- } = _ref31,
1035
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1063
+ } = _ref32,
1064
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1036
1065
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1037
1066
  size: size,
1038
1067
  color: color
@@ -1058,14 +1087,14 @@ var MicrophoneIcon = _ref31 => {
1058
1087
  y2: "23"
1059
1088
  })));
1060
1089
  };
1061
- var MoonIcon = _ref32 => {
1090
+ var MoonIcon = _ref33 => {
1062
1091
  var {
1063
1092
  size = 24,
1064
1093
  color = 'currentColor',
1065
1094
  filled = true,
1066
1095
  strokeWidth = 1
1067
- } = _ref32,
1068
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1096
+ } = _ref33,
1097
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1069
1098
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1070
1099
  size: size,
1071
1100
  color: color
@@ -1077,14 +1106,14 @@ var MoonIcon = _ref32 => {
1077
1106
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
1078
1107
  })));
1079
1108
  };
1080
- var NotificationIcon = _ref33 => {
1109
+ var NotificationIcon = _ref34 => {
1081
1110
  var {
1082
1111
  size = 24,
1083
1112
  color = 'currentColor',
1084
1113
  filled = false,
1085
1114
  strokeWidth = 1
1086
- } = _ref33,
1087
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1115
+ } = _ref34,
1116
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1088
1117
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1089
1118
  size: size,
1090
1119
  color: color
@@ -1098,14 +1127,14 @@ var NotificationIcon = _ref33 => {
1098
1127
  d: "M13.73 21a2 2 0 0 1-3.46 0"
1099
1128
  })));
1100
1129
  };
1101
- var OpenEyeIcon = _ref34 => {
1130
+ var OpenEyeIcon = _ref35 => {
1102
1131
  var {
1103
1132
  size = 24,
1104
1133
  color = 'currentColor',
1105
1134
  filled = true,
1106
1135
  strokeWidth = 1
1107
- } = _ref34,
1108
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1136
+ } = _ref35,
1137
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1109
1138
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1110
1139
  size: size,
1111
1140
  color: color
@@ -1117,14 +1146,14 @@ var OpenEyeIcon = _ref34 => {
1117
1146
  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"
1118
1147
  })));
1119
1148
  };
1120
- var ProfileIcon = _ref35 => {
1149
+ var ProfileIcon = _ref36 => {
1121
1150
  var {
1122
1151
  size = 24,
1123
1152
  color = 'currentColor',
1124
1153
  filled = true,
1125
1154
  strokeWidth = 1
1126
- } = _ref35,
1127
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1155
+ } = _ref36,
1156
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1128
1157
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1129
1158
  size: size,
1130
1159
  color: color
@@ -1137,14 +1166,14 @@ var ProfileIcon = _ref35 => {
1137
1166
  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"
1138
1167
  }), ' '));
1139
1168
  };
1140
- var SettingsIcon = _ref36 => {
1169
+ var SettingsIcon = _ref37 => {
1141
1170
  var {
1142
1171
  size = 24,
1143
1172
  color = 'currentColor',
1144
1173
  filled = false,
1145
1174
  strokeWidth = 1
1146
- } = _ref36,
1147
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1175
+ } = _ref37,
1176
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1148
1177
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1149
1178
  size: size,
1150
1179
  color: color
@@ -1156,14 +1185,14 @@ var SettingsIcon = _ref36 => {
1156
1185
  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"
1157
1186
  })));
1158
1187
  };
1159
- var SuccessIcon = _ref37 => {
1188
+ var SuccessIcon = _ref38 => {
1160
1189
  var {
1161
1190
  size = 24,
1162
1191
  color = 'currentColor',
1163
1192
  filled = true,
1164
1193
  strokeWidth = 1
1165
- } = _ref37,
1166
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1194
+ } = _ref38,
1195
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1167
1196
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1168
1197
  size: size,
1169
1198
  color: color
@@ -1175,14 +1204,14 @@ var SuccessIcon = _ref37 => {
1175
1204
  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"
1176
1205
  })));
1177
1206
  };
1178
- var UnLikeIcon = _ref38 => {
1207
+ var UnLikeIcon = _ref39 => {
1179
1208
  var {
1180
1209
  size = 24,
1181
1210
  color = 'currentColor',
1182
1211
  filled = true,
1183
1212
  strokeWidth = 1
1184
- } = _ref38,
1185
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1213
+ } = _ref39,
1214
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1186
1215
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1187
1216
  size: size,
1188
1217
  color: color
@@ -1194,13 +1223,13 @@ var UnLikeIcon = _ref38 => {
1194
1223
  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"
1195
1224
  })));
1196
1225
  };
1197
- var ClockIcon = _ref39 => {
1226
+ var ClockIcon = _ref40 => {
1198
1227
  var {
1199
1228
  size = 24,
1200
1229
  color = 'currentColor',
1201
1230
  strokeWidth = 1
1202
- } = _ref39,
1203
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1231
+ } = _ref40,
1232
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1204
1233
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1205
1234
  size: size,
1206
1235
  color: color
@@ -1216,13 +1245,13 @@ var ClockIcon = _ref39 => {
1216
1245
  points: "12 6 12 12 16 14"
1217
1246
  })));
1218
1247
  };
1219
- var CameraIcon = _ref40 => {
1248
+ var CameraIcon = _ref41 => {
1220
1249
  var {
1221
1250
  size = 24,
1222
1251
  color = 'currentColor',
1223
1252
  strokeWidth = 1
1224
- } = _ref40,
1225
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1253
+ } = _ref41,
1254
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1226
1255
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1227
1256
  size: size,
1228
1257
  color: color
@@ -1238,14 +1267,14 @@ var CameraIcon = _ref40 => {
1238
1267
  r: "4"
1239
1268
  })));
1240
1269
  };
1241
- var BluetoothIcon = _ref41 => {
1270
+ var BluetoothIcon = _ref42 => {
1242
1271
  var {
1243
1272
  size = 24,
1244
1273
  color = 'currentColor',
1245
1274
  filled = true,
1246
1275
  strokeWidth = 1
1247
- } = _ref41,
1248
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1276
+ } = _ref42,
1277
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1249
1278
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1250
1279
  size: size,
1251
1280
  color: color
@@ -1257,14 +1286,14 @@ var BluetoothIcon = _ref41 => {
1257
1286
  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"
1258
1287
  })));
1259
1288
  };
1260
- var LikeIcon = _ref42 => {
1289
+ var LikeIcon = _ref43 => {
1261
1290
  var {
1262
1291
  size = 24,
1263
1292
  color = 'currentColor',
1264
1293
  filled = true,
1265
1294
  strokeWidth = 1
1266
- } = _ref42,
1267
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1295
+ } = _ref43,
1296
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1268
1297
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1269
1298
  size: size,
1270
1299
  color: color
@@ -1276,14 +1305,14 @@ var LikeIcon = _ref42 => {
1276
1305
  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"
1277
1306
  })));
1278
1307
  };
1279
- var UnlockIcon = _ref43 => {
1308
+ var UnlockIcon = _ref44 => {
1280
1309
  var {
1281
1310
  size = 24,
1282
1311
  color = 'currentColor',
1283
1312
  filled = false,
1284
1313
  strokeWidth = 1
1285
- } = _ref43,
1286
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1314
+ } = _ref44,
1315
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1287
1316
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1288
1317
  size: size,
1289
1318
  color: color
@@ -1302,14 +1331,14 @@ var UnlockIcon = _ref43 => {
1302
1331
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1303
1332
  })));
1304
1333
  };
1305
- var WifiIcon = _ref44 => {
1334
+ var WifiIcon = _ref45 => {
1306
1335
  var {
1307
1336
  size = 24,
1308
1337
  color = 'currentColor',
1309
1338
  filled = false,
1310
1339
  strokeWidth = 1
1311
- } = _ref44,
1312
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1340
+ } = _ref45,
1341
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1313
1342
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1314
1343
  size: size,
1315
1344
  color: color
@@ -1321,14 +1350,14 @@ var WifiIcon = _ref44 => {
1321
1350
  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"
1322
1351
  })));
1323
1352
  };
1324
- var UploadIcon = _ref45 => {
1353
+ var UploadIcon = _ref46 => {
1325
1354
  var {
1326
1355
  size = 24,
1327
1356
  color = 'currentColor',
1328
1357
  filled = false,
1329
1358
  strokeWidth = 1
1330
- } = _ref45,
1331
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1359
+ } = _ref46,
1360
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1332
1361
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1333
1362
  size: size,
1334
1363
  color: color
@@ -1344,14 +1373,14 @@ var UploadIcon = _ref45 => {
1344
1373
  d: "M12 12l0 9"
1345
1374
  })));
1346
1375
  };
1347
- var SearchIcon = _ref46 => {
1376
+ var SearchIcon = _ref47 => {
1348
1377
  var {
1349
1378
  size = 24,
1350
1379
  color = 'currentColor',
1351
1380
  filled = true,
1352
1381
  strokeWidth = 1
1353
- } = _ref46,
1354
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1382
+ } = _ref47,
1383
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1355
1384
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1356
1385
  size: size,
1357
1386
  color: color
@@ -1363,14 +1392,14 @@ var SearchIcon = _ref46 => {
1363
1392
  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"
1364
1393
  })));
1365
1394
  };
1366
- var CloseEyeIcon = _ref47 => {
1395
+ var CloseEyeIcon = _ref48 => {
1367
1396
  var {
1368
1397
  size = 24,
1369
1398
  color = 'currentColor',
1370
1399
  filled = true,
1371
1400
  strokeWidth = 1
1372
- } = _ref47,
1373
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1401
+ } = _ref48,
1402
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1374
1403
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1375
1404
  size: size,
1376
1405
  color: color
@@ -1383,14 +1412,14 @@ var CloseEyeIcon = _ref47 => {
1383
1412
  fill: "currentColor"
1384
1413
  })));
1385
1414
  };
1386
- var ExternalLinkIcon = _ref48 => {
1415
+ var ExternalLinkIcon = _ref49 => {
1387
1416
  var {
1388
1417
  size = 24,
1389
1418
  color = 'currentColor',
1390
1419
  filled = true,
1391
1420
  strokeWidth = 1
1392
- } = _ref48,
1393
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1421
+ } = _ref49,
1422
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1394
1423
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1395
1424
  size: size,
1396
1425
  color: color
@@ -1402,14 +1431,14 @@ var ExternalLinkIcon = _ref48 => {
1402
1431
  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"
1403
1432
  })));
1404
1433
  };
1405
- var PlusIcon = _ref49 => {
1434
+ var PlusIcon = _ref50 => {
1406
1435
  var {
1407
1436
  size = 24,
1408
1437
  color = 'currentColor',
1409
1438
  filled = true,
1410
1439
  strokeWidth = 1
1411
- } = _ref49,
1412
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1440
+ } = _ref50,
1441
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1413
1442
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1414
1443
  size: size,
1415
1444
  color: color
@@ -1431,14 +1460,14 @@ var PlusIcon = _ref49 => {
1431
1460
  y2: "12"
1432
1461
  })));
1433
1462
  };
1434
- var TickIcon = _ref50 => {
1463
+ var TickIcon = _ref51 => {
1435
1464
  var {
1436
1465
  size = 24,
1437
1466
  color = 'currentColor',
1438
1467
  filled = true,
1439
1468
  strokeWidth = 1
1440
- } = _ref50,
1441
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1469
+ } = _ref51,
1470
+ props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1442
1471
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1443
1472
  size: size,
1444
1473
  color: color
@@ -1452,14 +1481,14 @@ var TickIcon = _ref50 => {
1452
1481
  strokeLinejoin: "round"
1453
1482
  })));
1454
1483
  };
1455
- var BoldArrowIcon = _ref51 => {
1484
+ var BoldArrowIcon = _ref52 => {
1456
1485
  var {
1457
1486
  size = 24,
1458
1487
  color = 'currentColor',
1459
1488
  filled = true,
1460
1489
  strokeWidth = 1
1461
- } = _ref51,
1462
- props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1490
+ } = _ref52,
1491
+ props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1463
1492
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1464
1493
  size: size,
1465
1494
  color: color
@@ -1471,14 +1500,14 @@ var BoldArrowIcon = _ref51 => {
1471
1500
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1472
1501
  })));
1473
1502
  };
1474
- var ArrowIcon = _ref52 => {
1503
+ var ArrowIcon = _ref53 => {
1475
1504
  var {
1476
1505
  size = 24,
1477
1506
  color = 'currentColor',
1478
1507
  filled = true,
1479
1508
  strokeWidth = 1
1480
- } = _ref52,
1481
- props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1509
+ } = _ref53,
1510
+ props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1482
1511
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1483
1512
  size: size,
1484
1513
  color: color
@@ -1496,14 +1525,14 @@ var ArrowIcon = _ref52 => {
1496
1525
  points: "6 12 12 6 18 12"
1497
1526
  })));
1498
1527
  };
1499
- var SpinnerIcon = _ref53 => {
1528
+ var SpinnerIcon = _ref54 => {
1500
1529
  var {
1501
1530
  size = 24,
1502
1531
  color = 'currentColor',
1503
1532
  filled = true,
1504
1533
  strokeWidth = 1
1505
- } = _ref53,
1506
- props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1534
+ } = _ref54,
1535
+ props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1507
1536
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1508
1537
  size: size,
1509
1538
  color: color
@@ -1521,13 +1550,13 @@ var SpinnerIcon = _ref53 => {
1521
1550
  strokeOpacity: "1"
1522
1551
  })));
1523
1552
  };
1524
- var CalendarIcon = _ref54 => {
1553
+ var CalendarIcon = _ref55 => {
1525
1554
  var {
1526
1555
  size = 24,
1527
1556
  color = 'currentColor',
1528
1557
  strokeWidth = 1
1529
- } = _ref54,
1530
- props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1558
+ } = _ref55,
1559
+ props = _objectWithoutPropertiesLoose(_ref55, _excluded55);
1531
1560
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1532
1561
  size: size,
1533
1562
  color: color
@@ -1566,6 +1595,7 @@ var CalendarIcon = _ref54 => {
1566
1595
  var Icon = {
1567
1596
  __proto__: null,
1568
1597
  ChevronIcon: ChevronIcon,
1598
+ TwitchIcon: TwitchIcon,
1569
1599
  CloseIcon: CloseIcon,
1570
1600
  InstagramIcon: InstagramIcon,
1571
1601
  YoutubeIcon: YoutubeIcon,
@@ -7360,5 +7390,5 @@ var ToggleGroupComponent = _ref => {
7360
7390
  // Expose the ToggleGroupComponent for import into other modules
7361
7391
  var ToggleGroup = ToggleGroupComponent;
7362
7392
 
7363
- export { Alert, ArrowIcon, AspectRatio, Avatar, Badge, BatteryIcon, BluetoothIcon, BoldArrowIcon, BookmarkIcon, Bottom, Button, CalendarIcon, CameraIcon, Center, CenterBase, Checkbox, ChevronIcon, ClockIcon, CloseEyeIcon, CloseIcon, CloudIcon, ComboBox, CopyIcon, CountryPicker, DatePicker, DownloadIcon, DustBinIcon, EditIcon, ErrorIcon, ExternalLinkIcon, FileImage, FileSVG, FilterIcon, FormikCheckbox, FormikComboBox, FormikCountryPicker, FormikDatePicker, FormikForm, FormikPassword, FormikSelect, FormikSwitch, FormikTextArea, FormikTextField, HeartIcon, HomeIcon, Horizontal, HorizontalBase, Icon, InfoIcon, Inline, InstagramIcon, Left, LikeIcon, Link, LinkedinIcon, Loader, LocationIcon, LockIcon, MenuIcon, MessageLayout, MessageView, MicrophoneIcon, MinusIcon, Modal, MoonIcon, NotificationIcon, OpenEyeIcon, PanelIcon, Password, PlusIcon, PrintIcon, ProfileIcon, RefreshIcon, Right, SaveIcon, SearchIcon, Select, SettingsIcon, ShareIcon, SpinnerIcon, StarIcon, SuccessIcon, Switch, Table, Tabs, Text, TextArea, TextField, ThreadsIcon, TickIcon, Toggle, ToggleGroup, Top, UnLikeIcon, UnlockIcon, UploadIcon, Vertical, VerticalBase, View, WarningIcon, WifiIcon, YoutubeIcon, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore };
7393
+ export { Alert, ArrowIcon, AspectRatio, Avatar, Badge, BatteryIcon, BluetoothIcon, BoldArrowIcon, BookmarkIcon, Bottom, Button, CalendarIcon, CameraIcon, Center, CenterBase, Checkbox, ChevronIcon, ClockIcon, CloseEyeIcon, CloseIcon, CloudIcon, ComboBox, CopyIcon, CountryPicker, DatePicker, DownloadIcon, DustBinIcon, EditIcon, ErrorIcon, ExternalLinkIcon, FileImage, FileSVG, FilterIcon, FormikCheckbox, FormikComboBox, FormikCountryPicker, FormikDatePicker, FormikForm, FormikPassword, FormikSelect, FormikSwitch, FormikTextArea, FormikTextField, HeartIcon, HomeIcon, Horizontal, HorizontalBase, Icon, InfoIcon, Inline, InstagramIcon, Left, LikeIcon, Link, LinkedinIcon, Loader, LocationIcon, LockIcon, MenuIcon, MessageLayout, MessageView, MicrophoneIcon, MinusIcon, Modal, MoonIcon, NotificationIcon, OpenEyeIcon, PanelIcon, Password, PlusIcon, PrintIcon, ProfileIcon, RefreshIcon, Right, SaveIcon, SearchIcon, Select, SettingsIcon, ShareIcon, SpinnerIcon, StarIcon, SuccessIcon, Switch, Table, Tabs, Text, TextArea, TextField, ThreadsIcon, TickIcon, Toggle, ToggleGroup, Top, TwitchIcon, UnLikeIcon, UnlockIcon, UploadIcon, Vertical, VerticalBase, View, WarningIcon, WifiIcon, YoutubeIcon, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore };
7364
7394
  //# sourceMappingURL=web.esm.js.map