@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/main.js
CHANGED
|
@@ -1140,6 +1140,51 @@ const IconAlignmentScale = react.forwardRef(
|
|
|
1140
1140
|
);
|
|
1141
1141
|
IconAlignmentScale[designSystemBaseIcon.iconSymbol] = true;
|
|
1142
1142
|
|
|
1143
|
+
const IconAltTextUnderline = react.forwardRef(
|
|
1144
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1145
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1146
|
+
return react.createElement(
|
|
1147
|
+
StyledIcon,
|
|
1148
|
+
{
|
|
1149
|
+
...props,
|
|
1150
|
+
weight,
|
|
1151
|
+
debug,
|
|
1152
|
+
"aria-hidden": true,
|
|
1153
|
+
size,
|
|
1154
|
+
viewBox: "0 0 24 24",
|
|
1155
|
+
fill: "none",
|
|
1156
|
+
ref: forwardRef2
|
|
1157
|
+
},
|
|
1158
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1159
|
+
"path",
|
|
1160
|
+
{
|
|
1161
|
+
stroke: "currentColor",
|
|
1162
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1163
|
+
d: "M12 8v7h4M16 9h6M19 9v7"
|
|
1164
|
+
}
|
|
1165
|
+
),
|
|
1166
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1167
|
+
"path",
|
|
1168
|
+
{
|
|
1169
|
+
fill: "currentColor",
|
|
1170
|
+
fillRule: "evenodd",
|
|
1171
|
+
d: "m4.077 16 .6-1.5h2.6459l.6 1.5h2.154l-3.1485-7.8714h-1.857l-3.1485 7.8714h2.154Zm2.4459-3.5h-1.046l.523-1.3074.523 1.3074Z",
|
|
1172
|
+
clipRule: "evenodd"
|
|
1173
|
+
}
|
|
1174
|
+
),
|
|
1175
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1176
|
+
"path",
|
|
1177
|
+
{
|
|
1178
|
+
stroke: "currentColor",
|
|
1179
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1180
|
+
d: "M2 19h20"
|
|
1181
|
+
}
|
|
1182
|
+
)
|
|
1183
|
+
);
|
|
1184
|
+
}
|
|
1185
|
+
);
|
|
1186
|
+
IconAltTextUnderline[designSystemBaseIcon.iconSymbol] = true;
|
|
1187
|
+
|
|
1143
1188
|
const IconAltText = react.forwardRef(
|
|
1144
1189
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1145
1190
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2572,7 +2617,7 @@ const IconArrowLeftRightDotted = react.forwardRef(
|
|
|
2572
2617
|
"path",
|
|
2573
2618
|
{
|
|
2574
2619
|
fill: "currentColor",
|
|
2575
|
-
d: "m18 12 .
|
|
2620
|
+
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"
|
|
2576
2621
|
}
|
|
2577
2622
|
),
|
|
2578
2623
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -2581,7 +2626,7 @@ const IconArrowLeftRightDotted = react.forwardRef(
|
|
|
2581
2626
|
stroke: "currentColor",
|
|
2582
2627
|
strokeLinejoin: "bevel",
|
|
2583
2628
|
strokeWidth: "var(--svg-stroke-width)",
|
|
2584
|
-
d: "m9 15.5-3-3.5 3-3.5"
|
|
2629
|
+
d: "m9 15.5-3.25-3.5 3.25-3.5"
|
|
2585
2630
|
}
|
|
2586
2631
|
),
|
|
2587
2632
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -2589,7 +2634,7 @@ const IconArrowLeftRightDotted = react.forwardRef(
|
|
|
2589
2634
|
{
|
|
2590
2635
|
stroke: "currentColor",
|
|
2591
2636
|
strokeWidth: "var(--svg-stroke-width)",
|
|
2592
|
-
d: "M11
|
|
2637
|
+
d: "M11 12h-4.5"
|
|
2593
2638
|
}
|
|
2594
2639
|
),
|
|
2595
2640
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -2597,7 +2642,7 @@ const IconArrowLeftRightDotted = react.forwardRef(
|
|
|
2597
2642
|
{
|
|
2598
2643
|
fill: "currentColor",
|
|
2599
2644
|
fillRule: "evenodd",
|
|
2600
|
-
d: "M5.3333
|
|
2645
|
+
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",
|
|
2601
2646
|
clipRule: "evenodd"
|
|
2602
2647
|
}
|
|
2603
2648
|
)
|
|
@@ -9652,7 +9697,7 @@ const IconClusteredNew = react.forwardRef(
|
|
|
9652
9697
|
{
|
|
9653
9698
|
fill: "currentColor",
|
|
9654
9699
|
fillRule: "evenodd",
|
|
9655
|
-
d: "
|
|
9700
|
+
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",
|
|
9656
9701
|
clipRule: "evenodd"
|
|
9657
9702
|
}
|
|
9658
9703
|
),
|
|
@@ -16632,7 +16677,7 @@ const IconHandFilledNew = react.forwardRef(
|
|
|
16632
16677
|
{
|
|
16633
16678
|
fill: "currentColor",
|
|
16634
16679
|
fillRule: "evenodd",
|
|
16635
|
-
d: "
|
|
16680
|
+
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",
|
|
16636
16681
|
clipRule: "evenodd"
|
|
16637
16682
|
}
|
|
16638
16683
|
)
|
|
@@ -16788,6 +16833,97 @@ const IconHandPointing = react.forwardRef(
|
|
|
16788
16833
|
);
|
|
16789
16834
|
IconHandPointing[designSystemBaseIcon.iconSymbol] = true;
|
|
16790
16835
|
|
|
16836
|
+
const IconHandRaisedFilledNew = react.forwardRef(
|
|
16837
|
+
(props, forwardRef2) => {
|
|
16838
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
16839
|
+
return react.createElement(
|
|
16840
|
+
StyledIcon,
|
|
16841
|
+
{
|
|
16842
|
+
...props,
|
|
16843
|
+
debug,
|
|
16844
|
+
"aria-hidden": true,
|
|
16845
|
+
viewBox: "0 0 24 24",
|
|
16846
|
+
fill: "none",
|
|
16847
|
+
ref: forwardRef2
|
|
16848
|
+
},
|
|
16849
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
16850
|
+
"path",
|
|
16851
|
+
{
|
|
16852
|
+
fill: "currentColor",
|
|
16853
|
+
fillRule: "evenodd",
|
|
16854
|
+
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",
|
|
16855
|
+
clipRule: "evenodd"
|
|
16856
|
+
}
|
|
16857
|
+
)
|
|
16858
|
+
);
|
|
16859
|
+
}
|
|
16860
|
+
);
|
|
16861
|
+
const IconHandRaisedFilledOld = react.forwardRef(
|
|
16862
|
+
(props, forwardRef2) => {
|
|
16863
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
16864
|
+
return react.createElement(
|
|
16865
|
+
StyledIcon,
|
|
16866
|
+
{
|
|
16867
|
+
...props,
|
|
16868
|
+
debug,
|
|
16869
|
+
"aria-hidden": true,
|
|
16870
|
+
viewBox: "0 0 24 24",
|
|
16871
|
+
fill: "none",
|
|
16872
|
+
ref: forwardRef2
|
|
16873
|
+
},
|
|
16874
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
16875
|
+
"path",
|
|
16876
|
+
{
|
|
16877
|
+
fill: "currentColor",
|
|
16878
|
+
fillRule: "evenodd",
|
|
16879
|
+
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",
|
|
16880
|
+
clipRule: "evenodd"
|
|
16881
|
+
}
|
|
16882
|
+
),
|
|
16883
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
16884
|
+
"path",
|
|
16885
|
+
{
|
|
16886
|
+
stroke: "currentColor",
|
|
16887
|
+
strokeLinejoin: "round",
|
|
16888
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16889
|
+
d: "M12 12h.0007"
|
|
16890
|
+
}
|
|
16891
|
+
),
|
|
16892
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
16893
|
+
"path",
|
|
16894
|
+
{
|
|
16895
|
+
stroke: "currentColor",
|
|
16896
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16897
|
+
d: "M12 12v.0001"
|
|
16898
|
+
}
|
|
16899
|
+
)
|
|
16900
|
+
);
|
|
16901
|
+
}
|
|
16902
|
+
);
|
|
16903
|
+
const IconHandRaisedFilled = react.forwardRef(
|
|
16904
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
16905
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
16906
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
16907
|
+
IconHandRaisedFilledNew,
|
|
16908
|
+
{
|
|
16909
|
+
...props,
|
|
16910
|
+
size,
|
|
16911
|
+
weight,
|
|
16912
|
+
ref: forwardRef2
|
|
16913
|
+
}
|
|
16914
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
16915
|
+
IconHandRaisedFilledOld,
|
|
16916
|
+
{
|
|
16917
|
+
...props,
|
|
16918
|
+
size,
|
|
16919
|
+
weight,
|
|
16920
|
+
ref: forwardRef2
|
|
16921
|
+
}
|
|
16922
|
+
);
|
|
16923
|
+
}
|
|
16924
|
+
);
|
|
16925
|
+
IconHandRaisedFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
16926
|
+
|
|
16791
16927
|
const IconHandNew = react.forwardRef(
|
|
16792
16928
|
(props, forwardRef2) => {
|
|
16793
16929
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -17247,7 +17383,7 @@ const IconHexagon = react.forwardRef(
|
|
|
17247
17383
|
);
|
|
17248
17384
|
IconHexagon[designSystemBaseIcon.iconSymbol] = true;
|
|
17249
17385
|
|
|
17250
|
-
const
|
|
17386
|
+
const IconHighlighterColorSelectionNew = react.forwardRef(
|
|
17251
17387
|
(props, forwardRef2) => {
|
|
17252
17388
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
17253
17389
|
return react.createElement(
|
|
@@ -17260,29 +17396,119 @@ const IconHighlighterUnderlineNew = react.forwardRef(
|
|
|
17260
17396
|
fill: "none",
|
|
17261
17397
|
ref: forwardRef2
|
|
17262
17398
|
},
|
|
17399
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17400
|
+
"path",
|
|
17401
|
+
{
|
|
17402
|
+
fill: "currentColor",
|
|
17403
|
+
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"
|
|
17404
|
+
}
|
|
17405
|
+
),
|
|
17263
17406
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17264
17407
|
"path",
|
|
17265
17408
|
{
|
|
17266
17409
|
stroke: "currentColor",
|
|
17267
|
-
strokeLinejoin: "bevel",
|
|
17268
17410
|
strokeWidth: "var(--svg-stroke-width)",
|
|
17269
|
-
d: "
|
|
17411
|
+
d: "m13 6 5 5"
|
|
17412
|
+
}
|
|
17413
|
+
)
|
|
17414
|
+
);
|
|
17415
|
+
}
|
|
17416
|
+
);
|
|
17417
|
+
const IconHighlighterColorSelectionOld = react.forwardRef(
|
|
17418
|
+
(props, forwardRef2) => {
|
|
17419
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
17420
|
+
return react.createElement(
|
|
17421
|
+
StyledIcon,
|
|
17422
|
+
{
|
|
17423
|
+
...props,
|
|
17424
|
+
debug,
|
|
17425
|
+
"aria-hidden": true,
|
|
17426
|
+
viewBox: "0 0 24 24",
|
|
17427
|
+
fill: "none",
|
|
17428
|
+
ref: forwardRef2
|
|
17429
|
+
},
|
|
17430
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { width: 18, height: 2, x: 3, y: 20, fill: "currentColor", rx: 0.5 }),
|
|
17431
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17432
|
+
"path",
|
|
17433
|
+
{
|
|
17434
|
+
stroke: "currentColor",
|
|
17435
|
+
strokeLinecap: "round",
|
|
17436
|
+
strokeLinejoin: "round",
|
|
17437
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17438
|
+
d: "m18 9.8571 3-2.8571-4.5-4.5-3 3"
|
|
17270
17439
|
}
|
|
17271
17440
|
),
|
|
17272
17441
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17273
17442
|
"path",
|
|
17274
17443
|
{
|
|
17275
|
-
|
|
17276
|
-
|
|
17444
|
+
stroke: "currentColor",
|
|
17445
|
+
strokeLinecap: "round",
|
|
17446
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17447
|
+
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"
|
|
17277
17448
|
}
|
|
17278
17449
|
),
|
|
17450
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17451
|
+
"path",
|
|
17452
|
+
{
|
|
17453
|
+
stroke: "currentColor",
|
|
17454
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17455
|
+
d: "M12 21v.0001"
|
|
17456
|
+
}
|
|
17457
|
+
)
|
|
17458
|
+
);
|
|
17459
|
+
}
|
|
17460
|
+
);
|
|
17461
|
+
const IconHighlighterColorSelection = react.forwardRef(
|
|
17462
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
17463
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
17464
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
17465
|
+
IconHighlighterColorSelectionNew,
|
|
17466
|
+
{
|
|
17467
|
+
...props,
|
|
17468
|
+
size,
|
|
17469
|
+
weight,
|
|
17470
|
+
ref: forwardRef2
|
|
17471
|
+
}
|
|
17472
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
17473
|
+
IconHighlighterColorSelectionOld,
|
|
17474
|
+
{
|
|
17475
|
+
...props,
|
|
17476
|
+
size,
|
|
17477
|
+
weight,
|
|
17478
|
+
ref: forwardRef2
|
|
17479
|
+
}
|
|
17480
|
+
);
|
|
17481
|
+
}
|
|
17482
|
+
);
|
|
17483
|
+
IconHighlighterColorSelection[designSystemBaseIcon.iconSymbol] = true;
|
|
17484
|
+
|
|
17485
|
+
const IconHighlighterUnderlineNew = react.forwardRef(
|
|
17486
|
+
(props, forwardRef2) => {
|
|
17487
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
17488
|
+
return react.createElement(
|
|
17489
|
+
StyledIcon,
|
|
17490
|
+
{
|
|
17491
|
+
...props,
|
|
17492
|
+
debug,
|
|
17493
|
+
"aria-hidden": true,
|
|
17494
|
+
viewBox: "0 0 24 24",
|
|
17495
|
+
fill: "none",
|
|
17496
|
+
ref: forwardRef2
|
|
17497
|
+
},
|
|
17279
17498
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17280
17499
|
"path",
|
|
17281
17500
|
{
|
|
17282
17501
|
stroke: "currentColor",
|
|
17283
17502
|
strokeLinejoin: "bevel",
|
|
17284
17503
|
strokeWidth: "var(--svg-stroke-width)",
|
|
17285
|
-
d: "
|
|
17504
|
+
d: "M2.8389 21h18"
|
|
17505
|
+
}
|
|
17506
|
+
),
|
|
17507
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
17508
|
+
"path",
|
|
17509
|
+
{
|
|
17510
|
+
fill: "currentColor",
|
|
17511
|
+
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"
|
|
17286
17512
|
}
|
|
17287
17513
|
),
|
|
17288
17514
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -17290,7 +17516,7 @@ const IconHighlighterUnderlineNew = react.forwardRef(
|
|
|
17290
17516
|
{
|
|
17291
17517
|
stroke: "currentColor",
|
|
17292
17518
|
strokeWidth: "var(--svg-stroke-width)",
|
|
17293
|
-
d: "
|
|
17519
|
+
d: "m13 6 5 5"
|
|
17294
17520
|
}
|
|
17295
17521
|
)
|
|
17296
17522
|
);
|
|
@@ -17917,6 +18143,42 @@ const IconInformationMarkCircle = react.forwardRef(
|
|
|
17917
18143
|
);
|
|
17918
18144
|
IconInformationMarkCircle[designSystemBaseIcon.iconSymbol] = true;
|
|
17919
18145
|
|
|
18146
|
+
const IconInsights = react.forwardRef(
|
|
18147
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18148
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
18149
|
+
return react.createElement(
|
|
18150
|
+
StyledIcon,
|
|
18151
|
+
{
|
|
18152
|
+
...props,
|
|
18153
|
+
weight,
|
|
18154
|
+
debug,
|
|
18155
|
+
"aria-hidden": true,
|
|
18156
|
+
size,
|
|
18157
|
+
viewBox: "0 0 24 24",
|
|
18158
|
+
fill: "none",
|
|
18159
|
+
ref: forwardRef2
|
|
18160
|
+
},
|
|
18161
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
18162
|
+
"path",
|
|
18163
|
+
{
|
|
18164
|
+
stroke: "currentColor",
|
|
18165
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18166
|
+
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"
|
|
18167
|
+
}
|
|
18168
|
+
),
|
|
18169
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
18170
|
+
"path",
|
|
18171
|
+
{
|
|
18172
|
+
stroke: "currentColor",
|
|
18173
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18174
|
+
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"
|
|
18175
|
+
}
|
|
18176
|
+
)
|
|
18177
|
+
);
|
|
18178
|
+
}
|
|
18179
|
+
);
|
|
18180
|
+
IconInsights[designSystemBaseIcon.iconSymbol] = true;
|
|
18181
|
+
|
|
17920
18182
|
const IconKanban = react.forwardRef(
|
|
17921
18183
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
17922
18184
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -18579,7 +18841,7 @@ const IconLightningNew = react.forwardRef(
|
|
|
18579
18841
|
stroke: "currentColor",
|
|
18580
18842
|
strokeLinejoin: "bevel",
|
|
18581
18843
|
strokeWidth: "var(--svg-stroke-width)",
|
|
18582
|
-
d: "m4
|
|
18844
|
+
d: "m4 15 8-14v8h8l-8.5 14v-8h-7.5Z"
|
|
18583
18845
|
}
|
|
18584
18846
|
)
|
|
18585
18847
|
);
|
|
@@ -23789,6 +24051,95 @@ const IconPdf = react.forwardRef(
|
|
|
23789
24051
|
);
|
|
23790
24052
|
IconPdf[designSystemBaseIcon.iconSymbol] = true;
|
|
23791
24053
|
|
|
24054
|
+
const IconPenColorSelectionNew = react.forwardRef(
|
|
24055
|
+
(props, forwardRef2) => {
|
|
24056
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
24057
|
+
return react.createElement(
|
|
24058
|
+
StyledIcon,
|
|
24059
|
+
{
|
|
24060
|
+
...props,
|
|
24061
|
+
debug,
|
|
24062
|
+
"aria-hidden": true,
|
|
24063
|
+
viewBox: "0 0 24 24",
|
|
24064
|
+
fill: "none",
|
|
24065
|
+
ref: forwardRef2
|
|
24066
|
+
},
|
|
24067
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24068
|
+
"path",
|
|
24069
|
+
{
|
|
24070
|
+
fill: "currentColor",
|
|
24071
|
+
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"
|
|
24072
|
+
}
|
|
24073
|
+
),
|
|
24074
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24075
|
+
"path",
|
|
24076
|
+
{
|
|
24077
|
+
stroke: "currentColor",
|
|
24078
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
24079
|
+
d: "m12.5 5.5 4 4"
|
|
24080
|
+
}
|
|
24081
|
+
)
|
|
24082
|
+
);
|
|
24083
|
+
}
|
|
24084
|
+
);
|
|
24085
|
+
const IconPenColorSelectionOld = react.forwardRef(
|
|
24086
|
+
(props, forwardRef2) => {
|
|
24087
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
24088
|
+
return react.createElement(
|
|
24089
|
+
StyledIcon,
|
|
24090
|
+
{
|
|
24091
|
+
...props,
|
|
24092
|
+
debug,
|
|
24093
|
+
"aria-hidden": true,
|
|
24094
|
+
viewBox: "0 0 24 24",
|
|
24095
|
+
fill: "none",
|
|
24096
|
+
ref: forwardRef2
|
|
24097
|
+
},
|
|
24098
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24099
|
+
"path",
|
|
24100
|
+
{
|
|
24101
|
+
stroke: "currentColor",
|
|
24102
|
+
strokeLinecap: "round",
|
|
24103
|
+
strokeLinejoin: "round",
|
|
24104
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
24105
|
+
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"
|
|
24106
|
+
}
|
|
24107
|
+
),
|
|
24108
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
24109
|
+
"path",
|
|
24110
|
+
{
|
|
24111
|
+
stroke: "currentColor",
|
|
24112
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
24113
|
+
d: "M12 15v.0001"
|
|
24114
|
+
}
|
|
24115
|
+
)
|
|
24116
|
+
);
|
|
24117
|
+
}
|
|
24118
|
+
);
|
|
24119
|
+
const IconPenColorSelection = react.forwardRef(
|
|
24120
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
24121
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
24122
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
24123
|
+
IconPenColorSelectionNew,
|
|
24124
|
+
{
|
|
24125
|
+
...props,
|
|
24126
|
+
size,
|
|
24127
|
+
weight,
|
|
24128
|
+
ref: forwardRef2
|
|
24129
|
+
}
|
|
24130
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
24131
|
+
IconPenColorSelectionOld,
|
|
24132
|
+
{
|
|
24133
|
+
...props,
|
|
24134
|
+
size,
|
|
24135
|
+
weight,
|
|
24136
|
+
ref: forwardRef2
|
|
24137
|
+
}
|
|
24138
|
+
);
|
|
24139
|
+
}
|
|
24140
|
+
);
|
|
24141
|
+
IconPenColorSelection[designSystemBaseIcon.iconSymbol] = true;
|
|
24142
|
+
|
|
23792
24143
|
const IconPenTipNew = react.forwardRef(
|
|
23793
24144
|
(props, forwardRef2) => {
|
|
23794
24145
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -26766,6 +27117,35 @@ const IconQuotes = react.forwardRef(
|
|
|
26766
27117
|
);
|
|
26767
27118
|
IconQuotes[designSystemBaseIcon.iconSymbol] = true;
|
|
26768
27119
|
|
|
27120
|
+
const IconRaisedHand = react.forwardRef(
|
|
27121
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
27122
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
27123
|
+
return react.createElement(
|
|
27124
|
+
StyledIcon,
|
|
27125
|
+
{
|
|
27126
|
+
...props,
|
|
27127
|
+
weight,
|
|
27128
|
+
debug,
|
|
27129
|
+
"aria-hidden": true,
|
|
27130
|
+
size,
|
|
27131
|
+
viewBox: "0 0 24 24",
|
|
27132
|
+
fill: "none",
|
|
27133
|
+
ref: forwardRef2
|
|
27134
|
+
},
|
|
27135
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
27136
|
+
"path",
|
|
27137
|
+
{
|
|
27138
|
+
stroke: "currentColor",
|
|
27139
|
+
strokeLinejoin: "bevel",
|
|
27140
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
27141
|
+
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"
|
|
27142
|
+
}
|
|
27143
|
+
)
|
|
27144
|
+
);
|
|
27145
|
+
}
|
|
27146
|
+
);
|
|
27147
|
+
IconRaisedHand[designSystemBaseIcon.iconSymbol] = true;
|
|
27148
|
+
|
|
26769
27149
|
const IconRatio169 = react.forwardRef(
|
|
26770
27150
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26771
27151
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -27559,11 +27939,11 @@ const IconRectanglePortraitDashSquareTopCenterNew = react.forwardRef((props, for
|
|
|
27559
27939
|
{
|
|
27560
27940
|
fill: "currentColor",
|
|
27561
27941
|
fillRule: "evenodd",
|
|
27562
|
-
d: "
|
|
27942
|
+
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",
|
|
27563
27943
|
clipRule: "evenodd"
|
|
27564
27944
|
}
|
|
27565
27945
|
),
|
|
27566
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M8
|
|
27946
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M8 2h8v8h-8v-8Z" })
|
|
27567
27947
|
);
|
|
27568
27948
|
});
|
|
27569
27949
|
const IconRectanglePortraitDashSquareTopCenterOld = react.forwardRef((props, forwardRef2) => {
|
|
@@ -27628,7 +28008,7 @@ const IconRectanglePortraitDashSquareTopLeftNew = react.forwardRef((props, forwa
|
|
|
27628
28008
|
{
|
|
27629
28009
|
fill: "currentColor",
|
|
27630
28010
|
fillRule: "evenodd",
|
|
27631
|
-
d: "
|
|
28011
|
+
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",
|
|
27632
28012
|
clipRule: "evenodd"
|
|
27633
28013
|
}
|
|
27634
28014
|
),
|
|
@@ -27638,7 +28018,7 @@ const IconRectanglePortraitDashSquareTopLeftNew = react.forwardRef((props, forwa
|
|
|
27638
28018
|
fill: "currentColor",
|
|
27639
28019
|
stroke: "currentColor",
|
|
27640
28020
|
strokeWidth: "var(--svg-stroke-width)",
|
|
27641
|
-
d: "
|
|
28021
|
+
d: "M3 6c0-1.6569 1.3431-3 3-3h5v7h-8v-4Z"
|
|
27642
28022
|
}
|
|
27643
28023
|
)
|
|
27644
28024
|
);
|
|
@@ -27706,7 +28086,7 @@ const IconRectanglePortraitDashNew = react.forwardRef(
|
|
|
27706
28086
|
{
|
|
27707
28087
|
fill: "currentColor",
|
|
27708
28088
|
fillRule: "evenodd",
|
|
27709
|
-
d: "
|
|
28089
|
+
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",
|
|
27710
28090
|
clipRule: "evenodd"
|
|
27711
28091
|
}
|
|
27712
28092
|
)
|
|
@@ -27823,10 +28203,10 @@ const IconRectanglePortraitSquareTopLeftNew = react.forwardRef((props, forwardRe
|
|
|
27823
28203
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
27824
28204
|
"rect",
|
|
27825
28205
|
{
|
|
27826
|
-
width:
|
|
27827
|
-
height:
|
|
27828
|
-
x:
|
|
27829
|
-
y:
|
|
28206
|
+
width: 18,
|
|
28207
|
+
height: 18,
|
|
28208
|
+
x: 3,
|
|
28209
|
+
y: 3,
|
|
27830
28210
|
stroke: "currentColor",
|
|
27831
28211
|
strokeWidth: "var(--svg-stroke-width)",
|
|
27832
28212
|
rx: 2
|
|
@@ -27838,7 +28218,7 @@ const IconRectanglePortraitSquareTopLeftNew = react.forwardRef((props, forwardRe
|
|
|
27838
28218
|
fill: "currentColor",
|
|
27839
28219
|
stroke: "currentColor",
|
|
27840
28220
|
strokeWidth: "var(--svg-stroke-width)",
|
|
27841
|
-
d: "
|
|
28221
|
+
d: "M3 6c0-1.6569 1.3431-3 3-3h5v7h-8v-4Z"
|
|
27842
28222
|
}
|
|
27843
28223
|
)
|
|
27844
28224
|
);
|
|
@@ -29436,7 +29816,7 @@ const IconSentimentNew = react.forwardRef(
|
|
|
29436
29816
|
fill: "currentColor",
|
|
29437
29817
|
stroke: "currentColor",
|
|
29438
29818
|
strokeWidth: "var(--svg-stroke-width)",
|
|
29439
|
-
d: "M10.3333 6.
|
|
29819
|
+
d: "M10.3333 6.3333h1.3334v1.3334h-1.3334v-1.3334ZM16.3333 12.3333h1.3334v1.3334h-1.3334v-1.3334Z"
|
|
29440
29820
|
}
|
|
29441
29821
|
),
|
|
29442
29822
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -29455,7 +29835,7 @@ const IconSentimentNew = react.forwardRef(
|
|
|
29455
29835
|
fill: "currentColor",
|
|
29456
29836
|
stroke: "currentColor",
|
|
29457
29837
|
strokeWidth: "var(--svg-stroke-width)",
|
|
29458
|
-
d: "M6.
|
|
29838
|
+
d: "M6.3333 6.3333h1.3334v1.3334h-1.3334v-1.3334Z"
|
|
29459
29839
|
}
|
|
29460
29840
|
),
|
|
29461
29841
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -31327,7 +31707,115 @@ const IconSmileyStickerOld = react.forwardRef(
|
|
|
31327
31707
|
strokeLinecap: "round",
|
|
31328
31708
|
strokeLinejoin: "round",
|
|
31329
31709
|
strokeWidth: "var(--svg-stroke-width)",
|
|
31330
|
-
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"
|
|
31710
|
+
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"
|
|
31711
|
+
}
|
|
31712
|
+
),
|
|
31713
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31714
|
+
"path",
|
|
31715
|
+
{
|
|
31716
|
+
stroke: "currentColor",
|
|
31717
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
31718
|
+
d: "M12 19v.0001"
|
|
31719
|
+
}
|
|
31720
|
+
)
|
|
31721
|
+
);
|
|
31722
|
+
}
|
|
31723
|
+
);
|
|
31724
|
+
const IconSmileySticker = react.forwardRef(
|
|
31725
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31726
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
31727
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
31728
|
+
IconSmileyStickerNew,
|
|
31729
|
+
{
|
|
31730
|
+
...props,
|
|
31731
|
+
size,
|
|
31732
|
+
weight,
|
|
31733
|
+
ref: forwardRef2
|
|
31734
|
+
}
|
|
31735
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
31736
|
+
IconSmileyStickerOld,
|
|
31737
|
+
{
|
|
31738
|
+
...props,
|
|
31739
|
+
size,
|
|
31740
|
+
weight,
|
|
31741
|
+
ref: forwardRef2
|
|
31742
|
+
}
|
|
31743
|
+
);
|
|
31744
|
+
}
|
|
31745
|
+
);
|
|
31746
|
+
IconSmileySticker[designSystemBaseIcon.iconSymbol] = true;
|
|
31747
|
+
|
|
31748
|
+
const IconSmileyNew = react.forwardRef(
|
|
31749
|
+
(props, forwardRef2) => {
|
|
31750
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
31751
|
+
return react.createElement(
|
|
31752
|
+
StyledIcon,
|
|
31753
|
+
{
|
|
31754
|
+
...props,
|
|
31755
|
+
debug,
|
|
31756
|
+
"aria-hidden": true,
|
|
31757
|
+
viewBox: "0 0 24 24",
|
|
31758
|
+
fill: "none",
|
|
31759
|
+
ref: forwardRef2
|
|
31760
|
+
},
|
|
31761
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31762
|
+
"path",
|
|
31763
|
+
{
|
|
31764
|
+
stroke: "currentColor",
|
|
31765
|
+
strokeLinecap: "square",
|
|
31766
|
+
strokeLinejoin: "round",
|
|
31767
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
31768
|
+
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"
|
|
31769
|
+
}
|
|
31770
|
+
),
|
|
31771
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31772
|
+
"path",
|
|
31773
|
+
{
|
|
31774
|
+
fill: "currentColor",
|
|
31775
|
+
stroke: "currentColor",
|
|
31776
|
+
d: "M8.4507 8.5h1v1h-1v-1ZM14.4507 8.5h1v1h-1v-1Z"
|
|
31777
|
+
}
|
|
31778
|
+
),
|
|
31779
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31780
|
+
"path",
|
|
31781
|
+
{
|
|
31782
|
+
fill: "currentColor",
|
|
31783
|
+
fillRule: "evenodd",
|
|
31784
|
+
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",
|
|
31785
|
+
clipRule: "evenodd"
|
|
31786
|
+
}
|
|
31787
|
+
)
|
|
31788
|
+
);
|
|
31789
|
+
}
|
|
31790
|
+
);
|
|
31791
|
+
const IconSmileyOld = react.forwardRef(
|
|
31792
|
+
(props, forwardRef2) => {
|
|
31793
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
31794
|
+
return react.createElement(
|
|
31795
|
+
StyledIcon,
|
|
31796
|
+
{
|
|
31797
|
+
...props,
|
|
31798
|
+
debug,
|
|
31799
|
+
"aria-hidden": true,
|
|
31800
|
+
viewBox: "0 0 24 24",
|
|
31801
|
+
fill: "none",
|
|
31802
|
+
ref: forwardRef2
|
|
31803
|
+
},
|
|
31804
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31805
|
+
"path",
|
|
31806
|
+
{
|
|
31807
|
+
fill: "currentColor",
|
|
31808
|
+
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"
|
|
31809
|
+
}
|
|
31810
|
+
),
|
|
31811
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31812
|
+
"path",
|
|
31813
|
+
{
|
|
31814
|
+
stroke: "currentColor",
|
|
31815
|
+
strokeLinecap: "round",
|
|
31816
|
+
strokeLinejoin: "round",
|
|
31817
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
31818
|
+
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"
|
|
31331
31819
|
}
|
|
31332
31820
|
),
|
|
31333
31821
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -31335,88 +31823,31 @@ const IconSmileyStickerOld = react.forwardRef(
|
|
|
31335
31823
|
{
|
|
31336
31824
|
stroke: "currentColor",
|
|
31337
31825
|
strokeWidth: "var(--svg-stroke-width)",
|
|
31338
|
-
d: "M12
|
|
31826
|
+
d: "M12 16v.0001"
|
|
31339
31827
|
}
|
|
31340
31828
|
)
|
|
31341
31829
|
);
|
|
31342
31830
|
}
|
|
31343
31831
|
);
|
|
31344
|
-
const
|
|
31832
|
+
const IconSmiley = react.forwardRef(
|
|
31345
31833
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31346
31834
|
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
31347
|
-
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
31348
|
-
IconSmileyStickerNew,
|
|
31349
|
-
{
|
|
31350
|
-
...props,
|
|
31351
|
-
size,
|
|
31352
|
-
weight,
|
|
31353
|
-
ref: forwardRef2
|
|
31354
|
-
}
|
|
31355
|
-
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
31356
|
-
IconSmileyStickerOld,
|
|
31357
|
-
{
|
|
31358
|
-
...props,
|
|
31359
|
-
size,
|
|
31360
|
-
weight,
|
|
31361
|
-
ref: forwardRef2
|
|
31362
|
-
}
|
|
31363
|
-
);
|
|
31835
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(IconSmileyNew, { ...props, size, weight, ref: forwardRef2 }) : /* @__PURE__ */ jsxRuntime.jsx(IconSmileyOld, { ...props, size, weight, ref: forwardRef2 });
|
|
31364
31836
|
}
|
|
31365
31837
|
);
|
|
31366
|
-
|
|
31838
|
+
IconSmiley[designSystemBaseIcon.iconSymbol] = true;
|
|
31367
31839
|
|
|
31368
|
-
const
|
|
31369
|
-
(props, forwardRef2) => {
|
|
31370
|
-
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
31371
|
-
return react.createElement(
|
|
31372
|
-
StyledIcon,
|
|
31373
|
-
{
|
|
31374
|
-
...props,
|
|
31375
|
-
debug,
|
|
31376
|
-
"aria-hidden": true,
|
|
31377
|
-
viewBox: "0 0 24 24",
|
|
31378
|
-
fill: "none",
|
|
31379
|
-
ref: forwardRef2
|
|
31380
|
-
},
|
|
31381
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31382
|
-
"path",
|
|
31383
|
-
{
|
|
31384
|
-
stroke: "currentColor",
|
|
31385
|
-
strokeLinecap: "square",
|
|
31386
|
-
strokeLinejoin: "round",
|
|
31387
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
31388
|
-
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"
|
|
31389
|
-
}
|
|
31390
|
-
),
|
|
31391
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31392
|
-
"path",
|
|
31393
|
-
{
|
|
31394
|
-
fill: "currentColor",
|
|
31395
|
-
stroke: "currentColor",
|
|
31396
|
-
d: "M8.4507 8.5h1v1h-1v-1ZM14.4507 8.5h1v1h-1v-1Z"
|
|
31397
|
-
}
|
|
31398
|
-
),
|
|
31399
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31400
|
-
"path",
|
|
31401
|
-
{
|
|
31402
|
-
fill: "currentColor",
|
|
31403
|
-
fillRule: "evenodd",
|
|
31404
|
-
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",
|
|
31405
|
-
clipRule: "evenodd"
|
|
31406
|
-
}
|
|
31407
|
-
)
|
|
31408
|
-
);
|
|
31409
|
-
}
|
|
31410
|
-
);
|
|
31411
|
-
const IconSmileyOld = react.forwardRef(
|
|
31412
|
-
(props, forwardRef2) => {
|
|
31840
|
+
const IconSocialAdo = react.forwardRef(
|
|
31841
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31413
31842
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
31414
31843
|
return react.createElement(
|
|
31415
31844
|
StyledIcon,
|
|
31416
31845
|
{
|
|
31417
31846
|
...props,
|
|
31847
|
+
weight,
|
|
31418
31848
|
debug,
|
|
31419
31849
|
"aria-hidden": true,
|
|
31850
|
+
size,
|
|
31420
31851
|
viewBox: "0 0 24 24",
|
|
31421
31852
|
fill: "none",
|
|
31422
31853
|
ref: forwardRef2
|
|
@@ -31425,17 +31856,7 @@ const IconSmileyOld = react.forwardRef(
|
|
|
31425
31856
|
"path",
|
|
31426
31857
|
{
|
|
31427
31858
|
fill: "currentColor",
|
|
31428
|
-
d: "
|
|
31429
|
-
}
|
|
31430
|
-
),
|
|
31431
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31432
|
-
"path",
|
|
31433
|
-
{
|
|
31434
|
-
stroke: "currentColor",
|
|
31435
|
-
strokeLinecap: "round",
|
|
31436
|
-
strokeLinejoin: "round",
|
|
31437
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
31438
|
-
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"
|
|
31859
|
+
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"
|
|
31439
31860
|
}
|
|
31440
31861
|
),
|
|
31441
31862
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -31443,21 +31864,15 @@ const IconSmileyOld = react.forwardRef(
|
|
|
31443
31864
|
{
|
|
31444
31865
|
stroke: "currentColor",
|
|
31445
31866
|
strokeWidth: "var(--svg-stroke-width)",
|
|
31446
|
-
d: "M12
|
|
31867
|
+
d: "M12 6v.0001"
|
|
31447
31868
|
}
|
|
31448
31869
|
)
|
|
31449
31870
|
);
|
|
31450
31871
|
}
|
|
31451
31872
|
);
|
|
31452
|
-
|
|
31453
|
-
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31454
|
-
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
31455
|
-
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(IconSmileyNew, { ...props, size, weight, ref: forwardRef2 }) : /* @__PURE__ */ jsxRuntime.jsx(IconSmileyOld, { ...props, size, weight, ref: forwardRef2 });
|
|
31456
|
-
}
|
|
31457
|
-
);
|
|
31458
|
-
IconSmiley[designSystemBaseIcon.iconSymbol] = true;
|
|
31873
|
+
IconSocialAdo[designSystemBaseIcon.iconSymbol] = true;
|
|
31459
31874
|
|
|
31460
|
-
const
|
|
31875
|
+
const IconSocialAsana = react.forwardRef(
|
|
31461
31876
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31462
31877
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
31463
31878
|
return react.createElement(
|
|
@@ -31476,21 +31891,15 @@ const IconSocialAdo = react.forwardRef(
|
|
|
31476
31891
|
"path",
|
|
31477
31892
|
{
|
|
31478
31893
|
fill: "currentColor",
|
|
31479
|
-
|
|
31480
|
-
|
|
31481
|
-
|
|
31482
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31483
|
-
"path",
|
|
31484
|
-
{
|
|
31485
|
-
stroke: "currentColor",
|
|
31486
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
31487
|
-
d: "M12 6v.0001"
|
|
31894
|
+
fillRule: "evenodd",
|
|
31895
|
+
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",
|
|
31896
|
+
clipRule: "evenodd"
|
|
31488
31897
|
}
|
|
31489
31898
|
)
|
|
31490
31899
|
);
|
|
31491
31900
|
}
|
|
31492
31901
|
);
|
|
31493
|
-
|
|
31902
|
+
IconSocialAsana[designSystemBaseIcon.iconSymbol] = true;
|
|
31494
31903
|
|
|
31495
31904
|
const IconSocialDrawio = react.forwardRef(
|
|
31496
31905
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -32985,7 +33394,7 @@ const IconSquareLineSquareDashedNew = react.forwardRef(
|
|
|
32985
33394
|
{
|
|
32986
33395
|
fill: "currentColor",
|
|
32987
33396
|
fillRule: "evenodd",
|
|
32988
|
-
d: "
|
|
33397
|
+
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",
|
|
32989
33398
|
clipRule: "evenodd"
|
|
32990
33399
|
}
|
|
32991
33400
|
),
|
|
@@ -32994,7 +33403,7 @@ const IconSquareLineSquareDashedNew = react.forwardRef(
|
|
|
32994
33403
|
{
|
|
32995
33404
|
stroke: "currentColor",
|
|
32996
33405
|
strokeWidth: "var(--svg-stroke-width)",
|
|
32997
|
-
d: "
|
|
33406
|
+
d: "M3 5c0-1.1046.8954-2 2-2h8v10h-10v-8Z"
|
|
32998
33407
|
}
|
|
32999
33408
|
)
|
|
33000
33409
|
);
|
|
@@ -35830,6 +36239,133 @@ const IconTasks = react.forwardRef(
|
|
|
35830
36239
|
);
|
|
35831
36240
|
IconTasks[designSystemBaseIcon.iconSymbol] = true;
|
|
35832
36241
|
|
|
36242
|
+
const IconTextAColorSelectionNew = react.forwardRef(
|
|
36243
|
+
(props, forwardRef2) => {
|
|
36244
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
36245
|
+
return react.createElement(
|
|
36246
|
+
StyledIcon,
|
|
36247
|
+
{
|
|
36248
|
+
...props,
|
|
36249
|
+
debug,
|
|
36250
|
+
"aria-hidden": true,
|
|
36251
|
+
viewBox: "0 0 24 24",
|
|
36252
|
+
fill: "none",
|
|
36253
|
+
ref: forwardRef2
|
|
36254
|
+
},
|
|
36255
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36256
|
+
"path",
|
|
36257
|
+
{
|
|
36258
|
+
fill: "currentColor",
|
|
36259
|
+
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"
|
|
36260
|
+
}
|
|
36261
|
+
)
|
|
36262
|
+
);
|
|
36263
|
+
}
|
|
36264
|
+
);
|
|
36265
|
+
const IconTextAColorSelectionOld = react.forwardRef(
|
|
36266
|
+
(props, forwardRef2) => {
|
|
36267
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
36268
|
+
return react.createElement(
|
|
36269
|
+
StyledIcon,
|
|
36270
|
+
{
|
|
36271
|
+
...props,
|
|
36272
|
+
debug,
|
|
36273
|
+
"aria-hidden": true,
|
|
36274
|
+
viewBox: "0 0 24 24",
|
|
36275
|
+
fill: "none",
|
|
36276
|
+
ref: forwardRef2
|
|
36277
|
+
},
|
|
36278
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36279
|
+
"path",
|
|
36280
|
+
{
|
|
36281
|
+
stroke: "currentColor",
|
|
36282
|
+
strokeLinecap: "round",
|
|
36283
|
+
strokeLinejoin: "round",
|
|
36284
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36285
|
+
d: "m7 16 1.25-3m8.75 3-1.25-3m0 0-3.75-9-3.75 9m7.5 0h-7.5"
|
|
36286
|
+
}
|
|
36287
|
+
),
|
|
36288
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36289
|
+
"path",
|
|
36290
|
+
{
|
|
36291
|
+
stroke: "currentColor",
|
|
36292
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36293
|
+
d: "M12 13v.0001"
|
|
36294
|
+
}
|
|
36295
|
+
)
|
|
36296
|
+
);
|
|
36297
|
+
}
|
|
36298
|
+
);
|
|
36299
|
+
const IconTextAColorSelection = react.forwardRef(
|
|
36300
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
36301
|
+
const [v1] = designSystemExperiments.useNewDesignLanguageIcons();
|
|
36302
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
36303
|
+
IconTextAColorSelectionNew,
|
|
36304
|
+
{
|
|
36305
|
+
...props,
|
|
36306
|
+
size,
|
|
36307
|
+
weight,
|
|
36308
|
+
ref: forwardRef2
|
|
36309
|
+
}
|
|
36310
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
36311
|
+
IconTextAColorSelectionOld,
|
|
36312
|
+
{
|
|
36313
|
+
...props,
|
|
36314
|
+
size,
|
|
36315
|
+
weight,
|
|
36316
|
+
ref: forwardRef2
|
|
36317
|
+
}
|
|
36318
|
+
);
|
|
36319
|
+
}
|
|
36320
|
+
);
|
|
36321
|
+
IconTextAColorSelection[designSystemBaseIcon.iconSymbol] = true;
|
|
36322
|
+
|
|
36323
|
+
const IconTextAHorizontal = react.forwardRef(
|
|
36324
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
36325
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
36326
|
+
return react.createElement(
|
|
36327
|
+
StyledIcon,
|
|
36328
|
+
{
|
|
36329
|
+
...props,
|
|
36330
|
+
weight,
|
|
36331
|
+
debug,
|
|
36332
|
+
"aria-hidden": true,
|
|
36333
|
+
size,
|
|
36334
|
+
viewBox: "0 0 24 24",
|
|
36335
|
+
fill: "none",
|
|
36336
|
+
ref: forwardRef2
|
|
36337
|
+
},
|
|
36338
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36339
|
+
"path",
|
|
36340
|
+
{
|
|
36341
|
+
fill: "currentColor",
|
|
36342
|
+
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"
|
|
36343
|
+
}
|
|
36344
|
+
),
|
|
36345
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36346
|
+
"path",
|
|
36347
|
+
{
|
|
36348
|
+
stroke: "currentColor",
|
|
36349
|
+
strokeLinecap: "square",
|
|
36350
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36351
|
+
d: "M4 18h17"
|
|
36352
|
+
}
|
|
36353
|
+
),
|
|
36354
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36355
|
+
"path",
|
|
36356
|
+
{
|
|
36357
|
+
stroke: "currentColor",
|
|
36358
|
+
strokeLinecap: "square",
|
|
36359
|
+
strokeLinejoin: "bevel",
|
|
36360
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36361
|
+
d: "m19 21 2.5-3-2.5-3"
|
|
36362
|
+
}
|
|
36363
|
+
)
|
|
36364
|
+
);
|
|
36365
|
+
}
|
|
36366
|
+
);
|
|
36367
|
+
IconTextAHorizontal[designSystemBaseIcon.iconSymbol] = true;
|
|
36368
|
+
|
|
35833
36369
|
const IconTextAUnderlineNew = react.forwardRef(
|
|
35834
36370
|
(props, forwardRef2) => {
|
|
35835
36371
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -35920,6 +36456,52 @@ const IconTextAUnderline = react.forwardRef(
|
|
|
35920
36456
|
);
|
|
35921
36457
|
IconTextAUnderline[designSystemBaseIcon.iconSymbol] = true;
|
|
35922
36458
|
|
|
36459
|
+
const IconTextAVertical = react.forwardRef(
|
|
36460
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
36461
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
36462
|
+
return react.createElement(
|
|
36463
|
+
StyledIcon,
|
|
36464
|
+
{
|
|
36465
|
+
...props,
|
|
36466
|
+
weight,
|
|
36467
|
+
debug,
|
|
36468
|
+
"aria-hidden": true,
|
|
36469
|
+
size,
|
|
36470
|
+
viewBox: "0 0 24 24",
|
|
36471
|
+
fill: "none",
|
|
36472
|
+
ref: forwardRef2
|
|
36473
|
+
},
|
|
36474
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36475
|
+
"path",
|
|
36476
|
+
{
|
|
36477
|
+
fill: "currentColor",
|
|
36478
|
+
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"
|
|
36479
|
+
}
|
|
36480
|
+
),
|
|
36481
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36482
|
+
"path",
|
|
36483
|
+
{
|
|
36484
|
+
stroke: "currentColor",
|
|
36485
|
+
strokeLinecap: "square",
|
|
36486
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36487
|
+
d: "M18 20v-16"
|
|
36488
|
+
}
|
|
36489
|
+
),
|
|
36490
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
36491
|
+
"path",
|
|
36492
|
+
{
|
|
36493
|
+
stroke: "currentColor",
|
|
36494
|
+
strokeLinecap: "square",
|
|
36495
|
+
strokeLinejoin: "bevel",
|
|
36496
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
36497
|
+
d: "m21 6-3-2.5-3 2.5"
|
|
36498
|
+
}
|
|
36499
|
+
)
|
|
36500
|
+
);
|
|
36501
|
+
}
|
|
36502
|
+
);
|
|
36503
|
+
IconTextAVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
36504
|
+
|
|
35923
36505
|
const IconTextAaNew = react.forwardRef(
|
|
35924
36506
|
(props, forwardRef2) => {
|
|
35925
36507
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -41008,6 +41590,7 @@ exports.IconAlignTop = IconAlignTop;
|
|
|
41008
41590
|
exports.IconAlignTopGroup = IconAlignTopGroup;
|
|
41009
41591
|
exports.IconAlignmentScale = IconAlignmentScale;
|
|
41010
41592
|
exports.IconAltText = IconAltText;
|
|
41593
|
+
exports.IconAltTextUnderline = IconAltTextUnderline;
|
|
41011
41594
|
exports.IconArrowArcLeft = IconArrowArcLeft;
|
|
41012
41595
|
exports.IconArrowArcRight = IconArrowArcRight;
|
|
41013
41596
|
exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
|
|
@@ -41206,18 +41789,21 @@ exports.IconGridSix = IconGridSix;
|
|
|
41206
41789
|
exports.IconHand = IconHand;
|
|
41207
41790
|
exports.IconHandFilled = IconHandFilled;
|
|
41208
41791
|
exports.IconHandPointing = IconHandPointing;
|
|
41792
|
+
exports.IconHandRaisedFilled = IconHandRaisedFilled;
|
|
41209
41793
|
exports.IconHeadphones = IconHeadphones;
|
|
41210
41794
|
exports.IconHeadsetPerson = IconHeadsetPerson;
|
|
41211
41795
|
exports.IconHeart = IconHeart;
|
|
41212
41796
|
exports.IconHeartFilled = IconHeartFilled;
|
|
41213
41797
|
exports.IconHexagon = IconHexagon;
|
|
41214
41798
|
exports.IconHighlighter = IconHighlighter;
|
|
41799
|
+
exports.IconHighlighterColorSelection = IconHighlighterColorSelection;
|
|
41215
41800
|
exports.IconHighlighterUnderline = IconHighlighterUnderline;
|
|
41216
41801
|
exports.IconHouse = IconHouse;
|
|
41217
41802
|
exports.IconImage = IconImage;
|
|
41218
41803
|
exports.IconIndentLeft = IconIndentLeft;
|
|
41219
41804
|
exports.IconIndentRight = IconIndentRight;
|
|
41220
41805
|
exports.IconInformationMarkCircle = IconInformationMarkCircle;
|
|
41806
|
+
exports.IconInsights = IconInsights;
|
|
41221
41807
|
exports.IconKanban = IconKanban;
|
|
41222
41808
|
exports.IconKey = IconKey;
|
|
41223
41809
|
exports.IconKeycap = IconKeycap;
|
|
@@ -41297,6 +41883,7 @@ exports.IconPause = IconPause;
|
|
|
41297
41883
|
exports.IconPauseCircle = IconPauseCircle;
|
|
41298
41884
|
exports.IconPdf = IconPdf;
|
|
41299
41885
|
exports.IconPen = IconPen;
|
|
41886
|
+
exports.IconPenColorSelection = IconPenColorSelection;
|
|
41300
41887
|
exports.IconPenTip = IconPenTip;
|
|
41301
41888
|
exports.IconPenUnderline = IconPenUnderline;
|
|
41302
41889
|
exports.IconPentagon = IconPentagon;
|
|
@@ -41337,6 +41924,7 @@ exports.IconPushPinFilled = IconPushPinFilled;
|
|
|
41337
41924
|
exports.IconQuestionMark = IconQuestionMark;
|
|
41338
41925
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
41339
41926
|
exports.IconQuotes = IconQuotes;
|
|
41927
|
+
exports.IconRaisedHand = IconRaisedHand;
|
|
41340
41928
|
exports.IconRatio169 = IconRatio169;
|
|
41341
41929
|
exports.IconRatio43 = IconRatio43;
|
|
41342
41930
|
exports.IconRatioSquare = IconRatioSquare;
|
|
@@ -41395,6 +41983,7 @@ exports.IconSmileyChat = IconSmileyChat;
|
|
|
41395
41983
|
exports.IconSmileyPlus = IconSmileyPlus;
|
|
41396
41984
|
exports.IconSmileySticker = IconSmileySticker;
|
|
41397
41985
|
exports.IconSocialAdo = IconSocialAdo;
|
|
41986
|
+
exports.IconSocialAsana = IconSocialAsana;
|
|
41398
41987
|
exports.IconSocialDrawio = IconSocialDrawio;
|
|
41399
41988
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
41400
41989
|
exports.IconSocialInstagram = IconSocialInstagram;
|
|
@@ -41457,7 +42046,10 @@ exports.IconTableFormat = IconTableFormat;
|
|
|
41457
42046
|
exports.IconTablet = IconTablet;
|
|
41458
42047
|
exports.IconTag = IconTag;
|
|
41459
42048
|
exports.IconTasks = IconTasks;
|
|
42049
|
+
exports.IconTextAColorSelection = IconTextAColorSelection;
|
|
42050
|
+
exports.IconTextAHorizontal = IconTextAHorizontal;
|
|
41460
42051
|
exports.IconTextAUnderline = IconTextAUnderline;
|
|
42052
|
+
exports.IconTextAVertical = IconTextAVertical;
|
|
41461
42053
|
exports.IconTextAa = IconTextAa;
|
|
41462
42054
|
exports.IconTextAlignCenter = IconTextAlignCenter;
|
|
41463
42055
|
exports.IconTextAlignLeft = IconTextAlignLeft;
|