@mirohq/design-system-icons 0.68.0 → 0.70.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.
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 12 .7593.6508v-1.3016l-.7593.6508Zm-.7593-.6508-3 3.5 1.5186 1.3016 3-3.5-1.5186-1.3016Zm1.5186 0-3-3.5-1.5186 1.3016 3 3.5 1.5186-1.3016Zm-6.2593 1.6508h2.5v-2h-2.5v2Zm2.5 0h3v-2h-3v2Z"
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-3.5 3-3.5"
2585
+ }
2586
+ ),
2587
+ /* @__PURE__ */ jsxRuntime.jsx(
2588
+ "path",
2589
+ {
2590
+ stroke: "currentColor",
2591
+ strokeWidth: "var(--svg-stroke-width)",
2592
+ d: "M11.5 12h-5"
2593
+ }
2594
+ ),
2595
+ /* @__PURE__ */ jsxRuntime.jsx(
2596
+ "path",
2597
+ {
2598
+ fill: "currentColor",
2599
+ fillRule: "evenodd",
2600
+ d: "M5.3333 4.2222c-.6136 0-1.111.4975-1.111 1.1111v2.2223h-2.2223v-2.2223c0-1.841 1.4924-3.3333 3.3333-3.3333h2.2223v2.2222h-2.2223Zm8.8889 0h-4.4444v-2.2222h4.4444v2.2222Zm4.4445 0h-2.2223v-2.2222h2.2223c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.2223h-2.2222v-2.2223c0-.6136-.4975-1.111-1.1111-1.111Zm-14.4445 5.5556v4.4444h-2.2222v-4.4444h2.2222Zm15.5556 4.4444v-4.4444h2.2222v4.4444h-2.2222Zm-15.5556 2.2222v2.2223c0 .6136.4975 1.1111 1.1111 1.1111h2.2223v2.2222h-2.2223c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.2223h2.2222Zm15.5556 2.2223v-2.2223h2.2222v2.2223c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.2223v-2.2222h2.2223c.6136 0 1.1111-.4975 1.1111-1.1111Zm-10 1.1111h4.4444v2.2222h-4.4444v-2.2222Z",
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);
@@ -3437,6 +3527,51 @@ const IconArrowsDownUp = react.forwardRef(
3437
3527
  );
3438
3528
  IconArrowsDownUp[designSystemBaseIcon.iconSymbol] = true;
3439
3529
 
3530
+ const IconArrowsHorizontalLinesTopBottomIn = react.forwardRef(({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
3531
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3532
+ return react.createElement(
3533
+ StyledIcon,
3534
+ {
3535
+ ...props,
3536
+ weight,
3537
+ debug,
3538
+ "aria-hidden": true,
3539
+ size,
3540
+ viewBox: "0 0 24 24",
3541
+ fill: "none",
3542
+ ref: forwardRef2
3543
+ },
3544
+ /* @__PURE__ */ jsxRuntime.jsx(
3545
+ "path",
3546
+ {
3547
+ stroke: "currentColor",
3548
+ strokeLinejoin: "round",
3549
+ strokeWidth: "var(--svg-stroke-width)",
3550
+ d: "M4 3h8m8 0h-8m0 0v5m-8 13h8m8 0h-8m0 0v-5M2 12h8"
3551
+ }
3552
+ ),
3553
+ /* @__PURE__ */ jsxRuntime.jsx(
3554
+ "path",
3555
+ {
3556
+ stroke: "currentColor",
3557
+ strokeLinejoin: "bevel",
3558
+ strokeWidth: "var(--svg-stroke-width)",
3559
+ d: "m6 8 4 4-4 4M18 8l-4 4 4 4"
3560
+ }
3561
+ ),
3562
+ /* @__PURE__ */ jsxRuntime.jsx(
3563
+ "path",
3564
+ {
3565
+ stroke: "currentColor",
3566
+ strokeLinejoin: "round",
3567
+ strokeWidth: "var(--svg-stroke-width)",
3568
+ d: "M22 12h-8"
3569
+ }
3570
+ )
3571
+ );
3572
+ });
3573
+ IconArrowsHorizontalLinesTopBottomIn[designSystemBaseIcon.iconSymbol] = true;
3574
+
3440
3575
  const IconArrowsHorizontalLinesTopBottomNew = react.forwardRef((props, forwardRef2) => {
3441
3576
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3442
3577
  return react.createElement(
@@ -5844,6 +5979,78 @@ const IconCamera = react.forwardRef(
5844
5979
  );
5845
5980
  IconCamera[designSystemBaseIcon.iconSymbol] = true;
5846
5981
 
5982
+ const IconCaptionAlong = react.forwardRef(
5983
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5984
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
5985
+ return react.createElement(
5986
+ StyledIcon,
5987
+ {
5988
+ ...props,
5989
+ weight,
5990
+ debug,
5991
+ "aria-hidden": true,
5992
+ size,
5993
+ viewBox: "0 0 24 24",
5994
+ fill: "none",
5995
+ ref: forwardRef2
5996
+ },
5997
+ /* @__PURE__ */ jsxRuntime.jsx(
5998
+ "path",
5999
+ {
6000
+ fill: "currentColor",
6001
+ fillRule: "evenodd",
6002
+ d: "m9.4 14.2218-1.2258-.5218-1.2547 1.4952.7268 1.1166-.7863.9369-2.9036-4.9031.8922-1.0633 5.3376 2.0025-.7862.937Zm-2.1294-.9263c-1.1153-.4673-1.7455-.7324-1.8904-.7951-.145-.0627-.2575-.1148-.3374-.1563.1877.2626.6313.936 1.331 2.0203l.8968-1.0689Zm-.7527-3.9684 1.071-1.2764c.4881-.5817.9251-.9344 1.3111-1.0583.386-.1239.7595-.0344 1.1205.2685.245.2056.3978.4318.4583.6786.0606.2469.0268.479-.1015.6964l.0281.0236c.2761-.2113.5419-.3078.7973-.2894.2555.0183.5151.1382.7788.3594.3741.3139.5524.6938.5351 1.1399-.0173.446-.2205.9009-.6097 1.3647l-1.2876 1.5345-4.1014-3.4415Zm2.354.4933.4237-.505c.1978-.2356.3045-.4369.3202-.6037.0157-.1669-.0606-.321-.2289-.4622-.157-.1318-.318-.1689-.4828-.1111-.1648.0577-.3515.211-.5602.4597l-.3837.4573.9117.765Zm.6901.5791 1.0689.8968.4755-.5666c.2008-.2394.3033-.4546.3074-.6456.0041-.191-.0883-.3657-.2772-.5242-.3404-.2856-.7146-.1853-1.1226.301l-.452.5386Zm2.3216-6.1167c-.2746.3272-.3643.6838-.269 1.0697.0953.386.3627.7633.8022 1.132.9145.7675 1.6597.808 2.2357.1216.2417-.288.4623-.6972.662-1.2276l.7294.612c-.1422.4543-.3875.889-.7359 1.3043-.5006.5966-1.0645.901-1.6916.9135-.6271.0124-1.2791-.2654-1.9562-.8335-.4264-.3578-.7348-.749-.9253-1.1733s-.2493-.8537-.1764-1.2881c.0729-.4345.2733-.847.6013-1.238.3343-.3983.7664-.7177 1.2965-.9582l.4715.8737a6.0654 6.0654 0 0 0-.5791.3028c-.1845.1098-.3395.2394-.4651.389Z",
6003
+ clipRule: "evenodd"
6004
+ }
6005
+ ),
6006
+ /* @__PURE__ */ jsxRuntime.jsx(
6007
+ "path",
6008
+ {
6009
+ fill: "currentColor",
6010
+ d: "M2.2498 20.3971a.45.45 0 0 1 0-.9c.3868 0 .5502-.0002.7483-.0009a.45.45 0 0 1 .0032.9 196.162 196.162 0 0 1-.7515.0009Zm2.2724-.0323a.45.45 0 0 1-.045-.8989 11.541 11.541 0 0 0 .7193-.0563.45.45 0 1 1 .1014.8942c-.2374.027-.4926.0468-.7757.061Zm2.3542-.4318a.45.45 0 1 1-.331-.837c.2074-.082.407-.1809.6056-.3002a.45.45 0 0 1 .4637.7713 4.9778 4.9778 0 0 1-.7383.3659Zm2.0242-1.3812a.45.45 0 0 1-.6248-.6478c.1609-.1552.3289-.3272.5067-.5188a.45.45 0 1 1 .6597.6122 14.0808 14.0808 0 0 1-.5416.5544Zm1.5235-1.6828a.45.45 0 0 1-.6928-.5744 53.974 53.974 0 0 0 .4704-.5761.4499.4499 0 1 1 .7007.5647c-.1694.2103-.328.4046-.4783.5858Zm1.4184-1.7723a.45.45 0 1 1-.7086-.5547c.1412-.1804.2922-.374.4605-.5903a.45.45 0 1 1 .7103.5526 235.91 235.91 0 0 1-.4622.5924Zm1.3851-1.7814a.45.45 0 0 1-.7112-.5515c.2347-.3027.3291-.4244.4601-.593a.45.45 0 0 1 .7108.552c-.1308.1684-.2251.29-.4597.5925Zm1.3809-1.7728a.45.45 0 1 1-.7074-.5563c.167-.2124.3215-.4076.4673-.5903a.45.45 0 1 1 .7035.5613c-.1443.1809-.2976.3746-.4634.5853Zm1.4055-1.7372a.45.45 0 1 1-.687-.5813c.1762-.2082.3421-.3993.5003-.5759a.45.45 0 1 1 .6704.6005c-.1523.17-.3127.3547-.4837.5567Zm1.5023-1.5872a.45.45 0 0 1-.5958-.6746c.2127-.1878.42-.3526.6264-.4976a.45.45 0 0 1 .5173.7364c-.1781.1251-.3594.2693-.5479.4358Zm1.7919-1.0424a.45.45 0 0 1-.2542-.8634c.2476-.0729.5082-.1301.7898-.1743a.45.45 0 1 1 .1395.8891c-.2442.0384-.4666.0872-.6751.1486Zm2.0967-.2626a.45.45 0 1 1-.027-.8995c.2267-.0069.4735-.0111.7596-.0136a.45.45 0 0 1 .0077.9 34.516 34.516 0 0 0-.7403.0131Z"
6011
+ }
6012
+ )
6013
+ );
6014
+ }
6015
+ );
6016
+ IconCaptionAlong[designSystemBaseIcon.iconSymbol] = true;
6017
+
6018
+ const IconCaptionHorizontal = react.forwardRef(
6019
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
6020
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
6021
+ return react.createElement(
6022
+ StyledIcon,
6023
+ {
6024
+ ...props,
6025
+ weight,
6026
+ debug,
6027
+ "aria-hidden": true,
6028
+ size,
6029
+ viewBox: "0 0 24 24",
6030
+ fill: "none",
6031
+ ref: forwardRef2
6032
+ },
6033
+ /* @__PURE__ */ jsxRuntime.jsx(
6034
+ "path",
6035
+ {
6036
+ fill: "currentColor",
6037
+ d: "M2.2498 20.3971a.45.45 0 0 1 0-.9c.3868 0 .5502-.0002.7483-.0009a.45.45 0 0 1 .0032.9 196.162 196.162 0 0 1-.7515.0009Zm2.2724-.0323a.45.45 0 0 1-.045-.8989 11.541 11.541 0 0 0 .7193-.0563.45.45 0 1 1 .1014.8942c-.2374.027-.4926.0468-.7757.061Zm2.3542-.4318a.45.45 0 1 1-.331-.837c.2074-.082.407-.1809.6056-.3002a.45.45 0 0 1 .4637.7713 4.9778 4.9778 0 0 1-.7383.3659Zm2.0242-1.3812a.45.45 0 0 1-.6248-.6478 13.093 13.093 0 0 0 .5067-.5189.4501.4501 0 0 1 .6597.6123 14.0808 14.0808 0 0 1-.5416.5544Zm7.1134-8.7465a.45.45 0 1 1-.687-.5813c.1762-.2082.3421-.3993.5003-.5759a.45.45 0 1 1 .6704.6005c-.1523.17-.3127.3547-.4837.5567Zm1.5023-1.5872a.45.45 0 0 1-.5958-.6746c.2127-.1878.42-.3526.6264-.4976a.45.45 0 0 1 .5173.7364c-.1781.1251-.3594.2693-.5479.4358Zm1.7919-1.0424a.45.45 0 0 1-.2542-.8634c.2476-.0729.5082-.1301.7898-.1743a.45.45 0 1 1 .1395.8891c-.2442.0384-.4666.0872-.6751.1486Zm2.0967-.2626a.45.45 0 1 1-.027-.8995c.2267-.0069.4735-.0111.7596-.0136a.45.45 0 0 1 .0077.9 34.516 34.516 0 0 0-.7403.0131Z"
6038
+ }
6039
+ ),
6040
+ /* @__PURE__ */ jsxRuntime.jsx(
6041
+ "path",
6042
+ {
6043
+ fill: "currentColor",
6044
+ fillRule: "evenodd",
6045
+ d: "m9.2048 15.856-.3882-1.2745h-1.9518l-.3882 1.2745h-1.2232l1.8897-5.376h1.388l1.8969 5.376h-1.2232Zm-.6592-2.2266c-.3588-1.1548-.5609-1.8079-.606-1.9592-.0452-.1514-.0775-.271-.097-.3589-.0806.3125-.3114 1.0852-.6922 2.3181h1.3952Zm2.5562-3.1274h1.6663c.7592 0 1.3104.108 1.6534.324.343.2161.5145.5597.5145 1.0309 0 .3199-.075.5823-.2252.7874-.1501.2051-.3497.3284-.5987.3699v.0366c.3393.0757.5841.2173.7342.4248.1502.2075.2252.4834.2252.8276 0 .4883-.1764.8692-.5291 1.1426-.3528.2734-.8319.4102-1.4374.4102h-2.0032v-5.354Zm1.1353 2.1203h.6591c.3077 0 .5304-.0476.6684-.1428.1379-.0952.2069-.2527.2069-.4724 0-.2051-.0751-.3522-.2252-.4413-.1502-.0891-.3876-.1337-.7123-.1337h-.5969v1.1902Zm0 .9009v1.3953h.7397c.3125 0 .5432-.0599.6921-.1795.149-.1196.2234-.3027.2234-.5493 0-.4443-.3173-.6665-.9521-.6665h-.7031Zm6.1779-2.1533c-.4272 0-.758.1605-.9924.4815-.2344.3211-.3516.7685-.3516 1.3422 0 1.1939.448 1.7908 1.344 1.7908.376 0 .8313-.094 1.366-.282v.9521c-.4394.1831-.9302.2747-1.4722.2747-.7788 0-1.3745-.2362-1.7871-.7086-.4126-.4724-.6189-1.1505-.6189-2.0343 0-.5567.1013-1.0443.304-1.463.2026-.4187.4938-.7398.8734-.9632.3796-.2234.8246-.3351 1.3348-.3351.5201 0 1.0425.1258 1.5674.3772l-.3662.9229a6.0683 6.0683 0 0 0-.6042-.249c-.2027-.0708-.4016-.1062-.597-.1062Z",
6046
+ clipRule: "evenodd"
6047
+ }
6048
+ )
6049
+ );
6050
+ }
6051
+ );
6052
+ IconCaptionHorizontal[designSystemBaseIcon.iconSymbol] = true;
6053
+
5847
6054
  const IconCardCirclesNew = react.forwardRef(
5848
6055
  (props, forwardRef2) => {
5849
6056
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -9197,6 +9404,169 @@ const IconCloud = react.forwardRef(
9197
9404
  );
9198
9405
  IconCloud[designSystemBaseIcon.iconSymbol] = true;
9199
9406
 
9407
+ const IconClusterAi = react.forwardRef(
9408
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
9409
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9410
+ return react.createElement(
9411
+ StyledIcon,
9412
+ {
9413
+ ...props,
9414
+ weight,
9415
+ debug,
9416
+ "aria-hidden": true,
9417
+ size,
9418
+ viewBox: "0 0 24 24",
9419
+ fill: "none",
9420
+ ref: forwardRef2
9421
+ },
9422
+ /* @__PURE__ */ jsxRuntime.jsx(
9423
+ "path",
9424
+ {
9425
+ stroke: "currentColor",
9426
+ strokeLinejoin: "bevel",
9427
+ strokeWidth: "var(--svg-stroke-width)",
9428
+ d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
9429
+ }
9430
+ ),
9431
+ /* @__PURE__ */ jsxRuntime.jsx(
9432
+ "path",
9433
+ {
9434
+ fill: "currentColor",
9435
+ fillRule: "evenodd",
9436
+ d: "M15.7144 12.5021c.2042-1.4155 2.2495-1.4183 2.4539.0001.2398 1.6644 1.5476 2.9721 3.2122 3.2122 1.4128.2038 1.4211 2.2491 0 2.4539-1.6646.2398-2.9724 1.5476-3.2122 3.2122-.2048 1.4211-2.2501 1.4128-2.4539 0-.24-1.6646-1.5478-2.9724-3.2122-3.2122-1.4184-.2044-1.4155-2.2497-.0001-2.4539 1.6645-.2401 2.9722-1.5478 3.2123-3.2123Zm1.2269 2.4169a5.8051 5.8051 0 0 1-2.0223 2.0223 5.8035 5.8035 0 0 1 2.0223 2.0223 5.8018 5.8018 0 0 1 2.0223-2.0223 5.8035 5.8035 0 0 1-2.0223-2.0223Z",
9437
+ clipRule: "evenodd"
9438
+ }
9439
+ ),
9440
+ /* @__PURE__ */ jsxRuntime.jsx(
9441
+ "path",
9442
+ {
9443
+ fill: "currentColor",
9444
+ d: "M21.3386 16.7604c-2.1241-.3064-3.7931-1.9752-4.0992-4.0994-.0399-.2766-.4391-.2765-.479 0-.3064 2.1242-1.9752 3.793-4.0994 4.0994-.2765.0399-.2766.4391 0 .479 2.1242.3061 3.793 1.9751 4.0994 4.0992.0399.2766.4391.2768.479.0002.3061-2.1244 1.975-3.7933 4.0994-4.0994.2766-.0399.2764-.4391-.0002-.479Z"
9445
+ }
9446
+ )
9447
+ );
9448
+ }
9449
+ );
9450
+ IconClusterAi[designSystemBaseIcon.iconSymbol] = true;
9451
+
9452
+ const IconClusterColor = react.forwardRef(
9453
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
9454
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9455
+ return react.createElement(
9456
+ StyledIcon,
9457
+ {
9458
+ ...props,
9459
+ weight,
9460
+ debug,
9461
+ "aria-hidden": true,
9462
+ size,
9463
+ viewBox: "0 0 24 24",
9464
+ fill: "none",
9465
+ ref: forwardRef2
9466
+ },
9467
+ /* @__PURE__ */ jsxRuntime.jsx(
9468
+ "path",
9469
+ {
9470
+ stroke: "currentColor",
9471
+ strokeLinejoin: "bevel",
9472
+ strokeWidth: "var(--svg-stroke-width)",
9473
+ d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
9474
+ }
9475
+ ),
9476
+ /* @__PURE__ */ jsxRuntime.jsx(
9477
+ "path",
9478
+ {
9479
+ stroke: "currentColor",
9480
+ strokeWidth: "var(--svg-stroke-width)",
9481
+ d: "M17 15v.0001"
9482
+ }
9483
+ ),
9484
+ /* @__PURE__ */ jsxRuntime.jsx(
9485
+ "path",
9486
+ {
9487
+ fill: "currentColor",
9488
+ d: "M12 12v-.75l-.75.75h.75Zm9 0h.75l-.75-.75v.75Zm-5.9062 7.2222h.75v-.75h-.75v.75Zm2.8124 0v-.75h-.75v.75h.75Zm-5.9062-6.4722h9v-1.5h-9v1.5Zm.75 4.4722v-5.2222h-1.5v5.2222h1.5Zm2.3438 1.25h-1.0938v1.5h1.0938v-1.5Zm.75 2.1216v-1.3716h-1.5v1.3716h1.5Zm1.3124-1.3716v1.3716h1.5v-1.3716h-1.5Zm1.8438-.75h-1.0938v1.5h1.0938v-1.5Zm1.25-6.4722v5.2222h1.5v-5.2222h-1.5Zm-3.75 10.75c1.1909 0 2.1562-.9654 2.1562-2.1562h-1.5a.6562.6562 0 0 1-.6562.6562v1.5Zm-2.1562-2.1562c0 1.1908.9653 2.1562 2.1562 2.1562v-1.5a.6562.6562 0 0 1-.6562-.6562h-1.5Zm4.6562-.6216c1.5188 0 2.75-1.2312 2.75-2.75h-1.5c0 .6904-.5596 1.25-1.25 1.25v1.5Zm-7.75-2.75c0 1.5188 1.2312 2.75 2.75 2.75v-1.5c-.6904 0-1.25-.5596-1.25-1.25h-1.5Z"
9489
+ }
9490
+ ),
9491
+ /* @__PURE__ */ jsxRuntime.jsx(
9492
+ "path",
9493
+ {
9494
+ stroke: "currentColor",
9495
+ strokeWidth: "var(--svg-stroke-width)",
9496
+ d: "M12 17h9M15 12v3M18 12v3"
9497
+ }
9498
+ )
9499
+ );
9500
+ }
9501
+ );
9502
+ IconClusterColor[designSystemBaseIcon.iconSymbol] = true;
9503
+
9504
+ const IconClusterSentiment = react.forwardRef(
9505
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
9506
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9507
+ return react.createElement(
9508
+ StyledIcon,
9509
+ {
9510
+ ...props,
9511
+ weight,
9512
+ debug,
9513
+ "aria-hidden": true,
9514
+ size,
9515
+ viewBox: "0 0 24 24",
9516
+ fill: "none",
9517
+ ref: forwardRef2
9518
+ },
9519
+ /* @__PURE__ */ jsxRuntime.jsx(
9520
+ "path",
9521
+ {
9522
+ stroke: "currentColor",
9523
+ strokeLinejoin: "bevel",
9524
+ strokeWidth: "var(--svg-stroke-width)",
9525
+ d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
9526
+ }
9527
+ ),
9528
+ /* @__PURE__ */ jsxRuntime.jsx(
9529
+ "path",
9530
+ {
9531
+ fill: "currentColor",
9532
+ stroke: "currentColor",
9533
+ strokeWidth: "var(--svg-stroke-width)",
9534
+ d: "M18.3333 15.3333h.3334v.3334h-.3334v-.3334Z"
9535
+ }
9536
+ ),
9537
+ /* @__PURE__ */ jsxRuntime.jsx(
9538
+ "path",
9539
+ {
9540
+ stroke: "currentColor",
9541
+ strokeLinecap: "square",
9542
+ strokeLinejoin: "round",
9543
+ strokeWidth: "var(--svg-stroke-width)",
9544
+ d: "M22 17c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5Z"
9545
+ }
9546
+ ),
9547
+ /* @__PURE__ */ jsxRuntime.jsx(
9548
+ "path",
9549
+ {
9550
+ fill: "currentColor",
9551
+ stroke: "currentColor",
9552
+ strokeWidth: "var(--svg-stroke-width)",
9553
+ d: "M15.3333 15.3333h.3334v.3334h-.3334v-.3334Z"
9554
+ }
9555
+ ),
9556
+ /* @__PURE__ */ jsxRuntime.jsx(
9557
+ "path",
9558
+ {
9559
+ stroke: "currentColor",
9560
+ strokeLinejoin: "round",
9561
+ strokeWidth: "var(--svg-stroke-width)",
9562
+ d: "M19 17c-.1739 1.1378-1.0032 2-2 2-.9968 0-1.8261-.8622-2-2"
9563
+ }
9564
+ )
9565
+ );
9566
+ }
9567
+ );
9568
+ IconClusterSentiment[designSystemBaseIcon.iconSymbol] = true;
9569
+
9200
9570
  const IconClusterNew = react.forwardRef(
9201
9571
  (props, forwardRef2) => {
9202
9572
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -40637,6 +41007,7 @@ exports.IconAlignRight = IconAlignRight;
40637
41007
  exports.IconAlignTop = IconAlignTop;
40638
41008
  exports.IconAlignTopGroup = IconAlignTopGroup;
40639
41009
  exports.IconAlignmentScale = IconAlignmentScale;
41010
+ exports.IconAltText = IconAltText;
40640
41011
  exports.IconArrowArcLeft = IconArrowArcLeft;
40641
41012
  exports.IconArrowArcRight = IconArrowArcRight;
40642
41013
  exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
@@ -40656,6 +41027,7 @@ exports.IconArrowFatLeftRight = IconArrowFatLeftRight;
40656
41027
  exports.IconArrowFatRight = IconArrowFatRight;
40657
41028
  exports.IconArrowFatUpRight = IconArrowFatUpRight;
40658
41029
  exports.IconArrowLeft = IconArrowLeft;
41030
+ exports.IconArrowLeftRightDotted = IconArrowLeftRightDotted;
40659
41031
  exports.IconArrowRight = IconArrowRight;
40660
41032
  exports.IconArrowUp = IconArrowUp;
40661
41033
  exports.IconArrowUpCircle = IconArrowUpCircle;
@@ -40666,6 +41038,7 @@ exports.IconArrowsClockwiseX = IconArrowsClockwiseX;
40666
41038
  exports.IconArrowsClockwiseY = IconArrowsClockwiseY;
40667
41039
  exports.IconArrowsDownUp = IconArrowsDownUp;
40668
41040
  exports.IconArrowsHorizontalLinesTopBottom = IconArrowsHorizontalLinesTopBottom;
41041
+ exports.IconArrowsHorizontalLinesTopBottomIn = IconArrowsHorizontalLinesTopBottomIn;
40669
41042
  exports.IconArrowsInSimple = IconArrowsInSimple;
40670
41043
  exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
40671
41044
  exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
@@ -40696,6 +41069,8 @@ exports.IconCalendarBlank = IconCalendarBlank;
40696
41069
  exports.IconCalendarEnd = IconCalendarEnd;
40697
41070
  exports.IconCalendarStart = IconCalendarStart;
40698
41071
  exports.IconCamera = IconCamera;
41072
+ exports.IconCaptionAlong = IconCaptionAlong;
41073
+ exports.IconCaptionHorizontal = IconCaptionHorizontal;
40699
41074
  exports.IconCard = IconCard;
40700
41075
  exports.IconCardCircles = IconCardCircles;
40701
41076
  exports.IconCardNumberThree = IconCardNumberThree;
@@ -40738,6 +41113,9 @@ exports.IconClockCounterClockwiseSimple = IconClockCounterClockwiseSimple;
40738
41113
  exports.IconClockOvertime = IconClockOvertime;
40739
41114
  exports.IconCloud = IconCloud;
40740
41115
  exports.IconCluster = IconCluster;
41116
+ exports.IconClusterAi = IconClusterAi;
41117
+ exports.IconClusterColor = IconClusterColor;
41118
+ exports.IconClusterSentiment = IconClusterSentiment;
40741
41119
  exports.IconClustered = IconClustered;
40742
41120
  exports.IconCog = IconCog;
40743
41121
  exports.IconCoins = IconCoins;