@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/main.js CHANGED
@@ -409,6 +409,43 @@ const IconAlignTop = react.forwardRef(
409
409
  );
410
410
  IconAlignTop[designSystemBaseIcon.iconSymbol] = true;
411
411
 
412
+ const IconAlignmentScale = react.forwardRef(
413
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
414
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
415
+ return react.createElement(
416
+ StyledIcon,
417
+ {
418
+ ...props,
419
+ weight,
420
+ debug,
421
+ size,
422
+ viewBox: "0 0 24 24",
423
+ fill: "none",
424
+ ref: forwardRef2
425
+ },
426
+ /* @__PURE__ */ jsxRuntime.jsx(
427
+ "path",
428
+ {
429
+ fill: "currentColor",
430
+ fillRule: "evenodd",
431
+ 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",
432
+ clipRule: "evenodd"
433
+ }
434
+ ),
435
+ /* @__PURE__ */ jsxRuntime.jsx(
436
+ "path",
437
+ {
438
+ fill: "currentColor",
439
+ fillRule: "evenodd",
440
+ 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",
441
+ clipRule: "evenodd"
442
+ }
443
+ )
444
+ );
445
+ }
446
+ );
447
+ IconAlignmentScale[designSystemBaseIcon.iconSymbol] = true;
448
+
412
449
  const IconArrowArcLeft = react.forwardRef(
413
450
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
414
451
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -892,6 +929,79 @@ const IconArrowElbowDownRight = react.forwardRef(
892
929
  );
893
930
  IconArrowElbowDownRight[designSystemBaseIcon.iconSymbol] = true;
894
931
 
932
+ const IconArrowFatLeftRight = react.forwardRef(
933
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
934
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
935
+ return react.createElement(
936
+ StyledIcon,
937
+ {
938
+ ...props,
939
+ weight,
940
+ debug,
941
+ size,
942
+ viewBox: "0 0 24 24",
943
+ fill: "none",
944
+ ref: forwardRef2
945
+ },
946
+ /* @__PURE__ */ jsxRuntime.jsx(
947
+ "path",
948
+ {
949
+ fill: "currentColor",
950
+ fillRule: "evenodd",
951
+ 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",
952
+ clipRule: "evenodd"
953
+ }
954
+ ),
955
+ /* @__PURE__ */ jsxRuntime.jsx(
956
+ "path",
957
+ {
958
+ fill: "currentColor",
959
+ fillRule: "evenodd",
960
+ 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",
961
+ clipRule: "evenodd"
962
+ }
963
+ )
964
+ );
965
+ }
966
+ );
967
+ IconArrowFatLeftRight[designSystemBaseIcon.iconSymbol] = true;
968
+
969
+ const IconArrowFatLeft = react.forwardRef(
970
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
971
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
972
+ return react.createElement(
973
+ StyledIcon,
974
+ {
975
+ ...props,
976
+ weight,
977
+ debug,
978
+ size,
979
+ viewBox: "0 0 24 24",
980
+ fill: "none",
981
+ ref: forwardRef2
982
+ },
983
+ /* @__PURE__ */ jsxRuntime.jsx(
984
+ "path",
985
+ {
986
+ fill: "currentColor",
987
+ fillRule: "evenodd",
988
+ 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",
989
+ clipRule: "evenodd"
990
+ }
991
+ ),
992
+ /* @__PURE__ */ jsxRuntime.jsx(
993
+ "path",
994
+ {
995
+ stroke: "currentColor",
996
+ strokeWidth: "var(--svg-stroke-width)",
997
+ d: "M3 11.9999v.0001"
998
+ }
999
+ )
1000
+ );
1001
+ }
1002
+ );
1003
+ IconArrowFatLeft[designSystemBaseIcon.iconSymbol] = true;
1004
+
895
1005
  const IconArrowFatRight = react.forwardRef(
896
1006
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
897
1007
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -1483,6 +1593,76 @@ const IconArrowsSquareCounterClockwiseY = react.forwardRef(
1483
1593
  );
1484
1594
  IconArrowsSquareCounterClockwiseY[designSystemBaseIcon.iconSymbol] = true;
1485
1595
 
1596
+ const IconArrowsTimeBackward = react.forwardRef(
1597
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1598
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1599
+ return react.createElement(
1600
+ StyledIcon,
1601
+ {
1602
+ ...props,
1603
+ weight,
1604
+ debug,
1605
+ size,
1606
+ viewBox: "0 0 24 24",
1607
+ fill: "none",
1608
+ ref: forwardRef2
1609
+ },
1610
+ /* @__PURE__ */ jsxRuntime.jsx(
1611
+ "path",
1612
+ {
1613
+ fill: "currentColor",
1614
+ 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"
1615
+ }
1616
+ ),
1617
+ /* @__PURE__ */ jsxRuntime.jsx(
1618
+ "path",
1619
+ {
1620
+ fill: "currentColor",
1621
+ fillRule: "evenodd",
1622
+ 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",
1623
+ clipRule: "evenodd"
1624
+ }
1625
+ )
1626
+ );
1627
+ }
1628
+ );
1629
+ IconArrowsTimeBackward[designSystemBaseIcon.iconSymbol] = true;
1630
+
1631
+ const IconArrowsTimeForward = react.forwardRef(
1632
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1633
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1634
+ return react.createElement(
1635
+ StyledIcon,
1636
+ {
1637
+ ...props,
1638
+ weight,
1639
+ debug,
1640
+ size,
1641
+ viewBox: "0 0 24 24",
1642
+ fill: "none",
1643
+ ref: forwardRef2
1644
+ },
1645
+ /* @__PURE__ */ jsxRuntime.jsx(
1646
+ "path",
1647
+ {
1648
+ fill: "currentColor",
1649
+ 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"
1650
+ }
1651
+ ),
1652
+ /* @__PURE__ */ jsxRuntime.jsx(
1653
+ "path",
1654
+ {
1655
+ fill: "currentColor",
1656
+ fillRule: "evenodd",
1657
+ 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",
1658
+ clipRule: "evenodd"
1659
+ }
1660
+ )
1661
+ );
1662
+ }
1663
+ );
1664
+ IconArrowsTimeForward[designSystemBaseIcon.iconSymbol] = true;
1665
+
1486
1666
  const IconArticle = react.forwardRef(
1487
1667
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1488
1668
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -1802,6 +1982,41 @@ const IconBookmark = react.forwardRef(
1802
1982
  );
1803
1983
  IconBookmark[designSystemBaseIcon.iconSymbol] = true;
1804
1984
 
1985
+ const IconBoxCaptions = react.forwardRef(
1986
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1987
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1988
+ return react.createElement(
1989
+ StyledIcon,
1990
+ {
1991
+ ...props,
1992
+ weight,
1993
+ debug,
1994
+ size,
1995
+ viewBox: "0 0 24 24",
1996
+ fill: "none",
1997
+ ref: forwardRef2
1998
+ },
1999
+ /* @__PURE__ */ jsxRuntime.jsx(
2000
+ "path",
2001
+ {
2002
+ fill: "currentColor",
2003
+ fillRule: "evenodd",
2004
+ 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",
2005
+ clipRule: "evenodd"
2006
+ }
2007
+ ),
2008
+ /* @__PURE__ */ jsxRuntime.jsx(
2009
+ "path",
2010
+ {
2011
+ fill: "currentColor",
2012
+ 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"
2013
+ }
2014
+ )
2015
+ );
2016
+ }
2017
+ );
2018
+ IconBoxCaptions[designSystemBaseIcon.iconSymbol] = true;
2019
+
1805
2020
  const IconBracketCurlyLeft = react.forwardRef(
1806
2021
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1807
2022
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -3409,7 +3624,7 @@ const IconClock = react.forwardRef(
3409
3624
  {
3410
3625
  stroke: "currentColor",
3411
3626
  strokeWidth: "var(--svg-stroke-width)",
3412
- d: "M12 12v.0001"
3627
+ d: "M12 11.9999v.0001"
3413
3628
  }
3414
3629
  )
3415
3630
  );
@@ -3692,6 +3907,43 @@ const IconCoins = react.forwardRef(
3692
3907
  );
3693
3908
  IconCoins[designSystemBaseIcon.iconSymbol] = true;
3694
3909
 
3910
+ const IconColumnsFormat = react.forwardRef(
3911
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
3912
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3913
+ return react.createElement(
3914
+ StyledIcon,
3915
+ {
3916
+ ...props,
3917
+ weight,
3918
+ debug,
3919
+ size,
3920
+ viewBox: "0 0 24 24",
3921
+ fill: "none",
3922
+ ref: forwardRef2
3923
+ },
3924
+ /* @__PURE__ */ jsxRuntime.jsx(
3925
+ "path",
3926
+ {
3927
+ fill: "currentColor",
3928
+ fillRule: "evenodd",
3929
+ 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",
3930
+ clipRule: "evenodd"
3931
+ }
3932
+ ),
3933
+ /* @__PURE__ */ jsxRuntime.jsx(
3934
+ "path",
3935
+ {
3936
+ fill: "currentColor",
3937
+ fillRule: "evenodd",
3938
+ 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",
3939
+ clipRule: "evenodd"
3940
+ }
3941
+ )
3942
+ );
3943
+ }
3944
+ );
3945
+ IconColumnsFormat[designSystemBaseIcon.iconSymbol] = true;
3946
+
3695
3947
  const IconColumnsThree = react.forwardRef(
3696
3948
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
3697
3949
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -4877,7 +5129,7 @@ const IconDiagramCardUser = react.forwardRef(
4877
5129
  );
4878
5130
  IconDiagramCardUser[designSystemBaseIcon.iconSymbol] = true;
4879
5131
 
4880
- const IconDistributeHorizontal = react.forwardRef(
5132
+ const IconDiagrammingFormat = react.forwardRef(
4881
5133
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
4882
5134
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
4883
5135
  return react.createElement(
@@ -4894,27 +5146,36 @@ const IconDistributeHorizontal = react.forwardRef(
4894
5146
  /* @__PURE__ */ jsxRuntime.jsx(
4895
5147
  "path",
4896
5148
  {
4897
- stroke: "currentColor",
4898
- strokeLinecap: "round",
4899
- strokeWidth: "var(--svg-stroke-width)",
4900
- d: "M4 3v18m16-18v18"
5149
+ fill: "currentColor",
5150
+ fillRule: "evenodd",
5151
+ 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",
5152
+ clipRule: "evenodd"
4901
5153
  }
4902
5154
  ),
4903
- /* @__PURE__ */ jsxRuntime.jsx("rect", { width: 4, height: 10, x: 10, y: 7, fill: "currentColor", rx: 2 }),
4904
5155
  /* @__PURE__ */ jsxRuntime.jsx(
4905
5156
  "path",
4906
5157
  {
4907
- stroke: "currentColor",
4908
- strokeWidth: "var(--svg-stroke-width)",
4909
- d: "M12 12v.0001"
5158
+ fill: "currentColor",
5159
+ fillRule: "evenodd",
5160
+ 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",
5161
+ clipRule: "evenodd"
5162
+ }
5163
+ ),
5164
+ /* @__PURE__ */ jsxRuntime.jsx(
5165
+ "path",
5166
+ {
5167
+ fill: "currentColor",
5168
+ fillRule: "evenodd",
5169
+ 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",
5170
+ clipRule: "evenodd"
4910
5171
  }
4911
5172
  )
4912
5173
  );
4913
5174
  }
4914
5175
  );
4915
- IconDistributeHorizontal[designSystemBaseIcon.iconSymbol] = true;
5176
+ IconDiagrammingFormat[designSystemBaseIcon.iconSymbol] = true;
4916
5177
 
4917
- const IconDistributeVertical = react.forwardRef(
5178
+ const IconDistributeHorizontal = react.forwardRef(
4918
5179
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
4919
5180
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
4920
5181
  return react.createElement(
@@ -4934,11 +5195,48 @@ const IconDistributeVertical = react.forwardRef(
4934
5195
  stroke: "currentColor",
4935
5196
  strokeLinecap: "round",
4936
5197
  strokeWidth: "var(--svg-stroke-width)",
4937
- d: "M21 4h-18m18 16h-18"
5198
+ d: "M4 3v18m16-18v18"
4938
5199
  }
4939
5200
  ),
5201
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { width: 4, height: 10, x: 10, y: 7, fill: "currentColor", rx: 2 }),
4940
5202
  /* @__PURE__ */ jsxRuntime.jsx(
4941
- "rect",
5203
+ "path",
5204
+ {
5205
+ stroke: "currentColor",
5206
+ strokeWidth: "var(--svg-stroke-width)",
5207
+ d: "M12 12v.0001"
5208
+ }
5209
+ )
5210
+ );
5211
+ }
5212
+ );
5213
+ IconDistributeHorizontal[designSystemBaseIcon.iconSymbol] = true;
5214
+
5215
+ const IconDistributeVertical = react.forwardRef(
5216
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5217
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
5218
+ return react.createElement(
5219
+ StyledIcon,
5220
+ {
5221
+ ...props,
5222
+ weight,
5223
+ debug,
5224
+ size,
5225
+ viewBox: "0 0 24 24",
5226
+ fill: "none",
5227
+ ref: forwardRef2
5228
+ },
5229
+ /* @__PURE__ */ jsxRuntime.jsx(
5230
+ "path",
5231
+ {
5232
+ stroke: "currentColor",
5233
+ strokeLinecap: "round",
5234
+ strokeWidth: "var(--svg-stroke-width)",
5235
+ d: "M21 4h-18m18 16h-18"
5236
+ }
5237
+ ),
5238
+ /* @__PURE__ */ jsxRuntime.jsx(
5239
+ "rect",
4942
5240
  {
4943
5241
  width: 4,
4944
5242
  height: 10,
@@ -4962,6 +5260,43 @@ const IconDistributeVertical = react.forwardRef(
4962
5260
  );
4963
5261
  IconDistributeVertical[designSystemBaseIcon.iconSymbol] = true;
4964
5262
 
5263
+ const IconDocFormat = react.forwardRef(
5264
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5265
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
5266
+ return react.createElement(
5267
+ StyledIcon,
5268
+ {
5269
+ ...props,
5270
+ weight,
5271
+ debug,
5272
+ size,
5273
+ viewBox: "0 0 24 24",
5274
+ fill: "none",
5275
+ ref: forwardRef2
5276
+ },
5277
+ /* @__PURE__ */ jsxRuntime.jsx(
5278
+ "path",
5279
+ {
5280
+ fill: "currentColor",
5281
+ fillRule: "evenodd",
5282
+ 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",
5283
+ clipRule: "evenodd"
5284
+ }
5285
+ ),
5286
+ /* @__PURE__ */ jsxRuntime.jsx(
5287
+ "path",
5288
+ {
5289
+ fill: "currentColor",
5290
+ fillRule: "evenodd",
5291
+ 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",
5292
+ clipRule: "evenodd"
5293
+ }
5294
+ )
5295
+ );
5296
+ }
5297
+ );
5298
+ IconDocFormat[designSystemBaseIcon.iconSymbol] = true;
5299
+
4965
5300
  const IconDollarSignCurrency = react.forwardRef(
4966
5301
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
4967
5302
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -5440,6 +5775,43 @@ const IconExport = react.forwardRef(
5440
5775
  );
5441
5776
  IconExport[designSystemBaseIcon.iconSymbol] = true;
5442
5777
 
5778
+ const IconExternalFormat = react.forwardRef(
5779
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5780
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
5781
+ return react.createElement(
5782
+ StyledIcon,
5783
+ {
5784
+ ...props,
5785
+ weight,
5786
+ debug,
5787
+ size,
5788
+ viewBox: "0 0 24 24",
5789
+ fill: "none",
5790
+ ref: forwardRef2
5791
+ },
5792
+ /* @__PURE__ */ jsxRuntime.jsx(
5793
+ "path",
5794
+ {
5795
+ fill: "currentColor",
5796
+ fillRule: "evenodd",
5797
+ 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",
5798
+ clipRule: "evenodd"
5799
+ }
5800
+ ),
5801
+ /* @__PURE__ */ jsxRuntime.jsx(
5802
+ "path",
5803
+ {
5804
+ fill: "currentColor",
5805
+ fillRule: "evenodd",
5806
+ 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",
5807
+ clipRule: "evenodd"
5808
+ }
5809
+ )
5810
+ );
5811
+ }
5812
+ );
5813
+ IconExternalFormat[designSystemBaseIcon.iconSymbol] = true;
5814
+
5443
5815
  const IconEyeClosedDotsFourFrameBroken = react.forwardRef(
5444
5816
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5445
5817
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -8277,6 +8649,14 @@ const IconMonitorPause = react.forwardRef(
8277
8649
  strokeWidth: "var(--svg-stroke-width)",
8278
8650
  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"
8279
8651
  }
8652
+ ),
8653
+ /* @__PURE__ */ jsxRuntime.jsx(
8654
+ "path",
8655
+ {
8656
+ stroke: "currentColor",
8657
+ strokeWidth: "var(--svg-stroke-width)",
8658
+ d: "M14 12v.0001"
8659
+ }
8280
8660
  )
8281
8661
  );
8282
8662
  }
@@ -8313,6 +8693,14 @@ const IconMonitorPlay = react.forwardRef(
8313
8693
  fill: "currentColor",
8314
8694
  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"
8315
8695
  }
8696
+ ),
8697
+ /* @__PURE__ */ jsxRuntime.jsx(
8698
+ "path",
8699
+ {
8700
+ stroke: "currentColor",
8701
+ strokeWidth: "var(--svg-stroke-width)",
8702
+ d: "M12 11v.0001"
8703
+ }
8316
8704
  )
8317
8705
  );
8318
8706
  }
@@ -8343,7 +8731,15 @@ const IconMonitorStop = react.forwardRef(
8343
8731
  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"
8344
8732
  }
8345
8733
  ),
8346
- /* @__PURE__ */ jsxRuntime.jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 })
8734
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { width: 6, height: 6, x: 9, y: 8, fill: "currentColor", rx: 1 }),
8735
+ /* @__PURE__ */ jsxRuntime.jsx(
8736
+ "path",
8737
+ {
8738
+ stroke: "currentColor",
8739
+ strokeWidth: "var(--svg-stroke-width)",
8740
+ d: "M12 11v.0001"
8741
+ }
8742
+ )
8347
8743
  );
8348
8744
  }
8349
8745
  );
@@ -10060,9 +10456,267 @@ const IconPresentationPlay = react.forwardRef(
10060
10456
  );
10061
10457
  }
10062
10458
  );
10063
- IconPresentationPlay[designSystemBaseIcon.iconSymbol] = true;
10459
+ IconPresentationPlay[designSystemBaseIcon.iconSymbol] = true;
10460
+
10461
+ const IconPresentationPlus = react.forwardRef(
10462
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10463
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10464
+ return react.createElement(
10465
+ StyledIcon,
10466
+ {
10467
+ ...props,
10468
+ weight,
10469
+ debug,
10470
+ size,
10471
+ viewBox: "0 0 24 24",
10472
+ fill: "none",
10473
+ ref: forwardRef2
10474
+ },
10475
+ /* @__PURE__ */ jsxRuntime.jsx(
10476
+ "path",
10477
+ {
10478
+ stroke: "currentColor",
10479
+ strokeLinecap: "round",
10480
+ strokeLinejoin: "round",
10481
+ strokeWidth: "var(--svg-stroke-width)",
10482
+ d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4m-9-11h3m0 0h3m-3 0v-3m0 3v3"
10483
+ }
10484
+ )
10485
+ );
10486
+ }
10487
+ );
10488
+ IconPresentationPlus[designSystemBaseIcon.iconSymbol] = true;
10489
+
10490
+ const IconPrevious = react.forwardRef(
10491
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10492
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10493
+ return react.createElement(
10494
+ StyledIcon,
10495
+ {
10496
+ ...props,
10497
+ weight,
10498
+ debug,
10499
+ size,
10500
+ viewBox: "0 0 24 24",
10501
+ fill: "none",
10502
+ ref: forwardRef2
10503
+ },
10504
+ /* @__PURE__ */ jsxRuntime.jsx(
10505
+ "path",
10506
+ {
10507
+ fill: "currentColor",
10508
+ 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"
10509
+ }
10510
+ )
10511
+ );
10512
+ }
10513
+ );
10514
+ IconPrevious[designSystemBaseIcon.iconSymbol] = true;
10515
+
10516
+ const IconProhibit = react.forwardRef(
10517
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10518
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10519
+ return react.createElement(
10520
+ StyledIcon,
10521
+ {
10522
+ ...props,
10523
+ weight,
10524
+ debug,
10525
+ size,
10526
+ viewBox: "0 0 24 24",
10527
+ fill: "none",
10528
+ ref: forwardRef2
10529
+ },
10530
+ /* @__PURE__ */ jsxRuntime.jsx(
10531
+ "path",
10532
+ {
10533
+ stroke: "currentColor",
10534
+ strokeWidth: "var(--svg-stroke-width)",
10535
+ 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"
10536
+ }
10537
+ )
10538
+ );
10539
+ }
10540
+ );
10541
+ IconProhibit[designSystemBaseIcon.iconSymbol] = true;
10542
+
10543
+ const IconProtoButton = react.forwardRef(
10544
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10545
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10546
+ return react.createElement(
10547
+ StyledIcon,
10548
+ {
10549
+ ...props,
10550
+ weight,
10551
+ debug,
10552
+ size,
10553
+ viewBox: "0 0 24 24",
10554
+ fill: "none",
10555
+ ref: forwardRef2
10556
+ },
10557
+ /* @__PURE__ */ jsxRuntime.jsx(
10558
+ "path",
10559
+ {
10560
+ fill: "currentColor",
10561
+ fillRule: "evenodd",
10562
+ 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",
10563
+ clipRule: "evenodd"
10564
+ }
10565
+ ),
10566
+ /* @__PURE__ */ jsxRuntime.jsx(
10567
+ "path",
10568
+ {
10569
+ fill: "currentColor",
10570
+ fillRule: "evenodd",
10571
+ 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",
10572
+ clipRule: "evenodd"
10573
+ }
10574
+ )
10575
+ );
10576
+ }
10577
+ );
10578
+ IconProtoButton[designSystemBaseIcon.iconSymbol] = true;
10579
+
10580
+ const IconProtoCheckbox = react.forwardRef(
10581
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10582
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10583
+ return react.createElement(
10584
+ StyledIcon,
10585
+ {
10586
+ ...props,
10587
+ weight,
10588
+ debug,
10589
+ size,
10590
+ viewBox: "0 0 24 24",
10591
+ fill: "none",
10592
+ ref: forwardRef2
10593
+ },
10594
+ /* @__PURE__ */ jsxRuntime.jsx(
10595
+ "path",
10596
+ {
10597
+ fill: "currentColor",
10598
+ fillRule: "evenodd",
10599
+ 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",
10600
+ clipRule: "evenodd"
10601
+ }
10602
+ )
10603
+ );
10604
+ }
10605
+ );
10606
+ IconProtoCheckbox[designSystemBaseIcon.iconSymbol] = true;
10607
+
10608
+ const IconProtoDropdown = react.forwardRef(
10609
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10610
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10611
+ return react.createElement(
10612
+ StyledIcon,
10613
+ {
10614
+ ...props,
10615
+ weight,
10616
+ debug,
10617
+ size,
10618
+ viewBox: "0 0 24 24",
10619
+ fill: "none",
10620
+ ref: forwardRef2
10621
+ },
10622
+ /* @__PURE__ */ jsxRuntime.jsx(
10623
+ "path",
10624
+ {
10625
+ fill: "currentColor",
10626
+ fillRule: "evenodd",
10627
+ 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",
10628
+ clipRule: "evenodd"
10629
+ }
10630
+ ),
10631
+ /* @__PURE__ */ jsxRuntime.jsx(
10632
+ "path",
10633
+ {
10634
+ fill: "currentColor",
10635
+ fillRule: "evenodd",
10636
+ 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",
10637
+ clipRule: "evenodd"
10638
+ }
10639
+ )
10640
+ );
10641
+ }
10642
+ );
10643
+ IconProtoDropdown[designSystemBaseIcon.iconSymbol] = true;
10644
+
10645
+ const IconProtoInput = react.forwardRef(
10646
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10647
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10648
+ return react.createElement(
10649
+ StyledIcon,
10650
+ {
10651
+ ...props,
10652
+ weight,
10653
+ debug,
10654
+ size,
10655
+ viewBox: "0 0 24 24",
10656
+ fill: "none",
10657
+ ref: forwardRef2
10658
+ },
10659
+ /* @__PURE__ */ jsxRuntime.jsx(
10660
+ "path",
10661
+ {
10662
+ fill: "currentColor",
10663
+ fillRule: "evenodd",
10664
+ 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",
10665
+ clipRule: "evenodd"
10666
+ }
10667
+ ),
10668
+ /* @__PURE__ */ jsxRuntime.jsx(
10669
+ "path",
10670
+ {
10671
+ fill: "currentColor",
10672
+ fillRule: "evenodd",
10673
+ d: "M7 8c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1s-1-.4477-1-1v-6c0-.5523.4477-1 1-1Z",
10674
+ clipRule: "evenodd"
10675
+ }
10676
+ )
10677
+ );
10678
+ }
10679
+ );
10680
+ IconProtoInput[designSystemBaseIcon.iconSymbol] = true;
10681
+
10682
+ const IconProtoNumber = react.forwardRef(
10683
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10684
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10685
+ return react.createElement(
10686
+ StyledIcon,
10687
+ {
10688
+ ...props,
10689
+ weight,
10690
+ debug,
10691
+ size,
10692
+ viewBox: "0 0 24 24",
10693
+ fill: "none",
10694
+ ref: forwardRef2
10695
+ },
10696
+ /* @__PURE__ */ jsxRuntime.jsx(
10697
+ "path",
10698
+ {
10699
+ fill: "currentColor",
10700
+ fillRule: "evenodd",
10701
+ 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",
10702
+ clipRule: "evenodd"
10703
+ }
10704
+ ),
10705
+ /* @__PURE__ */ jsxRuntime.jsx(
10706
+ "path",
10707
+ {
10708
+ fill: "currentColor",
10709
+ fillRule: "evenodd",
10710
+ 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",
10711
+ clipRule: "evenodd"
10712
+ }
10713
+ )
10714
+ );
10715
+ }
10716
+ );
10717
+ IconProtoNumber[designSystemBaseIcon.iconSymbol] = true;
10064
10718
 
10065
- const IconPresentationPlus = react.forwardRef(
10719
+ const IconProtoRadio = react.forwardRef(
10066
10720
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10067
10721
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10068
10722
  return react.createElement(
@@ -10079,19 +10733,25 @@ const IconPresentationPlus = react.forwardRef(
10079
10733
  /* @__PURE__ */ jsxRuntime.jsx(
10080
10734
  "path",
10081
10735
  {
10082
- stroke: "currentColor",
10083
- strokeLinecap: "round",
10084
- strokeLinejoin: "round",
10085
- strokeWidth: "var(--svg-stroke-width)",
10086
- d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4m-9-11h3m0 0h3m-3 0v-3m0 3v3"
10736
+ fill: "currentColor",
10737
+ fillRule: "evenodd",
10738
+ 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",
10739
+ clipRule: "evenodd"
10740
+ }
10741
+ ),
10742
+ /* @__PURE__ */ jsxRuntime.jsx(
10743
+ "path",
10744
+ {
10745
+ fill: "currentColor",
10746
+ 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"
10087
10747
  }
10088
10748
  )
10089
10749
  );
10090
10750
  }
10091
10751
  );
10092
- IconPresentationPlus[designSystemBaseIcon.iconSymbol] = true;
10752
+ IconProtoRadio[designSystemBaseIcon.iconSymbol] = true;
10093
10753
 
10094
- const IconPrevious = react.forwardRef(
10754
+ const IconProtoSlider = react.forwardRef(
10095
10755
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10096
10756
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10097
10757
  return react.createElement(
@@ -10109,15 +10769,22 @@ const IconPrevious = react.forwardRef(
10109
10769
  "path",
10110
10770
  {
10111
10771
  fill: "currentColor",
10112
- 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"
10772
+ 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"
10773
+ }
10774
+ ),
10775
+ /* @__PURE__ */ jsxRuntime.jsx(
10776
+ "path",
10777
+ {
10778
+ fill: "currentColor",
10779
+ d: "M2 12c0-.5523.4477-1 1-1h7v2h-7c-.5523 0-1-.4477-1-1ZM17 11h4c.5523 0 1 .4477 1 1"
10113
10780
  }
10114
10781
  )
10115
10782
  );
10116
10783
  }
10117
10784
  );
10118
- IconPrevious[designSystemBaseIcon.iconSymbol] = true;
10785
+ IconProtoSlider[designSystemBaseIcon.iconSymbol] = true;
10119
10786
 
10120
- const IconProhibit = react.forwardRef(
10787
+ const IconPrototypeFormat = react.forwardRef(
10121
10788
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10122
10789
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
10123
10790
  return react.createElement(
@@ -10134,15 +10801,25 @@ const IconProhibit = react.forwardRef(
10134
10801
  /* @__PURE__ */ jsxRuntime.jsx(
10135
10802
  "path",
10136
10803
  {
10137
- stroke: "currentColor",
10138
- strokeWidth: "var(--svg-stroke-width)",
10139
- 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"
10804
+ fill: "currentColor",
10805
+ fillRule: "evenodd",
10806
+ 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",
10807
+ clipRule: "evenodd"
10808
+ }
10809
+ ),
10810
+ /* @__PURE__ */ jsxRuntime.jsx(
10811
+ "path",
10812
+ {
10813
+ fill: "currentColor",
10814
+ fillRule: "evenodd",
10815
+ 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",
10816
+ clipRule: "evenodd"
10140
10817
  }
10141
10818
  )
10142
10819
  );
10143
10820
  }
10144
10821
  );
10145
- IconProhibit[designSystemBaseIcon.iconSymbol] = true;
10822
+ IconPrototypeFormat[designSystemBaseIcon.iconSymbol] = true;
10146
10823
 
10147
10824
  const IconPushPinFilled = react.forwardRef(
10148
10825
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
@@ -10391,6 +11068,34 @@ const IconRectangleDashLines = react.forwardRef(
10391
11068
  );
10392
11069
  IconRectangleDashLines[designSystemBaseIcon.iconSymbol] = true;
10393
11070
 
11071
+ const IconRectangleDotLarge = react.forwardRef(
11072
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11073
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
11074
+ return react.createElement(
11075
+ StyledIcon,
11076
+ {
11077
+ ...props,
11078
+ weight,
11079
+ debug,
11080
+ size,
11081
+ viewBox: "0 0 24 24",
11082
+ fill: "none",
11083
+ ref: forwardRef2
11084
+ },
11085
+ /* @__PURE__ */ jsxRuntime.jsx(
11086
+ "path",
11087
+ {
11088
+ fill: "currentColor",
11089
+ fillRule: "evenodd",
11090
+ 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",
11091
+ clipRule: "evenodd"
11092
+ }
11093
+ )
11094
+ );
11095
+ }
11096
+ );
11097
+ IconRectangleDotLarge[designSystemBaseIcon.iconSymbol] = true;
11098
+
10394
11099
  const IconRectangleDotLinePen = react.forwardRef(
10395
11100
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10396
11101
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -10436,6 +11141,62 @@ const IconRectangleDotLinePen = react.forwardRef(
10436
11141
  );
10437
11142
  IconRectangleDotLinePen[designSystemBaseIcon.iconSymbol] = true;
10438
11143
 
11144
+ const IconRectangleDotMedium = react.forwardRef(
11145
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11146
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
11147
+ return react.createElement(
11148
+ StyledIcon,
11149
+ {
11150
+ ...props,
11151
+ weight,
11152
+ debug,
11153
+ size,
11154
+ viewBox: "0 0 24 24",
11155
+ fill: "none",
11156
+ ref: forwardRef2
11157
+ },
11158
+ /* @__PURE__ */ jsxRuntime.jsx(
11159
+ "path",
11160
+ {
11161
+ fill: "currentColor",
11162
+ fillRule: "evenodd",
11163
+ 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",
11164
+ clipRule: "evenodd"
11165
+ }
11166
+ )
11167
+ );
11168
+ }
11169
+ );
11170
+ IconRectangleDotMedium[designSystemBaseIcon.iconSymbol] = true;
11171
+
11172
+ const IconRectangleDotSmall = react.forwardRef(
11173
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11174
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
11175
+ return react.createElement(
11176
+ StyledIcon,
11177
+ {
11178
+ ...props,
11179
+ weight,
11180
+ debug,
11181
+ size,
11182
+ viewBox: "0 0 24 24",
11183
+ fill: "none",
11184
+ ref: forwardRef2
11185
+ },
11186
+ /* @__PURE__ */ jsxRuntime.jsx(
11187
+ "path",
11188
+ {
11189
+ fill: "currentColor",
11190
+ fillRule: "evenodd",
11191
+ 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",
11192
+ clipRule: "evenodd"
11193
+ }
11194
+ )
11195
+ );
11196
+ }
11197
+ );
11198
+ IconRectangleDotSmall[designSystemBaseIcon.iconSymbol] = true;
11199
+
10439
11200
  const IconRectangleFrame2Lines = react.forwardRef(
10440
11201
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
10441
11202
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -11354,6 +12115,34 @@ const IconShieldCheck = react.forwardRef(
11354
12115
  );
11355
12116
  IconShieldCheck[designSystemBaseIcon.iconSymbol] = true;
11356
12117
 
12118
+ const IconShieldLockFilled = react.forwardRef(
12119
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
12120
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
12121
+ return react.createElement(
12122
+ StyledIcon,
12123
+ {
12124
+ ...props,
12125
+ weight,
12126
+ debug,
12127
+ size,
12128
+ viewBox: "0 0 24 24",
12129
+ fill: "none",
12130
+ ref: forwardRef2
12131
+ },
12132
+ /* @__PURE__ */ jsxRuntime.jsx(
12133
+ "path",
12134
+ {
12135
+ fill: "currentColor",
12136
+ fillRule: "evenodd",
12137
+ 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",
12138
+ clipRule: "evenodd"
12139
+ }
12140
+ )
12141
+ );
12142
+ }
12143
+ );
12144
+ IconShieldLockFilled[designSystemBaseIcon.iconSymbol] = true;
12145
+
11357
12146
  const IconShieldLock = react.forwardRef(
11358
12147
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11359
12148
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -11613,6 +12402,41 @@ const IconSingleSparksFilled = react.forwardRef(
11613
12402
  );
11614
12403
  IconSingleSparksFilled[designSystemBaseIcon.iconSymbol] = true;
11615
12404
 
12405
+ const IconSlideFormat = react.forwardRef(
12406
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
12407
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
12408
+ return react.createElement(
12409
+ StyledIcon,
12410
+ {
12411
+ ...props,
12412
+ weight,
12413
+ debug,
12414
+ size,
12415
+ viewBox: "0 0 24 24",
12416
+ fill: "none",
12417
+ ref: forwardRef2
12418
+ },
12419
+ /* @__PURE__ */ jsxRuntime.jsx(
12420
+ "path",
12421
+ {
12422
+ fill: "currentColor",
12423
+ 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"
12424
+ }
12425
+ ),
12426
+ /* @__PURE__ */ jsxRuntime.jsx(
12427
+ "path",
12428
+ {
12429
+ fill: "currentColor",
12430
+ fillRule: "evenodd",
12431
+ 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",
12432
+ clipRule: "evenodd"
12433
+ }
12434
+ )
12435
+ );
12436
+ }
12437
+ );
12438
+ IconSlideFormat[designSystemBaseIcon.iconSymbol] = true;
12439
+
11616
12440
  const IconSlidersX = react.forwardRef(
11617
12441
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
11618
12442
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -12347,7 +13171,7 @@ const IconSparks = react.forwardRef(
12347
13171
  "path",
12348
13172
  {
12349
13173
  fill: "currentColor",
12350
- 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"
13174
+ 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"
12351
13175
  }
12352
13176
  ),
12353
13177
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -13758,19 +14582,61 @@ const IconSwitch = react.forwardRef(
13758
14582
  /* @__PURE__ */ jsxRuntime.jsx(
13759
14583
  "path",
13760
14584
  {
13761
- stroke: "currentColor",
13762
- strokeLinecap: "round",
13763
- strokeLinejoin: "round",
13764
- strokeWidth: "var(--svg-stroke-width)",
13765
- d: "M7 18c-7 0-7-11 0-11h10c7 0 7 11 0 11h-10Z"
14585
+ fill: "currentColor",
14586
+ fillRule: "evenodd",
14587
+ 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",
14588
+ clipRule: "evenodd"
13766
14589
  }
13767
14590
  ),
13768
- /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 8.5, cy: 12.5, r: 3.5, fill: "currentColor" })
14591
+ /* @__PURE__ */ jsxRuntime.jsx(
14592
+ "path",
14593
+ {
14594
+ fill: "currentColor",
14595
+ 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"
14596
+ }
14597
+ )
13769
14598
  );
13770
14599
  }
13771
14600
  );
13772
14601
  IconSwitch[designSystemBaseIcon.iconSymbol] = true;
13773
14602
 
14603
+ const IconTableFormat = react.forwardRef(
14604
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
14605
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
14606
+ return react.createElement(
14607
+ StyledIcon,
14608
+ {
14609
+ ...props,
14610
+ weight,
14611
+ debug,
14612
+ size,
14613
+ viewBox: "0 0 24 24",
14614
+ fill: "none",
14615
+ ref: forwardRef2
14616
+ },
14617
+ /* @__PURE__ */ jsxRuntime.jsx(
14618
+ "path",
14619
+ {
14620
+ fill: "currentColor",
14621
+ fillRule: "evenodd",
14622
+ 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",
14623
+ clipRule: "evenodd"
14624
+ }
14625
+ ),
14626
+ /* @__PURE__ */ jsxRuntime.jsx(
14627
+ "path",
14628
+ {
14629
+ fill: "currentColor",
14630
+ fillRule: "evenodd",
14631
+ 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",
14632
+ clipRule: "evenodd"
14633
+ }
14634
+ )
14635
+ );
14636
+ }
14637
+ );
14638
+ IconTableFormat[designSystemBaseIcon.iconSymbol] = true;
14639
+
13774
14640
  const IconTag = react.forwardRef(
13775
14641
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
13776
14642
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -14661,6 +15527,43 @@ const IconTicket = react.forwardRef(
14661
15527
  );
14662
15528
  IconTicket[designSystemBaseIcon.iconSymbol] = true;
14663
15529
 
15530
+ const IconTimelineFormat = react.forwardRef(
15531
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
15532
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
15533
+ return react.createElement(
15534
+ StyledIcon,
15535
+ {
15536
+ ...props,
15537
+ weight,
15538
+ debug,
15539
+ size,
15540
+ viewBox: "0 0 24 24",
15541
+ fill: "none",
15542
+ ref: forwardRef2
15543
+ },
15544
+ /* @__PURE__ */ jsxRuntime.jsx(
15545
+ "path",
15546
+ {
15547
+ fill: "currentColor",
15548
+ fillRule: "evenodd",
15549
+ 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",
15550
+ clipRule: "evenodd"
15551
+ }
15552
+ ),
15553
+ /* @__PURE__ */ jsxRuntime.jsx(
15554
+ "path",
15555
+ {
15556
+ fill: "currentColor",
15557
+ fillRule: "evenodd",
15558
+ 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",
15559
+ clipRule: "evenodd"
15560
+ }
15561
+ )
15562
+ );
15563
+ }
15564
+ );
15565
+ IconTimelineFormat[designSystemBaseIcon.iconSymbol] = true;
15566
+
14664
15567
  const IconTimer = react.forwardRef(
14665
15568
  ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
14666
15569
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -15822,6 +16725,7 @@ exports.IconAlignCenterVertical = IconAlignCenterVertical;
15822
16725
  exports.IconAlignLeft = IconAlignLeft;
15823
16726
  exports.IconAlignRight = IconAlignRight;
15824
16727
  exports.IconAlignTop = IconAlignTop;
16728
+ exports.IconAlignmentScale = IconAlignmentScale;
15825
16729
  exports.IconArrowArcLeft = IconArrowArcLeft;
15826
16730
  exports.IconArrowArcRight = IconArrowArcRight;
15827
16731
  exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
@@ -15836,6 +16740,8 @@ exports.IconArrowDown = IconArrowDown;
15836
16740
  exports.IconArrowDownLeft = IconArrowDownLeft;
15837
16741
  exports.IconArrowDownRight = IconArrowDownRight;
15838
16742
  exports.IconArrowElbowDownRight = IconArrowElbowDownRight;
16743
+ exports.IconArrowFatLeft = IconArrowFatLeft;
16744
+ exports.IconArrowFatLeftRight = IconArrowFatLeftRight;
15839
16745
  exports.IconArrowFatRight = IconArrowFatRight;
15840
16746
  exports.IconArrowFatUpRight = IconArrowFatUpRight;
15841
16747
  exports.IconArrowLeft = IconArrowLeft;
@@ -15854,6 +16760,8 @@ exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
15854
16760
  exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
15855
16761
  exports.IconArrowsOutSimple = IconArrowsOutSimple;
15856
16762
  exports.IconArrowsSquareCounterClockwiseY = IconArrowsSquareCounterClockwiseY;
16763
+ exports.IconArrowsTimeBackward = IconArrowsTimeBackward;
16764
+ exports.IconArrowsTimeForward = IconArrowsTimeForward;
15857
16765
  exports.IconArticle = IconArticle;
15858
16766
  exports.IconAt = IconAt;
15859
16767
  exports.IconBadge = IconBadge;
@@ -15864,6 +16772,7 @@ exports.IconBellTilt = IconBellTilt;
15864
16772
  exports.IconBoard = IconBoard;
15865
16773
  exports.IconBookOpenInfo = IconBookOpenInfo;
15866
16774
  exports.IconBookmark = IconBookmark;
16775
+ exports.IconBoxCaptions = IconBoxCaptions;
15867
16776
  exports.IconBracketCurlyLeft = IconBracketCurlyLeft;
15868
16777
  exports.IconBracketCurlyRight = IconBracketCurlyRight;
15869
16778
  exports.IconBracketsAngleSlash = IconBracketsAngleSlash;
@@ -15918,6 +16827,7 @@ exports.IconCog = IconCog;
15918
16827
  exports.IconCoins = IconCoins;
15919
16828
  exports.IconCoinsChecked = IconCoinsChecked;
15920
16829
  exports.IconCoinsSlash = IconCoinsSlash;
16830
+ exports.IconColumnsFormat = IconColumnsFormat;
15921
16831
  exports.IconColumnsThree = IconColumnsThree;
15922
16832
  exports.IconCommentGroup = IconCommentGroup;
15923
16833
  exports.IconConeSerpentine = IconConeSerpentine;
@@ -15952,8 +16862,10 @@ exports.IconDiagramCardSmall2 = IconDiagramCardSmall2;
15952
16862
  exports.IconDiagramCardSmall3 = IconDiagramCardSmall3;
15953
16863
  exports.IconDiagramCardTeam = IconDiagramCardTeam;
15954
16864
  exports.IconDiagramCardUser = IconDiagramCardUser;
16865
+ exports.IconDiagrammingFormat = IconDiagrammingFormat;
15955
16866
  exports.IconDistributeHorizontal = IconDistributeHorizontal;
15956
16867
  exports.IconDistributeVertical = IconDistributeVertical;
16868
+ exports.IconDocFormat = IconDocFormat;
15957
16869
  exports.IconDollarSignCurrency = IconDollarSignCurrency;
15958
16870
  exports.IconDotVoting = IconDotVoting;
15959
16871
  exports.IconDotsNine = IconDotsNine;
@@ -15968,6 +16880,7 @@ exports.IconEraser = IconEraser;
15968
16880
  exports.IconExclamationMarkOctagon = IconExclamationMarkOctagon;
15969
16881
  exports.IconExclamationPointCircle = IconExclamationPointCircle;
15970
16882
  exports.IconExport = IconExport;
16883
+ exports.IconExternalFormat = IconExternalFormat;
15971
16884
  exports.IconEyeClosed = IconEyeClosed;
15972
16885
  exports.IconEyeClosedDotsFourFrameBroken = IconEyeClosedDotsFourFrameBroken;
15973
16886
  exports.IconEyeOpen = IconEyeOpen;
@@ -16105,6 +17018,14 @@ exports.IconPresentationPlay = IconPresentationPlay;
16105
17018
  exports.IconPresentationPlus = IconPresentationPlus;
16106
17019
  exports.IconPrevious = IconPrevious;
16107
17020
  exports.IconProhibit = IconProhibit;
17021
+ exports.IconProtoButton = IconProtoButton;
17022
+ exports.IconProtoCheckbox = IconProtoCheckbox;
17023
+ exports.IconProtoDropdown = IconProtoDropdown;
17024
+ exports.IconProtoInput = IconProtoInput;
17025
+ exports.IconProtoNumber = IconProtoNumber;
17026
+ exports.IconProtoRadio = IconProtoRadio;
17027
+ exports.IconProtoSlider = IconProtoSlider;
17028
+ exports.IconPrototypeFormat = IconPrototypeFormat;
16108
17029
  exports.IconPushPin = IconPushPin;
16109
17030
  exports.IconPushPinFilled = IconPushPinFilled;
16110
17031
  exports.IconQuestionMark = IconQuestionMark;
@@ -16112,7 +17033,10 @@ exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
16112
17033
  exports.IconQuotes = IconQuotes;
16113
17034
  exports.IconRectangleArrowUpCenter = IconRectangleArrowUpCenter;
16114
17035
  exports.IconRectangleDashLines = IconRectangleDashLines;
17036
+ exports.IconRectangleDotLarge = IconRectangleDotLarge;
16115
17037
  exports.IconRectangleDotLinePen = IconRectangleDotLinePen;
17038
+ exports.IconRectangleDotMedium = IconRectangleDotMedium;
17039
+ exports.IconRectangleDotSmall = IconRectangleDotSmall;
16116
17040
  exports.IconRectangleFrame2Lines = IconRectangleFrame2Lines;
16117
17041
  exports.IconRectanglePlayStack = IconRectanglePlayStack;
16118
17042
  exports.IconRectanglePortrait = IconRectanglePortrait;
@@ -16142,12 +17066,14 @@ exports.IconShapes = IconShapes;
16142
17066
  exports.IconShapesLines = IconShapesLines;
16143
17067
  exports.IconShieldCheck = IconShieldCheck;
16144
17068
  exports.IconShieldLock = IconShieldLock;
17069
+ exports.IconShieldLockFilled = IconShieldLockFilled;
16145
17070
  exports.IconShuffle = IconShuffle;
16146
17071
  exports.IconSidebarClosed = IconSidebarClosed;
16147
17072
  exports.IconSidebarGlobalClosed = IconSidebarGlobalClosed;
16148
17073
  exports.IconSidebarGlobalOpen = IconSidebarGlobalOpen;
16149
17074
  exports.IconSidebarOpen = IconSidebarOpen;
16150
17075
  exports.IconSingleSparksFilled = IconSingleSparksFilled;
17076
+ exports.IconSlideFormat = IconSlideFormat;
16151
17077
  exports.IconSlidersX = IconSlidersX;
16152
17078
  exports.IconSlidersY = IconSlidersY;
16153
17079
  exports.IconSmiley = IconSmiley;
@@ -16210,6 +17136,7 @@ exports.IconStroke4 = IconStroke4;
16210
17136
  exports.IconStroke5 = IconStroke5;
16211
17137
  exports.IconStroke6 = IconStroke6;
16212
17138
  exports.IconSwitch = IconSwitch;
17139
+ exports.IconTableFormat = IconTableFormat;
16213
17140
  exports.IconTag = IconTag;
16214
17141
  exports.IconTasks = IconTasks;
16215
17142
  exports.IconTextAUnderline = IconTextAUnderline;
@@ -16234,6 +17161,7 @@ exports.IconTextUUnderlined = IconTextUUnderlined;
16234
17161
  exports.IconThumbsUp = IconThumbsUp;
16235
17162
  exports.IconTickCircle = IconTickCircle;
16236
17163
  exports.IconTicket = IconTicket;
17164
+ exports.IconTimelineFormat = IconTimelineFormat;
16237
17165
  exports.IconTimer = IconTimer;
16238
17166
  exports.IconToolbar = IconToolbar;
16239
17167
  exports.IconTooltip = IconTooltip;