@mirohq/design-system-icons 0.69.0 → 0.71.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 (47) hide show
  1. package/dist/main.js +503 -24
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +496 -25
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +17 -1
  6. package/package.json +3 -3
  7. package/react/alt-text.tsx +42 -0
  8. package/react/arrow-left-right-dotted.tsx +52 -0
  9. package/react/clustered.tsx +1 -1
  10. package/react/hand-filled.tsx +1 -1
  11. package/react/hand-raised-filled.tsx +37 -0
  12. package/react/highlighter-color-selection.tsx +96 -0
  13. package/react/highlighter-underline.tsx +2 -8
  14. package/react/index.ts +8 -0
  15. package/react/lightning.tsx +1 -1
  16. package/react/pen-color-selection.tsx +89 -0
  17. package/react/rectangle-portrait-dash-square-top-center.tsx +2 -2
  18. package/react/rectangle-portrait-dash-square-top-left.tsx +2 -2
  19. package/react/rectangle-portrait-dash.tsx +1 -1
  20. package/react/rectangle-portrait-square-top-left.tsx +5 -5
  21. package/react/sentiment.tsx +2 -2
  22. package/react/square-line-square-dashed.tsx +2 -2
  23. package/react/text-a-color-selection.tsx +84 -0
  24. package/react/text-a-horizontal.tsx +48 -0
  25. package/react/text-a-vertical.tsx +48 -0
  26. package/svg/24/alt-text.svg +2 -0
  27. package/svg/24/arrow-left-right-dotted.svg +2 -0
  28. package/svg/24/clustered-new.svg +1 -1
  29. package/svg/24/hand-filled-new.svg +1 -1
  30. package/svg/24/hand-raised-filled.svg +2 -0
  31. package/svg/24/highlighter-color-selection-new.svg +2 -0
  32. package/svg/24/highlighter-color-selection.svg +2 -0
  33. package/svg/24/highlighter-underline-new.svg +1 -1
  34. package/svg/24/lightning-new.svg +1 -1
  35. package/svg/24/pen-color-selection-new.svg +2 -0
  36. package/svg/24/pen-color-selection.svg +2 -0
  37. package/svg/24/rectangle-portrait-dash-new.svg +1 -1
  38. package/svg/24/rectangle-portrait-dash-square-top-center-new.svg +1 -1
  39. package/svg/24/rectangle-portrait-dash-square-top-left-new.svg +1 -1
  40. package/svg/24/rectangle-portrait-square-top-left-new.svg +1 -1
  41. package/svg/24/sentiment-new.svg +1 -1
  42. package/svg/24/square-line-square-dashed-new.svg +1 -1
  43. package/svg/24/text-a-color-selection-new.svg +2 -0
  44. package/svg/24/text-a-color-selection.svg +2 -0
  45. package/svg/24/text-a-horizontal.svg +2 -0
  46. package/svg/24/text-a-vertical.svg +2 -0
  47. package/svg/meta.json +32 -0
package/dist/main.js CHANGED
@@ -1140,6 +1140,43 @@ const IconAlignmentScale = react.forwardRef(
1140
1140
  );
1141
1141
  IconAlignmentScale[designSystemBaseIcon.iconSymbol] = true;
1142
1142
 
1143
+ const IconAltText = react.forwardRef(
1144
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
1145
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1146
+ return react.createElement(
1147
+ StyledIcon,
1148
+ {
1149
+ ...props,
1150
+ weight,
1151
+ debug,
1152
+ "aria-hidden": true,
1153
+ size,
1154
+ viewBox: "0 0 24 24",
1155
+ fill: "none",
1156
+ ref: forwardRef2
1157
+ },
1158
+ /* @__PURE__ */ jsxRuntime.jsx(
1159
+ "path",
1160
+ {
1161
+ stroke: "currentColor",
1162
+ strokeWidth: "var(--svg-stroke-width)",
1163
+ d: "M12 8v7h4M16 9h6M19 9v7"
1164
+ }
1165
+ ),
1166
+ /* @__PURE__ */ jsxRuntime.jsx(
1167
+ "path",
1168
+ {
1169
+ fill: "currentColor",
1170
+ fillRule: "evenodd",
1171
+ d: "m4.077 16 .6-1.5h2.6459l.6 1.5h2.154l-3.1485-7.8714h-1.857l-3.1485 7.8714h2.154Zm2.4459-3.5h-1.046l.523-1.3074.523 1.3074Z",
1172
+ clipRule: "evenodd"
1173
+ }
1174
+ )
1175
+ );
1176
+ }
1177
+ );
1178
+ IconAltText[designSystemBaseIcon.iconSymbol] = true;
1179
+
1143
1180
  const IconArrowArcLeftNew = react.forwardRef(
1144
1181
  (props, forwardRef2) => {
1145
1182
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -2516,6 +2553,59 @@ const IconArrowFatUpRight = react.forwardRef(
2516
2553
  );
2517
2554
  IconArrowFatUpRight[designSystemBaseIcon.iconSymbol] = true;
2518
2555
 
2556
+ const IconArrowLeftRightDotted = react.forwardRef(
2557
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
2558
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
2559
+ return react.createElement(
2560
+ StyledIcon,
2561
+ {
2562
+ ...props,
2563
+ weight,
2564
+ debug,
2565
+ "aria-hidden": true,
2566
+ size,
2567
+ viewBox: "0 0 24 24",
2568
+ fill: "none",
2569
+ ref: forwardRef2
2570
+ },
2571
+ /* @__PURE__ */ jsxRuntime.jsx(
2572
+ "path",
2573
+ {
2574
+ fill: "currentColor",
2575
+ d: "m18.25 12 .7328.6805v-1.361l-.7328.6805Zm-.7328-.6805-3.25 3.5 1.4656 1.361 3.25-3.5-1.4656-1.361Zm1.4656 0-3.25-3.5-1.4656 1.361 3.25 3.5 1.4656-1.361Zm-5.9828 1.6805h2v-2h-2v2Zm2 0h3.25v-2h-3.25v2Z"
2576
+ }
2577
+ ),
2578
+ /* @__PURE__ */ jsxRuntime.jsx(
2579
+ "path",
2580
+ {
2581
+ stroke: "currentColor",
2582
+ strokeLinejoin: "bevel",
2583
+ strokeWidth: "var(--svg-stroke-width)",
2584
+ d: "m9 15.5-3.25-3.5 3.25-3.5"
2585
+ }
2586
+ ),
2587
+ /* @__PURE__ */ jsxRuntime.jsx(
2588
+ "path",
2589
+ {
2590
+ stroke: "currentColor",
2591
+ strokeWidth: "var(--svg-stroke-width)",
2592
+ d: "M11 12h-4.5"
2593
+ }
2594
+ ),
2595
+ /* @__PURE__ */ jsxRuntime.jsx(
2596
+ "path",
2597
+ {
2598
+ fill: "currentColor",
2599
+ fillRule: "evenodd",
2600
+ d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
2601
+ clipRule: "evenodd"
2602
+ }
2603
+ )
2604
+ );
2605
+ }
2606
+ );
2607
+ IconArrowLeftRightDotted[designSystemBaseIcon.iconSymbol] = true;
2608
+
2519
2609
  const IconArrowLeftNew = react.forwardRef(
2520
2610
  (props, forwardRef2) => {
2521
2611
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -9562,7 +9652,7 @@ const IconClusteredNew = react.forwardRef(
9562
9652
  {
9563
9653
  fill: "currentColor",
9564
9654
  fillRule: "evenodd",
9565
- d: "M6 5c-.5523 0-1 .4477-1 1v2h-2v-2c0-1.6569 1.3431-3 3-3h2v2h-2Zm8 0h-4v-2h4v2Zm4 0h-2v-2h2c1.6569 0 3 1.3431 3 3v2h-2v-2c0-.5523-.4477-1-1-1Zm-13 5v4h-2v-4h2Zm14 4v-4h2v4h-2Zm-14 2v2c0 .5523.4477 1 1 1h2v2h-2c-1.6569 0-3-1.3431-3-3v-2h2Zm14 2v-2h2v2c0 1.6569-1.3431 3-3 3h-2v-2h2c.5523 0 1-.4477 1-1Zm-9 1h4v2h-4v-2Z",
9655
+ d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
9566
9656
  clipRule: "evenodd"
9567
9657
  }
9568
9658
  ),
@@ -16542,7 +16632,7 @@ const IconHandFilledNew = react.forwardRef(
16542
16632
  {
16543
16633
  fill: "currentColor",
16544
16634
  fillRule: "evenodd",
16545
- d: "M11.5 2c.8284 0 1.5.6716 1.5 1.5v7.5h1.5v-6c0-.8284.6716-1.5 1.5-1.5s1.5.6716 1.5 1.5v6h1.5v-3c0-.8284.6716-1.5 1.5-1.5s1.5.6716 1.5 1.5v6c0 4.4183-3.5817 8-8 8h-1.497a8.7501 8.7501 0 0 1-6.1871-2.5628l-4.8766-4.8765c-.5857-.5858-.5857-1.5356 0-2.1214.5858-.5857 1.432-.5606 2.1214 0 .268.2181 1.0652.8528 1.9393 1.5472v-8.9865c0-.8284.6716-1.5 1.5-1.5s1.5.6716 1.5 1.5v6h1.5v-7.5c0-.8284.6716-1.5 1.5-1.5Z",
16635
+ d: "M13.857 3.5c0-.8284-.6076-1.5-1.3571-1.5-.7495 0-1.3571.6716-1.3571 1.5v7.5h-1.0239v-5.1875c0-.5-.1904-1.5-1.1904-1.5-1 0-1.5.6716-1.5 1.5v8.5499c-.9369-.686-2.0209-1.4959-2.4285-1.8624-.7757-.6973-2.0726-.6464-2.6026-.0607-.53.5858-.3974 1.5607 0 2.1214l4.6025 4.9393c1.4286 1.25 3.5 2.5 5.4075 2.5h1.3544c2.4514 0 3.3706-.5607 4.2381-1.25.4542-.3609 1.0803-.9807 1.55-1.75.8501-1.3926 1.2001-4 1.2001-5l-.0001-.0292v-5.9708c0-.8284-.6077-1.5-1.3572-1.5-.7495 0-1.1428.6716-1.1428 1.5v3h-.8939v-5.3103c0-.8284-.4647-1.5-1.2143-1.5-.7495 0-1.2857.6716-1.2857 1.5v5.3103h-.999v-7.5Z",
16546
16636
  clipRule: "evenodd"
16547
16637
  }
16548
16638
  )
@@ -16698,6 +16788,35 @@ const IconHandPointing = react.forwardRef(
16698
16788
  );
16699
16789
  IconHandPointing[designSystemBaseIcon.iconSymbol] = true;
16700
16790
 
16791
+ const IconHandRaisedFilled = react.forwardRef(
16792
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
16793
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
16794
+ return react.createElement(
16795
+ StyledIcon,
16796
+ {
16797
+ ...props,
16798
+ weight,
16799
+ debug,
16800
+ "aria-hidden": true,
16801
+ size,
16802
+ viewBox: "0 0 24 24",
16803
+ fill: "none",
16804
+ ref: forwardRef2
16805
+ },
16806
+ /* @__PURE__ */ jsxRuntime.jsx(
16807
+ "path",
16808
+ {
16809
+ fill: "currentColor",
16810
+ fillRule: "evenodd",
16811
+ d: "M10.1908 3.5c0-.8284.6076-1.5 1.3572-1.5.7495 0 1.3571.6716 1.3571 1.5v7.5h1.0238v-5.1875c0-.5.1905-1.5 1.1905-1.5 1 0 1.5.6716 1.5 1.5v8.5499c.9368-.686 2.0208-1.4959 2.4285-1.8624.7756-.6973 2.0726-.6464 2.6026-.0607.53.5858.3974 1.5607 0 2.1214l-4.6025 4.9393c-1.4286 1.25-3.5 2.5-5.4076 2.5h-1.3543c-2.4514 0-3.3706-.5607-4.2381-1.25-.4543-.3609-1.0804-.9807-1.55-1.75-.8502-1.3926-1.2002-4-1.2002-5l.0002-.0292v-5.9708c0-.8284.6076-1.5 1.3571-1.5.7496 0 1.1428.6716 1.1428 1.5v3h.894v-5.3103c0-.8284.4647-1.5 1.2142-1.5.7496 0 1.2857.6716 1.2857 1.5v5.3103h.999v-7.5Z",
16812
+ clipRule: "evenodd"
16813
+ }
16814
+ )
16815
+ );
16816
+ }
16817
+ );
16818
+ IconHandRaisedFilled[designSystemBaseIcon.iconSymbol] = true;
16819
+
16701
16820
  const IconHandNew = react.forwardRef(
16702
16821
  (props, forwardRef2) => {
16703
16822
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -17157,7 +17276,38 @@ const IconHexagon = react.forwardRef(
17157
17276
  );
17158
17277
  IconHexagon[designSystemBaseIcon.iconSymbol] = true;
17159
17278
 
17160
- const IconHighlighterUnderlineNew = react.forwardRef(
17279
+ const IconHighlighterColorSelectionNew = react.forwardRef(
17280
+ (props, forwardRef2) => {
17281
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
17282
+ return react.createElement(
17283
+ StyledIcon,
17284
+ {
17285
+ ...props,
17286
+ debug,
17287
+ "aria-hidden": true,
17288
+ viewBox: "0 0 24 24",
17289
+ fill: "none",
17290
+ ref: forwardRef2
17291
+ },
17292
+ /* @__PURE__ */ jsxRuntime.jsx(
17293
+ "path",
17294
+ {
17295
+ fill: "currentColor",
17296
+ d: "m3.8909 17.0704-.6573-.6573.475 1.5688.1823-.9115Zm4.6479.9296-.1823.9115.8396-.2542-.6573-.6573Zm-1.8592-6.507-.646-.6684-.421.4069.1851.5554.8819-.2939Zm9.8204-9.493.6573-.6573-1.3034-.011.6461.6683Zm5.5 5.5.6514.6632.0059-1.3205-.6573.6573Zm-9.7429 9.5704-.294.8819.5396.1799.4058-.3986-.6514-.6632Zm-5.6928-2.6734-.6573-.6573.6573.6573Zm.4491-1.9026-.8818.294.8818-.294Zm-3.3048 5.4875 4.6479.9296.3646-1.823-4.648-.9296-.3645 1.823Zm.8396-.2542 2.6734-2.6734-1.3146-1.3146-2.6734 2.6734 1.3146 1.3146Zm3.3471-5.5272-.3338-1.0015-1.7638.5879.3339 1.0015 1.7637-.5879Zm-.5696-.0392 9.8204-9.493-1.2922-1.3367-9.8204 9.493 1.2922 1.3367Zm8.517-9.504 5.5 5.5 1.3146-1.3146-5.5-5.5-1.3146 1.3146Zm5.5059 4.1795-9.7429 9.5705 1.3028 1.3263 9.7429-9.5704-1.3028-1.3264Zm-8.7976 9.3517-1.0015-.3338-.5879 1.7638 1.0015.3338.5879-1.7638Zm-3.8553.3399-.8143.8143 1.3147 1.3146.8142-.8143-1.3146-1.3146Zm2.8538-.6737a2.7888 2.7888 0 0 0-2.8538.6737l1.3146 1.3146a.9297.9297 0 0 1 .9513-.2245l.5879-1.7638Zm-4.3279-.8004a2.7887 2.7887 0 0 0 .6737-2.8538l-1.7637.5879a.9297.9297 0 0 1-.2246.9513l1.3146 1.3146Z"
17297
+ }
17298
+ ),
17299
+ /* @__PURE__ */ jsxRuntime.jsx(
17300
+ "path",
17301
+ {
17302
+ stroke: "currentColor",
17303
+ strokeWidth: "var(--svg-stroke-width)",
17304
+ d: "m13 6 5 5"
17305
+ }
17306
+ )
17307
+ );
17308
+ }
17309
+ );
17310
+ const IconHighlighterColorSelectionOld = react.forwardRef(
17161
17311
  (props, forwardRef2) => {
17162
17312
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
17163
17313
  return react.createElement(
@@ -17170,29 +17320,88 @@ const IconHighlighterUnderlineNew = react.forwardRef(
17170
17320
  fill: "none",
17171
17321
  ref: forwardRef2
17172
17322
  },
17323
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { width: 18, height: 2, x: 3, y: 20, fill: "currentColor", rx: 0.5 }),
17173
17324
  /* @__PURE__ */ jsxRuntime.jsx(
17174
17325
  "path",
17175
17326
  {
17176
17327
  stroke: "currentColor",
17177
- strokeLinejoin: "bevel",
17328
+ strokeLinecap: "round",
17329
+ strokeLinejoin: "round",
17178
17330
  strokeWidth: "var(--svg-stroke-width)",
17179
- d: "M2.8389 21h18"
17331
+ d: "m18 9.8571 3-2.8571-4.5-4.5-3 3"
17180
17332
  }
17181
17333
  ),
17182
17334
  /* @__PURE__ */ jsxRuntime.jsx(
17183
17335
  "path",
17184
17336
  {
17185
- fill: "currentColor",
17186
- d: "m10 16.5-.7071.7071.5625.5625.6746-.4216-.53-.848Zm4-.5-.3162.9487 1.1011-.3291-.7849-.6196Zm-7-2.5-.9398-.3417-.2176.5985.4503.4503.7071-.7071Zm0-4-.6-.8-.3487 1.1162.9487-.3162Zm8.7129-6.5347-.6-.8.6.8Zm4.7649 4.8295-.7849-.6197.7849.6197Zm-10.4778 8.7052c.53.848.5297.8482.5294.8484l-.0006.0003-.001.0006-.0014.001-.0011.0006.0057-.0034a1.603 1.603 0 0 1 .041-.0234 3.5563 3.5563 0 0 1 .1905-.0977 4.7675 4.7675 0 0 1 .7305-.276c.6198-.1777 1.4012-.2649 2.1908-.0017l.6324-1.8974c-1.2974-.4324-2.516-.2696-3.3745-.0234a6.7583 6.7583 0 0 0-1.0411.3938 5.491 5.491 0 0 0-.3.1542 3.8872 3.8872 0 0 0-.0876.0501l-.0272.0163a3.4367 3.4367 0 0 1-.0094.0057l-.0036.0022-.0015.001a.0038.0038 0 0 0-.0007.0004c-.0003.0002-.0006.0004.5294.8484Zm4.7849.1196 6.4778-8.2052-1.5698-1.2393-6.4778 8.2053 1.5698 1.2392Zm-7.7849-3.1196c.9398.3417.94.3414.94.3411a.0207.0207 0 0 0 .0008-.0022l.0013-.0035a3.8862 3.8862 0 0 0 .0407-.1227 5.9034 5.9034 0 0 0 .0837-.2958 7.7923 7.7923 0 0 0 .1875-1.0174c.0984-.8362.1023-1.9928-.3053-3.2157l-1.8974.6324c.288.8641.292 1.7075.2164 2.3496a5.7923 5.7923 0 0 1-.1385.7543 3.915 3.915 0 0 1-.055.1947 1.7896 1.7896 0 0 1-.0136.042l-.002.006.0003-.001.0005-.0014.0004-.001a.0207.0207 0 0 0 .0002-.0006c.0001-.0002.0002-.0005.94.3412Zm.6-3.2 8.7129-6.5347-1.2-1.6-8.7129 6.5347 1.2 1.6Zm-1.3071 3.9071 3 3 1.4142-1.4142-3-3-1.4142 1.4142Zm14.7477-9.5807-2.1958-2.1958-1.4142 1.4142 2.1958 2.1958 1.4142-1.4142Zm-4.7277-.861a.8551.8551 0 0 1 1.1177.0794l1.4142-1.4142c-1.0047-1.0047-2.5953-1.1178-3.7319-.2653l1.2 1.6Zm4.9498 4.649c.8971-1.1363.8017-2.7642-.2221-3.788l-1.4142 1.4142a.855.855 0 0 1 .0665 1.1345l1.5698 1.2393Z"
17337
+ stroke: "currentColor",
17338
+ strokeLinecap: "round",
17339
+ strokeWidth: "var(--svg-stroke-width)",
17340
+ d: "M11 17h-2l-1 1h-4v-1l1-1 1-1 .5-2.5 2.75-2.75 2.75-2.75 1.5-1.5 4.5 4.3571-7 7.1429Z"
17187
17341
  }
17188
17342
  ),
17343
+ /* @__PURE__ */ jsxRuntime.jsx(
17344
+ "path",
17345
+ {
17346
+ stroke: "currentColor",
17347
+ strokeWidth: "var(--svg-stroke-width)",
17348
+ d: "M12 21v.0001"
17349
+ }
17350
+ )
17351
+ );
17352
+ }
17353
+ );
17354
+ const IconHighlighterColorSelection = react.forwardRef(
17355
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
17356
+ const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
17357
+ return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
17358
+ IconHighlighterColorSelectionNew,
17359
+ {
17360
+ ...props,
17361
+ size,
17362
+ weight,
17363
+ ref: forwardRef2
17364
+ }
17365
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
17366
+ IconHighlighterColorSelectionOld,
17367
+ {
17368
+ ...props,
17369
+ size,
17370
+ weight,
17371
+ ref: forwardRef2
17372
+ }
17373
+ );
17374
+ }
17375
+ );
17376
+ IconHighlighterColorSelection[designSystemBaseIcon.iconSymbol] = true;
17377
+
17378
+ const IconHighlighterUnderlineNew = react.forwardRef(
17379
+ (props, forwardRef2) => {
17380
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
17381
+ return react.createElement(
17382
+ StyledIcon,
17383
+ {
17384
+ ...props,
17385
+ debug,
17386
+ "aria-hidden": true,
17387
+ viewBox: "0 0 24 24",
17388
+ fill: "none",
17389
+ ref: forwardRef2
17390
+ },
17189
17391
  /* @__PURE__ */ jsxRuntime.jsx(
17190
17392
  "path",
17191
17393
  {
17192
17394
  stroke: "currentColor",
17193
17395
  strokeLinejoin: "bevel",
17194
17396
  strokeWidth: "var(--svg-stroke-width)",
17195
- d: "m7 13.5-3 4 4.5.5 1.5-1.5"
17397
+ d: "M2.8389 21h18"
17398
+ }
17399
+ ),
17400
+ /* @__PURE__ */ jsxRuntime.jsx(
17401
+ "path",
17402
+ {
17403
+ fill: "currentColor",
17404
+ d: "m3.8909 17.0704-.6573-.6573.475 1.5688.1823-.9115Zm4.6479.9296-.1823.9115.8396-.2542-.6573-.6573Zm-1.8592-6.507-.646-.6684-.421.4069.1851.5554.8819-.2939Zm9.8204-9.493.6573-.6573-1.3034-.011.6461.6683Zm5.5 5.5.6514.6632.0059-1.3205-.6573.6573Zm-9.7429 9.5704-.294.8819.5396.1799.4058-.3986-.6514-.6632Zm-5.6928-2.6734-.6573-.6573.6573.6573Zm.4491-1.9026-.8818.294.8818-.294Zm-3.3048 5.4875 4.6479.9296.3646-1.823-4.648-.9296-.3645 1.823Zm.8396-.2542 2.6734-2.6734-1.3146-1.3146-2.6734 2.6734 1.3146 1.3146Zm3.3471-5.5272-.3338-1.0015-1.7638.5879.3339 1.0015 1.7637-.5879Zm-.5696-.0392 9.8204-9.493-1.2922-1.3367-9.8204 9.493 1.2922 1.3367Zm8.517-9.504 5.5 5.5 1.3146-1.3146-5.5-5.5-1.3146 1.3146Zm5.5059 4.1795-9.7429 9.5705 1.3028 1.3263 9.7429-9.5704-1.3028-1.3264Zm-8.7976 9.3517-1.0015-.3338-.5879 1.7638 1.0015.3338.5879-1.7638Zm-3.8553.3399-.8143.8143 1.3147 1.3146.8142-.8143-1.3146-1.3146Zm2.8538-.6737a2.7888 2.7888 0 0 0-2.8538.6737l1.3146 1.3146a.9297.9297 0 0 1 .9513-.2245l.5879-1.7638Zm-4.3279-.8004a2.7887 2.7887 0 0 0 .6737-2.8538l-1.7637.5879a.9297.9297 0 0 1-.2246.9513l1.3146 1.3146Z"
17196
17405
  }
17197
17406
  ),
17198
17407
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -17200,7 +17409,7 @@ const IconHighlighterUnderlineNew = react.forwardRef(
17200
17409
  {
17201
17410
  stroke: "currentColor",
17202
17411
  strokeWidth: "var(--svg-stroke-width)",
17203
- d: "m9.5 7.5 6 6"
17412
+ d: "m13 6 5 5"
17204
17413
  }
17205
17414
  )
17206
17415
  );
@@ -18489,7 +18698,7 @@ const IconLightningNew = react.forwardRef(
18489
18698
  stroke: "currentColor",
18490
18699
  strokeLinejoin: "bevel",
18491
18700
  strokeWidth: "var(--svg-stroke-width)",
18492
- d: "m4.5345 9.8114 7.5837-7.1098c.7572-.7098 1.9609.0612 1.6327 1.0458l-1.7509 5.2526h5.0657c2.7639 0 4.0574 3.4208 1.9849 5.2495l-8.2659 7.2934c-.7662.6761-1.9334-.0967-1.6103-1.066l1.8256-5.4769h-4.4137c-2.7196 0-4.0358-3.3286-2.0518-5.1886Z"
18701
+ d: "m4 15 8-14v8h8l-8.5 14v-8h-7.5Z"
18493
18702
  }
18494
18703
  )
18495
18704
  );
@@ -23699,6 +23908,95 @@ const IconPdf = react.forwardRef(
23699
23908
  );
23700
23909
  IconPdf[designSystemBaseIcon.iconSymbol] = true;
23701
23910
 
23911
+ const IconPenColorSelectionNew = react.forwardRef(
23912
+ (props, forwardRef2) => {
23913
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
23914
+ return react.createElement(
23915
+ StyledIcon,
23916
+ {
23917
+ ...props,
23918
+ debug,
23919
+ "aria-hidden": true,
23920
+ viewBox: "0 0 24 24",
23921
+ fill: "none",
23922
+ ref: forwardRef2
23923
+ },
23924
+ /* @__PURE__ */ jsxRuntime.jsx(
23925
+ "path",
23926
+ {
23927
+ fill: "currentColor",
23928
+ d: "m5 13-.7071-.7071-.2141.2141-.0594.2969.9806.1961Zm-1 5-.9806-.1961 1.1767 1.1767-.1961-.9806Zm5-1 .1961.9806.297-.0594.214-.2141-.7071-.7071Zm9.5858-12.4142-.7071.707.7071-.707Zm-1.1716-1.1716-.7071.7071.7071-.707Zm-3.5355-.707-9.5858 9.5857 1.4142 1.4142 9.5858-9.5858-1.4142-1.4142Zm-9.8593 10.0967-1 5 1.9612.3922 1-5-1.9612-.3922Zm.1767 6.1767 5-1-.3922-1.9612-5 1 .3922 1.9612Zm5.511-1.2735 9.5858-9.5858-1.4142-1.4142-9.5858 9.5858 1.4142 1.4142Zm9.5858-13.8284-1.1716-1.1716-1.4142 1.4142 1.1716 1.1716 1.4142-1.4142Zm0 4.2426c1.1716-1.1715 1.1716-3.071 0-4.2426l-1.4142 1.4142c.3905.3905.3905 1.0237 0 1.4142l1.4142 1.4142Zm-4-4c.3905-.3905 1.0237-.3905 1.4142 0l1.4142-1.4142c-1.1716-1.1716-3.071-1.1716-4.2426 0l1.4142 1.4142Z"
23929
+ }
23930
+ ),
23931
+ /* @__PURE__ */ jsxRuntime.jsx(
23932
+ "path",
23933
+ {
23934
+ stroke: "currentColor",
23935
+ strokeWidth: "var(--svg-stroke-width)",
23936
+ d: "m12.5 5.5 4 4"
23937
+ }
23938
+ )
23939
+ );
23940
+ }
23941
+ );
23942
+ const IconPenColorSelectionOld = react.forwardRef(
23943
+ (props, forwardRef2) => {
23944
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
23945
+ return react.createElement(
23946
+ StyledIcon,
23947
+ {
23948
+ ...props,
23949
+ debug,
23950
+ "aria-hidden": true,
23951
+ viewBox: "0 0 24 24",
23952
+ fill: "none",
23953
+ ref: forwardRef2
23954
+ },
23955
+ /* @__PURE__ */ jsxRuntime.jsx(
23956
+ "path",
23957
+ {
23958
+ stroke: "currentColor",
23959
+ strokeLinecap: "round",
23960
+ strokeLinejoin: "round",
23961
+ strokeWidth: "var(--svg-stroke-width)",
23962
+ d: "m13.8889 5.5556-7.5718 7.5718a2.0001 2.0001 0 0 0-.547 1.0219l-.6966 3.483c-.035.1749.1193.3291.2942.2942l3.483-.6966a2.0005 2.0005 0 0 0 1.022-.547l7.5717-7.5718m-3.5555-3.5555 2.1413-2.1414c.7811-.781 2.0474-.781 2.8285 0l.7271.7271c.781.781.781 2.0474 0 2.8285l-2.1414 2.1413m-3.5555-3.5555 3.5555 3.5555"
23963
+ }
23964
+ ),
23965
+ /* @__PURE__ */ jsxRuntime.jsx(
23966
+ "path",
23967
+ {
23968
+ stroke: "currentColor",
23969
+ strokeWidth: "var(--svg-stroke-width)",
23970
+ d: "M12 15v.0001"
23971
+ }
23972
+ )
23973
+ );
23974
+ }
23975
+ );
23976
+ const IconPenColorSelection = react.forwardRef(
23977
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
23978
+ const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
23979
+ return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
23980
+ IconPenColorSelectionNew,
23981
+ {
23982
+ ...props,
23983
+ size,
23984
+ weight,
23985
+ ref: forwardRef2
23986
+ }
23987
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
23988
+ IconPenColorSelectionOld,
23989
+ {
23990
+ ...props,
23991
+ size,
23992
+ weight,
23993
+ ref: forwardRef2
23994
+ }
23995
+ );
23996
+ }
23997
+ );
23998
+ IconPenColorSelection[designSystemBaseIcon.iconSymbol] = true;
23999
+
23702
24000
  const IconPenTipNew = react.forwardRef(
23703
24001
  (props, forwardRef2) => {
23704
24002
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -27469,11 +27767,11 @@ const IconRectanglePortraitDashSquareTopCenterNew = react.forwardRef((props, for
27469
27767
  {
27470
27768
  fill: "currentColor",
27471
27769
  fillRule: "evenodd",
27472
- d: "M6 5c-.5523 0-1 .4477-1 1v2h-2v-2c0-1.6569 1.3431-3 3-3h2v2h-2Zm8 0h-4v-2h4v2Zm4 0h-2v-2h2c1.6569 0 3 1.3431 3 3v2h-2v-2c0-.5523-.4477-1-1-1Zm-13 5v4h-2v-4h2Zm14 4v-4h2v4h-2Zm-14 2v2c0 .5523.4477 1 1 1h2v2h-2c-1.6569 0-3-1.3431-3-3v-2h2Zm14 2v-2h2v2c0 1.6569-1.3431 3-3 3h-2v-2h2c.5523 0 1-.4477 1-1Zm-9 1h4v2h-4v-2Z",
27770
+ d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
27473
27771
  clipRule: "evenodd"
27474
27772
  }
27475
27773
  ),
27476
- /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M8 3h8v7h-8v-7Z" })
27774
+ /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M8 2h8v8h-8v-8Z" })
27477
27775
  );
27478
27776
  });
27479
27777
  const IconRectanglePortraitDashSquareTopCenterOld = react.forwardRef((props, forwardRef2) => {
@@ -27538,7 +27836,7 @@ const IconRectanglePortraitDashSquareTopLeftNew = react.forwardRef((props, forwa
27538
27836
  {
27539
27837
  fill: "currentColor",
27540
27838
  fillRule: "evenodd",
27541
- d: "M6 5c-.5523 0-1 .4477-1 1v2h-2v-2c0-1.6569 1.3431-3 3-3h2v2h-2Zm8 0h-4v-2h4v2Zm4 0h-2v-2h2c1.6569 0 3 1.3431 3 3v2h-2v-2c0-.5523-.4477-1-1-1Zm-13 5v4h-2v-4h2Zm14 4v-4h2v4h-2Zm-14 2v2c0 .5523.4477 1 1 1h2v2h-2c-1.6569 0-3-1.3431-3-3v-2h2Zm14 2v-2h2v2c0 1.6569-1.3431 3-3 3h-2v-2h2c.5523 0 1-.4477 1-1Zm-9 1h4v2h-4v-2Z",
27839
+ d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
27542
27840
  clipRule: "evenodd"
27543
27841
  }
27544
27842
  ),
@@ -27548,7 +27846,7 @@ const IconRectanglePortraitDashSquareTopLeftNew = react.forwardRef((props, forwa
27548
27846
  fill: "currentColor",
27549
27847
  stroke: "currentColor",
27550
27848
  strokeWidth: "var(--svg-stroke-width)",
27551
- d: "M4 7c0-1.6569 1.3431-3 3-3h4v6h-7v-3Z"
27849
+ d: "M3 6c0-1.6569 1.3431-3 3-3h5v7h-8v-4Z"
27552
27850
  }
27553
27851
  )
27554
27852
  );
@@ -27616,7 +27914,7 @@ const IconRectanglePortraitDashNew = react.forwardRef(
27616
27914
  {
27617
27915
  fill: "currentColor",
27618
27916
  fillRule: "evenodd",
27619
- d: "M6 5c-.5523 0-1 .4477-1 1v2h-2v-2c0-1.6569 1.3431-3 3-3h2v2h-2Zm8 0h-4v-2h4v2Zm4 0h-2v-2h2c1.6569 0 3 1.3431 3 3v2h-2v-2c0-.5523-.4477-1-1-1Zm-13 5v4h-2v-4h2Zm14 4v-4h2v4h-2Zm-14 2v2c0 .5523.4477 1 1 1h2v2h-2c-1.6569 0-3-1.3431-3-3v-2h2Zm14 2v-2h2v2c0 1.6569-1.3431 3-3 3h-2v-2h2c.5523 0 1-.4477 1-1Zm-9 1h4v2h-4v-2Z",
27917
+ d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
27620
27918
  clipRule: "evenodd"
27621
27919
  }
27622
27920
  )
@@ -27733,10 +28031,10 @@ const IconRectanglePortraitSquareTopLeftNew = react.forwardRef((props, forwardRe
27733
28031
  /* @__PURE__ */ jsxRuntime.jsx(
27734
28032
  "rect",
27735
28033
  {
27736
- width: 16,
27737
- height: 16,
27738
- x: 4,
27739
- y: 4,
28034
+ width: 18,
28035
+ height: 18,
28036
+ x: 3,
28037
+ y: 3,
27740
28038
  stroke: "currentColor",
27741
28039
  strokeWidth: "var(--svg-stroke-width)",
27742
28040
  rx: 2
@@ -27748,7 +28046,7 @@ const IconRectanglePortraitSquareTopLeftNew = react.forwardRef((props, forwardRe
27748
28046
  fill: "currentColor",
27749
28047
  stroke: "currentColor",
27750
28048
  strokeWidth: "var(--svg-stroke-width)",
27751
- d: "M4 7c0-1.6569 1.3431-3 3-3h4v6h-7v-3Z"
28049
+ d: "M3 6c0-1.6569 1.3431-3 3-3h5v7h-8v-4Z"
27752
28050
  }
27753
28051
  )
27754
28052
  );
@@ -29346,7 +29644,7 @@ const IconSentimentNew = react.forwardRef(
29346
29644
  fill: "currentColor",
29347
29645
  stroke: "currentColor",
29348
29646
  strokeWidth: "var(--svg-stroke-width)",
29349
- d: "M10.3333 6.8333h.8334v.8334h-.8334v-.8334ZM16.3333 12.8333h.8334v.8334h-.8334v-.8334Z"
29647
+ d: "M10.3333 6.3333h1.3334v1.3334h-1.3334v-1.3334ZM16.3333 12.3333h1.3334v1.3334h-1.3334v-1.3334Z"
29350
29648
  }
29351
29649
  ),
29352
29650
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -29365,7 +29663,7 @@ const IconSentimentNew = react.forwardRef(
29365
29663
  fill: "currentColor",
29366
29664
  stroke: "currentColor",
29367
29665
  strokeWidth: "var(--svg-stroke-width)",
29368
- d: "M6.8333 6.8333h.8334v.8334h-.8334v-.8334Z"
29666
+ d: "M6.3333 6.3333h1.3334v1.3334h-1.3334v-1.3334Z"
29369
29667
  }
29370
29668
  ),
29371
29669
  /* @__PURE__ */ jsxRuntime.jsx(
@@ -32895,7 +33193,7 @@ const IconSquareLineSquareDashedNew = react.forwardRef(
32895
33193
  {
32896
33194
  fill: "currentColor",
32897
33195
  fillRule: "evenodd",
32898
- d: "M6 5c-.5523 0-1 .4477-1 1v2h-2v-2c0-1.6569 1.3431-3 3-3h2v2h-2Zm8 0h-4v-2h4v2Zm4 0h-2v-2h2c1.6569 0 3 1.3431 3 3v2h-2v-2c0-.5523-.4477-1-1-1Zm-13 5v4h-2v-4h2Zm14 4v-4h2v4h-2Zm-14 2v2c0 .5523.4477 1 1 1h2v2h-2c-1.6569 0-3-1.3431-3-3v-2h2Zm14 2v-2h2v2c0 1.6569-1.3431 3-3 3h-2v-2h2c.5523 0 1-.4477 1-1Zm-9 1h4v2h-4v-2Z",
33196
+ d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
32899
33197
  clipRule: "evenodd"
32900
33198
  }
32901
33199
  ),
@@ -32904,7 +33202,7 @@ const IconSquareLineSquareDashedNew = react.forwardRef(
32904
33202
  {
32905
33203
  stroke: "currentColor",
32906
33204
  strokeWidth: "var(--svg-stroke-width)",
32907
- d: "M4 6c0-1.1046.8954-2 2-2h7v9h-9v-7Z"
33205
+ d: "M3 5c0-1.1046.8954-2 2-2h8v10h-10v-8Z"
32908
33206
  }
32909
33207
  )
32910
33208
  );
@@ -35740,6 +36038,133 @@ const IconTasks = react.forwardRef(
35740
36038
  );
35741
36039
  IconTasks[designSystemBaseIcon.iconSymbol] = true;
35742
36040
 
36041
+ const IconTextAColorSelectionNew = react.forwardRef(
36042
+ (props, forwardRef2) => {
36043
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
36044
+ return react.createElement(
36045
+ StyledIcon,
36046
+ {
36047
+ ...props,
36048
+ debug,
36049
+ "aria-hidden": true,
36050
+ viewBox: "0 0 24 24",
36051
+ fill: "none",
36052
+ ref: forwardRef2
36053
+ },
36054
+ /* @__PURE__ */ jsxRuntime.jsx(
36055
+ "path",
36056
+ {
36057
+ fill: "currentColor",
36058
+ d: "m6.077 15.6154-.3847.9231 1.8462.7692.3846-.9231-1.8462-.7692Zm5.923-11.6154.9231-.3846h-1.8462l.9231.3846Zm4.0769 12.3846.3846.9231 1.8462-.7692-.3846-.9231-1.8462.7692Zm-5-12 3.75 9 1.8462-.7692-3.75-9-1.8462.7692Zm3.75 9 1.25 3 1.8462-.7692-1.25-3-1.8462.7692Zm-6.9038 3 1.25-3-1.8462-.7692-1.25 3 1.8462.7692Zm1.25-3 3.75-9-1.8462-.7692-3.75 9 1.8462.7692Zm6.5769-1.3846h-7.5v2h7.5v-2Z"
36059
+ }
36060
+ )
36061
+ );
36062
+ }
36063
+ );
36064
+ const IconTextAColorSelectionOld = react.forwardRef(
36065
+ (props, forwardRef2) => {
36066
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
36067
+ return react.createElement(
36068
+ StyledIcon,
36069
+ {
36070
+ ...props,
36071
+ debug,
36072
+ "aria-hidden": true,
36073
+ viewBox: "0 0 24 24",
36074
+ fill: "none",
36075
+ ref: forwardRef2
36076
+ },
36077
+ /* @__PURE__ */ jsxRuntime.jsx(
36078
+ "path",
36079
+ {
36080
+ stroke: "currentColor",
36081
+ strokeLinecap: "round",
36082
+ strokeLinejoin: "round",
36083
+ strokeWidth: "var(--svg-stroke-width)",
36084
+ d: "m7 16 1.25-3m8.75 3-1.25-3m0 0-3.75-9-3.75 9m7.5 0h-7.5"
36085
+ }
36086
+ ),
36087
+ /* @__PURE__ */ jsxRuntime.jsx(
36088
+ "path",
36089
+ {
36090
+ stroke: "currentColor",
36091
+ strokeWidth: "var(--svg-stroke-width)",
36092
+ d: "M12 13v.0001"
36093
+ }
36094
+ )
36095
+ );
36096
+ }
36097
+ );
36098
+ const IconTextAColorSelection = react.forwardRef(
36099
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
36100
+ const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
36101
+ return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
36102
+ IconTextAColorSelectionNew,
36103
+ {
36104
+ ...props,
36105
+ size,
36106
+ weight,
36107
+ ref: forwardRef2
36108
+ }
36109
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
36110
+ IconTextAColorSelectionOld,
36111
+ {
36112
+ ...props,
36113
+ size,
36114
+ weight,
36115
+ ref: forwardRef2
36116
+ }
36117
+ );
36118
+ }
36119
+ );
36120
+ IconTextAColorSelection[designSystemBaseIcon.iconSymbol] = true;
36121
+
36122
+ const IconTextAHorizontal = react.forwardRef(
36123
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
36124
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
36125
+ return react.createElement(
36126
+ StyledIcon,
36127
+ {
36128
+ ...props,
36129
+ weight,
36130
+ debug,
36131
+ "aria-hidden": true,
36132
+ size,
36133
+ viewBox: "0 0 24 24",
36134
+ fill: "none",
36135
+ ref: forwardRef2
36136
+ },
36137
+ /* @__PURE__ */ jsxRuntime.jsx(
36138
+ "path",
36139
+ {
36140
+ fill: "currentColor",
36141
+ d: "m7.0715 11.6286-.3714.9285 1.857.7428.3714-.9285-1.857-.7428Zm4.9285-9.6286.9285-.3714h-1.857l.9285.3714Zm3.0715 10.3714.3714.9285 1.857-.7428-.3714-.9285-1.857.7428Zm-4-10 3 7.5 1.857-.7428-3-7.5-1.857.7428Zm3 7.5 1 2.5 1.857-.7428-1-2.5-1.857.7428Zm-5.143 2.5 1-2.5-1.857-.7428-1 2.5 1.857.7428Zm1-2.5 3-7.5-1.857-.7428-3 7.5 1.857.7428Zm5.0715-1.3714h-6v2h6v-2Z"
36142
+ }
36143
+ ),
36144
+ /* @__PURE__ */ jsxRuntime.jsx(
36145
+ "path",
36146
+ {
36147
+ stroke: "currentColor",
36148
+ strokeLinecap: "square",
36149
+ strokeWidth: "var(--svg-stroke-width)",
36150
+ d: "M4 18h17"
36151
+ }
36152
+ ),
36153
+ /* @__PURE__ */ jsxRuntime.jsx(
36154
+ "path",
36155
+ {
36156
+ stroke: "currentColor",
36157
+ strokeLinecap: "square",
36158
+ strokeLinejoin: "bevel",
36159
+ strokeWidth: "var(--svg-stroke-width)",
36160
+ d: "m19 21 2.5-3-2.5-3"
36161
+ }
36162
+ )
36163
+ );
36164
+ }
36165
+ );
36166
+ IconTextAHorizontal[designSystemBaseIcon.iconSymbol] = true;
36167
+
35743
36168
  const IconTextAUnderlineNew = react.forwardRef(
35744
36169
  (props, forwardRef2) => {
35745
36170
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -35830,6 +36255,52 @@ const IconTextAUnderline = react.forwardRef(
35830
36255
  );
35831
36256
  IconTextAUnderline[designSystemBaseIcon.iconSymbol] = true;
35832
36257
 
36258
+ const IconTextAVertical = react.forwardRef(
36259
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
36260
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
36261
+ return react.createElement(
36262
+ StyledIcon,
36263
+ {
36264
+ ...props,
36265
+ weight,
36266
+ debug,
36267
+ "aria-hidden": true,
36268
+ size,
36269
+ viewBox: "0 0 24 24",
36270
+ fill: "none",
36271
+ ref: forwardRef2
36272
+ },
36273
+ /* @__PURE__ */ jsxRuntime.jsx(
36274
+ "path",
36275
+ {
36276
+ fill: "currentColor",
36277
+ d: "m11.6286 18.9285.9285.3714.7428-1.857-.9285-.3714-.7428 1.857Zm-9.6286-4.9285-.3714-.9285v1.857l.3714-.9285Zm10.3714-3.0715.9285-.3714-.7428-1.857-.9285.3714.7428 1.857Zm-10 4 7.5-3-.7428-1.857-7.5 3 .7428 1.857Zm7.5-3 2.5-1-.7428-1.857-2.5 1 .7428 1.857Zm2.5 5.143-2.5-1-.7428 1.857 2.5 1 .7428-1.857Zm-2.5-1-7.5-3-.7428 1.857 7.5 3 .7428-1.857Zm-1.3714-5.0715v6h2v-6h-2Z"
36278
+ }
36279
+ ),
36280
+ /* @__PURE__ */ jsxRuntime.jsx(
36281
+ "path",
36282
+ {
36283
+ stroke: "currentColor",
36284
+ strokeLinecap: "square",
36285
+ strokeWidth: "var(--svg-stroke-width)",
36286
+ d: "M18 20v-16"
36287
+ }
36288
+ ),
36289
+ /* @__PURE__ */ jsxRuntime.jsx(
36290
+ "path",
36291
+ {
36292
+ stroke: "currentColor",
36293
+ strokeLinecap: "square",
36294
+ strokeLinejoin: "bevel",
36295
+ strokeWidth: "var(--svg-stroke-width)",
36296
+ d: "m21 6-3-2.5-3 2.5"
36297
+ }
36298
+ )
36299
+ );
36300
+ }
36301
+ );
36302
+ IconTextAVertical[designSystemBaseIcon.iconSymbol] = true;
36303
+
35833
36304
  const IconTextAaNew = react.forwardRef(
35834
36305
  (props, forwardRef2) => {
35835
36306
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -40917,6 +41388,7 @@ exports.IconAlignRight = IconAlignRight;
40917
41388
  exports.IconAlignTop = IconAlignTop;
40918
41389
  exports.IconAlignTopGroup = IconAlignTopGroup;
40919
41390
  exports.IconAlignmentScale = IconAlignmentScale;
41391
+ exports.IconAltText = IconAltText;
40920
41392
  exports.IconArrowArcLeft = IconArrowArcLeft;
40921
41393
  exports.IconArrowArcRight = IconArrowArcRight;
40922
41394
  exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
@@ -40936,6 +41408,7 @@ exports.IconArrowFatLeftRight = IconArrowFatLeftRight;
40936
41408
  exports.IconArrowFatRight = IconArrowFatRight;
40937
41409
  exports.IconArrowFatUpRight = IconArrowFatUpRight;
40938
41410
  exports.IconArrowLeft = IconArrowLeft;
41411
+ exports.IconArrowLeftRightDotted = IconArrowLeftRightDotted;
40939
41412
  exports.IconArrowRight = IconArrowRight;
40940
41413
  exports.IconArrowUp = IconArrowUp;
40941
41414
  exports.IconArrowUpCircle = IconArrowUpCircle;
@@ -41114,12 +41587,14 @@ exports.IconGridSix = IconGridSix;
41114
41587
  exports.IconHand = IconHand;
41115
41588
  exports.IconHandFilled = IconHandFilled;
41116
41589
  exports.IconHandPointing = IconHandPointing;
41590
+ exports.IconHandRaisedFilled = IconHandRaisedFilled;
41117
41591
  exports.IconHeadphones = IconHeadphones;
41118
41592
  exports.IconHeadsetPerson = IconHeadsetPerson;
41119
41593
  exports.IconHeart = IconHeart;
41120
41594
  exports.IconHeartFilled = IconHeartFilled;
41121
41595
  exports.IconHexagon = IconHexagon;
41122
41596
  exports.IconHighlighter = IconHighlighter;
41597
+ exports.IconHighlighterColorSelection = IconHighlighterColorSelection;
41123
41598
  exports.IconHighlighterUnderline = IconHighlighterUnderline;
41124
41599
  exports.IconHouse = IconHouse;
41125
41600
  exports.IconImage = IconImage;
@@ -41205,6 +41680,7 @@ exports.IconPause = IconPause;
41205
41680
  exports.IconPauseCircle = IconPauseCircle;
41206
41681
  exports.IconPdf = IconPdf;
41207
41682
  exports.IconPen = IconPen;
41683
+ exports.IconPenColorSelection = IconPenColorSelection;
41208
41684
  exports.IconPenTip = IconPenTip;
41209
41685
  exports.IconPenUnderline = IconPenUnderline;
41210
41686
  exports.IconPentagon = IconPentagon;
@@ -41365,7 +41841,10 @@ exports.IconTableFormat = IconTableFormat;
41365
41841
  exports.IconTablet = IconTablet;
41366
41842
  exports.IconTag = IconTag;
41367
41843
  exports.IconTasks = IconTasks;
41844
+ exports.IconTextAColorSelection = IconTextAColorSelection;
41845
+ exports.IconTextAHorizontal = IconTextAHorizontal;
41368
41846
  exports.IconTextAUnderline = IconTextAUnderline;
41847
+ exports.IconTextAVertical = IconTextAVertical;
41369
41848
  exports.IconTextAa = IconTextAa;
41370
41849
  exports.IconTextAlignCenter = IconTextAlignCenter;
41371
41850
  exports.IconTextAlignLeft = IconTextAlignLeft;