@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/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);
|
|
@@ -16784,17 +16829,15 @@ const IconHandPointing = forwardRef(
|
|
|
16784
16829
|
);
|
|
16785
16830
|
IconHandPointing[iconSymbol] = true;
|
|
16786
16831
|
|
|
16787
|
-
const
|
|
16788
|
-
(
|
|
16832
|
+
const IconHandRaisedFilledNew = forwardRef(
|
|
16833
|
+
(props, forwardRef2) => {
|
|
16789
16834
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
16790
16835
|
return createElement(
|
|
16791
16836
|
StyledIcon,
|
|
16792
16837
|
{
|
|
16793
16838
|
...props,
|
|
16794
|
-
weight,
|
|
16795
16839
|
debug,
|
|
16796
16840
|
"aria-hidden": true,
|
|
16797
|
-
size,
|
|
16798
16841
|
viewBox: "0 0 24 24",
|
|
16799
16842
|
fill: "none",
|
|
16800
16843
|
ref: forwardRef2
|
|
@@ -16811,6 +16854,70 @@ const IconHandRaisedFilled = forwardRef(
|
|
|
16811
16854
|
);
|
|
16812
16855
|
}
|
|
16813
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
|
+
);
|
|
16814
16921
|
IconHandRaisedFilled[iconSymbol] = true;
|
|
16815
16922
|
|
|
16816
16923
|
const IconHandNew = forwardRef(
|
|
@@ -18032,6 +18139,42 @@ const IconInformationMarkCircle = forwardRef(
|
|
|
18032
18139
|
);
|
|
18033
18140
|
IconInformationMarkCircle[iconSymbol] = true;
|
|
18034
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
|
+
|
|
18035
18178
|
const IconKanban = forwardRef(
|
|
18036
18179
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18037
18180
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -21138,6 +21281,80 @@ const IconMonitorArrow = forwardRef(
|
|
|
21138
21281
|
);
|
|
21139
21282
|
IconMonitorArrow[iconSymbol] = true;
|
|
21140
21283
|
|
|
21284
|
+
const IconMonitorEyeClosed = forwardRef(
|
|
21285
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
21286
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
21287
|
+
return createElement(
|
|
21288
|
+
StyledIcon,
|
|
21289
|
+
{
|
|
21290
|
+
...props,
|
|
21291
|
+
weight,
|
|
21292
|
+
debug,
|
|
21293
|
+
"aria-hidden": true,
|
|
21294
|
+
size,
|
|
21295
|
+
viewBox: "0 0 24 24",
|
|
21296
|
+
fill: "none",
|
|
21297
|
+
ref: forwardRef2
|
|
21298
|
+
},
|
|
21299
|
+
/* @__PURE__ */ jsx(
|
|
21300
|
+
"path",
|
|
21301
|
+
{
|
|
21302
|
+
stroke: "currentColor",
|
|
21303
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21304
|
+
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"
|
|
21305
|
+
}
|
|
21306
|
+
),
|
|
21307
|
+
/* @__PURE__ */ jsx(
|
|
21308
|
+
"path",
|
|
21309
|
+
{
|
|
21310
|
+
stroke: "currentColor",
|
|
21311
|
+
strokeLinecap: "square",
|
|
21312
|
+
strokeLinejoin: "round",
|
|
21313
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21314
|
+
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"
|
|
21315
|
+
}
|
|
21316
|
+
)
|
|
21317
|
+
);
|
|
21318
|
+
}
|
|
21319
|
+
);
|
|
21320
|
+
IconMonitorEyeClosed[iconSymbol] = true;
|
|
21321
|
+
|
|
21322
|
+
const IconMonitorEyeOpen = forwardRef(
|
|
21323
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
21324
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
21325
|
+
return createElement(
|
|
21326
|
+
StyledIcon,
|
|
21327
|
+
{
|
|
21328
|
+
...props,
|
|
21329
|
+
weight,
|
|
21330
|
+
debug,
|
|
21331
|
+
"aria-hidden": true,
|
|
21332
|
+
size,
|
|
21333
|
+
viewBox: "0 0 24 24",
|
|
21334
|
+
fill: "none",
|
|
21335
|
+
ref: forwardRef2
|
|
21336
|
+
},
|
|
21337
|
+
/* @__PURE__ */ jsx(
|
|
21338
|
+
"path",
|
|
21339
|
+
{
|
|
21340
|
+
fill: "currentColor",
|
|
21341
|
+
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"
|
|
21342
|
+
}
|
|
21343
|
+
),
|
|
21344
|
+
/* @__PURE__ */ jsx("circle", { cx: 15.5, cy: 5.5, r: 1.5, fill: "currentColor" }),
|
|
21345
|
+
/* @__PURE__ */ jsx(
|
|
21346
|
+
"path",
|
|
21347
|
+
{
|
|
21348
|
+
stroke: "currentColor",
|
|
21349
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
21350
|
+
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"
|
|
21351
|
+
}
|
|
21352
|
+
)
|
|
21353
|
+
);
|
|
21354
|
+
}
|
|
21355
|
+
);
|
|
21356
|
+
IconMonitorEyeOpen[iconSymbol] = true;
|
|
21357
|
+
|
|
21141
21358
|
const IconMonitorPauseNew = forwardRef(
|
|
21142
21359
|
(props, forwardRef2) => {
|
|
21143
21360
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -26970,6 +27187,35 @@ const IconQuotes = forwardRef(
|
|
|
26970
27187
|
);
|
|
26971
27188
|
IconQuotes[iconSymbol] = true;
|
|
26972
27189
|
|
|
27190
|
+
const IconRaisedHand = forwardRef(
|
|
27191
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
27192
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
27193
|
+
return createElement(
|
|
27194
|
+
StyledIcon,
|
|
27195
|
+
{
|
|
27196
|
+
...props,
|
|
27197
|
+
weight,
|
|
27198
|
+
debug,
|
|
27199
|
+
"aria-hidden": true,
|
|
27200
|
+
size,
|
|
27201
|
+
viewBox: "0 0 24 24",
|
|
27202
|
+
fill: "none",
|
|
27203
|
+
ref: forwardRef2
|
|
27204
|
+
},
|
|
27205
|
+
/* @__PURE__ */ jsx(
|
|
27206
|
+
"path",
|
|
27207
|
+
{
|
|
27208
|
+
stroke: "currentColor",
|
|
27209
|
+
strokeLinejoin: "bevel",
|
|
27210
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
27211
|
+
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"
|
|
27212
|
+
}
|
|
27213
|
+
)
|
|
27214
|
+
);
|
|
27215
|
+
}
|
|
27216
|
+
);
|
|
27217
|
+
IconRaisedHand[iconSymbol] = true;
|
|
27218
|
+
|
|
26973
27219
|
const IconRatio169 = forwardRef(
|
|
26974
27220
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26975
27221
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -31696,6 +31942,35 @@ const IconSocialAdo = forwardRef(
|
|
|
31696
31942
|
);
|
|
31697
31943
|
IconSocialAdo[iconSymbol] = true;
|
|
31698
31944
|
|
|
31945
|
+
const IconSocialAsana = forwardRef(
|
|
31946
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31947
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
31948
|
+
return createElement(
|
|
31949
|
+
StyledIcon,
|
|
31950
|
+
{
|
|
31951
|
+
...props,
|
|
31952
|
+
weight,
|
|
31953
|
+
debug,
|
|
31954
|
+
"aria-hidden": true,
|
|
31955
|
+
size,
|
|
31956
|
+
viewBox: "0 0 24 24",
|
|
31957
|
+
fill: "none",
|
|
31958
|
+
ref: forwardRef2
|
|
31959
|
+
},
|
|
31960
|
+
/* @__PURE__ */ jsx(
|
|
31961
|
+
"path",
|
|
31962
|
+
{
|
|
31963
|
+
fill: "currentColor",
|
|
31964
|
+
fillRule: "evenodd",
|
|
31965
|
+
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",
|
|
31966
|
+
clipRule: "evenodd"
|
|
31967
|
+
}
|
|
31968
|
+
)
|
|
31969
|
+
);
|
|
31970
|
+
}
|
|
31971
|
+
);
|
|
31972
|
+
IconSocialAsana[iconSymbol] = true;
|
|
31973
|
+
|
|
31699
31974
|
const IconSocialDrawio = forwardRef(
|
|
31700
31975
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31701
31976
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -31966,6 +32241,33 @@ const IconSocialLooker = forwardRef(
|
|
|
31966
32241
|
);
|
|
31967
32242
|
IconSocialLooker[iconSymbol] = true;
|
|
31968
32243
|
|
|
32244
|
+
const IconSocialMonday = forwardRef(
|
|
32245
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
32246
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
32247
|
+
return createElement(
|
|
32248
|
+
StyledIcon,
|
|
32249
|
+
{
|
|
32250
|
+
...props,
|
|
32251
|
+
weight,
|
|
32252
|
+
debug,
|
|
32253
|
+
"aria-hidden": true,
|
|
32254
|
+
size,
|
|
32255
|
+
viewBox: "0 0 24 24",
|
|
32256
|
+
fill: "none",
|
|
32257
|
+
ref: forwardRef2
|
|
32258
|
+
},
|
|
32259
|
+
/* @__PURE__ */ jsx(
|
|
32260
|
+
"path",
|
|
32261
|
+
{
|
|
32262
|
+
fill: "currentColor",
|
|
32263
|
+
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"
|
|
32264
|
+
}
|
|
32265
|
+
)
|
|
32266
|
+
);
|
|
32267
|
+
}
|
|
32268
|
+
);
|
|
32269
|
+
IconSocialMonday[iconSymbol] = true;
|
|
32270
|
+
|
|
31969
32271
|
const IconSocialSlack = forwardRef(
|
|
31970
32272
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31971
32273
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -40831,10 +41133,11 @@ const IconViewCenterNew = forwardRef(
|
|
|
40831
41133
|
/* @__PURE__ */ jsx(
|
|
40832
41134
|
"path",
|
|
40833
41135
|
{
|
|
41136
|
+
fill: "currentColor",
|
|
40834
41137
|
stroke: "currentColor",
|
|
40835
41138
|
strokeLinejoin: "round",
|
|
40836
41139
|
strokeWidth: "var(--svg-stroke-width)",
|
|
40837
|
-
d: "M8
|
|
41140
|
+
d: "M8 15v-6h8v6h-8Z"
|
|
40838
41141
|
}
|
|
40839
41142
|
)
|
|
40840
41143
|
);
|
|
@@ -40922,13 +41225,12 @@ const IconViewSideLeftNew = forwardRef(
|
|
|
40922
41225
|
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"
|
|
40923
41226
|
}
|
|
40924
41227
|
),
|
|
41228
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M7 16v-8h4v8h-4Z" }),
|
|
40925
41229
|
/* @__PURE__ */ jsx(
|
|
40926
41230
|
"path",
|
|
40927
41231
|
{
|
|
40928
|
-
|
|
40929
|
-
|
|
40930
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
40931
|
-
d: "M7 12h4m-4-4v8h4v-8h-4Z"
|
|
41232
|
+
fill: "currentColor",
|
|
41233
|
+
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"
|
|
40932
41234
|
}
|
|
40933
41235
|
)
|
|
40934
41236
|
);
|
|
@@ -41370,5 +41672,5 @@ const IconWifi = forwardRef(
|
|
|
41370
41672
|
);
|
|
41371
41673
|
IconWifi[iconSymbol] = true;
|
|
41372
41674
|
|
|
41373
|
-
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, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, 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, 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, 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, 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 };
|
|
41675
|
+
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, IconMonitorEyeClosed, IconMonitorEyeOpen, 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, IconSocialMonday, 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 };
|
|
41374
41676
|
//# sourceMappingURL=module.js.map
|