@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.
package/dist/web.esm.js CHANGED
@@ -235,15 +235,15 @@ 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"],
238
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
239
239
  _excluded21 = ["size", "color", "filled", "strokeWidth"],
240
- _excluded22 = ["size", "color", "strokeWidth"],
240
+ _excluded22 = ["size", "color", "strokeWidth", "filled"],
241
241
  _excluded23 = ["size", "color", "filled", "strokeWidth"],
242
- _excluded24 = ["size", "color", "strokeWidth"],
242
+ _excluded24 = ["size", "color", "strokeWidth", "filled"],
243
243
  _excluded25 = ["size", "color", "filled", "strokeWidth"],
244
- _excluded26 = ["size", "color", "strokeWidth"],
244
+ _excluded26 = ["size", "color", "strokeWidth", "filled"],
245
245
  _excluded27 = ["size", "color", "filled", "strokeWidth"],
246
- _excluded28 = ["size", "color", "filled", "strokeWidth"],
246
+ _excluded28 = ["size", "color", "strokeWidth", "filled"],
247
247
  _excluded29 = ["size", "color", "filled", "strokeWidth"],
248
248
  _excluded30 = ["size", "color", "filled", "strokeWidth"],
249
249
  _excluded31 = ["size", "color", "filled", "strokeWidth"],
@@ -254,10 +254,10 @@ 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"],
258
- _excluded40 = ["size", "color", "strokeWidth"],
259
- _excluded41 = ["size", "color", "filled", "strokeWidth"],
260
- _excluded42 = ["size", "color", "filled", "strokeWidth"],
257
+ _excluded39 = ["size", "color", "filled", "strokeWidth"],
258
+ _excluded40 = ["size", "color", "filled", "strokeWidth"],
259
+ _excluded41 = ["size", "color", "strokeWidth", "filled"],
260
+ _excluded42 = ["size", "color", "strokeWidth", "filled"],
261
261
  _excluded43 = ["size", "color", "filled", "strokeWidth"],
262
262
  _excluded44 = ["size", "color", "filled", "strokeWidth"],
263
263
  _excluded45 = ["size", "color", "filled", "strokeWidth"],
@@ -269,14 +269,16 @@ 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", "filled", "strokeWidth"],
274
+ _excluded56 = ["size", "color", "strokeWidth", "filled"];
273
275
  // Default wrapper component for consistent sizing and styling
274
276
  var IconWrapper = _ref => {
275
277
  var {
276
278
  size,
277
279
  color = 'black',
278
280
  transform,
279
- orientation,
281
+ orientation = 'up',
280
282
  children
281
283
  } = _ref,
282
284
  rest = _objectWithoutPropertiesLoose(_ref, _excluded$4);
@@ -318,12 +320,12 @@ var ChevronIcon = _ref2 => {
318
320
  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
321
  })));
320
322
  };
321
- // Example of another Icon: CloseIcon
322
- var CloseIcon = _ref3 => {
323
+ // Example of a Twitch Icon
324
+ var TwitchIcon = _ref3 => {
323
325
  var {
324
326
  size = 24,
325
327
  color = 'currentColor',
326
- filled = false,
328
+ filled = true,
327
329
  strokeWidth = 1
328
330
  } = _ref3,
329
331
  props = _objectWithoutPropertiesLoose(_ref3, _excluded3);
@@ -334,6 +336,34 @@ var CloseIcon = _ref3 => {
334
336
  viewBox: "0 0 24 24",
335
337
  "aria-hidden": "true",
336
338
  focusable: "false"
339
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
340
+ d: "M2 2v16h5v4l4-4h5l6-6V2H2zm18 10-3 3h-5l-3 3v-3H4V4h16v8z",
341
+ fill: filled ? color : 'none',
342
+ stroke: color,
343
+ strokeWidth: filled ? 0 : strokeWidth
344
+ }), /*#__PURE__*/React.createElement("path", {
345
+ d: "M14 7h2v5h-2V7zm-4 0h2v5H10V7z",
346
+ fill: filled ? color : 'none',
347
+ stroke: color,
348
+ strokeWidth: filled ? 0 : strokeWidth
349
+ })));
350
+ };
351
+ // Example of another Icon: CloseIcon
352
+ var CloseIcon = _ref4 => {
353
+ var {
354
+ size = 24,
355
+ color = 'currentColor',
356
+ filled = false,
357
+ strokeWidth = 1
358
+ } = _ref4,
359
+ props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
360
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
361
+ size: size,
362
+ color: color
363
+ }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
364
+ viewBox: "0 0 24 24",
365
+ "aria-hidden": "true",
366
+ focusable: "false"
337
367
  }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
338
368
  stroke: color,
339
369
  x1: "18",
@@ -348,14 +378,14 @@ var CloseIcon = _ref3 => {
348
378
  y2: "18"
349
379
  })));
350
380
  };
351
- var InstagramIcon = _ref4 => {
381
+ var InstagramIcon = _ref5 => {
352
382
  var {
353
383
  size = 24,
354
384
  color = 'currentColor',
355
385
  filled = false,
356
386
  strokeWidth = 1
357
- } = _ref4,
358
- props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
387
+ } = _ref5,
388
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
359
389
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
360
390
  size: size,
361
391
  color: color
@@ -379,33 +409,64 @@ var InstagramIcon = _ref4 => {
379
409
  y2: "6.5"
380
410
  })));
381
411
  };
382
- var YoutubeIcon = _ref5 => {
412
+ var YoutubeIcon = _ref6 => {
383
413
  var {
384
414
  size = 24,
385
415
  color = 'currentColor',
386
- filled = false,
416
+ filled = true,
387
417
  strokeWidth = 1
388
- } = _ref5,
389
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
418
+ } = _ref6,
419
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
390
420
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
391
421
  size: size,
392
422
  color: color
393
423
  }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
394
- viewBox: "0 0 24 24"
424
+ viewBox: "0 0 24 24",
425
+ "aria-hidden": "true",
426
+ focusable: "false"
395
427
  }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
396
- 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"
428
+ 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",
429
+ fill: filled ? color : 'none',
430
+ stroke: filled ? 'none' : color,
431
+ strokeWidth: filled ? 0 : strokeWidth
397
432
  }), /*#__PURE__*/React.createElement("polygon", {
398
- points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
433
+ points: "10 8 10 14 14 10",
434
+ fill: "white" // Ensures the play button is transparent
435
+ ,
436
+ stroke: 'white',
437
+ strokeWidth: strokeWidth
399
438
  })));
400
439
  };
401
- var LinkedinIcon = _ref6 => {
440
+ var FacebookIcon = _ref7 => {
402
441
  var {
403
442
  size = 24,
404
443
  color = 'currentColor',
405
444
  filled = true,
406
445
  strokeWidth = 1
407
- } = _ref6,
408
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
446
+ } = _ref7,
447
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
448
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
449
+ size: size,
450
+ color: color
451
+ }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
452
+ viewBox: "0 0 24 24",
453
+ "aria-hidden": "true",
454
+ focusable: "false"
455
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
456
+ d: "M22 2H2v20h10v-7h-2v-3h2V9.5a4 4 0 0 1 4-4h3v3h-3a1 1 0 0 0-1 1V12h4l-1 3h-3v7h6V2z",
457
+ fill: filled ? color : 'none',
458
+ stroke: color,
459
+ strokeWidth: filled ? 0 : strokeWidth
460
+ })));
461
+ };
462
+ var LinkedinIcon = _ref8 => {
463
+ var {
464
+ size = 24,
465
+ color = 'currentColor',
466
+ filled = true,
467
+ strokeWidth = 1
468
+ } = _ref8,
469
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
409
470
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
410
471
  size: size,
411
472
  color: color
@@ -424,14 +485,14 @@ var LinkedinIcon = _ref6 => {
424
485
  r: "2"
425
486
  })));
426
487
  };
427
- var ThreadsIcon = _ref7 => {
488
+ var ThreadsIcon = _ref9 => {
428
489
  var {
429
490
  size = 24,
430
491
  color = 'currentColor',
431
492
  filled = false,
432
493
  strokeWidth = 1
433
- } = _ref7,
434
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
494
+ } = _ref9,
495
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
435
496
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
436
497
  size: size,
437
498
  color: color
@@ -446,15 +507,15 @@ var ThreadsIcon = _ref7 => {
446
507
  })));
447
508
  };
448
509
  // Example Refactored Icon: MinusIcon without undefined 'padding' prop
449
- var MinusIcon = _ref8 => {
510
+ var MinusIcon = _ref10 => {
450
511
  var {
451
512
  size = 24,
452
513
  color = 'currentColor',
453
514
  filled = false,
454
515
  // Assuming minus can be filled; adjust as needed
455
516
  strokeWidth = 1
456
- } = _ref8,
457
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
517
+ } = _ref10,
518
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
458
519
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
459
520
  size: size,
460
521
  color: color
@@ -471,14 +532,14 @@ var MinusIcon = _ref8 => {
471
532
  })));
472
533
  };
473
534
  // Example Refactored Icon: InfoIcon with accessibility enhancements
474
- var InfoIcon = _ref9 => {
535
+ var InfoIcon = _ref11 => {
475
536
  var {
476
537
  size = 24,
477
538
  color = 'currentColor',
478
539
  filled = false,
479
540
  strokeWidth = 1
480
- } = _ref9,
481
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
541
+ } = _ref11,
542
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
482
543
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
483
544
  size: size,
484
545
  color: color
@@ -492,14 +553,14 @@ var InfoIcon = _ref9 => {
492
553
  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
554
  })));
494
555
  };
495
- var HeartIcon = _ref10 => {
556
+ var HeartIcon = _ref12 => {
496
557
  var {
497
558
  size = 24,
498
559
  color = 'currentColor',
499
560
  filled = true,
500
561
  strokeWidth = 1
501
- } = _ref10,
502
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
562
+ } = _ref12,
563
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
503
564
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
504
565
  size: size,
505
566
  color: color
@@ -511,14 +572,14 @@ var HeartIcon = _ref10 => {
511
572
  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
573
  })));
513
574
  };
514
- var StarIcon = _ref11 => {
575
+ var StarIcon = _ref13 => {
515
576
  var {
516
577
  size = 24,
517
578
  color = 'currentColor',
518
579
  filled = true,
519
580
  strokeWidth = 1
520
- } = _ref11,
521
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
581
+ } = _ref13,
582
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
522
583
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
523
584
  size: size,
524
585
  color: color
@@ -530,14 +591,14 @@ var StarIcon = _ref11 => {
530
591
  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
592
  })));
532
593
  };
533
- var SaveIcon = _ref12 => {
594
+ var SaveIcon = _ref14 => {
534
595
  var {
535
596
  size = 24,
536
597
  color = 'currentColor',
537
598
  filled = false,
538
599
  strokeWidth = 1
539
- } = _ref12,
540
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
600
+ } = _ref14,
601
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
541
602
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
542
603
  size: size,
543
604
  color: color
@@ -553,14 +614,14 @@ var SaveIcon = _ref12 => {
553
614
  points: "7 3 7 8 15 8"
554
615
  })));
555
616
  };
556
- var WarningIcon = _ref13 => {
617
+ var WarningIcon = _ref15 => {
557
618
  var {
558
619
  size = 24,
559
620
  color = 'currentColor',
560
621
  filled = false,
561
622
  strokeWidth = 1
562
- } = _ref13,
563
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
623
+ } = _ref15,
624
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
564
625
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
565
626
  size: size,
566
627
  color: color
@@ -584,14 +645,14 @@ var WarningIcon = _ref13 => {
584
645
  y2: "15"
585
646
  })));
586
647
  };
587
- var BatteryIcon = _ref14 => {
648
+ var BatteryIcon = _ref16 => {
588
649
  var {
589
650
  size = 24,
590
651
  color = 'currentColor',
591
652
  filled = true,
592
653
  strokeWidth = 1
593
- } = _ref14,
594
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
654
+ } = _ref16,
655
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
595
656
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
596
657
  size: size,
597
658
  color: color
@@ -603,14 +664,14 @@ var BatteryIcon = _ref14 => {
603
664
  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
665
  })));
605
666
  };
606
- var BookmarkIcon = _ref15 => {
667
+ var BookmarkIcon = _ref17 => {
607
668
  var {
608
669
  size = 24,
609
670
  color = 'currentColor',
610
671
  filled = false,
611
672
  strokeWidth = 1
612
- } = _ref15,
613
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
673
+ } = _ref17,
674
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
614
675
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
615
676
  size: size,
616
677
  color: color
@@ -622,14 +683,14 @@ var BookmarkIcon = _ref15 => {
622
683
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
623
684
  })));
624
685
  };
625
- var CloudIcon = _ref16 => {
686
+ var CloudIcon = _ref18 => {
626
687
  var {
627
688
  size = 24,
628
689
  color = 'currentColor',
629
- filled = false,
690
+ filled = true,
630
691
  strokeWidth = 1
631
- } = _ref16,
632
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
692
+ } = _ref18,
693
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
633
694
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
634
695
  size: size,
635
696
  color: color
@@ -641,14 +702,14 @@ var CloudIcon = _ref16 => {
641
702
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
642
703
  })));
643
704
  };
644
- var CopyIcon = _ref17 => {
705
+ var CopyIcon = _ref19 => {
645
706
  var {
646
707
  size = 24,
647
708
  color = 'currentColor',
648
709
  filled = false,
649
710
  strokeWidth = 1
650
- } = _ref17,
651
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
711
+ } = _ref19,
712
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
652
713
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
653
714
  size: size,
654
715
  color: color
@@ -667,14 +728,14 @@ var CopyIcon = _ref17 => {
667
728
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
668
729
  })));
669
730
  };
670
- var DustBinIcon = _ref18 => {
731
+ var DustBinIcon = _ref20 => {
671
732
  var {
672
733
  size = 24,
673
734
  color = 'currentColor',
674
735
  filled = false,
675
736
  strokeWidth = 1
676
- } = _ref18,
677
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
737
+ } = _ref20,
738
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
678
739
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
679
740
  size: size,
680
741
  color: color
@@ -686,14 +747,14 @@ var DustBinIcon = _ref18 => {
686
747
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
687
748
  })));
688
749
  };
689
- var EditIcon = _ref19 => {
750
+ var EditIcon = _ref21 => {
690
751
  var {
691
752
  size = 24,
692
753
  color = 'currentColor',
693
754
  filled = false,
694
755
  strokeWidth = 1
695
- } = _ref19,
696
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
756
+ } = _ref21,
757
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
697
758
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
698
759
  size: size,
699
760
  color: color
@@ -705,14 +766,14 @@ var EditIcon = _ref19 => {
705
766
  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
767
  })));
707
768
  };
708
- var ErrorIcon = _ref20 => {
769
+ var ErrorIcon = _ref22 => {
709
770
  var {
710
771
  size = 24,
711
772
  color = 'currentColor',
712
773
  strokeWidth = 1,
713
774
  filled = true
714
- } = _ref20,
715
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
775
+ } = _ref22,
776
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
716
777
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
717
778
  size: size,
718
779
  color: color
@@ -738,14 +799,14 @@ var ErrorIcon = _ref20 => {
738
799
  stroke: filled ? 'white' : color
739
800
  })));
740
801
  };
741
- var DownloadIcon = _ref21 => {
802
+ var DownloadIcon = _ref23 => {
742
803
  var {
743
804
  size = 24,
744
805
  color = 'currentColor',
745
806
  filled = true,
746
807
  strokeWidth = 1
747
- } = _ref21,
748
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
808
+ } = _ref23,
809
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
749
810
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
750
811
  size: size,
751
812
  color: color
@@ -757,13 +818,14 @@ var DownloadIcon = _ref21 => {
757
818
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
758
819
  })));
759
820
  };
760
- var MenuIcon = _ref22 => {
821
+ var MenuIcon = _ref24 => {
761
822
  var {
762
823
  size = 24,
763
824
  color = 'currentColor',
764
- strokeWidth = 1
765
- } = _ref22,
766
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
825
+ strokeWidth = 1,
826
+ filled = false
827
+ } = _ref24,
828
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
767
829
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
768
830
  size: size,
769
831
  color: color
@@ -771,7 +833,7 @@ var MenuIcon = _ref22 => {
771
833
  viewBox: "0 0 24 24",
772
834
  "aria-hidden": "false",
773
835
  focusable: "false"
774
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
836
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
775
837
  stroke: color,
776
838
  x1: "3",
777
839
  y1: "12",
@@ -791,14 +853,14 @@ var MenuIcon = _ref22 => {
791
853
  y2: "18"
792
854
  })));
793
855
  };
794
- var ShareIcon = _ref23 => {
856
+ var ShareIcon = _ref25 => {
795
857
  var {
796
858
  size = 24,
797
859
  color = 'currentColor',
798
860
  filled = false,
799
861
  strokeWidth = 1
800
- } = _ref23,
801
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
862
+ } = _ref25,
863
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
802
864
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
803
865
  size: size,
804
866
  color: color
@@ -832,13 +894,14 @@ var ShareIcon = _ref23 => {
832
894
  y2: "10.49"
833
895
  })));
834
896
  };
835
- var RefreshIcon = _ref24 => {
897
+ var RefreshIcon = _ref26 => {
836
898
  var {
837
899
  size = 24,
838
900
  color = 'currentColor',
839
- strokeWidth = 1
840
- } = _ref24,
841
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
901
+ strokeWidth = 1,
902
+ filled = false
903
+ } = _ref26,
904
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
842
905
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
843
906
  size: size,
844
907
  color: color
@@ -846,20 +909,20 @@ var RefreshIcon = _ref24 => {
846
909
  viewBox: "0 0 24 24",
847
910
  "aria-hidden": "false",
848
911
  focusable: "false"
849
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("polyline", {
912
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("polyline", {
850
913
  points: "23 4 23 10 17 10"
851
914
  }), /*#__PURE__*/React.createElement("path", {
852
915
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
853
916
  })));
854
917
  };
855
- var PrintIcon = _ref25 => {
918
+ var PrintIcon = _ref27 => {
856
919
  var {
857
920
  size = 24,
858
921
  color = 'currentColor',
859
922
  filled = true,
860
923
  strokeWidth = 1
861
- } = _ref25,
862
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
924
+ } = _ref27,
925
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
863
926
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
864
927
  size: size,
865
928
  color: color
@@ -872,13 +935,14 @@ var PrintIcon = _ref25 => {
872
935
  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
936
  })));
874
937
  };
875
- var PanelIcon = _ref26 => {
938
+ var PanelIcon = _ref28 => {
876
939
  var {
877
940
  size = 24,
878
941
  color = 'currentColor',
879
- strokeWidth = 1
880
- } = _ref26,
881
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
942
+ strokeWidth = 1,
943
+ filled = false
944
+ } = _ref28,
945
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
882
946
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
883
947
  size: size,
884
948
  color: color
@@ -886,7 +950,7 @@ var PanelIcon = _ref26 => {
886
950
  viewBox: "0 0 24 24",
887
951
  "aria-hidden": "false",
888
952
  focusable: "false"
889
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
953
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
890
954
  stroke: color,
891
955
  x1: "4",
892
956
  y1: "21",
@@ -942,14 +1006,14 @@ var PanelIcon = _ref26 => {
942
1006
  y2: "16"
943
1007
  })));
944
1008
  };
945
- var FilterIcon = _ref27 => {
1009
+ var FilterIcon = _ref29 => {
946
1010
  var {
947
1011
  size = 24,
948
1012
  color = 'currentColor',
949
1013
  filled = false,
950
1014
  strokeWidth = 1
951
- } = _ref27,
952
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
1015
+ } = _ref29,
1016
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
953
1017
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
954
1018
  size: size,
955
1019
  color: color
@@ -961,14 +1025,14 @@ var FilterIcon = _ref27 => {
961
1025
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
962
1026
  })));
963
1027
  };
964
- var HomeIcon = _ref28 => {
1028
+ var HomeIcon = _ref30 => {
965
1029
  var {
966
1030
  size = 24,
967
1031
  color = 'currentColor',
968
1032
  filled = true,
969
1033
  strokeWidth = 1
970
- } = _ref28,
971
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
1034
+ } = _ref30,
1035
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
972
1036
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
973
1037
  size: size,
974
1038
  color: color
@@ -980,14 +1044,14 @@ var HomeIcon = _ref28 => {
980
1044
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
981
1045
  })));
982
1046
  };
983
- var LocationIcon = _ref29 => {
1047
+ var LocationIcon = _ref31 => {
984
1048
  var {
985
1049
  size = 24,
986
1050
  color = 'currentColor',
987
1051
  filled = true,
988
1052
  strokeWidth = 1
989
- } = _ref29,
990
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
1053
+ } = _ref31,
1054
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
991
1055
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
992
1056
  size: size,
993
1057
  color: color
@@ -999,14 +1063,14 @@ var LocationIcon = _ref29 => {
999
1063
  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
1064
  })));
1001
1065
  };
1002
- var LockIcon = _ref30 => {
1066
+ var LockIcon = _ref32 => {
1003
1067
  var {
1004
1068
  size = 24,
1005
1069
  color = 'currentColor',
1006
1070
  filled = false,
1007
1071
  strokeWidth = 1
1008
- } = _ref30,
1009
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
1072
+ } = _ref32,
1073
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1010
1074
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1011
1075
  size: size,
1012
1076
  color: color
@@ -1025,14 +1089,14 @@ var LockIcon = _ref30 => {
1025
1089
  d: "M7 11V7a5 5 0 0 1 10 0v4"
1026
1090
  })));
1027
1091
  };
1028
- var MicrophoneIcon = _ref31 => {
1092
+ var MicrophoneIcon = _ref33 => {
1029
1093
  var {
1030
1094
  size = 24,
1031
1095
  color = 'currentColor',
1032
1096
  filled = false,
1033
1097
  strokeWidth = 1
1034
- } = _ref31,
1035
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1098
+ } = _ref33,
1099
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1036
1100
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1037
1101
  size: size,
1038
1102
  color: color
@@ -1058,14 +1122,14 @@ var MicrophoneIcon = _ref31 => {
1058
1122
  y2: "23"
1059
1123
  })));
1060
1124
  };
1061
- var MoonIcon = _ref32 => {
1125
+ var MoonIcon = _ref34 => {
1062
1126
  var {
1063
1127
  size = 24,
1064
1128
  color = 'currentColor',
1065
1129
  filled = true,
1066
1130
  strokeWidth = 1
1067
- } = _ref32,
1068
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1131
+ } = _ref34,
1132
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1069
1133
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1070
1134
  size: size,
1071
1135
  color: color
@@ -1077,14 +1141,14 @@ var MoonIcon = _ref32 => {
1077
1141
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
1078
1142
  })));
1079
1143
  };
1080
- var NotificationIcon = _ref33 => {
1144
+ var NotificationIcon = _ref35 => {
1081
1145
  var {
1082
1146
  size = 24,
1083
1147
  color = 'currentColor',
1084
1148
  filled = false,
1085
1149
  strokeWidth = 1
1086
- } = _ref33,
1087
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1150
+ } = _ref35,
1151
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1088
1152
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1089
1153
  size: size,
1090
1154
  color: color
@@ -1098,14 +1162,14 @@ var NotificationIcon = _ref33 => {
1098
1162
  d: "M13.73 21a2 2 0 0 1-3.46 0"
1099
1163
  })));
1100
1164
  };
1101
- var OpenEyeIcon = _ref34 => {
1165
+ var OpenEyeIcon = _ref36 => {
1102
1166
  var {
1103
1167
  size = 24,
1104
1168
  color = 'currentColor',
1105
1169
  filled = true,
1106
1170
  strokeWidth = 1
1107
- } = _ref34,
1108
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1171
+ } = _ref36,
1172
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1109
1173
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1110
1174
  size: size,
1111
1175
  color: color
@@ -1117,14 +1181,14 @@ var OpenEyeIcon = _ref34 => {
1117
1181
  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
1182
  })));
1119
1183
  };
1120
- var ProfileIcon = _ref35 => {
1184
+ var ProfileIcon = _ref37 => {
1121
1185
  var {
1122
1186
  size = 24,
1123
1187
  color = 'currentColor',
1124
1188
  filled = true,
1125
1189
  strokeWidth = 1
1126
- } = _ref35,
1127
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1190
+ } = _ref37,
1191
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1128
1192
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1129
1193
  size: size,
1130
1194
  color: color
@@ -1137,14 +1201,14 @@ var ProfileIcon = _ref35 => {
1137
1201
  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
1202
  }), ' '));
1139
1203
  };
1140
- var SettingsIcon = _ref36 => {
1204
+ var SettingsIcon = _ref38 => {
1141
1205
  var {
1142
1206
  size = 24,
1143
1207
  color = 'currentColor',
1144
1208
  filled = false,
1145
1209
  strokeWidth = 1
1146
- } = _ref36,
1147
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1210
+ } = _ref38,
1211
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1148
1212
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1149
1213
  size: size,
1150
1214
  color: color
@@ -1156,14 +1220,14 @@ var SettingsIcon = _ref36 => {
1156
1220
  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
1221
  })));
1158
1222
  };
1159
- var SuccessIcon = _ref37 => {
1223
+ var SuccessIcon = _ref39 => {
1160
1224
  var {
1161
1225
  size = 24,
1162
1226
  color = 'currentColor',
1163
1227
  filled = true,
1164
1228
  strokeWidth = 1
1165
- } = _ref37,
1166
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1229
+ } = _ref39,
1230
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1167
1231
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1168
1232
  size: size,
1169
1233
  color: color
@@ -1175,14 +1239,14 @@ var SuccessIcon = _ref37 => {
1175
1239
  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
1240
  })));
1177
1241
  };
1178
- var UnLikeIcon = _ref38 => {
1242
+ var UnLikeIcon = _ref40 => {
1179
1243
  var {
1180
1244
  size = 24,
1181
1245
  color = 'currentColor',
1182
1246
  filled = true,
1183
1247
  strokeWidth = 1
1184
- } = _ref38,
1185
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1248
+ } = _ref40,
1249
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1186
1250
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1187
1251
  size: size,
1188
1252
  color: color
@@ -1194,13 +1258,14 @@ var UnLikeIcon = _ref38 => {
1194
1258
  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
1259
  })));
1196
1260
  };
1197
- var ClockIcon = _ref39 => {
1261
+ var ClockIcon = _ref41 => {
1198
1262
  var {
1199
1263
  size = 24,
1200
1264
  color = 'currentColor',
1201
- strokeWidth = 1
1202
- } = _ref39,
1203
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1265
+ strokeWidth = 1,
1266
+ filled = false
1267
+ } = _ref41,
1268
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1204
1269
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1205
1270
  size: size,
1206
1271
  color: color
@@ -1208,7 +1273,7 @@ var ClockIcon = _ref39 => {
1208
1273
  viewBox: "0 0 24 24",
1209
1274
  "aria-hidden": "false",
1210
1275
  focusable: "false"
1211
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
1276
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
1212
1277
  cx: "12",
1213
1278
  cy: "12",
1214
1279
  r: "10"
@@ -1216,13 +1281,14 @@ var ClockIcon = _ref39 => {
1216
1281
  points: "12 6 12 12 16 14"
1217
1282
  })));
1218
1283
  };
1219
- var CameraIcon = _ref40 => {
1284
+ var CameraIcon = _ref42 => {
1220
1285
  var {
1221
1286
  size = 24,
1222
1287
  color = 'currentColor',
1223
- strokeWidth = 1
1224
- } = _ref40,
1225
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1288
+ strokeWidth = 1,
1289
+ filled = false
1290
+ } = _ref42,
1291
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1226
1292
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1227
1293
  size: size,
1228
1294
  color: color
@@ -1230,7 +1296,7 @@ var CameraIcon = _ref40 => {
1230
1296
  viewBox: "0 0 24 24",
1231
1297
  "aria-hidden": "false",
1232
1298
  focusable: "false"
1233
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1299
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1234
1300
  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"
1235
1301
  }), /*#__PURE__*/React.createElement("circle", {
1236
1302
  cx: "12",
@@ -1238,14 +1304,14 @@ var CameraIcon = _ref40 => {
1238
1304
  r: "4"
1239
1305
  })));
1240
1306
  };
1241
- var BluetoothIcon = _ref41 => {
1307
+ var BluetoothIcon = _ref43 => {
1242
1308
  var {
1243
1309
  size = 24,
1244
1310
  color = 'currentColor',
1245
1311
  filled = true,
1246
1312
  strokeWidth = 1
1247
- } = _ref41,
1248
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1313
+ } = _ref43,
1314
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1249
1315
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1250
1316
  size: size,
1251
1317
  color: color
@@ -1253,18 +1319,18 @@ var BluetoothIcon = _ref41 => {
1253
1319
  viewBox: "0 0 24 24",
1254
1320
  "aria-hidden": "false",
1255
1321
  focusable: "false"
1256
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1322
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1257
1323
  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
1324
  })));
1259
1325
  };
1260
- var LikeIcon = _ref42 => {
1326
+ var LikeIcon = _ref44 => {
1261
1327
  var {
1262
1328
  size = 24,
1263
1329
  color = 'currentColor',
1264
1330
  filled = true,
1265
1331
  strokeWidth = 1
1266
- } = _ref42,
1267
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1332
+ } = _ref44,
1333
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1268
1334
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1269
1335
  size: size,
1270
1336
  color: color
@@ -1276,14 +1342,14 @@ var LikeIcon = _ref42 => {
1276
1342
  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
1343
  })));
1278
1344
  };
1279
- var UnlockIcon = _ref43 => {
1345
+ var UnlockIcon = _ref45 => {
1280
1346
  var {
1281
1347
  size = 24,
1282
1348
  color = 'currentColor',
1283
1349
  filled = false,
1284
1350
  strokeWidth = 1
1285
- } = _ref43,
1286
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1351
+ } = _ref45,
1352
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1287
1353
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1288
1354
  size: size,
1289
1355
  color: color
@@ -1302,14 +1368,14 @@ var UnlockIcon = _ref43 => {
1302
1368
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1303
1369
  })));
1304
1370
  };
1305
- var WifiIcon = _ref44 => {
1371
+ var WifiIcon = _ref46 => {
1306
1372
  var {
1307
1373
  size = 24,
1308
1374
  color = 'currentColor',
1309
1375
  filled = false,
1310
1376
  strokeWidth = 1
1311
- } = _ref44,
1312
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1377
+ } = _ref46,
1378
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1313
1379
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1314
1380
  size: size,
1315
1381
  color: color
@@ -1321,14 +1387,14 @@ var WifiIcon = _ref44 => {
1321
1387
  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
1388
  })));
1323
1389
  };
1324
- var UploadIcon = _ref45 => {
1390
+ var UploadIcon = _ref47 => {
1325
1391
  var {
1326
1392
  size = 24,
1327
1393
  color = 'currentColor',
1328
1394
  filled = false,
1329
1395
  strokeWidth = 1
1330
- } = _ref45,
1331
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1396
+ } = _ref47,
1397
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1332
1398
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1333
1399
  size: size,
1334
1400
  color: color
@@ -1344,14 +1410,14 @@ var UploadIcon = _ref45 => {
1344
1410
  d: "M12 12l0 9"
1345
1411
  })));
1346
1412
  };
1347
- var SearchIcon = _ref46 => {
1413
+ var SearchIcon = _ref48 => {
1348
1414
  var {
1349
1415
  size = 24,
1350
1416
  color = 'currentColor',
1351
1417
  filled = true,
1352
1418
  strokeWidth = 1
1353
- } = _ref46,
1354
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1419
+ } = _ref48,
1420
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1355
1421
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1356
1422
  size: size,
1357
1423
  color: color
@@ -1359,18 +1425,18 @@ var SearchIcon = _ref46 => {
1359
1425
  viewBox: "0 0 24 24",
1360
1426
  "aria-hidden": "false",
1361
1427
  focusable: "false"
1362
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1428
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1363
1429
  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
1430
  })));
1365
1431
  };
1366
- var CloseEyeIcon = _ref47 => {
1432
+ var CloseEyeIcon = _ref49 => {
1367
1433
  var {
1368
1434
  size = 24,
1369
1435
  color = 'currentColor',
1370
1436
  filled = true,
1371
1437
  strokeWidth = 1
1372
- } = _ref47,
1373
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1438
+ } = _ref49,
1439
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1374
1440
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1375
1441
  size: size,
1376
1442
  color: color
@@ -1378,19 +1444,19 @@ var CloseEyeIcon = _ref47 => {
1378
1444
  viewBox: "0 0 24 24",
1379
1445
  "aria-hidden": "false",
1380
1446
  focusable: "false"
1381
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1447
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1382
1448
  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",
1383
1449
  fill: "currentColor"
1384
1450
  })));
1385
1451
  };
1386
- var ExternalLinkIcon = _ref48 => {
1452
+ var ExternalLinkIcon = _ref50 => {
1387
1453
  var {
1388
1454
  size = 24,
1389
1455
  color = 'currentColor',
1390
1456
  filled = true,
1391
1457
  strokeWidth = 1
1392
- } = _ref48,
1393
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1458
+ } = _ref50,
1459
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1394
1460
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1395
1461
  size: size,
1396
1462
  color: color
@@ -1398,18 +1464,18 @@ var ExternalLinkIcon = _ref48 => {
1398
1464
  viewBox: "0 0 24 24",
1399
1465
  "aria-hidden": "false",
1400
1466
  focusable: "false"
1401
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1467
+ }, getSvgProps(true, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1402
1468
  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
1469
  })));
1404
1470
  };
1405
- var PlusIcon = _ref49 => {
1471
+ var PlusIcon = _ref51 => {
1406
1472
  var {
1407
1473
  size = 24,
1408
1474
  color = 'currentColor',
1409
- filled = true,
1475
+ filled = false,
1410
1476
  strokeWidth = 1
1411
- } = _ref49,
1412
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1477
+ } = _ref51,
1478
+ props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1413
1479
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1414
1480
  size: size,
1415
1481
  color: color
@@ -1417,7 +1483,7 @@ var PlusIcon = _ref49 => {
1417
1483
  viewBox: "0 0 24 24",
1418
1484
  "aria-hidden": "false",
1419
1485
  focusable: "false"
1420
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
1486
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
1421
1487
  stroke: color,
1422
1488
  x1: "12",
1423
1489
  y1: "5",
@@ -1431,14 +1497,14 @@ var PlusIcon = _ref49 => {
1431
1497
  y2: "12"
1432
1498
  })));
1433
1499
  };
1434
- var TickIcon = _ref50 => {
1500
+ var TickIcon = _ref52 => {
1435
1501
  var {
1436
1502
  size = 24,
1437
1503
  color = 'currentColor',
1438
- filled = true,
1504
+ filled = false,
1439
1505
  strokeWidth = 1
1440
- } = _ref50,
1441
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1506
+ } = _ref52,
1507
+ props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1442
1508
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1443
1509
  size: size,
1444
1510
  color: color
@@ -1446,20 +1512,20 @@ var TickIcon = _ref50 => {
1446
1512
  viewBox: "0 0 24 24",
1447
1513
  "aria-hidden": "false",
1448
1514
  focusable: "false"
1449
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1515
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1450
1516
  d: "M5 13l4 4L19 7",
1451
1517
  strokeLinecap: "round",
1452
1518
  strokeLinejoin: "round"
1453
1519
  })));
1454
1520
  };
1455
- var BoldArrowIcon = _ref51 => {
1521
+ var BoldArrowIcon = _ref53 => {
1456
1522
  var {
1457
1523
  size = 24,
1458
1524
  color = 'currentColor',
1459
1525
  filled = true,
1460
1526
  strokeWidth = 1
1461
- } = _ref51,
1462
- props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1527
+ } = _ref53,
1528
+ props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1463
1529
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1464
1530
  size: size,
1465
1531
  color: color
@@ -1467,18 +1533,18 @@ var BoldArrowIcon = _ref51 => {
1467
1533
  viewBox: "0 0 24 24",
1468
1534
  "aria-hidden": "false",
1469
1535
  focusable: "false"
1470
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1536
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
1471
1537
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1472
1538
  })));
1473
1539
  };
1474
- var ArrowIcon = _ref52 => {
1540
+ var ArrowIcon = _ref54 => {
1475
1541
  var {
1476
1542
  size = 24,
1477
1543
  color = 'currentColor',
1478
- filled = true,
1544
+ filled = false,
1479
1545
  strokeWidth = 1
1480
- } = _ref52,
1481
- props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1546
+ } = _ref54,
1547
+ props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1482
1548
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1483
1549
  size: size,
1484
1550
  color: color
@@ -1486,7 +1552,7 @@ var ArrowIcon = _ref52 => {
1486
1552
  viewBox: "0 0 24 24",
1487
1553
  "aria-hidden": "false",
1488
1554
  focusable: "false"
1489
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
1555
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("line", {
1490
1556
  stroke: color,
1491
1557
  x1: "12",
1492
1558
  y1: "20",
@@ -1496,14 +1562,14 @@ var ArrowIcon = _ref52 => {
1496
1562
  points: "6 12 12 6 18 12"
1497
1563
  })));
1498
1564
  };
1499
- var SpinnerIcon = _ref53 => {
1565
+ var SpinnerIcon = _ref55 => {
1500
1566
  var {
1501
1567
  size = 24,
1502
1568
  color = 'currentColor',
1503
- filled = true,
1569
+ filled = false,
1504
1570
  strokeWidth = 1
1505
- } = _ref53,
1506
- props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1571
+ } = _ref55,
1572
+ props = _objectWithoutPropertiesLoose(_ref55, _excluded55);
1507
1573
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1508
1574
  size: size,
1509
1575
  color: color
@@ -1511,7 +1577,7 @@ var SpinnerIcon = _ref53 => {
1511
1577
  viewBox: "0 0 24 24",
1512
1578
  "aria-hidden": "false",
1513
1579
  focusable: "false"
1514
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
1580
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("circle", {
1515
1581
  cx: "12",
1516
1582
  cy: "12",
1517
1583
  r: "10",
@@ -1521,13 +1587,14 @@ var SpinnerIcon = _ref53 => {
1521
1587
  strokeOpacity: "1"
1522
1588
  })));
1523
1589
  };
1524
- var CalendarIcon = _ref54 => {
1590
+ var CalendarIcon = _ref56 => {
1525
1591
  var {
1526
1592
  size = 24,
1527
1593
  color = 'currentColor',
1528
- strokeWidth = 1
1529
- } = _ref54,
1530
- props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1594
+ strokeWidth = 1,
1595
+ filled = false
1596
+ } = _ref56,
1597
+ props = _objectWithoutPropertiesLoose(_ref56, _excluded56);
1531
1598
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1532
1599
  size: size,
1533
1600
  color: color
@@ -1535,7 +1602,7 @@ var CalendarIcon = _ref54 => {
1535
1602
  viewBox: "0 0 24 24",
1536
1603
  "aria-hidden": "false",
1537
1604
  focusable: "false"
1538
- }, getSvgProps(false, color, strokeWidth)), /*#__PURE__*/React.createElement("rect", {
1605
+ }, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("rect", {
1539
1606
  x: "3",
1540
1607
  y: "4",
1541
1608
  width: "18",
@@ -1566,9 +1633,11 @@ var CalendarIcon = _ref54 => {
1566
1633
  var Icon = {
1567
1634
  __proto__: null,
1568
1635
  ChevronIcon: ChevronIcon,
1636
+ TwitchIcon: TwitchIcon,
1569
1637
  CloseIcon: CloseIcon,
1570
1638
  InstagramIcon: InstagramIcon,
1571
1639
  YoutubeIcon: YoutubeIcon,
1640
+ FacebookIcon: FacebookIcon,
1572
1641
  LinkedinIcon: LinkedinIcon,
1573
1642
  ThreadsIcon: ThreadsIcon,
1574
1643
  MinusIcon: MinusIcon,
@@ -7360,5 +7429,5 @@ var ToggleGroupComponent = _ref => {
7360
7429
  // Expose the ToggleGroupComponent for import into other modules
7361
7430
  var ToggleGroup = ToggleGroupComponent;
7362
7431
 
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 };
7432
+ 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, FacebookIcon, 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
7433
  //# sourceMappingURL=web.esm.js.map