@mirohq/design-system-icons 0.70.0 → 0.72.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 +716 -124
- package/dist/main.js.map +1 -1
- package/dist/module.js +707 -125
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +21 -1
- package/package.json +3 -3
- package/react/alt-text-underline.tsx +47 -0
- package/react/arrow-left-right-dotted.tsx +4 -4
- package/react/clustered.tsx +1 -1
- package/react/hand-filled.tsx +1 -1
- package/react/hand-raised-filled.tsx +91 -0
- package/react/highlighter-color-selection.tsx +96 -0
- package/react/highlighter-underline.tsx +2 -8
- package/react/index.ts +10 -0
- package/react/insights.tsx +41 -0
- package/react/lightning.tsx +1 -1
- package/react/pen-color-selection.tsx +89 -0
- package/react/raised-hand.tsx +37 -0
- package/react/rectangle-portrait-dash-square-top-center.tsx +2 -2
- package/react/rectangle-portrait-dash-square-top-left.tsx +2 -2
- package/react/rectangle-portrait-dash.tsx +1 -1
- package/react/rectangle-portrait-square-top-left.tsx +5 -5
- package/react/sentiment.tsx +2 -2
- package/react/social-asana.tsx +37 -0
- package/react/square-line-square-dashed.tsx +2 -2
- package/react/text-a-color-selection.tsx +84 -0
- package/react/text-a-horizontal.tsx +48 -0
- package/react/text-a-vertical.tsx +48 -0
- package/svg/24/alt-text-underline.svg +2 -0
- package/svg/24/arrow-left-right-dotted.svg +1 -1
- package/svg/24/clustered-new.svg +1 -1
- package/svg/24/hand-filled-new.svg +1 -1
- package/svg/24/hand-raised-filled-new.svg +2 -0
- package/svg/24/hand-raised-filled.svg +2 -0
- package/svg/24/highlighter-color-selection-new.svg +2 -0
- package/svg/24/highlighter-color-selection.svg +2 -0
- package/svg/24/highlighter-underline-new.svg +1 -1
- package/svg/24/insights.svg +2 -0
- package/svg/24/lightning-new.svg +1 -1
- package/svg/24/pen-color-selection-new.svg +2 -0
- package/svg/24/pen-color-selection.svg +2 -0
- package/svg/24/raised-hand.svg +2 -0
- package/svg/24/rectangle-portrait-dash-new.svg +1 -1
- package/svg/24/rectangle-portrait-dash-square-top-center-new.svg +1 -1
- package/svg/24/rectangle-portrait-dash-square-top-left-new.svg +1 -1
- package/svg/24/rectangle-portrait-square-top-left-new.svg +1 -1
- package/svg/24/sentiment-new.svg +1 -1
- package/svg/24/social-asana.svg +2 -0
- package/svg/24/square-line-square-dashed-new.svg +1 -1
- package/svg/24/text-a-color-selection-new.svg +2 -0
- package/svg/24/text-a-color-selection.svg +2 -0
- package/svg/24/text-a-horizontal.svg +2 -0
- package/svg/24/text-a-vertical.svg +2 -0
- package/svg/meta.json +70 -30
package/dist/module.js
CHANGED
|
@@ -1136,6 +1136,51 @@ const IconAlignmentScale = forwardRef(
|
|
|
1136
1136
|
);
|
|
1137
1137
|
IconAlignmentScale[iconSymbol] = true;
|
|
1138
1138
|
|
|
1139
|
+
const IconAltTextUnderline = forwardRef(
|
|
1140
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1141
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1142
|
+
return createElement(
|
|
1143
|
+
StyledIcon,
|
|
1144
|
+
{
|
|
1145
|
+
...props,
|
|
1146
|
+
weight,
|
|
1147
|
+
debug,
|
|
1148
|
+
"aria-hidden": true,
|
|
1149
|
+
size,
|
|
1150
|
+
viewBox: "0 0 24 24",
|
|
1151
|
+
fill: "none",
|
|
1152
|
+
ref: forwardRef2
|
|
1153
|
+
},
|
|
1154
|
+
/* @__PURE__ */ jsx(
|
|
1155
|
+
"path",
|
|
1156
|
+
{
|
|
1157
|
+
stroke: "currentColor",
|
|
1158
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1159
|
+
d: "M12 8v7h4M16 9h6M19 9v7"
|
|
1160
|
+
}
|
|
1161
|
+
),
|
|
1162
|
+
/* @__PURE__ */ jsx(
|
|
1163
|
+
"path",
|
|
1164
|
+
{
|
|
1165
|
+
fill: "currentColor",
|
|
1166
|
+
fillRule: "evenodd",
|
|
1167
|
+
d: "m4.077 16 .6-1.5h2.6459l.6 1.5h2.154l-3.1485-7.8714h-1.857l-3.1485 7.8714h2.154Zm2.4459-3.5h-1.046l.523-1.3074.523 1.3074Z",
|
|
1168
|
+
clipRule: "evenodd"
|
|
1169
|
+
}
|
|
1170
|
+
),
|
|
1171
|
+
/* @__PURE__ */ jsx(
|
|
1172
|
+
"path",
|
|
1173
|
+
{
|
|
1174
|
+
stroke: "currentColor",
|
|
1175
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1176
|
+
d: "M2 19h20"
|
|
1177
|
+
}
|
|
1178
|
+
)
|
|
1179
|
+
);
|
|
1180
|
+
}
|
|
1181
|
+
);
|
|
1182
|
+
IconAltTextUnderline[iconSymbol] = true;
|
|
1183
|
+
|
|
1139
1184
|
const IconAltText = forwardRef(
|
|
1140
1185
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1141
1186
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2568,7 +2613,7 @@ const IconArrowLeftRightDotted = forwardRef(
|
|
|
2568
2613
|
"path",
|
|
2569
2614
|
{
|
|
2570
2615
|
fill: "currentColor",
|
|
2571
|
-
d: "m18 12 .
|
|
2616
|
+
d: "m18.25 12 .7328.6805v-1.361l-.7328.6805Zm-.7328-.6805-3.25 3.5 1.4656 1.361 3.25-3.5-1.4656-1.361Zm1.4656 0-3.25-3.5-1.4656 1.361 3.25 3.5 1.4656-1.361Zm-5.9828 1.6805h2v-2h-2v2Zm2 0h3.25v-2h-3.25v2Z"
|
|
2572
2617
|
}
|
|
2573
2618
|
),
|
|
2574
2619
|
/* @__PURE__ */ jsx(
|
|
@@ -2577,7 +2622,7 @@ const IconArrowLeftRightDotted = forwardRef(
|
|
|
2577
2622
|
stroke: "currentColor",
|
|
2578
2623
|
strokeLinejoin: "bevel",
|
|
2579
2624
|
strokeWidth: "var(--svg-stroke-width)",
|
|
2580
|
-
d: "m9 15.5-3-3.5 3-3.5"
|
|
2625
|
+
d: "m9 15.5-3.25-3.5 3.25-3.5"
|
|
2581
2626
|
}
|
|
2582
2627
|
),
|
|
2583
2628
|
/* @__PURE__ */ jsx(
|
|
@@ -2585,7 +2630,7 @@ const IconArrowLeftRightDotted = forwardRef(
|
|
|
2585
2630
|
{
|
|
2586
2631
|
stroke: "currentColor",
|
|
2587
2632
|
strokeWidth: "var(--svg-stroke-width)",
|
|
2588
|
-
d: "M11
|
|
2633
|
+
d: "M11 12h-4.5"
|
|
2589
2634
|
}
|
|
2590
2635
|
),
|
|
2591
2636
|
/* @__PURE__ */ jsx(
|
|
@@ -2593,7 +2638,7 @@ const IconArrowLeftRightDotted = forwardRef(
|
|
|
2593
2638
|
{
|
|
2594
2639
|
fill: "currentColor",
|
|
2595
2640
|
fillRule: "evenodd",
|
|
2596
|
-
d: "M5.3333
|
|
2641
|
+
d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
|
|
2597
2642
|
clipRule: "evenodd"
|
|
2598
2643
|
}
|
|
2599
2644
|
)
|
|
@@ -9648,7 +9693,7 @@ const IconClusteredNew = forwardRef(
|
|
|
9648
9693
|
{
|
|
9649
9694
|
fill: "currentColor",
|
|
9650
9695
|
fillRule: "evenodd",
|
|
9651
|
-
d: "
|
|
9696
|
+
d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
|
|
9652
9697
|
clipRule: "evenodd"
|
|
9653
9698
|
}
|
|
9654
9699
|
),
|
|
@@ -16628,7 +16673,7 @@ const IconHandFilledNew = forwardRef(
|
|
|
16628
16673
|
{
|
|
16629
16674
|
fill: "currentColor",
|
|
16630
16675
|
fillRule: "evenodd",
|
|
16631
|
-
d: "
|
|
16676
|
+
d: "M13.857 3.5c0-.8284-.6076-1.5-1.3571-1.5-.7495 0-1.3571.6716-1.3571 1.5v7.5h-1.0239v-5.1875c0-.5-.1904-1.5-1.1904-1.5-1 0-1.5.6716-1.5 1.5v8.5499c-.9369-.686-2.0209-1.4959-2.4285-1.8624-.7757-.6973-2.0726-.6464-2.6026-.0607-.53.5858-.3974 1.5607 0 2.1214l4.6025 4.9393c1.4286 1.25 3.5 2.5 5.4075 2.5h1.3544c2.4514 0 3.3706-.5607 4.2381-1.25.4542-.3609 1.0803-.9807 1.55-1.75.8501-1.3926 1.2001-4 1.2001-5l-.0001-.0292v-5.9708c0-.8284-.6077-1.5-1.3572-1.5-.7495 0-1.1428.6716-1.1428 1.5v3h-.8939v-5.3103c0-.8284-.4647-1.5-1.2143-1.5-.7495 0-1.2857.6716-1.2857 1.5v5.3103h-.999v-7.5Z",
|
|
16632
16677
|
clipRule: "evenodd"
|
|
16633
16678
|
}
|
|
16634
16679
|
)
|
|
@@ -16784,6 +16829,97 @@ const IconHandPointing = forwardRef(
|
|
|
16784
16829
|
);
|
|
16785
16830
|
IconHandPointing[iconSymbol] = true;
|
|
16786
16831
|
|
|
16832
|
+
const IconHandRaisedFilledNew = forwardRef(
|
|
16833
|
+
(props, forwardRef2) => {
|
|
16834
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
16835
|
+
return createElement(
|
|
16836
|
+
StyledIcon,
|
|
16837
|
+
{
|
|
16838
|
+
...props,
|
|
16839
|
+
debug,
|
|
16840
|
+
"aria-hidden": true,
|
|
16841
|
+
viewBox: "0 0 24 24",
|
|
16842
|
+
fill: "none",
|
|
16843
|
+
ref: forwardRef2
|
|
16844
|
+
},
|
|
16845
|
+
/* @__PURE__ */ jsx(
|
|
16846
|
+
"path",
|
|
16847
|
+
{
|
|
16848
|
+
fill: "currentColor",
|
|
16849
|
+
fillRule: "evenodd",
|
|
16850
|
+
d: "M10.1908 3.5c0-.8284.6076-1.5 1.3572-1.5.7495 0 1.3571.6716 1.3571 1.5v7.5h1.0238v-5.1875c0-.5.1905-1.5 1.1905-1.5 1 0 1.5.6716 1.5 1.5v8.5499c.9368-.686 2.0208-1.4959 2.4285-1.8624.7756-.6973 2.0726-.6464 2.6026-.0607.53.5858.3974 1.5607 0 2.1214l-4.6025 4.9393c-1.4286 1.25-3.5 2.5-5.4076 2.5h-1.3543c-2.4514 0-3.3706-.5607-4.2381-1.25-.4543-.3609-1.0804-.9807-1.55-1.75-.8502-1.3926-1.2002-4-1.2002-5l.0002-.0292v-5.9708c0-.8284.6076-1.5 1.3571-1.5.7496 0 1.1428.6716 1.1428 1.5v3h.894v-5.3103c0-.8284.4647-1.5 1.2142-1.5.7496 0 1.2857.6716 1.2857 1.5v5.3103h.999v-7.5Z",
|
|
16851
|
+
clipRule: "evenodd"
|
|
16852
|
+
}
|
|
16853
|
+
)
|
|
16854
|
+
);
|
|
16855
|
+
}
|
|
16856
|
+
);
|
|
16857
|
+
const IconHandRaisedFilledOld = forwardRef(
|
|
16858
|
+
(props, forwardRef2) => {
|
|
16859
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
16860
|
+
return createElement(
|
|
16861
|
+
StyledIcon,
|
|
16862
|
+
{
|
|
16863
|
+
...props,
|
|
16864
|
+
debug,
|
|
16865
|
+
"aria-hidden": true,
|
|
16866
|
+
viewBox: "0 0 24 24",
|
|
16867
|
+
fill: "none",
|
|
16868
|
+
ref: forwardRef2
|
|
16869
|
+
},
|
|
16870
|
+
/* @__PURE__ */ jsx(
|
|
16871
|
+
"path",
|
|
16872
|
+
{
|
|
16873
|
+
fill: "currentColor",
|
|
16874
|
+
fillRule: "evenodd",
|
|
16875
|
+
d: "M3.5 17c0 6.2701 8.5 8 12.5 3l4.5416-6.3583c.2688-.3763.2456-.8891-.0617-1.2347-.1091-.1227-.1948-.2169-.2049-.222-.165-.1425-.3675-.2175-.5925-.2175-.165 0-.315.045-.45.12-.03.0075-3.2325 1.845-3.2325 1.845v-8.9325c0-.6225-.3775-1-1-1s-1 .3775-1 1v5.25a.75.75 0 0 1-1.5 0v-7.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v7.25a.75.75 0 0 1-1.5 0v-6.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v6.25a.75.75 0 0 1-1.5 0v-4.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v11Z",
|
|
16876
|
+
clipRule: "evenodd"
|
|
16877
|
+
}
|
|
16878
|
+
),
|
|
16879
|
+
/* @__PURE__ */ jsx(
|
|
16880
|
+
"path",
|
|
16881
|
+
{
|
|
16882
|
+
stroke: "currentColor",
|
|
16883
|
+
strokeLinejoin: "round",
|
|
16884
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16885
|
+
d: "M12 12h.0007"
|
|
16886
|
+
}
|
|
16887
|
+
),
|
|
16888
|
+
/* @__PURE__ */ jsx(
|
|
16889
|
+
"path",
|
|
16890
|
+
{
|
|
16891
|
+
stroke: "currentColor",
|
|
16892
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16893
|
+
d: "M12 12v.0001"
|
|
16894
|
+
}
|
|
16895
|
+
)
|
|
16896
|
+
);
|
|
16897
|
+
}
|
|
16898
|
+
);
|
|
16899
|
+
const IconHandRaisedFilled = forwardRef(
|
|
16900
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
16901
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
16902
|
+
return v1 ? /* @__PURE__ */ jsx(
|
|
16903
|
+
IconHandRaisedFilledNew,
|
|
16904
|
+
{
|
|
16905
|
+
...props,
|
|
16906
|
+
size,
|
|
16907
|
+
weight,
|
|
16908
|
+
ref: forwardRef2
|
|
16909
|
+
}
|
|
16910
|
+
) : /* @__PURE__ */ jsx(
|
|
16911
|
+
IconHandRaisedFilledOld,
|
|
16912
|
+
{
|
|
16913
|
+
...props,
|
|
16914
|
+
size,
|
|
16915
|
+
weight,
|
|
16916
|
+
ref: forwardRef2
|
|
16917
|
+
}
|
|
16918
|
+
);
|
|
16919
|
+
}
|
|
16920
|
+
);
|
|
16921
|
+
IconHandRaisedFilled[iconSymbol] = true;
|
|
16922
|
+
|
|
16787
16923
|
const IconHandNew = forwardRef(
|
|
16788
16924
|
(props, forwardRef2) => {
|
|
16789
16925
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -17243,7 +17379,7 @@ const IconHexagon = forwardRef(
|
|
|
17243
17379
|
);
|
|
17244
17380
|
IconHexagon[iconSymbol] = true;
|
|
17245
17381
|
|
|
17246
|
-
const
|
|
17382
|
+
const IconHighlighterColorSelectionNew = forwardRef(
|
|
17247
17383
|
(props, forwardRef2) => {
|
|
17248
17384
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
17249
17385
|
return createElement(
|
|
@@ -17256,29 +17392,119 @@ const IconHighlighterUnderlineNew = forwardRef(
|
|
|
17256
17392
|
fill: "none",
|
|
17257
17393
|
ref: forwardRef2
|
|
17258
17394
|
},
|
|
17395
|
+
/* @__PURE__ */ jsx(
|
|
17396
|
+
"path",
|
|
17397
|
+
{
|
|
17398
|
+
fill: "currentColor",
|
|
17399
|
+
d: "m3.8909 17.0704-.6573-.6573.475 1.5688.1823-.9115Zm4.6479.9296-.1823.9115.8396-.2542-.6573-.6573Zm-1.8592-6.507-.646-.6684-.421.4069.1851.5554.8819-.2939Zm9.8204-9.493.6573-.6573-1.3034-.011.6461.6683Zm5.5 5.5.6514.6632.0059-1.3205-.6573.6573Zm-9.7429 9.5704-.294.8819.5396.1799.4058-.3986-.6514-.6632Zm-5.6928-2.6734-.6573-.6573.6573.6573Zm.4491-1.9026-.8818.294.8818-.294Zm-3.3048 5.4875 4.6479.9296.3646-1.823-4.648-.9296-.3645 1.823Zm.8396-.2542 2.6734-2.6734-1.3146-1.3146-2.6734 2.6734 1.3146 1.3146Zm3.3471-5.5272-.3338-1.0015-1.7638.5879.3339 1.0015 1.7637-.5879Zm-.5696-.0392 9.8204-9.493-1.2922-1.3367-9.8204 9.493 1.2922 1.3367Zm8.517-9.504 5.5 5.5 1.3146-1.3146-5.5-5.5-1.3146 1.3146Zm5.5059 4.1795-9.7429 9.5705 1.3028 1.3263 9.7429-9.5704-1.3028-1.3264Zm-8.7976 9.3517-1.0015-.3338-.5879 1.7638 1.0015.3338.5879-1.7638Zm-3.8553.3399-.8143.8143 1.3147 1.3146.8142-.8143-1.3146-1.3146Zm2.8538-.6737a2.7888 2.7888 0 0 0-2.8538.6737l1.3146 1.3146a.9297.9297 0 0 1 .9513-.2245l.5879-1.7638Zm-4.3279-.8004a2.7887 2.7887 0 0 0 .6737-2.8538l-1.7637.5879a.9297.9297 0 0 1-.2246.9513l1.3146 1.3146Z"
|
|
17400
|
+
}
|
|
17401
|
+
),
|
|
17259
17402
|
/* @__PURE__ */ jsx(
|
|
17260
17403
|
"path",
|
|
17261
17404
|
{
|
|
17262
17405
|
stroke: "currentColor",
|
|
17263
|
-
strokeLinejoin: "bevel",
|
|
17264
17406
|
strokeWidth: "var(--svg-stroke-width)",
|
|
17265
|
-
d: "
|
|
17407
|
+
d: "m13 6 5 5"
|
|
17408
|
+
}
|
|
17409
|
+
)
|
|
17410
|
+
);
|
|
17411
|
+
}
|
|
17412
|
+
);
|
|
17413
|
+
const IconHighlighterColorSelectionOld = forwardRef(
|
|
17414
|
+
(props, forwardRef2) => {
|
|
17415
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
17416
|
+
return createElement(
|
|
17417
|
+
StyledIcon,
|
|
17418
|
+
{
|
|
17419
|
+
...props,
|
|
17420
|
+
debug,
|
|
17421
|
+
"aria-hidden": true,
|
|
17422
|
+
viewBox: "0 0 24 24",
|
|
17423
|
+
fill: "none",
|
|
17424
|
+
ref: forwardRef2
|
|
17425
|
+
},
|
|
17426
|
+
/* @__PURE__ */ jsx("rect", { width: 18, height: 2, x: 3, y: 20, fill: "currentColor", rx: 0.5 }),
|
|
17427
|
+
/* @__PURE__ */ jsx(
|
|
17428
|
+
"path",
|
|
17429
|
+
{
|
|
17430
|
+
stroke: "currentColor",
|
|
17431
|
+
strokeLinecap: "round",
|
|
17432
|
+
strokeLinejoin: "round",
|
|
17433
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17434
|
+
d: "m18 9.8571 3-2.8571-4.5-4.5-3 3"
|
|
17266
17435
|
}
|
|
17267
17436
|
),
|
|
17268
17437
|
/* @__PURE__ */ jsx(
|
|
17269
17438
|
"path",
|
|
17270
17439
|
{
|
|
17271
|
-
|
|
17272
|
-
|
|
17440
|
+
stroke: "currentColor",
|
|
17441
|
+
strokeLinecap: "round",
|
|
17442
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17443
|
+
d: "M11 17h-2l-1 1h-4v-1l1-1 1-1 .5-2.5 2.75-2.75 2.75-2.75 1.5-1.5 4.5 4.3571-7 7.1429Z"
|
|
17273
17444
|
}
|
|
17274
17445
|
),
|
|
17446
|
+
/* @__PURE__ */ jsx(
|
|
17447
|
+
"path",
|
|
17448
|
+
{
|
|
17449
|
+
stroke: "currentColor",
|
|
17450
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17451
|
+
d: "M12 21v.0001"
|
|
17452
|
+
}
|
|
17453
|
+
)
|
|
17454
|
+
);
|
|
17455
|
+
}
|
|
17456
|
+
);
|
|
17457
|
+
const IconHighlighterColorSelection = forwardRef(
|
|
17458
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
17459
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
17460
|
+
return v1 ? /* @__PURE__ */ jsx(
|
|
17461
|
+
IconHighlighterColorSelectionNew,
|
|
17462
|
+
{
|
|
17463
|
+
...props,
|
|
17464
|
+
size,
|
|
17465
|
+
weight,
|
|
17466
|
+
ref: forwardRef2
|
|
17467
|
+
}
|
|
17468
|
+
) : /* @__PURE__ */ jsx(
|
|
17469
|
+
IconHighlighterColorSelectionOld,
|
|
17470
|
+
{
|
|
17471
|
+
...props,
|
|
17472
|
+
size,
|
|
17473
|
+
weight,
|
|
17474
|
+
ref: forwardRef2
|
|
17475
|
+
}
|
|
17476
|
+
);
|
|
17477
|
+
}
|
|
17478
|
+
);
|
|
17479
|
+
IconHighlighterColorSelection[iconSymbol] = true;
|
|
17480
|
+
|
|
17481
|
+
const IconHighlighterUnderlineNew = forwardRef(
|
|
17482
|
+
(props, forwardRef2) => {
|
|
17483
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
17484
|
+
return createElement(
|
|
17485
|
+
StyledIcon,
|
|
17486
|
+
{
|
|
17487
|
+
...props,
|
|
17488
|
+
debug,
|
|
17489
|
+
"aria-hidden": true,
|
|
17490
|
+
viewBox: "0 0 24 24",
|
|
17491
|
+
fill: "none",
|
|
17492
|
+
ref: forwardRef2
|
|
17493
|
+
},
|
|
17275
17494
|
/* @__PURE__ */ jsx(
|
|
17276
17495
|
"path",
|
|
17277
17496
|
{
|
|
17278
17497
|
stroke: "currentColor",
|
|
17279
17498
|
strokeLinejoin: "bevel",
|
|
17280
17499
|
strokeWidth: "var(--svg-stroke-width)",
|
|
17281
|
-
d: "
|
|
17500
|
+
d: "M2.8389 21h18"
|
|
17501
|
+
}
|
|
17502
|
+
),
|
|
17503
|
+
/* @__PURE__ */ jsx(
|
|
17504
|
+
"path",
|
|
17505
|
+
{
|
|
17506
|
+
fill: "currentColor",
|
|
17507
|
+
d: "m3.8909 17.0704-.6573-.6573.475 1.5688.1823-.9115Zm4.6479.9296-.1823.9115.8396-.2542-.6573-.6573Zm-1.8592-6.507-.646-.6684-.421.4069.1851.5554.8819-.2939Zm9.8204-9.493.6573-.6573-1.3034-.011.6461.6683Zm5.5 5.5.6514.6632.0059-1.3205-.6573.6573Zm-9.7429 9.5704-.294.8819.5396.1799.4058-.3986-.6514-.6632Zm-5.6928-2.6734-.6573-.6573.6573.6573Zm.4491-1.9026-.8818.294.8818-.294Zm-3.3048 5.4875 4.6479.9296.3646-1.823-4.648-.9296-.3645 1.823Zm.8396-.2542 2.6734-2.6734-1.3146-1.3146-2.6734 2.6734 1.3146 1.3146Zm3.3471-5.5272-.3338-1.0015-1.7638.5879.3339 1.0015 1.7637-.5879Zm-.5696-.0392 9.8204-9.493-1.2922-1.3367-9.8204 9.493 1.2922 1.3367Zm8.517-9.504 5.5 5.5 1.3146-1.3146-5.5-5.5-1.3146 1.3146Zm5.5059 4.1795-9.7429 9.5705 1.3028 1.3263 9.7429-9.5704-1.3028-1.3264Zm-8.7976 9.3517-1.0015-.3338-.5879 1.7638 1.0015.3338.5879-1.7638Zm-3.8553.3399-.8143.8143 1.3147 1.3146.8142-.8143-1.3146-1.3146Zm2.8538-.6737a2.7888 2.7888 0 0 0-2.8538.6737l1.3146 1.3146a.9297.9297 0 0 1 .9513-.2245l.5879-1.7638Zm-4.3279-.8004a2.7887 2.7887 0 0 0 .6737-2.8538l-1.7637.5879a.9297.9297 0 0 1-.2246.9513l1.3146 1.3146Z"
|
|
17282
17508
|
}
|
|
17283
17509
|
),
|
|
17284
17510
|
/* @__PURE__ */ jsx(
|
|
@@ -17286,7 +17512,7 @@ const IconHighlighterUnderlineNew = forwardRef(
|
|
|
17286
17512
|
{
|
|
17287
17513
|
stroke: "currentColor",
|
|
17288
17514
|
strokeWidth: "var(--svg-stroke-width)",
|
|
17289
|
-
d: "
|
|
17515
|
+
d: "m13 6 5 5"
|
|
17290
17516
|
}
|
|
17291
17517
|
)
|
|
17292
17518
|
);
|
|
@@ -17913,6 +18139,42 @@ const IconInformationMarkCircle = forwardRef(
|
|
|
17913
18139
|
);
|
|
17914
18140
|
IconInformationMarkCircle[iconSymbol] = true;
|
|
17915
18141
|
|
|
18142
|
+
const IconInsights = forwardRef(
|
|
18143
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18144
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
18145
|
+
return createElement(
|
|
18146
|
+
StyledIcon,
|
|
18147
|
+
{
|
|
18148
|
+
...props,
|
|
18149
|
+
weight,
|
|
18150
|
+
debug,
|
|
18151
|
+
"aria-hidden": true,
|
|
18152
|
+
size,
|
|
18153
|
+
viewBox: "0 0 24 24",
|
|
18154
|
+
fill: "none",
|
|
18155
|
+
ref: forwardRef2
|
|
18156
|
+
},
|
|
18157
|
+
/* @__PURE__ */ jsx(
|
|
18158
|
+
"path",
|
|
18159
|
+
{
|
|
18160
|
+
stroke: "currentColor",
|
|
18161
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18162
|
+
d: "M5 17h10c1.1046 0 2-.8954 2-2v-10c0-1.1046-.8954-2-2-2h-10c-1.1046 0-2 .8954-2 2v10c0 1.1046.8954 2 2 2Z"
|
|
18163
|
+
}
|
|
18164
|
+
),
|
|
18165
|
+
/* @__PURE__ */ jsx(
|
|
18166
|
+
"path",
|
|
18167
|
+
{
|
|
18168
|
+
stroke: "currentColor",
|
|
18169
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18170
|
+
d: "M6.0307 17.7085c-.1918 1.0878.5345 2.1251 1.6223 2.3169l9.8481 1.7365c1.0878.1918 2.1251-.5345 2.3169-1.6223l1.7365-9.8481c.1918-1.0878-.5345-2.1251-1.6223-2.317l-3.1397-.5535"
|
|
18171
|
+
}
|
|
18172
|
+
)
|
|
18173
|
+
);
|
|
18174
|
+
}
|
|
18175
|
+
);
|
|
18176
|
+
IconInsights[iconSymbol] = true;
|
|
18177
|
+
|
|
17916
18178
|
const IconKanban = forwardRef(
|
|
17917
18179
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
17918
18180
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -18575,7 +18837,7 @@ const IconLightningNew = forwardRef(
|
|
|
18575
18837
|
stroke: "currentColor",
|
|
18576
18838
|
strokeLinejoin: "bevel",
|
|
18577
18839
|
strokeWidth: "var(--svg-stroke-width)",
|
|
18578
|
-
d: "m4
|
|
18840
|
+
d: "m4 15 8-14v8h8l-8.5 14v-8h-7.5Z"
|
|
18579
18841
|
}
|
|
18580
18842
|
)
|
|
18581
18843
|
);
|
|
@@ -23785,6 +24047,95 @@ const IconPdf = forwardRef(
|
|
|
23785
24047
|
);
|
|
23786
24048
|
IconPdf[iconSymbol] = true;
|
|
23787
24049
|
|
|
24050
|
+
const IconPenColorSelectionNew = forwardRef(
|
|
24051
|
+
(props, forwardRef2) => {
|
|
24052
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
24053
|
+
return createElement(
|
|
24054
|
+
StyledIcon,
|
|
24055
|
+
{
|
|
24056
|
+
...props,
|
|
24057
|
+
debug,
|
|
24058
|
+
"aria-hidden": true,
|
|
24059
|
+
viewBox: "0 0 24 24",
|
|
24060
|
+
fill: "none",
|
|
24061
|
+
ref: forwardRef2
|
|
24062
|
+
},
|
|
24063
|
+
/* @__PURE__ */ jsx(
|
|
24064
|
+
"path",
|
|
24065
|
+
{
|
|
24066
|
+
fill: "currentColor",
|
|
24067
|
+
d: "m5 13-.7071-.7071-.2141.2141-.0594.2969.9806.1961Zm-1 5-.9806-.1961 1.1767 1.1767-.1961-.9806Zm5-1 .1961.9806.297-.0594.214-.2141-.7071-.7071Zm9.5858-12.4142-.7071.707.7071-.707Zm-1.1716-1.1716-.7071.7071.7071-.707Zm-3.5355-.707-9.5858 9.5857 1.4142 1.4142 9.5858-9.5858-1.4142-1.4142Zm-9.8593 10.0967-1 5 1.9612.3922 1-5-1.9612-.3922Zm.1767 6.1767 5-1-.3922-1.9612-5 1 .3922 1.9612Zm5.511-1.2735 9.5858-9.5858-1.4142-1.4142-9.5858 9.5858 1.4142 1.4142Zm9.5858-13.8284-1.1716-1.1716-1.4142 1.4142 1.1716 1.1716 1.4142-1.4142Zm0 4.2426c1.1716-1.1715 1.1716-3.071 0-4.2426l-1.4142 1.4142c.3905.3905.3905 1.0237 0 1.4142l1.4142 1.4142Zm-4-4c.3905-.3905 1.0237-.3905 1.4142 0l1.4142-1.4142c-1.1716-1.1716-3.071-1.1716-4.2426 0l1.4142 1.4142Z"
|
|
24068
|
+
}
|
|
24069
|
+
),
|
|
24070
|
+
/* @__PURE__ */ jsx(
|
|
24071
|
+
"path",
|
|
24072
|
+
{
|
|
24073
|
+
stroke: "currentColor",
|
|
24074
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
24075
|
+
d: "m12.5 5.5 4 4"
|
|
24076
|
+
}
|
|
24077
|
+
)
|
|
24078
|
+
);
|
|
24079
|
+
}
|
|
24080
|
+
);
|
|
24081
|
+
const IconPenColorSelectionOld = forwardRef(
|
|
24082
|
+
(props, forwardRef2) => {
|
|
24083
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
24084
|
+
return createElement(
|
|
24085
|
+
StyledIcon,
|
|
24086
|
+
{
|
|
24087
|
+
...props,
|
|
24088
|
+
debug,
|
|
24089
|
+
"aria-hidden": true,
|
|
24090
|
+
viewBox: "0 0 24 24",
|
|
24091
|
+
fill: "none",
|
|
24092
|
+
ref: forwardRef2
|
|
24093
|
+
},
|
|
24094
|
+
/* @__PURE__ */ jsx(
|
|
24095
|
+
"path",
|
|
24096
|
+
{
|
|
24097
|
+
stroke: "currentColor",
|
|
24098
|
+
strokeLinecap: "round",
|
|
24099
|
+
strokeLinejoin: "round",
|
|
24100
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
24101
|
+
d: "m13.8889 5.5556-7.5718 7.5718a2.0001 2.0001 0 0 0-.547 1.0219l-.6966 3.483c-.035.1749.1193.3291.2942.2942l3.483-.6966a2.0005 2.0005 0 0 0 1.022-.547l7.5717-7.5718m-3.5555-3.5555 2.1413-2.1414c.7811-.781 2.0474-.781 2.8285 0l.7271.7271c.781.781.781 2.0474 0 2.8285l-2.1414 2.1413m-3.5555-3.5555 3.5555 3.5555"
|
|
24102
|
+
}
|
|
24103
|
+
),
|
|
24104
|
+
/* @__PURE__ */ jsx(
|
|
24105
|
+
"path",
|
|
24106
|
+
{
|
|
24107
|
+
stroke: "currentColor",
|
|
24108
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
24109
|
+
d: "M12 15v.0001"
|
|
24110
|
+
}
|
|
24111
|
+
)
|
|
24112
|
+
);
|
|
24113
|
+
}
|
|
24114
|
+
);
|
|
24115
|
+
const IconPenColorSelection = forwardRef(
|
|
24116
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
24117
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
24118
|
+
return v1 ? /* @__PURE__ */ jsx(
|
|
24119
|
+
IconPenColorSelectionNew,
|
|
24120
|
+
{
|
|
24121
|
+
...props,
|
|
24122
|
+
size,
|
|
24123
|
+
weight,
|
|
24124
|
+
ref: forwardRef2
|
|
24125
|
+
}
|
|
24126
|
+
) : /* @__PURE__ */ jsx(
|
|
24127
|
+
IconPenColorSelectionOld,
|
|
24128
|
+
{
|
|
24129
|
+
...props,
|
|
24130
|
+
size,
|
|
24131
|
+
weight,
|
|
24132
|
+
ref: forwardRef2
|
|
24133
|
+
}
|
|
24134
|
+
);
|
|
24135
|
+
}
|
|
24136
|
+
);
|
|
24137
|
+
IconPenColorSelection[iconSymbol] = true;
|
|
24138
|
+
|
|
23788
24139
|
const IconPenTipNew = forwardRef(
|
|
23789
24140
|
(props, forwardRef2) => {
|
|
23790
24141
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -26762,6 +27113,35 @@ const IconQuotes = forwardRef(
|
|
|
26762
27113
|
);
|
|
26763
27114
|
IconQuotes[iconSymbol] = true;
|
|
26764
27115
|
|
|
27116
|
+
const IconRaisedHand = forwardRef(
|
|
27117
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
27118
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
27119
|
+
return createElement(
|
|
27120
|
+
StyledIcon,
|
|
27121
|
+
{
|
|
27122
|
+
...props,
|
|
27123
|
+
weight,
|
|
27124
|
+
debug,
|
|
27125
|
+
"aria-hidden": true,
|
|
27126
|
+
size,
|
|
27127
|
+
viewBox: "0 0 24 24",
|
|
27128
|
+
fill: "none",
|
|
27129
|
+
ref: forwardRef2
|
|
27130
|
+
},
|
|
27131
|
+
/* @__PURE__ */ jsx(
|
|
27132
|
+
"path",
|
|
27133
|
+
{
|
|
27134
|
+
stroke: "currentColor",
|
|
27135
|
+
strokeLinejoin: "bevel",
|
|
27136
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
27137
|
+
d: "M10.088 12v-5.25c0-.9665-.5336-1.75-1.5001-1.75s-1.5.7835-1.5 1.75v5.25-3c0-1-.5-2-1.5-2s-1.5 1-1.5 2v4c0 4.4183 1.7499 8 5.75 8h1.5c2 0 3.619-.8689 5.1661-2.4161l4.0032-4.0031c.6138-.6138.6595-1.592.1075-2.2619-.5638-.6841-1.5612-.8145-2.2819-.2983l-2.2448 1.6081v-6.8787c0-.9665-.5336-1.75-1.5001-1.75s-1.5.7835-1.5 1.75v5.25m-2.9999-2v-5.25c0-.9665.5334-1.75 1.4999-1.75s1.5.7835 1.5 1.75v5"
|
|
27138
|
+
}
|
|
27139
|
+
)
|
|
27140
|
+
);
|
|
27141
|
+
}
|
|
27142
|
+
);
|
|
27143
|
+
IconRaisedHand[iconSymbol] = true;
|
|
27144
|
+
|
|
26765
27145
|
const IconRatio169 = forwardRef(
|
|
26766
27146
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26767
27147
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -27555,11 +27935,11 @@ const IconRectanglePortraitDashSquareTopCenterNew = forwardRef((props, forwardRe
|
|
|
27555
27935
|
{
|
|
27556
27936
|
fill: "currentColor",
|
|
27557
27937
|
fillRule: "evenodd",
|
|
27558
|
-
d: "
|
|
27938
|
+
d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
|
|
27559
27939
|
clipRule: "evenodd"
|
|
27560
27940
|
}
|
|
27561
27941
|
),
|
|
27562
|
-
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8
|
|
27942
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M8 2h8v8h-8v-8Z" })
|
|
27563
27943
|
);
|
|
27564
27944
|
});
|
|
27565
27945
|
const IconRectanglePortraitDashSquareTopCenterOld = forwardRef((props, forwardRef2) => {
|
|
@@ -27624,7 +28004,7 @@ const IconRectanglePortraitDashSquareTopLeftNew = forwardRef((props, forwardRef2
|
|
|
27624
28004
|
{
|
|
27625
28005
|
fill: "currentColor",
|
|
27626
28006
|
fillRule: "evenodd",
|
|
27627
|
-
d: "
|
|
28007
|
+
d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
|
|
27628
28008
|
clipRule: "evenodd"
|
|
27629
28009
|
}
|
|
27630
28010
|
),
|
|
@@ -27634,7 +28014,7 @@ const IconRectanglePortraitDashSquareTopLeftNew = forwardRef((props, forwardRef2
|
|
|
27634
28014
|
fill: "currentColor",
|
|
27635
28015
|
stroke: "currentColor",
|
|
27636
28016
|
strokeWidth: "var(--svg-stroke-width)",
|
|
27637
|
-
d: "
|
|
28017
|
+
d: "M3 6c0-1.6569 1.3431-3 3-3h5v7h-8v-4Z"
|
|
27638
28018
|
}
|
|
27639
28019
|
)
|
|
27640
28020
|
);
|
|
@@ -27702,7 +28082,7 @@ const IconRectanglePortraitDashNew = forwardRef(
|
|
|
27702
28082
|
{
|
|
27703
28083
|
fill: "currentColor",
|
|
27704
28084
|
fillRule: "evenodd",
|
|
27705
|
-
d: "
|
|
28085
|
+
d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
|
|
27706
28086
|
clipRule: "evenodd"
|
|
27707
28087
|
}
|
|
27708
28088
|
)
|
|
@@ -27819,10 +28199,10 @@ const IconRectanglePortraitSquareTopLeftNew = forwardRef((props, forwardRef2) =>
|
|
|
27819
28199
|
/* @__PURE__ */ jsx(
|
|
27820
28200
|
"rect",
|
|
27821
28201
|
{
|
|
27822
|
-
width:
|
|
27823
|
-
height:
|
|
27824
|
-
x:
|
|
27825
|
-
y:
|
|
28202
|
+
width: 18,
|
|
28203
|
+
height: 18,
|
|
28204
|
+
x: 3,
|
|
28205
|
+
y: 3,
|
|
27826
28206
|
stroke: "currentColor",
|
|
27827
28207
|
strokeWidth: "var(--svg-stroke-width)",
|
|
27828
28208
|
rx: 2
|
|
@@ -27834,7 +28214,7 @@ const IconRectanglePortraitSquareTopLeftNew = forwardRef((props, forwardRef2) =>
|
|
|
27834
28214
|
fill: "currentColor",
|
|
27835
28215
|
stroke: "currentColor",
|
|
27836
28216
|
strokeWidth: "var(--svg-stroke-width)",
|
|
27837
|
-
d: "
|
|
28217
|
+
d: "M3 6c0-1.6569 1.3431-3 3-3h5v7h-8v-4Z"
|
|
27838
28218
|
}
|
|
27839
28219
|
)
|
|
27840
28220
|
);
|
|
@@ -29432,7 +29812,7 @@ const IconSentimentNew = forwardRef(
|
|
|
29432
29812
|
fill: "currentColor",
|
|
29433
29813
|
stroke: "currentColor",
|
|
29434
29814
|
strokeWidth: "var(--svg-stroke-width)",
|
|
29435
|
-
d: "M10.3333 6.
|
|
29815
|
+
d: "M10.3333 6.3333h1.3334v1.3334h-1.3334v-1.3334ZM16.3333 12.3333h1.3334v1.3334h-1.3334v-1.3334Z"
|
|
29436
29816
|
}
|
|
29437
29817
|
),
|
|
29438
29818
|
/* @__PURE__ */ jsx(
|
|
@@ -29451,7 +29831,7 @@ const IconSentimentNew = forwardRef(
|
|
|
29451
29831
|
fill: "currentColor",
|
|
29452
29832
|
stroke: "currentColor",
|
|
29453
29833
|
strokeWidth: "var(--svg-stroke-width)",
|
|
29454
|
-
d: "M6.
|
|
29834
|
+
d: "M6.3333 6.3333h1.3334v1.3334h-1.3334v-1.3334Z"
|
|
29455
29835
|
}
|
|
29456
29836
|
),
|
|
29457
29837
|
/* @__PURE__ */ jsx(
|
|
@@ -31323,7 +31703,115 @@ const IconSmileyStickerOld = forwardRef(
|
|
|
31323
31703
|
strokeLinecap: "round",
|
|
31324
31704
|
strokeLinejoin: "round",
|
|
31325
31705
|
strokeWidth: "var(--svg-stroke-width)",
|
|
31326
|
-
d: "M12 21c-4.9706 0-9-4.0294-9-9s4.0294-9 9-9 9 4.0294 9 9m-9 9 9-9m-9 9s-.7066-2.8265.8501-5.5096m8.1499-3.4904s-4-1-7 2c-.4782.4782-.8547.9817-1.1499 1.4904m-4.8501-1.4904c1.0798 1.0798 2.7426 1.5766 4.3589 1.4904h.4912"
|
|
31706
|
+
d: "M12 21c-4.9706 0-9-4.0294-9-9s4.0294-9 9-9 9 4.0294 9 9m-9 9 9-9m-9 9s-.7066-2.8265.8501-5.5096m8.1499-3.4904s-4-1-7 2c-.4782.4782-.8547.9817-1.1499 1.4904m-4.8501-1.4904c1.0798 1.0798 2.7426 1.5766 4.3589 1.4904h.4912"
|
|
31707
|
+
}
|
|
31708
|
+
),
|
|
31709
|
+
/* @__PURE__ */ jsx(
|
|
31710
|
+
"path",
|
|
31711
|
+
{
|
|
31712
|
+
stroke: "currentColor",
|
|
31713
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
31714
|
+
d: "M12 19v.0001"
|
|
31715
|
+
}
|
|
31716
|
+
)
|
|
31717
|
+
);
|
|
31718
|
+
}
|
|
31719
|
+
);
|
|
31720
|
+
const IconSmileySticker = forwardRef(
|
|
31721
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31722
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
31723
|
+
return v1 ? /* @__PURE__ */ jsx(
|
|
31724
|
+
IconSmileyStickerNew,
|
|
31725
|
+
{
|
|
31726
|
+
...props,
|
|
31727
|
+
size,
|
|
31728
|
+
weight,
|
|
31729
|
+
ref: forwardRef2
|
|
31730
|
+
}
|
|
31731
|
+
) : /* @__PURE__ */ jsx(
|
|
31732
|
+
IconSmileyStickerOld,
|
|
31733
|
+
{
|
|
31734
|
+
...props,
|
|
31735
|
+
size,
|
|
31736
|
+
weight,
|
|
31737
|
+
ref: forwardRef2
|
|
31738
|
+
}
|
|
31739
|
+
);
|
|
31740
|
+
}
|
|
31741
|
+
);
|
|
31742
|
+
IconSmileySticker[iconSymbol] = true;
|
|
31743
|
+
|
|
31744
|
+
const IconSmileyNew = forwardRef(
|
|
31745
|
+
(props, forwardRef2) => {
|
|
31746
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
31747
|
+
return createElement(
|
|
31748
|
+
StyledIcon,
|
|
31749
|
+
{
|
|
31750
|
+
...props,
|
|
31751
|
+
debug,
|
|
31752
|
+
"aria-hidden": true,
|
|
31753
|
+
viewBox: "0 0 24 24",
|
|
31754
|
+
fill: "none",
|
|
31755
|
+
ref: forwardRef2
|
|
31756
|
+
},
|
|
31757
|
+
/* @__PURE__ */ jsx(
|
|
31758
|
+
"path",
|
|
31759
|
+
{
|
|
31760
|
+
stroke: "currentColor",
|
|
31761
|
+
strokeLinecap: "square",
|
|
31762
|
+
strokeLinejoin: "round",
|
|
31763
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
31764
|
+
d: "M21 12c0 4.9706-4.0294 9-9 9s-9-4.0294-9-9 4.0294-9 9-9 9 4.0294 9 9Z"
|
|
31765
|
+
}
|
|
31766
|
+
),
|
|
31767
|
+
/* @__PURE__ */ jsx(
|
|
31768
|
+
"path",
|
|
31769
|
+
{
|
|
31770
|
+
fill: "currentColor",
|
|
31771
|
+
stroke: "currentColor",
|
|
31772
|
+
d: "M8.4507 8.5h1v1h-1v-1ZM14.4507 8.5h1v1h-1v-1Z"
|
|
31773
|
+
}
|
|
31774
|
+
),
|
|
31775
|
+
/* @__PURE__ */ jsx(
|
|
31776
|
+
"path",
|
|
31777
|
+
{
|
|
31778
|
+
fill: "currentColor",
|
|
31779
|
+
fillRule: "evenodd",
|
|
31780
|
+
d: "M7.1001 13c.017.0838.0362.1669.0574.2493.555 2.1563 2.5112 3.7507 4.8424 3.7507 2.4189 0 4.4367-1.7178 4.9-4h-2.0707c-.4119 1.1652-1.5231 2-2.8293 2-1.3052 0-2.4178-.8343-2.8296-2h-2.0702Z",
|
|
31781
|
+
clipRule: "evenodd"
|
|
31782
|
+
}
|
|
31783
|
+
)
|
|
31784
|
+
);
|
|
31785
|
+
}
|
|
31786
|
+
);
|
|
31787
|
+
const IconSmileyOld = forwardRef(
|
|
31788
|
+
(props, forwardRef2) => {
|
|
31789
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
31790
|
+
return createElement(
|
|
31791
|
+
StyledIcon,
|
|
31792
|
+
{
|
|
31793
|
+
...props,
|
|
31794
|
+
debug,
|
|
31795
|
+
"aria-hidden": true,
|
|
31796
|
+
viewBox: "0 0 24 24",
|
|
31797
|
+
fill: "none",
|
|
31798
|
+
ref: forwardRef2
|
|
31799
|
+
},
|
|
31800
|
+
/* @__PURE__ */ jsx(
|
|
31801
|
+
"path",
|
|
31802
|
+
{
|
|
31803
|
+
fill: "currentColor",
|
|
31804
|
+
d: "M11 8.5c0 .8284-.6716 1.5-1.5 1.5s-1.5-.6716-1.5-1.5.6716-1.5 1.5-1.5 1.5.6716 1.5 1.5ZM16 8.5c0 .8284-.6716 1.5-1.5 1.5s-1.5-.6716-1.5-1.5.6716-1.5 1.5-1.5 1.5.6716 1.5 1.5Z"
|
|
31805
|
+
}
|
|
31806
|
+
),
|
|
31807
|
+
/* @__PURE__ */ jsx(
|
|
31808
|
+
"path",
|
|
31809
|
+
{
|
|
31810
|
+
stroke: "currentColor",
|
|
31811
|
+
strokeLinecap: "round",
|
|
31812
|
+
strokeLinejoin: "round",
|
|
31813
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
31814
|
+
d: "M8 14c2 2 6 2 8 0m5-2c0 4.9706-4.0294 9-9 9s-9-4.0294-9-9 4.0294-9 9-9 9 4.0294 9 9Z"
|
|
31327
31815
|
}
|
|
31328
31816
|
),
|
|
31329
31817
|
/* @__PURE__ */ jsx(
|
|
@@ -31331,88 +31819,31 @@ const IconSmileyStickerOld = forwardRef(
|
|
|
31331
31819
|
{
|
|
31332
31820
|
stroke: "currentColor",
|
|
31333
31821
|
strokeWidth: "var(--svg-stroke-width)",
|
|
31334
|
-
d: "M12
|
|
31822
|
+
d: "M12 16v.0001"
|
|
31335
31823
|
}
|
|
31336
31824
|
)
|
|
31337
31825
|
);
|
|
31338
31826
|
}
|
|
31339
31827
|
);
|
|
31340
|
-
const
|
|
31828
|
+
const IconSmiley = forwardRef(
|
|
31341
31829
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31342
31830
|
const [v1] = useNewDesignLanguageIcons();
|
|
31343
|
-
return v1 ? /* @__PURE__ */ jsx(
|
|
31344
|
-
IconSmileyStickerNew,
|
|
31345
|
-
{
|
|
31346
|
-
...props,
|
|
31347
|
-
size,
|
|
31348
|
-
weight,
|
|
31349
|
-
ref: forwardRef2
|
|
31350
|
-
}
|
|
31351
|
-
) : /* @__PURE__ */ jsx(
|
|
31352
|
-
IconSmileyStickerOld,
|
|
31353
|
-
{
|
|
31354
|
-
...props,
|
|
31355
|
-
size,
|
|
31356
|
-
weight,
|
|
31357
|
-
ref: forwardRef2
|
|
31358
|
-
}
|
|
31359
|
-
);
|
|
31831
|
+
return v1 ? /* @__PURE__ */ jsx(IconSmileyNew, { ...props, size, weight, ref: forwardRef2 }) : /* @__PURE__ */ jsx(IconSmileyOld, { ...props, size, weight, ref: forwardRef2 });
|
|
31360
31832
|
}
|
|
31361
31833
|
);
|
|
31362
|
-
|
|
31834
|
+
IconSmiley[iconSymbol] = true;
|
|
31363
31835
|
|
|
31364
|
-
const
|
|
31365
|
-
(props, forwardRef2) => {
|
|
31366
|
-
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
31367
|
-
return createElement(
|
|
31368
|
-
StyledIcon,
|
|
31369
|
-
{
|
|
31370
|
-
...props,
|
|
31371
|
-
debug,
|
|
31372
|
-
"aria-hidden": true,
|
|
31373
|
-
viewBox: "0 0 24 24",
|
|
31374
|
-
fill: "none",
|
|
31375
|
-
ref: forwardRef2
|
|
31376
|
-
},
|
|
31377
|
-
/* @__PURE__ */ jsx(
|
|
31378
|
-
"path",
|
|
31379
|
-
{
|
|
31380
|
-
stroke: "currentColor",
|
|
31381
|
-
strokeLinecap: "square",
|
|
31382
|
-
strokeLinejoin: "round",
|
|
31383
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
31384
|
-
d: "M21 12c0 4.9706-4.0294 9-9 9s-9-4.0294-9-9 4.0294-9 9-9 9 4.0294 9 9Z"
|
|
31385
|
-
}
|
|
31386
|
-
),
|
|
31387
|
-
/* @__PURE__ */ jsx(
|
|
31388
|
-
"path",
|
|
31389
|
-
{
|
|
31390
|
-
fill: "currentColor",
|
|
31391
|
-
stroke: "currentColor",
|
|
31392
|
-
d: "M8.4507 8.5h1v1h-1v-1ZM14.4507 8.5h1v1h-1v-1Z"
|
|
31393
|
-
}
|
|
31394
|
-
),
|
|
31395
|
-
/* @__PURE__ */ jsx(
|
|
31396
|
-
"path",
|
|
31397
|
-
{
|
|
31398
|
-
fill: "currentColor",
|
|
31399
|
-
fillRule: "evenodd",
|
|
31400
|
-
d: "M7.1001 13c.017.0838.0362.1669.0574.2493.555 2.1563 2.5112 3.7507 4.8424 3.7507 2.4189 0 4.4367-1.7178 4.9-4h-2.0707c-.4119 1.1652-1.5231 2-2.8293 2-1.3052 0-2.4178-.8343-2.8296-2h-2.0702Z",
|
|
31401
|
-
clipRule: "evenodd"
|
|
31402
|
-
}
|
|
31403
|
-
)
|
|
31404
|
-
);
|
|
31405
|
-
}
|
|
31406
|
-
);
|
|
31407
|
-
const IconSmileyOld = forwardRef(
|
|
31408
|
-
(props, forwardRef2) => {
|
|
31836
|
+
const IconSocialAdo = forwardRef(
|
|
31837
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31409
31838
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
31410
31839
|
return createElement(
|
|
31411
31840
|
StyledIcon,
|
|
31412
31841
|
{
|
|
31413
31842
|
...props,
|
|
31843
|
+
weight,
|
|
31414
31844
|
debug,
|
|
31415
31845
|
"aria-hidden": true,
|
|
31846
|
+
size,
|
|
31416
31847
|
viewBox: "0 0 24 24",
|
|
31417
31848
|
fill: "none",
|
|
31418
31849
|
ref: forwardRef2
|
|
@@ -31421,17 +31852,7 @@ const IconSmileyOld = forwardRef(
|
|
|
31421
31852
|
"path",
|
|
31422
31853
|
{
|
|
31423
31854
|
fill: "currentColor",
|
|
31424
|
-
d: "
|
|
31425
|
-
}
|
|
31426
|
-
),
|
|
31427
|
-
/* @__PURE__ */ jsx(
|
|
31428
|
-
"path",
|
|
31429
|
-
{
|
|
31430
|
-
stroke: "currentColor",
|
|
31431
|
-
strokeLinecap: "round",
|
|
31432
|
-
strokeLinejoin: "round",
|
|
31433
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
31434
|
-
d: "M8 14c2 2 6 2 8 0m5-2c0 4.9706-4.0294 9-9 9s-9-4.0294-9-9 4.0294-9 9-9 9 4.0294 9 9Z"
|
|
31855
|
+
d: "M22 5.7453v12.1598l-5 4.0949-7.75-2.8215v2.7965l-4.425-5.6429 12.825.9113v-10.9488l4.35-.5493Zm-4.35.5493-7.0875-4.2946v2.859l-6.5875 1.935-1.975 2.5343v5.7553l2.825 1.2485v-7.3783l12.825-2.6592Z"
|
|
31435
31856
|
}
|
|
31436
31857
|
),
|
|
31437
31858
|
/* @__PURE__ */ jsx(
|
|
@@ -31439,21 +31860,15 @@ const IconSmileyOld = forwardRef(
|
|
|
31439
31860
|
{
|
|
31440
31861
|
stroke: "currentColor",
|
|
31441
31862
|
strokeWidth: "var(--svg-stroke-width)",
|
|
31442
|
-
d: "M12
|
|
31863
|
+
d: "M12 6v.0001"
|
|
31443
31864
|
}
|
|
31444
31865
|
)
|
|
31445
31866
|
);
|
|
31446
31867
|
}
|
|
31447
31868
|
);
|
|
31448
|
-
|
|
31449
|
-
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31450
|
-
const [v1] = useNewDesignLanguageIcons();
|
|
31451
|
-
return v1 ? /* @__PURE__ */ jsx(IconSmileyNew, { ...props, size, weight, ref: forwardRef2 }) : /* @__PURE__ */ jsx(IconSmileyOld, { ...props, size, weight, ref: forwardRef2 });
|
|
31452
|
-
}
|
|
31453
|
-
);
|
|
31454
|
-
IconSmiley[iconSymbol] = true;
|
|
31869
|
+
IconSocialAdo[iconSymbol] = true;
|
|
31455
31870
|
|
|
31456
|
-
const
|
|
31871
|
+
const IconSocialAsana = forwardRef(
|
|
31457
31872
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31458
31873
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
31459
31874
|
return createElement(
|
|
@@ -31472,21 +31887,15 @@ const IconSocialAdo = forwardRef(
|
|
|
31472
31887
|
"path",
|
|
31473
31888
|
{
|
|
31474
31889
|
fill: "currentColor",
|
|
31475
|
-
|
|
31476
|
-
|
|
31477
|
-
|
|
31478
|
-
/* @__PURE__ */ jsx(
|
|
31479
|
-
"path",
|
|
31480
|
-
{
|
|
31481
|
-
stroke: "currentColor",
|
|
31482
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
31483
|
-
d: "M12 6v.0001"
|
|
31890
|
+
fillRule: "evenodd",
|
|
31891
|
+
d: "M17.6504 12.6201c-2.4023 0-4.3496 1.9474-4.3496 4.3498 0 2.4022 1.9473 4.3497 4.3496 4.3497 2.4023 0 4.3496-1.9475 4.3496-4.3497 0-2.4024-1.9473-4.3498-4.3496-4.3498Zm-11.3008.0003c-2.4022 0-4.3496 1.9471-4.3496 4.3495 0 2.4022 1.9474 4.3497 4.3496 4.3497 2.4024 0 4.3499-1.9475 4.3499-4.3497 0-2.4024-1.9475-4.3495-4.3499-4.3495Zm10-5.4375c0 2.4024-1.9474 4.35-4.3496 4.35-2.4023 0-4.3496-1.9476-4.3496-4.35 0-2.402 1.9473-4.3496 4.3496-4.3496 2.4022 0 4.3496 1.9476 4.3496 4.3496Z",
|
|
31892
|
+
clipRule: "evenodd"
|
|
31484
31893
|
}
|
|
31485
31894
|
)
|
|
31486
31895
|
);
|
|
31487
31896
|
}
|
|
31488
31897
|
);
|
|
31489
|
-
|
|
31898
|
+
IconSocialAsana[iconSymbol] = true;
|
|
31490
31899
|
|
|
31491
31900
|
const IconSocialDrawio = forwardRef(
|
|
31492
31901
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -32981,7 +33390,7 @@ const IconSquareLineSquareDashedNew = forwardRef(
|
|
|
32981
33390
|
{
|
|
32982
33391
|
fill: "currentColor",
|
|
32983
33392
|
fillRule: "evenodd",
|
|
32984
|
-
d: "
|
|
33393
|
+
d: "M5.3333 4c-.6136 0-1.3333.7197-1.3333 1.3333v2.6667h-2v-2.6667c0-1.841 1.4924-3.3333 3.3333-3.3333h2.6667v2h-2.6667Zm8.6667 0h-4v-2h4v2Zm4.6667 0h-2.6667v-2h2.6667c1.8409 0 3.3333 1.4924 3.3333 3.3333v2.6667h-2v-2.6667c0-.6136-.7197-1.3333-1.3333-1.3333Zm-14.6667 6v4h-2v-4h2Zm16 4v-4h2v4h-2Zm-16 2v2.6667c0 .6136.8864 1.3333 1.5 1.3333h2.5v2h-2.6667c-1.841 0-3.3333-1.4924-3.3333-3.3333v-2.6667h2Zm16 2.6667v-2.6667h2v2.6667c0 1.8409-1.4924 3.3333-3.3333 3.3333h-2.6667v-2h2.6667c.6136 0 1.3333-.7197 1.3333-1.3333Zm-10 1.3333h4v2h-4v-2Z",
|
|
32985
33394
|
clipRule: "evenodd"
|
|
32986
33395
|
}
|
|
32987
33396
|
),
|
|
@@ -32990,7 +33399,7 @@ const IconSquareLineSquareDashedNew = forwardRef(
|
|
|
32990
33399
|
{
|
|
32991
33400
|
stroke: "currentColor",
|
|
32992
33401
|
strokeWidth: "var(--svg-stroke-width)",
|
|
32993
|
-
d: "
|
|
33402
|
+
d: "M3 5c0-1.1046.8954-2 2-2h8v10h-10v-8Z"
|
|
32994
33403
|
}
|
|
32995
33404
|
)
|
|
32996
33405
|
);
|
|
@@ -35826,6 +36235,133 @@ const IconTasks = forwardRef(
|
|
|
35826
36235
|
);
|
|
35827
36236
|
IconTasks[iconSymbol] = true;
|
|
35828
36237
|
|
|
36238
|
+
const IconTextAColorSelectionNew = forwardRef(
|
|
36239
|
+
(props, forwardRef2) => {
|
|
36240
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
36241
|
+
return createElement(
|
|
36242
|
+
StyledIcon,
|
|
36243
|
+
{
|
|
36244
|
+
...props,
|
|
36245
|
+
debug,
|
|
36246
|
+
"aria-hidden": true,
|
|
36247
|
+
viewBox: "0 0 24 24",
|
|
36248
|
+
fill: "none",
|
|
36249
|
+
ref: forwardRef2
|
|
36250
|
+
},
|
|
36251
|
+
/* @__PURE__ */ jsx(
|
|
36252
|
+
"path",
|
|
36253
|
+
{
|
|
36254
|
+
fill: "currentColor",
|
|
36255
|
+
d: "m6.077 15.6154-.3847.9231 1.8462.7692.3846-.9231-1.8462-.7692Zm5.923-11.6154.9231-.3846h-1.8462l.9231.3846Zm4.0769 12.3846.3846.9231 1.8462-.7692-.3846-.9231-1.8462.7692Zm-5-12 3.75 9 1.8462-.7692-3.75-9-1.8462.7692Zm3.75 9 1.25 3 1.8462-.7692-1.25-3-1.8462.7692Zm-6.9038 3 1.25-3-1.8462-.7692-1.25 3 1.8462.7692Zm1.25-3 3.75-9-1.8462-.7692-3.75 9 1.8462.7692Zm6.5769-1.3846h-7.5v2h7.5v-2Z"
|
|
36256
|
+
}
|
|
36257
|
+
)
|
|
36258
|
+
);
|
|
36259
|
+
}
|
|
36260
|
+
);
|
|
36261
|
+
const IconTextAColorSelectionOld = forwardRef(
|
|
36262
|
+
(props, forwardRef2) => {
|
|
36263
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
36264
|
+
return createElement(
|
|
36265
|
+
StyledIcon,
|
|
36266
|
+
{
|
|
36267
|
+
...props,
|
|
36268
|
+
debug,
|
|
36269
|
+
"aria-hidden": true,
|
|
36270
|
+
viewBox: "0 0 24 24",
|
|
36271
|
+
fill: "none",
|
|
36272
|
+
ref: forwardRef2
|
|
36273
|
+
},
|
|
36274
|
+
/* @__PURE__ */ jsx(
|
|
36275
|
+
"path",
|
|
36276
|
+
{
|
|
36277
|
+
stroke: "currentColor",
|
|
36278
|
+
strokeLinecap: "round",
|
|
36279
|
+
strokeLinejoin: "round",
|
|
36280
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36281
|
+
d: "m7 16 1.25-3m8.75 3-1.25-3m0 0-3.75-9-3.75 9m7.5 0h-7.5"
|
|
36282
|
+
}
|
|
36283
|
+
),
|
|
36284
|
+
/* @__PURE__ */ jsx(
|
|
36285
|
+
"path",
|
|
36286
|
+
{
|
|
36287
|
+
stroke: "currentColor",
|
|
36288
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36289
|
+
d: "M12 13v.0001"
|
|
36290
|
+
}
|
|
36291
|
+
)
|
|
36292
|
+
);
|
|
36293
|
+
}
|
|
36294
|
+
);
|
|
36295
|
+
const IconTextAColorSelection = forwardRef(
|
|
36296
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
36297
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
36298
|
+
return v1 ? /* @__PURE__ */ jsx(
|
|
36299
|
+
IconTextAColorSelectionNew,
|
|
36300
|
+
{
|
|
36301
|
+
...props,
|
|
36302
|
+
size,
|
|
36303
|
+
weight,
|
|
36304
|
+
ref: forwardRef2
|
|
36305
|
+
}
|
|
36306
|
+
) : /* @__PURE__ */ jsx(
|
|
36307
|
+
IconTextAColorSelectionOld,
|
|
36308
|
+
{
|
|
36309
|
+
...props,
|
|
36310
|
+
size,
|
|
36311
|
+
weight,
|
|
36312
|
+
ref: forwardRef2
|
|
36313
|
+
}
|
|
36314
|
+
);
|
|
36315
|
+
}
|
|
36316
|
+
);
|
|
36317
|
+
IconTextAColorSelection[iconSymbol] = true;
|
|
36318
|
+
|
|
36319
|
+
const IconTextAHorizontal = forwardRef(
|
|
36320
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
36321
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
36322
|
+
return createElement(
|
|
36323
|
+
StyledIcon,
|
|
36324
|
+
{
|
|
36325
|
+
...props,
|
|
36326
|
+
weight,
|
|
36327
|
+
debug,
|
|
36328
|
+
"aria-hidden": true,
|
|
36329
|
+
size,
|
|
36330
|
+
viewBox: "0 0 24 24",
|
|
36331
|
+
fill: "none",
|
|
36332
|
+
ref: forwardRef2
|
|
36333
|
+
},
|
|
36334
|
+
/* @__PURE__ */ jsx(
|
|
36335
|
+
"path",
|
|
36336
|
+
{
|
|
36337
|
+
fill: "currentColor",
|
|
36338
|
+
d: "m7.0715 11.6286-.3714.9285 1.857.7428.3714-.9285-1.857-.7428Zm4.9285-9.6286.9285-.3714h-1.857l.9285.3714Zm3.0715 10.3714.3714.9285 1.857-.7428-.3714-.9285-1.857.7428Zm-4-10 3 7.5 1.857-.7428-3-7.5-1.857.7428Zm3 7.5 1 2.5 1.857-.7428-1-2.5-1.857.7428Zm-5.143 2.5 1-2.5-1.857-.7428-1 2.5 1.857.7428Zm1-2.5 3-7.5-1.857-.7428-3 7.5 1.857.7428Zm5.0715-1.3714h-6v2h6v-2Z"
|
|
36339
|
+
}
|
|
36340
|
+
),
|
|
36341
|
+
/* @__PURE__ */ jsx(
|
|
36342
|
+
"path",
|
|
36343
|
+
{
|
|
36344
|
+
stroke: "currentColor",
|
|
36345
|
+
strokeLinecap: "square",
|
|
36346
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36347
|
+
d: "M4 18h17"
|
|
36348
|
+
}
|
|
36349
|
+
),
|
|
36350
|
+
/* @__PURE__ */ jsx(
|
|
36351
|
+
"path",
|
|
36352
|
+
{
|
|
36353
|
+
stroke: "currentColor",
|
|
36354
|
+
strokeLinecap: "square",
|
|
36355
|
+
strokeLinejoin: "bevel",
|
|
36356
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36357
|
+
d: "m19 21 2.5-3-2.5-3"
|
|
36358
|
+
}
|
|
36359
|
+
)
|
|
36360
|
+
);
|
|
36361
|
+
}
|
|
36362
|
+
);
|
|
36363
|
+
IconTextAHorizontal[iconSymbol] = true;
|
|
36364
|
+
|
|
35829
36365
|
const IconTextAUnderlineNew = forwardRef(
|
|
35830
36366
|
(props, forwardRef2) => {
|
|
35831
36367
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -35916,6 +36452,52 @@ const IconTextAUnderline = forwardRef(
|
|
|
35916
36452
|
);
|
|
35917
36453
|
IconTextAUnderline[iconSymbol] = true;
|
|
35918
36454
|
|
|
36455
|
+
const IconTextAVertical = forwardRef(
|
|
36456
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
36457
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
36458
|
+
return createElement(
|
|
36459
|
+
StyledIcon,
|
|
36460
|
+
{
|
|
36461
|
+
...props,
|
|
36462
|
+
weight,
|
|
36463
|
+
debug,
|
|
36464
|
+
"aria-hidden": true,
|
|
36465
|
+
size,
|
|
36466
|
+
viewBox: "0 0 24 24",
|
|
36467
|
+
fill: "none",
|
|
36468
|
+
ref: forwardRef2
|
|
36469
|
+
},
|
|
36470
|
+
/* @__PURE__ */ jsx(
|
|
36471
|
+
"path",
|
|
36472
|
+
{
|
|
36473
|
+
fill: "currentColor",
|
|
36474
|
+
d: "m11.6286 18.9285.9285.3714.7428-1.857-.9285-.3714-.7428 1.857Zm-9.6286-4.9285-.3714-.9285v1.857l.3714-.9285Zm10.3714-3.0715.9285-.3714-.7428-1.857-.9285.3714.7428 1.857Zm-10 4 7.5-3-.7428-1.857-7.5 3 .7428 1.857Zm7.5-3 2.5-1-.7428-1.857-2.5 1 .7428 1.857Zm2.5 5.143-2.5-1-.7428 1.857 2.5 1 .7428-1.857Zm-2.5-1-7.5-3-.7428 1.857 7.5 3 .7428-1.857Zm-1.3714-5.0715v6h2v-6h-2Z"
|
|
36475
|
+
}
|
|
36476
|
+
),
|
|
36477
|
+
/* @__PURE__ */ jsx(
|
|
36478
|
+
"path",
|
|
36479
|
+
{
|
|
36480
|
+
stroke: "currentColor",
|
|
36481
|
+
strokeLinecap: "square",
|
|
36482
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36483
|
+
d: "M18 20v-16"
|
|
36484
|
+
}
|
|
36485
|
+
),
|
|
36486
|
+
/* @__PURE__ */ jsx(
|
|
36487
|
+
"path",
|
|
36488
|
+
{
|
|
36489
|
+
stroke: "currentColor",
|
|
36490
|
+
strokeLinecap: "square",
|
|
36491
|
+
strokeLinejoin: "bevel",
|
|
36492
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36493
|
+
d: "m21 6-3-2.5-3 2.5"
|
|
36494
|
+
}
|
|
36495
|
+
)
|
|
36496
|
+
);
|
|
36497
|
+
}
|
|
36498
|
+
);
|
|
36499
|
+
IconTextAVertical[iconSymbol] = true;
|
|
36500
|
+
|
|
35919
36501
|
const IconTextAaNew = forwardRef(
|
|
35920
36502
|
(props, forwardRef2) => {
|
|
35921
36503
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -40989,5 +41571,5 @@ const IconWifi = forwardRef(
|
|
|
40989
41571
|
);
|
|
40990
41572
|
IconWifi[iconSymbol] = true;
|
|
40991
41573
|
|
|
40992
|
-
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftRightDotted, 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 };
|
|
41574
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftRightDotted, 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, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, 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, IconPenColorSelection, 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, IconRaisedHand, 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, IconSocialAsana, 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, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, 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 };
|
|
40993
41575
|
//# sourceMappingURL=module.js.map
|