@mirohq/design-system-icons 0.71.0 → 0.73.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 +318 -9
- package/dist/main.js.map +1 -1
- package/dist/module.js +312 -10
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +15 -1
- package/package.json +4 -4
- package/react/alt-text-underline.tsx +47 -0
- package/react/hand-raised-filled.tsx +58 -4
- package/react/index.ts +7 -0
- package/react/insights.tsx +41 -0
- package/react/monitor-eye-closed.tsx +43 -0
- package/react/monitor-eye-open.tsx +41 -0
- package/react/raised-hand.tsx +37 -0
- package/react/social-asana.tsx +37 -0
- package/react/social-monday.tsx +35 -0
- package/react/view-center.tsx +2 -1
- package/react/view-side-left.tsx +3 -4
- package/svg/24/alt-text-underline.svg +2 -0
- package/svg/24/hand-raised-filled-new.svg +2 -0
- package/svg/24/hand-raised-filled.svg +1 -1
- package/svg/24/insights.svg +2 -0
- package/svg/24/monitor-eye-closed.svg +2 -0
- package/svg/24/monitor-eye-open.svg +2 -0
- package/svg/24/raised-hand.svg +2 -0
- package/svg/24/social-asana.svg +2 -0
- package/svg/24/social-monday.svg +2 -0
- package/svg/24/view-center-new.svg +1 -1
- package/svg/24/view-side-left-new.svg +1 -1
- package/svg/meta.json +100 -34
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);
|
|
@@ -16788,17 +16833,15 @@ const IconHandPointing = react.forwardRef(
|
|
|
16788
16833
|
);
|
|
16789
16834
|
IconHandPointing[designSystemBaseIcon.iconSymbol] = true;
|
|
16790
16835
|
|
|
16791
|
-
const
|
|
16792
|
-
(
|
|
16836
|
+
const IconHandRaisedFilledNew = react.forwardRef(
|
|
16837
|
+
(props, forwardRef2) => {
|
|
16793
16838
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
16794
16839
|
return react.createElement(
|
|
16795
16840
|
StyledIcon,
|
|
16796
16841
|
{
|
|
16797
16842
|
...props,
|
|
16798
|
-
weight,
|
|
16799
16843
|
debug,
|
|
16800
16844
|
"aria-hidden": true,
|
|
16801
|
-
size,
|
|
16802
16845
|
viewBox: "0 0 24 24",
|
|
16803
16846
|
fill: "none",
|
|
16804
16847
|
ref: forwardRef2
|
|
@@ -16815,6 +16858,70 @@ const IconHandRaisedFilled = react.forwardRef(
|
|
|
16815
16858
|
);
|
|
16816
16859
|
}
|
|
16817
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
|
+
);
|
|
16818
16925
|
IconHandRaisedFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
16819
16926
|
|
|
16820
16927
|
const IconHandNew = react.forwardRef(
|
|
@@ -18036,6 +18143,42 @@ const IconInformationMarkCircle = react.forwardRef(
|
|
|
18036
18143
|
);
|
|
18037
18144
|
IconInformationMarkCircle[designSystemBaseIcon.iconSymbol] = true;
|
|
18038
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
|
+
|
|
18039
18182
|
const IconKanban = react.forwardRef(
|
|
18040
18183
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18041
18184
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -21142,6 +21285,80 @@ const IconMonitorArrow = react.forwardRef(
|
|
|
21142
21285
|
);
|
|
21143
21286
|
IconMonitorArrow[designSystemBaseIcon.iconSymbol] = true;
|
|
21144
21287
|
|
|
21288
|
+
const IconMonitorEyeClosed = react.forwardRef(
|
|
21289
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
21290
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
21291
|
+
return react.createElement(
|
|
21292
|
+
StyledIcon,
|
|
21293
|
+
{
|
|
21294
|
+
...props,
|
|
21295
|
+
weight,
|
|
21296
|
+
debug,
|
|
21297
|
+
"aria-hidden": true,
|
|
21298
|
+
size,
|
|
21299
|
+
viewBox: "0 0 24 24",
|
|
21300
|
+
fill: "none",
|
|
21301
|
+
ref: forwardRef2
|
|
21302
|
+
},
|
|
21303
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
21304
|
+
"path",
|
|
21305
|
+
{
|
|
21306
|
+
stroke: "currentColor",
|
|
21307
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21308
|
+
d: "M6 4h-1c-1.1046 0-2 .8954-2 2v10c0 1.1046.8954 2 2 2h14c1.1046 0 2-.8954 2-2v-7M8 21h8"
|
|
21309
|
+
}
|
|
21310
|
+
),
|
|
21311
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
21312
|
+
"path",
|
|
21313
|
+
{
|
|
21314
|
+
stroke: "currentColor",
|
|
21315
|
+
strokeLinecap: "square",
|
|
21316
|
+
strokeLinejoin: "round",
|
|
21317
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21318
|
+
d: "m10 5-1.5 1.5m4-.5-.5 2m3.5-2 .5 2m2.5-2.5 1 1m.5-3.5s-2.2 3-5.5 3-5.5-3-5.5-3"
|
|
21319
|
+
}
|
|
21320
|
+
)
|
|
21321
|
+
);
|
|
21322
|
+
}
|
|
21323
|
+
);
|
|
21324
|
+
IconMonitorEyeClosed[designSystemBaseIcon.iconSymbol] = true;
|
|
21325
|
+
|
|
21326
|
+
const IconMonitorEyeOpen = react.forwardRef(
|
|
21327
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
21328
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
21329
|
+
return react.createElement(
|
|
21330
|
+
StyledIcon,
|
|
21331
|
+
{
|
|
21332
|
+
...props,
|
|
21333
|
+
weight,
|
|
21334
|
+
debug,
|
|
21335
|
+
"aria-hidden": true,
|
|
21336
|
+
size,
|
|
21337
|
+
viewBox: "0 0 24 24",
|
|
21338
|
+
fill: "none",
|
|
21339
|
+
ref: forwardRef2
|
|
21340
|
+
},
|
|
21341
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
21342
|
+
"path",
|
|
21343
|
+
{
|
|
21344
|
+
fill: "currentColor",
|
|
21345
|
+
d: "m21 5.5.8466.5322v-1.0644l-.8466.5322Zm-11 0-.8466-.5322v1.0644l.8466-.5322Zm5.5-2.5c1.2918 0 2.435.6901 3.3148 1.49.4304.3912.7711.785 1.0036 1.081.1156.1472.203.2682.2598.3498.0284.0408.049.0716.0617.0907l.0129.0198.0018.0029-.0002-.0004-.0004-.0007-.0003-.0004c-.0002-.0003-.0003-.0005.8463-.5327s.8465-.5325.8463-.5328l-.0005-.0007-.001-.0016-.0026-.0041a1.0903 1.0903 0 0 1-.0078-.0122l-.0253-.0388a6.2297 6.2297 0 0 0-.0893-.1314 9.6277 9.6277 0 0 0-.3288-.4431c-.2831-.3603-.6987-.8415-1.2308-1.3252-1.0452-.9502-2.652-2.0101-4.6602-2.0101v2Zm0 7c2.0082 0 3.615-1.0599 4.6602-2.01.5321-.4838.9477-.965 1.2308-1.3253a9.6277 9.6277 0 0 0 .3288-.4431 6.2297 6.2297 0 0 0 .0893-.1314c.0106-.0161.019-.0291.0253-.0389a1.0903 1.0903 0 0 1 .0078-.012l.0026-.0042.001-.0016.0005-.0007c.0002-.0003.0003-.0006-.8463-.5328s-.8465-.5324-.8463-.5327l.0003-.0004.0004-.0007.0002-.0004-.0018.003-.0129.0197a4.6782 4.6782 0 0 1-.0617.0907 7.6225 7.6225 0 0 1-.2598.3498c-.2325.296-.5732.6898-1.0036 1.081-.8798.7999-2.023 1.49-3.3148 1.49v2Zm0-9c-2.0082 0-3.615 1.0599-4.6602 2.01-.5321.4838-.9477.965-1.2308 1.3253a9.5935 9.5935 0 0 0-.3288.4431 6.5326 6.5326 0 0 0-.1146.1702l-.0078.0122-.0026.0041-.001.0016-.0005.0007c-.0002.0003-.0003.0006.8463.5328s.8465.5324.8463.5327l-.0003.0004-.0004.0007-.0002.0004.0018-.003.0129-.0197c.0127-.0191.0333-.05.0617-.0907a7.6225 7.6225 0 0 1 .2598-.3498c.2325-.296.5732-.6898 1.0036-1.081.8798-.7999 2.023-1.49 3.3148-1.49v-2Zm0 7c-1.2918 0-2.435-.6901-3.3148-1.49-.4304-.3912-.7711-.785-1.0036-1.081a7.6225 7.6225 0 0 1-.2598-.3498 4.6782 4.6782 0 0 1-.0617-.0907l-.0129-.0198-.0018-.0029.0002.0004.0004.0007.0003.0004c.0002.0003.0003.0005-.8463.5327s-.8465.5325-.8463.5328l.0005.0007.001.0016.0026.0041.0078.0122a6.5326 6.5326 0 0 0 .1146.1702c.0764.1098.1867.2622.3288.4431.2831.3603.6987.8415 1.2308 1.3252 1.0452.9502 2.652 2.0101 4.6602 2.0101v-2Z"
|
|
21346
|
+
}
|
|
21347
|
+
),
|
|
21348
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 15.5, cy: 5.5, r: 1.5, fill: "currentColor" }),
|
|
21349
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
21350
|
+
"path",
|
|
21351
|
+
{
|
|
21352
|
+
stroke: "currentColor",
|
|
21353
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21354
|
+
d: "M7 4h-2c-1.1046 0-2 .8954-2 2v10c0 1.1046.8954 2 2 2h14c1.1046 0 2-.8954 2-2v-6M8 21h8"
|
|
21355
|
+
}
|
|
21356
|
+
)
|
|
21357
|
+
);
|
|
21358
|
+
}
|
|
21359
|
+
);
|
|
21360
|
+
IconMonitorEyeOpen[designSystemBaseIcon.iconSymbol] = true;
|
|
21361
|
+
|
|
21145
21362
|
const IconMonitorPauseNew = react.forwardRef(
|
|
21146
21363
|
(props, forwardRef2) => {
|
|
21147
21364
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -26974,6 +27191,35 @@ const IconQuotes = react.forwardRef(
|
|
|
26974
27191
|
);
|
|
26975
27192
|
IconQuotes[designSystemBaseIcon.iconSymbol] = true;
|
|
26976
27193
|
|
|
27194
|
+
const IconRaisedHand = react.forwardRef(
|
|
27195
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
27196
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
27197
|
+
return react.createElement(
|
|
27198
|
+
StyledIcon,
|
|
27199
|
+
{
|
|
27200
|
+
...props,
|
|
27201
|
+
weight,
|
|
27202
|
+
debug,
|
|
27203
|
+
"aria-hidden": true,
|
|
27204
|
+
size,
|
|
27205
|
+
viewBox: "0 0 24 24",
|
|
27206
|
+
fill: "none",
|
|
27207
|
+
ref: forwardRef2
|
|
27208
|
+
},
|
|
27209
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
27210
|
+
"path",
|
|
27211
|
+
{
|
|
27212
|
+
stroke: "currentColor",
|
|
27213
|
+
strokeLinejoin: "bevel",
|
|
27214
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
27215
|
+
d: "m16.088 13.6287 2.2448-1.6081c.7207-.5162 1.7181-.3858 2.2819.2983.552.6699.5063 1.6481-.1075 2.2619l-4.0032 4.0031c-1.5471 1.5472-3.1661 2.4161-5.1661 2.4161h-1.5c-4.0001 0-5.75-3.5817-5.75-8v-4c0-1 .5-2 1.5-2s1.5 1 1.5 2v3-5.25c0-.9665.5335-1.75 1.5-1.75s1.5001.7835 1.5001 1.75v5.25m6 1.6287v-6.8787c0-.9665-.5336-1.75-1.5001-1.75s-1.5.7835-1.5 1.75v5.25m3.0001 1.6287-1.588 1.3713m-4.412-5v-5.25c0-.9665.5334-1.75 1.4999-1.75s1.5.7835 1.5 1.75v5"
|
|
27216
|
+
}
|
|
27217
|
+
)
|
|
27218
|
+
);
|
|
27219
|
+
}
|
|
27220
|
+
);
|
|
27221
|
+
IconRaisedHand[designSystemBaseIcon.iconSymbol] = true;
|
|
27222
|
+
|
|
26977
27223
|
const IconRatio169 = react.forwardRef(
|
|
26978
27224
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26979
27225
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -31700,6 +31946,35 @@ const IconSocialAdo = react.forwardRef(
|
|
|
31700
31946
|
);
|
|
31701
31947
|
IconSocialAdo[designSystemBaseIcon.iconSymbol] = true;
|
|
31702
31948
|
|
|
31949
|
+
const IconSocialAsana = react.forwardRef(
|
|
31950
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31951
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
31952
|
+
return react.createElement(
|
|
31953
|
+
StyledIcon,
|
|
31954
|
+
{
|
|
31955
|
+
...props,
|
|
31956
|
+
weight,
|
|
31957
|
+
debug,
|
|
31958
|
+
"aria-hidden": true,
|
|
31959
|
+
size,
|
|
31960
|
+
viewBox: "0 0 24 24",
|
|
31961
|
+
fill: "none",
|
|
31962
|
+
ref: forwardRef2
|
|
31963
|
+
},
|
|
31964
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31965
|
+
"path",
|
|
31966
|
+
{
|
|
31967
|
+
fill: "currentColor",
|
|
31968
|
+
fillRule: "evenodd",
|
|
31969
|
+
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",
|
|
31970
|
+
clipRule: "evenodd"
|
|
31971
|
+
}
|
|
31972
|
+
)
|
|
31973
|
+
);
|
|
31974
|
+
}
|
|
31975
|
+
);
|
|
31976
|
+
IconSocialAsana[designSystemBaseIcon.iconSymbol] = true;
|
|
31977
|
+
|
|
31703
31978
|
const IconSocialDrawio = react.forwardRef(
|
|
31704
31979
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31705
31980
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -31970,6 +32245,33 @@ const IconSocialLooker = react.forwardRef(
|
|
|
31970
32245
|
);
|
|
31971
32246
|
IconSocialLooker[designSystemBaseIcon.iconSymbol] = true;
|
|
31972
32247
|
|
|
32248
|
+
const IconSocialMonday = react.forwardRef(
|
|
32249
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
32250
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
32251
|
+
return react.createElement(
|
|
32252
|
+
StyledIcon,
|
|
32253
|
+
{
|
|
32254
|
+
...props,
|
|
32255
|
+
weight,
|
|
32256
|
+
debug,
|
|
32257
|
+
"aria-hidden": true,
|
|
32258
|
+
size,
|
|
32259
|
+
viewBox: "0 0 24 24",
|
|
32260
|
+
fill: "none",
|
|
32261
|
+
ref: forwardRef2
|
|
32262
|
+
},
|
|
32263
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
32264
|
+
"path",
|
|
32265
|
+
{
|
|
32266
|
+
fill: "currentColor",
|
|
32267
|
+
d: "M4.488 18.1579a2.4982 2.4982 0 0 1-2.1766-1.263 2.415 2.415 0 0 1 .0684-2.4861l4.4822-7.0387a2.4993 2.4993 0 0 1 2.2126-1.2022 2.4948 2.4948 0 0 1 2.1414 1.32c.4179.79.3656 1.7406-.1348 2.4823l-4.4794 7.0386a2.4987 2.4987 0 0 1-2.1139 1.1491ZM12.1758 18.1578c-.9041 0-1.7359-.4833-2.1728-1.2601a2.408 2.408 0 0 1 .0684-2.4795l4.4737-7.0225a2.4955 2.4955 0 0 1 2.2145-1.2279c.9117.02 1.7378.53 2.1557 1.3276a2.4071 2.4071 0 0 1-.1615 2.4937l-4.4727 7.0225a2.4944 2.4944 0 0 1-2.1053 1.1462ZM19.6924 18.2166c1.2744 0 2.3076-1.0115 2.3076-2.2592 0-1.2477-1.0332-2.2592-2.3076-2.2592-1.2745 0-2.3076 1.0115-2.3076 2.2592 0 1.2477 1.0331 2.2592 2.3076 2.2592Z"
|
|
32268
|
+
}
|
|
32269
|
+
)
|
|
32270
|
+
);
|
|
32271
|
+
}
|
|
32272
|
+
);
|
|
32273
|
+
IconSocialMonday[designSystemBaseIcon.iconSymbol] = true;
|
|
32274
|
+
|
|
31973
32275
|
const IconSocialSlack = react.forwardRef(
|
|
31974
32276
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31975
32277
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -40835,10 +41137,11 @@ const IconViewCenterNew = react.forwardRef(
|
|
|
40835
41137
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40836
41138
|
"path",
|
|
40837
41139
|
{
|
|
41140
|
+
fill: "currentColor",
|
|
40838
41141
|
stroke: "currentColor",
|
|
40839
41142
|
strokeLinejoin: "round",
|
|
40840
41143
|
strokeWidth: "var(--svg-stroke-width)",
|
|
40841
|
-
d: "M8
|
|
41144
|
+
d: "M8 15v-6h8v6h-8Z"
|
|
40842
41145
|
}
|
|
40843
41146
|
)
|
|
40844
41147
|
);
|
|
@@ -40926,13 +41229,12 @@ const IconViewSideLeftNew = react.forwardRef(
|
|
|
40926
41229
|
d: "M19 4h-14c-1.1046 0-2 .8954-2 2v12c0 1.1046.8954 2 2 2h14c1.1046 0 2-.8954 2-2v-12c0-1.1046-.8954-2-2-2Z"
|
|
40927
41230
|
}
|
|
40928
41231
|
),
|
|
41232
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M7 16v-8h4v8h-4Z" }),
|
|
40929
41233
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
40930
41234
|
"path",
|
|
40931
41235
|
{
|
|
40932
|
-
|
|
40933
|
-
|
|
40934
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
40935
|
-
d: "M7 12h4m-4-4v8h4v-8h-4Z"
|
|
41236
|
+
fill: "currentColor",
|
|
41237
|
+
d: "M7 8v-1c-.5523 0-1 .4477-1 1h1Zm0 8h-1c0 .5523.4477 1 1 1v-1Zm4 0v1c.5523 0 1-.4477 1-1h-1Zm0-8h1c0-.5523-.4477-1-1-1v1Zm-4 9h4v-2h-4v2Zm5-1v-8h-2v8h2Zm-1-9h-4v2h4v-2Zm-5 1v4h2v-4h-2Zm0 4v4h2v-4h-2Z"
|
|
40936
41238
|
}
|
|
40937
41239
|
)
|
|
40938
41240
|
);
|
|
@@ -41389,6 +41691,7 @@ exports.IconAlignTop = IconAlignTop;
|
|
|
41389
41691
|
exports.IconAlignTopGroup = IconAlignTopGroup;
|
|
41390
41692
|
exports.IconAlignmentScale = IconAlignmentScale;
|
|
41391
41693
|
exports.IconAltText = IconAltText;
|
|
41694
|
+
exports.IconAltTextUnderline = IconAltTextUnderline;
|
|
41392
41695
|
exports.IconArrowArcLeft = IconArrowArcLeft;
|
|
41393
41696
|
exports.IconArrowArcRight = IconArrowArcRight;
|
|
41394
41697
|
exports.IconArrowBendUpLeft = IconArrowBendUpLeft;
|
|
@@ -41601,6 +41904,7 @@ exports.IconImage = IconImage;
|
|
|
41601
41904
|
exports.IconIndentLeft = IconIndentLeft;
|
|
41602
41905
|
exports.IconIndentRight = IconIndentRight;
|
|
41603
41906
|
exports.IconInformationMarkCircle = IconInformationMarkCircle;
|
|
41907
|
+
exports.IconInsights = IconInsights;
|
|
41604
41908
|
exports.IconKanban = IconKanban;
|
|
41605
41909
|
exports.IconKey = IconKey;
|
|
41606
41910
|
exports.IconKeycap = IconKeycap;
|
|
@@ -41645,6 +41949,8 @@ exports.IconMobile = IconMobile;
|
|
|
41645
41949
|
exports.IconMonitor = IconMonitor;
|
|
41646
41950
|
exports.IconMonitorArrow = IconMonitorArrow;
|
|
41647
41951
|
exports.IconMonitorArrowUp = IconMonitorArrowUp;
|
|
41952
|
+
exports.IconMonitorEyeClosed = IconMonitorEyeClosed;
|
|
41953
|
+
exports.IconMonitorEyeOpen = IconMonitorEyeOpen;
|
|
41648
41954
|
exports.IconMonitorPause = IconMonitorPause;
|
|
41649
41955
|
exports.IconMonitorPlay = IconMonitorPlay;
|
|
41650
41956
|
exports.IconMonitorStop = IconMonitorStop;
|
|
@@ -41721,6 +42027,7 @@ exports.IconPushPinFilled = IconPushPinFilled;
|
|
|
41721
42027
|
exports.IconQuestionMark = IconQuestionMark;
|
|
41722
42028
|
exports.IconQuestionMarkCircle = IconQuestionMarkCircle;
|
|
41723
42029
|
exports.IconQuotes = IconQuotes;
|
|
42030
|
+
exports.IconRaisedHand = IconRaisedHand;
|
|
41724
42031
|
exports.IconRatio169 = IconRatio169;
|
|
41725
42032
|
exports.IconRatio43 = IconRatio43;
|
|
41726
42033
|
exports.IconRatioSquare = IconRatioSquare;
|
|
@@ -41779,12 +42086,14 @@ exports.IconSmileyChat = IconSmileyChat;
|
|
|
41779
42086
|
exports.IconSmileyPlus = IconSmileyPlus;
|
|
41780
42087
|
exports.IconSmileySticker = IconSmileySticker;
|
|
41781
42088
|
exports.IconSocialAdo = IconSocialAdo;
|
|
42089
|
+
exports.IconSocialAsana = IconSocialAsana;
|
|
41782
42090
|
exports.IconSocialDrawio = IconSocialDrawio;
|
|
41783
42091
|
exports.IconSocialFacebook = IconSocialFacebook;
|
|
41784
42092
|
exports.IconSocialInstagram = IconSocialInstagram;
|
|
41785
42093
|
exports.IconSocialJira = IconSocialJira;
|
|
41786
42094
|
exports.IconSocialLinkedin = IconSocialLinkedin;
|
|
41787
42095
|
exports.IconSocialLooker = IconSocialLooker;
|
|
42096
|
+
exports.IconSocialMonday = IconSocialMonday;
|
|
41788
42097
|
exports.IconSocialSlack = IconSocialSlack;
|
|
41789
42098
|
exports.IconSocialTwitter = IconSocialTwitter;
|
|
41790
42099
|
exports.IconSocialX = IconSocialX;
|