@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.
@@ -229,15 +229,15 @@
229
229
  _excluded17 = ["size", "color", "filled", "strokeWidth"],
230
230
  _excluded18 = ["size", "color", "filled", "strokeWidth"],
231
231
  _excluded19 = ["size", "color", "filled", "strokeWidth"],
232
- _excluded20 = ["size", "color", "strokeWidth", "filled"],
232
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
233
233
  _excluded21 = ["size", "color", "filled", "strokeWidth"],
234
- _excluded22 = ["size", "color", "strokeWidth"],
234
+ _excluded22 = ["size", "color", "strokeWidth", "filled"],
235
235
  _excluded23 = ["size", "color", "filled", "strokeWidth"],
236
- _excluded24 = ["size", "color", "strokeWidth"],
236
+ _excluded24 = ["size", "color", "strokeWidth", "filled"],
237
237
  _excluded25 = ["size", "color", "filled", "strokeWidth"],
238
- _excluded26 = ["size", "color", "strokeWidth"],
238
+ _excluded26 = ["size", "color", "strokeWidth", "filled"],
239
239
  _excluded27 = ["size", "color", "filled", "strokeWidth"],
240
- _excluded28 = ["size", "color", "filled", "strokeWidth"],
240
+ _excluded28 = ["size", "color", "strokeWidth", "filled"],
241
241
  _excluded29 = ["size", "color", "filled", "strokeWidth"],
242
242
  _excluded30 = ["size", "color", "filled", "strokeWidth"],
243
243
  _excluded31 = ["size", "color", "filled", "strokeWidth"],
@@ -248,10 +248,10 @@
248
248
  _excluded36 = ["size", "color", "filled", "strokeWidth"],
249
249
  _excluded37 = ["size", "color", "filled", "strokeWidth"],
250
250
  _excluded38 = ["size", "color", "filled", "strokeWidth"],
251
- _excluded39 = ["size", "color", "strokeWidth"],
252
- _excluded40 = ["size", "color", "strokeWidth"],
253
- _excluded41 = ["size", "color", "filled", "strokeWidth"],
254
- _excluded42 = ["size", "color", "filled", "strokeWidth"],
251
+ _excluded39 = ["size", "color", "filled", "strokeWidth"],
252
+ _excluded40 = ["size", "color", "filled", "strokeWidth"],
253
+ _excluded41 = ["size", "color", "strokeWidth", "filled"],
254
+ _excluded42 = ["size", "color", "strokeWidth", "filled"],
255
255
  _excluded43 = ["size", "color", "filled", "strokeWidth"],
256
256
  _excluded44 = ["size", "color", "filled", "strokeWidth"],
257
257
  _excluded45 = ["size", "color", "filled", "strokeWidth"],
@@ -263,14 +263,16 @@
263
263
  _excluded51 = ["size", "color", "filled", "strokeWidth"],
264
264
  _excluded52 = ["size", "color", "filled", "strokeWidth"],
265
265
  _excluded53 = ["size", "color", "filled", "strokeWidth"],
266
- _excluded54 = ["size", "color", "strokeWidth"];
266
+ _excluded54 = ["size", "color", "filled", "strokeWidth"],
267
+ _excluded55 = ["size", "color", "filled", "strokeWidth"],
268
+ _excluded56 = ["size", "color", "strokeWidth", "filled"];
267
269
  // Default wrapper component for consistent sizing and styling
268
270
  var IconWrapper = _ref => {
269
271
  var {
270
272
  size,
271
273
  color = 'black',
272
274
  transform,
273
- orientation,
275
+ orientation = 'up',
274
276
  children
275
277
  } = _ref,
276
278
  rest = _objectWithoutPropertiesLoose(_ref, _excluded$4);
@@ -312,12 +314,12 @@
312
314
  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"
313
315
  })));
314
316
  };
315
- // Example of another Icon: CloseIcon
316
- var CloseIcon = _ref3 => {
317
+ // Example of a Twitch Icon
318
+ var TwitchIcon = _ref3 => {
317
319
  var {
318
320
  size = 24,
319
321
  color = 'currentColor',
320
- filled = false,
322
+ filled = true,
321
323
  strokeWidth = 1
322
324
  } = _ref3,
323
325
  props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
@@ -328,6 +330,34 @@
328
330
  viewBox: "0 0 24 24",
329
331
  "aria-hidden": "true",
330
332
  focusable: "false"
333
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
334
+ d: "M2 2v16h5v4l4-4h5l6-6V2H2zm18 10-3 3h-5l-3 3v-3H4V4h16v8z",
335
+ fill: filled ? color : 'none',
336
+ stroke: color,
337
+ strokeWidth: filled ? 0 : strokeWidth
338
+ }), /*#__PURE__*/React__default.createElement("path", {
339
+ d: "M14 7h2v5h-2V7zm-4 0h2v5H10V7z",
340
+ fill: filled ? color : 'none',
341
+ stroke: color,
342
+ strokeWidth: filled ? 0 : strokeWidth
343
+ })));
344
+ };
345
+ // Example of another Icon: CloseIcon
346
+ var CloseIcon = _ref4 => {
347
+ var {
348
+ size = 24,
349
+ color = 'currentColor',
350
+ filled = false,
351
+ strokeWidth = 1
352
+ } = _ref4,
353
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
354
+ return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
355
+ size: size,
356
+ color: color
357
+ }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
358
+ viewBox: "0 0 24 24",
359
+ "aria-hidden": "true",
360
+ focusable: "false"
331
361
  }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
332
362
  stroke: color,
333
363
  x1: "18",
@@ -342,14 +372,14 @@
342
372
  y2: "18"
343
373
  })));
344
374
  };
345
- var InstagramIcon = _ref4 => {
375
+ var InstagramIcon = _ref5 => {
346
376
  var {
347
377
  size = 24,
348
378
  color = 'currentColor',
349
379
  filled = false,
350
380
  strokeWidth = 1
351
- } = _ref4,
352
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
381
+ } = _ref5,
382
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
353
383
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
354
384
  size: size,
355
385
  color: color
@@ -373,33 +403,64 @@
373
403
  y2: "6.5"
374
404
  })));
375
405
  };
376
- var YoutubeIcon = _ref5 => {
406
+ var YoutubeIcon = _ref6 => {
377
407
  var {
378
408
  size = 24,
379
409
  color = 'currentColor',
380
- filled = false,
410
+ filled = true,
381
411
  strokeWidth = 1
382
- } = _ref5,
383
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
412
+ } = _ref6,
413
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
384
414
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
385
415
  size: size,
386
416
  color: color
387
417
  }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
388
- viewBox: "0 0 24 24"
418
+ viewBox: "0 0 24 24",
419
+ "aria-hidden": "true",
420
+ focusable: "false"
389
421
  }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
390
- 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"
422
+ 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",
423
+ fill: filled ? color : 'none',
424
+ stroke: filled ? 'none' : color,
425
+ strokeWidth: filled ? 0 : strokeWidth
391
426
  }), /*#__PURE__*/React__default.createElement("polygon", {
392
- points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
427
+ points: "10 8 10 14 14 10",
428
+ fill: "white" // Ensures the play button is transparent
429
+ ,
430
+ stroke: 'white',
431
+ strokeWidth: strokeWidth
393
432
  })));
394
433
  };
395
- var LinkedinIcon = _ref6 => {
434
+ var FacebookIcon = _ref7 => {
396
435
  var {
397
436
  size = 24,
398
437
  color = 'currentColor',
399
438
  filled = true,
400
439
  strokeWidth = 1
401
- } = _ref6,
402
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
440
+ } = _ref7,
441
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
442
+ return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
443
+ size: size,
444
+ color: color
445
+ }, props), /*#__PURE__*/React__default.createElement("svg", Object.assign({
446
+ viewBox: "0 0 24 24",
447
+ "aria-hidden": "true",
448
+ focusable: "false"
449
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
450
+ d: "M22 2H2v20h10v-7h-2v-3h2V9.5a4 4 0 0 1 4-4h3v3h-3a1 1 0 0 0-1 1V12h4l-1 3h-3v7h6V2z",
451
+ fill: filled ? color : 'none',
452
+ stroke: color,
453
+ strokeWidth: filled ? 0 : strokeWidth
454
+ })));
455
+ };
456
+ var LinkedinIcon = _ref8 => {
457
+ var {
458
+ size = 24,
459
+ color = 'currentColor',
460
+ filled = true,
461
+ strokeWidth = 1
462
+ } = _ref8,
463
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
403
464
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
404
465
  size: size,
405
466
  color: color
@@ -418,14 +479,14 @@
418
479
  r: "2"
419
480
  })));
420
481
  };
421
- var ThreadsIcon = _ref7 => {
482
+ var ThreadsIcon = _ref9 => {
422
483
  var {
423
484
  size = 24,
424
485
  color = 'currentColor',
425
486
  filled = false,
426
487
  strokeWidth = 1
427
- } = _ref7,
428
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
488
+ } = _ref9,
489
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
429
490
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
430
491
  size: size,
431
492
  color: color
@@ -440,15 +501,15 @@
440
501
  })));
441
502
  };
442
503
  // Example Refactored Icon: MinusIcon without undefined 'padding' prop
443
- var MinusIcon = _ref8 => {
504
+ var MinusIcon = _ref10 => {
444
505
  var {
445
506
  size = 24,
446
507
  color = 'currentColor',
447
508
  filled = false,
448
509
  // Assuming minus can be filled; adjust as needed
449
510
  strokeWidth = 1
450
- } = _ref8,
451
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
511
+ } = _ref10,
512
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
452
513
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
453
514
  size: size,
454
515
  color: color
@@ -465,14 +526,14 @@
465
526
  })));
466
527
  };
467
528
  // Example Refactored Icon: InfoIcon with accessibility enhancements
468
- var InfoIcon = _ref9 => {
529
+ var InfoIcon = _ref11 => {
469
530
  var {
470
531
  size = 24,
471
532
  color = 'currentColor',
472
533
  filled = false,
473
534
  strokeWidth = 1
474
- } = _ref9,
475
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
535
+ } = _ref11,
536
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
476
537
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
477
538
  size: size,
478
539
  color: color
@@ -486,14 +547,14 @@
486
547
  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"
487
548
  })));
488
549
  };
489
- var HeartIcon = _ref10 => {
550
+ var HeartIcon = _ref12 => {
490
551
  var {
491
552
  size = 24,
492
553
  color = 'currentColor',
493
554
  filled = true,
494
555
  strokeWidth = 1
495
- } = _ref10,
496
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
556
+ } = _ref12,
557
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
497
558
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
498
559
  size: size,
499
560
  color: color
@@ -505,14 +566,14 @@
505
566
  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"
506
567
  })));
507
568
  };
508
- var StarIcon = _ref11 => {
569
+ var StarIcon = _ref13 => {
509
570
  var {
510
571
  size = 24,
511
572
  color = 'currentColor',
512
573
  filled = true,
513
574
  strokeWidth = 1
514
- } = _ref11,
515
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
575
+ } = _ref13,
576
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
516
577
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
517
578
  size: size,
518
579
  color: color
@@ -524,14 +585,14 @@
524
585
  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"
525
586
  })));
526
587
  };
527
- var SaveIcon = _ref12 => {
588
+ var SaveIcon = _ref14 => {
528
589
  var {
529
590
  size = 24,
530
591
  color = 'currentColor',
531
592
  filled = false,
532
593
  strokeWidth = 1
533
- } = _ref12,
534
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
594
+ } = _ref14,
595
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
535
596
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
536
597
  size: size,
537
598
  color: color
@@ -547,14 +608,14 @@
547
608
  points: "7 3 7 8 15 8"
548
609
  })));
549
610
  };
550
- var WarningIcon = _ref13 => {
611
+ var WarningIcon = _ref15 => {
551
612
  var {
552
613
  size = 24,
553
614
  color = 'currentColor',
554
615
  filled = false,
555
616
  strokeWidth = 1
556
- } = _ref13,
557
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
617
+ } = _ref15,
618
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
558
619
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
559
620
  size: size,
560
621
  color: color
@@ -578,14 +639,14 @@
578
639
  y2: "15"
579
640
  })));
580
641
  };
581
- var BatteryIcon = _ref14 => {
642
+ var BatteryIcon = _ref16 => {
582
643
  var {
583
644
  size = 24,
584
645
  color = 'currentColor',
585
646
  filled = true,
586
647
  strokeWidth = 1
587
- } = _ref14,
588
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
648
+ } = _ref16,
649
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
589
650
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
590
651
  size: size,
591
652
  color: color
@@ -597,14 +658,14 @@
597
658
  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"
598
659
  })));
599
660
  };
600
- var BookmarkIcon = _ref15 => {
661
+ var BookmarkIcon = _ref17 => {
601
662
  var {
602
663
  size = 24,
603
664
  color = 'currentColor',
604
665
  filled = false,
605
666
  strokeWidth = 1
606
- } = _ref15,
607
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
667
+ } = _ref17,
668
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
608
669
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
609
670
  size: size,
610
671
  color: color
@@ -616,14 +677,14 @@
616
677
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
617
678
  })));
618
679
  };
619
- var CloudIcon = _ref16 => {
680
+ var CloudIcon = _ref18 => {
620
681
  var {
621
682
  size = 24,
622
683
  color = 'currentColor',
623
- filled = false,
684
+ filled = true,
624
685
  strokeWidth = 1
625
- } = _ref16,
626
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
686
+ } = _ref18,
687
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
627
688
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
628
689
  size: size,
629
690
  color: color
@@ -635,14 +696,14 @@
635
696
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
636
697
  })));
637
698
  };
638
- var CopyIcon = _ref17 => {
699
+ var CopyIcon = _ref19 => {
639
700
  var {
640
701
  size = 24,
641
702
  color = 'currentColor',
642
703
  filled = false,
643
704
  strokeWidth = 1
644
- } = _ref17,
645
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
705
+ } = _ref19,
706
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
646
707
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
647
708
  size: size,
648
709
  color: color
@@ -661,14 +722,14 @@
661
722
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
662
723
  })));
663
724
  };
664
- var DustBinIcon = _ref18 => {
725
+ var DustBinIcon = _ref20 => {
665
726
  var {
666
727
  size = 24,
667
728
  color = 'currentColor',
668
729
  filled = false,
669
730
  strokeWidth = 1
670
- } = _ref18,
671
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
731
+ } = _ref20,
732
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
672
733
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
673
734
  size: size,
674
735
  color: color
@@ -680,14 +741,14 @@
680
741
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
681
742
  })));
682
743
  };
683
- var EditIcon = _ref19 => {
744
+ var EditIcon = _ref21 => {
684
745
  var {
685
746
  size = 24,
686
747
  color = 'currentColor',
687
748
  filled = false,
688
749
  strokeWidth = 1
689
- } = _ref19,
690
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
750
+ } = _ref21,
751
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
691
752
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
692
753
  size: size,
693
754
  color: color
@@ -699,14 +760,14 @@
699
760
  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"
700
761
  })));
701
762
  };
702
- var ErrorIcon = _ref20 => {
763
+ var ErrorIcon = _ref22 => {
703
764
  var {
704
765
  size = 24,
705
766
  color = 'currentColor',
706
767
  strokeWidth = 1,
707
768
  filled = true
708
- } = _ref20,
709
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
769
+ } = _ref22,
770
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
710
771
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
711
772
  size: size,
712
773
  color: color
@@ -732,14 +793,14 @@
732
793
  stroke: filled ? 'white' : color
733
794
  })));
734
795
  };
735
- var DownloadIcon = _ref21 => {
796
+ var DownloadIcon = _ref23 => {
736
797
  var {
737
798
  size = 24,
738
799
  color = 'currentColor',
739
800
  filled = true,
740
801
  strokeWidth = 1
741
- } = _ref21,
742
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
802
+ } = _ref23,
803
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
743
804
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
744
805
  size: size,
745
806
  color: color
@@ -751,13 +812,14 @@
751
812
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
752
813
  })));
753
814
  };
754
- var MenuIcon = _ref22 => {
815
+ var MenuIcon = _ref24 => {
755
816
  var {
756
817
  size = 24,
757
818
  color = 'currentColor',
758
- strokeWidth = 1
759
- } = _ref22,
760
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
819
+ strokeWidth = 1,
820
+ filled = false
821
+ } = _ref24,
822
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
761
823
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
762
824
  size: size,
763
825
  color: color
@@ -765,7 +827,7 @@
765
827
  viewBox: "0 0 24 24",
766
828
  "aria-hidden": "false",
767
829
  focusable: "false"
768
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
830
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
769
831
  stroke: color,
770
832
  x1: "3",
771
833
  y1: "12",
@@ -785,14 +847,14 @@
785
847
  y2: "18"
786
848
  })));
787
849
  };
788
- var ShareIcon = _ref23 => {
850
+ var ShareIcon = _ref25 => {
789
851
  var {
790
852
  size = 24,
791
853
  color = 'currentColor',
792
854
  filled = false,
793
855
  strokeWidth = 1
794
- } = _ref23,
795
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
856
+ } = _ref25,
857
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
796
858
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
797
859
  size: size,
798
860
  color: color
@@ -826,13 +888,14 @@
826
888
  y2: "10.49"
827
889
  })));
828
890
  };
829
- var RefreshIcon = _ref24 => {
891
+ var RefreshIcon = _ref26 => {
830
892
  var {
831
893
  size = 24,
832
894
  color = 'currentColor',
833
- strokeWidth = 1
834
- } = _ref24,
835
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
895
+ strokeWidth = 1,
896
+ filled = false
897
+ } = _ref26,
898
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
836
899
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
837
900
  size: size,
838
901
  color: color
@@ -840,20 +903,20 @@
840
903
  viewBox: "0 0 24 24",
841
904
  "aria-hidden": "false",
842
905
  focusable: "false"
843
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("polyline", {
906
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("polyline", {
844
907
  points: "23 4 23 10 17 10"
845
908
  }), /*#__PURE__*/React__default.createElement("path", {
846
909
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
847
910
  })));
848
911
  };
849
- var PrintIcon = _ref25 => {
912
+ var PrintIcon = _ref27 => {
850
913
  var {
851
914
  size = 24,
852
915
  color = 'currentColor',
853
916
  filled = true,
854
917
  strokeWidth = 1
855
- } = _ref25,
856
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
918
+ } = _ref27,
919
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
857
920
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
858
921
  size: size,
859
922
  color: color
@@ -866,13 +929,14 @@
866
929
  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"
867
930
  })));
868
931
  };
869
- var PanelIcon = _ref26 => {
932
+ var PanelIcon = _ref28 => {
870
933
  var {
871
934
  size = 24,
872
935
  color = 'currentColor',
873
- strokeWidth = 1
874
- } = _ref26,
875
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
936
+ strokeWidth = 1,
937
+ filled = false
938
+ } = _ref28,
939
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
876
940
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
877
941
  size: size,
878
942
  color: color
@@ -880,7 +944,7 @@
880
944
  viewBox: "0 0 24 24",
881
945
  "aria-hidden": "false",
882
946
  focusable: "false"
883
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
947
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
884
948
  stroke: color,
885
949
  x1: "4",
886
950
  y1: "21",
@@ -936,14 +1000,14 @@
936
1000
  y2: "16"
937
1001
  })));
938
1002
  };
939
- var FilterIcon = _ref27 => {
1003
+ var FilterIcon = _ref29 => {
940
1004
  var {
941
1005
  size = 24,
942
1006
  color = 'currentColor',
943
1007
  filled = false,
944
1008
  strokeWidth = 1
945
- } = _ref27,
946
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
1009
+ } = _ref29,
1010
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
947
1011
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
948
1012
  size: size,
949
1013
  color: color
@@ -955,14 +1019,14 @@
955
1019
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
956
1020
  })));
957
1021
  };
958
- var HomeIcon = _ref28 => {
1022
+ var HomeIcon = _ref30 => {
959
1023
  var {
960
1024
  size = 24,
961
1025
  color = 'currentColor',
962
1026
  filled = true,
963
1027
  strokeWidth = 1
964
- } = _ref28,
965
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
1028
+ } = _ref30,
1029
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
966
1030
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
967
1031
  size: size,
968
1032
  color: color
@@ -974,14 +1038,14 @@
974
1038
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
975
1039
  })));
976
1040
  };
977
- var LocationIcon = _ref29 => {
1041
+ var LocationIcon = _ref31 => {
978
1042
  var {
979
1043
  size = 24,
980
1044
  color = 'currentColor',
981
1045
  filled = true,
982
1046
  strokeWidth = 1
983
- } = _ref29,
984
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
1047
+ } = _ref31,
1048
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
985
1049
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
986
1050
  size: size,
987
1051
  color: color
@@ -993,14 +1057,14 @@
993
1057
  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"
994
1058
  })));
995
1059
  };
996
- var LockIcon = _ref30 => {
1060
+ var LockIcon = _ref32 => {
997
1061
  var {
998
1062
  size = 24,
999
1063
  color = 'currentColor',
1000
1064
  filled = false,
1001
1065
  strokeWidth = 1
1002
- } = _ref30,
1003
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
1066
+ } = _ref32,
1067
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1004
1068
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1005
1069
  size: size,
1006
1070
  color: color
@@ -1019,14 +1083,14 @@
1019
1083
  d: "M7 11V7a5 5 0 0 1 10 0v4"
1020
1084
  })));
1021
1085
  };
1022
- var MicrophoneIcon = _ref31 => {
1086
+ var MicrophoneIcon = _ref33 => {
1023
1087
  var {
1024
1088
  size = 24,
1025
1089
  color = 'currentColor',
1026
1090
  filled = false,
1027
1091
  strokeWidth = 1
1028
- } = _ref31,
1029
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1092
+ } = _ref33,
1093
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1030
1094
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1031
1095
  size: size,
1032
1096
  color: color
@@ -1052,14 +1116,14 @@
1052
1116
  y2: "23"
1053
1117
  })));
1054
1118
  };
1055
- var MoonIcon = _ref32 => {
1119
+ var MoonIcon = _ref34 => {
1056
1120
  var {
1057
1121
  size = 24,
1058
1122
  color = 'currentColor',
1059
1123
  filled = true,
1060
1124
  strokeWidth = 1
1061
- } = _ref32,
1062
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1125
+ } = _ref34,
1126
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1063
1127
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1064
1128
  size: size,
1065
1129
  color: color
@@ -1071,14 +1135,14 @@
1071
1135
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
1072
1136
  })));
1073
1137
  };
1074
- var NotificationIcon = _ref33 => {
1138
+ var NotificationIcon = _ref35 => {
1075
1139
  var {
1076
1140
  size = 24,
1077
1141
  color = 'currentColor',
1078
1142
  filled = false,
1079
1143
  strokeWidth = 1
1080
- } = _ref33,
1081
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1144
+ } = _ref35,
1145
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1082
1146
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1083
1147
  size: size,
1084
1148
  color: color
@@ -1092,14 +1156,14 @@
1092
1156
  d: "M13.73 21a2 2 0 0 1-3.46 0"
1093
1157
  })));
1094
1158
  };
1095
- var OpenEyeIcon = _ref34 => {
1159
+ var OpenEyeIcon = _ref36 => {
1096
1160
  var {
1097
1161
  size = 24,
1098
1162
  color = 'currentColor',
1099
1163
  filled = true,
1100
1164
  strokeWidth = 1
1101
- } = _ref34,
1102
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1165
+ } = _ref36,
1166
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1103
1167
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1104
1168
  size: size,
1105
1169
  color: color
@@ -1111,14 +1175,14 @@
1111
1175
  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"
1112
1176
  })));
1113
1177
  };
1114
- var ProfileIcon = _ref35 => {
1178
+ var ProfileIcon = _ref37 => {
1115
1179
  var {
1116
1180
  size = 24,
1117
1181
  color = 'currentColor',
1118
1182
  filled = true,
1119
1183
  strokeWidth = 1
1120
- } = _ref35,
1121
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1184
+ } = _ref37,
1185
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1122
1186
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1123
1187
  size: size,
1124
1188
  color: color
@@ -1131,14 +1195,14 @@
1131
1195
  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"
1132
1196
  }), ' '));
1133
1197
  };
1134
- var SettingsIcon = _ref36 => {
1198
+ var SettingsIcon = _ref38 => {
1135
1199
  var {
1136
1200
  size = 24,
1137
1201
  color = 'currentColor',
1138
1202
  filled = false,
1139
1203
  strokeWidth = 1
1140
- } = _ref36,
1141
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1204
+ } = _ref38,
1205
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1142
1206
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1143
1207
  size: size,
1144
1208
  color: color
@@ -1150,14 +1214,14 @@
1150
1214
  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"
1151
1215
  })));
1152
1216
  };
1153
- var SuccessIcon = _ref37 => {
1217
+ var SuccessIcon = _ref39 => {
1154
1218
  var {
1155
1219
  size = 24,
1156
1220
  color = 'currentColor',
1157
1221
  filled = true,
1158
1222
  strokeWidth = 1
1159
- } = _ref37,
1160
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1223
+ } = _ref39,
1224
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1161
1225
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1162
1226
  size: size,
1163
1227
  color: color
@@ -1169,14 +1233,14 @@
1169
1233
  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"
1170
1234
  })));
1171
1235
  };
1172
- var UnLikeIcon = _ref38 => {
1236
+ var UnLikeIcon = _ref40 => {
1173
1237
  var {
1174
1238
  size = 24,
1175
1239
  color = 'currentColor',
1176
1240
  filled = true,
1177
1241
  strokeWidth = 1
1178
- } = _ref38,
1179
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1242
+ } = _ref40,
1243
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1180
1244
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1181
1245
  size: size,
1182
1246
  color: color
@@ -1188,13 +1252,14 @@
1188
1252
  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"
1189
1253
  })));
1190
1254
  };
1191
- var ClockIcon = _ref39 => {
1255
+ var ClockIcon = _ref41 => {
1192
1256
  var {
1193
1257
  size = 24,
1194
1258
  color = 'currentColor',
1195
- strokeWidth = 1
1196
- } = _ref39,
1197
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1259
+ strokeWidth = 1,
1260
+ filled = false
1261
+ } = _ref41,
1262
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1198
1263
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1199
1264
  size: size,
1200
1265
  color: color
@@ -1202,7 +1267,7 @@
1202
1267
  viewBox: "0 0 24 24",
1203
1268
  "aria-hidden": "false",
1204
1269
  focusable: "false"
1205
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1270
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1206
1271
  cx: "12",
1207
1272
  cy: "12",
1208
1273
  r: "10"
@@ -1210,13 +1275,14 @@
1210
1275
  points: "12 6 12 12 16 14"
1211
1276
  })));
1212
1277
  };
1213
- var CameraIcon = _ref40 => {
1278
+ var CameraIcon = _ref42 => {
1214
1279
  var {
1215
1280
  size = 24,
1216
1281
  color = 'currentColor',
1217
- strokeWidth = 1
1218
- } = _ref40,
1219
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1282
+ strokeWidth = 1,
1283
+ filled = false
1284
+ } = _ref42,
1285
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1220
1286
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1221
1287
  size: size,
1222
1288
  color: color
@@ -1224,7 +1290,7 @@
1224
1290
  viewBox: "0 0 24 24",
1225
1291
  "aria-hidden": "false",
1226
1292
  focusable: "false"
1227
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1293
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1228
1294
  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"
1229
1295
  }), /*#__PURE__*/React__default.createElement("circle", {
1230
1296
  cx: "12",
@@ -1232,14 +1298,14 @@
1232
1298
  r: "4"
1233
1299
  })));
1234
1300
  };
1235
- var BluetoothIcon = _ref41 => {
1301
+ var BluetoothIcon = _ref43 => {
1236
1302
  var {
1237
1303
  size = 24,
1238
1304
  color = 'currentColor',
1239
1305
  filled = true,
1240
1306
  strokeWidth = 1
1241
- } = _ref41,
1242
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1307
+ } = _ref43,
1308
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1243
1309
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1244
1310
  size: size,
1245
1311
  color: color
@@ -1247,18 +1313,18 @@
1247
1313
  viewBox: "0 0 24 24",
1248
1314
  "aria-hidden": "false",
1249
1315
  focusable: "false"
1250
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1316
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1251
1317
  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"
1252
1318
  })));
1253
1319
  };
1254
- var LikeIcon = _ref42 => {
1320
+ var LikeIcon = _ref44 => {
1255
1321
  var {
1256
1322
  size = 24,
1257
1323
  color = 'currentColor',
1258
1324
  filled = true,
1259
1325
  strokeWidth = 1
1260
- } = _ref42,
1261
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1326
+ } = _ref44,
1327
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1262
1328
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1263
1329
  size: size,
1264
1330
  color: color
@@ -1270,14 +1336,14 @@
1270
1336
  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"
1271
1337
  })));
1272
1338
  };
1273
- var UnlockIcon = _ref43 => {
1339
+ var UnlockIcon = _ref45 => {
1274
1340
  var {
1275
1341
  size = 24,
1276
1342
  color = 'currentColor',
1277
1343
  filled = false,
1278
1344
  strokeWidth = 1
1279
- } = _ref43,
1280
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1345
+ } = _ref45,
1346
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1281
1347
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1282
1348
  size: size,
1283
1349
  color: color
@@ -1296,14 +1362,14 @@
1296
1362
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1297
1363
  })));
1298
1364
  };
1299
- var WifiIcon = _ref44 => {
1365
+ var WifiIcon = _ref46 => {
1300
1366
  var {
1301
1367
  size = 24,
1302
1368
  color = 'currentColor',
1303
1369
  filled = false,
1304
1370
  strokeWidth = 1
1305
- } = _ref44,
1306
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1371
+ } = _ref46,
1372
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1307
1373
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1308
1374
  size: size,
1309
1375
  color: color
@@ -1315,14 +1381,14 @@
1315
1381
  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"
1316
1382
  })));
1317
1383
  };
1318
- var UploadIcon = _ref45 => {
1384
+ var UploadIcon = _ref47 => {
1319
1385
  var {
1320
1386
  size = 24,
1321
1387
  color = 'currentColor',
1322
1388
  filled = false,
1323
1389
  strokeWidth = 1
1324
- } = _ref45,
1325
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1390
+ } = _ref47,
1391
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1326
1392
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1327
1393
  size: size,
1328
1394
  color: color
@@ -1338,14 +1404,14 @@
1338
1404
  d: "M12 12l0 9"
1339
1405
  })));
1340
1406
  };
1341
- var SearchIcon = _ref46 => {
1407
+ var SearchIcon = _ref48 => {
1342
1408
  var {
1343
1409
  size = 24,
1344
1410
  color = 'currentColor',
1345
1411
  filled = true,
1346
1412
  strokeWidth = 1
1347
- } = _ref46,
1348
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1413
+ } = _ref48,
1414
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1349
1415
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1350
1416
  size: size,
1351
1417
  color: color
@@ -1353,18 +1419,18 @@
1353
1419
  viewBox: "0 0 24 24",
1354
1420
  "aria-hidden": "false",
1355
1421
  focusable: "false"
1356
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1422
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1357
1423
  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"
1358
1424
  })));
1359
1425
  };
1360
- var CloseEyeIcon = _ref47 => {
1426
+ var CloseEyeIcon = _ref49 => {
1361
1427
  var {
1362
1428
  size = 24,
1363
1429
  color = 'currentColor',
1364
1430
  filled = true,
1365
1431
  strokeWidth = 1
1366
- } = _ref47,
1367
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1432
+ } = _ref49,
1433
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1368
1434
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1369
1435
  size: size,
1370
1436
  color: color
@@ -1372,19 +1438,19 @@
1372
1438
  viewBox: "0 0 24 24",
1373
1439
  "aria-hidden": "false",
1374
1440
  focusable: "false"
1375
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1441
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1376
1442
  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",
1377
1443
  fill: "currentColor"
1378
1444
  })));
1379
1445
  };
1380
- var ExternalLinkIcon = _ref48 => {
1446
+ var ExternalLinkIcon = _ref50 => {
1381
1447
  var {
1382
1448
  size = 24,
1383
1449
  color = 'currentColor',
1384
1450
  filled = true,
1385
1451
  strokeWidth = 1
1386
- } = _ref48,
1387
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1452
+ } = _ref50,
1453
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1388
1454
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1389
1455
  size: size,
1390
1456
  color: color
@@ -1392,18 +1458,18 @@
1392
1458
  viewBox: "0 0 24 24",
1393
1459
  "aria-hidden": "false",
1394
1460
  focusable: "false"
1395
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1461
+ }, getSvgProps(true, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1396
1462
  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"
1397
1463
  })));
1398
1464
  };
1399
- var PlusIcon = _ref49 => {
1465
+ var PlusIcon = _ref51 => {
1400
1466
  var {
1401
1467
  size = 24,
1402
1468
  color = 'currentColor',
1403
- filled = true,
1469
+ filled = false,
1404
1470
  strokeWidth = 1
1405
- } = _ref49,
1406
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1471
+ } = _ref51,
1472
+ props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1407
1473
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1408
1474
  size: size,
1409
1475
  color: color
@@ -1411,7 +1477,7 @@
1411
1477
  viewBox: "0 0 24 24",
1412
1478
  "aria-hidden": "false",
1413
1479
  focusable: "false"
1414
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1480
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1415
1481
  stroke: color,
1416
1482
  x1: "12",
1417
1483
  y1: "5",
@@ -1425,14 +1491,14 @@
1425
1491
  y2: "12"
1426
1492
  })));
1427
1493
  };
1428
- var TickIcon = _ref50 => {
1494
+ var TickIcon = _ref52 => {
1429
1495
  var {
1430
1496
  size = 24,
1431
1497
  color = 'currentColor',
1432
- filled = true,
1498
+ filled = false,
1433
1499
  strokeWidth = 1
1434
- } = _ref50,
1435
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1500
+ } = _ref52,
1501
+ props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1436
1502
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1437
1503
  size: size,
1438
1504
  color: color
@@ -1440,20 +1506,20 @@
1440
1506
  viewBox: "0 0 24 24",
1441
1507
  "aria-hidden": "false",
1442
1508
  focusable: "false"
1443
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1509
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1444
1510
  d: "M5 13l4 4L19 7",
1445
1511
  strokeLinecap: "round",
1446
1512
  strokeLinejoin: "round"
1447
1513
  })));
1448
1514
  };
1449
- var BoldArrowIcon = _ref51 => {
1515
+ var BoldArrowIcon = _ref53 => {
1450
1516
  var {
1451
1517
  size = 24,
1452
1518
  color = 'currentColor',
1453
1519
  filled = true,
1454
1520
  strokeWidth = 1
1455
- } = _ref51,
1456
- props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1521
+ } = _ref53,
1522
+ props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1457
1523
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1458
1524
  size: size,
1459
1525
  color: color
@@ -1461,18 +1527,18 @@
1461
1527
  viewBox: "0 0 24 24",
1462
1528
  "aria-hidden": "false",
1463
1529
  focusable: "false"
1464
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1530
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("path", {
1465
1531
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1466
1532
  })));
1467
1533
  };
1468
- var ArrowIcon = _ref52 => {
1534
+ var ArrowIcon = _ref54 => {
1469
1535
  var {
1470
1536
  size = 24,
1471
1537
  color = 'currentColor',
1472
- filled = true,
1538
+ filled = false,
1473
1539
  strokeWidth = 1
1474
- } = _ref52,
1475
- props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1540
+ } = _ref54,
1541
+ props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1476
1542
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1477
1543
  size: size,
1478
1544
  color: color
@@ -1480,7 +1546,7 @@
1480
1546
  viewBox: "0 0 24 24",
1481
1547
  "aria-hidden": "false",
1482
1548
  focusable: "false"
1483
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1549
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("line", {
1484
1550
  stroke: color,
1485
1551
  x1: "12",
1486
1552
  y1: "20",
@@ -1490,14 +1556,14 @@
1490
1556
  points: "6 12 12 6 18 12"
1491
1557
  })));
1492
1558
  };
1493
- var SpinnerIcon = _ref53 => {
1559
+ var SpinnerIcon = _ref55 => {
1494
1560
  var {
1495
1561
  size = 24,
1496
1562
  color = 'currentColor',
1497
- filled = true,
1563
+ filled = false,
1498
1564
  strokeWidth = 1
1499
- } = _ref53,
1500
- props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1565
+ } = _ref55,
1566
+ props = _objectWithoutPropertiesLoose(_ref55, _excluded55);
1501
1567
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1502
1568
  size: size,
1503
1569
  color: color
@@ -1505,7 +1571,7 @@
1505
1571
  viewBox: "0 0 24 24",
1506
1572
  "aria-hidden": "false",
1507
1573
  focusable: "false"
1508
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1574
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("circle", {
1509
1575
  cx: "12",
1510
1576
  cy: "12",
1511
1577
  r: "10",
@@ -1515,13 +1581,14 @@
1515
1581
  strokeOpacity: "1"
1516
1582
  })));
1517
1583
  };
1518
- var CalendarIcon = _ref54 => {
1584
+ var CalendarIcon = _ref56 => {
1519
1585
  var {
1520
1586
  size = 24,
1521
1587
  color = 'currentColor',
1522
- strokeWidth = 1
1523
- } = _ref54,
1524
- props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1588
+ strokeWidth = 1,
1589
+ filled = false
1590
+ } = _ref56,
1591
+ props = _objectWithoutPropertiesLoose(_ref56, _excluded56);
1525
1592
  return /*#__PURE__*/React__default.createElement(IconWrapper, Object.assign({
1526
1593
  size: size,
1527
1594
  color: color
@@ -1529,7 +1596,7 @@
1529
1596
  viewBox: "0 0 24 24",
1530
1597
  "aria-hidden": "false",
1531
1598
  focusable: "false"
1532
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
1599
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React__default.createElement("rect", {
1533
1600
  x: "3",
1534
1601
  y: "4",
1535
1602
  width: "18",
@@ -1560,9 +1627,11 @@
1560
1627
  var Icon = {
1561
1628
  __proto__: null,
1562
1629
  ChevronIcon: ChevronIcon,
1630
+ TwitchIcon: TwitchIcon,
1563
1631
  CloseIcon: CloseIcon,
1564
1632
  InstagramIcon: InstagramIcon,
1565
1633
  YoutubeIcon: YoutubeIcon,
1634
+ FacebookIcon: FacebookIcon,
1566
1635
  LinkedinIcon: LinkedinIcon,
1567
1636
  ThreadsIcon: ThreadsIcon,
1568
1637
  MinusIcon: MinusIcon,
@@ -7384,6 +7453,7 @@
7384
7453
  exports.EditIcon = EditIcon;
7385
7454
  exports.ErrorIcon = ErrorIcon;
7386
7455
  exports.ExternalLinkIcon = ExternalLinkIcon;
7456
+ exports.FacebookIcon = FacebookIcon;
7387
7457
  exports.FileImage = FileImage;
7388
7458
  exports.FileSVG = FileSVG;
7389
7459
  exports.FilterIcon = FilterIcon;
@@ -7447,6 +7517,7 @@
7447
7517
  exports.Toggle = Toggle;
7448
7518
  exports.ToggleGroup = ToggleGroup;
7449
7519
  exports.Top = Top;
7520
+ exports.TwitchIcon = TwitchIcon;
7450
7521
  exports.UnLikeIcon = UnLikeIcon;
7451
7522
  exports.UnlockIcon = UnlockIcon;
7452
7523
  exports.UploadIcon = UploadIcon;