@mirohq/design-system-icons 1.19.1 → 1.20.1

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 (46) hide show
  1. package/dist/main.js +465 -2
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +449 -3
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +37 -3
  6. package/package.json +4 -4
  7. package/react/activity-sparkle.tsx +1 -1
  8. package/react/android-share.tsx +36 -0
  9. package/react/box-lines-textarea.tsx +34 -0
  10. package/react/briefcase.tsx +34 -0
  11. package/react/chart-bar-x-simple.tsx +34 -0
  12. package/react/circle-dashed-loop.tsx +34 -0
  13. package/react/folder-filled.tsx +34 -0
  14. package/react/image-sparkle.tsx +1 -1
  15. package/react/index.ts +17 -0
  16. package/react/insights-search.tsx +34 -0
  17. package/react/ios-share.tsx +34 -0
  18. package/react/map-user.tsx +34 -0
  19. package/react/measure-pencil.tsx +34 -0
  20. package/react/miro-mark.tsx +36 -0
  21. package/react/screen-user.tsx +34 -0
  22. package/react/shopping-bag.tsx +34 -0
  23. package/react/target-arrow.tsx +34 -0
  24. package/react/timeline-location.tsx +34 -0
  25. package/react/user-sparkle.tsx +34 -0
  26. package/react/word-cloud.tsx +34 -0
  27. package/svg/24/activity-sparkle.svg +1 -1
  28. package/svg/24/android-share.svg +2 -0
  29. package/svg/24/box-lines-textarea.svg +2 -0
  30. package/svg/24/briefcase.svg +2 -0
  31. package/svg/24/chart-bar-x-simple.svg +2 -0
  32. package/svg/24/circle-dashed-loop.svg +2 -0
  33. package/svg/24/folder-filled.svg +2 -0
  34. package/svg/24/image-sparkle.svg +1 -1
  35. package/svg/24/insights-search.svg +2 -0
  36. package/svg/24/ios-share.svg +2 -0
  37. package/svg/24/map-user.svg +2 -0
  38. package/svg/24/measure-pencil.svg +2 -0
  39. package/svg/24/miro-mark.svg +2 -0
  40. package/svg/24/screen-user.svg +2 -0
  41. package/svg/24/shopping-bag.svg +2 -0
  42. package/svg/24/target-arrow.svg +2 -0
  43. package/svg/24/timeline-location.svg +2 -0
  44. package/svg/24/user-sparkle.svg +2 -0
  45. package/svg/24/word-cloud.svg +2 -0
  46. package/svg/meta.json +169 -6
package/dist/module.js CHANGED
@@ -40,7 +40,7 @@ const IconActivitySparkle = forwardRef(
40
40
  "path",
41
41
  {
42
42
  fill: "currentColor",
43
- d: "M16.74 2.59c.187-.786 1.334-.788 1.521 0l.015.082.024.148a3.603 3.603 0 0 0 3.027 2.904c.895.128.9 1.423 0 1.552a3.602 3.602 0 0 0-3.05 3.052c-.13.899-1.425.894-1.553 0a3.602 3.602 0 0 0-3.052-3.052c-.897-.13-.895-1.423 0-1.552l.148-.025a3.602 3.602 0 0 0 2.904-3.027l.015-.081ZM12 4a8 8 0 0 0-6.953 11.959l.137.23.103.822-.764 2.457 2.431-.77.83.103.282.167A7.965 7.965 0 0 0 12 20a8 8 0 0 0 7.936-7h2.014c-.502 5.053-4.765 9-9.95 9a9.973 9.973 0 0 1-4.864-1.263l-3.833 1.216-1.258-1.25 1.201-3.867A9.958 9.958 0 0 1 2 12C2 6.477 6.477 2 12 2v2Zm-.08 8.923.616-1.232.09-.151a1.25 1.25 0 0 1 1.028-.54H15l-.882 2-1.223 2.447-1.752.068L9 11.943l-.643 1.072-1.714-1.03 1.5-2.5h1.714l2.063 3.438Z"
43
+ d: "M12 4a8 8 0 0 0-6.953 11.959l.137.23.103.822-.764 2.457 2.431-.77.83.103.282.167A7.965 7.965 0 0 0 12 20a8 8 0 0 0 7.936-7h2.014c-.502 5.053-4.765 9-9.95 9a9.973 9.973 0 0 1-4.864-1.263l-3.833 1.216-1.258-1.25 1.201-3.867A9.958 9.958 0 0 1 2 12C2 6.477 6.477 2 12 2v2Zm-.08 8.923.616-1.232.09-.151a1.25 1.25 0 0 1 1.028-.54H15l-.882 2-1.223 2.447-1.752.068L9 11.943l-.643 1.072-1.714-1.03 1.5-2.5h1.714l2.063 3.438ZM19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5Z"
44
44
  }
45
45
  )
46
46
  );
@@ -522,6 +522,34 @@ const IconAltText = forwardRef(
522
522
  );
523
523
  IconAltText[iconSymbol] = true;
524
524
 
525
+ const IconAndroidShare = forwardRef(
526
+ ({ size = "medium", ...props }, forwardRef2) => {
527
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
528
+ return createElement(
529
+ StyledIcon,
530
+ {
531
+ ...props,
532
+ debug,
533
+ "aria-hidden": true,
534
+ size,
535
+ viewBox: "0 0 24 24",
536
+ fill: "none",
537
+ ref: forwardRef2
538
+ },
539
+ /* @__PURE__ */ jsx(
540
+ "path",
541
+ {
542
+ fill: "currentColor",
543
+ fillRule: "evenodd",
544
+ d: "M17.5 3a3.5 3.5 0 1 1-2.724 5.698l-4.92 2.812a3.498 3.498 0 0 1 .127 1.32l4.653 2.658a3.5 3.5 0 1 1-.635 1.94l-4.778-2.73a3.5 3.5 0 1 1-.459-4.867l5.252-3A3.5 3.5 0 0 1 17.5 3Zm0 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm-11-5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm11-6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
545
+ clipRule: "evenodd"
546
+ }
547
+ )
548
+ );
549
+ }
550
+ );
551
+ IconAndroidShare[iconSymbol] = true;
552
+
525
553
  const IconArrowArcLeft = forwardRef(
526
554
  ({ size = "medium", ...props }, forwardRef2) => {
527
555
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -2156,6 +2184,32 @@ const IconBoxCaptions = forwardRef(
2156
2184
  );
2157
2185
  IconBoxCaptions[iconSymbol] = true;
2158
2186
 
2187
+ const IconBoxLinesTextarea = forwardRef(
2188
+ ({ size = "medium", ...props }, forwardRef2) => {
2189
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
2190
+ return createElement(
2191
+ StyledIcon,
2192
+ {
2193
+ ...props,
2194
+ debug,
2195
+ "aria-hidden": true,
2196
+ size,
2197
+ viewBox: "0 0 24 24",
2198
+ fill: "none",
2199
+ ref: forwardRef2
2200
+ },
2201
+ /* @__PURE__ */ jsx(
2202
+ "path",
2203
+ {
2204
+ fill: "currentColor",
2205
+ d: "M3 6v13h18V6H3Zm16 6v2H5v-2h14Zm-3-4v2H5V8h11Zm7 11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h18a2 2 0 0 1 2 2v13Z"
2206
+ }
2207
+ )
2208
+ );
2209
+ }
2210
+ );
2211
+ IconBoxLinesTextarea[iconSymbol] = true;
2212
+
2159
2213
  const IconBracketClose = forwardRef(
2160
2214
  ({ size = "medium", ...props }, forwardRef2) => {
2161
2215
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -2312,6 +2366,32 @@ const IconBracketsCurlyCirclesThree = forwardRef(
2312
2366
  );
2313
2367
  IconBracketsCurlyCirclesThree[iconSymbol] = true;
2314
2368
 
2369
+ const IconBriefcase = forwardRef(
2370
+ ({ size = "medium", ...props }, forwardRef2) => {
2371
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
2372
+ return createElement(
2373
+ StyledIcon,
2374
+ {
2375
+ ...props,
2376
+ debug,
2377
+ "aria-hidden": true,
2378
+ size,
2379
+ viewBox: "0 0 24 24",
2380
+ fill: "none",
2381
+ ref: forwardRef2
2382
+ },
2383
+ /* @__PURE__ */ jsx(
2384
+ "path",
2385
+ {
2386
+ fill: "currentColor",
2387
+ d: "m20 12.54-7.594 3.374h-.812L4 12.54V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.46ZM13.5 10v2h-3v-2h3ZM20 9a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v1.35l8 3.555 8-3.555V9Zm-5-4a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v1h6V5Zm2 1h2a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h2V5a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v1Z"
2388
+ }
2389
+ )
2390
+ );
2391
+ }
2392
+ );
2393
+ IconBriefcase[iconSymbol] = true;
2394
+
2315
2395
  const IconBrowser = forwardRef(
2316
2396
  ({ size = "medium", ...props }, forwardRef2) => {
2317
2397
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -2662,6 +2742,32 @@ const IconCardsPoker = forwardRef(
2662
2742
  );
2663
2743
  IconCardsPoker[iconSymbol] = true;
2664
2744
 
2745
+ const IconChartBarXSimple = forwardRef(
2746
+ ({ size = "medium", ...props }, forwardRef2) => {
2747
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
2748
+ return createElement(
2749
+ StyledIcon,
2750
+ {
2751
+ ...props,
2752
+ debug,
2753
+ "aria-hidden": true,
2754
+ size,
2755
+ viewBox: "0 0 24 24",
2756
+ fill: "none",
2757
+ ref: forwardRef2
2758
+ },
2759
+ /* @__PURE__ */ jsx(
2760
+ "path",
2761
+ {
2762
+ fill: "currentColor",
2763
+ d: "M5 4v2h14V4H5Zm16 2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2ZM5 18v2h5v-2H5Zm7 2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2v2Zm-7-9v2h9v-2H5Zm11 2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v2Z"
2764
+ }
2765
+ )
2766
+ );
2767
+ }
2768
+ );
2769
+ IconChartBarXSimple[iconSymbol] = true;
2770
+
2665
2771
  const IconChartBarYSimple = forwardRef(
2666
2772
  ({ size = "medium", ...props }, forwardRef2) => {
2667
2773
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -3496,6 +3602,32 @@ const IconCircleCorners = forwardRef(
3496
3602
  );
3497
3603
  IconCircleCorners[iconSymbol] = true;
3498
3604
 
3605
+ const IconCircleDashedLoop = forwardRef(
3606
+ ({ size = "medium", ...props }, forwardRef2) => {
3607
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
3608
+ return createElement(
3609
+ StyledIcon,
3610
+ {
3611
+ ...props,
3612
+ debug,
3613
+ "aria-hidden": true,
3614
+ size,
3615
+ viewBox: "0 0 24 24",
3616
+ fill: "none",
3617
+ ref: forwardRef2
3618
+ },
3619
+ /* @__PURE__ */ jsx(
3620
+ "path",
3621
+ {
3622
+ fill: "currentColor",
3623
+ d: "M11.5 6.022A5.998 5.998 0 0 0 6.022 11.5H4.018A7.998 7.998 0 0 1 11.5 4.017v2.005Zm1-2.005a7.998 7.998 0 0 1 7.482 7.483h-2.005A5.998 5.998 0 0 0 12.5 6.022V4.017ZM6.022 12.5a5.999 5.999 0 0 0 11.956 0h2.004a7.98 7.98 0 0 1-2.694 5.5l-.022.019c-.068.06-.137.118-.207.175l-.054.044a7.84 7.84 0 0 1-.215.165l-.087.066a7.876 7.876 0 0 1-.5.336 7.406 7.406 0 0 1-.321.188l-.072.04a8.103 8.103 0 0 1-.558.276l-.108.046a8.17 8.17 0 0 1-.227.094l-.117.044c-.079.03-.157.058-.237.085-.027.01-.055.018-.083.027a8.151 8.151 0 0 1-.415.123 5.042 5.042 0 0 1-.176.046c-.063.016-.127.029-.19.042-.066.014-.13.029-.196.041-.037.008-.074.013-.111.02-.087.015-.174.03-.262.043-.033.005-.067.007-.1.012-.09.011-.18.022-.27.03-.066.007-.132.01-.198.015-.058.005-.115.01-.173.013-.13.006-.259.01-.389.01H3v-2h3.712a7.98 7.98 0 0 1-2.694-5.5h2.004ZM21 20h-4.878a9.03 9.03 0 0 0 2.585-2H21v2Z"
3624
+ }
3625
+ )
3626
+ );
3627
+ }
3628
+ );
3629
+ IconCircleDashedLoop[iconSymbol] = true;
3630
+
3499
3631
  const IconCircleDashed = forwardRef(
3500
3632
  ({ size = "medium", ...props }, forwardRef2) => {
3501
3633
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -6110,6 +6242,32 @@ const IconFlip = forwardRef(
6110
6242
  );
6111
6243
  IconFlip[iconSymbol] = true;
6112
6244
 
6245
+ const IconFolderFilled = forwardRef(
6246
+ ({ size = "medium", ...props }, forwardRef2) => {
6247
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
6248
+ return createElement(
6249
+ StyledIcon,
6250
+ {
6251
+ ...props,
6252
+ debug,
6253
+ "aria-hidden": true,
6254
+ size,
6255
+ viewBox: "0 0 24 24",
6256
+ fill: "none",
6257
+ ref: forwardRef2
6258
+ },
6259
+ /* @__PURE__ */ jsx(
6260
+ "path",
6261
+ {
6262
+ fill: "currentColor",
6263
+ d: "M16 7v2.5h3V7h-3ZM4 19h16v-7.5h-6l-.759-.35-1.006-1.172L10.541 8H4.81a.81.81 0 0 0-.81.81V19ZM6 4v2h5.031l.764.356 1.97 2.333.235.275V4H6Zm10 1h3a2 2 0 0 1 2 2v2.5l1 1V20l-1 1H3l-1-1V8.81a2.81 2.81 0 0 1 2-2.69V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v1Z"
6264
+ }
6265
+ )
6266
+ );
6267
+ }
6268
+ );
6269
+ IconFolderFilled[iconSymbol] = true;
6270
+
6113
6271
  const IconFolder = forwardRef(
6114
6272
  ({ size = "medium", ...props }, forwardRef2) => {
6115
6273
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -6981,7 +7139,7 @@ const IconImageSparkle = forwardRef(
6981
7139
  {
6982
7140
  fill: "currentColor",
6983
7141
  fillRule: "evenodd",
6984
- d: "M12 2v2H5a1 1 0 0 0-1 1v9.148l2.219-2.773L7 11h2l.747.336L17.448 20H19a1 1 0 0 0 1-1v-7h2v7a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h7ZM4 17.352V19a1 1 0 0 0 1 1h9.773l-6.221-7h-1.07L4 17.352ZM15.79 3.599c.19-.798 1.353-.8 1.543 0l.015.083.025.149a3.651 3.651 0 0 0 3.068 2.943c.906.13.911 1.443 0 1.574a3.651 3.651 0 0 0-3.093 3.093c-.131.911-1.443.906-1.574 0a3.651 3.651 0 0 0-3.092-3.093c-.91-.131-.908-1.443 0-1.574l.149-.024a3.652 3.652 0 0 0 2.943-3.068l.016-.083Z",
7142
+ d: "M12 2v2H5a1 1 0 0 0-1 1v9.148l2.219-2.773L7 11h2l.747.336L17.448 20H19a1 1 0 0 0 1-1v-7h2v7a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h7ZM4 17.352V19a1 1 0 0 0 1 1h9.773l-6.221-7h-1.07L4 17.352ZM19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5Z",
6985
7143
  clipRule: "evenodd"
6986
7144
  }
6987
7145
  )
@@ -7094,6 +7252,32 @@ const IconInformationMarkCircle = forwardRef(
7094
7252
  );
7095
7253
  IconInformationMarkCircle[iconSymbol] = true;
7096
7254
 
7255
+ const IconInsightsSearch = forwardRef(
7256
+ ({ size = "medium", ...props }, forwardRef2) => {
7257
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
7258
+ return createElement(
7259
+ StyledIcon,
7260
+ {
7261
+ ...props,
7262
+ debug,
7263
+ "aria-hidden": true,
7264
+ size,
7265
+ viewBox: "0 0 24 24",
7266
+ fill: "none",
7267
+ ref: forwardRef2
7268
+ },
7269
+ /* @__PURE__ */ jsx(
7270
+ "path",
7271
+ {
7272
+ fill: "currentColor",
7273
+ d: "M19.75 17.375a2.375 2.375 0 1 0-4.75 0 2.375 2.375 0 0 0 4.75 0ZM15 10v2h-5v-2h5Zm5.585-5a1 1 0 0 0-.897-.995L19.585 4h-10a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1H11v2H9.585a3 3 0 0 1-3-3V8.65l-1.758.309a1.001 1.001 0 0 0-.811 1.16l1.736 9.847a1 1 0 0 0 1.158.811l4.925-.868.347 1.97-4.924.868a3 3 0 0 1-3.476-2.433l-1.736-9.85A3 3 0 0 1 4.48 6.99l2.105-.372V5a3 3 0 0 1 3-3h10l.154.004A3 3 0 0 1 22.585 5v7h-2V5ZM19 6v2h-9V6h9Zm2.75 11.375c0 .846-.24 1.635-.656 2.305l2.613 2.613-1.414 1.414-2.614-2.614a4.375 4.375 0 1 1 2.071-3.718Z"
7274
+ }
7275
+ )
7276
+ );
7277
+ }
7278
+ );
7279
+ IconInsightsSearch[iconSymbol] = true;
7280
+
7097
7281
  const IconInsights = forwardRef(
7098
7282
  ({ size = "medium", ...props }, forwardRef2) => {
7099
7283
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -7122,6 +7306,32 @@ const IconInsights = forwardRef(
7122
7306
  );
7123
7307
  IconInsights[iconSymbol] = true;
7124
7308
 
7309
+ const IconIosShare = forwardRef(
7310
+ ({ size = "medium", ...props }, forwardRef2) => {
7311
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
7312
+ return createElement(
7313
+ StyledIcon,
7314
+ {
7315
+ ...props,
7316
+ debug,
7317
+ "aria-hidden": true,
7318
+ size,
7319
+ viewBox: "0 0 24 24",
7320
+ fill: "none",
7321
+ ref: forwardRef2
7322
+ },
7323
+ /* @__PURE__ */ jsx(
7324
+ "path",
7325
+ {
7326
+ fill: "currentColor",
7327
+ d: "m12.707.293 4 4-1.414 1.414L13 3.414V13h-2V3.414L8.707 5.707 7.293 4.293l4-4h1.414ZM3 19V9a2 2 0 0 1 2-2h4v2H5v10h14V9h-4V7h4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"
7328
+ }
7329
+ )
7330
+ );
7331
+ }
7332
+ );
7333
+ IconIosShare[iconSymbol] = true;
7334
+
7125
7335
  const IconKanban = forwardRef(
7126
7336
  ({ size = "medium", ...props }, forwardRef2) => {
7127
7337
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -8064,6 +8274,32 @@ const IconMagnifyingGlass = forwardRef(
8064
8274
  );
8065
8275
  IconMagnifyingGlass[iconSymbol] = true;
8066
8276
 
8277
+ const IconMapUser = forwardRef(
8278
+ ({ size = "medium", ...props }, forwardRef2) => {
8279
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
8280
+ return createElement(
8281
+ StyledIcon,
8282
+ {
8283
+ ...props,
8284
+ debug,
8285
+ "aria-hidden": true,
8286
+ size,
8287
+ viewBox: "0 0 24 24",
8288
+ fill: "none",
8289
+ ref: forwardRef2
8290
+ },
8291
+ /* @__PURE__ */ jsx(
8292
+ "path",
8293
+ {
8294
+ fill: "currentColor",
8295
+ d: "M7 13a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-3 4a4.97 4.97 0 0 1 4.94 4.414l.054.474-1.988.224-.053-.474a2.972 2.972 0 0 0-5.906 0l-.053.474-1.988-.224.054-.474A4.972 4.972 0 0 1 6 17ZM9.316 3.052 15 4.946l5.684-1.894L22 4v14.5l-.615.923-6 2.5h-.77l-2.25-.938.77-1.845.75.312.115.048V6.72L9 5.054 4 6.72V8H2V6l.684-.948 6-2h.632ZM16 6.72V19.5l4-1.667V5.387L16 6.72Z"
8296
+ }
8297
+ )
8298
+ );
8299
+ }
8300
+ );
8301
+ IconMapUser[iconSymbol] = true;
8302
+
8067
8303
  const IconMap = forwardRef(
8068
8304
  ({ size = "medium", ...props }, forwardRef2) => {
8069
8305
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -8090,6 +8326,32 @@ const IconMap = forwardRef(
8090
8326
  );
8091
8327
  IconMap[iconSymbol] = true;
8092
8328
 
8329
+ const IconMeasurePencil = forwardRef(
8330
+ ({ size = "medium", ...props }, forwardRef2) => {
8331
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
8332
+ return createElement(
8333
+ StyledIcon,
8334
+ {
8335
+ ...props,
8336
+ debug,
8337
+ "aria-hidden": true,
8338
+ size,
8339
+ viewBox: "0 0 24 24",
8340
+ fill: "none",
8341
+ ref: forwardRef2
8342
+ },
8343
+ /* @__PURE__ */ jsx(
8344
+ "path",
8345
+ {
8346
+ fill: "currentColor",
8347
+ d: "M19.707 19.293 19 21H4l-1-1V5l1.707-.707 15 15ZM5 11h2v2H5v2h2v2H5v2h11.586L5 7.414V11Zm4.793-8.207a3.121 3.121 0 0 1 4.414 0l6.964 6.964.81 4.046-1.177 1.177-3.75-.75-.297-.058-.214-.215-6.75-6.75a3.121 3.121 0 0 1 0-4.414ZM13.414 8l4.328 4.328 1.983.396-.397-1.982L15 6.414 13.414 8Zm-.621-3.793a1.122 1.122 0 0 0-1.586 1.586l.793.793L13.586 5l-.793-.793Z"
8348
+ }
8349
+ )
8350
+ );
8351
+ }
8352
+ );
8353
+ IconMeasurePencil[iconSymbol] = true;
8354
+
8093
8355
  const IconMegaphone = forwardRef(
8094
8356
  ({ size = "medium", ...props }, forwardRef2) => {
8095
8357
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -8246,6 +8508,34 @@ const IconMinus = forwardRef(
8246
8508
  );
8247
8509
  IconMinus[iconSymbol] = true;
8248
8510
 
8511
+ const IconMiroMark = forwardRef(
8512
+ ({ size = "medium", ...props }, forwardRef2) => {
8513
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
8514
+ return createElement(
8515
+ StyledIcon,
8516
+ {
8517
+ ...props,
8518
+ debug,
8519
+ "aria-hidden": true,
8520
+ size,
8521
+ viewBox: "0 0 24 24",
8522
+ fill: "none",
8523
+ ref: forwardRef2
8524
+ },
8525
+ /* @__PURE__ */ jsx(
8526
+ "path",
8527
+ {
8528
+ fill: "currentColor",
8529
+ fillRule: "evenodd",
8530
+ d: "M16.17 3h-2.633l2.195 3.857L10.902 3H8.268l2.415 4.714L5.634 3H3l2.634 6L3 21h2.634l5.049-12.857L8.268 21h2.634l4.83-13.714L13.537 21h2.634L21 6l-4.83-3Z",
8531
+ clipRule: "evenodd"
8532
+ }
8533
+ )
8534
+ );
8535
+ }
8536
+ );
8537
+ IconMiroMark[iconSymbol] = true;
8538
+
8249
8539
  const IconMobile = forwardRef(
8250
8540
  ({ size = "medium", ...props }, forwardRef2) => {
8251
8541
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -11520,6 +11810,32 @@ const IconScissors = forwardRef(
11520
11810
  );
11521
11811
  IconScissors[iconSymbol] = true;
11522
11812
 
11813
+ const IconScreenUser = forwardRef(
11814
+ ({ size = "medium", ...props }, forwardRef2) => {
11815
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
11816
+ return createElement(
11817
+ StyledIcon,
11818
+ {
11819
+ ...props,
11820
+ debug,
11821
+ "aria-hidden": true,
11822
+ size,
11823
+ viewBox: "0 0 24 24",
11824
+ fill: "none",
11825
+ ref: forwardRef2
11826
+ },
11827
+ /* @__PURE__ */ jsx(
11828
+ "path",
11829
+ {
11830
+ fill: "currentColor",
11831
+ d: "M22 19v2H2v-2h20Zm-10-6a4.972 4.972 0 0 1 4.564 3H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2.437A4.972 4.972 0 0 1 12 13Zm0 2c-.878 0-1.673.385-2.22 1h4.44A2.965 2.965 0 0 0 12 15Zm1-6a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm2 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm7 6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v9Z"
11832
+ }
11833
+ )
11834
+ );
11835
+ }
11836
+ );
11837
+ IconScreenUser[iconSymbol] = true;
11838
+
11523
11839
  const IconScrollbarXy = forwardRef(
11524
11840
  ({ size = "medium", ...props }, forwardRef2) => {
11525
11841
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -11816,6 +12132,32 @@ const IconShieldLock = forwardRef(
11816
12132
  );
11817
12133
  IconShieldLock[iconSymbol] = true;
11818
12134
 
12135
+ const IconShoppingBag = forwardRef(
12136
+ ({ size = "medium", ...props }, forwardRef2) => {
12137
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
12138
+ return createElement(
12139
+ StyledIcon,
12140
+ {
12141
+ ...props,
12142
+ debug,
12143
+ "aria-hidden": true,
12144
+ size,
12145
+ viewBox: "0 0 24 24",
12146
+ fill: "none",
12147
+ ref: forwardRef2
12148
+ },
12149
+ /* @__PURE__ */ jsx(
12150
+ "path",
12151
+ {
12152
+ fill: "currentColor",
12153
+ d: "M13.5 5.5a1.5 1.5 0 1 0-3 0v1h3v-1Zm-8.426 15h13.852l-.857-12H5.93l-.857 12Zm3.425-9V10h2v1.5a1.5 1.5 0 0 0 3 0V10h2v1.5a3.5 3.5 0 1 1-7 0Zm7-5h2.57a2 2 0 0 1 1.995 1.857l.856 12a2 2 0 0 1-1.994 2.143H5.074a2 2 0 0 1-1.996-2.143l.858-12A2 2 0 0 1 5.93 6.5h2.568v-1a3.5 3.5 0 0 1 7 0v1Z"
12154
+ }
12155
+ )
12156
+ );
12157
+ }
12158
+ );
12159
+ IconShoppingBag[iconSymbol] = true;
12160
+
11819
12161
  const IconShuffle = forwardRef(
11820
12162
  ({ size = "medium", ...props }, forwardRef2) => {
11821
12163
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -13984,6 +14326,32 @@ const IconTag = forwardRef(
13984
14326
  );
13985
14327
  IconTag[iconSymbol] = true;
13986
14328
 
14329
+ const IconTargetArrow = forwardRef(
14330
+ ({ size = "medium", ...props }, forwardRef2) => {
14331
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
14332
+ return createElement(
14333
+ StyledIcon,
14334
+ {
14335
+ ...props,
14336
+ debug,
14337
+ "aria-hidden": true,
14338
+ size,
14339
+ viewBox: "0 0 24 24",
14340
+ fill: "none",
14341
+ ref: forwardRef2
14342
+ },
14343
+ /* @__PURE__ */ jsx(
14344
+ "path",
14345
+ {
14346
+ fill: "currentColor",
14347
+ d: "M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10v-2a8 8 0 1 1 8-8h2c0-5.523-4.477-10-10-10Zm0 5a5 5 0 0 0 0 10v-2a3 3 0 1 1 3-3h2a5 5 0 0 0-5-5Zm.707 4.293L17.414 16H20v2h-2v2h-2v-2.585l-4.707-4.708 1.414-1.414Z"
14348
+ }
14349
+ )
14350
+ );
14351
+ }
14352
+ );
14353
+ IconTargetArrow[iconSymbol] = true;
14354
+
13987
14355
  const IconTasks = forwardRef(
13988
14356
  ({ size = "medium", ...props }, forwardRef2) => {
13989
14357
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -14758,6 +15126,32 @@ const IconTimelineFormat = forwardRef(
14758
15126
  );
14759
15127
  IconTimelineFormat[iconSymbol] = true;
14760
15128
 
15129
+ const IconTimelineLocation = forwardRef(
15130
+ ({ size = "medium", ...props }, forwardRef2) => {
15131
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
15132
+ return createElement(
15133
+ StyledIcon,
15134
+ {
15135
+ ...props,
15136
+ debug,
15137
+ "aria-hidden": true,
15138
+ size,
15139
+ viewBox: "0 0 24 24",
15140
+ fill: "none",
15141
+ ref: forwardRef2
15142
+ },
15143
+ /* @__PURE__ */ jsx(
15144
+ "path",
15145
+ {
15146
+ fill: "currentColor",
15147
+ d: "M2 19v-2a2 2 0 0 1 2-2h7v2H4v2h16v-4a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2ZM15.476 4a5.46 5.46 0 0 1 4.733 2.724l.188.345v.003c.803 1.632.82 3.482-.045 5.055l-.001-.001c-.366.675-1.273 1.896-2.043 2.899a109.54 109.54 0 0 1-1.599 2.028l-.448.567-1.554.019-.473-.569-.005-.007c-.15-.184-.896-1.1-1.68-2.119-.756-.982-1.636-2.175-1.98-2.868-.643-1.291-.741-2.824-.293-4.223l.002-.006c.461-1.406 1.41-2.57 2.726-3.241A5.312 5.312 0 0 1 15.476 4Zm0 2c-.547 0-1.06.126-1.552.38l-.007.004c-.816.415-1.43 1.145-1.738 2.086a3.68 3.68 0 0 0 .11 2.563l.07.154c.24.481.981 1.507 1.775 2.539a93.933 93.933 0 0 0 1.329 1.682c.293-.366.764-.958 1.259-1.602.806-1.05 1.602-2.135 1.873-2.636l.005-.008c.524-.953.542-2.11.002-3.207A3.47 3.47 0 0 0 15.476 6ZM17.5 9.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
15148
+ }
15149
+ )
15150
+ );
15151
+ }
15152
+ );
15153
+ IconTimelineLocation[iconSymbol] = true;
15154
+
14761
15155
  const IconTimer = forwardRef(
14762
15156
  ({ size = "medium", ...props }, forwardRef2) => {
14763
15157
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -15456,6 +15850,32 @@ const IconUserPenLineBottom = forwardRef(
15456
15850
  );
15457
15851
  IconUserPenLineBottom[iconSymbol] = true;
15458
15852
 
15853
+ const IconUserSparkle = forwardRef(
15854
+ ({ size = "medium", ...props }, forwardRef2) => {
15855
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
15856
+ return createElement(
15857
+ StyledIcon,
15858
+ {
15859
+ ...props,
15860
+ debug,
15861
+ "aria-hidden": true,
15862
+ size,
15863
+ viewBox: "0 0 24 24",
15864
+ fill: "none",
15865
+ ref: forwardRef2
15866
+ },
15867
+ /* @__PURE__ */ jsx(
15868
+ "path",
15869
+ {
15870
+ fill: "currentColor",
15871
+ d: "M9.45 7.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm-2 0a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm4.5 5.5a7.077 7.077 0 0 0-7.042 6.373L4.755 20.9l1.99.2.153-1.528A5.077 5.077 0 0 1 11.95 15v-2Zm6.3 0A3.75 3.75 0 0 0 22 16.75v1.5A3.75 3.75 0 0 0 18.25 22h-1.5A3.75 3.75 0 0 0 13 18.25v-1.5A3.75 3.75 0 0 0 16.75 13h1.5Z"
15872
+ }
15873
+ )
15874
+ );
15875
+ }
15876
+ );
15877
+ IconUserSparkle[iconSymbol] = true;
15878
+
15459
15879
  const IconUserTickDown = forwardRef(
15460
15880
  ({ size = "medium", ...props }, forwardRef2) => {
15461
15881
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -16050,5 +16470,31 @@ const IconWifi = forwardRef(
16050
16470
  );
16051
16471
  IconWifi[iconSymbol] = true;
16052
16472
 
16053
- export { IconActivity, IconActivitySparkle, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiCursor, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseIntoRectangle, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowCurvesSparks, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowMobile, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBear, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBoxCaptionsFilled, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCar, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChartLine, IconChartNumber, IconChartProgress, IconChat, IconChatCheck, IconChatCross, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossMobile, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingShapes, IconDigit, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconDrinkBurger, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlask, IconFlip, IconFlipCard, IconFolder, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHeartMusicNote, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHorizontalBlocks, IconHouse, IconImage, IconImageSparkle, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLineVertical, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassMinus, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrbitDouble, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPercent, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProgressBar, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQrCode, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareBottomRight, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesLayout, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapeSparkle, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitHorizontal, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquarePencil, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTennisBall, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVerticalBlocks, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWidgetColumns, IconWifi, IconWifiExclamation };
16473
+ const IconWordCloud = forwardRef(
16474
+ ({ size = "medium", ...props }, forwardRef2) => {
16475
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
16476
+ return createElement(
16477
+ StyledIcon,
16478
+ {
16479
+ ...props,
16480
+ debug,
16481
+ "aria-hidden": true,
16482
+ size,
16483
+ viewBox: "0 0 24 24",
16484
+ fill: "none",
16485
+ ref: forwardRef2
16486
+ },
16487
+ /* @__PURE__ */ jsx(
16488
+ "path",
16489
+ {
16490
+ fill: "currentColor",
16491
+ d: "M19 12a2 2 0 0 0-2-2H7a2 2 0 1 0 0 4h10a2 2 0 0 0 2-2Zm2 0a4 4 0 0 1-4 4H7a4 4 0 0 1 0-8h10a4 4 0 0 1 4 4Zm-3 7.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5Zm2 0a2.5 2.5 0 0 1-2.5 2.5h-5a2.5 2.5 0 0 1 0-5h5a2.5 2.5 0 0 1 2.5 2.5Zm-13 0a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5Zm2 0A2.5 2.5 0 0 1 6.5 22h-1a2.5 2.5 0 0 1 0-5h1A2.5 2.5 0 0 1 9 19.5Zm5-15a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .5-.5Zm2 0A2.5 2.5 0 0 1 13.5 7h-3a2.5 2.5 0 0 1 0-5h3A2.5 2.5 0 0 1 16 4.5Z"
16492
+ }
16493
+ )
16494
+ );
16495
+ }
16496
+ );
16497
+ IconWordCloud[iconSymbol] = true;
16498
+
16499
+ export { IconActivity, IconActivitySparkle, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiCursor, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconAndroidShare, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseIntoRectangle, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowCurvesSparks, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowMobile, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBear, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBoxCaptionsFilled, IconBoxLinesTextarea, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBriefcase, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCar, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarXSimple, IconChartBarY, IconChartBarYSimple, IconChartLine, IconChartNumber, IconChartProgress, IconChat, IconChatCheck, IconChatCross, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleDashedLoop, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossMobile, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingShapes, IconDigit, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconDrinkBurger, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlask, IconFlip, IconFlipCard, IconFolder, IconFolderFilled, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHeartMusicNote, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHorizontalBlocks, IconHouse, IconImage, IconImageSparkle, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconInsightsSearch, IconIosShare, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLineVertical, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassMinus, IconMagnifyingGlassPlus, IconMap, IconMapUser, IconMeasurePencil, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMiroMark, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrbitDouble, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPercent, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProgressBar, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQrCode, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareBottomRight, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesLayout, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScreenUser, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapeSparkle, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShoppingBag, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitHorizontal, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquarePencil, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTargetArrow, IconTasks, IconTennisBall, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimelineLocation, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserSparkle, IconUserTickDown, IconUsers, IconUsersThree, IconVerticalBlocks, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWidgetColumns, IconWifi, IconWifiExclamation, IconWordCloud };
16054
16500
  //# sourceMappingURL=module.js.map