@app-studio/web 0.8.30 → 0.8.32

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
@@ -225,18 +225,18 @@ var _excluded$3 = ["size", "color", "transform", "orientation", "children"],
225
225
  _excluded13 = ["size", "color", "filled", "strokeWidth"],
226
226
  _excluded14 = ["size", "color", "filled", "strokeWidth"],
227
227
  _excluded15 = ["size", "color", "filled", "strokeWidth"],
228
- _excluded16 = ["size", "color", "strokeWidth", "filled"],
228
+ _excluded16 = ["size", "color", "filled", "strokeWidth"],
229
229
  _excluded17 = ["size", "color", "filled", "strokeWidth"],
230
- _excluded18 = ["size", "color", "strokeWidth"],
230
+ _excluded18 = ["size", "color", "filled", "strokeWidth"],
231
231
  _excluded19 = ["size", "color", "filled", "strokeWidth"],
232
- _excluded20 = ["size", "color", "strokeWidth"],
233
- _excluded21 = ["size", "color", "filled", "strokeWidth"],
234
- _excluded22 = ["size", "color", "strokeWidth"],
235
- _excluded23 = ["size", "color", "filled", "strokeWidth"],
232
+ _excluded20 = ["size", "color", "filled", "strokeWidth"],
233
+ _excluded21 = ["size", "color", "strokeWidth", "filled"],
234
+ _excluded22 = ["size", "color", "filled", "strokeWidth"],
235
+ _excluded23 = ["size", "color", "strokeWidth"],
236
236
  _excluded24 = ["size", "color", "filled", "strokeWidth"],
237
- _excluded25 = ["size", "color", "filled", "strokeWidth"],
237
+ _excluded25 = ["size", "color", "strokeWidth"],
238
238
  _excluded26 = ["size", "color", "filled", "strokeWidth"],
239
- _excluded27 = ["size", "color", "filled", "strokeWidth"],
239
+ _excluded27 = ["size", "color", "strokeWidth"],
240
240
  _excluded28 = ["size", "color", "filled", "strokeWidth"],
241
241
  _excluded29 = ["size", "color", "filled", "strokeWidth"],
242
242
  _excluded30 = ["size", "color", "filled", "strokeWidth"],
@@ -244,13 +244,13 @@ var _excluded$3 = ["size", "color", "transform", "orientation", "children"],
244
244
  _excluded32 = ["size", "color", "filled", "strokeWidth"],
245
245
  _excluded33 = ["size", "color", "filled", "strokeWidth"],
246
246
  _excluded34 = ["size", "color", "filled", "strokeWidth"],
247
- _excluded35 = ["size", "color", "strokeWidth"],
248
- _excluded36 = ["size", "color", "strokeWidth"],
247
+ _excluded35 = ["size", "color", "filled", "strokeWidth"],
248
+ _excluded36 = ["size", "color", "filled", "strokeWidth"],
249
249
  _excluded37 = ["size", "color", "filled", "strokeWidth"],
250
250
  _excluded38 = ["size", "color", "filled", "strokeWidth"],
251
251
  _excluded39 = ["size", "color", "filled", "strokeWidth"],
252
- _excluded40 = ["size", "color", "filled", "strokeWidth"],
253
- _excluded41 = ["size", "color", "filled", "strokeWidth"],
252
+ _excluded40 = ["size", "color", "strokeWidth"],
253
+ _excluded41 = ["size", "color", "strokeWidth"],
254
254
  _excluded42 = ["size", "color", "filled", "strokeWidth"],
255
255
  _excluded43 = ["size", "color", "filled", "strokeWidth"],
256
256
  _excluded44 = ["size", "color", "filled", "strokeWidth"],
@@ -259,7 +259,12 @@ var _excluded$3 = ["size", "color", "transform", "orientation", "children"],
259
259
  _excluded47 = ["size", "color", "filled", "strokeWidth"],
260
260
  _excluded48 = ["size", "color", "filled", "strokeWidth"],
261
261
  _excluded49 = ["size", "color", "filled", "strokeWidth"],
262
- _excluded50 = ["size", "color", "strokeWidth"];
262
+ _excluded50 = ["size", "color", "filled", "strokeWidth"],
263
+ _excluded51 = ["size", "color", "filled", "strokeWidth"],
264
+ _excluded52 = ["size", "color", "filled", "strokeWidth"],
265
+ _excluded53 = ["size", "color", "filled", "strokeWidth"],
266
+ _excluded54 = ["size", "color", "filled", "strokeWidth"],
267
+ _excluded55 = ["size", "color", "strokeWidth"];
263
268
  // Default wrapper component for consistent sizing and styling
264
269
  var IconWrapper = _ref => {
265
270
  var {
@@ -338,20 +343,137 @@ var CloseIcon = _ref3 => {
338
343
  y2: "18"
339
344
  })));
340
345
  };
341
- // Continue refactoring other icons similarly...
342
- // Example Refactored Icon: MinusIcon without undefined 'padding' prop
343
- var MinusIcon = _ref4 => {
346
+ var InstagramIcon = _ref4 => {
344
347
  var {
345
348
  size = 24,
346
349
  color = 'currentColor',
347
350
  filled = false,
348
- // Assuming minus can be filled; adjust as needed
349
351
  strokeWidth = 1
350
352
  } = _ref4,
351
353
  props = _objectWithoutPropertiesLoose(_ref4, _excluded4);
352
354
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
353
355
  size: size,
354
356
  color: color
357
+ }, props), /*#__PURE__*/React.createElement("svg", {
358
+ viewBox: "0 0 24 24"
359
+ }, /*#__PURE__*/React.createElement("rect", {
360
+ x: "2",
361
+ y: "2",
362
+ width: "20",
363
+ height: "20",
364
+ rx: "5",
365
+ ry: "5"
366
+ }), /*#__PURE__*/React.createElement("path", {
367
+ d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"
368
+ }), /*#__PURE__*/React.createElement("line", {
369
+ x1: "17.5",
370
+ y1: "6.5",
371
+ x2: "17.51",
372
+ y2: "6.5"
373
+ })));
374
+ };
375
+ var TwitterIcon = _ref5 => {
376
+ var {
377
+ size = 24,
378
+ color = 'currentColor',
379
+ filled = false,
380
+ strokeWidth = 1
381
+ } = _ref5,
382
+ props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
383
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
384
+ size: size,
385
+ color: color
386
+ }, props), /*#__PURE__*/React.createElement("svg", {
387
+ "aria-hidden": "true"
388
+ }, /*#__PURE__*/React.createElement("path", {
389
+ d: "M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 \n 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5\n 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
390
+ })));
391
+ };
392
+ var YoutubeIcon = _ref6 => {
393
+ var {
394
+ size = 24,
395
+ color = 'currentColor',
396
+ filled = false,
397
+ strokeWidth = 1
398
+ } = _ref6,
399
+ props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
400
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
401
+ size: size,
402
+ color: color
403
+ }, props), /*#__PURE__*/React.createElement("svg", {
404
+ xmlns: "http://www.w3.org/2000/svg",
405
+ width: "24",
406
+ height: "24",
407
+ viewBox: "0 0 24 24",
408
+ fill: "none",
409
+ stroke: "white",
410
+ strokeWidth: "2",
411
+ strokeLinecap: "round",
412
+ strokeLinejoin: "round"
413
+ }, /*#__PURE__*/React.createElement("path", {
414
+ 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"
415
+ }), /*#__PURE__*/React.createElement("polygon", {
416
+ points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
417
+ })));
418
+ };
419
+ var LinkedinIcon = _ref7 => {
420
+ var {
421
+ size = 24,
422
+ color = 'currentColor',
423
+ filled = false,
424
+ strokeWidth = 1
425
+ } = _ref7,
426
+ props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
427
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
428
+ size: size,
429
+ color: color
430
+ }, props), /*#__PURE__*/React.createElement("svg", {
431
+ focusable: "false"
432
+ }, /*#__PURE__*/React.createElement("path", {
433
+ d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 \n 2v7h-4v-7a6 6 0 0 1 6-6z"
434
+ }), /*#__PURE__*/React.createElement("rect", {
435
+ x: "2",
436
+ y: "9",
437
+ width: "4",
438
+ height: "12"
439
+ }), "#", /*#__PURE__*/React.createElement("circle", {
440
+ cx: "4",
441
+ cy: "4",
442
+ r: "2"
443
+ })));
444
+ };
445
+ var ThreadsIcon = _ref8 => {
446
+ var {
447
+ size = 24,
448
+ color = 'currentColor',
449
+ filled = false,
450
+ strokeWidth = 1
451
+ } = _ref8,
452
+ props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
453
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
454
+ size: size,
455
+ color: color
456
+ }, props), /*#__PURE__*/React.createElement("svg", Object.assign({}, getSvgProps(filled, color, strokeWidth)), /*#__PURE__*/React.createElement("path", {
457
+ stroke: "none",
458
+ d: "M0 0h24v24H0z",
459
+ fill: "none"
460
+ }), /*#__PURE__*/React.createElement("path", {
461
+ d: "M19 7.5c-1.333 -3 -3.667 -4.5 -7 -4.5c-5 0 -8 2.5 -8 9s3.5 9 8 9s7 -3 7\n -5s-1 -5 -7 -5c-2.5 0 -3 1.25 -3 2.5c0 1.5 1 2.5 2.5 2.5c2.5 0 3.5 -1.5 \n 3.5 -5s-2 -4 -3 -4s-1.833 .333 -2.5 1"
462
+ })));
463
+ };
464
+ // Example Refactored Icon: MinusIcon without undefined 'padding' prop
465
+ var MinusIcon = _ref9 => {
466
+ var {
467
+ size = 24,
468
+ color = 'currentColor',
469
+ filled = false,
470
+ // Assuming minus can be filled; adjust as needed
471
+ strokeWidth = 1
472
+ } = _ref9,
473
+ props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
474
+ return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
475
+ size: size,
476
+ color: color
355
477
  }, props), /*#__PURE__*/React.createElement("svg", Object.assign({
356
478
  viewBox: "0 0 24 24",
357
479
  "aria-hidden": "true",
@@ -365,14 +487,14 @@ var MinusIcon = _ref4 => {
365
487
  })));
366
488
  };
367
489
  // Example Refactored Icon: InfoIcon with accessibility enhancements
368
- var InfoIcon = _ref5 => {
490
+ var InfoIcon = _ref10 => {
369
491
  var {
370
492
  size = 24,
371
493
  color = 'currentColor',
372
494
  filled = false,
373
495
  strokeWidth = 1
374
- } = _ref5,
375
- props = _objectWithoutPropertiesLoose(_ref5, _excluded5);
496
+ } = _ref10,
497
+ props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
376
498
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
377
499
  size: size,
378
500
  color: color
@@ -386,14 +508,14 @@ var InfoIcon = _ref5 => {
386
508
  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"
387
509
  })));
388
510
  };
389
- var HeartIcon = _ref6 => {
511
+ var HeartIcon = _ref11 => {
390
512
  var {
391
513
  size = 24,
392
514
  color = 'currentColor',
393
515
  filled = true,
394
516
  strokeWidth = 1
395
- } = _ref6,
396
- props = _objectWithoutPropertiesLoose(_ref6, _excluded6);
517
+ } = _ref11,
518
+ props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
397
519
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
398
520
  size: size,
399
521
  color: color
@@ -405,14 +527,14 @@ var HeartIcon = _ref6 => {
405
527
  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"
406
528
  })));
407
529
  };
408
- var StarIcon = _ref7 => {
530
+ var StarIcon = _ref12 => {
409
531
  var {
410
532
  size = 24,
411
533
  color = 'currentColor',
412
534
  filled = true,
413
535
  strokeWidth = 1
414
- } = _ref7,
415
- props = _objectWithoutPropertiesLoose(_ref7, _excluded7);
536
+ } = _ref12,
537
+ props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
416
538
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
417
539
  size: size,
418
540
  color: color
@@ -424,14 +546,14 @@ var StarIcon = _ref7 => {
424
546
  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"
425
547
  })));
426
548
  };
427
- var SaveIcon = _ref8 => {
549
+ var SaveIcon = _ref13 => {
428
550
  var {
429
551
  size = 24,
430
552
  color = 'currentColor',
431
553
  filled = false,
432
554
  strokeWidth = 1
433
- } = _ref8,
434
- props = _objectWithoutPropertiesLoose(_ref8, _excluded8);
555
+ } = _ref13,
556
+ props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
435
557
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
436
558
  size: size,
437
559
  color: color
@@ -447,14 +569,14 @@ var SaveIcon = _ref8 => {
447
569
  points: "7 3 7 8 15 8"
448
570
  })));
449
571
  };
450
- var WarningIcon = _ref9 => {
572
+ var WarningIcon = _ref14 => {
451
573
  var {
452
574
  size = 24,
453
575
  color = 'currentColor',
454
576
  filled = false,
455
577
  strokeWidth = 1
456
- } = _ref9,
457
- props = _objectWithoutPropertiesLoose(_ref9, _excluded9);
578
+ } = _ref14,
579
+ props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
458
580
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
459
581
  size: size,
460
582
  color: color
@@ -478,14 +600,14 @@ var WarningIcon = _ref9 => {
478
600
  y2: "15"
479
601
  })));
480
602
  };
481
- var BatteryIcon = _ref10 => {
603
+ var BatteryIcon = _ref15 => {
482
604
  var {
483
605
  size = 24,
484
606
  color = 'currentColor',
485
607
  filled = true,
486
608
  strokeWidth = 1
487
- } = _ref10,
488
- props = _objectWithoutPropertiesLoose(_ref10, _excluded10);
609
+ } = _ref15,
610
+ props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
489
611
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
490
612
  size: size,
491
613
  color: color
@@ -497,14 +619,14 @@ var BatteryIcon = _ref10 => {
497
619
  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"
498
620
  })));
499
621
  };
500
- var BookmarkIcon = _ref11 => {
622
+ var BookmarkIcon = _ref16 => {
501
623
  var {
502
624
  size = 24,
503
625
  color = 'currentColor',
504
626
  filled = false,
505
627
  strokeWidth = 1
506
- } = _ref11,
507
- props = _objectWithoutPropertiesLoose(_ref11, _excluded11);
628
+ } = _ref16,
629
+ props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
508
630
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
509
631
  size: size,
510
632
  color: color
@@ -516,14 +638,14 @@ var BookmarkIcon = _ref11 => {
516
638
  d: "M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"
517
639
  })));
518
640
  };
519
- var CloudIcon = _ref12 => {
641
+ var CloudIcon = _ref17 => {
520
642
  var {
521
643
  size = 24,
522
644
  color = 'currentColor',
523
645
  filled = false,
524
646
  strokeWidth = 1
525
- } = _ref12,
526
- props = _objectWithoutPropertiesLoose(_ref12, _excluded12);
647
+ } = _ref17,
648
+ props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
527
649
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
528
650
  size: size,
529
651
  color: color
@@ -535,14 +657,14 @@ var CloudIcon = _ref12 => {
535
657
  d: "M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"
536
658
  })));
537
659
  };
538
- var CopyIcon = _ref13 => {
660
+ var CopyIcon = _ref18 => {
539
661
  var {
540
662
  size = 24,
541
663
  color = 'currentColor',
542
664
  filled = false,
543
665
  strokeWidth = 1
544
- } = _ref13,
545
- props = _objectWithoutPropertiesLoose(_ref13, _excluded13);
666
+ } = _ref18,
667
+ props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
546
668
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
547
669
  size: size,
548
670
  color: color
@@ -561,14 +683,14 @@ var CopyIcon = _ref13 => {
561
683
  d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"
562
684
  })));
563
685
  };
564
- var DustBinIcon = _ref14 => {
686
+ var DustBinIcon = _ref19 => {
565
687
  var {
566
688
  size = 24,
567
689
  color = 'currentColor',
568
690
  filled = false,
569
691
  strokeWidth = 1
570
- } = _ref14,
571
- props = _objectWithoutPropertiesLoose(_ref14, _excluded14);
692
+ } = _ref19,
693
+ props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
572
694
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
573
695
  size: size,
574
696
  color: color
@@ -580,14 +702,14 @@ var DustBinIcon = _ref14 => {
580
702
  d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"
581
703
  })));
582
704
  };
583
- var EditIcon = _ref15 => {
705
+ var EditIcon = _ref20 => {
584
706
  var {
585
707
  size = 24,
586
708
  color = 'currentColor',
587
709
  filled = false,
588
710
  strokeWidth = 1
589
- } = _ref15,
590
- props = _objectWithoutPropertiesLoose(_ref15, _excluded15);
711
+ } = _ref20,
712
+ props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
591
713
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
592
714
  size: size,
593
715
  color: color
@@ -599,14 +721,14 @@ var EditIcon = _ref15 => {
599
721
  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"
600
722
  })));
601
723
  };
602
- var ErrorIcon = _ref16 => {
724
+ var ErrorIcon = _ref21 => {
603
725
  var {
604
726
  size = 24,
605
727
  color = 'currentColor',
606
728
  strokeWidth = 1,
607
729
  filled = true
608
- } = _ref16,
609
- props = _objectWithoutPropertiesLoose(_ref16, _excluded16);
730
+ } = _ref21,
731
+ props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
610
732
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
611
733
  size: size,
612
734
  color: color
@@ -632,14 +754,14 @@ var ErrorIcon = _ref16 => {
632
754
  stroke: filled ? 'white' : color
633
755
  })));
634
756
  };
635
- var DownloadIcon = _ref17 => {
757
+ var DownloadIcon = _ref22 => {
636
758
  var {
637
759
  size = 24,
638
760
  color = 'currentColor',
639
761
  filled = true,
640
762
  strokeWidth = 1
641
- } = _ref17,
642
- props = _objectWithoutPropertiesLoose(_ref17, _excluded17);
763
+ } = _ref22,
764
+ props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
643
765
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
644
766
  size: size,
645
767
  color: color
@@ -651,13 +773,13 @@ var DownloadIcon = _ref17 => {
651
773
  d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"
652
774
  })));
653
775
  };
654
- var MenuIcon = _ref18 => {
776
+ var MenuIcon = _ref23 => {
655
777
  var {
656
778
  size = 24,
657
779
  color = 'currentColor',
658
780
  strokeWidth = 1
659
- } = _ref18,
660
- props = _objectWithoutPropertiesLoose(_ref18, _excluded18);
781
+ } = _ref23,
782
+ props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
661
783
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
662
784
  size: size,
663
785
  color: color
@@ -685,14 +807,14 @@ var MenuIcon = _ref18 => {
685
807
  y2: "18"
686
808
  })));
687
809
  };
688
- var ShareIcon = _ref19 => {
810
+ var ShareIcon = _ref24 => {
689
811
  var {
690
812
  size = 24,
691
813
  color = 'currentColor',
692
814
  filled = false,
693
815
  strokeWidth = 1
694
- } = _ref19,
695
- props = _objectWithoutPropertiesLoose(_ref19, _excluded19);
816
+ } = _ref24,
817
+ props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
696
818
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
697
819
  size: size,
698
820
  color: color
@@ -726,13 +848,13 @@ var ShareIcon = _ref19 => {
726
848
  y2: "10.49"
727
849
  })));
728
850
  };
729
- var RefreshIcon = _ref20 => {
851
+ var RefreshIcon = _ref25 => {
730
852
  var {
731
853
  size = 24,
732
854
  color = 'currentColor',
733
855
  strokeWidth = 1
734
- } = _ref20,
735
- props = _objectWithoutPropertiesLoose(_ref20, _excluded20);
856
+ } = _ref25,
857
+ props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
736
858
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
737
859
  size: size,
738
860
  color: color
@@ -746,14 +868,14 @@ var RefreshIcon = _ref20 => {
746
868
  d: "M20.49 15a9 9 0 1 1-2.13-9.36L23 10"
747
869
  })));
748
870
  };
749
- var PrintIcon = _ref21 => {
871
+ var PrintIcon = _ref26 => {
750
872
  var {
751
873
  size = 24,
752
874
  color = 'currentColor',
753
875
  filled = true,
754
876
  strokeWidth = 1
755
- } = _ref21,
756
- props = _objectWithoutPropertiesLoose(_ref21, _excluded21);
877
+ } = _ref26,
878
+ props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
757
879
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
758
880
  size: size,
759
881
  color: color
@@ -766,13 +888,13 @@ var PrintIcon = _ref21 => {
766
888
  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"
767
889
  })));
768
890
  };
769
- var PanelIcon = _ref22 => {
891
+ var PanelIcon = _ref27 => {
770
892
  var {
771
893
  size = 24,
772
894
  color = 'currentColor',
773
895
  strokeWidth = 1
774
- } = _ref22,
775
- props = _objectWithoutPropertiesLoose(_ref22, _excluded22);
896
+ } = _ref27,
897
+ props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
776
898
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
777
899
  size: size,
778
900
  color: color
@@ -836,14 +958,14 @@ var PanelIcon = _ref22 => {
836
958
  y2: "16"
837
959
  })));
838
960
  };
839
- var FilterIcon = _ref23 => {
961
+ var FilterIcon = _ref28 => {
840
962
  var {
841
963
  size = 24,
842
964
  color = 'currentColor',
843
965
  filled = false,
844
966
  strokeWidth = 1
845
- } = _ref23,
846
- props = _objectWithoutPropertiesLoose(_ref23, _excluded23);
967
+ } = _ref28,
968
+ props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
847
969
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
848
970
  size: size,
849
971
  color: color
@@ -855,14 +977,14 @@ var FilterIcon = _ref23 => {
855
977
  d: "M3 4h18l-7 10v5l-4 2v-7L3 4z"
856
978
  })));
857
979
  };
858
- var HomeIcon = _ref24 => {
980
+ var HomeIcon = _ref29 => {
859
981
  var {
860
982
  size = 24,
861
983
  color = 'currentColor',
862
984
  filled = true,
863
985
  strokeWidth = 1
864
- } = _ref24,
865
- props = _objectWithoutPropertiesLoose(_ref24, _excluded24);
986
+ } = _ref29,
987
+ props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
866
988
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
867
989
  size: size,
868
990
  color: color
@@ -874,14 +996,14 @@ var HomeIcon = _ref24 => {
874
996
  d: "M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z"
875
997
  })));
876
998
  };
877
- var LocationIcon = _ref25 => {
999
+ var LocationIcon = _ref30 => {
878
1000
  var {
879
1001
  size = 24,
880
1002
  color = 'currentColor',
881
1003
  filled = true,
882
1004
  strokeWidth = 1
883
- } = _ref25,
884
- props = _objectWithoutPropertiesLoose(_ref25, _excluded25);
1005
+ } = _ref30,
1006
+ props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
885
1007
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
886
1008
  size: size,
887
1009
  color: color
@@ -893,14 +1015,14 @@ var LocationIcon = _ref25 => {
893
1015
  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"
894
1016
  })));
895
1017
  };
896
- var LockIcon = _ref26 => {
1018
+ var LockIcon = _ref31 => {
897
1019
  var {
898
1020
  size = 24,
899
1021
  color = 'currentColor',
900
1022
  filled = false,
901
1023
  strokeWidth = 1
902
- } = _ref26,
903
- props = _objectWithoutPropertiesLoose(_ref26, _excluded26);
1024
+ } = _ref31,
1025
+ props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
904
1026
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
905
1027
  size: size,
906
1028
  color: color
@@ -919,14 +1041,14 @@ var LockIcon = _ref26 => {
919
1041
  d: "M7 11V7a5 5 0 0 1 10 0v4"
920
1042
  })));
921
1043
  };
922
- var MicrophoneIcon = _ref27 => {
1044
+ var MicrophoneIcon = _ref32 => {
923
1045
  var {
924
1046
  size = 24,
925
1047
  color = 'currentColor',
926
1048
  filled = false,
927
1049
  strokeWidth = 1
928
- } = _ref27,
929
- props = _objectWithoutPropertiesLoose(_ref27, _excluded27);
1050
+ } = _ref32,
1051
+ props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
930
1052
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
931
1053
  size: size,
932
1054
  color: color
@@ -952,14 +1074,14 @@ var MicrophoneIcon = _ref27 => {
952
1074
  y2: "23"
953
1075
  })));
954
1076
  };
955
- var MoonIcon = _ref28 => {
1077
+ var MoonIcon = _ref33 => {
956
1078
  var {
957
1079
  size = 24,
958
1080
  color = 'currentColor',
959
1081
  filled = true,
960
1082
  strokeWidth = 1
961
- } = _ref28,
962
- props = _objectWithoutPropertiesLoose(_ref28, _excluded28);
1083
+ } = _ref33,
1084
+ props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
963
1085
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
964
1086
  size: size,
965
1087
  color: color
@@ -971,14 +1093,14 @@ var MoonIcon = _ref28 => {
971
1093
  d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"
972
1094
  })));
973
1095
  };
974
- var NotificationIcon = _ref29 => {
1096
+ var NotificationIcon = _ref34 => {
975
1097
  var {
976
1098
  size = 24,
977
1099
  color = 'currentColor',
978
1100
  filled = false,
979
1101
  strokeWidth = 1
980
- } = _ref29,
981
- props = _objectWithoutPropertiesLoose(_ref29, _excluded29);
1102
+ } = _ref34,
1103
+ props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
982
1104
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
983
1105
  size: size,
984
1106
  color: color
@@ -992,14 +1114,14 @@ var NotificationIcon = _ref29 => {
992
1114
  d: "M13.73 21a2 2 0 0 1-3.46 0"
993
1115
  })));
994
1116
  };
995
- var OpenEyeIcon = _ref30 => {
1117
+ var OpenEyeIcon = _ref35 => {
996
1118
  var {
997
1119
  size = 24,
998
1120
  color = 'currentColor',
999
1121
  filled = true,
1000
1122
  strokeWidth = 1
1001
- } = _ref30,
1002
- props = _objectWithoutPropertiesLoose(_ref30, _excluded30);
1123
+ } = _ref35,
1124
+ props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1003
1125
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1004
1126
  size: size,
1005
1127
  color: color
@@ -1011,14 +1133,14 @@ var OpenEyeIcon = _ref30 => {
1011
1133
  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"
1012
1134
  })));
1013
1135
  };
1014
- var ProfileIcon = _ref31 => {
1136
+ var ProfileIcon = _ref36 => {
1015
1137
  var {
1016
1138
  size = 24,
1017
1139
  color = 'currentColor',
1018
1140
  filled = true,
1019
1141
  strokeWidth = 1
1020
- } = _ref31,
1021
- props = _objectWithoutPropertiesLoose(_ref31, _excluded31);
1142
+ } = _ref36,
1143
+ props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1022
1144
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1023
1145
  size: size,
1024
1146
  color: color
@@ -1031,14 +1153,14 @@ var ProfileIcon = _ref31 => {
1031
1153
  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"
1032
1154
  }), ' '));
1033
1155
  };
1034
- var SettingsIcon = _ref32 => {
1156
+ var SettingsIcon = _ref37 => {
1035
1157
  var {
1036
1158
  size = 24,
1037
1159
  color = 'currentColor',
1038
1160
  filled = false,
1039
1161
  strokeWidth = 1
1040
- } = _ref32,
1041
- props = _objectWithoutPropertiesLoose(_ref32, _excluded32);
1162
+ } = _ref37,
1163
+ props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1042
1164
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1043
1165
  size: size,
1044
1166
  color: color
@@ -1050,14 +1172,14 @@ var SettingsIcon = _ref32 => {
1050
1172
  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"
1051
1173
  })));
1052
1174
  };
1053
- var SuccessIcon = _ref33 => {
1175
+ var SuccessIcon = _ref38 => {
1054
1176
  var {
1055
1177
  size = 24,
1056
1178
  color = 'currentColor',
1057
1179
  filled = true,
1058
1180
  strokeWidth = 1
1059
- } = _ref33,
1060
- props = _objectWithoutPropertiesLoose(_ref33, _excluded33);
1181
+ } = _ref38,
1182
+ props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1061
1183
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1062
1184
  size: size,
1063
1185
  color: color
@@ -1069,14 +1191,14 @@ var SuccessIcon = _ref33 => {
1069
1191
  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"
1070
1192
  })));
1071
1193
  };
1072
- var UnLikeIcon = _ref34 => {
1194
+ var UnLikeIcon = _ref39 => {
1073
1195
  var {
1074
1196
  size = 24,
1075
1197
  color = 'currentColor',
1076
1198
  filled = true,
1077
1199
  strokeWidth = 1
1078
- } = _ref34,
1079
- props = _objectWithoutPropertiesLoose(_ref34, _excluded34);
1200
+ } = _ref39,
1201
+ props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1080
1202
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1081
1203
  size: size,
1082
1204
  color: color
@@ -1088,13 +1210,13 @@ var UnLikeIcon = _ref34 => {
1088
1210
  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"
1089
1211
  })));
1090
1212
  };
1091
- var ClockIcon = _ref35 => {
1213
+ var ClockIcon = _ref40 => {
1092
1214
  var {
1093
1215
  size = 24,
1094
1216
  color = 'currentColor',
1095
1217
  strokeWidth = 1
1096
- } = _ref35,
1097
- props = _objectWithoutPropertiesLoose(_ref35, _excluded35);
1218
+ } = _ref40,
1219
+ props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1098
1220
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1099
1221
  size: size,
1100
1222
  color: color
@@ -1110,13 +1232,13 @@ var ClockIcon = _ref35 => {
1110
1232
  points: "12 6 12 12 16 14"
1111
1233
  })));
1112
1234
  };
1113
- var CameraIcon = _ref36 => {
1235
+ var CameraIcon = _ref41 => {
1114
1236
  var {
1115
1237
  size = 24,
1116
1238
  color = 'currentColor',
1117
1239
  strokeWidth = 1
1118
- } = _ref36,
1119
- props = _objectWithoutPropertiesLoose(_ref36, _excluded36);
1240
+ } = _ref41,
1241
+ props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1120
1242
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1121
1243
  size: size,
1122
1244
  color: color
@@ -1132,14 +1254,14 @@ var CameraIcon = _ref36 => {
1132
1254
  r: "4"
1133
1255
  })));
1134
1256
  };
1135
- var BluetoothIcon = _ref37 => {
1257
+ var BluetoothIcon = _ref42 => {
1136
1258
  var {
1137
1259
  size = 24,
1138
1260
  color = 'currentColor',
1139
1261
  filled = true,
1140
1262
  strokeWidth = 1
1141
- } = _ref37,
1142
- props = _objectWithoutPropertiesLoose(_ref37, _excluded37);
1263
+ } = _ref42,
1264
+ props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1143
1265
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1144
1266
  size: size,
1145
1267
  color: color
@@ -1151,14 +1273,14 @@ var BluetoothIcon = _ref37 => {
1151
1273
  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"
1152
1274
  })));
1153
1275
  };
1154
- var LikeIcon = _ref38 => {
1276
+ var LikeIcon = _ref43 => {
1155
1277
  var {
1156
1278
  size = 24,
1157
1279
  color = 'currentColor',
1158
1280
  filled = true,
1159
1281
  strokeWidth = 1
1160
- } = _ref38,
1161
- props = _objectWithoutPropertiesLoose(_ref38, _excluded38);
1282
+ } = _ref43,
1283
+ props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1162
1284
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1163
1285
  size: size,
1164
1286
  color: color
@@ -1170,14 +1292,14 @@ var LikeIcon = _ref38 => {
1170
1292
  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"
1171
1293
  })));
1172
1294
  };
1173
- var UnlockIcon = _ref39 => {
1295
+ var UnlockIcon = _ref44 => {
1174
1296
  var {
1175
1297
  size = 24,
1176
1298
  color = 'currentColor',
1177
1299
  filled = false,
1178
1300
  strokeWidth = 1
1179
- } = _ref39,
1180
- props = _objectWithoutPropertiesLoose(_ref39, _excluded39);
1301
+ } = _ref44,
1302
+ props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1181
1303
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1182
1304
  size: size,
1183
1305
  color: color
@@ -1196,14 +1318,14 @@ var UnlockIcon = _ref39 => {
1196
1318
  d: "M7 11V7a5 5 0 0 1 9.9-1"
1197
1319
  })));
1198
1320
  };
1199
- var WifiIcon = _ref40 => {
1321
+ var WifiIcon = _ref45 => {
1200
1322
  var {
1201
1323
  size = 24,
1202
1324
  color = 'currentColor',
1203
1325
  filled = false,
1204
1326
  strokeWidth = 1
1205
- } = _ref40,
1206
- props = _objectWithoutPropertiesLoose(_ref40, _excluded40);
1327
+ } = _ref45,
1328
+ props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1207
1329
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1208
1330
  size: size,
1209
1331
  color: color
@@ -1215,14 +1337,14 @@ var WifiIcon = _ref40 => {
1215
1337
  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"
1216
1338
  })));
1217
1339
  };
1218
- var UploadIcon = _ref41 => {
1340
+ var UploadIcon = _ref46 => {
1219
1341
  var {
1220
1342
  size = 24,
1221
1343
  color = 'currentColor',
1222
1344
  filled = false,
1223
1345
  strokeWidth = 1
1224
- } = _ref41,
1225
- props = _objectWithoutPropertiesLoose(_ref41, _excluded41);
1346
+ } = _ref46,
1347
+ props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1226
1348
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1227
1349
  size: size,
1228
1350
  color: color
@@ -1238,14 +1360,14 @@ var UploadIcon = _ref41 => {
1238
1360
  d: "M12 12l0 9"
1239
1361
  })));
1240
1362
  };
1241
- var SearchIcon = _ref42 => {
1363
+ var SearchIcon = _ref47 => {
1242
1364
  var {
1243
1365
  size = 24,
1244
1366
  color = 'currentColor',
1245
1367
  filled = true,
1246
1368
  strokeWidth = 1
1247
- } = _ref42,
1248
- props = _objectWithoutPropertiesLoose(_ref42, _excluded42);
1369
+ } = _ref47,
1370
+ props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1249
1371
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1250
1372
  size: size,
1251
1373
  color: color
@@ -1257,14 +1379,14 @@ var SearchIcon = _ref42 => {
1257
1379
  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"
1258
1380
  })));
1259
1381
  };
1260
- var CloseEyeIcon = _ref43 => {
1382
+ var CloseEyeIcon = _ref48 => {
1261
1383
  var {
1262
1384
  size = 24,
1263
1385
  color = 'currentColor',
1264
1386
  filled = true,
1265
1387
  strokeWidth = 1
1266
- } = _ref43,
1267
- props = _objectWithoutPropertiesLoose(_ref43, _excluded43);
1388
+ } = _ref48,
1389
+ props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1268
1390
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1269
1391
  size: size,
1270
1392
  color: color
@@ -1277,14 +1399,14 @@ var CloseEyeIcon = _ref43 => {
1277
1399
  fill: "currentColor"
1278
1400
  })));
1279
1401
  };
1280
- var ExternalLinkIcon = _ref44 => {
1402
+ var ExternalLinkIcon = _ref49 => {
1281
1403
  var {
1282
1404
  size = 24,
1283
1405
  color = 'currentColor',
1284
1406
  filled = true,
1285
1407
  strokeWidth = 1
1286
- } = _ref44,
1287
- props = _objectWithoutPropertiesLoose(_ref44, _excluded44);
1408
+ } = _ref49,
1409
+ props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1288
1410
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1289
1411
  size: size,
1290
1412
  color: color
@@ -1296,14 +1418,14 @@ var ExternalLinkIcon = _ref44 => {
1296
1418
  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"
1297
1419
  })));
1298
1420
  };
1299
- var PlusIcon = _ref45 => {
1421
+ var PlusIcon = _ref50 => {
1300
1422
  var {
1301
1423
  size = 24,
1302
1424
  color = 'currentColor',
1303
1425
  filled = true,
1304
1426
  strokeWidth = 1
1305
- } = _ref45,
1306
- props = _objectWithoutPropertiesLoose(_ref45, _excluded45);
1427
+ } = _ref50,
1428
+ props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1307
1429
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1308
1430
  size: size,
1309
1431
  color: color
@@ -1325,14 +1447,14 @@ var PlusIcon = _ref45 => {
1325
1447
  y2: "12"
1326
1448
  })));
1327
1449
  };
1328
- var TickIcon = _ref46 => {
1450
+ var TickIcon = _ref51 => {
1329
1451
  var {
1330
1452
  size = 24,
1331
1453
  color = 'currentColor',
1332
1454
  filled = true,
1333
1455
  strokeWidth = 1
1334
- } = _ref46,
1335
- props = _objectWithoutPropertiesLoose(_ref46, _excluded46);
1456
+ } = _ref51,
1457
+ props = _objectWithoutPropertiesLoose(_ref51, _excluded51);
1336
1458
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1337
1459
  size: size,
1338
1460
  color: color
@@ -1346,14 +1468,14 @@ var TickIcon = _ref46 => {
1346
1468
  strokeLinejoin: "round"
1347
1469
  })));
1348
1470
  };
1349
- var BoldArrowIcon = _ref47 => {
1471
+ var BoldArrowIcon = _ref52 => {
1350
1472
  var {
1351
1473
  size = 24,
1352
1474
  color = 'currentColor',
1353
1475
  filled = true,
1354
1476
  strokeWidth = 1
1355
- } = _ref47,
1356
- props = _objectWithoutPropertiesLoose(_ref47, _excluded47);
1477
+ } = _ref52,
1478
+ props = _objectWithoutPropertiesLoose(_ref52, _excluded52);
1357
1479
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1358
1480
  size: size,
1359
1481
  color: color
@@ -1365,14 +1487,14 @@ var BoldArrowIcon = _ref47 => {
1365
1487
  d: "M12 4l7 7h-4v7h-6v-7H5l7-7z"
1366
1488
  })));
1367
1489
  };
1368
- var ArrowIcon = _ref48 => {
1490
+ var ArrowIcon = _ref53 => {
1369
1491
  var {
1370
1492
  size = 24,
1371
1493
  color = 'currentColor',
1372
1494
  filled = true,
1373
1495
  strokeWidth = 1
1374
- } = _ref48,
1375
- props = _objectWithoutPropertiesLoose(_ref48, _excluded48);
1496
+ } = _ref53,
1497
+ props = _objectWithoutPropertiesLoose(_ref53, _excluded53);
1376
1498
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1377
1499
  size: size,
1378
1500
  color: color
@@ -1390,14 +1512,14 @@ var ArrowIcon = _ref48 => {
1390
1512
  points: "6 12 12 6 18 12"
1391
1513
  })));
1392
1514
  };
1393
- var SpinnerIcon = _ref49 => {
1515
+ var SpinnerIcon = _ref54 => {
1394
1516
  var {
1395
1517
  size = 24,
1396
1518
  color = 'currentColor',
1397
1519
  filled = true,
1398
1520
  strokeWidth = 1
1399
- } = _ref49,
1400
- props = _objectWithoutPropertiesLoose(_ref49, _excluded49);
1521
+ } = _ref54,
1522
+ props = _objectWithoutPropertiesLoose(_ref54, _excluded54);
1401
1523
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1402
1524
  size: size,
1403
1525
  color: color
@@ -1415,13 +1537,13 @@ var SpinnerIcon = _ref49 => {
1415
1537
  strokeOpacity: "1"
1416
1538
  })));
1417
1539
  };
1418
- var CalendarIcon = _ref50 => {
1540
+ var CalendarIcon = _ref55 => {
1419
1541
  var {
1420
1542
  size = 24,
1421
1543
  color = 'currentColor',
1422
1544
  strokeWidth = 1
1423
- } = _ref50,
1424
- props = _objectWithoutPropertiesLoose(_ref50, _excluded50);
1545
+ } = _ref55,
1546
+ props = _objectWithoutPropertiesLoose(_ref55, _excluded55);
1425
1547
  return /*#__PURE__*/React.createElement(IconWrapper, Object.assign({
1426
1548
  size: size,
1427
1549
  color: color
@@ -1461,6 +1583,11 @@ var Icon = {
1461
1583
  __proto__: null,
1462
1584
  ChevronIcon: ChevronIcon,
1463
1585
  CloseIcon: CloseIcon,
1586
+ InstagramIcon: InstagramIcon,
1587
+ TwitterIcon: TwitterIcon,
1588
+ YoutubeIcon: YoutubeIcon,
1589
+ LinkedinIcon: LinkedinIcon,
1590
+ ThreadsIcon: ThreadsIcon,
1464
1591
  MinusIcon: MinusIcon,
1465
1592
  InfoIcon: InfoIcon,
1466
1593
  HeartIcon: HeartIcon,
@@ -6758,34 +6885,44 @@ Modal.Footer = ModalFooter;
6758
6885
  Modal.Layout = ModalLayout;
6759
6886
 
6760
6887
  var defaultStyles = {};
6761
- // Initializes an empty 'defaultStyles' object that will be used as a fallback if no custom styles are provided.
6762
- var TableStylesContext = /*#__PURE__*/React.createContext(defaultStyles);
6763
- // Creates a new Context object for 'TableViewStyles' with the default value set to 'defaultStyles'. This allows the styles to be passed down through the component tree without having to pass props manually.
6764
- var TableStylesProvider = _ref => {
6888
+ // Create a context that includes both styles and the onClick function
6889
+ var TableContext = /*#__PURE__*/React.createContext({
6890
+ styles: defaultStyles,
6891
+ onRowClick: () => {}
6892
+ });
6893
+ var TableProvider = _ref => {
6765
6894
  var {
6766
6895
  children,
6767
- styles = defaultStyles
6896
+ styles = defaultStyles,
6897
+ onRowClick
6768
6898
  } = _ref;
6769
6899
  return (
6770
6900
  /*#__PURE__*/
6771
- // The 'styles' prop is optional and defaults to 'defaultStyles' if not provided. When used, 'styles' are propagated down the component hierarchy.
6772
- React.createElement(TableStylesContext.Provider, {
6773
- value: styles
6901
+ // Pass both styles and onClick to the context
6902
+ React.createElement(TableContext.Provider, {
6903
+ value: {
6904
+ styles,
6905
+ onRowClick
6906
+ }
6774
6907
  }, children)
6775
- // Exports a custom hook 'useTableStyles' that encapsulates the logic for consuming the 'TableStylesContext' and returns its value, which are the current style configurations.
6776
6908
  );
6777
6909
  };
6778
- var useTableStyles = () => React.useContext(TableStylesContext);
6910
+ // Custom hook to consume the context and get the styles and onClick handler
6911
+ var useTableContext = () => React.useContext(TableContext);
6779
6912
 
6780
6913
  var TableContainer = props => {
6781
- var styles = useTableStyles();
6914
+ var {
6915
+ styles
6916
+ } = useTableContext();
6782
6917
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6783
6918
  as: "table",
6784
6919
  borderCollapse: "collapse"
6785
6920
  }, styles.table, props));
6786
6921
  };
6787
6922
  var TableHead = props => {
6788
- var styles = useTableStyles();
6923
+ var {
6924
+ styles
6925
+ } = useTableContext();
6789
6926
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6790
6927
  as: "thead",
6791
6928
  borderBottom: "0.5px solid #ddd",
@@ -6794,7 +6931,9 @@ var TableHead = props => {
6794
6931
  }, styles.thead, props));
6795
6932
  };
6796
6933
  var TableHeadCell = props => {
6797
- var styles = useTableStyles();
6934
+ var {
6935
+ styles
6936
+ } = useTableContext();
6798
6937
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6799
6938
  as: "th",
6800
6939
  padding: "14px",
@@ -6803,13 +6942,20 @@ var TableHeadCell = props => {
6803
6942
  }, styles.th, props));
6804
6943
  };
6805
6944
  var TableRow = props => {
6806
- var styles = useTableStyles();
6945
+ var {
6946
+ styles,
6947
+ onRowClick
6948
+ } = useTableContext();
6807
6949
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6808
6950
  as: "tr"
6809
- }, styles.tr, props));
6951
+ }, styles.tr, {
6952
+ onClick: onRowClick
6953
+ }, props));
6810
6954
  };
6811
6955
  var TableCell = props => {
6812
- var styles = useTableStyles();
6956
+ var {
6957
+ styles
6958
+ } = useTableContext();
6813
6959
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6814
6960
  as: "td",
6815
6961
  padding: "14px",
@@ -6818,19 +6964,25 @@ var TableCell = props => {
6818
6964
  }, styles.td, props));
6819
6965
  };
6820
6966
  var TableBody = props => {
6821
- var styles = useTableStyles();
6967
+ var {
6968
+ styles
6969
+ } = useTableContext();
6822
6970
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6823
6971
  as: "tbody"
6824
6972
  }, styles.tbody, props));
6825
6973
  };
6826
6974
  var TableFooter = props => {
6827
- var styles = useTableStyles();
6975
+ var {
6976
+ styles
6977
+ } = useTableContext();
6828
6978
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6829
6979
  as: "tfoot"
6830
6980
  }, styles.tfoot, props));
6831
6981
  };
6832
6982
  var TableCaption = props => {
6833
- var styles = useTableStyles();
6983
+ var {
6984
+ styles
6985
+ } = useTableContext();
6834
6986
  return /*#__PURE__*/React.createElement(Element, Object.assign({
6835
6987
  as: "caption",
6836
6988
  margin: '10px 0',
@@ -6861,10 +7013,12 @@ var TableView = _ref => {
6861
7013
  var Table = _ref => {
6862
7014
  var {
6863
7015
  children,
6864
- styles
7016
+ styles,
7017
+ onClick
6865
7018
  } = _ref;
6866
- return /*#__PURE__*/React.createElement(TableStylesProvider, {
6867
- styles: styles
7019
+ return /*#__PURE__*/React.createElement(TableProvider, {
7020
+ styles: styles,
7021
+ onRowClick: onClick
6868
7022
  }, children);
6869
7023
  };
6870
7024
  Table.Head = TableHead;
@@ -7167,5 +7321,5 @@ var ToggleGroupComponent = _ref => {
7167
7321
  // Expose the ToggleGroupComponent for import into other modules
7168
7322
  var ToggleGroup = ToggleGroupComponent;
7169
7323
 
7170
- export { Alert, ArrowIcon, AspectRatio, Avatar, Badge, BatteryIcon, BluetoothIcon, BoldArrowIcon, BookmarkIcon, Bottom, Button, CalendarIcon, CameraIcon, Center, 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, Icon, InfoIcon, Inline, Left, LikeIcon, Link, 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, TickIcon, Toggle, ToggleGroup, Top, UnLikeIcon, UnlockIcon, UploadIcon, Vertical, View, WarningIcon, WifiIcon, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore };
7324
+ export { Alert, ArrowIcon, AspectRatio, Avatar, Badge, BatteryIcon, BluetoothIcon, BoldArrowIcon, BookmarkIcon, Bottom, Button, CalendarIcon, CameraIcon, Center, 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, 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, TwitterIcon, UnLikeIcon, UnlockIcon, UploadIcon, Vertical, View, WarningIcon, WifiIcon, YoutubeIcon, hideMessage, hideModal, showMessage, showModal, useMessageStore, useModalStore };
7171
7325
  //# sourceMappingURL=web.esm.js.map