@mirohq/design-system-icons 0.67.1 → 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 +557 -7
- package/dist/main.js.map +1 -1
- package/dist/module.js +550 -8
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +17 -1
- package/package.json +5 -5
- package/react/arrows-horizontal-lines-top-bottom-in.tsx +48 -0
- package/react/caption-along.tsx +41 -0
- package/react/caption-horizontal.tsx +41 -0
- package/react/cluster-ai.tsx +47 -0
- package/react/cluster-color.tsx +51 -0
- package/react/cluster-sentiment.tsx +62 -0
- package/react/connection-line-elbows.tsx +4 -2
- package/react/connection-line-straight.tsx +7 -2
- package/react/dots-three-vertical.tsx +1 -1
- package/react/hand.tsx +1 -1
- package/react/index.ts +8 -0
- package/react/play.tsx +1 -0
- package/react/plus.tsx +1 -1
- package/react/sentiment.tsx +135 -0
- package/react/wand.tsx +98 -0
- package/svg/24/arrows-horizontal-lines-top-bottom-in.svg +2 -0
- package/svg/24/caption-along.svg +2 -0
- package/svg/24/caption-horizontal.svg +2 -0
- package/svg/24/cluster-ai.svg +2 -0
- package/svg/24/cluster-color.svg +2 -0
- package/svg/24/cluster-sentiment.svg +2 -0
- package/svg/24/connection-line-elbows-new.svg +1 -1
- package/svg/24/connection-line-straight-new.svg +1 -1
- package/svg/24/dots-three-vertical.svg +1 -1
- package/svg/24/hand-new.svg +1 -1
- package/svg/24/play-new.svg +1 -1
- package/svg/24/plus-new.svg +1 -1
- package/svg/24/sentiment-new.svg +2 -0
- package/svg/24/sentiment.svg +2 -0
- package/svg/24/wand-new.svg +2 -0
- package/svg/24/wand.svg +2 -0
- package/svg/meta.json +68 -0
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);
|
|
@@ -10023,13 +10303,15 @@ const IconConnectionLineElbowsNew = react.forwardRef(
|
|
|
10023
10303
|
fill: "none",
|
|
10024
10304
|
ref: forwardRef2
|
|
10025
10305
|
},
|
|
10306
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "m14.5 3.5.5 3.5-.5 3.5 6.5-3.5-6.5-3.5Z" }),
|
|
10026
10307
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10027
10308
|
"path",
|
|
10028
10309
|
{
|
|
10029
10310
|
stroke: "currentColor",
|
|
10030
|
-
|
|
10311
|
+
strokeLinecap: "square",
|
|
10312
|
+
strokeLinejoin: "round",
|
|
10031
10313
|
strokeWidth: "var(--svg-stroke-width)",
|
|
10032
|
-
d: "M3 20h4c1.1046 0 2-.8954 2-2v-9c0-1.1046.8954-2 2-2h4m0
|
|
10314
|
+
d: "M3 20h4c1.1046 0 2-.8954 2-2v-9c0-1.1046.8954-2 2-2h4m0 0-.5-3.5 6.5 3.5-6.5 3.5.5-3.5Z"
|
|
10033
10315
|
}
|
|
10034
10316
|
)
|
|
10035
10317
|
);
|
|
@@ -10107,13 +10389,21 @@ const IconConnectionLineStraightNew = react.forwardRef(
|
|
|
10107
10389
|
fill: "none",
|
|
10108
10390
|
ref: forwardRef2
|
|
10109
10391
|
},
|
|
10392
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10393
|
+
"path",
|
|
10394
|
+
{
|
|
10395
|
+
fill: "currentColor",
|
|
10396
|
+
d: "m19.6569 4.1213-2.6569 7.3787-1.8787-2.8431-3.1213-1.6569 7.6569-2.8787Z"
|
|
10397
|
+
}
|
|
10398
|
+
),
|
|
10110
10399
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10111
10400
|
"path",
|
|
10112
10401
|
{
|
|
10113
10402
|
stroke: "currentColor",
|
|
10114
|
-
|
|
10403
|
+
strokeLinecap: "square",
|
|
10404
|
+
strokeLinejoin: "round",
|
|
10115
10405
|
strokeWidth: "var(--svg-stroke-width)",
|
|
10116
|
-
d: "
|
|
10406
|
+
d: "m15.1213 8.6569-3.1213-1.6569 7.6569-2.8787-2.6569 7.3787-1.8787-2.8431Zm0 0-11.1213 11.3431"
|
|
10117
10407
|
}
|
|
10118
10408
|
)
|
|
10119
10409
|
);
|
|
@@ -13467,7 +13757,7 @@ const IconDotsThreeVertical = react.forwardRef(
|
|
|
13467
13757
|
"path",
|
|
13468
13758
|
{
|
|
13469
13759
|
fill: "currentColor",
|
|
13470
|
-
d: "M12
|
|
13760
|
+
d: "M12 7c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 14c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2ZM12 21c-1.1046 0-2-.8954-2-2s.8954-2 2-2 2 .8954 2 2-.8954 2-2 2Z"
|
|
13471
13761
|
}
|
|
13472
13762
|
)
|
|
13473
13763
|
);
|
|
@@ -16427,7 +16717,7 @@ const IconHandNew = react.forwardRef(
|
|
|
16427
16717
|
stroke: "currentColor",
|
|
16428
16718
|
strokeLinejoin: "bevel",
|
|
16429
16719
|
strokeWidth: "var(--svg-stroke-width)",
|
|
16430
|
-
d: "M13.9999 12v-5.25c0-.9665.
|
|
16720
|
+
d: "M13.9999 12v-5.25c0-.9665.5336-1.75 1.5001-1.75s1.5.7835 1.5 1.75v5.25-3c0-1 .5-2 1.5-2s1.5 1 1.5 2v4c0 4.4183-1.7499 8-5.75 8h-1.5c-2 0-3.619-.8689-5.1662-2.4161l-4.0031-4.0031c-.6138-.6138-.6595-1.592-.1075-2.2619.5638-.6841 1.5612-.8145 2.2818-.2983l2.245 1.6081v-6.8787c0-.9665.5335-1.75 1.5-1.75s1.5.7835 1.5 1.75v5.25m2.9999-2v-5.25c0-.9665-.5334-1.75-1.4999-1.75s-1.5.7835-1.5 1.75v5"
|
|
16431
16721
|
}
|
|
16432
16722
|
)
|
|
16433
16723
|
);
|
|
@@ -24120,6 +24410,7 @@ const IconPlayNew = react.forwardRef(
|
|
|
24120
24410
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24121
24411
|
"path",
|
|
24122
24412
|
{
|
|
24413
|
+
fill: "currentColor",
|
|
24123
24414
|
stroke: "currentColor",
|
|
24124
24415
|
strokeWidth: "var(--svg-stroke-width)",
|
|
24125
24416
|
d: "m8 7.4142 1.155-1.155 8.845 5.307v.8676l-8.845 5.307-1.155-1.155v-9.1716Z"
|
|
@@ -24617,7 +24908,7 @@ const IconPlusNew = react.forwardRef(
|
|
|
24617
24908
|
{
|
|
24618
24909
|
stroke: "currentColor",
|
|
24619
24910
|
strokeWidth: "var(--svg-stroke-width)",
|
|
24620
|
-
d: "M12
|
|
24911
|
+
d: "M12 4v16m8-8h-16"
|
|
24621
24912
|
}
|
|
24622
24913
|
)
|
|
24623
24914
|
);
|
|
@@ -29036,6 +29327,159 @@ const IconSelect = react.forwardRef(
|
|
|
29036
29327
|
);
|
|
29037
29328
|
IconSelect[designSystemBaseIcon.iconSymbol] = true;
|
|
29038
29329
|
|
|
29330
|
+
const IconSentimentNew = react.forwardRef(
|
|
29331
|
+
(props, forwardRef2) => {
|
|
29332
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
29333
|
+
return react.createElement(
|
|
29334
|
+
StyledIcon,
|
|
29335
|
+
{
|
|
29336
|
+
...props,
|
|
29337
|
+
debug,
|
|
29338
|
+
"aria-hidden": true,
|
|
29339
|
+
viewBox: "0 0 24 24",
|
|
29340
|
+
fill: "none",
|
|
29341
|
+
ref: forwardRef2
|
|
29342
|
+
},
|
|
29343
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29344
|
+
"path",
|
|
29345
|
+
{
|
|
29346
|
+
fill: "currentColor",
|
|
29347
|
+
stroke: "currentColor",
|
|
29348
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29349
|
+
d: "M10.3333 6.8333h.8334v.8334h-.8334v-.8334ZM16.3333 12.8333h.8334v.8334h-.8334v-.8334Z"
|
|
29350
|
+
}
|
|
29351
|
+
),
|
|
29352
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29353
|
+
"path",
|
|
29354
|
+
{
|
|
29355
|
+
stroke: "currentColor",
|
|
29356
|
+
strokeLinecap: "square",
|
|
29357
|
+
strokeLinejoin: "round",
|
|
29358
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29359
|
+
d: "M15 9c0 3.3137-2.6863 6-6 6s-6-2.6863-6-6 2.6863-6 6-6 6 2.6863 6 6Z"
|
|
29360
|
+
}
|
|
29361
|
+
),
|
|
29362
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29363
|
+
"path",
|
|
29364
|
+
{
|
|
29365
|
+
fill: "currentColor",
|
|
29366
|
+
stroke: "currentColor",
|
|
29367
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29368
|
+
d: "M6.8333 6.8333h.8334v.8334h-.8334v-.8334Z"
|
|
29369
|
+
}
|
|
29370
|
+
),
|
|
29371
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29372
|
+
"path",
|
|
29373
|
+
{
|
|
29374
|
+
stroke: "currentColor",
|
|
29375
|
+
strokeLinejoin: "round",
|
|
29376
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29377
|
+
d: "M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25"
|
|
29378
|
+
}
|
|
29379
|
+
),
|
|
29380
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29381
|
+
"path",
|
|
29382
|
+
{
|
|
29383
|
+
stroke: "currentColor",
|
|
29384
|
+
strokeLinejoin: "round",
|
|
29385
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29386
|
+
d: "M18 9.8027c1.7934 1.0374 3 2.9765 3 5.1973 0 3.3137-2.6862 6-6 6-2.2208 0-4.1598-1.2066-5.1973-3"
|
|
29387
|
+
}
|
|
29388
|
+
),
|
|
29389
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29390
|
+
"path",
|
|
29391
|
+
{
|
|
29392
|
+
stroke: "currentColor",
|
|
29393
|
+
strokeLinejoin: "round",
|
|
29394
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29395
|
+
d: "M12.2953 17.75c.2351-1.2801 1.3566-2.25 2.7046-2.25 1.3481 0 2.4696.9699 2.7047 2.25"
|
|
29396
|
+
}
|
|
29397
|
+
)
|
|
29398
|
+
);
|
|
29399
|
+
}
|
|
29400
|
+
);
|
|
29401
|
+
const IconSentimentOld = react.forwardRef(
|
|
29402
|
+
(props, forwardRef2) => {
|
|
29403
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
29404
|
+
return react.createElement(
|
|
29405
|
+
StyledIcon,
|
|
29406
|
+
{
|
|
29407
|
+
...props,
|
|
29408
|
+
debug,
|
|
29409
|
+
"aria-hidden": true,
|
|
29410
|
+
viewBox: "0 0 24 24",
|
|
29411
|
+
fill: "none",
|
|
29412
|
+
ref: forwardRef2
|
|
29413
|
+
},
|
|
29414
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29415
|
+
"path",
|
|
29416
|
+
{
|
|
29417
|
+
stroke: "currentColor",
|
|
29418
|
+
strokeLinecap: "square",
|
|
29419
|
+
strokeLinejoin: "round",
|
|
29420
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29421
|
+
d: "M15 9c0 3.3137-2.6863 6-6 6s-6-2.6863-6-6 2.6863-6 6-6 6 2.6863 6 6Z"
|
|
29422
|
+
}
|
|
29423
|
+
),
|
|
29424
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29425
|
+
"path",
|
|
29426
|
+
{
|
|
29427
|
+
stroke: "currentColor",
|
|
29428
|
+
strokeLinecap: "round",
|
|
29429
|
+
strokeLinejoin: "round",
|
|
29430
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29431
|
+
d: "M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25"
|
|
29432
|
+
}
|
|
29433
|
+
),
|
|
29434
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29435
|
+
"path",
|
|
29436
|
+
{
|
|
29437
|
+
stroke: "currentColor",
|
|
29438
|
+
strokeLinejoin: "round",
|
|
29439
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29440
|
+
d: "M18 9.8027c1.7934 1.0374 3 2.9765 3 5.1973 0 3.3137-2.6862 6-6 6-2.2208 0-4.1598-1.2066-5.1973-3"
|
|
29441
|
+
}
|
|
29442
|
+
),
|
|
29443
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
29444
|
+
"path",
|
|
29445
|
+
{
|
|
29446
|
+
stroke: "currentColor",
|
|
29447
|
+
strokeLinecap: "round",
|
|
29448
|
+
strokeLinejoin: "round",
|
|
29449
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29450
|
+
d: "M12.2953 17.75c.2351-1.2801 1.3566-2.25 2.7046-2.25 1.3481 0 2.4696.9699 2.7047 2.25"
|
|
29451
|
+
}
|
|
29452
|
+
),
|
|
29453
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 7, cy: 7, r: 1, fill: "currentColor" }),
|
|
29454
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 11, cy: 7, r: 1, fill: "currentColor" }),
|
|
29455
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 17, cy: 13, r: 1, fill: "currentColor" })
|
|
29456
|
+
);
|
|
29457
|
+
}
|
|
29458
|
+
);
|
|
29459
|
+
const IconSentiment = react.forwardRef(
|
|
29460
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
29461
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
29462
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
29463
|
+
IconSentimentNew,
|
|
29464
|
+
{
|
|
29465
|
+
...props,
|
|
29466
|
+
size,
|
|
29467
|
+
weight,
|
|
29468
|
+
ref: forwardRef2
|
|
29469
|
+
}
|
|
29470
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
29471
|
+
IconSentimentOld,
|
|
29472
|
+
{
|
|
29473
|
+
...props,
|
|
29474
|
+
size,
|
|
29475
|
+
weight,
|
|
29476
|
+
ref: forwardRef2
|
|
29477
|
+
}
|
|
29478
|
+
);
|
|
29479
|
+
}
|
|
29480
|
+
);
|
|
29481
|
+
IconSentiment[designSystemBaseIcon.iconSymbol] = true;
|
|
29482
|
+
|
|
29039
29483
|
const IconShadowNew = react.forwardRef(
|
|
29040
29484
|
(props, forwardRef2) => {
|
|
29041
29485
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -40165,6 +40609,104 @@ const IconWallet = react.forwardRef(
|
|
|
40165
40609
|
);
|
|
40166
40610
|
IconWallet[designSystemBaseIcon.iconSymbol] = true;
|
|
40167
40611
|
|
|
40612
|
+
const IconWandNew = react.forwardRef(
|
|
40613
|
+
(props, forwardRef2) => {
|
|
40614
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
40615
|
+
return react.createElement(
|
|
40616
|
+
StyledIcon,
|
|
40617
|
+
{
|
|
40618
|
+
...props,
|
|
40619
|
+
debug,
|
|
40620
|
+
"aria-hidden": true,
|
|
40621
|
+
viewBox: "0 0 24 24",
|
|
40622
|
+
fill: "none",
|
|
40623
|
+
ref: forwardRef2
|
|
40624
|
+
},
|
|
40625
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40626
|
+
"path",
|
|
40627
|
+
{
|
|
40628
|
+
stroke: "currentColor",
|
|
40629
|
+
strokeLinecap: "round",
|
|
40630
|
+
strokeLinejoin: "round",
|
|
40631
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40632
|
+
d: "m8 20 9-9m-13 5 9-9m0 0 2.5858-2.5858c.781-.781 2.0474-.781 2.8284 0l1.1716 1.1716c.781.781.781 2.0474 0 2.8284l-2.5858 2.5858m-4-4 4 4"
|
|
40633
|
+
}
|
|
40634
|
+
),
|
|
40635
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40636
|
+
"path",
|
|
40637
|
+
{
|
|
40638
|
+
stroke: "currentColor",
|
|
40639
|
+
strokeLinecap: "round",
|
|
40640
|
+
strokeLinejoin: "round",
|
|
40641
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40642
|
+
d: "m13 7-7 7-2.5858 2.5858c-.781.781-.781 2.0474 0 2.8284l1.1716 1.1716c.781.781 2.0474.781 2.8284 0l2.5858-2.5858 7-7"
|
|
40643
|
+
}
|
|
40644
|
+
),
|
|
40645
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40646
|
+
"path",
|
|
40647
|
+
{
|
|
40648
|
+
fill: "currentColor",
|
|
40649
|
+
fillRule: "evenodd",
|
|
40650
|
+
d: "M12.75 1h-.5c0 .6904-.5596 1.25-1.25 1.25v.5c.6903 0 1.25.5597 1.25 1.25h.5c0-.6903.5597-1.25 1.25-1.25v1.25-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM18.75 14h-.5c0 .6904-.5596 1.25-1.25 1.25v.5001c.6903 0 1.25.5596 1.25 1.2499h.5c0-.6903.5597-1.2499 1.25-1.2499v1.2499-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM6.9166 3h-.8332c0 1.1506-.9328 2.0834-2.0834 2.0834v.8334c1.1506 0 2.0833.9326 2.0834 2.0832h.8332c.0001-1.1505.9328-2.0832 2.0834-2.0832v2.0832-5 2.0834c-1.1506 0-2.0834-.9328-2.0834-2.0834Z",
|
|
40651
|
+
clipRule: "evenodd"
|
|
40652
|
+
}
|
|
40653
|
+
)
|
|
40654
|
+
);
|
|
40655
|
+
}
|
|
40656
|
+
);
|
|
40657
|
+
const IconWandOld = react.forwardRef(
|
|
40658
|
+
(props, forwardRef2) => {
|
|
40659
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
40660
|
+
return react.createElement(
|
|
40661
|
+
StyledIcon,
|
|
40662
|
+
{
|
|
40663
|
+
...props,
|
|
40664
|
+
debug,
|
|
40665
|
+
"aria-hidden": true,
|
|
40666
|
+
viewBox: "0 0 24 24",
|
|
40667
|
+
fill: "none",
|
|
40668
|
+
ref: forwardRef2
|
|
40669
|
+
},
|
|
40670
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40671
|
+
"path",
|
|
40672
|
+
{
|
|
40673
|
+
stroke: "currentColor",
|
|
40674
|
+
strokeLinecap: "round",
|
|
40675
|
+
strokeLinejoin: "round",
|
|
40676
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40677
|
+
d: "m8 20 9-9m-13 5 9-9m0 0 2.5858-2.5858c.781-.781 2.0474-.781 2.8284 0l1.1716 1.1716c.781.781.781 2.0474 0 2.8284l-2.5858 2.5858m-4-4 4 4"
|
|
40678
|
+
}
|
|
40679
|
+
),
|
|
40680
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40681
|
+
"path",
|
|
40682
|
+
{
|
|
40683
|
+
stroke: "currentColor",
|
|
40684
|
+
strokeLinecap: "round",
|
|
40685
|
+
strokeLinejoin: "round",
|
|
40686
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40687
|
+
d: "m13 7-7 7-2.5858 2.5858c-.781.781-.781 2.0474 0 2.8284l1.1716 1.1716c.781.781 2.0474.781 2.8284 0l2.5858-2.5858 7-7"
|
|
40688
|
+
}
|
|
40689
|
+
),
|
|
40690
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40691
|
+
"path",
|
|
40692
|
+
{
|
|
40693
|
+
fill: "currentColor",
|
|
40694
|
+
fillRule: "evenodd",
|
|
40695
|
+
d: "M12.75 1h-.5c0 .6904-.5596 1.25-1.25 1.25v.5c.6903 0 1.25.5597 1.25 1.25h.5c0-.6903.5597-1.25 1.25-1.25v1.25-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM18.75 14h-.5c0 .6904-.5596 1.25-1.25 1.25v.5001c.6903 0 1.25.5596 1.25 1.2499h.5c0-.6903.5597-1.2499 1.25-1.2499v1.2499-3 1.25c-.6904 0-1.25-.5596-1.25-1.25ZM6.9166 3h-.8332c0 1.1506-.9328 2.0834-2.0834 2.0834v.8334c1.1506 0 2.0833.9326 2.0834 2.0832h.8332c.0001-1.1505.9328-2.0832 2.0834-2.0832v2.0832-5 2.0834c-1.1506 0-2.0834-.9328-2.0834-2.0834Z",
|
|
40696
|
+
clipRule: "evenodd"
|
|
40697
|
+
}
|
|
40698
|
+
)
|
|
40699
|
+
);
|
|
40700
|
+
}
|
|
40701
|
+
);
|
|
40702
|
+
const IconWand = react.forwardRef(
|
|
40703
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
40704
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
40705
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(IconWandNew, { ...props, size, weight, ref: forwardRef2 }) : /* @__PURE__ */ jsxRuntime.jsx(IconWandOld, { ...props, size, weight, ref: forwardRef2 });
|
|
40706
|
+
}
|
|
40707
|
+
);
|
|
40708
|
+
IconWand[designSystemBaseIcon.iconSymbol] = true;
|
|
40709
|
+
|
|
40168
40710
|
const IconWarning = react.forwardRef(
|
|
40169
40711
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
40170
40712
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -40404,6 +40946,7 @@ exports.IconArrowsClockwiseX = IconArrowsClockwiseX;
|
|
|
40404
40946
|
exports.IconArrowsClockwiseY = IconArrowsClockwiseY;
|
|
40405
40947
|
exports.IconArrowsDownUp = IconArrowsDownUp;
|
|
40406
40948
|
exports.IconArrowsHorizontalLinesTopBottom = IconArrowsHorizontalLinesTopBottom;
|
|
40949
|
+
exports.IconArrowsHorizontalLinesTopBottomIn = IconArrowsHorizontalLinesTopBottomIn;
|
|
40407
40950
|
exports.IconArrowsInSimple = IconArrowsInSimple;
|
|
40408
40951
|
exports.IconArrowsOutCardinal = IconArrowsOutCardinal;
|
|
40409
40952
|
exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
|
|
@@ -40434,6 +40977,8 @@ exports.IconCalendarBlank = IconCalendarBlank;
|
|
|
40434
40977
|
exports.IconCalendarEnd = IconCalendarEnd;
|
|
40435
40978
|
exports.IconCalendarStart = IconCalendarStart;
|
|
40436
40979
|
exports.IconCamera = IconCamera;
|
|
40980
|
+
exports.IconCaptionAlong = IconCaptionAlong;
|
|
40981
|
+
exports.IconCaptionHorizontal = IconCaptionHorizontal;
|
|
40437
40982
|
exports.IconCard = IconCard;
|
|
40438
40983
|
exports.IconCardCircles = IconCardCircles;
|
|
40439
40984
|
exports.IconCardNumberThree = IconCardNumberThree;
|
|
@@ -40476,6 +41021,9 @@ exports.IconClockCounterClockwiseSimple = IconClockCounterClockwiseSimple;
|
|
|
40476
41021
|
exports.IconClockOvertime = IconClockOvertime;
|
|
40477
41022
|
exports.IconCloud = IconCloud;
|
|
40478
41023
|
exports.IconCluster = IconCluster;
|
|
41024
|
+
exports.IconClusterAi = IconClusterAi;
|
|
41025
|
+
exports.IconClusterColor = IconClusterColor;
|
|
41026
|
+
exports.IconClusterSentiment = IconClusterSentiment;
|
|
40479
41027
|
exports.IconClustered = IconClustered;
|
|
40480
41028
|
exports.IconCog = IconCog;
|
|
40481
41029
|
exports.IconCoins = IconCoins;
|
|
@@ -40733,6 +41281,7 @@ exports.IconRssRectangle = IconRssRectangle;
|
|
|
40733
41281
|
exports.IconScissors = IconScissors;
|
|
40734
41282
|
exports.IconScrollbarXy = IconScrollbarXy;
|
|
40735
41283
|
exports.IconSelect = IconSelect;
|
|
41284
|
+
exports.IconSentiment = IconSentiment;
|
|
40736
41285
|
exports.IconShadow = IconShadow;
|
|
40737
41286
|
exports.IconShapes = IconShapes;
|
|
40738
41287
|
exports.IconShapesLines = IconShapesLines;
|
|
@@ -40874,6 +41423,7 @@ exports.IconVideoCameraSimpleSlash = IconVideoCameraSimpleSlash;
|
|
|
40874
41423
|
exports.IconViewCenter = IconViewCenter;
|
|
40875
41424
|
exports.IconViewSideLeft = IconViewSideLeft;
|
|
40876
41425
|
exports.IconWallet = IconWallet;
|
|
41426
|
+
exports.IconWand = IconWand;
|
|
40877
41427
|
exports.IconWarning = IconWarning;
|
|
40878
41428
|
exports.IconWifi = IconWifi;
|
|
40879
41429
|
exports.IconWifiExclamation = IconWifiExclamation;
|