@mirohq/design-system-icons 0.48.5 → 0.50.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 (70) hide show
  1. package/dist/main.js +966 -38
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +942 -39
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +51 -1
  6. package/package.json +1 -1
  7. package/react/alignment-scale.tsx +42 -0
  8. package/react/arrow-fat-left-right.tsx +42 -0
  9. package/react/arrow-fat-left.tsx +41 -0
  10. package/react/arrows-time-backward.tsx +40 -0
  11. package/react/arrows-time-forward.tsx +40 -0
  12. package/react/box-captions.tsx +40 -0
  13. package/react/clock.tsx +1 -1
  14. package/react/columns-format.tsx +42 -0
  15. package/react/diagramming-format.tsx +48 -0
  16. package/react/doc-format.tsx +42 -0
  17. package/react/external-format.tsx +42 -0
  18. package/react/index.ts +25 -0
  19. package/react/monitor-pause.tsx +5 -0
  20. package/react/monitor-play.tsx +5 -0
  21. package/react/monitor-stop.tsx +6 -1
  22. package/react/proto-button.tsx +42 -0
  23. package/react/proto-checkbox.tsx +36 -0
  24. package/react/proto-dropdown.tsx +42 -0
  25. package/react/proto-input.tsx +42 -0
  26. package/react/proto-number.tsx +42 -0
  27. package/react/proto-radio.tsx +40 -0
  28. package/react/proto-slider.tsx +38 -0
  29. package/react/prototype-format.tsx +42 -0
  30. package/react/rectangle-dot-large.tsx +36 -0
  31. package/react/rectangle-dot-medium.tsx +36 -0
  32. package/react/rectangle-dot-small.tsx +36 -0
  33. package/react/shield-lock-filled.tsx +36 -0
  34. package/react/slide-format.tsx +40 -0
  35. package/react/sparks.tsx +1 -1
  36. package/react/switch.tsx +8 -6
  37. package/react/table-format.tsx +42 -0
  38. package/react/timeline-format.tsx +42 -0
  39. package/svg/24/alignment-scale.svg +2 -0
  40. package/svg/24/arrow-fat-left-right.svg +2 -0
  41. package/svg/24/arrow-fat-left.svg +2 -0
  42. package/svg/24/arrows-time-backward.svg +2 -0
  43. package/svg/24/arrows-time-forward.svg +2 -0
  44. package/svg/24/box-captions.svg +2 -0
  45. package/svg/24/clock.svg +1 -1
  46. package/svg/24/columns-format.svg +2 -0
  47. package/svg/24/diagramming-format.svg +2 -0
  48. package/svg/24/doc-format.svg +2 -0
  49. package/svg/24/external-format.svg +2 -0
  50. package/svg/24/monitor-pause.svg +1 -1
  51. package/svg/24/monitor-play.svg +1 -1
  52. package/svg/24/monitor-stop.svg +1 -1
  53. package/svg/24/proto-button.svg +2 -0
  54. package/svg/24/proto-checkbox.svg +2 -0
  55. package/svg/24/proto-dropdown.svg +2 -0
  56. package/svg/24/proto-input.svg +2 -0
  57. package/svg/24/proto-number.svg +2 -0
  58. package/svg/24/proto-radio.svg +2 -0
  59. package/svg/24/proto-slider.svg +2 -0
  60. package/svg/24/prototype-format.svg +2 -0
  61. package/svg/24/rectangle-dot-large.svg +2 -0
  62. package/svg/24/rectangle-dot-medium.svg +2 -0
  63. package/svg/24/rectangle-dot-small.svg +2 -0
  64. package/svg/24/shield-lock-filled.svg +2 -0
  65. package/svg/24/slide-format.svg +2 -0
  66. package/svg/24/sparks.svg +1 -1
  67. package/svg/24/switch.svg +1 -1
  68. package/svg/24/table-format.svg +2 -0
  69. package/svg/24/timeline-format.svg +2 -0
  70. package/svg/meta.json +204 -1
package/dist/module.js CHANGED
@@ -405,6 +405,43 @@ const IconAlignTop = forwardRef(
405
405
  );
406
406
  IconAlignTop[iconSymbol] = true;
407
407
 
408
+ const IconAlignmentScale = forwardRef(
409
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
410
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
411
+ return createElement(
412
+ StyledIcon,
413
+ {
414
+ ...props,
415
+ weight,
416
+ debug,
417
+ size,
418
+ viewBox: "0 0 24 24",
419
+ fill: "none",
420
+ ref: forwardRef2
421
+ },
422
+ /* @__PURE__ */ jsx(
423
+ "path",
424
+ {
425
+ fill: "currentColor",
426
+ fillRule: "evenodd",
427
+ d: "M4.0928 6.0354c-.044.052-.0928.1528-.0928.294v5.3413c0 .1412.0488.2419.0928.2939a.16.16 0 0 0 .036.0335l.061.004a1 1 0 0 1-.0648 1.9979c-1.3236 0-2.125-1.2058-2.125-2.3293v-5.3414c0-1.1235.8014-2.3293 2.125-2.3293h15.75c1.3236 0 2.125 1.2058 2.125 2.3293v5.3414c0 1.1235-.8014 2.3293-2.125 2.3293h-6.875c-.5523 0-1-.4477-1-1s.4477-1 1-1h6.868c.0068-.0036.0203-.013.0392-.0354.044-.052.0928-.1527.0928-.2939v-5.3414c0-.1411-.0488-.242-.0928-.294-.0189-.0223-.0324-.0317-.0392-.0353h-15.736c-.0068.0036-.0202.013-.0392.0354Z",
428
+ clipRule: "evenodd"
429
+ }
430
+ ),
431
+ /* @__PURE__ */ jsx(
432
+ "path",
433
+ {
434
+ fill: "currentColor",
435
+ fillRule: "evenodd",
436
+ d: "M6.75 5c.5523 0 1 .4477 1 1v2.5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-2.5c0-.5523.4477-1 1-1ZM12 5c.5523 0 1 .4477 1 1v2.5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-2.5c0-.5523.4477-1 1-1ZM17.25 5c.5523 0 1 .4477 1 1v2.5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-2.5c0-.5523.4477-1 1-1ZM8.5 11a1 1 0 0 1 .8944.5528l3.5 7a.9998.9998 0 0 1-1.1691 1.4087l-3.2253-.9215-3.2253.9215a.9998.9998 0 0 1-1.1691-1.4087l3.5-7a1 1 0 0 1 .8944-.5528Zm-1.589 6.414 1.3143-.3755a1 1 0 0 1 .5494 0l1.3143.3755-1.589-3.1779-1.589 3.1779Z",
437
+ clipRule: "evenodd"
438
+ }
439
+ )
440
+ );
441
+ }
442
+ );
443
+ IconAlignmentScale[iconSymbol] = true;
444
+
408
445
  const IconArrowArcLeft = forwardRef(
409
446
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
410
447
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -888,6 +925,79 @@ const IconArrowElbowDownRight = forwardRef(
888
925
  );
889
926
  IconArrowElbowDownRight[iconSymbol] = true;
890
927
 
928
+ const IconArrowFatLeftRight = forwardRef(
929
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
930
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
931
+ return createElement(
932
+ StyledIcon,
933
+ {
934
+ ...props,
935
+ weight,
936
+ debug,
937
+ size,
938
+ viewBox: "0 0 24 24",
939
+ fill: "none",
940
+ ref: forwardRef2
941
+ },
942
+ /* @__PURE__ */ jsx(
943
+ "path",
944
+ {
945
+ fill: "currentColor",
946
+ fillRule: "evenodd",
947
+ d: "M16.3653 8.3154v2.4084h-5.3751v-2.113h3.356v-2.286c0-1.1942 1.3944-1.775 2.1787-.9075l5.1299 5.6752c.4603.5091.4603 1.3058 0 1.815l-5.1299 5.6752c-.7843.8676-2.1787.2868-2.1787-.9075v-2.0833h-3.356v-2.1129h5.3751v2.2056l3.3306-3.6846-3.3306-3.6846Z",
948
+ clipRule: "evenodd"
949
+ }
950
+ ),
951
+ /* @__PURE__ */ jsx(
952
+ "path",
953
+ {
954
+ fill: "currentColor",
955
+ fillRule: "evenodd",
956
+ d: "M7.653 8.309v2.4142h5.3562v-2.1129h-3.337v-2.287c0-1.1933-1.3924-1.7746-2.1773-.9091l-5.1483 5.6767c-.4621.5096-.4621 1.3086 0 1.8182l5.1483 5.6767c.785.8655 2.1772.2842 2.1772-.909v-2.0849h3.3372v-2.1129h-5.3562v2.2119l-3.3473-3.6909 3.3473-3.691Z",
957
+ clipRule: "evenodd"
958
+ }
959
+ )
960
+ );
961
+ }
962
+ );
963
+ IconArrowFatLeftRight[iconSymbol] = true;
964
+
965
+ const IconArrowFatLeft = forwardRef(
966
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
967
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
968
+ return createElement(
969
+ StyledIcon,
970
+ {
971
+ ...props,
972
+ weight,
973
+ debug,
974
+ size,
975
+ viewBox: "0 0 24 24",
976
+ fill: "none",
977
+ ref: forwardRef2
978
+ },
979
+ /* @__PURE__ */ jsx(
980
+ "path",
981
+ {
982
+ fill: "currentColor",
983
+ fillRule: "evenodd",
984
+ d: "M12.5 19.2467v-3.2467h8v-8h-8v-3.2467l-8.0095 7.2467 8.0095 7.2467Zm2 1.69c0 1.0837-1.285 1.654-2.0886.9269l-10.902-9.8636 10.902-9.8636c.8036-.7271 2.0886-.1569 2.0886.927v2.9366h6.75c.6904 0 1.25.5596 1.25 1.25v9.5c0 .6903-.5596 1.25-1.25 1.25h-6.75v2.9367Z",
985
+ clipRule: "evenodd"
986
+ }
987
+ ),
988
+ /* @__PURE__ */ jsx(
989
+ "path",
990
+ {
991
+ stroke: "currentColor",
992
+ strokeWidth: "var(--svg-stroke-width)",
993
+ d: "M3 11.9999v.0001"
994
+ }
995
+ )
996
+ );
997
+ }
998
+ );
999
+ IconArrowFatLeft[iconSymbol] = true;
1000
+
891
1001
  const IconArrowFatRight = forwardRef(
892
1002
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
893
1003
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -1479,6 +1589,76 @@ const IconArrowsSquareCounterClockwiseY = forwardRef(
1479
1589
  );
1480
1590
  IconArrowsSquareCounterClockwiseY[iconSymbol] = true;
1481
1591
 
1592
+ const IconArrowsTimeBackward = forwardRef(
1593
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1594
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
1595
+ return createElement(
1596
+ StyledIcon,
1597
+ {
1598
+ ...props,
1599
+ weight,
1600
+ debug,
1601
+ size,
1602
+ viewBox: "0 0 24 24",
1603
+ fill: "none",
1604
+ ref: forwardRef2
1605
+ },
1606
+ /* @__PURE__ */ jsx(
1607
+ "path",
1608
+ {
1609
+ fill: "currentColor",
1610
+ d: "M12.472 8.9v5.6h-1.208v-3.992c-.104.152-.488.224-.728.224h-.4v-1.032h.376c.472 0 .744-.184.824-.8h1.136ZM15.424 14.564c-1.4 0-2.08-.976-2.08-2.688v-.36c0-1.712.68-2.68 2.08-2.68h.328c1.416 0 2.088.976 2.088 2.68v.36c0 1.712-.672 2.688-2.088 2.688h-.328Zm-.872-2.328c0 .864.4 1.288.936 1.288h.216c.536 0 .928-.424.928-1.288v-1.08c0-.864-.392-1.288-.928-1.288h-.216c-.536 0-.936.424-.936 1.288v1.08Z"
1611
+ }
1612
+ ),
1613
+ /* @__PURE__ */ jsx(
1614
+ "path",
1615
+ {
1616
+ fill: "currentColor",
1617
+ fillRule: "evenodd",
1618
+ d: "M19.7744 10.2391c-.9736-3.7414-4.7958-5.9851-8.5372-5.0116-3.3416.8696-5.4885 4.0115-5.2156 7.3386l1.2713-1.2713c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3906.3905 1.0237 0 1.4143l-2.7172 2.7171c-.5467.5467-1.4331.5467-1.9798 0l-2.7172-2.7171c-.3905-.3906-.3905-1.0237 0-1.4143.3905-.3905 1.0237-.3905 1.4142 0l1.3116 1.3116c-.2896-4.2327 2.459-8.207 6.7148-9.3144 4.8104-1.2517 9.7247 1.633 10.9764 6.4434 1.2518 4.8104-1.633 9.7247-6.4434 10.9765a9.0139 9.0139 0 0 1-2.2482.292c-.5523.0014-1.0012-.4451-1.0026-.9974-.0015-.5523.445-1.0012.9973-1.0026a7.0152 7.0152 0 0 0 1.7498-.2276c3.7414-.9735 5.9852-4.7958 5.0116-8.5372Z",
1619
+ clipRule: "evenodd"
1620
+ }
1621
+ )
1622
+ );
1623
+ }
1624
+ );
1625
+ IconArrowsTimeBackward[iconSymbol] = true;
1626
+
1627
+ const IconArrowsTimeForward = forwardRef(
1628
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1629
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
1630
+ return createElement(
1631
+ StyledIcon,
1632
+ {
1633
+ ...props,
1634
+ weight,
1635
+ debug,
1636
+ size,
1637
+ viewBox: "0 0 24 24",
1638
+ fill: "none",
1639
+ ref: forwardRef2
1640
+ },
1641
+ /* @__PURE__ */ jsx(
1642
+ "path",
1643
+ {
1644
+ fill: "currentColor",
1645
+ d: "M8.472 8.9v5.6h-1.208v-3.992c-.104.152-.488.224-.728.224h-.4v-1.032h.376c.472 0 .744-.184.824-.8h1.136ZM11.424 14.564c-1.4 0-2.08-.976-2.08-2.688v-.36c0-1.712.68-2.68 2.08-2.68h.328c1.416 0 2.088.976 2.088 2.68v.36c0 1.712-.672 2.688-2.088 2.688h-.328Zm-.872-2.328c0 .864.4 1.288.936 1.288h.216c.536 0 .928-.424.928-1.288v-1.08c0-.864-.392-1.288-.928-1.288h-.216c-.536 0-.936.424-.936 1.288v1.08Z"
1646
+ }
1647
+ ),
1648
+ /* @__PURE__ */ jsx(
1649
+ "path",
1650
+ {
1651
+ fill: "currentColor",
1652
+ fillRule: "evenodd",
1653
+ d: "M11 5c-3.866 0-7 3.134-7 7s3.134 7 7 7c.5523 0 1 .4477 1 1s-.4477 1-1 1c-4.9706 0-9-4.0294-9-9s4.0294-9 9-9 9 4.0294 9 9c0 .2035-.0068.4056-.0201.6059l1.313-1.313c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3905.3905 1.0237 0 1.4142l-2.7172 2.7172c-.5467.5467-1.4331.5467-1.9799 0l-2.7171-2.7172c-.3905-.3905-.3905-1.0237 0-1.4142.3905-.3905 1.0237-.3905 1.4142 0l1.2706 1.2706a7.0952 7.0952 0 0 0 .0223-.5635c0-3.866-3.134-7-7-7Z",
1654
+ clipRule: "evenodd"
1655
+ }
1656
+ )
1657
+ );
1658
+ }
1659
+ );
1660
+ IconArrowsTimeForward[iconSymbol] = true;
1661
+
1482
1662
  const IconArticle = forwardRef(
1483
1663
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1484
1664
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -1798,6 +1978,41 @@ const IconBookmark = forwardRef(
1798
1978
  );
1799
1979
  IconBookmark[iconSymbol] = true;
1800
1980
 
1981
+ const IconBoxCaptions = forwardRef(
1982
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1983
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
1984
+ return createElement(
1985
+ StyledIcon,
1986
+ {
1987
+ ...props,
1988
+ weight,
1989
+ debug,
1990
+ size,
1991
+ viewBox: "0 0 24 24",
1992
+ fill: "none",
1993
+ ref: forwardRef2
1994
+ },
1995
+ /* @__PURE__ */ jsx(
1996
+ "path",
1997
+ {
1998
+ fill: "currentColor",
1999
+ fillRule: "evenodd",
2000
+ d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
2001
+ clipRule: "evenodd"
2002
+ }
2003
+ ),
2004
+ /* @__PURE__ */ jsx(
2005
+ "path",
2006
+ {
2007
+ fill: "currentColor",
2008
+ d: "M15.0729 15.064c-1.576 0-2.864-.992-2.864-2.864 0-1.872 1.32-2.864 2.864-2.864 1.48 0 2.536.824 2.688 2.096h-1.496c-.072-.536-.552-.88-1.2-.88-.784 0-1.424.56-1.424 1.648 0 1.088.632 1.648 1.424 1.648.656 0 1.144-.344 1.248-.88h1.416c-.104 1.272-1.152 2.096-2.656 2.096ZM9.112 15.064c-1.576 0-2.864-.992-2.864-2.864 0-1.872 1.32-2.864 2.864-2.864 1.48 0 2.536.824 2.688 2.096h-1.496c-.072-.536-.552-.88-1.2-.88-.784 0-1.424.56-1.424 1.648 0 1.088.632 1.648 1.424 1.648.656 0 1.144-.344 1.248-.88h1.416c-.104 1.272-1.152 2.096-2.656 2.096Z"
2009
+ }
2010
+ )
2011
+ );
2012
+ }
2013
+ );
2014
+ IconBoxCaptions[iconSymbol] = true;
2015
+
1801
2016
  const IconBracketCurlyLeft = forwardRef(
1802
2017
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1803
2018
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -3405,7 +3620,7 @@ const IconClock = forwardRef(
3405
3620
  {
3406
3621
  stroke: "currentColor",
3407
3622
  strokeWidth: "var(--svg-stroke-width)",
3408
- d: "M12 12v.0001"
3623
+ d: "M12 11.9999v.0001"
3409
3624
  }
3410
3625
  )
3411
3626
  );
@@ -3688,6 +3903,43 @@ const IconCoins = forwardRef(
3688
3903
  );
3689
3904
  IconCoins[iconSymbol] = true;
3690
3905
 
3906
+ const IconColumnsFormat = forwardRef(
3907
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
3908
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
3909
+ return createElement(
3910
+ StyledIcon,
3911
+ {
3912
+ ...props,
3913
+ weight,
3914
+ debug,
3915
+ size,
3916
+ viewBox: "0 0 24 24",
3917
+ fill: "none",
3918
+ ref: forwardRef2
3919
+ },
3920
+ /* @__PURE__ */ jsx(
3921
+ "path",
3922
+ {
3923
+ fill: "currentColor",
3924
+ fillRule: "evenodd",
3925
+ d: "M2 5c0-1.6568 1.3432-3 3-3h8v17c0 1.6569-1.3431 3-3 3h-5c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h5c.5523 0 1-.4477 1-1v-15h-6Z",
3926
+ clipRule: "evenodd"
3927
+ }
3928
+ ),
3929
+ /* @__PURE__ */ jsx(
3930
+ "path",
3931
+ {
3932
+ fill: "currentColor",
3933
+ fillRule: "evenodd",
3934
+ d: "M11 2h8c1.6569 0 3 1.3432 3 3v8c0 1.6569-1.3431 3-3 3h-8v-14Zm2 2v10h6c.5523 0 1-.4477 1-1v-8c0-.5523-.4477-1-1-1h-6Z",
3935
+ clipRule: "evenodd"
3936
+ }
3937
+ )
3938
+ );
3939
+ }
3940
+ );
3941
+ IconColumnsFormat[iconSymbol] = true;
3942
+
3691
3943
  const IconColumnsThree = forwardRef(
3692
3944
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
3693
3945
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -4873,7 +5125,7 @@ const IconDiagramCardUser = forwardRef(
4873
5125
  );
4874
5126
  IconDiagramCardUser[iconSymbol] = true;
4875
5127
 
4876
- const IconDistributeHorizontal = forwardRef(
5128
+ const IconDiagrammingFormat = forwardRef(
4877
5129
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
4878
5130
  const [debug] = useLocalStorage("DEBUG_ICON", false);
4879
5131
  return createElement(
@@ -4890,27 +5142,36 @@ const IconDistributeHorizontal = forwardRef(
4890
5142
  /* @__PURE__ */ jsx(
4891
5143
  "path",
4892
5144
  {
4893
- stroke: "currentColor",
4894
- strokeLinecap: "round",
4895
- strokeWidth: "var(--svg-stroke-width)",
4896
- d: "M4 3v18m16-18v18"
5145
+ fill: "currentColor",
5146
+ fillRule: "evenodd",
5147
+ d: "M13 4.5c0-1.3807 1.1193-2.5 2.5-2.5h4c1.3807 0 2.5 1.1193 2.5 2.5v4c0 1.3807-1.1193 2.5-2.5 2.5h-4c-1.3807 0-2.5-1.1193-2.5-2.5v-4Zm2.5-.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4ZM7 14c-1.6569 0-3 1.3431-3 3s1.3431 3 3 3 3-1.3431 3-3-1.3431-3-3-3Zm-5 3c0-2.7614 2.2386-5 5-5s5 2.2386 5 5-2.2386 5-5 5-5-2.2386-5-5Z",
5148
+ clipRule: "evenodd"
4897
5149
  }
4898
5150
  ),
4899
- /* @__PURE__ */ jsx("rect", { width: 4, height: 10, x: 10, y: 7, fill: "currentColor", rx: 2 }),
4900
5151
  /* @__PURE__ */ jsx(
4901
5152
  "path",
4902
5153
  {
4903
- stroke: "currentColor",
4904
- strokeWidth: "var(--svg-stroke-width)",
4905
- d: "M12 12v.0001"
5154
+ fill: "currentColor",
5155
+ fillRule: "evenodd",
5156
+ d: "M5 11.5c0-3.3137 2.6863-6 6-6h3v2h-3c-2.2091 0-4 1.7909-4 4v1.5h-2v-1.5ZM21 18h-10v-2h10v2Z",
5157
+ clipRule: "evenodd"
5158
+ }
5159
+ ),
5160
+ /* @__PURE__ */ jsx(
5161
+ "path",
5162
+ {
5163
+ fill: "currentColor",
5164
+ fillRule: "evenodd",
5165
+ d: "M22.3782 16.9999c0 .3073-.1393.5978-.378.7884l-4.3833 3.5-1.2341-1.5769 3.396-2.7115-3.396-2.7116 1.2341-1.5769 4.3833 3.5001c.2387.1906.378.481.378.7884Z",
5166
+ clipRule: "evenodd"
4906
5167
  }
4907
5168
  )
4908
5169
  );
4909
5170
  }
4910
5171
  );
4911
- IconDistributeHorizontal[iconSymbol] = true;
5172
+ IconDiagrammingFormat[iconSymbol] = true;
4912
5173
 
4913
- const IconDistributeVertical = forwardRef(
5174
+ const IconDistributeHorizontal = forwardRef(
4914
5175
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
4915
5176
  const [debug] = useLocalStorage("DEBUG_ICON", false);
4916
5177
  return createElement(
@@ -4930,11 +5191,48 @@ const IconDistributeVertical = forwardRef(
4930
5191
  stroke: "currentColor",
4931
5192
  strokeLinecap: "round",
4932
5193
  strokeWidth: "var(--svg-stroke-width)",
4933
- d: "M21 4h-18m18 16h-18"
5194
+ d: "M4 3v18m16-18v18"
4934
5195
  }
4935
5196
  ),
5197
+ /* @__PURE__ */ jsx("rect", { width: 4, height: 10, x: 10, y: 7, fill: "currentColor", rx: 2 }),
4936
5198
  /* @__PURE__ */ jsx(
4937
- "rect",
5199
+ "path",
5200
+ {
5201
+ stroke: "currentColor",
5202
+ strokeWidth: "var(--svg-stroke-width)",
5203
+ d: "M12 12v.0001"
5204
+ }
5205
+ )
5206
+ );
5207
+ }
5208
+ );
5209
+ IconDistributeHorizontal[iconSymbol] = true;
5210
+
5211
+ const IconDistributeVertical = forwardRef(
5212
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5213
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
5214
+ return createElement(
5215
+ StyledIcon,
5216
+ {
5217
+ ...props,
5218
+ weight,
5219
+ debug,
5220
+ size,
5221
+ viewBox: "0 0 24 24",
5222
+ fill: "none",
5223
+ ref: forwardRef2
5224
+ },
5225
+ /* @__PURE__ */ jsx(
5226
+ "path",
5227
+ {
5228
+ stroke: "currentColor",
5229
+ strokeLinecap: "round",
5230
+ strokeWidth: "var(--svg-stroke-width)",
5231
+ d: "M21 4h-18m18 16h-18"
5232
+ }
5233
+ ),
5234
+ /* @__PURE__ */ jsx(
5235
+ "rect",
4938
5236
  {
4939
5237
  width: 4,
4940
5238
  height: 10,
@@ -4958,6 +5256,43 @@ const IconDistributeVertical = forwardRef(
4958
5256
  );
4959
5257
  IconDistributeVertical[iconSymbol] = true;
4960
5258
 
5259
+ const IconDocFormat = forwardRef(
5260
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5261
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
5262
+ return createElement(
5263
+ StyledIcon,
5264
+ {
5265
+ ...props,
5266
+ weight,
5267
+ debug,
5268
+ size,
5269
+ viewBox: "0 0 24 24",
5270
+ fill: "none",
5271
+ ref: forwardRef2
5272
+ },
5273
+ /* @__PURE__ */ jsx(
5274
+ "path",
5275
+ {
5276
+ fill: "currentColor",
5277
+ fillRule: "evenodd",
5278
+ d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
5279
+ clipRule: "evenodd"
5280
+ }
5281
+ ),
5282
+ /* @__PURE__ */ jsx(
5283
+ "path",
5284
+ {
5285
+ fill: "currentColor",
5286
+ fillRule: "evenodd",
5287
+ d: "M7 12c0-.5523.4477-1 1-1h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1ZM7 8c0-.5523.4477-1 1-1h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1ZM7 16c0-.5523.4477-1 1-1h5c.5523 0 1 .4477 1 1s-.4477 1-1 1h-5c-.5523 0-1-.4477-1-1Z",
5288
+ clipRule: "evenodd"
5289
+ }
5290
+ )
5291
+ );
5292
+ }
5293
+ );
5294
+ IconDocFormat[iconSymbol] = true;
5295
+
4961
5296
  const IconDollarSignCurrency = forwardRef(
4962
5297
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
4963
5298
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -5436,6 +5771,43 @@ const IconExport = forwardRef(
5436
5771
  );
5437
5772
  IconExport[iconSymbol] = true;
5438
5773
 
5774
+ const IconExternalFormat = forwardRef(
5775
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5776
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
5777
+ return createElement(
5778
+ StyledIcon,
5779
+ {
5780
+ ...props,
5781
+ weight,
5782
+ debug,
5783
+ size,
5784
+ viewBox: "0 0 24 24",
5785
+ fill: "none",
5786
+ ref: forwardRef2
5787
+ },
5788
+ /* @__PURE__ */ jsx(
5789
+ "path",
5790
+ {
5791
+ fill: "currentColor",
5792
+ fillRule: "evenodd",
5793
+ d: "M2 6c0-2.2091 1.7909-4 4-4h12c2.2091 0 4 1.7909 4 4v12c0 2.2091-1.7909 4-4 4h-12c-2.2091 0-4-1.7909-4-4v-12Zm4-2c-1.1046 0-2 .8954-2 2v12c0 1.1046.8954 2 2 2h12c1.1046 0 2-.8954 2-2v-12c0-1.1046-.8954-2-2-2h-12Z",
5794
+ clipRule: "evenodd"
5795
+ }
5796
+ ),
5797
+ /* @__PURE__ */ jsx(
5798
+ "path",
5799
+ {
5800
+ fill: "currentColor",
5801
+ fillRule: "evenodd",
5802
+ d: "M9.0002 8.001c0-.5523.4478-1 1-1h6c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1-.5522 0-1-.4477-1-1v-3.5858l-6.2928 6.2929c-.3906.3905-1.0237.3905-1.4143 0-.3905-.3905-.3905-1.0237 0-1.4142l6.2929-6.293h-3.5858c-.5522 0-1-.4476-1-1Z",
5803
+ clipRule: "evenodd"
5804
+ }
5805
+ )
5806
+ );
5807
+ }
5808
+ );
5809
+ IconExternalFormat[iconSymbol] = true;
5810
+
5439
5811
  const IconEyeClosedDotsFourFrameBroken = forwardRef(
5440
5812
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5441
5813
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -8273,6 +8645,14 @@ const IconMonitorPause = forwardRef(
8273
8645
  strokeWidth: "var(--svg-stroke-width)",
8274
8646
  d: "M9 21h6m-5-12v4m4-4v4m-10-9h16c.5523 0 1 .4477 1 1v12c0 .5523-.4477 1-1 1h-16c-.5523 0-1-.4477-1-1v-12c0-.5523.4477-1 1-1Z"
8275
8647
  }
8648
+ ),
8649
+ /* @__PURE__ */ jsx(
8650
+ "path",
8651
+ {
8652
+ stroke: "currentColor",
8653
+ strokeWidth: "var(--svg-stroke-width)",
8654
+ d: "M14 12v.0001"
8655
+ }
8276
8656
  )
8277
8657
  );
8278
8658
  }
@@ -8309,6 +8689,14 @@ const IconMonitorPlay = forwardRef(
8309
8689
  fill: "currentColor",
8310
8690
  d: "M15.376 10.584c.2968.1979.2968.6341 0 .832l-4.5987 3.0658c-.3322.2215-.7773-.0167-.7773-.4161v-6.1314c0-.3994.4451-.6376.7774-.416l4.5986 3.0657Z"
8311
8691
  }
8692
+ ),
8693
+ /* @__PURE__ */ jsx(
8694
+ "path",
8695
+ {
8696
+ stroke: "currentColor",
8697
+ strokeWidth: "var(--svg-stroke-width)",
8698
+ d: "M12 11v.0001"
8699
+ }
8312
8700
  )
8313
8701
  );
8314
8702
  }
@@ -8339,7 +8727,15 @@ const IconMonitorStop = forwardRef(
8339
8727
  d: "M9 21h6m-11-3h16c.5523 0 1-.4477 1-1v-12c0-.5523-.4477-1-1-1h-16c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1Z"
8340
8728
  }
8341
8729
  ),
8342
- /* @__PURE__ */ jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 })
8730
+ /* @__PURE__ */ jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 }),
8731
+ /* @__PURE__ */ jsx(
8732
+ "path",
8733
+ {
8734
+ stroke: "currentColor",
8735
+ strokeWidth: "var(--svg-stroke-width)",
8736
+ d: "M12 11v.0001"
8737
+ }
8738
+ )
8343
8739
  );
8344
8740
  }
8345
8741
  );
@@ -10056,9 +10452,267 @@ const IconPresentationPlay = forwardRef(
10056
10452
  );
10057
10453
  }
10058
10454
  );
10059
- IconPresentationPlay[iconSymbol] = true;
10455
+ IconPresentationPlay[iconSymbol] = true;
10456
+
10457
+ const IconPresentationPlus = forwardRef(
10458
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10459
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10460
+ return createElement(
10461
+ StyledIcon,
10462
+ {
10463
+ ...props,
10464
+ weight,
10465
+ debug,
10466
+ size,
10467
+ viewBox: "0 0 24 24",
10468
+ fill: "none",
10469
+ ref: forwardRef2
10470
+ },
10471
+ /* @__PURE__ */ jsx(
10472
+ "path",
10473
+ {
10474
+ stroke: "currentColor",
10475
+ strokeLinecap: "round",
10476
+ strokeLinejoin: "round",
10477
+ strokeWidth: "var(--svg-stroke-width)",
10478
+ d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4m-9-11h3m0 0h3m-3 0v-3m0 3v3"
10479
+ }
10480
+ )
10481
+ );
10482
+ }
10483
+ );
10484
+ IconPresentationPlus[iconSymbol] = true;
10485
+
10486
+ const IconPrevious = forwardRef(
10487
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10488
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10489
+ return createElement(
10490
+ StyledIcon,
10491
+ {
10492
+ ...props,
10493
+ weight,
10494
+ debug,
10495
+ size,
10496
+ viewBox: "0 0 24 24",
10497
+ fill: "none",
10498
+ ref: forwardRef2
10499
+ },
10500
+ /* @__PURE__ */ jsx(
10501
+ "path",
10502
+ {
10503
+ fill: "currentColor",
10504
+ d: "m8.4638 10.7071 9.4112-5.536c.9999-.5881 2.2605.1328 2.2605 1.293v11.0719c0 1.1601-1.2606 1.8811-2.2605 1.2929l-9.4112-5.536c-.986-.58-.986-2.0058 0-2.5858ZM4 5c0-.5523.4477-1 1-1s1 .4477 1 1v14c0 .5523-.4477 1-1 1s-1-.4477-1-1v-14Z"
10505
+ }
10506
+ )
10507
+ );
10508
+ }
10509
+ );
10510
+ IconPrevious[iconSymbol] = true;
10511
+
10512
+ const IconProhibit = forwardRef(
10513
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10514
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10515
+ return createElement(
10516
+ StyledIcon,
10517
+ {
10518
+ ...props,
10519
+ weight,
10520
+ debug,
10521
+ size,
10522
+ viewBox: "0 0 24 24",
10523
+ fill: "none",
10524
+ ref: forwardRef2
10525
+ },
10526
+ /* @__PURE__ */ jsx(
10527
+ "path",
10528
+ {
10529
+ stroke: "currentColor",
10530
+ strokeWidth: "var(--svg-stroke-width)",
10531
+ d: "m7.3333 16.6667 9.3334-9.3334m2.3333 4.6667c0 3.866-3.134 7-7 7-1.9399 0-3.6956-.7891-4.9634-2.0639-1.2587-1.2657-2.0366-3.01-2.0366-4.9361 0-3.866 3.134-7 7-7 1.8641 0 3.558.7287 4.8125 1.9167 1.3472 1.2758 2.1875 3.0814 2.1875 5.0833ZM12 12v.0001"
10532
+ }
10533
+ )
10534
+ );
10535
+ }
10536
+ );
10537
+ IconProhibit[iconSymbol] = true;
10538
+
10539
+ const IconProtoButton = forwardRef(
10540
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10541
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10542
+ return createElement(
10543
+ StyledIcon,
10544
+ {
10545
+ ...props,
10546
+ weight,
10547
+ debug,
10548
+ size,
10549
+ viewBox: "0 0 24 24",
10550
+ fill: "none",
10551
+ ref: forwardRef2
10552
+ },
10553
+ /* @__PURE__ */ jsx(
10554
+ "path",
10555
+ {
10556
+ fill: "currentColor",
10557
+ fillRule: "evenodd",
10558
+ d: "M2 9c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v5h-2v-5c0-.5523-.4477-1-1-1h-14c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h5v2h-5c-1.6568 0-3-1.3431-3-3v-6Z",
10559
+ clipRule: "evenodd"
10560
+ }
10561
+ ),
10562
+ /* @__PURE__ */ jsx(
10563
+ "path",
10564
+ {
10565
+ fill: "currentColor",
10566
+ fillRule: "evenodd",
10567
+ d: "M12.6418 10.1187c.4172-.2073.9507-.1485 1.316.2243l5.6609 5.7788c.3885.3966.4467.93.3215 1.3399-.1252.4098-.4983.8699-1.1233.9239l-1.762.1522.7829 2.115c.1917.518-.0727 1.0933-.5906 1.285-.518.1917-1.0933-.0727-1.285-.5906l-.7077-1.9118-1.0636 1.0616c-.415.4143-1.007.4722-1.4693.239-.4447-.2242-.7216-.6838-.7216-1.191v-8.3813c0-.4393.2425-.8467.6418-1.045Zm1.3582 3.1255v4.6175l.8399-.8383a1.2761 1.2761 0 0 1 .7914-.3701l1.575-.136-3.2063-3.2731Z",
10568
+ clipRule: "evenodd"
10569
+ }
10570
+ )
10571
+ );
10572
+ }
10573
+ );
10574
+ IconProtoButton[iconSymbol] = true;
10575
+
10576
+ const IconProtoCheckbox = forwardRef(
10577
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10578
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10579
+ return createElement(
10580
+ StyledIcon,
10581
+ {
10582
+ ...props,
10583
+ weight,
10584
+ debug,
10585
+ size,
10586
+ viewBox: "0 0 24 24",
10587
+ fill: "none",
10588
+ ref: forwardRef2
10589
+ },
10590
+ /* @__PURE__ */ jsx(
10591
+ "path",
10592
+ {
10593
+ fill: "currentColor",
10594
+ fillRule: "evenodd",
10595
+ d: "M5 8c0-1.6569 1.3431-3 3-3h8c1.6569 0 3 1.3431 3 3v8c0 1.6569-1.3431 3-3 3h-8c-1.6569 0-3-1.3431-3-3v-8Zm3-1c-.5523 0-1 .4477-1 1v8c0 .5523.4477 1 1 1h8c.5523 0 1-.4477 1-1v-8c0-.5523-.4477-1-1-1h-8Zm7.1352 2.2276c.4265.3508.488.981.1372 1.4076l-2.6716 3.2486c-.7201.8756-2.0605.8756-2.7805 0l-1.0927-1.3286c-.3508-.4266-.2893-1.0568.1372-1.4076.4266-.3508 1.0568-.2893 1.4076.1372l.9381 1.1408 2.5171-3.0608c.3508-.4265.981-.488 1.4076-.1372Z",
10596
+ clipRule: "evenodd"
10597
+ }
10598
+ )
10599
+ );
10600
+ }
10601
+ );
10602
+ IconProtoCheckbox[iconSymbol] = true;
10603
+
10604
+ const IconProtoDropdown = forwardRef(
10605
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10606
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10607
+ return createElement(
10608
+ StyledIcon,
10609
+ {
10610
+ ...props,
10611
+ weight,
10612
+ debug,
10613
+ size,
10614
+ viewBox: "0 0 24 24",
10615
+ fill: "none",
10616
+ ref: forwardRef2
10617
+ },
10618
+ /* @__PURE__ */ jsx(
10619
+ "path",
10620
+ {
10621
+ fill: "currentColor",
10622
+ fillRule: "evenodd",
10623
+ d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
10624
+ clipRule: "evenodd"
10625
+ }
10626
+ ),
10627
+ /* @__PURE__ */ jsx(
10628
+ "path",
10629
+ {
10630
+ fill: "currentColor",
10631
+ fillRule: "evenodd",
10632
+ d: "M11.2191 10.8753c.345-.4313.9743-.5012 1.4056-.1562l1.8753 1.5003 1.8753-1.5003c.4313-.345 1.0606-.2751 1.4056.1562s.2751 1.0606-.1562 1.4056l-2.1877 1.7501a1.4998 1.4998 0 0 1-1.874 0l-2.1877-1.7501c-.4313-.345-.5012-.9743-.1562-1.4056Z",
10633
+ clipRule: "evenodd"
10634
+ }
10635
+ )
10636
+ );
10637
+ }
10638
+ );
10639
+ IconProtoDropdown[iconSymbol] = true;
10640
+
10641
+ const IconProtoInput = forwardRef(
10642
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10643
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10644
+ return createElement(
10645
+ StyledIcon,
10646
+ {
10647
+ ...props,
10648
+ weight,
10649
+ debug,
10650
+ size,
10651
+ viewBox: "0 0 24 24",
10652
+ fill: "none",
10653
+ ref: forwardRef2
10654
+ },
10655
+ /* @__PURE__ */ jsx(
10656
+ "path",
10657
+ {
10658
+ fill: "currentColor",
10659
+ fillRule: "evenodd",
10660
+ d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
10661
+ clipRule: "evenodd"
10662
+ }
10663
+ ),
10664
+ /* @__PURE__ */ jsx(
10665
+ "path",
10666
+ {
10667
+ fill: "currentColor",
10668
+ fillRule: "evenodd",
10669
+ d: "M7 8c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1s-1-.4477-1-1v-6c0-.5523.4477-1 1-1Z",
10670
+ clipRule: "evenodd"
10671
+ }
10672
+ )
10673
+ );
10674
+ }
10675
+ );
10676
+ IconProtoInput[iconSymbol] = true;
10677
+
10678
+ const IconProtoNumber = forwardRef(
10679
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10680
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
10681
+ return createElement(
10682
+ StyledIcon,
10683
+ {
10684
+ ...props,
10685
+ weight,
10686
+ debug,
10687
+ size,
10688
+ viewBox: "0 0 24 24",
10689
+ fill: "none",
10690
+ ref: forwardRef2
10691
+ },
10692
+ /* @__PURE__ */ jsx(
10693
+ "path",
10694
+ {
10695
+ fill: "currentColor",
10696
+ fillRule: "evenodd",
10697
+ d: "M2 7c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v10c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-10Zm3-1c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-14Z",
10698
+ clipRule: "evenodd"
10699
+ }
10700
+ ),
10701
+ /* @__PURE__ */ jsx(
10702
+ "path",
10703
+ {
10704
+ fill: "currentColor",
10705
+ fillRule: "evenodd",
10706
+ d: "M11.2191 12.8753c.345-.4313.9743-.5012 1.4056-.1562l1.8753 1.5003 1.8753-1.5003c.4313-.345 1.0606-.2751 1.4056.1562s.2751 1.0606-.1562 1.4056l-2.1877 1.7501a1.4998 1.4998 0 0 1-1.874 0l-2.1877-1.7501c-.4313-.345-.5012-.9743-.1562-1.4056ZM14.5 9.7806l1.8753 1.5003c.4313.345 1.0606.2751 1.4056-.1562s.2751-1.0606-.1562-1.4056l-2.1877-1.75a1.4999 1.4999 0 0 0-1.874 0l-2.1877 1.75c-.4313.345-.5012.9743-.1562 1.4056.345.4313.9743.5012 1.4056.1562l1.8753-1.5003Z",
10707
+ clipRule: "evenodd"
10708
+ }
10709
+ )
10710
+ );
10711
+ }
10712
+ );
10713
+ IconProtoNumber[iconSymbol] = true;
10060
10714
 
10061
- const IconPresentationPlus = forwardRef(
10715
+ const IconProtoRadio = forwardRef(
10062
10716
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10063
10717
  const [debug] = useLocalStorage("DEBUG_ICON", false);
10064
10718
  return createElement(
@@ -10075,19 +10729,25 @@ const IconPresentationPlus = forwardRef(
10075
10729
  /* @__PURE__ */ jsx(
10076
10730
  "path",
10077
10731
  {
10078
- stroke: "currentColor",
10079
- strokeLinecap: "round",
10080
- strokeLinejoin: "round",
10081
- strokeWidth: "var(--svg-stroke-width)",
10082
- d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4m-9-11h3m0 0h3m-3 0v-3m0 3v3"
10732
+ fill: "currentColor",
10733
+ fillRule: "evenodd",
10734
+ d: "M12 17c2.7614 0 5-2.2386 5-5s-2.2386-5-5-5-5 2.2386-5 5 2.2386 5 5 5Zm0 2c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7Z",
10735
+ clipRule: "evenodd"
10736
+ }
10737
+ ),
10738
+ /* @__PURE__ */ jsx(
10739
+ "path",
10740
+ {
10741
+ fill: "currentColor",
10742
+ d: "M15 12c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 3 3Z"
10083
10743
  }
10084
10744
  )
10085
10745
  );
10086
10746
  }
10087
10747
  );
10088
- IconPresentationPlus[iconSymbol] = true;
10748
+ IconProtoRadio[iconSymbol] = true;
10089
10749
 
10090
- const IconPrevious = forwardRef(
10750
+ const IconProtoSlider = forwardRef(
10091
10751
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10092
10752
  const [debug] = useLocalStorage("DEBUG_ICON", false);
10093
10753
  return createElement(
@@ -10105,15 +10765,22 @@ const IconPrevious = forwardRef(
10105
10765
  "path",
10106
10766
  {
10107
10767
  fill: "currentColor",
10108
- d: "m8.4638 10.7071 9.4112-5.536c.9999-.5881 2.2605.1328 2.2605 1.293v11.0719c0 1.1601-1.2606 1.8811-2.2605 1.2929l-9.4112-5.536c-.986-.58-.986-2.0058 0-2.5858ZM4 5c0-.5523.4477-1 1-1s1 .4477 1 1v14c0 .5523-.4477 1-1 1s-1-.4477-1-1v-14Z"
10768
+ d: "M15 12c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 3 3Z"
10769
+ }
10770
+ ),
10771
+ /* @__PURE__ */ jsx(
10772
+ "path",
10773
+ {
10774
+ fill: "currentColor",
10775
+ d: "M2 12c0-.5523.4477-1 1-1h7v2h-7c-.5523 0-1-.4477-1-1ZM17 11h4c.5523 0 1 .4477 1 1"
10109
10776
  }
10110
10777
  )
10111
10778
  );
10112
10779
  }
10113
10780
  );
10114
- IconPrevious[iconSymbol] = true;
10781
+ IconProtoSlider[iconSymbol] = true;
10115
10782
 
10116
- const IconProhibit = forwardRef(
10783
+ const IconPrototypeFormat = forwardRef(
10117
10784
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10118
10785
  const [debug] = useLocalStorage("DEBUG_ICON", false);
10119
10786
  return createElement(
@@ -10130,15 +10797,25 @@ const IconProhibit = forwardRef(
10130
10797
  /* @__PURE__ */ jsx(
10131
10798
  "path",
10132
10799
  {
10133
- stroke: "currentColor",
10134
- strokeWidth: "var(--svg-stroke-width)",
10135
- d: "m7.3333 16.6667 9.3334-9.3334m2.3333 4.6667c0 3.866-3.134 7-7 7-1.9399 0-3.6956-.7891-4.9634-2.0639-1.2587-1.2657-2.0366-3.01-2.0366-4.9361 0-3.866 3.134-7 7-7 1.8641 0 3.558.7287 4.8125 1.9167 1.3472 1.2758 2.1875 3.0814 2.1875 5.0833ZM12 12v.0001"
10800
+ fill: "currentColor",
10801
+ fillRule: "evenodd",
10802
+ d: "M5 5c0-1.6568 1.3431-3 3-3h8c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-8c-1.6569 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h8c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-8Z",
10803
+ clipRule: "evenodd"
10804
+ }
10805
+ ),
10806
+ /* @__PURE__ */ jsx(
10807
+ "path",
10808
+ {
10809
+ fill: "currentColor",
10810
+ fillRule: "evenodd",
10811
+ d: "M10 7c0-.5523.4477-1 1-1h2c.5523 0 1 .4477 1 1s-.4477 1-1 1h-2c-.5523 0-1-.4477-1-1Z",
10812
+ clipRule: "evenodd"
10136
10813
  }
10137
10814
  )
10138
10815
  );
10139
10816
  }
10140
10817
  );
10141
- IconProhibit[iconSymbol] = true;
10818
+ IconPrototypeFormat[iconSymbol] = true;
10142
10819
 
10143
10820
  const IconPushPinFilled = forwardRef(
10144
10821
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
@@ -10387,6 +11064,34 @@ const IconRectangleDashLines = forwardRef(
10387
11064
  );
10388
11065
  IconRectangleDashLines[iconSymbol] = true;
10389
11066
 
11067
+ const IconRectangleDotLarge = forwardRef(
11068
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11069
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
11070
+ return createElement(
11071
+ StyledIcon,
11072
+ {
11073
+ ...props,
11074
+ weight,
11075
+ debug,
11076
+ size,
11077
+ viewBox: "0 0 24 24",
11078
+ fill: "none",
11079
+ ref: forwardRef2
11080
+ },
11081
+ /* @__PURE__ */ jsx(
11082
+ "path",
11083
+ {
11084
+ fill: "currentColor",
11085
+ fillRule: "evenodd",
11086
+ d: "M5 4c-1.6568 0-3 1.3431-3 3v10c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-10c0-1.6569-1.3431-3-3-3h-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v10c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-10Zm11 8c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4Z",
11087
+ clipRule: "evenodd"
11088
+ }
11089
+ )
11090
+ );
11091
+ }
11092
+ );
11093
+ IconRectangleDotLarge[iconSymbol] = true;
11094
+
10390
11095
  const IconRectangleDotLinePen = forwardRef(
10391
11096
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10392
11097
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -10432,6 +11137,62 @@ const IconRectangleDotLinePen = forwardRef(
10432
11137
  );
10433
11138
  IconRectangleDotLinePen[iconSymbol] = true;
10434
11139
 
11140
+ const IconRectangleDotMedium = forwardRef(
11141
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11142
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
11143
+ return createElement(
11144
+ StyledIcon,
11145
+ {
11146
+ ...props,
11147
+ weight,
11148
+ debug,
11149
+ size,
11150
+ viewBox: "0 0 24 24",
11151
+ fill: "none",
11152
+ ref: forwardRef2
11153
+ },
11154
+ /* @__PURE__ */ jsx(
11155
+ "path",
11156
+ {
11157
+ fill: "currentColor",
11158
+ fillRule: "evenodd",
11159
+ d: "M5 4c-1.6568 0-3 1.3431-3 3v10c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-10c0-1.6569-1.3431-3-3-3h-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v10c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-10Zm12 6c1.6569 0 3-1.3431 3-3s-1.3431-3-3-3-3 1.3431-3 3 1.3431 3 3 3Z",
11160
+ clipRule: "evenodd"
11161
+ }
11162
+ )
11163
+ );
11164
+ }
11165
+ );
11166
+ IconRectangleDotMedium[iconSymbol] = true;
11167
+
11168
+ const IconRectangleDotSmall = forwardRef(
11169
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11170
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
11171
+ return createElement(
11172
+ StyledIcon,
11173
+ {
11174
+ ...props,
11175
+ weight,
11176
+ debug,
11177
+ size,
11178
+ viewBox: "0 0 24 24",
11179
+ fill: "none",
11180
+ ref: forwardRef2
11181
+ },
11182
+ /* @__PURE__ */ jsx(
11183
+ "path",
11184
+ {
11185
+ fill: "currentColor",
11186
+ fillRule: "evenodd",
11187
+ d: "M5 4c-1.6568 0-3 1.3431-3 3v10c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-10c0-1.6569-1.3431-3-3-3h-14Zm-1 3c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v10c0 .5523-.4477 1-1 1h-14c-.5523 0-1-.4477-1-1v-10Zm13 4c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2Z",
11188
+ clipRule: "evenodd"
11189
+ }
11190
+ )
11191
+ );
11192
+ }
11193
+ );
11194
+ IconRectangleDotSmall[iconSymbol] = true;
11195
+
10435
11196
  const IconRectangleFrame2Lines = forwardRef(
10436
11197
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10437
11198
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -11350,6 +12111,34 @@ const IconShieldCheck = forwardRef(
11350
12111
  );
11351
12112
  IconShieldCheck[iconSymbol] = true;
11352
12113
 
12114
+ const IconShieldLockFilled = forwardRef(
12115
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
12116
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
12117
+ return createElement(
12118
+ StyledIcon,
12119
+ {
12120
+ ...props,
12121
+ weight,
12122
+ debug,
12123
+ size,
12124
+ viewBox: "0 0 24 24",
12125
+ fill: "none",
12126
+ ref: forwardRef2
12127
+ },
12128
+ /* @__PURE__ */ jsx(
12129
+ "path",
12130
+ {
12131
+ fill: "currentColor",
12132
+ fillRule: "evenodd",
12133
+ d: "m21 5.307-9-3.375-9 3.375v7.7375a7.6376 7.6376 0 0 0 1.8387 4.9706 14.2744 14.2744 0 0 0 3.4941 2.9508l2.6382 1.5829c.6334.38 1.4246.38 2.058 0l2.6382-1.5829a14.2757 14.2757 0 0 0 3.4941-2.9508 7.6378 7.6378 0 0 0 1.8387-4.9706v-7.7375Zm-10 4.193c0-.5523.4477-1 1-1s1 .4477 1 1v1.5h-2v-1.5Zm-2 1.5v-1.5c0-1.6569 1.3431-3 3-3s3 1.3431 3 3v1.5c.5523 0 1 .4477 1 1v3c0 .5523-.4477 1-1 1h-6c-.5523 0-1-.4477-1-1v-3c0-.5523.4477-1 1-1Z",
12134
+ clipRule: "evenodd"
12135
+ }
12136
+ )
12137
+ );
12138
+ }
12139
+ );
12140
+ IconShieldLockFilled[iconSymbol] = true;
12141
+
11353
12142
  const IconShieldLock = forwardRef(
11354
12143
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11355
12144
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -11609,6 +12398,41 @@ const IconSingleSparksFilled = forwardRef(
11609
12398
  );
11610
12399
  IconSingleSparksFilled[iconSymbol] = true;
11611
12400
 
12401
+ const IconSlideFormat = forwardRef(
12402
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
12403
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
12404
+ return createElement(
12405
+ StyledIcon,
12406
+ {
12407
+ ...props,
12408
+ weight,
12409
+ debug,
12410
+ size,
12411
+ viewBox: "0 0 24 24",
12412
+ fill: "none",
12413
+ ref: forwardRef2
12414
+ },
12415
+ /* @__PURE__ */ jsx(
12416
+ "path",
12417
+ {
12418
+ fill: "currentColor",
12419
+ d: "m15.0639 11.376-3.8979-2.5986c-.4984-.3323-1.166.025-1.166.624v5.1972c0 .599.6676.9563 1.166.624l3.8979-2.5986c.4453-.2968.4453-.9512 0-1.248Z"
12420
+ }
12421
+ ),
12422
+ /* @__PURE__ */ jsx(
12423
+ "path",
12424
+ {
12425
+ fill: "currentColor",
12426
+ fillRule: "evenodd",
12427
+ d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
12428
+ clipRule: "evenodd"
12429
+ }
12430
+ )
12431
+ );
12432
+ }
12433
+ );
12434
+ IconSlideFormat[iconSymbol] = true;
12435
+
11612
12436
  const IconSlidersX = forwardRef(
11613
12437
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11614
12438
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -12343,7 +13167,7 @@ const IconSparks = forwardRef(
12343
13167
  "path",
12344
13168
  {
12345
13169
  fill: "currentColor",
12346
- d: "M19.7722 2.5045c.0886-.1962.3671-.1962.4557 0l.6667 1.476a.2496.2496 0 0 0 .1249.125l1.4761.6667c.1961.0885.1961.367 0 .4556l-1.4761.6667a.2496.2496 0 0 0-.1249.125l-.6667 1.476c-.0886.1962-.3671.1962-.4557 0l-.6667-1.476a.2496.2496 0 0 0-.1249-.125l-1.4761-.6667c-.1961-.0885-.1961-.367 0-.4556l1.4761-.6667a.2496.2496 0 0 0 .1249-.125l.6667-1.476ZM19.7722 16.5045c.0886-.1962.3671-.1962.4557 0l.6667 1.4761a.25.25 0 0 0 .1249.1249l1.4761.6667c.1961.0885.1961.3671 0 .4556l-1.4761.6667a.25.25 0 0 0-.1249.1249l-.6667 1.4761c-.0886.1962-.3671.1962-.4557 0l-.6667-1.4761a.25.25 0 0 0-.1249-.1249l-1.4761-.6667c-.1961-.0885-.1961-.3671 0-.4556l1.4761-.6667a.25.25 0 0 0 .1249-.1249l.6667-1.4761Z"
13170
+ d: "M19.7722 2.5045c.0885-.1962.3671-.1962.4556 0l.6667 1.476a.2504.2504 0 0 0 .1249.125l1.4761.6666c.1962.0886.1962.3671 0 .4557l-1.4761.6667a.2504.2504 0 0 0-.1249.125l-.6667 1.476c-.0885.1962-.3671.1962-.4556 0l-.6667-1.476a.2502.2502 0 0 0-.125-.125l-1.476-.6667c-.1962-.0886-.1962-.367 0-.4557l1.476-.6666a.2502.2502 0 0 0 .125-.125l.6667-1.476ZM19.7722 16.5045c.0885-.1962.3671-.1962.4556 0l.6667 1.476a.2505.2505 0 0 0 .1249.125l1.4761.6667c.1962.0885.1962.3671 0 .4556l-1.4761.6667a.2507.2507 0 0 0-.1249.1249l-.6667 1.4761c-.0885.1962-.3671.1962-.4556 0l-.6667-1.4761a.2505.2505 0 0 0-.125-.1249l-1.476-.6667c-.1962-.0885-.1962-.3671 0-.4556l1.476-.6667a.2504.2504 0 0 0 .125-.125l.6667-1.476Z"
12347
13171
  }
12348
13172
  ),
12349
13173
  /* @__PURE__ */ jsx(
@@ -13754,19 +14578,61 @@ const IconSwitch = forwardRef(
13754
14578
  /* @__PURE__ */ jsx(
13755
14579
  "path",
13756
14580
  {
13757
- stroke: "currentColor",
13758
- strokeLinecap: "round",
13759
- strokeLinejoin: "round",
13760
- strokeWidth: "var(--svg-stroke-width)",
13761
- d: "M7 18c-7 0-7-11 0-11h10c7 0 7 11 0 11h-10Z"
14581
+ fill: "currentColor",
14582
+ fillRule: "evenodd",
14583
+ d: "M16 8h-8c-2.2091 0-4 1.7909-4 4 0 2.2091 1.7909 4 4 4h8c2.2091 0 4-1.7909 4-4 0-2.2091-1.7909-4-4-4Zm-8-2c-3.3137 0-6 2.6863-6 6s2.6863 6 6 6h8c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6h-8Z",
14584
+ clipRule: "evenodd"
13762
14585
  }
13763
14586
  ),
13764
- /* @__PURE__ */ jsx("circle", { cx: 8.5, cy: 12.5, r: 3.5, fill: "currentColor" })
14587
+ /* @__PURE__ */ jsx(
14588
+ "path",
14589
+ {
14590
+ fill: "currentColor",
14591
+ d: "M19 12c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 3 3Z"
14592
+ }
14593
+ )
13765
14594
  );
13766
14595
  }
13767
14596
  );
13768
14597
  IconSwitch[iconSymbol] = true;
13769
14598
 
14599
+ const IconTableFormat = forwardRef(
14600
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
14601
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
14602
+ return createElement(
14603
+ StyledIcon,
14604
+ {
14605
+ ...props,
14606
+ weight,
14607
+ debug,
14608
+ size,
14609
+ viewBox: "0 0 24 24",
14610
+ fill: "none",
14611
+ ref: forwardRef2
14612
+ },
14613
+ /* @__PURE__ */ jsx(
14614
+ "path",
14615
+ {
14616
+ fill: "currentColor",
14617
+ fillRule: "evenodd",
14618
+ d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
14619
+ clipRule: "evenodd"
14620
+ }
14621
+ ),
14622
+ /* @__PURE__ */ jsx(
14623
+ "path",
14624
+ {
14625
+ fill: "currentColor",
14626
+ fillRule: "evenodd",
14627
+ d: "M12 2c.5523 0 1 .4477 1 1v5h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8v4h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8v5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-5h-8c-.5523 0-1-.4477-1-1s.4477-1 1-1h8v-4h-8c-.5523 0-1-.4477-1-1s.4477-1 1-1h8v-5c0-.5523.4477-1 1-1Z",
14628
+ clipRule: "evenodd"
14629
+ }
14630
+ )
14631
+ );
14632
+ }
14633
+ );
14634
+ IconTableFormat[iconSymbol] = true;
14635
+
13770
14636
  const IconTag = forwardRef(
13771
14637
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
13772
14638
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -14657,6 +15523,43 @@ const IconTicket = forwardRef(
14657
15523
  );
14658
15524
  IconTicket[iconSymbol] = true;
14659
15525
 
15526
+ const IconTimelineFormat = forwardRef(
15527
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
15528
+ const [debug] = useLocalStorage("DEBUG_ICON", false);
15529
+ return createElement(
15530
+ StyledIcon,
15531
+ {
15532
+ ...props,
15533
+ weight,
15534
+ debug,
15535
+ size,
15536
+ viewBox: "0 0 24 24",
15537
+ fill: "none",
15538
+ ref: forwardRef2
15539
+ },
15540
+ /* @__PURE__ */ jsx(
15541
+ "path",
15542
+ {
15543
+ fill: "currentColor",
15544
+ fillRule: "evenodd",
15545
+ d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
15546
+ clipRule: "evenodd"
15547
+ }
15548
+ ),
15549
+ /* @__PURE__ */ jsx(
15550
+ "path",
15551
+ {
15552
+ fill: "currentColor",
15553
+ fillRule: "evenodd",
15554
+ d: "M6 8c0-.5523.4477-1 1-1h7.5c.5523 0 1 .4477 1 1s-.4477 1-1 1h-7.5c-.5523 0-1-.4477-1-1Zm5.25 4c0-.5523.4477-1 1-1h8.25c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8.25c-.5523 0-1-.4477-1-1Zm-3 4c0-.5523.4477-1 1-1h4.125c.5523 0 1 .4477 1 1s-.4477 1-1 1h-4.125c-.5523 0-1-.4477-1-1Z",
15555
+ clipRule: "evenodd"
15556
+ }
15557
+ )
15558
+ );
15559
+ }
15560
+ );
15561
+ IconTimelineFormat[iconSymbol] = true;
15562
+
14660
15563
  const IconTimer = forwardRef(
14661
15564
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
14662
15565
  const [debug] = useLocalStorage("DEBUG_ICON", false);
@@ -15809,5 +16712,5 @@ const IconWallet = forwardRef(
15809
16712
  );
15810
16713
  IconWallet[iconSymbol] = true;
15811
16714
 
15812
- export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsThree, IconCommentGroup, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDistributeHorizontal, IconDistributeVertical, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShadow, IconShapes, IconShapesLines, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
16715
+ export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconAlignmentScale, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShadow, IconShapes, IconShapesLines, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTableFormat, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
15813
16716
  //# sourceMappingURL=module.js.map