@oneuptime/common 9.5.2 → 9.5.3

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.
Files changed (100) hide show
  1. package/Models/DatabaseModels/Alert.ts +1 -0
  2. package/Models/DatabaseModels/AlertEpisode.ts +1 -0
  3. package/Models/DatabaseModels/AlertEpisodeStateTimeline.ts +1 -0
  4. package/Models/DatabaseModels/AlertStateTimeline.ts +1 -0
  5. package/Models/DatabaseModels/Incident.ts +1 -0
  6. package/Models/DatabaseModels/IncidentEpisode.ts +156 -0
  7. package/Models/DatabaseModels/IncidentEpisodeFeed.ts +2 -0
  8. package/Models/DatabaseModels/IncidentEpisodePublicNote.ts +611 -0
  9. package/Models/DatabaseModels/IncidentEpisodeStateTimeline.ts +84 -0
  10. package/Models/DatabaseModels/IncidentGroupingRule.ts +36 -0
  11. package/Models/DatabaseModels/IncidentStateTimeline.ts +1 -0
  12. package/Models/DatabaseModels/Index.ts +2 -0
  13. package/Models/DatabaseModels/MonitorStatusTimeline.ts +1 -0
  14. package/Models/DatabaseModels/Project.ts +2 -1
  15. package/Models/DatabaseModels/ProjectCallSMSConfig.ts +1 -0
  16. package/Models/DatabaseModels/ScheduledMaintenance.ts +1 -0
  17. package/Models/DatabaseModels/ScheduledMaintenanceTemplate.ts +1 -0
  18. package/Models/DatabaseModels/StatusPage.ts +120 -0
  19. package/Server/API/IncidentEpisodePublicNoteAPI.ts +98 -0
  20. package/Server/API/StatusPageAPI.ts +1092 -45
  21. package/Server/Infrastructure/Postgres/SchemaMigrations/1770232207959-MigrationName.ts +181 -0
  22. package/Server/Infrastructure/Postgres/SchemaMigrations/1770237245069-MigrationName.ts +35 -0
  23. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +4 -0
  24. package/Server/Services/IncidentEpisodePublicNoteService.ts +254 -0
  25. package/Server/Services/IncidentEpisodeService.ts +26 -0
  26. package/Server/Services/Index.ts +2 -0
  27. package/Server/Utils/Monitor/MonitorIncident.ts +6 -0
  28. package/Types/Email/EmailTemplateType.ts +4 -0
  29. package/Types/Icon/IconProp.ts +172 -0
  30. package/Types/Monitor/CriteriaIncident.ts +2 -0
  31. package/Types/Permission.ts +40 -0
  32. package/Types/StatusPage/StatusPageSubscriberNotificationEventType.ts +5 -0
  33. package/UI/Components/Icon/Icon.tsx +1333 -1
  34. package/build/dist/Models/DatabaseModels/Alert.js +1 -0
  35. package/build/dist/Models/DatabaseModels/Alert.js.map +1 -1
  36. package/build/dist/Models/DatabaseModels/AlertEpisode.js +1 -0
  37. package/build/dist/Models/DatabaseModels/AlertEpisode.js.map +1 -1
  38. package/build/dist/Models/DatabaseModels/AlertEpisodeStateTimeline.js +1 -0
  39. package/build/dist/Models/DatabaseModels/AlertEpisodeStateTimeline.js.map +1 -1
  40. package/build/dist/Models/DatabaseModels/AlertStateTimeline.js +1 -0
  41. package/build/dist/Models/DatabaseModels/AlertStateTimeline.js.map +1 -1
  42. package/build/dist/Models/DatabaseModels/Incident.js +1 -0
  43. package/build/dist/Models/DatabaseModels/Incident.js.map +1 -1
  44. package/build/dist/Models/DatabaseModels/IncidentEpisode.js +161 -0
  45. package/build/dist/Models/DatabaseModels/IncidentEpisode.js.map +1 -1
  46. package/build/dist/Models/DatabaseModels/IncidentEpisodeFeed.js +2 -0
  47. package/build/dist/Models/DatabaseModels/IncidentEpisodeFeed.js.map +1 -1
  48. package/build/dist/Models/DatabaseModels/IncidentEpisodePublicNote.js +626 -0
  49. package/build/dist/Models/DatabaseModels/IncidentEpisodePublicNote.js.map +1 -0
  50. package/build/dist/Models/DatabaseModels/IncidentEpisodeStateTimeline.js +86 -0
  51. package/build/dist/Models/DatabaseModels/IncidentEpisodeStateTimeline.js.map +1 -1
  52. package/build/dist/Models/DatabaseModels/IncidentGroupingRule.js +37 -0
  53. package/build/dist/Models/DatabaseModels/IncidentGroupingRule.js.map +1 -1
  54. package/build/dist/Models/DatabaseModels/IncidentStateTimeline.js +1 -0
  55. package/build/dist/Models/DatabaseModels/IncidentStateTimeline.js.map +1 -1
  56. package/build/dist/Models/DatabaseModels/Index.js +2 -0
  57. package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
  58. package/build/dist/Models/DatabaseModels/MonitorStatusTimeline.js +1 -0
  59. package/build/dist/Models/DatabaseModels/MonitorStatusTimeline.js.map +1 -1
  60. package/build/dist/Models/DatabaseModels/Project.js +2 -1
  61. package/build/dist/Models/DatabaseModels/Project.js.map +1 -1
  62. package/build/dist/Models/DatabaseModels/ProjectCallSMSConfig.js +1 -0
  63. package/build/dist/Models/DatabaseModels/ProjectCallSMSConfig.js.map +1 -1
  64. package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js +1 -0
  65. package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js.map +1 -1
  66. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js +1 -0
  67. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplate.js.map +1 -1
  68. package/build/dist/Models/DatabaseModels/StatusPage.js +126 -0
  69. package/build/dist/Models/DatabaseModels/StatusPage.js.map +1 -1
  70. package/build/dist/Server/API/IncidentEpisodePublicNoteAPI.js +68 -0
  71. package/build/dist/Server/API/IncidentEpisodePublicNoteAPI.js.map +1 -0
  72. package/build/dist/Server/API/StatusPageAPI.js +874 -47
  73. package/build/dist/Server/API/StatusPageAPI.js.map +1 -1
  74. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1770232207959-MigrationName.js +68 -0
  75. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1770232207959-MigrationName.js.map +1 -0
  76. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1770237245069-MigrationName.js +18 -0
  77. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1770237245069-MigrationName.js.map +1 -0
  78. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +4 -0
  79. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  80. package/build/dist/Server/Services/IncidentEpisodePublicNoteService.js +223 -0
  81. package/build/dist/Server/Services/IncidentEpisodePublicNoteService.js.map +1 -0
  82. package/build/dist/Server/Services/IncidentEpisodeService.js +22 -0
  83. package/build/dist/Server/Services/IncidentEpisodeService.js.map +1 -1
  84. package/build/dist/Server/Services/Index.js +2 -0
  85. package/build/dist/Server/Services/Index.js.map +1 -1
  86. package/build/dist/Server/Utils/Monitor/MonitorIncident.js +5 -0
  87. package/build/dist/Server/Utils/Monitor/MonitorIncident.js.map +1 -1
  88. package/build/dist/Types/Email/EmailTemplateType.js +3 -0
  89. package/build/dist/Types/Email/EmailTemplateType.js.map +1 -1
  90. package/build/dist/Types/Icon/IconProp.js +172 -0
  91. package/build/dist/Types/Icon/IconProp.js.map +1 -1
  92. package/build/dist/Types/Monitor/CriteriaIncident.js +1 -0
  93. package/build/dist/Types/Monitor/CriteriaIncident.js.map +1 -1
  94. package/build/dist/Types/Permission.js +34 -0
  95. package/build/dist/Types/Permission.js.map +1 -1
  96. package/build/dist/Types/StatusPage/StatusPageSubscriberNotificationEventType.js +4 -0
  97. package/build/dist/Types/StatusPage/StatusPageSubscriberNotificationEventType.js.map +1 -1
  98. package/build/dist/UI/Components/Icon/Icon.js +502 -1
  99. package/build/dist/UI/Components/Icon/Icon.js.map +1 -1
  100. package/package.json +1 -1
@@ -1265,7 +1265,7 @@ const Icon: FunctionComponent<ComponentProps> = ({
1265
1265
  <path
1266
1266
  strokeLinecap="round"
1267
1267
  strokeLinejoin="round"
1268
- d="M2.25 15.75l5.159-5.159a2.25 2.25 0 013.182 0l5.159 5.159m-1.5-1.5l1.409-1.409a2.25 2.25 0 013.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 001.5-1.5V6a1.5 1.5 0 00-1.5-1.5H3.75A1.5 1.5 0 002.25 6v12a1.5 1.5 0 001.5 1.5zm10.5-11.25h.008v.008h-.008V8.25zm.375 0a.375.375 0 11-.75 0 .375.375 0 01.75 0z"
1268
+ d="M6.429 9.75L2.25 12l4.179 2.25m0-4.5l5.571 3 5.571-3m-11.142 0L2.25 7.5 12 2.25l9.75 5.25-4.179 2.25m0 0L21.75 12l-4.179 2.25m0 0l4.179 2.25L12 21.75 2.25 16.5l4.179-2.25m11.142 0l-5.571 3-5.571-3"
1269
1269
  />,
1270
1270
  );
1271
1271
  } else if (icon === IconProp.Layout) {
@@ -1401,6 +1401,1338 @@ const Icon: FunctionComponent<ComponentProps> = ({
1401
1401
  d="M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z"
1402
1402
  />,
1403
1403
  );
1404
+ } else if (icon === IconProp.ArrowDown) {
1405
+ return getSvgWrapper(
1406
+ <path
1407
+ strokeLinecap="round"
1408
+ strokeLinejoin="round"
1409
+ d="M19.5 13.5 12 21m0 0-7.5-7.5M12 21V3"
1410
+ />,
1411
+ );
1412
+ } else if (icon === IconProp.ArrowUp) {
1413
+ return getSvgWrapper(
1414
+ <path
1415
+ strokeLinecap="round"
1416
+ strokeLinejoin="round"
1417
+ d="M4.5 10.5 12 3m0 0 7.5 7.5M12 3v18"
1418
+ />,
1419
+ );
1420
+ } else if (icon === IconProp.ArrowLeft) {
1421
+ return getSvgWrapper(
1422
+ <path
1423
+ strokeLinecap="round"
1424
+ strokeLinejoin="round"
1425
+ d="M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18"
1426
+ />,
1427
+ );
1428
+ } else if (icon === IconProp.ArrowRight) {
1429
+ return getSvgWrapper(
1430
+ <path
1431
+ strokeLinecap="round"
1432
+ strokeLinejoin="round"
1433
+ d="M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3"
1434
+ />,
1435
+ );
1436
+ } else if (icon === IconProp.ArrowPath) {
1437
+ return getSvgWrapper(
1438
+ <path
1439
+ strokeLinecap="round"
1440
+ strokeLinejoin="round"
1441
+ d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99"
1442
+ />,
1443
+ );
1444
+ } else if (icon === IconProp.ArrowTrendingUp) {
1445
+ return getSvgWrapper(
1446
+ <path
1447
+ strokeLinecap="round"
1448
+ strokeLinejoin="round"
1449
+ d="M2.25 18 9 11.25l4.306 4.306a11.95 11.95 0 0 1 5.814-5.518l2.74-1.22m0 0-5.94-2.281m5.94 2.28-2.28 5.941"
1450
+ />,
1451
+ );
1452
+ } else if (icon === IconProp.ArrowTrendingDown) {
1453
+ return getSvgWrapper(
1454
+ <path
1455
+ strokeLinecap="round"
1456
+ strokeLinejoin="round"
1457
+ d="M2.25 6 9 12.75l4.286-4.286a11.948 11.948 0 0 1 4.306 6.43l.776 2.898m0 0 3.182-5.511m-3.182 5.51-5.511-3.181"
1458
+ />,
1459
+ );
1460
+ } else if (icon === IconProp.ArrowUturnLeft) {
1461
+ return getSvgWrapper(
1462
+ <path
1463
+ strokeLinecap="round"
1464
+ strokeLinejoin="round"
1465
+ d="M9 15 3 9m0 0 6-6M3 9h12a6 6 0 0 1 0 12h-3"
1466
+ />,
1467
+ );
1468
+ } else if (icon === IconProp.ArrowUturnRight) {
1469
+ return getSvgWrapper(
1470
+ <path
1471
+ strokeLinecap="round"
1472
+ strokeLinejoin="round"
1473
+ d="m15 15 6-6m0 0-6-6m6 6H9a6 6 0 0 0 0 12h3"
1474
+ />,
1475
+ );
1476
+ } else if (icon === IconProp.Beaker) {
1477
+ return getSvgWrapper(
1478
+ <path
1479
+ strokeLinecap="round"
1480
+ strokeLinejoin="round"
1481
+ d="M9.75 3.104v5.714a2.25 2.25 0 0 1-.659 1.591L5 14.5M9.75 3.104c-.251.023-.501.05-.75.082m.75-.082a24.301 24.301 0 0 1 4.5 0m0 0v5.714c0 .597.237 1.17.659 1.591L19.8 15.3M14.25 3.104c.251.023.501.05.75.082M19.8 15.3l-1.57.393A9.065 9.065 0 0 1 12 15a9.065 9.065 0 0 0-6.23.693L5 14.5m14.8.8 1.402 5.607c.28 1.12-.92 2.039-1.97 1.508l-3.126-1.578a8.994 8.994 0 0 0-8.212 0l-3.126 1.578c-1.05.53-2.25-.388-1.97-1.508L5 14.5"
1482
+ />,
1483
+ );
1484
+ } else if (icon === IconProp.Bookmark) {
1485
+ return getSvgWrapper(
1486
+ <path
1487
+ strokeLinecap="round"
1488
+ strokeLinejoin="round"
1489
+ d="M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25 4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0Z"
1490
+ />,
1491
+ );
1492
+ } else if (icon === IconProp.BookmarkSlash) {
1493
+ return getSvgWrapper(
1494
+ <path
1495
+ strokeLinecap="round"
1496
+ strokeLinejoin="round"
1497
+ d="m3 3 1.664 1.664M21 21l-1.5-1.5m-5.485-1.242L12 17.25 4.5 21V8.742m.164-4.078a2.15 2.15 0 0 1 1.743-1.342 48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185V19.5M4.664 4.664 19.5 19.5"
1498
+ />,
1499
+ );
1500
+ } else if (icon === IconProp.Briefcase) {
1501
+ return getSvgWrapper(
1502
+ <path
1503
+ strokeLinecap="round"
1504
+ strokeLinejoin="round"
1505
+ d="M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48.114 48.114 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A23.978 23.978 0 0 1 12 15.75c-2.648 0-5.195-.429-7.577-1.22a2.016 2.016 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48.111 48.111 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a48.667 48.667 0 0 0-7.5 0M12 12.75h.008v.008H12v-.008Z"
1506
+ />,
1507
+ );
1508
+ } else if (icon === IconProp.BuildingOffice) {
1509
+ return getSvgWrapper(
1510
+ <path
1511
+ strokeLinecap="round"
1512
+ strokeLinejoin="round"
1513
+ d="M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21"
1514
+ />,
1515
+ );
1516
+ } else if (icon === IconProp.Cake) {
1517
+ return getSvgWrapper(
1518
+ <path
1519
+ strokeLinecap="round"
1520
+ strokeLinejoin="round"
1521
+ d="M12 8.25v-1.5m0 1.5c-1.355 0-2.697.056-4.024.166C6.845 8.51 6 9.473 6 10.608v2.513m6-4.871c1.355 0 2.697.056 4.024.166C17.155 8.51 18 9.473 18 10.608v2.513M15 8.25v-1.5m-6 1.5v-1.5m12 9.75-1.5.75a3.354 3.354 0 0 1-3 0 3.354 3.354 0 0 0-3 0 3.354 3.354 0 0 1-3 0 3.354 3.354 0 0 0-3 0 3.354 3.354 0 0 1-3 0L3 16.5m15-3.379a48.474 48.474 0 0 0-6-.371c-2.032 0-4.034.126-6 .371m12 0c.39.049.777.102 1.163.16 1.07.16 1.837 1.094 1.837 2.175v5.169c0 .621-.504 1.125-1.125 1.125H4.125A1.125 1.125 0 0 1 3 20.625v-5.17c0-1.08.768-2.014 1.837-2.174.386-.058.773-.112 1.163-.16"
1522
+ />,
1523
+ );
1524
+ } else if (icon === IconProp.Calculator) {
1525
+ return getSvgWrapper(
1526
+ <path
1527
+ strokeLinecap="round"
1528
+ strokeLinejoin="round"
1529
+ d="M15.75 15.75V18m-7.5-6.75h.008v.008H8.25v-.008Zm0 2.25h.008v.008H8.25V13.5Zm0 2.25h.008v.008H8.25v-.008Zm0 2.25h.008v.008H8.25V18Zm2.498-6.75h.007v.008h-.007v-.008Zm0 2.25h.007v.008h-.007V13.5Zm0 2.25h.007v.008h-.007v-.008Zm0 2.25h.007v.008h-.007V18Zm2.504-6.75h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V13.5Zm0 2.25h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V18Zm2.498-6.75h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V13.5ZM8.25 6h7.5v2.25h-7.5V6ZM12 2.25c-1.892 0-3.758.11-5.593.322C5.307 2.7 4.5 3.65 4.5 4.757V19.5a2.25 2.25 0 0 0 2.25 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25V4.757c0-1.108-.806-2.057-1.907-2.185A48.507 48.507 0 0 0 12 2.25Z"
1530
+ />,
1531
+ );
1532
+ } else if (icon === IconProp.Camera) {
1533
+ return getSvgWrapper(
1534
+ <path
1535
+ strokeLinecap="round"
1536
+ strokeLinejoin="round"
1537
+ d="M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23c-.38.054-.757.112-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a47.865 47.865 0 0 0-1.134-.175 2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.192 2.192 0 0 0-1.736-1.039 48.774 48.774 0 0 0-5.232 0 2.192 2.192 0 0 0-1.736 1.039l-.821 1.316Z"
1538
+ />,
1539
+ );
1540
+ } else if (icon === IconProp.Cloud) {
1541
+ return getSvgWrapper(
1542
+ <path
1543
+ strokeLinecap="round"
1544
+ strokeLinejoin="round"
1545
+ d="M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257 3 3 0 0 0-3.758-3.848 5.25 5.25 0 0 0-10.233 2.33A4.502 4.502 0 0 0 2.25 15Z"
1546
+ />,
1547
+ );
1548
+ } else if (icon === IconProp.CloudArrowDown) {
1549
+ return getSvgWrapper(
1550
+ <path
1551
+ strokeLinecap="round"
1552
+ strokeLinejoin="round"
1553
+ d="M12 9.75v6.75m0 0-3-3m3 3 3-3m-8.25 6a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z"
1554
+ />,
1555
+ );
1556
+ } else if (icon === IconProp.CloudArrowUp) {
1557
+ return getSvgWrapper(
1558
+ <path
1559
+ strokeLinecap="round"
1560
+ strokeLinejoin="round"
1561
+ d="M12 16.5V9.75m0 0 3 3m-3-3-3 3M6.75 19.5a4.5 4.5 0 0 1-1.41-8.775 5.25 5.25 0 0 1 10.233-2.33 3 3 0 0 1 3.758 3.848A3.752 3.752 0 0 1 18 19.5H6.75Z"
1562
+ />,
1563
+ );
1564
+ } else if (icon === IconProp.Cog || icon === IconProp.Cog6Tooth) {
1565
+ return getSvgWrapper(
1566
+ <path
1567
+ strokeLinecap="round"
1568
+ strokeLinejoin="round"
1569
+ d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a7.723 7.723 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.47 6.47 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a6.932 6.932 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.086.22-.128.332-.183.582-.495.644-.869l.214-1.28Z"
1570
+ />,
1571
+ );
1572
+ } else if (icon === IconProp.Cog8Tooth) {
1573
+ return getSvgWrapper(
1574
+ <path
1575
+ strokeLinecap="round"
1576
+ strokeLinejoin="round"
1577
+ d="M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 0 1 1.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204.165.397.505.71.93.78l.893.15c.543.09.94.559.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.894.149c-.424.07-.764.383-.929.78-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 0 1-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107-.398.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 0 1-.12-1.45l.527-.737c.25-.35.272-.806.108-1.204-.165-.397-.506-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78.165-.398.143-.854-.108-1.204l-.526-.738a1.125 1.125 0 0 1 .12-1.45l.773-.773a1.125 1.125 0 0 1 1.45-.12l.737.527c.35.25.807.272 1.204.107.397-.165.71-.505.78-.929l.15-.894Z"
1578
+ />,
1579
+ );
1580
+ } else if (icon === IconProp.CommandLine) {
1581
+ return getSvgWrapper(
1582
+ <path
1583
+ strokeLinecap="round"
1584
+ strokeLinejoin="round"
1585
+ d="m6.75 7.5 3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25Z"
1586
+ />,
1587
+ );
1588
+ } else if (icon === IconProp.ComputerDesktop) {
1589
+ return getSvgWrapper(
1590
+ <path
1591
+ strokeLinecap="round"
1592
+ strokeLinejoin="round"
1593
+ d="M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25"
1594
+ />,
1595
+ );
1596
+ } else if (icon === IconProp.CreditCard) {
1597
+ return getSvgWrapper(
1598
+ <path
1599
+ strokeLinecap="round"
1600
+ strokeLinejoin="round"
1601
+ d="M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5Z"
1602
+ />,
1603
+ );
1604
+ } else if (icon === IconProp.CurrencyDollar) {
1605
+ return getSvgWrapper(
1606
+ <path
1607
+ strokeLinecap="round"
1608
+ strokeLinejoin="round"
1609
+ d="M12 6v12m-3-2.818.879.659c1.171.879 3.07.879 4.242 0 1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
1610
+ />,
1611
+ );
1612
+ } else if (icon === IconProp.DevicePhoneMobile) {
1613
+ return getSvgWrapper(
1614
+ <path
1615
+ strokeLinecap="round"
1616
+ strokeLinejoin="round"
1617
+ d="M10.5 1.5H8.25A2.25 2.25 0 0 0 6 3.75v16.5a2.25 2.25 0 0 0 2.25 2.25h7.5A2.25 2.25 0 0 0 18 20.25V3.75a2.25 2.25 0 0 0-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3"
1618
+ />,
1619
+ );
1620
+ } else if (icon === IconProp.DeviceTablet) {
1621
+ return getSvgWrapper(
1622
+ <path
1623
+ strokeLinecap="round"
1624
+ strokeLinejoin="round"
1625
+ d="M10.5 19.5h3m-6.75 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-15a2.25 2.25 0 0 0-2.25-2.25H6.75A2.25 2.25 0 0 0 4.5 4.5v15a2.25 2.25 0 0 0 2.25 2.25Z"
1626
+ />,
1627
+ );
1628
+ } else if (icon === IconProp.Document) {
1629
+ return getSvgWrapper(
1630
+ <path
1631
+ strokeLinecap="round"
1632
+ strokeLinejoin="round"
1633
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
1634
+ />,
1635
+ );
1636
+ } else if (icon === IconProp.DocumentArrowDown) {
1637
+ return getSvgWrapper(
1638
+ <path
1639
+ strokeLinecap="round"
1640
+ strokeLinejoin="round"
1641
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m.75 12 3 3m0 0 3-3m-3 3v-6m-1.5-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
1642
+ />,
1643
+ );
1644
+ } else if (icon === IconProp.DocumentArrowUp) {
1645
+ return getSvgWrapper(
1646
+ <path
1647
+ strokeLinecap="round"
1648
+ strokeLinejoin="round"
1649
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12-3-3m0 0-3 3m3-3v6m-1.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
1650
+ />,
1651
+ );
1652
+ } else if (icon === IconProp.DocumentDuplicate) {
1653
+ return getSvgWrapper(
1654
+ <path
1655
+ strokeLinecap="round"
1656
+ strokeLinejoin="round"
1657
+ d="M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75"
1658
+ />,
1659
+ );
1660
+ } else if (icon === IconProp.DocumentMagnifyingGlass) {
1661
+ return getSvgWrapper(
1662
+ <path
1663
+ strokeLinecap="round"
1664
+ strokeLinejoin="round"
1665
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m5.231 13.481L15 17.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v16.5c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Zm3.75 11.625a2.625 2.625 0 1 1-5.25 0 2.625 2.625 0 0 1 5.25 0Z"
1666
+ />,
1667
+ );
1668
+ } else if (icon === IconProp.DocumentMinus) {
1669
+ return getSvgWrapper(
1670
+ <path
1671
+ strokeLinecap="round"
1672
+ strokeLinejoin="round"
1673
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m6.75 12H9.75m.75-9H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
1674
+ />,
1675
+ );
1676
+ } else if (icon === IconProp.DocumentPlus) {
1677
+ return getSvgWrapper(
1678
+ <path
1679
+ strokeLinecap="round"
1680
+ strokeLinejoin="round"
1681
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
1682
+ />,
1683
+ );
1684
+ } else if (icon === IconProp.DocumentText) {
1685
+ return getSvgWrapper(
1686
+ <path
1687
+ strokeLinecap="round"
1688
+ strokeLinejoin="round"
1689
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
1690
+ />,
1691
+ );
1692
+ } else if (icon === IconProp.EllipsisHorizontal) {
1693
+ return getSvgWrapper(
1694
+ <path
1695
+ strokeLinecap="round"
1696
+ strokeLinejoin="round"
1697
+ d="M6.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM12.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM18.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
1698
+ />,
1699
+ );
1700
+ } else if (icon === IconProp.EllipsisVertical) {
1701
+ return getSvgWrapper(
1702
+ <path
1703
+ strokeLinecap="round"
1704
+ strokeLinejoin="round"
1705
+ d="M12 6.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM12 12.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM12 18.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z"
1706
+ />,
1707
+ );
1708
+ } else if (icon === IconProp.Envelope) {
1709
+ return getSvgWrapper(
1710
+ <path
1711
+ strokeLinecap="round"
1712
+ strokeLinejoin="round"
1713
+ d="M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75"
1714
+ />,
1715
+ );
1716
+ } else if (icon === IconProp.EnvelopeOpen) {
1717
+ return getSvgWrapper(
1718
+ <path
1719
+ strokeLinecap="round"
1720
+ strokeLinejoin="round"
1721
+ d="M21.75 9v.906a2.25 2.25 0 0 1-1.183 1.981l-6.478 3.488M2.25 9v.906a2.25 2.25 0 0 0 1.183 1.981l6.478 3.488m8.839 2.51-4.66-2.51m0 0-1.023-.55a2.25 2.25 0 0 0-2.134 0l-1.022.55m0 0-4.661 2.51m16.5 1.615a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V8.844a2.25 2.25 0 0 1 1.183-1.981l7.5-4.039a2.25 2.25 0 0 1 2.134 0l7.5 4.039a2.25 2.25 0 0 1 1.183 1.98V19.5Z"
1722
+ />,
1723
+ );
1724
+ } else if (icon === IconProp.Eye) {
1725
+ return getSvgWrapper(
1726
+ <path
1727
+ strokeLinecap="round"
1728
+ strokeLinejoin="round"
1729
+ d="M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z"
1730
+ />,
1731
+ );
1732
+ } else if (icon === IconProp.FaceFrown) {
1733
+ return getSvgWrapper(
1734
+ <path
1735
+ strokeLinecap="round"
1736
+ strokeLinejoin="round"
1737
+ d="M15.182 16.318A4.486 4.486 0 0 0 12.016 15a4.486 4.486 0 0 0-3.198 1.318M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0ZM9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75 9.168 9 9.375 9s.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75.168-.75.375-.75.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Z"
1738
+ />,
1739
+ );
1740
+ } else if (icon === IconProp.FaceSmile) {
1741
+ return getSvgWrapper(
1742
+ <path
1743
+ strokeLinecap="round"
1744
+ strokeLinejoin="round"
1745
+ d="M15.182 15.182a4.5 4.5 0 0 1-6.364 0M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0ZM9.75 9.75c0 .414-.168.75-.375.75S9 10.164 9 9.75 9.168 9 9.375 9s.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Zm5.625 0c0 .414-.168.75-.375.75s-.375-.336-.375-.75.168-.75.375-.75.375.336.375.75Zm-.375 0h.008v.015h-.008V9.75Z"
1746
+ />,
1747
+ );
1748
+ } else if (icon === IconProp.Film) {
1749
+ return getSvgWrapper(
1750
+ <path
1751
+ strokeLinecap="round"
1752
+ strokeLinejoin="round"
1753
+ d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h1.5C5.496 19.5 6 18.996 6 18.375m-3.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-1.5A1.125 1.125 0 0 1 18 18.375M20.625 4.5H3.375m17.25 0c.621 0 1.125.504 1.125 1.125M20.625 4.5h-1.5C18.504 4.5 18 5.004 18 5.625m3.75 0v1.5c0 .621-.504 1.125-1.125 1.125M3.375 4.5c-.621 0-1.125.504-1.125 1.125M3.375 4.5h1.5C5.496 4.5 6 5.004 6 5.625m-3.75 0v1.5c0 .621.504 1.125 1.125 1.125m0 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m1.5-3.75C5.496 8.25 6 7.746 6 7.125v-1.5M4.875 8.25C5.496 8.25 6 8.754 6 9.375v1.5m0-5.25v5.25m0-5.25C6 5.004 6.504 4.5 7.125 4.5h9.75c.621 0 1.125.504 1.125 1.125m1.125 2.625h1.5m-1.5 0A1.125 1.125 0 0 1 18 7.125v-1.5m1.125 2.625c-.621 0-1.125.504-1.125 1.125v1.5m2.625-2.625c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125M18 5.625v5.25M7.125 12h9.75m-9.75 0A1.125 1.125 0 0 1 6 10.875M7.125 12C6.504 12 6 12.504 6 13.125m0-2.25C6 11.496 5.496 12 4.875 12M18 10.875c0 .621-.504 1.125-1.125 1.125M18 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m-12 5.25v-5.25m0 5.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125m-12 0v-1.5c0-.621-.504-1.125-1.125-1.125M18 18.375v-5.25m0 5.25v-1.5c0-.621.504-1.125 1.125-1.125M18 13.125v1.5c0 .621.504 1.125 1.125 1.125M18 13.125c0-.621.504-1.125 1.125-1.125M6 13.125v1.5c0 .621-.504 1.125-1.125 1.125M6 13.125C6 12.504 5.496 12 4.875 12m-1.5 0h1.5m-1.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M19.125 12h1.5m0 0c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h1.5m14.25 0h1.5"
1754
+ />,
1755
+ );
1756
+ } else if (icon === IconProp.Fingerprint) {
1757
+ return getSvgWrapper(
1758
+ <path
1759
+ strokeLinecap="round"
1760
+ strokeLinejoin="round"
1761
+ d="M7.864 4.243A7.5 7.5 0 0 1 19.5 10.5c0 2.92-.556 5.709-1.568 8.268M5.742 6.364A7.465 7.465 0 0 0 4.5 10.5a7.464 7.464 0 0 1-1.15 3.993m1.989 3.559A11.209 11.209 0 0 0 8.25 10.5a3.75 3.75 0 1 1 7.5 0c0 .527-.021 1.049-.064 1.565M12 10.5a14.94 14.94 0 0 1-3.6 9.75m6.633-4.596a18.666 18.666 0 0 1-2.485 5.33"
1762
+ />,
1763
+ );
1764
+ } else if (icon === IconProp.Fire) {
1765
+ return getSvgWrapper(
1766
+ <path
1767
+ strokeLinecap="round"
1768
+ strokeLinejoin="round"
1769
+ d="M15.362 5.214A8.252 8.252 0 0 1 12 21 8.25 8.25 0 0 1 6.038 7.047 8.287 8.287 0 0 0 9 9.601a8.983 8.983 0 0 1 3.361-6.867 8.21 8.21 0 0 0 3 2.48Z"
1770
+ />,
1771
+ );
1772
+ } else if (icon === IconProp.FolderMinus) {
1773
+ return getSvgWrapper(
1774
+ <path
1775
+ strokeLinecap="round"
1776
+ strokeLinejoin="round"
1777
+ d="M15 13.5H9m4.06-7.19-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z"
1778
+ />,
1779
+ );
1780
+ } else if (icon === IconProp.FolderOpen) {
1781
+ return getSvgWrapper(
1782
+ <path
1783
+ strokeLinecap="round"
1784
+ strokeLinejoin="round"
1785
+ d="M3.75 9.776c.112-.017.227-.026.344-.026h15.812c.117 0 .232.009.344.026m-16.5 0a2.25 2.25 0 0 0-1.883 2.542l.857 6a2.25 2.25 0 0 0 2.227 1.932H19.05a2.25 2.25 0 0 0 2.227-1.932l.857-6a2.25 2.25 0 0 0-1.883-2.542m-16.5 0V6A2.25 2.25 0 0 1 6 3.75h3.879a1.5 1.5 0 0 1 1.06.44l2.122 2.12a1.5 1.5 0 0 0 1.06.44H18A2.25 2.25 0 0 1 20.25 9v.776"
1786
+ />,
1787
+ );
1788
+ } else if (icon === IconProp.FolderPlus) {
1789
+ return getSvgWrapper(
1790
+ <path
1791
+ strokeLinecap="round"
1792
+ strokeLinejoin="round"
1793
+ d="M12 10.5v6m3-3H9m4.06-7.19-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z"
1794
+ />,
1795
+ );
1796
+ } else if (icon === IconProp.Forward) {
1797
+ return getSvgWrapper(
1798
+ <path
1799
+ strokeLinecap="round"
1800
+ strokeLinejoin="round"
1801
+ d="M3 8.689c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811V8.69ZM12.75 8.689c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061a1.125 1.125 0 0 1-1.683-.977V8.69Z"
1802
+ />,
1803
+ );
1804
+ } else if (icon === IconProp.Funnel) {
1805
+ return getSvgWrapper(
1806
+ <path
1807
+ strokeLinecap="round"
1808
+ strokeLinejoin="round"
1809
+ d="M12 3c2.755 0 5.455.232 8.083.678.533.09.917.556.917 1.096v1.044a2.25 2.25 0 0 1-.659 1.591l-5.432 5.432a2.25 2.25 0 0 0-.659 1.591v2.927a2.25 2.25 0 0 1-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 0 0-.659-1.591L3.659 7.409A2.25 2.25 0 0 1 3 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0 1 12 3Z"
1810
+ />,
1811
+ );
1812
+ } else if (icon === IconProp.Gift) {
1813
+ return getSvgWrapper(
1814
+ <path
1815
+ strokeLinecap="round"
1816
+ strokeLinejoin="round"
1817
+ d="M21 11.25v8.25a1.5 1.5 0 0 1-1.5 1.5H5.25a1.5 1.5 0 0 1-1.5-1.5v-8.25M12 4.875A2.625 2.625 0 1 0 9.375 7.5H12m0-2.625V7.5m0-2.625A2.625 2.625 0 1 1 14.625 7.5H12m0 0V21m-8.625-9.75h18c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125h-18c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"
1818
+ />,
1819
+ );
1820
+ } else if (icon === IconProp.GlobeAlt) {
1821
+ return getSvgWrapper(
1822
+ <path
1823
+ strokeLinecap="round"
1824
+ strokeLinejoin="round"
1825
+ d="M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5c-3.162 0-6.133-.815-8.716-2.247m0 0A9.015 9.015 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418"
1826
+ />,
1827
+ );
1828
+ } else if (icon === IconProp.HandThumbUp) {
1829
+ return getSvgWrapper(
1830
+ <path
1831
+ strokeLinecap="round"
1832
+ strokeLinejoin="round"
1833
+ d="M6.633 10.25c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V3a.75.75 0 0 1 .75-.75 2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282m0 0h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23H5.904m7.72-9.75c-.374 0-.75.036-1.124.107l-.267.05A4.501 4.501 0 0 1 8.25 9.75H8.25m6.254 0v.749c0 .18.014.359.042.535"
1834
+ />,
1835
+ );
1836
+ } else if (icon === IconProp.HandThumbDown) {
1837
+ return getSvgWrapper(
1838
+ <path
1839
+ strokeLinecap="round"
1840
+ strokeLinejoin="round"
1841
+ d="M7.498 15.25H4.372c-1.026 0-1.945-.694-2.054-1.715a12.137 12.137 0 0 1-.068-1.285c0-2.848.992-5.464 2.649-7.521C5.287 4.247 5.886 4 6.504 4h4.016a4.5 4.5 0 0 1 1.423.23l3.114 1.04a4.5 4.5 0 0 0 1.423.23h1.294M7.498 15.25c.618 0 .991.724.725 1.282A7.471 7.471 0 0 0 7.5 19.75 2.25 2.25 0 0 0 9.75 22a.75.75 0 0 0 .75-.75v-.633c0-.573.11-1.14.322-1.672.304-.76.93-1.33 1.653-1.715a9.04 9.04 0 0 0 2.86-2.4c.498-.634 1.226-1.08 2.032-1.08h.384m-10.253 1.5H9.7m8.075-9.75c.374 0 .75.036 1.124.107l.267.05a4.5 4.5 0 0 0 3.984-1.857M17.775 5.75c-.563 0-1.124.062-1.672.183"
1842
+ />,
1843
+ );
1844
+ } else if (icon === IconProp.HandRaised) {
1845
+ return getSvgWrapper(
1846
+ <path
1847
+ strokeLinecap="round"
1848
+ strokeLinejoin="round"
1849
+ d="M10.05 4.575a1.575 1.575 0 1 0-3.15 0v3m3.15-3v-1.5a1.575 1.575 0 0 1 3.15 0v1.5m-3.15 0 .075 5.925m3.075.75V4.575m0 0a1.575 1.575 0 0 1 3.15 0V15M6.9 7.575a1.575 1.575 0 1 0-3.15 0v8.175a6.75 6.75 0 0 0 6.75 6.75h2.018a5.25 5.25 0 0 0 3.712-1.538l1.732-1.732a5.25 5.25 0 0 0 1.538-3.712.75.75 0 0 0-.218-.53l-3.25-3.25a.75.75 0 0 0-1.28.53v2.407a1.575 1.575 0 0 1-3.15 0v-7.5"
1850
+ />,
1851
+ );
1852
+ } else if (icon === IconProp.Hashtag) {
1853
+ return getSvgWrapper(
1854
+ <path
1855
+ strokeLinecap="round"
1856
+ strokeLinejoin="round"
1857
+ d="M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5-3.9 19.5m-2.1-19.5-3.9 19.5"
1858
+ />,
1859
+ );
1860
+ } else if (icon === IconProp.Heart) {
1861
+ return getSvgWrapper(
1862
+ <path
1863
+ strokeLinecap="round"
1864
+ strokeLinejoin="round"
1865
+ d="M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12Z"
1866
+ />,
1867
+ );
1868
+ } else if (icon === IconProp.Identification) {
1869
+ return getSvgWrapper(
1870
+ <path
1871
+ strokeLinecap="round"
1872
+ strokeLinejoin="round"
1873
+ d="M15 9h3.75M15 12h3.75M15 15h3.75M4.5 19.5h15a2.25 2.25 0 0 0 2.25-2.25V6.75A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25v10.5A2.25 2.25 0 0 0 4.5 19.5Zm6-10.125a1.875 1.875 0 1 1-3.75 0 1.875 1.875 0 0 1 3.75 0Zm1.294 6.336a6.721 6.721 0 0 1-3.17.789 6.721 6.721 0 0 1-3.168-.789 3.376 3.376 0 0 1 6.338 0Z"
1874
+ />,
1875
+ );
1876
+ } else if (icon === IconProp.Inbox) {
1877
+ return getSvgWrapper(
1878
+ <path
1879
+ strokeLinecap="round"
1880
+ strokeLinejoin="round"
1881
+ d="M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859m-19.5.338V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162c0-.224-.034-.447-.1-.661L19.24 5.338a2.25 2.25 0 0 0-2.15-1.588H6.911a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.25 2.25 0 0 0-.1.661Z"
1882
+ />,
1883
+ );
1884
+ } else if (icon === IconProp.InboxArrowDown) {
1885
+ return getSvgWrapper(
1886
+ <path
1887
+ strokeLinecap="round"
1888
+ strokeLinejoin="round"
1889
+ d="M9 3.75H6.912a2.25 2.25 0 0 0-2.15 1.588L2.35 13.177a2.25 2.25 0 0 0-.1.661V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18v-4.162c0-.224-.034-.447-.1-.661L19.24 5.338a2.25 2.25 0 0 0-2.15-1.588H15M2.25 13.5h3.86a2.25 2.25 0 0 1 2.012 1.244l.256.512a2.25 2.25 0 0 0 2.013 1.244h3.218a2.25 2.25 0 0 0 2.013-1.244l.256-.512a2.25 2.25 0 0 1 2.013-1.244h3.859M12 3v8.25m0 0-3-3m3 3 3-3"
1890
+ />,
1891
+ );
1892
+ } else if (icon === IconProp.InboxStack) {
1893
+ return getSvgWrapper(
1894
+ <path
1895
+ strokeLinecap="round"
1896
+ strokeLinejoin="round"
1897
+ d="M7.875 14.25l1.214.859a1.5 1.5 0 0 0 1.822 0l1.214-.859m-4.25 0h4.25m-4.25 0V12a2.25 2.25 0 0 1 2.25-2.25h0A2.25 2.25 0 0 1 14.25 12v2.25m-8.625 0H3a2.25 2.25 0 0 1-2.25-2.25V6A2.25 2.25 0 0 1 3 3.75h18A2.25 2.25 0 0 1 23.25 6v6A2.25 2.25 0 0 1 21 14.25h-2.625m-11.25 0V18A2.25 2.25 0 0 0 9.375 20.25h5.25A2.25 2.25 0 0 0 16.875 18v-3.75m-11.25 0h11.25"
1898
+ />,
1899
+ );
1900
+ } else if (icon === IconProp.InformationCircle) {
1901
+ return getSvgWrapper(
1902
+ <path
1903
+ strokeLinecap="round"
1904
+ strokeLinejoin="round"
1905
+ d="m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z"
1906
+ />,
1907
+ );
1908
+ } else if (icon === IconProp.Language) {
1909
+ return getSvgWrapper(
1910
+ <path
1911
+ strokeLinecap="round"
1912
+ strokeLinejoin="round"
1913
+ d="m10.5 21 5.25-11.25L21 21m-9-3h7.5M3 5.621a48.474 48.474 0 0 1 6-.371m0 0c1.12 0 2.233.038 3.334.114M9 5.25V3m3.334 2.364C11.176 10.658 7.69 15.08 3 17.502m9.334-12.138c.896.061 1.785.147 2.666.257m-4.589 8.495a18.023 18.023 0 0 1-3.827-5.802"
1914
+ />,
1915
+ );
1916
+ } else if (icon === IconProp.Lifebuoy) {
1917
+ return getSvgWrapper(
1918
+ <path
1919
+ strokeLinecap="round"
1920
+ strokeLinejoin="round"
1921
+ d="M16.712 4.33a9.027 9.027 0 0 1 1.652 1.306c.51.51.944 1.064 1.306 1.652M16.712 4.33l-3.448 4.138m3.448-4.138a9.014 9.014 0 0 0-9.424 0M19.67 7.288l-4.138 3.448m4.138-3.448a9.014 9.014 0 0 1 0 9.424m-4.138-5.976a3.736 3.736 0 0 0-.88-1.388 3.737 3.737 0 0 0-1.388-.88m2.268 2.268a3.765 3.765 0 0 1 0 2.528m-2.268-4.796a3.765 3.765 0 0 0-2.528 0m4.796 4.796c-.181.506-.475.982-.88 1.388a3.736 3.736 0 0 1-1.388.88m2.268-2.268 4.138 3.448m0 0a9.027 9.027 0 0 1-1.306 1.652c-.51.51-1.064.944-1.652 1.306m0 0-3.448-4.138m3.448 4.138a9.014 9.014 0 0 1-9.424 0m5.976-4.138a3.765 3.765 0 0 1-2.528 0m0 0a3.736 3.736 0 0 1-1.388-.88 3.737 3.737 0 0 1-.88-1.388m2.268 2.268L7.288 19.67m0 0a9.024 9.024 0 0 1-1.652-1.306 9.027 9.027 0 0 1-1.306-1.652m0 0 4.138-3.448M4.33 16.712a9.014 9.014 0 0 1 0-9.424m4.138 5.976a3.765 3.765 0 0 1 0-2.528m0 0c.181-.506.475-.982.88-1.388a3.736 3.736 0 0 1 1.388-.88m-2.268 2.268L4.33 7.288m6.406 1.18L7.288 4.33m0 0a9.024 9.024 0 0 0-1.652 1.306A9.025 9.025 0 0 0 4.33 7.288"
1922
+ />,
1923
+ );
1924
+ } else if (icon === IconProp.LightBulb) {
1925
+ return getSvgWrapper(
1926
+ <path
1927
+ strokeLinecap="round"
1928
+ strokeLinejoin="round"
1929
+ d="M12 18v-5.25m0 0a6.01 6.01 0 0 0 1.5-.189m-1.5.189a6.01 6.01 0 0 1-1.5-.189m3.75 7.478a12.06 12.06 0 0 1-4.5 0m3.75 2.383a14.406 14.406 0 0 1-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 1 0-7.517 0c.85.493 1.509 1.333 1.509 2.316V18"
1930
+ />,
1931
+ );
1932
+ } else if (icon === IconProp.LinkSlash) {
1933
+ return getSvgWrapper(
1934
+ <path
1935
+ strokeLinecap="round"
1936
+ strokeLinejoin="round"
1937
+ d="M13.181 8.68a4.503 4.503 0 0 1 1.903 6.405m-9.768-2.782L3.56 14.06a4.5 4.5 0 0 0 6.364 6.365l3.129-3.129m5.614-5.615 1.757-1.757a4.5 4.5 0 0 0-6.364-6.365l-4.5 4.5c-.258.26-.479.541-.661.84m1.903 6.405a4.495 4.495 0 0 1-1.242-.88 4.483 4.483 0 0 1-.972-1.506m8.715-6.765a4.483 4.483 0 0 0-1.242-.88 4.483 4.483 0 0 0-2.188-.611M3 3l18 18"
1938
+ />,
1939
+ );
1940
+ } else if (icon === IconProp.LockOpen) {
1941
+ return getSvgWrapper(
1942
+ <path
1943
+ strokeLinecap="round"
1944
+ strokeLinejoin="round"
1945
+ d="M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z"
1946
+ />,
1947
+ );
1948
+ } else if (icon === IconProp.MagnifyingGlass) {
1949
+ return getSvgWrapper(
1950
+ <path
1951
+ strokeLinecap="round"
1952
+ strokeLinejoin="round"
1953
+ d="m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"
1954
+ />,
1955
+ );
1956
+ } else if (icon === IconProp.MagnifyingGlassCircle) {
1957
+ return getSvgWrapper(
1958
+ <path
1959
+ strokeLinecap="round"
1960
+ strokeLinejoin="round"
1961
+ d="m15.75 15.75-2.489-2.489m0 0a3.375 3.375 0 1 0-4.773-4.773 3.375 3.375 0 0 0 4.774 4.774ZM21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
1962
+ />,
1963
+ );
1964
+ } else if (icon === IconProp.MagnifyingGlassMinus) {
1965
+ return getSvgWrapper(
1966
+ <path
1967
+ strokeLinecap="round"
1968
+ strokeLinejoin="round"
1969
+ d="m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607ZM13.5 10.5h-6"
1970
+ />,
1971
+ );
1972
+ } else if (icon === IconProp.MagnifyingGlassPlus) {
1973
+ return getSvgWrapper(
1974
+ <path
1975
+ strokeLinecap="round"
1976
+ strokeLinejoin="round"
1977
+ d="m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607ZM10.5 7.5v6m3-3h-6"
1978
+ />,
1979
+ );
1980
+ } else if (icon === IconProp.Map) {
1981
+ return getSvgWrapper(
1982
+ <path
1983
+ strokeLinecap="round"
1984
+ strokeLinejoin="round"
1985
+ d="M9 6.75V15m0-6h5.625c1.036 0 2.023.439 2.745 1.219L21 15m0 0H9m12 0v3.75a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18.75V5.25A2.25 2.25 0 0 1 5.25 3h13.5A2.25 2.25 0 0 1 21 5.25v9.75Z"
1986
+ />,
1987
+ );
1988
+ } else if (icon === IconProp.MapPin) {
1989
+ return getSvgWrapper(
1990
+ <path
1991
+ strokeLinecap="round"
1992
+ strokeLinejoin="round"
1993
+ d="M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
1994
+ />,
1995
+ );
1996
+ } else if (icon === IconProp.Megaphone) {
1997
+ return getSvgWrapper(
1998
+ <path
1999
+ strokeLinecap="round"
2000
+ strokeLinejoin="round"
2001
+ d="M10.34 15.84c-.688-.06-1.386-.09-2.09-.09H7.5a4.5 4.5 0 1 1 0-9h.75c.704 0 1.402-.03 2.09-.09m0 9.18c.253.962.584 1.892.985 2.783.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a20.845 20.845 0 0 1-1.44-4.282m3.102.069a18.03 18.03 0 0 1-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.848 23.848 0 0 1 8.835 2.535M10.34 6.66a23.847 23.847 0 0 1 8.835-2.535m0 0A23.74 23.74 0 0 1 18.795 3m.38 1.125a23.91 23.91 0 0 1 1.014 5.395m-1.014 8.855c-.118.38-.245.754-.38 1.125m.38-1.125a23.91 23.91 0 0 0 1.014-5.395m0-3.46c.495.413.811 1.035.811 1.73 0 .695-.316 1.317-.811 1.73m0-3.46a24.347 24.347 0 0 1 0 3.46"
2002
+ />,
2003
+ );
2004
+ } else if (icon === IconProp.Microphone) {
2005
+ return getSvgWrapper(
2006
+ <path
2007
+ strokeLinecap="round"
2008
+ strokeLinejoin="round"
2009
+ d="M12 18.75a6 6 0 0 0 6-6v-1.5m-6 7.5a6 6 0 0 1-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 0 1-3-3V4.5a3 3 0 1 1 6 0v8.25a3 3 0 0 1-3 3Z"
2010
+ />,
2011
+ );
2012
+ } else if (icon === IconProp.Moon) {
2013
+ return getSvgWrapper(
2014
+ <path
2015
+ strokeLinecap="round"
2016
+ strokeLinejoin="round"
2017
+ d="M21.752 15.002A9.72 9.72 0 0 1 18 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 0 0 9.002-5.998Z"
2018
+ />,
2019
+ );
2020
+ } else if (icon === IconProp.MusicalNote) {
2021
+ return getSvgWrapper(
2022
+ <path
2023
+ strokeLinecap="round"
2024
+ strokeLinejoin="round"
2025
+ d="m9 9 10.5-3m0 6.553v3.75a2.25 2.25 0 0 1-1.632 2.163l-1.32.377a1.803 1.803 0 1 1-.99-3.467l2.31-.66a2.25 2.25 0 0 0 1.632-2.163Zm0 0V4.5a2.25 2.25 0 0 0-2.25-2.25h-.75a2.25 2.25 0 0 0-2.25 2.25V15M6 15a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm.75-9.75V15"
2026
+ />,
2027
+ );
2028
+ } else if (icon === IconProp.Newspaper) {
2029
+ return getSvgWrapper(
2030
+ <path
2031
+ strokeLinecap="round"
2032
+ strokeLinejoin="round"
2033
+ d="M12 7.5h1.5m-1.5 3h1.5m-7.5 3h7.5m-7.5 3h7.5m3-9h3.375c.621 0 1.125.504 1.125 1.125V18a2.25 2.25 0 0 1-2.25 2.25M16.5 7.5V18a2.25 2.25 0 0 0 2.25 2.25M16.5 7.5V4.875c0-.621-.504-1.125-1.125-1.125H4.125C3.504 3.75 3 4.254 3 4.875V18a2.25 2.25 0 0 0 2.25 2.25h13.5M6 7.5h3v3H6v-3Z"
2034
+ />,
2035
+ );
2036
+ } else if (icon === IconProp.NoSymbol) {
2037
+ return getSvgWrapper(
2038
+ <path
2039
+ strokeLinecap="round"
2040
+ strokeLinejoin="round"
2041
+ d="M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636"
2042
+ />,
2043
+ );
2044
+ } else if (icon === IconProp.PaintBrush) {
2045
+ return getSvgWrapper(
2046
+ <path
2047
+ strokeLinecap="round"
2048
+ strokeLinejoin="round"
2049
+ d="M9.53 16.122a3 3 0 0 0-5.78 1.128 2.25 2.25 0 0 1-2.4 2.245 4.5 4.5 0 0 0 8.4-2.245c0-.399-.078-.78-.22-1.128Zm0 0a15.998 15.998 0 0 0 3.388-1.62m-5.043-.025a15.994 15.994 0 0 1 1.622-3.395m3.42 3.42a15.995 15.995 0 0 0 4.764-4.648l3.876-5.814a1.151 1.151 0 0 0-1.597-1.597L14.146 6.32a15.996 15.996 0 0 0-4.649 4.763m3.42 3.42a6.776 6.776 0 0 0-3.42-3.42"
2050
+ />,
2051
+ );
2052
+ } else if (icon === IconProp.PaperAirplane) {
2053
+ return getSvgWrapper(
2054
+ <path
2055
+ strokeLinecap="round"
2056
+ strokeLinejoin="round"
2057
+ d="M6 12 3.269 3.125A59.769 59.769 0 0 1 21.485 12 59.768 59.768 0 0 1 3.27 20.875L5.999 12Zm0 0h7.5"
2058
+ />,
2059
+ );
2060
+ } else if (icon === IconProp.PaperClip) {
2061
+ return getSvgWrapper(
2062
+ <path
2063
+ strokeLinecap="round"
2064
+ strokeLinejoin="round"
2065
+ d="m18.375 12.739-7.693 7.693a4.5 4.5 0 0 1-6.364-6.364l10.94-10.94A3 3 0 1 1 19.5 7.372L8.552 18.32m.009-.01-.01.01m5.699-9.941-7.81 7.81a1.5 1.5 0 0 0 2.112 2.13"
2066
+ />,
2067
+ );
2068
+ } else if (icon === IconProp.Pause) {
2069
+ return getSvgWrapper(
2070
+ <path
2071
+ strokeLinecap="round"
2072
+ strokeLinejoin="round"
2073
+ d="M15.75 5.25v13.5m-7.5-13.5v13.5"
2074
+ />,
2075
+ );
2076
+ } else if (icon === IconProp.PauseCircle) {
2077
+ return getSvgWrapper(
2078
+ <path
2079
+ strokeLinecap="round"
2080
+ strokeLinejoin="round"
2081
+ d="M14.25 9v6m-4.5 0V9M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
2082
+ />,
2083
+ );
2084
+ } else if (icon === IconProp.PencilSquare) {
2085
+ return getSvgWrapper(
2086
+ <path
2087
+ strokeLinecap="round"
2088
+ strokeLinejoin="round"
2089
+ d="m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"
2090
+ />,
2091
+ );
2092
+ } else if (icon === IconProp.Percent) {
2093
+ return getSvgWrapper(
2094
+ <path
2095
+ strokeLinecap="round"
2096
+ strokeLinejoin="round"
2097
+ d="m6.75 6.75 10.5 10.5M6.75 6.75a2.625 2.625 0 1 0 0-5.25 2.625 2.625 0 0 0 0 5.25Zm10.5 10.5a2.625 2.625 0 1 0 0 5.25 2.625 2.625 0 0 0 0-5.25Z"
2098
+ />,
2099
+ );
2100
+ } else if (icon === IconProp.Phone) {
2101
+ return getSvgWrapper(
2102
+ <path
2103
+ strokeLinecap="round"
2104
+ strokeLinejoin="round"
2105
+ d="M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5v2.25Z"
2106
+ />,
2107
+ );
2108
+ } else if (icon === IconProp.Photo) {
2109
+ return getSvgWrapper(
2110
+ <path
2111
+ strokeLinecap="round"
2112
+ strokeLinejoin="round"
2113
+ d="m2.25 15.75 5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5 1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5Zm10.5-11.25h.008v.008h-.008V8.25Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"
2114
+ />,
2115
+ );
2116
+ } else if (icon === IconProp.PlayCircle) {
2117
+ return getSvgWrapper(
2118
+ <path
2119
+ strokeLinecap="round"
2120
+ strokeLinejoin="round"
2121
+ d="M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0ZM15.91 11.672a.375.375 0 0 1 0 .656l-5.603 3.113a.375.375 0 0 1-.557-.328V8.887c0-.286.307-.466.557-.327l5.603 3.112Z"
2122
+ />,
2123
+ );
2124
+ } else if (icon === IconProp.PlusCircle) {
2125
+ return getSvgWrapper(
2126
+ <path
2127
+ strokeLinecap="round"
2128
+ strokeLinejoin="round"
2129
+ d="M12 9v6m3-3H9m12 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
2130
+ />,
2131
+ );
2132
+ } else if (icon === IconProp.PlusSmall) {
2133
+ return getSvgWrapper(
2134
+ <path strokeLinecap="round" strokeLinejoin="round" d="M12 6v12m6-6H6" />,
2135
+ );
2136
+ } else if (icon === IconProp.Power) {
2137
+ return getSvgWrapper(
2138
+ <path
2139
+ strokeLinecap="round"
2140
+ strokeLinejoin="round"
2141
+ d="M5.636 5.636a9 9 0 1 0 12.728 0M12 3v9"
2142
+ />,
2143
+ );
2144
+ } else if (icon === IconProp.PresentationChartBar) {
2145
+ return getSvgWrapper(
2146
+ <path
2147
+ strokeLinecap="round"
2148
+ strokeLinejoin="round"
2149
+ d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0-1 3m8.5-3 1 3m0 0 .5 1.5m-.5-1.5h-9.5m0 0-.5 1.5m.75-9 3-3 2.148 2.148A12.061 12.061 0 0 1 16.5 7.605"
2150
+ />,
2151
+ );
2152
+ } else if (icon === IconProp.PresentationChartLine) {
2153
+ return getSvgWrapper(
2154
+ <path
2155
+ strokeLinecap="round"
2156
+ strokeLinejoin="round"
2157
+ d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0-1 3m8.5-3 1 3m0 0 .5 1.5m-.5-1.5h-9.5m0 0-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6"
2158
+ />,
2159
+ );
2160
+ } else if (icon === IconProp.Printer) {
2161
+ return getSvgWrapper(
2162
+ <path
2163
+ strokeLinecap="round"
2164
+ strokeLinejoin="round"
2165
+ d="M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0 .229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18V10.5Zm-3 0h.008v.008H15V10.5Z"
2166
+ />,
2167
+ );
2168
+ } else if (icon === IconProp.PuzzlePiece) {
2169
+ return getSvgWrapper(
2170
+ <path
2171
+ strokeLinecap="round"
2172
+ strokeLinejoin="round"
2173
+ d="M14.25 6.087c0-.355.186-.676.401-.959.221-.29.349-.634.349-1.003 0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003.215.283.401.604.401.959v0a.64.64 0 0 1-.657.643 48.39 48.39 0 0 1-4.163-.3c.186 1.613.293 3.25.315 4.907a.656.656 0 0 1-.658.663v0c-.355 0-.676-.186-.959-.401a1.647 1.647 0 0 0-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48.039 48.039 0 0 1-.642 5.056c1.518.19 3.058.309 4.616.354a.64.64 0 0 0 .657-.643v0c0-.355-.186-.676-.401-.959a1.647 1.647 0 0 1-.349-1.003c0-1.035 1.008-1.875 2.25-1.875 1.243 0 2.25.84 2.25 1.875 0 .369-.128.713-.349 1.003-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48.1 48.1 0 0 0 5.427-.63 48.05 48.05 0 0 0 .582-4.717.532.532 0 0 0-.533-.57v0c-.355 0-.676.186-.959.401-.29.221-.634.349-1.003.349-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349.283.215.604.401.96.401v0a.656.656 0 0 0 .658-.663 48.422 48.422 0 0 0-.37-5.36c-1.886.342-3.81.574-5.766.689a.578.578 0 0 1-.61-.58v0Z"
2174
+ />,
2175
+ );
2176
+ } else if (icon === IconProp.QrCode) {
2177
+ return getSvgWrapper(
2178
+ <path
2179
+ strokeLinecap="round"
2180
+ strokeLinejoin="round"
2181
+ d="M3.75 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 3.75 9.375v-4.5ZM3.75 14.625c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5a1.125 1.125 0 0 1-1.125-1.125v-4.5ZM13.5 4.875c0-.621.504-1.125 1.125-1.125h4.5c.621 0 1.125.504 1.125 1.125v4.5c0 .621-.504 1.125-1.125 1.125h-4.5A1.125 1.125 0 0 1 13.5 9.375v-4.5Z"
2182
+ />,
2183
+ );
2184
+ } else if (icon === IconProp.QuestionMarkCircle) {
2185
+ return getSvgWrapper(
2186
+ <path
2187
+ strokeLinecap="round"
2188
+ strokeLinejoin="round"
2189
+ d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"
2190
+ />,
2191
+ );
2192
+ } else if (icon === IconProp.QueueList) {
2193
+ return getSvgWrapper(
2194
+ <path
2195
+ strokeLinecap="round"
2196
+ strokeLinejoin="round"
2197
+ d="M3.75 12h16.5m-16.5 3.75h16.5M3.75 19.5h16.5M5.625 4.5h12.75a1.875 1.875 0 0 1 0 3.75H5.625a1.875 1.875 0 0 1 0-3.75Z"
2198
+ />,
2199
+ );
2200
+ } else if (icon === IconProp.Radio) {
2201
+ return getSvgWrapper(
2202
+ <path
2203
+ strokeLinecap="round"
2204
+ strokeLinejoin="round"
2205
+ d="m3.75 7.5 16.5-4.125M12 6.75c-2.708 0-5.363.224-7.948.655C2.999 7.58 2.25 8.507 2.25 9.574v9.176A2.25 2.25 0 0 0 4.5 21h15a2.25 2.25 0 0 0 2.25-2.25V9.574c0-1.067-.75-1.994-1.802-2.169A48.329 48.329 0 0 0 12 6.75Zm-1.683 6.443-.005.005-.006-.005.006-.005.005.005Zm-.005 2.127-.005-.006.005-.005.005.005-.005.006Zm-2.116-.006-.005.006-.006-.006.005-.005.006.005Zm-.005-2.116-.006-.005.006-.005.005.005-.005.005ZM9.255 10.5v.008h-.008V10.5h.008Zm3.249 1.88-.007.004-.003-.007.006-.003.004.006Zm-1.38 5.126-.003-.006.006-.004.004.007-.006.003Zm.007-6.501-.003.006-.007-.003.004-.007.006.004Zm1.37 5.129-.007-.004.004-.006.006.003-.004.007Zm.504-1.877h-.008v-.007h.008v.007ZM9.255 18v.008h-.008V18h.008Zm-3.246-1.87-.007.004L6 16.127l.006-.003.004.006Zm1.366-5.119-.004-.006.006-.004.004.007-.006.003ZM7.38 17.5l-.003.006-.007-.003.004-.007.006.004Zm-1.376-5.116L6 12.38l.003-.007.007.004-.004.007Zm-.5 1.873h-.008v-.007h.008v.007ZM17.25 12.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm0 4.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z"
2206
+ />,
2207
+ );
2208
+ } else if (icon === IconProp.RocketLaunch) {
2209
+ return getSvgWrapper(
2210
+ <path
2211
+ strokeLinecap="round"
2212
+ strokeLinejoin="round"
2213
+ d="M15.59 14.37a6 6 0 0 1-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 0 0 6.16-12.12A14.98 14.98 0 0 0 9.631 8.41m5.96 5.96a14.926 14.926 0 0 1-5.841 2.58m-.119-8.54a6 6 0 0 0-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 0 0-2.58 5.84m2.699 2.7c-.103.021-.207.041-.311.06a15.09 15.09 0 0 1-2.448-2.448 14.9 14.9 0 0 1 .06-.312m-2.24 2.39a4.493 4.493 0 0 0-1.757 4.306 4.493 4.493 0 0 0 4.306-1.758M16.5 9a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
2214
+ />,
2215
+ );
2216
+ } else if (icon === IconProp.Scale) {
2217
+ return getSvgWrapper(
2218
+ <path
2219
+ strokeLinecap="round"
2220
+ strokeLinejoin="round"
2221
+ d="M12 3v17.25m0 0c-1.472 0-2.882.265-4.185.75M12 20.25c1.472 0 2.882.265 4.185.75M18.75 4.97A48.416 48.416 0 0 0 12 4.5c-2.291 0-4.545.16-6.75.47m13.5 0c1.01.143 2.01.317 3 .52m-3-.52 2.62 10.726c.122.499-.106 1.028-.589 1.202a5.988 5.988 0 0 1-2.031.352 5.988 5.988 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202L18.75 4.971Zm-16.5.52c.99-.203 1.99-.377 3-.52m0 0 2.62 10.726c.122.499-.106 1.028-.589 1.202a5.989 5.989 0 0 1-2.031.352 5.989 5.989 0 0 1-2.031-.352c-.483-.174-.711-.703-.59-1.202L5.25 4.971Z"
2222
+ />,
2223
+ );
2224
+ } else if (icon === IconProp.Scissors) {
2225
+ return getSvgWrapper(
2226
+ <path
2227
+ strokeLinecap="round"
2228
+ strokeLinejoin="round"
2229
+ d="m7.848 8.25 1.536.887M7.848 8.25a3 3 0 1 1-5.196-3 3 3 0 0 1 5.196 3Zm1.536.887a2.165 2.165 0 0 1 1.083 1.839c.005.351.054.695.14 1.024M9.384 9.137l2.077 1.199M7.848 15.75l1.536-.887m-1.536.887a3 3 0 1 1-5.196 3 3 3 0 0 1 5.196-3Zm1.536-.887a2.165 2.165 0 0 0 1.083-1.838c.005-.352.054-.695.14-1.025m-1.223 2.863 2.077-1.199m0-3.328a4.323 4.323 0 0 1 2.068-1.379l5.325-1.628a4.5 4.5 0 0 1 2.48-.044l.803.215-7.794 4.5m-2.882-1.664A4.33 4.33 0 0 0 10.607 12m3.736 0 7.794 4.5-.802.215a4.5 4.5 0 0 1-2.48-.043l-5.326-1.629a4.324 4.324 0 0 1-2.068-1.379M14.343 12l-2.882 1.664"
2230
+ />,
2231
+ );
2232
+ } else if (icon === IconProp.Server) {
2233
+ return getSvgWrapper(
2234
+ <path
2235
+ strokeLinecap="round"
2236
+ strokeLinejoin="round"
2237
+ d="M21.75 17.25v-.228a4.5 4.5 0 0 0-.12-1.03l-2.268-9.64a3.375 3.375 0 0 0-3.285-2.602H7.923a3.375 3.375 0 0 0-3.285 2.602l-2.268 9.64a4.5 4.5 0 0 0-.12 1.03v.228m19.5 0a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3m19.5 0a3 3 0 0 0-3-3H5.25a3 3 0 0 0-3 3m16.5 0h.008v.008h-.008v-.008Zm-3 0h.008v.008h-.008v-.008Z"
2238
+ />,
2239
+ );
2240
+ } else if (icon === IconProp.ServerStack) {
2241
+ return getSvgWrapper(
2242
+ <path
2243
+ strokeLinecap="round"
2244
+ strokeLinejoin="round"
2245
+ d="M5.25 14.25h13.5m-13.5 0a3 3 0 0 1-3-3m3 3a3 3 0 1 0 0 6h13.5a3 3 0 1 0 0-6m-16.5-3a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3m-19.5 0a4.5 4.5 0 0 1 .9-2.7L5.737 5.1a3.375 3.375 0 0 1 2.7-1.35h7.126c1.062 0 2.062.5 2.7 1.35l2.587 3.45a4.5 4.5 0 0 1 .9 2.7m0 0a3 3 0 0 1-3 3m0 3h.008v.008h-.008v-.008Zm0-6h.008v.008h-.008v-.008Zm-3 6h.008v.008h-.008v-.008Zm0-6h.008v.008h-.008v-.008Z"
2246
+ />,
2247
+ );
2248
+ } else if (icon === IconProp.Share) {
2249
+ return getSvgWrapper(
2250
+ <path
2251
+ strokeLinecap="round"
2252
+ strokeLinejoin="round"
2253
+ d="M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186 9.566-5.314m-9.566 7.5 9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186 2.25 2.25 0 0 0-3.935-2.186Zm0-12.814a2.25 2.25 0 1 0 3.933-2.185 2.25 2.25 0 0 0-3.933 2.185Z"
2254
+ />,
2255
+ );
2256
+ } else if (icon === IconProp.ShieldExclamation) {
2257
+ return getSvgWrapper(
2258
+ <path
2259
+ strokeLinecap="round"
2260
+ strokeLinejoin="round"
2261
+ d="M12 9v3.75m0-10.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.249-8.25-3.286Zm0 13.036h.008v.008H12v-.008Z"
2262
+ />,
2263
+ );
2264
+ } else if (icon === IconProp.ShoppingBag) {
2265
+ return getSvgWrapper(
2266
+ <path
2267
+ strokeLinecap="round"
2268
+ strokeLinejoin="round"
2269
+ d="M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993 1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007ZM8.625 10.5a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm7.5 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"
2270
+ />,
2271
+ );
2272
+ } else if (icon === IconProp.ShoppingCart) {
2273
+ return getSvgWrapper(
2274
+ <path
2275
+ strokeLinecap="round"
2276
+ strokeLinejoin="round"
2277
+ d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
2278
+ />,
2279
+ );
2280
+ } else if (icon === IconProp.SignalSlash) {
2281
+ return getSvgWrapper(
2282
+ <path
2283
+ strokeLinecap="round"
2284
+ strokeLinejoin="round"
2285
+ d="m3 3 8.735 8.735m0 0a.374.374 0 1 1 .53.53m-.53-.53.53.53m0 0L21 21M14.652 9.348a3.75 3.75 0 0 1 0 5.304m2.121-7.425a6.75 6.75 0 0 1 0 9.546m2.121-11.667c3.808 3.807 3.808 9.98 0 13.788m-9.546-4.242a3.733 3.733 0 0 1-1.06-2.122m-1.061 4.243a6.75 6.75 0 0 1-1.625-6.929m-.496 9.05c-3.068-3.067-3.664-7.67-1.79-11.334M12 12h.008v.008H12V12Z"
2286
+ />,
2287
+ );
2288
+ } else if (icon === IconProp.Sparkles) {
2289
+ return getSvgWrapper(
2290
+ <path
2291
+ strokeLinecap="round"
2292
+ strokeLinejoin="round"
2293
+ d="M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456ZM16.894 20.567 16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394-1.183.394a2.25 2.25 0 0 0-1.423 1.423Z"
2294
+ />,
2295
+ );
2296
+ } else if (icon === IconProp.SpeakerWave) {
2297
+ return getSvgWrapper(
2298
+ <path
2299
+ strokeLinecap="round"
2300
+ strokeLinejoin="round"
2301
+ d="M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"
2302
+ />,
2303
+ );
2304
+ } else if (icon === IconProp.SpeakerXMark) {
2305
+ return getSvgWrapper(
2306
+ <path
2307
+ strokeLinecap="round"
2308
+ strokeLinejoin="round"
2309
+ d="M17.25 9.75 19.5 12m0 0 2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25m-10.5-6 4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z"
2310
+ />,
2311
+ );
2312
+ } else if (icon === IconProp.Square2Stack) {
2313
+ return getSvgWrapper(
2314
+ <path
2315
+ strokeLinecap="round"
2316
+ strokeLinejoin="round"
2317
+ d="M16.5 8.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v8.25A2.25 2.25 0 0 0 6 16.5h2.25m8.25-8.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-7.5A2.25 2.25 0 0 1 8.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 0 0-2.25 2.25v6"
2318
+ />,
2319
+ );
2320
+ } else if (icon === IconProp.StopCircle) {
2321
+ return getSvgWrapper(
2322
+ <path
2323
+ strokeLinecap="round"
2324
+ strokeLinejoin="round"
2325
+ d="M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
2326
+ />,
2327
+ );
2328
+ } else if (icon === IconProp.Sun) {
2329
+ return getSvgWrapper(
2330
+ <path
2331
+ strokeLinecap="round"
2332
+ strokeLinejoin="round"
2333
+ d="M12 3v2.25m6.364.386-1.591 1.591M21 12h-2.25m-.386 6.364-1.591-1.591M12 18.75V21m-4.773-4.227-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z"
2334
+ />,
2335
+ );
2336
+ } else if (icon === IconProp.Tag) {
2337
+ return getSvgWrapper(
2338
+ <path
2339
+ strokeLinecap="round"
2340
+ strokeLinejoin="round"
2341
+ d="M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z"
2342
+ />,
2343
+ );
2344
+ } else if (icon === IconProp.Ticket) {
2345
+ return getSvgWrapper(
2346
+ <path
2347
+ strokeLinecap="round"
2348
+ strokeLinejoin="round"
2349
+ d="M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 0 1 0 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 0 1 0-5.198V6.375c0-.621-.504-1.125-1.125-1.125H3.375Z"
2350
+ />,
2351
+ );
2352
+ } else if (icon === IconProp.Trophy) {
2353
+ return getSvgWrapper(
2354
+ <path
2355
+ strokeLinecap="round"
2356
+ strokeLinejoin="round"
2357
+ d="M16.5 18.75h-9m9 0a3 3 0 0 1 3 3h-15a3 3 0 0 1 3-3m9 0v-3.375c0-.621-.503-1.125-1.125-1.125h-.871M7.5 18.75v-3.375c0-.621.504-1.125 1.125-1.125h.872m5.007 0H9.497m5.007 0a7.454 7.454 0 0 1-.982-3.172M9.497 14.25a7.454 7.454 0 0 0 .981-3.172M5.25 4.236c-.982.143-1.954.317-2.916.52A6.003 6.003 0 0 0 7.73 9.728M5.25 4.236V4.5c0 2.108.966 3.99 2.48 5.228M5.25 4.236V2.721C7.456 2.41 9.71 2.25 12 2.25c2.291 0 4.545.16 6.75.47v1.516M18.75 4.236c.982.143 1.954.317 2.916.52A6.003 6.003 0 0 1 16.27 9.728M18.75 4.236V4.5c0 2.108-.966 3.99-2.48 5.228m2.48-5.492a46.32 46.32 0 0 1 2.916.52 6.003 6.003 0 0 1-5.395 4.972m0 0a7.454 7.454 0 0 1-.982 3.172M9.497 14.25a7.454 7.454 0 0 1-.981-3.172m5.212 3.172a7.454 7.454 0 0 0 .982-3.172M14.503 14.25a7.454 7.454 0 0 0-.982-3.172"
2358
+ />,
2359
+ );
2360
+ } else if (icon === IconProp.Truck) {
2361
+ return getSvgWrapper(
2362
+ <path
2363
+ strokeLinecap="round"
2364
+ strokeLinejoin="round"
2365
+ d="M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.902 17.902 0 0 0-3.213-9.193 2.056 2.056 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.554 48.554 0 0 0-10.026 0 1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12"
2366
+ />,
2367
+ );
2368
+ } else if (icon === IconProp.Tv) {
2369
+ return getSvgWrapper(
2370
+ <path
2371
+ strokeLinecap="round"
2372
+ strokeLinejoin="round"
2373
+ d="M6 20.25h12m-7.5-3v3m3-3v3m-10.125-3h17.25c.621 0 1.125-.504 1.125-1.125V4.875c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125Z"
2374
+ />,
2375
+ );
2376
+ } else if (icon === IconProp.Upload) {
2377
+ return getSvgWrapper(
2378
+ <path
2379
+ strokeLinecap="round"
2380
+ strokeLinejoin="round"
2381
+ d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0 4.5 4.5M12 3v13.5"
2382
+ />,
2383
+ );
2384
+ } else if (icon === IconProp.UserCircle) {
2385
+ return getSvgWrapper(
2386
+ <path
2387
+ strokeLinecap="round"
2388
+ strokeLinejoin="round"
2389
+ d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
2390
+ />,
2391
+ );
2392
+ } else if (icon === IconProp.UserGroup) {
2393
+ return getSvgWrapper(
2394
+ <path
2395
+ strokeLinecap="round"
2396
+ strokeLinejoin="round"
2397
+ d="M18 18.72a9.094 9.094 0 0 0 3.741-.479 3 3 0 0 0-4.682-2.72m.94 3.198.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 0 1 6 18.719m12 0a5.971 5.971 0 0 0-.941-3.197m0 0A5.995 5.995 0 0 0 12 12.75a5.995 5.995 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72 8.986 8.986 0 0 0 3.74.477m.94-3.197a5.971 5.971 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm6 3a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-13.5 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"
2398
+ />,
2399
+ );
2400
+ } else if (icon === IconProp.UserMinus) {
2401
+ return getSvgWrapper(
2402
+ <path
2403
+ strokeLinecap="round"
2404
+ strokeLinejoin="round"
2405
+ d="M22 10.5h-6m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM4 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 10.374 21c-2.331 0-4.512-.645-6.374-1.766Z"
2406
+ />,
2407
+ );
2408
+ } else if (icon === IconProp.UserPlus) {
2409
+ return getSvgWrapper(
2410
+ <path
2411
+ strokeLinecap="round"
2412
+ strokeLinejoin="round"
2413
+ d="M18 7.5v3m0 0v3m0-3h3m-3 0h-3m-2.25-4.125a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0ZM3 19.235v-.11a6.375 6.375 0 0 1 12.75 0v.109A12.318 12.318 0 0 1 9.374 21c-2.331 0-4.512-.645-6.374-1.766Z"
2414
+ />,
2415
+ );
2416
+ } else if (icon === IconProp.VideoCamera) {
2417
+ return getSvgWrapper(
2418
+ <path
2419
+ strokeLinecap="round"
2420
+ strokeLinejoin="round"
2421
+ d="m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25Z"
2422
+ />,
2423
+ );
2424
+ } else if (icon === IconProp.VideoCameraSlash) {
2425
+ return getSvgWrapper(
2426
+ <path
2427
+ strokeLinecap="round"
2428
+ strokeLinejoin="round"
2429
+ d="m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M12 18.75H4.5a2.25 2.25 0 0 1-2.25-2.25V9m12.841 9.091L16.5 19.5m-1.409-1.409c.407-.407.659-.97.659-1.591v-9a2.25 2.25 0 0 0-2.25-2.25h-9c-.621 0-1.184.252-1.591.659m12.182 12.182L2.909 5.909M1.5 4.5l1.409 1.409"
2430
+ />,
2431
+ );
2432
+ } else if (icon === IconProp.ViewColumns) {
2433
+ return getSvgWrapper(
2434
+ <path
2435
+ strokeLinecap="round"
2436
+ strokeLinejoin="round"
2437
+ d="M9 4.5v15m6-15v15m-10.875 0h15.75c.621 0 1.125-.504 1.125-1.125V5.625c0-.621-.504-1.125-1.125-1.125H4.125C3.504 4.5 3 5.004 3 5.625v12.75c0 .621.504 1.125 1.125 1.125Z"
2438
+ />,
2439
+ );
2440
+ } else if (icon === IconProp.ViewfinderCircle) {
2441
+ return getSvgWrapper(
2442
+ <path
2443
+ strokeLinecap="round"
2444
+ strokeLinejoin="round"
2445
+ d="M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v1.5M16.5 3.75H18A2.25 2.25 0 0 1 20.25 6v1.5m0 9V18A2.25 2.25 0 0 1 18 20.25h-1.5m-9 0H6A2.25 2.25 0 0 1 3.75 18v-1.5M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
2446
+ />,
2447
+ );
2448
+ } else if (icon === IconProp.Wallet) {
2449
+ return getSvgWrapper(
2450
+ <path
2451
+ strokeLinecap="round"
2452
+ strokeLinejoin="round"
2453
+ d="M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3"
2454
+ />,
2455
+ );
2456
+ } else if (icon === IconProp.Wifi) {
2457
+ return getSvgWrapper(
2458
+ <path
2459
+ strokeLinecap="round"
2460
+ strokeLinejoin="round"
2461
+ d="M8.288 15.038a5.25 5.25 0 0 1 7.424 0M5.106 11.856c3.807-3.808 9.98-3.808 13.788 0M1.924 8.674c5.565-5.565 14.587-5.565 20.152 0M12.53 18.22l-.53.53-.53-.53a.75.75 0 0 1 1.06 0Z"
2462
+ />,
2463
+ );
2464
+ } else if (icon === IconProp.XMark) {
2465
+ return getSvgWrapper(
2466
+ <path
2467
+ strokeLinecap="round"
2468
+ strokeLinejoin="round"
2469
+ d="M6 18 18 6M6 6l12 12"
2470
+ />,
2471
+ );
2472
+ } else if (icon === IconProp.XCircle) {
2473
+ return getSvgWrapper(
2474
+ <path
2475
+ strokeLinecap="round"
2476
+ strokeLinejoin="round"
2477
+ d="m9.75 9.75 4.5 4.5m0-4.5-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
2478
+ />,
2479
+ );
2480
+ } else if (icon === IconProp.MinusCircle) {
2481
+ return getSvgWrapper(
2482
+ <path
2483
+ strokeLinecap="round"
2484
+ strokeLinejoin="round"
2485
+ d="M15 12H9m12 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
2486
+ />,
2487
+ );
2488
+ } else if (icon === IconProp.Backward) {
2489
+ return getSvgWrapper(
2490
+ <path
2491
+ strokeLinecap="round"
2492
+ strokeLinejoin="round"
2493
+ d="M21 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061A1.125 1.125 0 0 1 21 8.689v8.122ZM11.25 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061a1.125 1.125 0 0 1 1.683.977v8.122Z"
2494
+ />,
2495
+ );
2496
+ } else if (icon === IconProp.Bars2) {
2497
+ return getSvgWrapper(
2498
+ <path
2499
+ strokeLinecap="round"
2500
+ strokeLinejoin="round"
2501
+ d="M3.75 9h16.5m-16.5 6.75h16.5"
2502
+ />,
2503
+ );
2504
+ } else if (icon === IconProp.Bars4) {
2505
+ return getSvgWrapper(
2506
+ <path
2507
+ strokeLinecap="round"
2508
+ strokeLinejoin="round"
2509
+ d="M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5"
2510
+ />,
2511
+ );
2512
+ } else if (icon === IconProp.BellAlert) {
2513
+ return getSvgWrapper(
2514
+ <path
2515
+ strokeLinecap="round"
2516
+ strokeLinejoin="round"
2517
+ d="M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0M10.5 8.25h3l-3 4.5h3"
2518
+ />,
2519
+ );
2520
+ } else if (icon === IconProp.BellSlash) {
2521
+ return getSvgWrapper(
2522
+ <path
2523
+ strokeLinecap="round"
2524
+ strokeLinejoin="round"
2525
+ d="M9.143 17.082a24.248 24.248 0 0 0 3.844.148m-3.844-.148a23.856 23.856 0 0 1-5.455-1.31 8.964 8.964 0 0 0 2.3-5.542m3.155 6.852a3 3 0 0 0 5.667 1.97m1.965-2.277L21 21m-4.225-4.225a23.81 23.81 0 0 0 3.536-1.003A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6.53 6.53m10.245 10.245L6.53 6.53M3 3l3.53 3.53"
2526
+ />,
2527
+ );
2528
+ } else if (icon === IconProp.BoltSlash) {
2529
+ return getSvgWrapper(
2530
+ <path
2531
+ strokeLinecap="round"
2532
+ strokeLinejoin="round"
2533
+ d="m11.412 15.655-9.75 9.75m9.75-9.75a3 3 0 1 0-4.243-4.243m4.242 4.242L9.234 17.673a3.375 3.375 0 0 1-.89-3.777L3.75 13.5 12 2.25l.813 3.605M16.5 10.5 21 12l-8.25 11.25-.813-3.605m-1.524-6.423a3 3 0 1 1 4.242 4.242"
2534
+ />,
2535
+ );
2536
+ } else if (icon === IconProp.BookOpen) {
2537
+ return getSvgWrapper(
2538
+ <path
2539
+ strokeLinecap="round"
2540
+ strokeLinejoin="round"
2541
+ d="M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25"
2542
+ />,
2543
+ );
2544
+ } else if (icon === IconProp.ChatBubbleLeft) {
2545
+ return getSvgWrapper(
2546
+ <path
2547
+ strokeLinecap="round"
2548
+ strokeLinejoin="round"
2549
+ d="M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227 1.087.16 2.185.283 3.293.369V21l4.076-4.076a1.526 1.526 0 0 1 1.037-.443 48.282 48.282 0 0 0 5.68-.494c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018Z"
2550
+ />,
2551
+ );
2552
+ } else if (icon === IconProp.ChatBubbleLeftRight) {
2553
+ return getSvgWrapper(
2554
+ <path
2555
+ strokeLinecap="round"
2556
+ strokeLinejoin="round"
2557
+ d="M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095 48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155"
2558
+ />,
2559
+ );
2560
+ } else if (icon === IconProp.ChatBubbleOvalLeft) {
2561
+ return getSvgWrapper(
2562
+ <path
2563
+ strokeLinecap="round"
2564
+ strokeLinejoin="round"
2565
+ d="M12 20.25c4.97 0 9-3.694 9-8.25s-4.03-8.25-9-8.25S3 7.444 3 12c0 2.104.859 4.023 2.273 5.48.432.447.74 1.04.586 1.641a4.483 4.483 0 0 1-.923 1.785A5.969 5.969 0 0 0 6 21c1.282 0 2.47-.402 3.445-1.087.81.22 1.668.337 2.555.337Z"
2566
+ />,
2567
+ );
2568
+ } else if (icon === IconProp.ChatBubbleOvalLeftEllipsis) {
2569
+ return getSvgWrapper(
2570
+ <path
2571
+ strokeLinecap="round"
2572
+ strokeLinejoin="round"
2573
+ d="M8.625 12a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H8.25m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H12m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0h-.375M21 12c0 4.556-4.03 8.25-9 8.25a9.764 9.764 0 0 1-2.555-.337A5.972 5.972 0 0 1 5.41 20.97a5.969 5.969 0 0 1-.474-.065 4.48 4.48 0 0 0 .978-2.025c.09-.457-.133-.901-.467-1.226C3.93 16.178 3 14.189 3 12c0-4.556 4.03-8.25 9-8.25s9 3.694 9 8.25Z"
2574
+ />,
2575
+ );
2576
+ } else if (icon === IconProp.Clipboard) {
2577
+ return getSvgWrapper(
2578
+ <path
2579
+ strokeLinecap="round"
2580
+ strokeLinejoin="round"
2581
+ d="M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 0 1 1.927-.184"
2582
+ />,
2583
+ );
2584
+ } else if (icon === IconProp.ClipboardDocument) {
2585
+ return getSvgWrapper(
2586
+ <path
2587
+ strokeLinecap="round"
2588
+ strokeLinejoin="round"
2589
+ d="M8.25 7.5V6.108c0-1.135.845-2.098 1.976-2.192.373-.03.748-.057 1.123-.08M15.75 18H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08M15.75 18.75v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5A3.375 3.375 0 0 0 6.375 7.5H5.25m11.9-3.664A2.251 2.251 0 0 0 15 2.25h-1.5a2.251 2.251 0 0 0-2.15 1.586m5.8 0c.065.21.1.433.1.664v.75h-6V4.5c0-.231.035-.454.1-.664M6.75 7.5H4.875c-.621 0-1.125.504-1.125 1.125v12c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V16.5a9 9 0 0 0-9-9Z"
2590
+ />,
2591
+ );
2592
+ } else if (icon === IconProp.ClipboardDocumentCheck) {
2593
+ return getSvgWrapper(
2594
+ <path
2595
+ strokeLinecap="round"
2596
+ strokeLinejoin="round"
2597
+ d="M11.35 3.836c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75 2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m8.9-4.414c.376.023.75.05 1.124.08 1.131.094 1.976 1.057 1.976 2.192V16.5A2.25 2.25 0 0 1 18 18.75h-2.25m-7.5-10.5H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V18.75m-7.5-10.5h6.375c.621 0 1.125.504 1.125 1.125v9.375m-8.25-3 1.5 1.5 3-3.75"
2598
+ />,
2599
+ );
2600
+ } else if (icon === IconProp.ClipboardDocumentList) {
2601
+ return getSvgWrapper(
2602
+ <path
2603
+ strokeLinecap="round"
2604
+ strokeLinejoin="round"
2605
+ d="M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75 2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25ZM6.75 12h.008v.008H6.75V12Zm0 3h.008v.008H6.75V15Zm0 3h.008v.008H6.75V18Z"
2606
+ />,
2607
+ );
2608
+ } else if (icon === IconProp.CheckBadge) {
2609
+ return getSvgWrapper(
2610
+ <path
2611
+ strokeLinecap="round"
2612
+ strokeLinejoin="round"
2613
+ d="M9 12.75 11.25 15 15 9.75M21 12c0 1.268-.63 2.39-1.593 3.068a3.745 3.745 0 0 1-1.043 3.296 3.745 3.745 0 0 1-3.296 1.043A3.745 3.745 0 0 1 12 21c-1.268 0-2.39-.63-3.068-1.593a3.746 3.746 0 0 1-3.296-1.043 3.745 3.745 0 0 1-1.043-3.296A3.745 3.745 0 0 1 3 12c0-1.268.63-2.39 1.593-3.068a3.745 3.745 0 0 1 1.043-3.296 3.746 3.746 0 0 1 3.296-1.043A3.746 3.746 0 0 1 12 3c1.268 0 2.39.63 3.068 1.593a3.746 3.746 0 0 1 3.296 1.043 3.746 3.746 0 0 1 1.043 3.296A3.745 3.745 0 0 1 21 12Z"
2614
+ />,
2615
+ );
2616
+ } else if (icon === IconProp.ChartBarSquare) {
2617
+ return getSvgWrapper(
2618
+ <path
2619
+ strokeLinecap="round"
2620
+ strokeLinejoin="round"
2621
+ d="M7.5 14.25v2.25m3-4.5v4.5m3-6.75v6.75m3-9v9M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z"
2622
+ />,
2623
+ );
2624
+ } else if (icon === IconProp.DocumentChartBar) {
2625
+ return getSvgWrapper(
2626
+ <path
2627
+ strokeLinecap="round"
2628
+ strokeLinejoin="round"
2629
+ d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25M9 16.5v.75m3-3v3.75m3-6v6.75m1.5-15H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
2630
+ />,
2631
+ );
2632
+ } else if (icon === IconProp.FolderArrowDown) {
2633
+ return getSvgWrapper(
2634
+ <path
2635
+ strokeLinecap="round"
2636
+ strokeLinejoin="round"
2637
+ d="m9 13.5 3 3m0 0 3-3m-3 3v-6m1.06-4.19-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z"
2638
+ />,
2639
+ );
2640
+ } else if (icon === IconProp.GlobeAmericas) {
2641
+ return getSvgWrapper(
2642
+ <path
2643
+ strokeLinecap="round"
2644
+ strokeLinejoin="round"
2645
+ d="m6.115 5.19.319 1.913A6 6 0 0 0 8.11 10.36L9.75 12l-.387.775c-.217.433-.132.956.21 1.298l1.348 1.348c.21.21.329.497.329.795v1.089c0 .426.24.815.622 1.006l.153.076c.433.217.956.132 1.298-.21l.723-.723a8.7 8.7 0 0 0 2.288-4.042 1.087 1.087 0 0 0-.358-1.099l-1.33-1.108c-.251-.21-.582-.299-.905-.245l-1.17.195a1.125 1.125 0 0 1-.98-.314l-.295-.295a1.125 1.125 0 0 1 0-1.591l.13-.132a1.125 1.125 0 0 1 1.3-.21l.603.302a.809.809 0 0 0 1.086-1.086L14.25 7.5l1.256-.837a4.5 4.5 0 0 0 1.528-1.732l.146-.292M6.115 5.19A9 9 0 1 0 17.18 4.64M6.115 5.19A8.965 8.965 0 0 1 12 3c1.929 0 3.716.607 5.18 1.64"
2646
+ />,
2647
+ );
2648
+ } else if (icon === IconProp.GlobeAsiaAustralia) {
2649
+ return getSvgWrapper(
2650
+ <path
2651
+ strokeLinecap="round"
2652
+ strokeLinejoin="round"
2653
+ d="M12.75 3.03v.568c0 .334.148.65.405.864l1.068.89c.442.369.535 1.01.216 1.49l-.51.766a2.25 2.25 0 0 1-1.161.886l-.143.048a1.107 1.107 0 0 0-.57 1.664c.369.555.169 1.307-.427 1.605L9 13.125l.423 1.059a.956.956 0 0 1-1.652.928l-.679-.906a1.125 1.125 0 0 0-1.906.172L4.5 15.75l-.612.153M12.75 3.031a9 9 0 0 0-8.862 12.872M12.75 3.031a9 9 0 0 1 6.69 14.036m0 0-.177-.529A2.25 2.25 0 0 0 17.128 15H16.5l-.324-.324a1.453 1.453 0 0 0-2.328.377l-.036.073a1.586 1.586 0 0 1-.982.816l-.99.282c-.55.157-.894.702-.8 1.267l.073.438c.08.474.49.821.97.821.846 0 1.598.542 1.865 1.345l.215.643m5.276-3.67a9.012 9.012 0 0 1-5.276 3.67m0 0a9 9 0 0 1-10.275-4.835M15.75 9c0 .896-.393 1.7-1.016 2.25"
2654
+ />,
2655
+ );
2656
+ } else if (icon === IconProp.GlobeEuropeAfrica) {
2657
+ return getSvgWrapper(
2658
+ <path
2659
+ strokeLinecap="round"
2660
+ strokeLinejoin="round"
2661
+ d="M20.893 13.393l-1.135-1.135a2.252 2.252 0 0 1-.421-.585l-1.08-2.16a.414.414 0 0 0-.663-.107.827.827 0 0 1-.812.21l-1.273-.363a.89.89 0 0 0-.738 1.595l.587.39c.59.395.674 1.23.172 1.732l-.2.2c-.212.212-.33.498-.33.796v.41c0 .409-.11.809-.32 1.158l-1.315 2.191a2.11 2.11 0 0 1-1.81 1.025 1.055 1.055 0 0 1-1.055-1.055v-1.172c0-.92-.56-1.747-1.414-2.089l-.655-.261a2.25 2.25 0 0 1-1.383-2.46l.007-.042a2.25 2.25 0 0 1 .29-.787l.09-.15a2.25 2.25 0 0 1 2.37-1.048l1.178.236a1.125 1.125 0 0 0 1.302-.795l.208-.73a1.125 1.125 0 0 0-.578-1.315l-.665-.332-.091.091a2.25 2.25 0 0 1-1.591.659h-.18c-.249 0-.487.1-.662.274a.931.931 0 0 1-1.458-1.137l1.411-2.353a2.25 2.25 0 0 0 .286-.76m11.928 9.869A9 9 0 0 0 8.965 3.525m11.928 9.868A9 9 0 1 1 8.965 3.525"
2662
+ />,
2663
+ );
2664
+ } else if (icon === IconProp.HomeModern) {
2665
+ return getSvgWrapper(
2666
+ <path
2667
+ strokeLinecap="round"
2668
+ strokeLinejoin="round"
2669
+ d="M8.25 21v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21m0 0h4.5V3.545M12.75 21h7.5V10.75M2.25 21h1.5m18 0h-18M2.25 9l4.5-1.636M18.75 3l-1.5.545m0 6.205 3 1m1.5.5-1.5-.5M6.75 7.364V3h-3v18m3-13.636 10.5-3.819"
2670
+ />,
2671
+ );
2672
+ } else if (icon === IconProp.PhoneArrowDownLeft) {
2673
+ return getSvgWrapper(
2674
+ <path
2675
+ strokeLinecap="round"
2676
+ strokeLinejoin="round"
2677
+ d="M14.25 9.75v-4.5m0 4.5h4.5m-4.5 0 6-6m-3 18c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21 12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25h-2.25Z"
2678
+ />,
2679
+ );
2680
+ } else if (icon === IconProp.PhoneArrowUpRight) {
2681
+ return getSvgWrapper(
2682
+ <path
2683
+ strokeLinecap="round"
2684
+ strokeLinejoin="round"
2685
+ d="M20.25 3.75v4.5m0-4.5h-4.5m4.5 0-6 6m3 12c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21 12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25h-2.25Z"
2686
+ />,
2687
+ );
2688
+ } else if (icon === IconProp.PhoneXMark) {
2689
+ return getSvgWrapper(
2690
+ <path
2691
+ strokeLinecap="round"
2692
+ strokeLinejoin="round"
2693
+ d="M15.75 3.75 18 6m0 0 2.25 2.25M18 6l2.25-2.25M18 6l-2.25 2.25m1.5 13.5c-8.284 0-15-6.716-15-15V4.5A2.25 2.25 0 0 1 4.5 2.25h1.372c.516 0 .966.351 1.091.852l1.106 4.423c.11.44-.054.902-.417 1.173l-1.293.97a1.062 1.062 0 0 0-.38 1.21 12.035 12.035 0 0 0 7.143 7.143c.441.162.928-.004 1.21-.38l.97-1.293a1.125 1.125 0 0 1 1.173-.417l4.423 1.106c.5.125.852.575.852 1.091V19.5a2.25 2.25 0 0 1-2.25 2.25h-2.25Z"
2694
+ />,
2695
+ );
2696
+ } else if (icon === IconProp.PlayPause) {
2697
+ return getSvgWrapper(
2698
+ <path
2699
+ strokeLinecap="round"
2700
+ strokeLinejoin="round"
2701
+ d="M21 7.5V18M15 7.5V18M3 16.811V8.69c0-.864.933-1.406 1.683-.977l7.108 4.061a1.125 1.125 0 0 1 0 1.954l-7.108 4.061A1.125 1.125 0 0 1 3 16.811Z"
2702
+ />,
2703
+ );
2704
+ } else if (icon === IconProp.ReceiptPercent) {
2705
+ return getSvgWrapper(
2706
+ <path
2707
+ strokeLinecap="round"
2708
+ strokeLinejoin="round"
2709
+ d="m9 14.25 6-6m4.5-3.493V21.75l-3.75-1.5-3.75 1.5-3.75-1.5-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185ZM9.75 9h.008v.008H9.75V9Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm4.125 4.5h.008v.008h-.008V13.5Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z"
2710
+ />,
2711
+ );
2712
+ } else if (icon === IconProp.ReceiptRefund) {
2713
+ return getSvgWrapper(
2714
+ <path
2715
+ strokeLinecap="round"
2716
+ strokeLinejoin="round"
2717
+ d="M8.25 9.75h4.875a2.625 2.625 0 0 1 0 5.25H12M8.25 9.75 10.5 7.5M8.25 9.75 10.5 12m9-7.243V21.75l-3.75-1.5-3.75 1.5-3.75-1.5-3.75 1.5V4.757c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0c1.1.128 1.907 1.077 1.907 2.185Z"
2718
+ />,
2719
+ );
2720
+ } else if (icon === IconProp.Strikethrough) {
2721
+ return getSvgWrapper(
2722
+ <path
2723
+ strokeLinecap="round"
2724
+ strokeLinejoin="round"
2725
+ d="M12 12a8.912 8.912 0 0 1-.318-.079c-1.585-.424-2.904-1.247-3.76-2.236-.873-1.009-1.265-2.19-.968-3.301.59-2.2 3.663-3.29 6.863-2.432A8.186 8.186 0 0 1 16.5 5.21M6.42 17.81c.857.99 2.176 1.812 3.761 2.237 3.2.858 6.274-.23 6.863-2.431.233-.868.044-1.779-.465-2.617M3.75 12h16.5"
2726
+ />,
2727
+ );
2728
+ } else if (icon === IconProp.EyeDropper) {
2729
+ return getSvgWrapper(
2730
+ <path
2731
+ strokeLinecap="round"
2732
+ strokeLinejoin="round"
2733
+ d="m15 11.25 1.5 1.5.75-.75V8.758l2.276-.61a3 3 0 1 0-3.675-3.675l-.61 2.277H12l-.75.75 1.5 1.5M15 11.25l-8.47 8.47c-.34.34-.8.53-1.28.53s-.94-.19-1.28-.53a1.818 1.818 0 0 1 0-2.56l8.47-8.47M15 11.25 12 8.25"
2734
+ />,
2735
+ );
1404
2736
  }
1405
2737
 
1406
2738
  return <></>;