@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/module.js
CHANGED
|
@@ -3433,6 +3433,51 @@ const IconArrowsDownUp = forwardRef(
|
|
|
3433
3433
|
);
|
|
3434
3434
|
IconArrowsDownUp[iconSymbol] = true;
|
|
3435
3435
|
|
|
3436
|
+
const IconArrowsHorizontalLinesTopBottomIn = forwardRef(({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3437
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
3438
|
+
return createElement(
|
|
3439
|
+
StyledIcon,
|
|
3440
|
+
{
|
|
3441
|
+
...props,
|
|
3442
|
+
weight,
|
|
3443
|
+
debug,
|
|
3444
|
+
"aria-hidden": true,
|
|
3445
|
+
size,
|
|
3446
|
+
viewBox: "0 0 24 24",
|
|
3447
|
+
fill: "none",
|
|
3448
|
+
ref: forwardRef2
|
|
3449
|
+
},
|
|
3450
|
+
/* @__PURE__ */ jsx(
|
|
3451
|
+
"path",
|
|
3452
|
+
{
|
|
3453
|
+
stroke: "currentColor",
|
|
3454
|
+
strokeLinejoin: "round",
|
|
3455
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3456
|
+
d: "M4 3h8m8 0h-8m0 0v5m-8 13h8m8 0h-8m0 0v-5M2 12h8"
|
|
3457
|
+
}
|
|
3458
|
+
),
|
|
3459
|
+
/* @__PURE__ */ jsx(
|
|
3460
|
+
"path",
|
|
3461
|
+
{
|
|
3462
|
+
stroke: "currentColor",
|
|
3463
|
+
strokeLinejoin: "bevel",
|
|
3464
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3465
|
+
d: "m6 8 4 4-4 4M18 8l-4 4 4 4"
|
|
3466
|
+
}
|
|
3467
|
+
),
|
|
3468
|
+
/* @__PURE__ */ jsx(
|
|
3469
|
+
"path",
|
|
3470
|
+
{
|
|
3471
|
+
stroke: "currentColor",
|
|
3472
|
+
strokeLinejoin: "round",
|
|
3473
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3474
|
+
d: "M22 12h-8"
|
|
3475
|
+
}
|
|
3476
|
+
)
|
|
3477
|
+
);
|
|
3478
|
+
});
|
|
3479
|
+
IconArrowsHorizontalLinesTopBottomIn[iconSymbol] = true;
|
|
3480
|
+
|
|
3436
3481
|
const IconArrowsHorizontalLinesTopBottomNew = forwardRef((props, forwardRef2) => {
|
|
3437
3482
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
3438
3483
|
return createElement(
|
|
@@ -5840,6 +5885,78 @@ const IconCamera = forwardRef(
|
|
|
5840
5885
|
);
|
|
5841
5886
|
IconCamera[iconSymbol] = true;
|
|
5842
5887
|
|
|
5888
|
+
const IconCaptionAlong = forwardRef(
|
|
5889
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5890
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5891
|
+
return createElement(
|
|
5892
|
+
StyledIcon,
|
|
5893
|
+
{
|
|
5894
|
+
...props,
|
|
5895
|
+
weight,
|
|
5896
|
+
debug,
|
|
5897
|
+
"aria-hidden": true,
|
|
5898
|
+
size,
|
|
5899
|
+
viewBox: "0 0 24 24",
|
|
5900
|
+
fill: "none",
|
|
5901
|
+
ref: forwardRef2
|
|
5902
|
+
},
|
|
5903
|
+
/* @__PURE__ */ jsx(
|
|
5904
|
+
"path",
|
|
5905
|
+
{
|
|
5906
|
+
fill: "currentColor",
|
|
5907
|
+
fillRule: "evenodd",
|
|
5908
|
+
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",
|
|
5909
|
+
clipRule: "evenodd"
|
|
5910
|
+
}
|
|
5911
|
+
),
|
|
5912
|
+
/* @__PURE__ */ jsx(
|
|
5913
|
+
"path",
|
|
5914
|
+
{
|
|
5915
|
+
fill: "currentColor",
|
|
5916
|
+
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"
|
|
5917
|
+
}
|
|
5918
|
+
)
|
|
5919
|
+
);
|
|
5920
|
+
}
|
|
5921
|
+
);
|
|
5922
|
+
IconCaptionAlong[iconSymbol] = true;
|
|
5923
|
+
|
|
5924
|
+
const IconCaptionHorizontal = forwardRef(
|
|
5925
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5926
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5927
|
+
return createElement(
|
|
5928
|
+
StyledIcon,
|
|
5929
|
+
{
|
|
5930
|
+
...props,
|
|
5931
|
+
weight,
|
|
5932
|
+
debug,
|
|
5933
|
+
"aria-hidden": true,
|
|
5934
|
+
size,
|
|
5935
|
+
viewBox: "0 0 24 24",
|
|
5936
|
+
fill: "none",
|
|
5937
|
+
ref: forwardRef2
|
|
5938
|
+
},
|
|
5939
|
+
/* @__PURE__ */ jsx(
|
|
5940
|
+
"path",
|
|
5941
|
+
{
|
|
5942
|
+
fill: "currentColor",
|
|
5943
|
+
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"
|
|
5944
|
+
}
|
|
5945
|
+
),
|
|
5946
|
+
/* @__PURE__ */ jsx(
|
|
5947
|
+
"path",
|
|
5948
|
+
{
|
|
5949
|
+
fill: "currentColor",
|
|
5950
|
+
fillRule: "evenodd",
|
|
5951
|
+
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",
|
|
5952
|
+
clipRule: "evenodd"
|
|
5953
|
+
}
|
|
5954
|
+
)
|
|
5955
|
+
);
|
|
5956
|
+
}
|
|
5957
|
+
);
|
|
5958
|
+
IconCaptionHorizontal[iconSymbol] = true;
|
|
5959
|
+
|
|
5843
5960
|
const IconCardCirclesNew = forwardRef(
|
|
5844
5961
|
(props, forwardRef2) => {
|
|
5845
5962
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -9193,6 +9310,169 @@ const IconCloud = forwardRef(
|
|
|
9193
9310
|
);
|
|
9194
9311
|
IconCloud[iconSymbol] = true;
|
|
9195
9312
|
|
|
9313
|
+
const IconClusterAi = forwardRef(
|
|
9314
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
9315
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
9316
|
+
return createElement(
|
|
9317
|
+
StyledIcon,
|
|
9318
|
+
{
|
|
9319
|
+
...props,
|
|
9320
|
+
weight,
|
|
9321
|
+
debug,
|
|
9322
|
+
"aria-hidden": true,
|
|
9323
|
+
size,
|
|
9324
|
+
viewBox: "0 0 24 24",
|
|
9325
|
+
fill: "none",
|
|
9326
|
+
ref: forwardRef2
|
|
9327
|
+
},
|
|
9328
|
+
/* @__PURE__ */ jsx(
|
|
9329
|
+
"path",
|
|
9330
|
+
{
|
|
9331
|
+
stroke: "currentColor",
|
|
9332
|
+
strokeLinejoin: "bevel",
|
|
9333
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9334
|
+
d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
|
|
9335
|
+
}
|
|
9336
|
+
),
|
|
9337
|
+
/* @__PURE__ */ jsx(
|
|
9338
|
+
"path",
|
|
9339
|
+
{
|
|
9340
|
+
fill: "currentColor",
|
|
9341
|
+
fillRule: "evenodd",
|
|
9342
|
+
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",
|
|
9343
|
+
clipRule: "evenodd"
|
|
9344
|
+
}
|
|
9345
|
+
),
|
|
9346
|
+
/* @__PURE__ */ jsx(
|
|
9347
|
+
"path",
|
|
9348
|
+
{
|
|
9349
|
+
fill: "currentColor",
|
|
9350
|
+
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"
|
|
9351
|
+
}
|
|
9352
|
+
)
|
|
9353
|
+
);
|
|
9354
|
+
}
|
|
9355
|
+
);
|
|
9356
|
+
IconClusterAi[iconSymbol] = true;
|
|
9357
|
+
|
|
9358
|
+
const IconClusterColor = forwardRef(
|
|
9359
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
9360
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
9361
|
+
return createElement(
|
|
9362
|
+
StyledIcon,
|
|
9363
|
+
{
|
|
9364
|
+
...props,
|
|
9365
|
+
weight,
|
|
9366
|
+
debug,
|
|
9367
|
+
"aria-hidden": true,
|
|
9368
|
+
size,
|
|
9369
|
+
viewBox: "0 0 24 24",
|
|
9370
|
+
fill: "none",
|
|
9371
|
+
ref: forwardRef2
|
|
9372
|
+
},
|
|
9373
|
+
/* @__PURE__ */ jsx(
|
|
9374
|
+
"path",
|
|
9375
|
+
{
|
|
9376
|
+
stroke: "currentColor",
|
|
9377
|
+
strokeLinejoin: "bevel",
|
|
9378
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9379
|
+
d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
|
|
9380
|
+
}
|
|
9381
|
+
),
|
|
9382
|
+
/* @__PURE__ */ jsx(
|
|
9383
|
+
"path",
|
|
9384
|
+
{
|
|
9385
|
+
stroke: "currentColor",
|
|
9386
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9387
|
+
d: "M17 15v.0001"
|
|
9388
|
+
}
|
|
9389
|
+
),
|
|
9390
|
+
/* @__PURE__ */ jsx(
|
|
9391
|
+
"path",
|
|
9392
|
+
{
|
|
9393
|
+
fill: "currentColor",
|
|
9394
|
+
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"
|
|
9395
|
+
}
|
|
9396
|
+
),
|
|
9397
|
+
/* @__PURE__ */ jsx(
|
|
9398
|
+
"path",
|
|
9399
|
+
{
|
|
9400
|
+
stroke: "currentColor",
|
|
9401
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9402
|
+
d: "M12 17h9M15 12v3M18 12v3"
|
|
9403
|
+
}
|
|
9404
|
+
)
|
|
9405
|
+
);
|
|
9406
|
+
}
|
|
9407
|
+
);
|
|
9408
|
+
IconClusterColor[iconSymbol] = true;
|
|
9409
|
+
|
|
9410
|
+
const IconClusterSentiment = forwardRef(
|
|
9411
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
9412
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
9413
|
+
return createElement(
|
|
9414
|
+
StyledIcon,
|
|
9415
|
+
{
|
|
9416
|
+
...props,
|
|
9417
|
+
weight,
|
|
9418
|
+
debug,
|
|
9419
|
+
"aria-hidden": true,
|
|
9420
|
+
size,
|
|
9421
|
+
viewBox: "0 0 24 24",
|
|
9422
|
+
fill: "none",
|
|
9423
|
+
ref: forwardRef2
|
|
9424
|
+
},
|
|
9425
|
+
/* @__PURE__ */ jsx(
|
|
9426
|
+
"path",
|
|
9427
|
+
{
|
|
9428
|
+
stroke: "currentColor",
|
|
9429
|
+
strokeLinejoin: "bevel",
|
|
9430
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9431
|
+
d: "M5 22v-4h4v4h-4ZM16 9.5v-6.5h-13v12h7m-4-4h3m-3-4h6"
|
|
9432
|
+
}
|
|
9433
|
+
),
|
|
9434
|
+
/* @__PURE__ */ jsx(
|
|
9435
|
+
"path",
|
|
9436
|
+
{
|
|
9437
|
+
fill: "currentColor",
|
|
9438
|
+
stroke: "currentColor",
|
|
9439
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9440
|
+
d: "M18.3333 15.3333h.3334v.3334h-.3334v-.3334Z"
|
|
9441
|
+
}
|
|
9442
|
+
),
|
|
9443
|
+
/* @__PURE__ */ jsx(
|
|
9444
|
+
"path",
|
|
9445
|
+
{
|
|
9446
|
+
stroke: "currentColor",
|
|
9447
|
+
strokeLinecap: "square",
|
|
9448
|
+
strokeLinejoin: "round",
|
|
9449
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9450
|
+
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"
|
|
9451
|
+
}
|
|
9452
|
+
),
|
|
9453
|
+
/* @__PURE__ */ jsx(
|
|
9454
|
+
"path",
|
|
9455
|
+
{
|
|
9456
|
+
fill: "currentColor",
|
|
9457
|
+
stroke: "currentColor",
|
|
9458
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9459
|
+
d: "M15.3333 15.3333h.3334v.3334h-.3334v-.3334Z"
|
|
9460
|
+
}
|
|
9461
|
+
),
|
|
9462
|
+
/* @__PURE__ */ jsx(
|
|
9463
|
+
"path",
|
|
9464
|
+
{
|
|
9465
|
+
stroke: "currentColor",
|
|
9466
|
+
strokeLinejoin: "round",
|
|
9467
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9468
|
+
d: "M19 17c-.1739 1.1378-1.0032 2-2 2-.9968 0-1.8261-.8622-2-2"
|
|
9469
|
+
}
|
|
9470
|
+
)
|
|
9471
|
+
);
|
|
9472
|
+
}
|
|
9473
|
+
);
|
|
9474
|
+
IconClusterSentiment[iconSymbol] = true;
|
|
9475
|
+
|
|
9196
9476
|
const IconClusterNew = forwardRef(
|
|
9197
9477
|
(props, forwardRef2) => {
|
|
9198
9478
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10019,13 +10299,15 @@ const IconConnectionLineElbowsNew = forwardRef(
|
|
|
10019
10299
|
fill: "none",
|
|
10020
10300
|
ref: forwardRef2
|
|
10021
10301
|
},
|
|
10302
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m14.5 3.5.5 3.5-.5 3.5 6.5-3.5-6.5-3.5Z" }),
|
|
10022
10303
|
/* @__PURE__ */ jsx(
|
|
10023
10304
|
"path",
|
|
10024
10305
|
{
|
|
10025
10306
|
stroke: "currentColor",
|
|
10026
|
-
|
|
10307
|
+
strokeLinecap: "square",
|
|
10308
|
+
strokeLinejoin: "round",
|
|
10027
10309
|
strokeWidth: "var(--svg-stroke-width)",
|
|
10028
|
-
d: "M3 20h4c1.1046 0 2-.8954 2-2v-9c0-1.1046.8954-2 2-2h4m0
|
|
10310
|
+
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"
|
|
10029
10311
|
}
|
|
10030
10312
|
)
|
|
10031
10313
|
);
|
|
@@ -10103,13 +10385,21 @@ const IconConnectionLineStraightNew = forwardRef(
|
|
|
10103
10385
|
fill: "none",
|
|
10104
10386
|
ref: forwardRef2
|
|
10105
10387
|
},
|
|
10388
|
+
/* @__PURE__ */ jsx(
|
|
10389
|
+
"path",
|
|
10390
|
+
{
|
|
10391
|
+
fill: "currentColor",
|
|
10392
|
+
d: "m19.6569 4.1213-2.6569 7.3787-1.8787-2.8431-3.1213-1.6569 7.6569-2.8787Z"
|
|
10393
|
+
}
|
|
10394
|
+
),
|
|
10106
10395
|
/* @__PURE__ */ jsx(
|
|
10107
10396
|
"path",
|
|
10108
10397
|
{
|
|
10109
10398
|
stroke: "currentColor",
|
|
10110
|
-
|
|
10399
|
+
strokeLinecap: "square",
|
|
10400
|
+
strokeLinejoin: "round",
|
|
10111
10401
|
strokeWidth: "var(--svg-stroke-width)",
|
|
10112
|
-
d: "
|
|
10402
|
+
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"
|
|
10113
10403
|
}
|
|
10114
10404
|
)
|
|
10115
10405
|
);
|
|
@@ -13463,7 +13753,7 @@ const IconDotsThreeVertical = forwardRef(
|
|
|
13463
13753
|
"path",
|
|
13464
13754
|
{
|
|
13465
13755
|
fill: "currentColor",
|
|
13466
|
-
d: "M12
|
|
13756
|
+
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"
|
|
13467
13757
|
}
|
|
13468
13758
|
)
|
|
13469
13759
|
);
|
|
@@ -16423,7 +16713,7 @@ const IconHandNew = forwardRef(
|
|
|
16423
16713
|
stroke: "currentColor",
|
|
16424
16714
|
strokeLinejoin: "bevel",
|
|
16425
16715
|
strokeWidth: "var(--svg-stroke-width)",
|
|
16426
|
-
d: "M13.9999 12v-5.25c0-.9665.
|
|
16716
|
+
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"
|
|
16427
16717
|
}
|
|
16428
16718
|
)
|
|
16429
16719
|
);
|
|
@@ -24116,6 +24406,7 @@ const IconPlayNew = forwardRef(
|
|
|
24116
24406
|
/* @__PURE__ */ jsx(
|
|
24117
24407
|
"path",
|
|
24118
24408
|
{
|
|
24409
|
+
fill: "currentColor",
|
|
24119
24410
|
stroke: "currentColor",
|
|
24120
24411
|
strokeWidth: "var(--svg-stroke-width)",
|
|
24121
24412
|
d: "m8 7.4142 1.155-1.155 8.845 5.307v.8676l-8.845 5.307-1.155-1.155v-9.1716Z"
|
|
@@ -24613,7 +24904,7 @@ const IconPlusNew = forwardRef(
|
|
|
24613
24904
|
{
|
|
24614
24905
|
stroke: "currentColor",
|
|
24615
24906
|
strokeWidth: "var(--svg-stroke-width)",
|
|
24616
|
-
d: "M12
|
|
24907
|
+
d: "M12 4v16m8-8h-16"
|
|
24617
24908
|
}
|
|
24618
24909
|
)
|
|
24619
24910
|
);
|
|
@@ -29032,6 +29323,159 @@ const IconSelect = forwardRef(
|
|
|
29032
29323
|
);
|
|
29033
29324
|
IconSelect[iconSymbol] = true;
|
|
29034
29325
|
|
|
29326
|
+
const IconSentimentNew = forwardRef(
|
|
29327
|
+
(props, forwardRef2) => {
|
|
29328
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
29329
|
+
return createElement(
|
|
29330
|
+
StyledIcon,
|
|
29331
|
+
{
|
|
29332
|
+
...props,
|
|
29333
|
+
debug,
|
|
29334
|
+
"aria-hidden": true,
|
|
29335
|
+
viewBox: "0 0 24 24",
|
|
29336
|
+
fill: "none",
|
|
29337
|
+
ref: forwardRef2
|
|
29338
|
+
},
|
|
29339
|
+
/* @__PURE__ */ jsx(
|
|
29340
|
+
"path",
|
|
29341
|
+
{
|
|
29342
|
+
fill: "currentColor",
|
|
29343
|
+
stroke: "currentColor",
|
|
29344
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29345
|
+
d: "M10.3333 6.8333h.8334v.8334h-.8334v-.8334ZM16.3333 12.8333h.8334v.8334h-.8334v-.8334Z"
|
|
29346
|
+
}
|
|
29347
|
+
),
|
|
29348
|
+
/* @__PURE__ */ jsx(
|
|
29349
|
+
"path",
|
|
29350
|
+
{
|
|
29351
|
+
stroke: "currentColor",
|
|
29352
|
+
strokeLinecap: "square",
|
|
29353
|
+
strokeLinejoin: "round",
|
|
29354
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29355
|
+
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"
|
|
29356
|
+
}
|
|
29357
|
+
),
|
|
29358
|
+
/* @__PURE__ */ jsx(
|
|
29359
|
+
"path",
|
|
29360
|
+
{
|
|
29361
|
+
fill: "currentColor",
|
|
29362
|
+
stroke: "currentColor",
|
|
29363
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29364
|
+
d: "M6.8333 6.8333h.8334v.8334h-.8334v-.8334Z"
|
|
29365
|
+
}
|
|
29366
|
+
),
|
|
29367
|
+
/* @__PURE__ */ jsx(
|
|
29368
|
+
"path",
|
|
29369
|
+
{
|
|
29370
|
+
stroke: "currentColor",
|
|
29371
|
+
strokeLinejoin: "round",
|
|
29372
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29373
|
+
d: "M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25"
|
|
29374
|
+
}
|
|
29375
|
+
),
|
|
29376
|
+
/* @__PURE__ */ jsx(
|
|
29377
|
+
"path",
|
|
29378
|
+
{
|
|
29379
|
+
stroke: "currentColor",
|
|
29380
|
+
strokeLinejoin: "round",
|
|
29381
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29382
|
+
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"
|
|
29383
|
+
}
|
|
29384
|
+
),
|
|
29385
|
+
/* @__PURE__ */ jsx(
|
|
29386
|
+
"path",
|
|
29387
|
+
{
|
|
29388
|
+
stroke: "currentColor",
|
|
29389
|
+
strokeLinejoin: "round",
|
|
29390
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29391
|
+
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"
|
|
29392
|
+
}
|
|
29393
|
+
)
|
|
29394
|
+
);
|
|
29395
|
+
}
|
|
29396
|
+
);
|
|
29397
|
+
const IconSentimentOld = forwardRef(
|
|
29398
|
+
(props, forwardRef2) => {
|
|
29399
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
29400
|
+
return createElement(
|
|
29401
|
+
StyledIcon,
|
|
29402
|
+
{
|
|
29403
|
+
...props,
|
|
29404
|
+
debug,
|
|
29405
|
+
"aria-hidden": true,
|
|
29406
|
+
viewBox: "0 0 24 24",
|
|
29407
|
+
fill: "none",
|
|
29408
|
+
ref: forwardRef2
|
|
29409
|
+
},
|
|
29410
|
+
/* @__PURE__ */ jsx(
|
|
29411
|
+
"path",
|
|
29412
|
+
{
|
|
29413
|
+
stroke: "currentColor",
|
|
29414
|
+
strokeLinecap: "square",
|
|
29415
|
+
strokeLinejoin: "round",
|
|
29416
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29417
|
+
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"
|
|
29418
|
+
}
|
|
29419
|
+
),
|
|
29420
|
+
/* @__PURE__ */ jsx(
|
|
29421
|
+
"path",
|
|
29422
|
+
{
|
|
29423
|
+
stroke: "currentColor",
|
|
29424
|
+
strokeLinecap: "round",
|
|
29425
|
+
strokeLinejoin: "round",
|
|
29426
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29427
|
+
d: "M11.7047 9.5c-.2351 1.2801-1.3566 2.25-2.7046 2.25s-2.4696-.9699-2.7047-2.25"
|
|
29428
|
+
}
|
|
29429
|
+
),
|
|
29430
|
+
/* @__PURE__ */ jsx(
|
|
29431
|
+
"path",
|
|
29432
|
+
{
|
|
29433
|
+
stroke: "currentColor",
|
|
29434
|
+
strokeLinejoin: "round",
|
|
29435
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29436
|
+
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"
|
|
29437
|
+
}
|
|
29438
|
+
),
|
|
29439
|
+
/* @__PURE__ */ jsx(
|
|
29440
|
+
"path",
|
|
29441
|
+
{
|
|
29442
|
+
stroke: "currentColor",
|
|
29443
|
+
strokeLinecap: "round",
|
|
29444
|
+
strokeLinejoin: "round",
|
|
29445
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
29446
|
+
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"
|
|
29447
|
+
}
|
|
29448
|
+
),
|
|
29449
|
+
/* @__PURE__ */ jsx("circle", { cx: 7, cy: 7, r: 1, fill: "currentColor" }),
|
|
29450
|
+
/* @__PURE__ */ jsx("circle", { cx: 11, cy: 7, r: 1, fill: "currentColor" }),
|
|
29451
|
+
/* @__PURE__ */ jsx("circle", { cx: 17, cy: 13, r: 1, fill: "currentColor" })
|
|
29452
|
+
);
|
|
29453
|
+
}
|
|
29454
|
+
);
|
|
29455
|
+
const IconSentiment = forwardRef(
|
|
29456
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
29457
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
29458
|
+
return v1 ? /* @__PURE__ */ jsx(
|
|
29459
|
+
IconSentimentNew,
|
|
29460
|
+
{
|
|
29461
|
+
...props,
|
|
29462
|
+
size,
|
|
29463
|
+
weight,
|
|
29464
|
+
ref: forwardRef2
|
|
29465
|
+
}
|
|
29466
|
+
) : /* @__PURE__ */ jsx(
|
|
29467
|
+
IconSentimentOld,
|
|
29468
|
+
{
|
|
29469
|
+
...props,
|
|
29470
|
+
size,
|
|
29471
|
+
weight,
|
|
29472
|
+
ref: forwardRef2
|
|
29473
|
+
}
|
|
29474
|
+
);
|
|
29475
|
+
}
|
|
29476
|
+
);
|
|
29477
|
+
IconSentiment[iconSymbol] = true;
|
|
29478
|
+
|
|
29035
29479
|
const IconShadowNew = forwardRef(
|
|
29036
29480
|
(props, forwardRef2) => {
|
|
29037
29481
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -40161,6 +40605,104 @@ const IconWallet = forwardRef(
|
|
|
40161
40605
|
);
|
|
40162
40606
|
IconWallet[iconSymbol] = true;
|
|
40163
40607
|
|
|
40608
|
+
const IconWandNew = forwardRef(
|
|
40609
|
+
(props, forwardRef2) => {
|
|
40610
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
40611
|
+
return createElement(
|
|
40612
|
+
StyledIcon,
|
|
40613
|
+
{
|
|
40614
|
+
...props,
|
|
40615
|
+
debug,
|
|
40616
|
+
"aria-hidden": true,
|
|
40617
|
+
viewBox: "0 0 24 24",
|
|
40618
|
+
fill: "none",
|
|
40619
|
+
ref: forwardRef2
|
|
40620
|
+
},
|
|
40621
|
+
/* @__PURE__ */ jsx(
|
|
40622
|
+
"path",
|
|
40623
|
+
{
|
|
40624
|
+
stroke: "currentColor",
|
|
40625
|
+
strokeLinecap: "round",
|
|
40626
|
+
strokeLinejoin: "round",
|
|
40627
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40628
|
+
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"
|
|
40629
|
+
}
|
|
40630
|
+
),
|
|
40631
|
+
/* @__PURE__ */ jsx(
|
|
40632
|
+
"path",
|
|
40633
|
+
{
|
|
40634
|
+
stroke: "currentColor",
|
|
40635
|
+
strokeLinecap: "round",
|
|
40636
|
+
strokeLinejoin: "round",
|
|
40637
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40638
|
+
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"
|
|
40639
|
+
}
|
|
40640
|
+
),
|
|
40641
|
+
/* @__PURE__ */ jsx(
|
|
40642
|
+
"path",
|
|
40643
|
+
{
|
|
40644
|
+
fill: "currentColor",
|
|
40645
|
+
fillRule: "evenodd",
|
|
40646
|
+
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",
|
|
40647
|
+
clipRule: "evenodd"
|
|
40648
|
+
}
|
|
40649
|
+
)
|
|
40650
|
+
);
|
|
40651
|
+
}
|
|
40652
|
+
);
|
|
40653
|
+
const IconWandOld = forwardRef(
|
|
40654
|
+
(props, forwardRef2) => {
|
|
40655
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
40656
|
+
return createElement(
|
|
40657
|
+
StyledIcon,
|
|
40658
|
+
{
|
|
40659
|
+
...props,
|
|
40660
|
+
debug,
|
|
40661
|
+
"aria-hidden": true,
|
|
40662
|
+
viewBox: "0 0 24 24",
|
|
40663
|
+
fill: "none",
|
|
40664
|
+
ref: forwardRef2
|
|
40665
|
+
},
|
|
40666
|
+
/* @__PURE__ */ jsx(
|
|
40667
|
+
"path",
|
|
40668
|
+
{
|
|
40669
|
+
stroke: "currentColor",
|
|
40670
|
+
strokeLinecap: "round",
|
|
40671
|
+
strokeLinejoin: "round",
|
|
40672
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40673
|
+
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"
|
|
40674
|
+
}
|
|
40675
|
+
),
|
|
40676
|
+
/* @__PURE__ */ jsx(
|
|
40677
|
+
"path",
|
|
40678
|
+
{
|
|
40679
|
+
stroke: "currentColor",
|
|
40680
|
+
strokeLinecap: "round",
|
|
40681
|
+
strokeLinejoin: "round",
|
|
40682
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
40683
|
+
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"
|
|
40684
|
+
}
|
|
40685
|
+
),
|
|
40686
|
+
/* @__PURE__ */ jsx(
|
|
40687
|
+
"path",
|
|
40688
|
+
{
|
|
40689
|
+
fill: "currentColor",
|
|
40690
|
+
fillRule: "evenodd",
|
|
40691
|
+
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",
|
|
40692
|
+
clipRule: "evenodd"
|
|
40693
|
+
}
|
|
40694
|
+
)
|
|
40695
|
+
);
|
|
40696
|
+
}
|
|
40697
|
+
);
|
|
40698
|
+
const IconWand = forwardRef(
|
|
40699
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
40700
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
40701
|
+
return v1 ? /* @__PURE__ */ jsx(IconWandNew, { ...props, size, weight, ref: forwardRef2 }) : /* @__PURE__ */ jsx(IconWandOld, { ...props, size, weight, ref: forwardRef2 });
|
|
40702
|
+
}
|
|
40703
|
+
);
|
|
40704
|
+
IconWand[iconSymbol] = true;
|
|
40705
|
+
|
|
40164
40706
|
const IconWarning = forwardRef(
|
|
40165
40707
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
40166
40708
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -40357,5 +40899,5 @@ const IconWifi = forwardRef(
|
|
|
40357
40899
|
);
|
|
40358
40900
|
IconWifi[iconSymbol] = true;
|
|
40359
40901
|
|
|
40360
|
-
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFlipCard, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWarning, IconWifi, IconWifiExclamation };
|
|
40902
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFlipCard, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
40361
40903
|
//# sourceMappingURL=module.js.map
|