@mirohq/design-system-icons 0.68.0 → 0.69.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
@@ -3437,6 +3437,51 @@ const IconArrowsDownUp = react.forwardRef(
3437
3437
  );
3438
3438
  IconArrowsDownUp[designSystemBaseIcon.iconSymbol] = true;
3439
3439
 
3440
+ const IconArrowsHorizontalLinesTopBottomIn = react.forwardRef(({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
3441
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3442
+ return react.createElement(
3443
+ StyledIcon,
3444
+ {
3445
+ ...props,
3446
+ weight,
3447
+ debug,
3448
+ "aria-hidden": true,
3449
+ size,
3450
+ viewBox: "0 0 24 24",
3451
+ fill: "none",
3452
+ ref: forwardRef2
3453
+ },
3454
+ /* @__PURE__ */ jsxRuntime.jsx(
3455
+ "path",
3456
+ {
3457
+ stroke: "currentColor",
3458
+ strokeLinejoin: "round",
3459
+ strokeWidth: "var(--svg-stroke-width)",
3460
+ d: "M4 3h8m8 0h-8m0 0v5m-8 13h8m8 0h-8m0 0v-5M2 12h8"
3461
+ }
3462
+ ),
3463
+ /* @__PURE__ */ jsxRuntime.jsx(
3464
+ "path",
3465
+ {
3466
+ stroke: "currentColor",
3467
+ strokeLinejoin: "bevel",
3468
+ strokeWidth: "var(--svg-stroke-width)",
3469
+ d: "m6 8 4 4-4 4M18 8l-4 4 4 4"
3470
+ }
3471
+ ),
3472
+ /* @__PURE__ */ jsxRuntime.jsx(
3473
+ "path",
3474
+ {
3475
+ stroke: "currentColor",
3476
+ strokeLinejoin: "round",
3477
+ strokeWidth: "var(--svg-stroke-width)",
3478
+ d: "M22 12h-8"
3479
+ }
3480
+ )
3481
+ );
3482
+ });
3483
+ IconArrowsHorizontalLinesTopBottomIn[designSystemBaseIcon.iconSymbol] = true;
3484
+
3440
3485
  const IconArrowsHorizontalLinesTopBottomNew = react.forwardRef((props, forwardRef2) => {
3441
3486
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
3442
3487
  return react.createElement(
@@ -5844,6 +5889,78 @@ const IconCamera = react.forwardRef(
5844
5889
  );
5845
5890
  IconCamera[designSystemBaseIcon.iconSymbol] = true;
5846
5891
 
5892
+ const IconCaptionAlong = react.forwardRef(
5893
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5894
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
5895
+ return react.createElement(
5896
+ StyledIcon,
5897
+ {
5898
+ ...props,
5899
+ weight,
5900
+ debug,
5901
+ "aria-hidden": true,
5902
+ size,
5903
+ viewBox: "0 0 24 24",
5904
+ fill: "none",
5905
+ ref: forwardRef2
5906
+ },
5907
+ /* @__PURE__ */ jsxRuntime.jsx(
5908
+ "path",
5909
+ {
5910
+ fill: "currentColor",
5911
+ fillRule: "evenodd",
5912
+ 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",
5913
+ clipRule: "evenodd"
5914
+ }
5915
+ ),
5916
+ /* @__PURE__ */ jsxRuntime.jsx(
5917
+ "path",
5918
+ {
5919
+ fill: "currentColor",
5920
+ 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"
5921
+ }
5922
+ )
5923
+ );
5924
+ }
5925
+ );
5926
+ IconCaptionAlong[designSystemBaseIcon.iconSymbol] = true;
5927
+
5928
+ const IconCaptionHorizontal = react.forwardRef(
5929
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
5930
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
5931
+ return react.createElement(
5932
+ StyledIcon,
5933
+ {
5934
+ ...props,
5935
+ weight,
5936
+ debug,
5937
+ "aria-hidden": true,
5938
+ size,
5939
+ viewBox: "0 0 24 24",
5940
+ fill: "none",
5941
+ ref: forwardRef2
5942
+ },
5943
+ /* @__PURE__ */ jsxRuntime.jsx(
5944
+ "path",
5945
+ {
5946
+ fill: "currentColor",
5947
+ 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"
5948
+ }
5949
+ ),
5950
+ /* @__PURE__ */ jsxRuntime.jsx(
5951
+ "path",
5952
+ {
5953
+ fill: "currentColor",
5954
+ fillRule: "evenodd",
5955
+ 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",
5956
+ clipRule: "evenodd"
5957
+ }
5958
+ )
5959
+ );
5960
+ }
5961
+ );
5962
+ IconCaptionHorizontal[designSystemBaseIcon.iconSymbol] = true;
5963
+
5847
5964
  const IconCardCirclesNew = react.forwardRef(
5848
5965
  (props, forwardRef2) => {
5849
5966
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -9197,6 +9314,169 @@ const IconCloud = react.forwardRef(
9197
9314
  );
9198
9315
  IconCloud[designSystemBaseIcon.iconSymbol] = true;
9199
9316
 
9317
+ const IconClusterAi = react.forwardRef(
9318
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
9319
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9320
+ return react.createElement(
9321
+ StyledIcon,
9322
+ {
9323
+ ...props,
9324
+ weight,
9325
+ debug,
9326
+ "aria-hidden": true,
9327
+ size,
9328
+ viewBox: "0 0 24 24",
9329
+ fill: "none",
9330
+ ref: forwardRef2
9331
+ },
9332
+ /* @__PURE__ */ jsxRuntime.jsx(
9333
+ "path",
9334
+ {
9335
+ stroke: "currentColor",
9336
+ strokeLinejoin: "bevel",
9337
+ strokeWidth: "var(--svg-stroke-width)",
9338
+ d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
9339
+ }
9340
+ ),
9341
+ /* @__PURE__ */ jsxRuntime.jsx(
9342
+ "path",
9343
+ {
9344
+ fill: "currentColor",
9345
+ fillRule: "evenodd",
9346
+ 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",
9347
+ clipRule: "evenodd"
9348
+ }
9349
+ ),
9350
+ /* @__PURE__ */ jsxRuntime.jsx(
9351
+ "path",
9352
+ {
9353
+ fill: "currentColor",
9354
+ 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"
9355
+ }
9356
+ )
9357
+ );
9358
+ }
9359
+ );
9360
+ IconClusterAi[designSystemBaseIcon.iconSymbol] = true;
9361
+
9362
+ const IconClusterColor = react.forwardRef(
9363
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
9364
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9365
+ return react.createElement(
9366
+ StyledIcon,
9367
+ {
9368
+ ...props,
9369
+ weight,
9370
+ debug,
9371
+ "aria-hidden": true,
9372
+ size,
9373
+ viewBox: "0 0 24 24",
9374
+ fill: "none",
9375
+ ref: forwardRef2
9376
+ },
9377
+ /* @__PURE__ */ jsxRuntime.jsx(
9378
+ "path",
9379
+ {
9380
+ stroke: "currentColor",
9381
+ strokeLinejoin: "bevel",
9382
+ strokeWidth: "var(--svg-stroke-width)",
9383
+ d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
9384
+ }
9385
+ ),
9386
+ /* @__PURE__ */ jsxRuntime.jsx(
9387
+ "path",
9388
+ {
9389
+ stroke: "currentColor",
9390
+ strokeWidth: "var(--svg-stroke-width)",
9391
+ d: "M17 15v.0001"
9392
+ }
9393
+ ),
9394
+ /* @__PURE__ */ jsxRuntime.jsx(
9395
+ "path",
9396
+ {
9397
+ fill: "currentColor",
9398
+ 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"
9399
+ }
9400
+ ),
9401
+ /* @__PURE__ */ jsxRuntime.jsx(
9402
+ "path",
9403
+ {
9404
+ stroke: "currentColor",
9405
+ strokeWidth: "var(--svg-stroke-width)",
9406
+ d: "M12 17h9M15 12v3M18 12v3"
9407
+ }
9408
+ )
9409
+ );
9410
+ }
9411
+ );
9412
+ IconClusterColor[designSystemBaseIcon.iconSymbol] = true;
9413
+
9414
+ const IconClusterSentiment = react.forwardRef(
9415
+ ({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
9416
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
9417
+ return react.createElement(
9418
+ StyledIcon,
9419
+ {
9420
+ ...props,
9421
+ weight,
9422
+ debug,
9423
+ "aria-hidden": true,
9424
+ size,
9425
+ viewBox: "0 0 24 24",
9426
+ fill: "none",
9427
+ ref: forwardRef2
9428
+ },
9429
+ /* @__PURE__ */ jsxRuntime.jsx(
9430
+ "path",
9431
+ {
9432
+ stroke: "currentColor",
9433
+ strokeLinejoin: "bevel",
9434
+ strokeWidth: "var(--svg-stroke-width)",
9435
+ d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
9436
+ }
9437
+ ),
9438
+ /* @__PURE__ */ jsxRuntime.jsx(
9439
+ "path",
9440
+ {
9441
+ fill: "currentColor",
9442
+ stroke: "currentColor",
9443
+ strokeWidth: "var(--svg-stroke-width)",
9444
+ d: "M18.3333 15.3333h.3334v.3334h-.3334v-.3334Z"
9445
+ }
9446
+ ),
9447
+ /* @__PURE__ */ jsxRuntime.jsx(
9448
+ "path",
9449
+ {
9450
+ stroke: "currentColor",
9451
+ strokeLinecap: "square",
9452
+ strokeLinejoin: "round",
9453
+ strokeWidth: "var(--svg-stroke-width)",
9454
+ 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"
9455
+ }
9456
+ ),
9457
+ /* @__PURE__ */ jsxRuntime.jsx(
9458
+ "path",
9459
+ {
9460
+ fill: "currentColor",
9461
+ stroke: "currentColor",
9462
+ strokeWidth: "var(--svg-stroke-width)",
9463
+ d: "M15.3333 15.3333h.3334v.3334h-.3334v-.3334Z"
9464
+ }
9465
+ ),
9466
+ /* @__PURE__ */ jsxRuntime.jsx(
9467
+ "path",
9468
+ {
9469
+ stroke: "currentColor",
9470
+ strokeLinejoin: "round",
9471
+ strokeWidth: "var(--svg-stroke-width)",
9472
+ d: "M19 17c-.1739 1.1378-1.0032 2-2 2-.9968 0-1.8261-.8622-2-2"
9473
+ }
9474
+ )
9475
+ );
9476
+ }
9477
+ );
9478
+ IconClusterSentiment[designSystemBaseIcon.iconSymbol] = true;
9479
+
9200
9480
  const IconClusterNew = react.forwardRef(
9201
9481
  (props, forwardRef2) => {
9202
9482
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -40666,6 +40946,7 @@ exports.IconArrowsClockwiseX = IconArrowsClockwiseX;
40666
40946
  exports.IconArrowsClockwiseY = IconArrowsClockwiseY;
40667
40947
  exports.IconArrowsDownUp = IconArrowsDownUp;
40668
40948
  exports.IconArrowsHorizontalLinesTopBottom = IconArrowsHorizontalLinesTopBottom;
40949
+ exports.IconArrowsHorizontalLinesTopBottomIn = IconArrowsHorizontalLinesTopBottomIn;
40669
40950
  exports.IconArrowsInSimple = IconArrowsInSimple;
40670
40951
  exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
40671
40952
  exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
@@ -40696,6 +40977,8 @@ exports.IconCalendarBlank = IconCalendarBlank;
40696
40977
  exports.IconCalendarEnd = IconCalendarEnd;
40697
40978
  exports.IconCalendarStart = IconCalendarStart;
40698
40979
  exports.IconCamera = IconCamera;
40980
+ exports.IconCaptionAlong = IconCaptionAlong;
40981
+ exports.IconCaptionHorizontal = IconCaptionHorizontal;
40699
40982
  exports.IconCard = IconCard;
40700
40983
  exports.IconCardCircles = IconCardCircles;
40701
40984
  exports.IconCardNumberThree = IconCardNumberThree;
@@ -40738,6 +41021,9 @@ exports.IconClockCounterClockwiseSimple = IconClockCounterClockwiseSimple;
40738
41021
  exports.IconClockOvertime = IconClockOvertime;
40739
41022
  exports.IconCloud = IconCloud;
40740
41023
  exports.IconCluster = IconCluster;
41024
+ exports.IconClusterAi = IconClusterAi;
41025
+ exports.IconClusterColor = IconClusterColor;
41026
+ exports.IconClusterSentiment = IconClusterSentiment;
40741
41027
  exports.IconClustered = IconClustered;
40742
41028
  exports.IconCog = IconCog;
40743
41029
  exports.IconCoins = IconCoins;