@mirohq/design-system-icons 0.73.2 → 0.74.0

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 (42) hide show
  1. package/dist/main.js +275 -65
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +272 -66
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +9 -1
  6. package/package.json +4 -4
  7. package/react/align-bottom-group.tsx +0 -1
  8. package/react/align-bottom.tsx +17 -1
  9. package/react/align-center-horizontal.tsx +0 -1
  10. package/react/align-center-vertical.tsx +0 -21
  11. package/react/align-left.tsx +0 -1
  12. package/react/align-middle.tsx +29 -1
  13. package/react/align-right.tsx +0 -1
  14. package/react/align-top-group.tsx +0 -1
  15. package/react/align-top.tsx +17 -1
  16. package/react/arrow-box-left.tsx +47 -0
  17. package/react/arrows-clockwise-rectangle-tilt.tsx +4 -2
  18. package/react/arrows-counterclockwise-rectangle-tilt.tsx +36 -0
  19. package/react/github.tsx +46 -0
  20. package/react/index.ts +4 -0
  21. package/react/microphone-document.tsx +49 -0
  22. package/react/rectangles-squares.tsx +1 -1
  23. package/react/slide-format.tsx +6 -11
  24. package/react/user-filter.tsx +1 -7
  25. package/svg/24/align-bottom-group.svg +1 -1
  26. package/svg/24/align-bottom-new.svg +1 -1
  27. package/svg/24/align-center-horizontal-new.svg +1 -1
  28. package/svg/24/align-center-vertical-new.svg +1 -1
  29. package/svg/24/align-left-new.svg +1 -1
  30. package/svg/24/align-middle.svg +1 -1
  31. package/svg/24/align-right-new.svg +1 -1
  32. package/svg/24/align-top-group.svg +1 -1
  33. package/svg/24/align-top-new.svg +1 -1
  34. package/svg/24/arrow-box-left.svg +2 -0
  35. package/svg/24/arrows-clockwise-rectangle-tilt-new.svg +1 -1
  36. package/svg/24/arrows-counterclockwise-rectangle-tilt.svg +2 -0
  37. package/svg/24/github.svg +2 -0
  38. package/svg/24/microphone-document.svg +2 -0
  39. package/svg/24/rectangles-squares.svg +1 -1
  40. package/svg/24/slide-format-new.svg +1 -1
  41. package/svg/24/user-filter-new.svg +1 -1
  42. package/svg/meta.json +53 -0
package/dist/main.js CHANGED
@@ -344,7 +344,6 @@ const IconAlignBottomGroup = react.forwardRef(
344
344
  stroke: "currentColor",
345
345
  strokeLinejoin: "round",
346
346
  strokeMiterlimit: 1.414,
347
- strokeWidth: "var(--svg-stroke-width)",
348
347
  d: "M3 20h18"
349
348
  }
350
349
  ),
@@ -386,7 +385,32 @@ const IconAlignBottomNew = react.forwardRef(
386
385
  fill: "none",
387
386
  ref: forwardRef2
388
387
  },
389
- /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", d: "M4.5 15.5h15v1h-15zM4.5 19.5h15v1h-15z" })
388
+ /* @__PURE__ */ jsxRuntime.jsx(
389
+ "path",
390
+ {
391
+ stroke: "currentColor",
392
+ strokeWidth: "var(--svg-stroke-width)",
393
+ d: "M21 21h-18"
394
+ }
395
+ ),
396
+ /* @__PURE__ */ jsxRuntime.jsx(
397
+ "path",
398
+ {
399
+ stroke: "currentColor",
400
+ strokeLinejoin: "round",
401
+ strokeWidth: "var(--svg-stroke-width)",
402
+ d: "M11.9998 4v12"
403
+ }
404
+ ),
405
+ /* @__PURE__ */ jsxRuntime.jsx(
406
+ "path",
407
+ {
408
+ stroke: "currentColor",
409
+ strokeLinejoin: "bevel",
410
+ strokeWidth: "var(--svg-stroke-width)",
411
+ d: "m17 12-5 5-5-5"
412
+ }
413
+ )
390
414
  );
391
415
  }
392
416
  );
@@ -480,7 +504,6 @@ const IconAlignCenterHorizontalNew = react.forwardRef(
480
504
  stroke: "currentColor",
481
505
  strokeLinejoin: "round",
482
506
  strokeMiterlimit: 1.414,
483
- strokeWidth: "var(--svg-stroke-width)",
484
507
  d: "M12 3v18"
485
508
  }
486
509
  )
@@ -572,7 +595,6 @@ const IconAlignCenterVerticalNew = react.forwardRef(
572
595
  stroke: "currentColor",
573
596
  strokeLinejoin: "round",
574
597
  strokeMiterlimit: 1.414,
575
- strokeWidth: "var(--svg-stroke-width)",
576
598
  d: "M3 12h18"
577
599
  }
578
600
  ),
@@ -584,38 +606,6 @@ const IconAlignCenterVerticalNew = react.forwardRef(
584
606
  transform: "rotate(-90 7 20)"
585
607
  }
586
608
  ),
587
- /* @__PURE__ */ jsxRuntime.jsx(
588
- "path",
589
- {
590
- fill: "currentColor",
591
- d: "M7 20h16v3h-16z",
592
- transform: "rotate(-90 7 20)"
593
- }
594
- ),
595
- /* @__PURE__ */ jsxRuntime.jsx(
596
- "path",
597
- {
598
- fill: "currentColor",
599
- d: "M7 20h16v3h-16z",
600
- transform: "rotate(-90 7 20)"
601
- }
602
- ),
603
- /* @__PURE__ */ jsxRuntime.jsx(
604
- "path",
605
- {
606
- fill: "currentColor",
607
- d: "M14 18h12v3h-12z",
608
- transform: "rotate(-90 14 18)"
609
- }
610
- ),
611
- /* @__PURE__ */ jsxRuntime.jsx(
612
- "path",
613
- {
614
- fill: "currentColor",
615
- d: "M14 18h12v3h-12z",
616
- transform: "rotate(-90 14 18)"
617
- }
618
- ),
619
609
  /* @__PURE__ */ jsxRuntime.jsx(
620
610
  "path",
621
611
  {
@@ -712,7 +702,6 @@ const IconAlignLeftNew = react.forwardRef(
712
702
  stroke: "currentColor",
713
703
  strokeLinejoin: "round",
714
704
  strokeMiterlimit: 1.414,
715
- strokeWidth: "var(--svg-stroke-width)",
716
705
  d: "M4 3v18"
717
706
  }
718
707
  ),
@@ -805,7 +794,50 @@ const IconAlignMiddle = react.forwardRef(
805
794
  fill: "none",
806
795
  ref: forwardRef2
807
796
  },
808
- /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", d: "M4.5 9.5h15v1h-15zM4.5 13.5h15v1h-15z" })
797
+ /* @__PURE__ */ jsxRuntime.jsx(
798
+ "path",
799
+ {
800
+ stroke: "currentColor",
801
+ strokeWidth: "var(--svg-stroke-width)",
802
+ d: "M3 12h18"
803
+ }
804
+ ),
805
+ /* @__PURE__ */ jsxRuntime.jsx(
806
+ "path",
807
+ {
808
+ stroke: "currentColor",
809
+ strokeLinejoin: "round",
810
+ strokeWidth: "var(--svg-stroke-width)",
811
+ d: "M12.0002 22v-6"
812
+ }
813
+ ),
814
+ /* @__PURE__ */ jsxRuntime.jsx(
815
+ "path",
816
+ {
817
+ stroke: "currentColor",
818
+ strokeLinejoin: "bevel",
819
+ strokeWidth: "var(--svg-stroke-width)",
820
+ d: "m8.5 18.5 3.5-3.5 3.5 3.5"
821
+ }
822
+ ),
823
+ /* @__PURE__ */ jsxRuntime.jsx(
824
+ "path",
825
+ {
826
+ stroke: "currentColor",
827
+ strokeLinejoin: "round",
828
+ strokeWidth: "var(--svg-stroke-width)",
829
+ d: "M11.9998 2v6"
830
+ }
831
+ ),
832
+ /* @__PURE__ */ jsxRuntime.jsx(
833
+ "path",
834
+ {
835
+ stroke: "currentColor",
836
+ strokeLinejoin: "bevel",
837
+ strokeWidth: "var(--svg-stroke-width)",
838
+ d: "m15.5 5.5-3.5 3.5-3.5-3.5"
839
+ }
840
+ )
809
841
  );
810
842
  }
811
843
  );
@@ -830,7 +862,6 @@ const IconAlignRightNew = react.forwardRef(
830
862
  stroke: "currentColor",
831
863
  strokeLinejoin: "round",
832
864
  strokeMiterlimit: 1.414,
833
- strokeWidth: "var(--svg-stroke-width)",
834
865
  d: "M20 3v18"
835
866
  }
836
867
  ),
@@ -929,7 +960,6 @@ const IconAlignTopGroup = react.forwardRef(
929
960
  stroke: "currentColor",
930
961
  strokeLinejoin: "round",
931
962
  strokeMiterlimit: 1.414,
932
- strokeWidth: "var(--svg-stroke-width)",
933
963
  d: "M3 4h18"
934
964
  }
935
965
  ),
@@ -971,7 +1001,32 @@ const IconAlignTopNew = react.forwardRef(
971
1001
  fill: "none",
972
1002
  ref: forwardRef2
973
1003
  },
974
- /* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", d: "M4.5 3.5h15v1h-15zM4.5 7.5h15v1h-15z" })
1004
+ /* @__PURE__ */ jsxRuntime.jsx(
1005
+ "path",
1006
+ {
1007
+ stroke: "currentColor",
1008
+ strokeWidth: "var(--svg-stroke-width)",
1009
+ d: "M3 4h18"
1010
+ }
1011
+ ),
1012
+ /* @__PURE__ */ jsxRuntime.jsx(
1013
+ "path",
1014
+ {
1015
+ stroke: "currentColor",
1016
+ strokeLinejoin: "round",
1017
+ strokeWidth: "var(--svg-stroke-width)",
1018
+ d: "M12.0002 21v-12"
1019
+ }
1020
+ ),
1021
+ /* @__PURE__ */ jsxRuntime.jsx(
1022
+ "path",
1023
+ {
1024
+ stroke: "currentColor",
1025
+ strokeLinejoin: "bevel",
1026
+ strokeWidth: "var(--svg-stroke-width)",
1027
+ d: "m7 13 5-5 5 5"
1028
+ }
1029
+ )
975
1030
  );
976
1031
  }
977
1032
  );
@@ -1588,6 +1643,51 @@ const IconArrowBendUpRight = react.forwardRef(
1588
1643
  );
1589
1644
  IconArrowBendUpRight[designSystemBaseIcon.iconSymbol] = true;
1590
1645
 
1646
+ const IconArrowBoxLeft = react.forwardRef(
1647
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1648
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1649
+ return react.createElement(
1650
+ StyledIcon,
1651
+ {
1652
+ ...props,
1653
+ weight,
1654
+ debug,
1655
+ "aria-hidden": true,
1656
+ size,
1657
+ viewBox: "0 0 24 24",
1658
+ fill: "none",
1659
+ ref: forwardRef2
1660
+ },
1661
+ /* @__PURE__ */ jsxRuntime.jsx(
1662
+ "path",
1663
+ {
1664
+ stroke: "currentColor",
1665
+ strokeWidth: "var(--svg-stroke-width)",
1666
+ d: "m13 13-5.3333-5.3333-4.6667-4.6667"
1667
+ }
1668
+ ),
1669
+ /* @__PURE__ */ jsxRuntime.jsx(
1670
+ "path",
1671
+ {
1672
+ stroke: "currentColor",
1673
+ strokeLinejoin: "bevel",
1674
+ strokeWidth: "var(--svg-stroke-width)",
1675
+ d: "M3 11v-8h8"
1676
+ }
1677
+ ),
1678
+ /* @__PURE__ */ jsxRuntime.jsx(
1679
+ "path",
1680
+ {
1681
+ stroke: "currentColor",
1682
+ strokeWidth: "var(--svg-stroke-width)",
1683
+ d: "M6 14v5c0 1.1046.8954 2 2 2h11c1.1046 0 2-.8954 2-2v-11c0-1.1046-.8954-2-2-2h-5"
1684
+ }
1685
+ )
1686
+ );
1687
+ }
1688
+ );
1689
+ IconArrowBoxLeft[designSystemBaseIcon.iconSymbol] = true;
1690
+
1591
1691
  const IconArrowBoxOutNew = react.forwardRef(
1592
1692
  (props, forwardRef2) => {
1593
1693
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -3185,8 +3285,10 @@ const IconArrowsClockwiseRectangleTiltNew = react.forwardRef((props, forwardRef2
3185
3285
  /* @__PURE__ */ jsxRuntime.jsx(
3186
3286
  "path",
3187
3287
  {
3188
- fill: "currentColor",
3189
- d: "m9 3.5122.3332.9428.0382-1.8713-.3714.9285Zm6 16.9758-.3332-.9429-.0401 1.8706.3733-.9277Zm-6.5355-7.7808-.7071-.7071c-.3906.3905-.3906 1.0237 0 1.4142l.707-.7071Zm4.2426-4.2426.7071-.7071c-.3905-.3906-1.0237-.3906-1.4142 0l.7071.707Zm2.8284 2.8284.7071.7071c.3906-.3905.3906-1.0237 0-1.4142l-.7071.7071Zm-4.2426 4.2427-.7071.7071c.3905.3905 1.0237.3905 1.4142 0l-.7071-.7071Zm-7.2929-3.5356c0-3.4817 2.2247-6.4463 5.3332-7.545l-.6664-1.8857c-3.8827 1.3723-6.6668 5.075-6.6668 9.4307h2Zm10.6668-7.545c3.1085 1.0987 5.3332 4.0633 5.3332 7.545h2c0-4.3556-2.7841-8.0584-6.6668-9.4307l-.6664 1.8857Zm-5.3336 15.09c-3.1085-1.0987-5.3332-4.0633-5.3332-7.545h-2c0 4.3556 2.7841 8.0584 6.6668 9.4307l.6664-1.8857Zm10.6668-7.545c0 3.4817-2.2247 6.4463-5.3332 7.545l.6664 1.8857c3.8827-1.3723 6.6668-5.0751 6.6668-9.4307h-2Zm-10.6286-9.4164-5-2-.7428 1.857 5 2 .7428-1.857Zm5.2553 18.832 5 2.012.7466-1.8554-5-2.012-.7466 1.8554Zm-5.4551-8.0014 4.2426-4.2426-1.4142-1.4142-4.2426 4.2426 1.4142 1.4142Zm2.8284-4.2426 2.8284 2.8284 1.4142-1.4142-2.8284-2.8284-1.4142 1.4142Zm2.8284 1.4142-4.2426 4.2426 1.4142 1.4143 4.2426-4.2427-1.4142-1.4142Zm-2.8284 4.2426-2.8284-2.8284-1.4142 1.4142 2.8284 2.8285 1.4142-1.4143Z"
3288
+ stroke: "currentColor",
3289
+ strokeLinejoin: "bevel",
3290
+ strokeWidth: "var(--svg-stroke-width)",
3291
+ d: "m7.0353 5.0354 2.2065-2.2065c1.5621-1.5621 4.0948-1.5621 5.6569 0l2.2065 2.2065m.8156-4.0357v4.9215h-4.9218m.4159 14.7357 3.7075-3.7075c.781-.7811.781-2.0474 0-2.8285l-3.7075-3.7074c-.781-.781-2.0474-.781-2.8284 0l-3.7075 3.7074c-.781.7811-.781 2.0474 0 2.8285l3.7075 3.7075c.781.781 2.0474.781 2.8284 0Z"
3190
3292
  }
3191
3293
  )
3192
3294
  );
@@ -3461,6 +3563,33 @@ const IconArrowsClockwiseY = react.forwardRef(
3461
3563
  );
3462
3564
  IconArrowsClockwiseY[designSystemBaseIcon.iconSymbol] = true;
3463
3565
 
3566
+ const IconArrowsCounterclockwiseRectangleTilt = react.forwardRef(({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
3567
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3568
+ return react.createElement(
3569
+ StyledIcon,
3570
+ {
3571
+ ...props,
3572
+ weight,
3573
+ debug,
3574
+ "aria-hidden": true,
3575
+ size,
3576
+ viewBox: "0 0 24 24",
3577
+ fill: "none",
3578
+ ref: forwardRef2
3579
+ },
3580
+ /* @__PURE__ */ jsxRuntime.jsx(
3581
+ "path",
3582
+ {
3583
+ stroke: "currentColor",
3584
+ strokeLinejoin: "bevel",
3585
+ strokeWidth: "var(--svg-stroke-width)",
3586
+ d: "m16.9649 5.0354-2.2065-2.2065c-1.5621-1.5621-4.0947-1.5621-5.6568 0l-2.2065 2.2065m-.8157-4.0357v4.9215h4.9219m-.416 14.7357-3.7075-3.7075c-.781-.7811-.781-2.0474 0-2.8285l3.7075-3.7074c.7811-.781 2.0474-.781 2.8285 0l3.7074 3.7074c.7811.7811.7811 2.0474 0 2.8285l-3.7074 3.7075c-.7811.781-2.0474.781-2.8285 0Z"
3587
+ }
3588
+ )
3589
+ );
3590
+ });
3591
+ IconArrowsCounterclockwiseRectangleTilt[designSystemBaseIcon.iconSymbol] = true;
3592
+
3464
3593
  const IconArrowsDownUpNew = react.forwardRef(
3465
3594
  (props, forwardRef2) => {
3466
3595
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -16270,6 +16399,50 @@ const IconGift = react.forwardRef(
16270
16399
  );
16271
16400
  IconGift[designSystemBaseIcon.iconSymbol] = true;
16272
16401
 
16402
+ const IconGithub = react.forwardRef(
16403
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
16404
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
16405
+ return react.createElement(
16406
+ StyledIcon,
16407
+ {
16408
+ ...props,
16409
+ weight,
16410
+ debug,
16411
+ "aria-hidden": true,
16412
+ size,
16413
+ viewBox: "0 0 24 24",
16414
+ fill: "none",
16415
+ ref: forwardRef2
16416
+ },
16417
+ /* @__PURE__ */ jsxRuntime.jsx(
16418
+ "path",
16419
+ {
16420
+ stroke: "currentColor",
16421
+ strokeLinejoin: "round",
16422
+ strokeWidth: "var(--svg-stroke-width)",
16423
+ d: "M6.9995 10h.0007"
16424
+ }
16425
+ ),
16426
+ /* @__PURE__ */ jsxRuntime.jsx(
16427
+ "path",
16428
+ {
16429
+ stroke: "currentColor",
16430
+ strokeWidth: "var(--svg-stroke-width)",
16431
+ d: "M9 10"
16432
+ }
16433
+ ),
16434
+ /* @__PURE__ */ jsxRuntime.jsx(
16435
+ "path",
16436
+ {
16437
+ fill: "currentColor",
16438
+ d: "M12.0001 2c-5.5222 0-10.0001 4.5904-10.0001 10.2532 0 4.5301 2.8653 8.3734 6.8387 9.7292.4997.0949.6832-.2224.6832-.4933 0-.2445-.0092-1.0521-.0136-1.9089-2.782.6203-3.369-1.2097-3.369-1.2097-.455-1.1852-1.1104-1.5003-1.1104-1.5003-.9073-.6363.0684-.6233.0684-.6233 1.0042.0724 1.533 1.0566 1.533 1.0566.8919 1.5675 2.3393 1.1143 2.91.8524.0898-.6627.349-1.115.6349-1.3711-2.2212-.2592-4.556-1.1384-4.556-5.0671 0-1.1195.3906-2.0341 1.0303-2.7521-.1039-.2583-.4461-1.3011.0968-2.7134 0 0 .8398-.2756 2.7508 1.051.7977-.2272 1.6531-.3411 2.503-.345.8498.0039 1.706.1178 2.5051.345 1.9087-1.3266 2.7473-1.051 2.7473-1.051.5443 1.4123.2019 2.4551.098 2.7134.6412.718 1.0292 1.6326 1.0292 2.7521 0 3.938-2.3394 4.8051-4.5662 5.059.3587.3182.6783.9421.6783 1.8987 0 1.3719-.0116 2.476-.0116 2.8137 0 .2729.18.5926.6869.4919 3.9712-1.3573 6.8329-5.1992 6.8329-9.7278 0-5.6628-4.4773-10.2532-9.9999-10.2532Zm-6.2547 14.6059c-.022.0509-.1002.0662-.1714.0312-.0726-.0334-.1133-.1029-.0898-.154.0215-.0525.0999-.0671.1722-.0319.0727.0334.1141.1036.089.1547Zm.4919.45c-.0477.0453-.141.0243-.2042-.0474-.0654-.0715-.0777-.1671-.0293-.2131.0491-.0453.1396-.0241.2051.0474.0654.0723.0782.1672.0284.2131Zm.3374.5758c-.0613.0436-.1615.0027-.2234-.0885-.0613-.0912-.0613-.2005.0013-.2443.0621-.0438.1608-.0044.2236.0861.0611.0927.0611.202-.0015.2467Zm.5707.6668c-.0548.062-.1715.0453-.257-.0392-.0874-.0827-.1118-.2-.0568-.262.0555-.0621.1729-.0447.259.0392.0868.0825.1133.2007.0548.262Zm.7376.2251c-.0242.0803-.1366.1168-.2499.0827-.113-.0351-.1871-.1292-.1643-.2104.0236-.0808.1365-.1188.2506-.0823.113.035.1871.1283.1636.21Zm.8394.0955c.0028.0846-.0932.1547-.2121.1562-.1196.0027-.2163-.0657-.2176-.1489 0-.0854.0939-.1548.2134-.1569.119-.0024.2163.0656.2163.1496Zm.8246-.0324c.0143.0825-.0684.1672-.1864.1898-.1161.0217-.2236-.0292-.2383-.111-.0144-.0846.0697-.1693.1856-.1912.1183-.0211.224.0285.2391.1124Z"
16439
+ }
16440
+ )
16441
+ );
16442
+ }
16443
+ );
16444
+ IconGithub[designSystemBaseIcon.iconSymbol] = true;
16445
+
16273
16446
  const IconGlobeNew = react.forwardRef(
16274
16447
  (props, forwardRef2) => {
16275
16448
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -20810,6 +20983,53 @@ const IconMermaid = react.forwardRef(
20810
20983
  );
20811
20984
  IconMermaid[designSystemBaseIcon.iconSymbol] = true;
20812
20985
 
20986
+ const IconMicrophoneDocument = react.forwardRef(
20987
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
20988
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
20989
+ return react.createElement(
20990
+ StyledIcon,
20991
+ {
20992
+ ...props,
20993
+ weight,
20994
+ debug,
20995
+ "aria-hidden": true,
20996
+ size,
20997
+ viewBox: "0 0 24 24",
20998
+ fill: "none",
20999
+ ref: forwardRef2
21000
+ },
21001
+ /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24h-24z" }),
21002
+ /* @__PURE__ */ jsxRuntime.jsx(
21003
+ "path",
21004
+ {
21005
+ stroke: "currentColor",
21006
+ strokeLinejoin: "round",
21007
+ strokeWidth: "var(--svg-stroke-width)",
21008
+ d: "M12 4h-7c-1.1046 0-2 .8954-2 2v13c0 1.1046.8954 2 2 2h13c1.1046 0 2-.8954 2-2v-4"
21009
+ }
21010
+ ),
21011
+ /* @__PURE__ */ jsxRuntime.jsx(
21012
+ "path",
21013
+ {
21014
+ stroke: "currentColor",
21015
+ strokeLinecap: "round",
21016
+ strokeWidth: "var(--svg-stroke-width)",
21017
+ d: "M18 3v4"
21018
+ }
21019
+ ),
21020
+ /* @__PURE__ */ jsxRuntime.jsx(
21021
+ "path",
21022
+ {
21023
+ stroke: "currentColor",
21024
+ strokeWidth: "var(--svg-stroke-width)",
21025
+ d: "M6 13h6M6 17h9M15 6v.8485c0 1.6401 1.3431 2.9697 3 2.9697m3-3.8182v.8485c0 1.6401-1.3431 2.9697-3 2.9697m0 0v3.1818"
21026
+ }
21027
+ )
21028
+ );
21029
+ }
21030
+ );
21031
+ IconMicrophoneDocument[designSystemBaseIcon.iconSymbol] = true;
21032
+
20813
21033
  const IconMicrophoneSlashNew = react.forwardRef(
20814
21034
  (props, forwardRef2) => {
20815
21035
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -28581,7 +28801,7 @@ const IconRectanglesSquares = react.forwardRef(
28581
28801
  stroke: "currentColor",
28582
28802
  strokeLinejoin: "bevel",
28583
28803
  strokeWidth: "var(--svg-stroke-width)",
28584
- d: "M2 4h6v6h-6v-6ZM12 4h10v6h-10v-6ZM16 14h6v6h-6v-6ZM2 14h10v6h-10v-6Z"
28804
+ d: "M2 20v-6h10v6h-10ZM2 10v-6h6v6h-6ZM12 10v-6h10v6h-10ZM16 20v-6h6v6h-6Z"
28585
28805
  }
28586
28806
  )
28587
28807
  );
@@ -31222,19 +31442,14 @@ const IconSlideFormatNew = react.forwardRef(
31222
31442
  ref: forwardRef2
31223
31443
  },
31224
31444
  /* @__PURE__ */ jsxRuntime.jsx(
31225
- "rect",
31445
+ "path",
31226
31446
  {
31227
- width: 18,
31228
- height: 18,
31229
- x: 3,
31230
- y: 3,
31231
- stroke: "currentColor",
31232
- strokeLinecap: "round",
31233
- strokeWidth: "var(--svg-stroke-width)",
31234
- rx: 2
31447
+ fill: "currentColor",
31448
+ fillRule: "evenodd",
31449
+ d: "M11 3v-2h2v2h6c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-2.5836l1.25 3h-2.1667l-1.25-3h-4.5l-1.25 3h-2.1667l1.25-3h-2.583c-1.6568 0-3-1.3431-3-3v-10c0-1.6569 1.3432-3 3-3h6Zm-6 2c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Zm8 5h-2v4h2v-4Zm2 4v-6h2v6h-2Zm-8-2v2h2v-2h-2Z",
31450
+ clipRule: "evenodd"
31235
31451
  }
31236
- ),
31237
- /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "m10 8.5 5 3v1l-5 3-1-.5v-6l1-.5Z" })
31452
+ )
31238
31453
  );
31239
31454
  }
31240
31455
  );
@@ -39974,16 +40189,7 @@ const IconUserFilterNew = react.forwardRef(
39974
40189
  "path",
39975
40190
  {
39976
40191
  fill: "currentColor",
39977
- d: "M16.5 7.5c0-2.4853-2.0147-4.5-4.5-4.5s-4.5 2.0147-4.5 4.5 2.0147 4.5 4.5 4.5 4.5-2.0147 4.5-4.5Zm-4.5-2.5c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5ZM12 13c-3.636 0-6.7306 2.7552-7.0924 6.3732l-.1527 1.5273 1.99.199.1528-1.5273c.2595-2.5956 2.4938-4.5722 5.1023-4.5722v-2Z"
39978
- }
39979
- ),
39980
- /* @__PURE__ */ jsxRuntime.jsx(
39981
- "path",
39982
- {
39983
- fill: "currentColor",
39984
- fillRule: "evenodd",
39985
- d: "M17.6667 12.9995h-1.3334c0 1.841-1.4924 3.3333-3.3333 3.3333v1.3334c1.8409 0 3.3333 1.4923 3.3333 3.3333h1.3334c0-1.841 1.4924-3.3333 3.3333-3.3333v-1.3334c-1.8409 0-3.3333-1.4923-3.3333-3.3333Z",
39986
- clipRule: "evenodd"
40192
+ d: "m10.75 16 .7703.6376-.7703-.6376Zm-1.75 4-.7071-.7071.4524 1.6741.2547-.967Zm5-.5-.6376-.7703.6376.7703Zm-1.1875-4.5625.0458.999.4204-.0193.2801-.3141-.7463-.6656Zm2.25 2.25-.6656-.7463-.3175.2832-.0162.4251.9993.038Zm-5.0828-1.8251c-.6416.775-.741 1.7341-.8518 2.2722-.1209.587-.2806 1.1039-.835 1.6583l1.4142 1.4142c.9456-.9456 1.2207-1.8969 1.3797-2.669.1691-.821.1947-1.1119.4335-1.4005l-1.5406-1.2752Zm-.9797 4.6376c-.2547.967-.2545.9671-.2542.9671l.0006.0002.0014.0004.0038.001.0112.0028.0366.0092c.0305.0075.0732.0177.1268.0298.1072.0242.2585.0562.444.0895.3693.0663.8836.1397 1.4599.1659 1.089.0495 2.6708-.0546 3.8075-.9956l-1.2752-1.5406c-.5286.4375-1.4468.5834-2.4415.5383-.4655-.0212-.889-.0812-1.197-.1365a8.2226 8.2226 0 0 1-.357-.0719 4.9088 4.9088 0 0 1-.0905-.0212l-.02-.005a.038.038 0 0 1-.0031-.0008h.0001l.0005.0002.0004.0001c.0002 0 .0004.0001-.2543.9671Zm3.8125-5.0625c-.0458-.999-.0462-.9989-.0466-.9989h-.0008l-.0017.0001-.0038.0002-.0089.0005a2.5302 2.5302 0 0 0-.0916.0074 3.4152 3.4152 0 0 0-.2133.0284 4.2315 4.2315 0 0 0-.674.1694c-.5303.1803-1.2247.5323-1.7921 1.2178l1.5406 1.2752c.2655-.3206.6023-.4999.895-.5993a2.2352 2.2352 0 0 1 .3536-.0894 1.4419 1.4419 0 0 1 .0881-.0119l.0128-.0012a.0235.0235 0 0 1-.0026.0002l-.0036.0002-.0025.0001-.0013.0001h-.0008c-.0004 0-.0007.0001-.0465-.9989Zm1.8251 5.3328c.7164-.5929 1.061-1.3828 1.2301-1.9559a5.1554 5.1554 0 0 0 .1608-.7456 4.3002 4.3002 0 0 0 .0262-.2331 3.169 3.169 0 0 0 .0064-.0954l.0004-.0085.0002-.0034v-.0022c.0001-.0003.0001-.0007-.9992-.0387s-.9993-.0384-.9993-.0387l.0001-.0006v-.0011l.0001-.0018.0001-.0021-.0001.0016a2.3895 2.3895 0 0 1-.016.1498 3.1508 3.1508 0 0 1-.098.4539c-.1106.3749-.2972.7413-.587.9812l1.2752 1.5406Zm2.2066-11.3556-4.778 5.3572 1.4926 1.3312 4.778-5.3572-1.4926-1.3312Zm-1.1161 9.0191 5.3572-4.778-1.3312-1.4926-5.3572 4.778 1.3312 1.4926Zm4.0648-7.7267c.4081.4082.3882 1.0752-.0388 1.4561l1.3312 1.4926c1.2886-1.1493 1.3392-3.1455.1218-4.363l-1.4142 1.4143Zm1.4142-1.4142c-1.2174-1.2174-3.2136-1.1668-4.3629.1218l1.4926 1.3312c.3809-.427 1.0479-.447 1.4561-.0388l1.4142-1.4142ZM13.5 7.5c0-2.4853-2.0147-4.5-4.5-4.5s-4.5 2.0147-4.5 4.5 2.0147 4.5 4.5 4.5 4.5-2.0147 4.5-4.5Zm-4.5-2.5c1.3807 0 2.5 1.1193 2.5 2.5s-1.1193 2.5-2.5 2.5-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5ZM9 13c-3.636 0-6.7306 2.7552-7.0924 6.3732l-.1527 1.5273 1.99.199.1528-1.5273c.2596-2.5956 2.4938-4.5722 5.1023-4.5722v-2Z"
39987
40193
  }
39988
40194
  )
39989
40195
  );
@@ -41696,6 +41902,7 @@ exports.IconArrowArcLeft = IconArrowArcLeft;
41696
41902
  exports.IconArrowArcRight = IconArrowArcRight;
41697
41903
  exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
41698
41904
  exports.IconArrowBendUpRight = IconArrowBendUpRight;
41905
+ exports.IconArrowBoxLeft = IconArrowBoxLeft;
41699
41906
  exports.IconArrowBoxOut = IconArrowBoxOut;
41700
41907
  exports.IconArrowClockwiseDownRight = IconArrowClockwiseDownRight;
41701
41908
  exports.IconArrowClockwiseUpLeft = IconArrowClockwiseUpLeft;
@@ -41720,6 +41927,7 @@ exports.IconArrowUpRight = IconArrowUpRight;
41720
41927
  exports.IconArrowsClockwiseRectangleTilt = IconArrowsClockwiseRectangleTilt;
41721
41928
  exports.IconArrowsClockwiseX = IconArrowsClockwiseX;
41722
41929
  exports.IconArrowsClockwiseY = IconArrowsClockwiseY;
41930
+ exports.IconArrowsCounterclockwiseRectangleTilt = IconArrowsCounterclockwiseRectangleTilt;
41723
41931
  exports.IconArrowsDownUp = IconArrowsDownUp;
41724
41932
  exports.IconArrowsHorizontalLinesTopBottom = IconArrowsHorizontalLinesTopBottom;
41725
41933
  exports.IconArrowsHorizontalLinesTopBottomIn = IconArrowsHorizontalLinesTopBottomIn;
@@ -41881,6 +42089,7 @@ exports.IconFunnel = IconFunnel;
41881
42089
  exports.IconGauge = IconGauge;
41882
42090
  exports.IconGavel = IconGavel;
41883
42091
  exports.IconGift = IconGift;
42092
+ exports.IconGithub = IconGithub;
41884
42093
  exports.IconGlobe = IconGlobe;
41885
42094
  exports.IconGoogleDrive = IconGoogleDrive;
41886
42095
  exports.IconGraduationCap = IconGraduationCap;
@@ -41943,6 +42152,7 @@ exports.IconMap = IconMap;
41943
42152
  exports.IconMegaphone = IconMegaphone;
41944
42153
  exports.IconMermaid = IconMermaid;
41945
42154
  exports.IconMicrophone = IconMicrophone;
42155
+ exports.IconMicrophoneDocument = IconMicrophoneDocument;
41946
42156
  exports.IconMicrophoneSlash = IconMicrophoneSlash;
41947
42157
  exports.IconMinus = IconMinus;
41948
42158
  exports.IconMobile = IconMobile;