@mirohq/design-system-icons 0.57.0 → 0.58.1
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 +327 -25
- package/dist/main.js.map +1 -1
- package/dist/module.js +327 -25
- package/dist/module.js.map +1 -1
- package/package.json +7 -5
- package/react/arrow-down.tsx +52 -4
- package/react/arrow-fat-right.tsx +46 -4
- package/react/arrow-left.tsx +52 -4
- package/react/arrow-right.tsx +52 -4
- package/react/arrows-in-simple.tsx +53 -4
- package/react/clock-counter-clockwise.tsx +46 -4
- package/react/diagramming-format.tsx +1 -1
- package/svg/24/arrow-down-new.svg +2 -0
- package/svg/24/arrow-down.svg +1 -1
- package/svg/24/arrow-fat-right-new.svg +2 -0
- package/svg/24/arrow-left-new.svg +2 -0
- package/svg/24/arrow-right-new.svg +2 -0
- package/svg/24/arrows-in-simple-new.svg +2 -0
- package/svg/24/clock-counter-clockwise-new.svg +2 -0
- package/svg/24/diagramming-format.svg +1 -1
- package/svg/meta.json +4172 -4172
package/dist/main.js
CHANGED
|
@@ -9,6 +9,7 @@ var designSystemUseLocalStorage = require('@mirohq/design-system-use-local-stora
|
|
|
9
9
|
var designSystemPrimitive = require('@mirohq/design-system-primitive');
|
|
10
10
|
var designSystemStitches = require('@mirohq/design-system-stitches');
|
|
11
11
|
var designSystemUtils = require('@mirohq/design-system-utils');
|
|
12
|
+
var designSystemExperiments = require('@mirohq/design-system-experiments');
|
|
12
13
|
|
|
13
14
|
const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.svg, {
|
|
14
15
|
display: "inline-flex",
|
|
@@ -929,17 +930,15 @@ const IconArrowDownRight = react.forwardRef(
|
|
|
929
930
|
);
|
|
930
931
|
IconArrowDownRight[designSystemBaseIcon.iconSymbol] = true;
|
|
931
932
|
|
|
932
|
-
const
|
|
933
|
-
(
|
|
933
|
+
const IconArrowDownNew = react.forwardRef(
|
|
934
|
+
(props, forwardRef2) => {
|
|
934
935
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
935
936
|
return react.createElement(
|
|
936
937
|
StyledIcon,
|
|
937
938
|
{
|
|
938
939
|
...props,
|
|
939
|
-
weight,
|
|
940
940
|
debug,
|
|
941
941
|
"aria-hidden": true,
|
|
942
|
-
size,
|
|
943
942
|
viewBox: "0 0 24 24",
|
|
944
943
|
fill: "none",
|
|
945
944
|
ref: forwardRef2
|
|
@@ -964,6 +963,61 @@ const IconArrowDown = react.forwardRef(
|
|
|
964
963
|
);
|
|
965
964
|
}
|
|
966
965
|
);
|
|
966
|
+
const IconArrowDownOld = react.forwardRef(
|
|
967
|
+
(props, forwardRef2) => {
|
|
968
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
969
|
+
return react.createElement(
|
|
970
|
+
StyledIcon,
|
|
971
|
+
{
|
|
972
|
+
...props,
|
|
973
|
+
debug,
|
|
974
|
+
"aria-hidden": true,
|
|
975
|
+
viewBox: "0 0 24 24",
|
|
976
|
+
fill: "none",
|
|
977
|
+
ref: forwardRef2
|
|
978
|
+
},
|
|
979
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
980
|
+
"path",
|
|
981
|
+
{
|
|
982
|
+
stroke: "currentColor",
|
|
983
|
+
strokeLinecap: "round",
|
|
984
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
985
|
+
d: "M12 3v17.205m-6.9964-6.2033 6.9964 6.5983 7.0031-6.6044"
|
|
986
|
+
}
|
|
987
|
+
),
|
|
988
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
989
|
+
"path",
|
|
990
|
+
{
|
|
991
|
+
stroke: "currentColor",
|
|
992
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
993
|
+
d: "M12 12v.0001"
|
|
994
|
+
}
|
|
995
|
+
)
|
|
996
|
+
);
|
|
997
|
+
}
|
|
998
|
+
);
|
|
999
|
+
const IconArrowDown = react.forwardRef(
|
|
1000
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1001
|
+
const [v1] = designSystemExperiments.useNewDesignLanguage();
|
|
1002
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1003
|
+
IconArrowDownNew,
|
|
1004
|
+
{
|
|
1005
|
+
...props,
|
|
1006
|
+
size,
|
|
1007
|
+
weight,
|
|
1008
|
+
ref: forwardRef2
|
|
1009
|
+
}
|
|
1010
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
1011
|
+
IconArrowDownOld,
|
|
1012
|
+
{
|
|
1013
|
+
...props,
|
|
1014
|
+
size,
|
|
1015
|
+
weight,
|
|
1016
|
+
ref: forwardRef2
|
|
1017
|
+
}
|
|
1018
|
+
);
|
|
1019
|
+
}
|
|
1020
|
+
);
|
|
967
1021
|
IconArrowDown[designSystemBaseIcon.iconSymbol] = true;
|
|
968
1022
|
|
|
969
1023
|
const IconArrowElbowDownRight = react.forwardRef(
|
|
@@ -1068,17 +1122,39 @@ const IconArrowFatLeft = react.forwardRef(
|
|
|
1068
1122
|
);
|
|
1069
1123
|
IconArrowFatLeft[designSystemBaseIcon.iconSymbol] = true;
|
|
1070
1124
|
|
|
1071
|
-
const
|
|
1072
|
-
(
|
|
1125
|
+
const IconArrowFatRightNew = react.forwardRef(
|
|
1126
|
+
(props, forwardRef2) => {
|
|
1127
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1128
|
+
return react.createElement(
|
|
1129
|
+
StyledIcon,
|
|
1130
|
+
{
|
|
1131
|
+
...props,
|
|
1132
|
+
debug,
|
|
1133
|
+
"aria-hidden": true,
|
|
1134
|
+
viewBox: "0 0 24 24",
|
|
1135
|
+
fill: "none",
|
|
1136
|
+
ref: forwardRef2
|
|
1137
|
+
},
|
|
1138
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1139
|
+
"path",
|
|
1140
|
+
{
|
|
1141
|
+
stroke: "currentColor",
|
|
1142
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1143
|
+
d: "M11 7h-7.75a.25.25 0 0 0-.25.25v9.5a.25.25 0 0 0 .25.25h7.75v3.9367c0 .2167.257.3308.4177.1854l10.0823-9.1221-10.0823-9.122c-.1607-.1455-.4177-.0314-.4177.1853v3.9367ZM3 12v.0001"
|
|
1144
|
+
}
|
|
1145
|
+
)
|
|
1146
|
+
);
|
|
1147
|
+
}
|
|
1148
|
+
);
|
|
1149
|
+
const IconArrowFatRightOld = react.forwardRef(
|
|
1150
|
+
(props, forwardRef2) => {
|
|
1073
1151
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1074
1152
|
return react.createElement(
|
|
1075
1153
|
StyledIcon,
|
|
1076
1154
|
{
|
|
1077
1155
|
...props,
|
|
1078
|
-
weight,
|
|
1079
1156
|
debug,
|
|
1080
1157
|
"aria-hidden": true,
|
|
1081
|
-
size,
|
|
1082
1158
|
viewBox: "0 0 24 24",
|
|
1083
1159
|
fill: "none",
|
|
1084
1160
|
ref: forwardRef2
|
|
@@ -1094,6 +1170,28 @@ const IconArrowFatRight = react.forwardRef(
|
|
|
1094
1170
|
);
|
|
1095
1171
|
}
|
|
1096
1172
|
);
|
|
1173
|
+
const IconArrowFatRight = react.forwardRef(
|
|
1174
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1175
|
+
const [v1] = designSystemExperiments.useNewDesignLanguage();
|
|
1176
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1177
|
+
IconArrowFatRightNew,
|
|
1178
|
+
{
|
|
1179
|
+
...props,
|
|
1180
|
+
size,
|
|
1181
|
+
weight,
|
|
1182
|
+
ref: forwardRef2
|
|
1183
|
+
}
|
|
1184
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
1185
|
+
IconArrowFatRightOld,
|
|
1186
|
+
{
|
|
1187
|
+
...props,
|
|
1188
|
+
size,
|
|
1189
|
+
weight,
|
|
1190
|
+
ref: forwardRef2
|
|
1191
|
+
}
|
|
1192
|
+
);
|
|
1193
|
+
}
|
|
1194
|
+
);
|
|
1097
1195
|
IconArrowFatRight[designSystemBaseIcon.iconSymbol] = true;
|
|
1098
1196
|
|
|
1099
1197
|
const IconArrowFatUpRight = react.forwardRef(
|
|
@@ -1134,17 +1232,15 @@ const IconArrowFatUpRight = react.forwardRef(
|
|
|
1134
1232
|
);
|
|
1135
1233
|
IconArrowFatUpRight[designSystemBaseIcon.iconSymbol] = true;
|
|
1136
1234
|
|
|
1137
|
-
const
|
|
1138
|
-
(
|
|
1235
|
+
const IconArrowLeftNew = react.forwardRef(
|
|
1236
|
+
(props, forwardRef2) => {
|
|
1139
1237
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1140
1238
|
return react.createElement(
|
|
1141
1239
|
StyledIcon,
|
|
1142
1240
|
{
|
|
1143
1241
|
...props,
|
|
1144
|
-
weight,
|
|
1145
1242
|
debug,
|
|
1146
1243
|
"aria-hidden": true,
|
|
1147
|
-
size,
|
|
1148
1244
|
viewBox: "0 0 24 24",
|
|
1149
1245
|
fill: "none",
|
|
1150
1246
|
ref: forwardRef2
|
|
@@ -1169,19 +1265,72 @@ const IconArrowLeft = react.forwardRef(
|
|
|
1169
1265
|
);
|
|
1170
1266
|
}
|
|
1171
1267
|
);
|
|
1268
|
+
const IconArrowLeftOld = react.forwardRef(
|
|
1269
|
+
(props, forwardRef2) => {
|
|
1270
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1271
|
+
return react.createElement(
|
|
1272
|
+
StyledIcon,
|
|
1273
|
+
{
|
|
1274
|
+
...props,
|
|
1275
|
+
debug,
|
|
1276
|
+
"aria-hidden": true,
|
|
1277
|
+
viewBox: "0 0 24 24",
|
|
1278
|
+
fill: "none",
|
|
1279
|
+
ref: forwardRef2
|
|
1280
|
+
},
|
|
1281
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1282
|
+
"path",
|
|
1283
|
+
{
|
|
1284
|
+
stroke: "currentColor",
|
|
1285
|
+
strokeLinecap: "round",
|
|
1286
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1287
|
+
d: "M21 12h-17m6.41-7-7 7 7 7"
|
|
1288
|
+
}
|
|
1289
|
+
),
|
|
1290
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1291
|
+
"path",
|
|
1292
|
+
{
|
|
1293
|
+
stroke: "currentColor",
|
|
1294
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1295
|
+
d: "M12 12v.0001"
|
|
1296
|
+
}
|
|
1297
|
+
)
|
|
1298
|
+
);
|
|
1299
|
+
}
|
|
1300
|
+
);
|
|
1301
|
+
const IconArrowLeft = react.forwardRef(
|
|
1302
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1303
|
+
const [v1] = designSystemExperiments.useNewDesignLanguage();
|
|
1304
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1305
|
+
IconArrowLeftNew,
|
|
1306
|
+
{
|
|
1307
|
+
...props,
|
|
1308
|
+
size,
|
|
1309
|
+
weight,
|
|
1310
|
+
ref: forwardRef2
|
|
1311
|
+
}
|
|
1312
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
1313
|
+
IconArrowLeftOld,
|
|
1314
|
+
{
|
|
1315
|
+
...props,
|
|
1316
|
+
size,
|
|
1317
|
+
weight,
|
|
1318
|
+
ref: forwardRef2
|
|
1319
|
+
}
|
|
1320
|
+
);
|
|
1321
|
+
}
|
|
1322
|
+
);
|
|
1172
1323
|
IconArrowLeft[designSystemBaseIcon.iconSymbol] = true;
|
|
1173
1324
|
|
|
1174
|
-
const
|
|
1175
|
-
(
|
|
1325
|
+
const IconArrowRightNew = react.forwardRef(
|
|
1326
|
+
(props, forwardRef2) => {
|
|
1176
1327
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1177
1328
|
return react.createElement(
|
|
1178
1329
|
StyledIcon,
|
|
1179
1330
|
{
|
|
1180
1331
|
...props,
|
|
1181
|
-
weight,
|
|
1182
1332
|
debug,
|
|
1183
1333
|
"aria-hidden": true,
|
|
1184
|
-
size,
|
|
1185
1334
|
viewBox: "0 0 25 24",
|
|
1186
1335
|
fill: "none",
|
|
1187
1336
|
ref: forwardRef2
|
|
@@ -1206,6 +1355,61 @@ const IconArrowRight = react.forwardRef(
|
|
|
1206
1355
|
);
|
|
1207
1356
|
}
|
|
1208
1357
|
);
|
|
1358
|
+
const IconArrowRightOld = react.forwardRef(
|
|
1359
|
+
(props, forwardRef2) => {
|
|
1360
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1361
|
+
return react.createElement(
|
|
1362
|
+
StyledIcon,
|
|
1363
|
+
{
|
|
1364
|
+
...props,
|
|
1365
|
+
debug,
|
|
1366
|
+
"aria-hidden": true,
|
|
1367
|
+
viewBox: "0 0 25 24",
|
|
1368
|
+
fill: "none",
|
|
1369
|
+
ref: forwardRef2
|
|
1370
|
+
},
|
|
1371
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1372
|
+
"path",
|
|
1373
|
+
{
|
|
1374
|
+
stroke: "currentColor",
|
|
1375
|
+
strokeLinecap: "round",
|
|
1376
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1377
|
+
d: "M21 12h-17m10.59-7 7 7-7 7"
|
|
1378
|
+
}
|
|
1379
|
+
),
|
|
1380
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1381
|
+
"path",
|
|
1382
|
+
{
|
|
1383
|
+
stroke: "currentColor",
|
|
1384
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1385
|
+
d: "M1 0v.0001"
|
|
1386
|
+
}
|
|
1387
|
+
)
|
|
1388
|
+
);
|
|
1389
|
+
}
|
|
1390
|
+
);
|
|
1391
|
+
const IconArrowRight = react.forwardRef(
|
|
1392
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1393
|
+
const [v1] = designSystemExperiments.useNewDesignLanguage();
|
|
1394
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1395
|
+
IconArrowRightNew,
|
|
1396
|
+
{
|
|
1397
|
+
...props,
|
|
1398
|
+
size,
|
|
1399
|
+
weight,
|
|
1400
|
+
ref: forwardRef2
|
|
1401
|
+
}
|
|
1402
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
1403
|
+
IconArrowRightOld,
|
|
1404
|
+
{
|
|
1405
|
+
...props,
|
|
1406
|
+
size,
|
|
1407
|
+
weight,
|
|
1408
|
+
ref: forwardRef2
|
|
1409
|
+
}
|
|
1410
|
+
);
|
|
1411
|
+
}
|
|
1412
|
+
);
|
|
1209
1413
|
IconArrowRight[designSystemBaseIcon.iconSymbol] = true;
|
|
1210
1414
|
|
|
1211
1415
|
const IconArrowUpCircle = react.forwardRef(
|
|
@@ -1536,17 +1740,49 @@ const IconArrowsHorizontalLinesTopBottom = react.forwardRef(
|
|
|
1536
1740
|
);
|
|
1537
1741
|
IconArrowsHorizontalLinesTopBottom[designSystemBaseIcon.iconSymbol] = true;
|
|
1538
1742
|
|
|
1539
|
-
const
|
|
1540
|
-
(
|
|
1743
|
+
const IconArrowsInSimpleNew = react.forwardRef(
|
|
1744
|
+
(props, forwardRef2) => {
|
|
1745
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1746
|
+
return react.createElement(
|
|
1747
|
+
StyledIcon,
|
|
1748
|
+
{
|
|
1749
|
+
...props,
|
|
1750
|
+
debug,
|
|
1751
|
+
"aria-hidden": true,
|
|
1752
|
+
viewBox: "0 0 24 24",
|
|
1753
|
+
fill: "none",
|
|
1754
|
+
ref: forwardRef2
|
|
1755
|
+
},
|
|
1756
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1757
|
+
"path",
|
|
1758
|
+
{
|
|
1759
|
+
stroke: "currentColor",
|
|
1760
|
+
strokeLinecap: "round",
|
|
1761
|
+
strokeLinejoin: "round",
|
|
1762
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1763
|
+
d: "m21 3-7 7m0 0v-5m0 5h5m-16 11 7-7m0 0v5m0-5h-5"
|
|
1764
|
+
}
|
|
1765
|
+
),
|
|
1766
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1767
|
+
"path",
|
|
1768
|
+
{
|
|
1769
|
+
stroke: "currentColor",
|
|
1770
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1771
|
+
d: "M16 8v.0001"
|
|
1772
|
+
}
|
|
1773
|
+
)
|
|
1774
|
+
);
|
|
1775
|
+
}
|
|
1776
|
+
);
|
|
1777
|
+
const IconArrowsInSimpleOld = react.forwardRef(
|
|
1778
|
+
(props, forwardRef2) => {
|
|
1541
1779
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1542
1780
|
return react.createElement(
|
|
1543
1781
|
StyledIcon,
|
|
1544
1782
|
{
|
|
1545
1783
|
...props,
|
|
1546
|
-
weight,
|
|
1547
1784
|
debug,
|
|
1548
1785
|
"aria-hidden": true,
|
|
1549
|
-
size,
|
|
1550
1786
|
viewBox: "0 0 24 24",
|
|
1551
1787
|
fill: "none",
|
|
1552
1788
|
ref: forwardRef2
|
|
@@ -1572,6 +1808,28 @@ const IconArrowsInSimple = react.forwardRef(
|
|
|
1572
1808
|
);
|
|
1573
1809
|
}
|
|
1574
1810
|
);
|
|
1811
|
+
const IconArrowsInSimple = react.forwardRef(
|
|
1812
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1813
|
+
const [v1] = designSystemExperiments.useNewDesignLanguage();
|
|
1814
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1815
|
+
IconArrowsInSimpleNew,
|
|
1816
|
+
{
|
|
1817
|
+
...props,
|
|
1818
|
+
size,
|
|
1819
|
+
weight,
|
|
1820
|
+
ref: forwardRef2
|
|
1821
|
+
}
|
|
1822
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
1823
|
+
IconArrowsInSimpleOld,
|
|
1824
|
+
{
|
|
1825
|
+
...props,
|
|
1826
|
+
size,
|
|
1827
|
+
weight,
|
|
1828
|
+
ref: forwardRef2
|
|
1829
|
+
}
|
|
1830
|
+
);
|
|
1831
|
+
}
|
|
1832
|
+
);
|
|
1575
1833
|
IconArrowsInSimple[designSystemBaseIcon.iconSymbol] = true;
|
|
1576
1834
|
|
|
1577
1835
|
const IconArrowsOutCardinal = react.forwardRef(
|
|
@@ -3840,17 +4098,39 @@ const IconClockCounterClockwiseSimple = react.forwardRef(
|
|
|
3840
4098
|
);
|
|
3841
4099
|
IconClockCounterClockwiseSimple[designSystemBaseIcon.iconSymbol] = true;
|
|
3842
4100
|
|
|
3843
|
-
const
|
|
3844
|
-
(
|
|
4101
|
+
const IconClockCounterClockwiseNew = react.forwardRef(
|
|
4102
|
+
(props, forwardRef2) => {
|
|
4103
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
4104
|
+
return react.createElement(
|
|
4105
|
+
StyledIcon,
|
|
4106
|
+
{
|
|
4107
|
+
...props,
|
|
4108
|
+
debug,
|
|
4109
|
+
"aria-hidden": true,
|
|
4110
|
+
viewBox: "0 0 24 24",
|
|
4111
|
+
fill: "none",
|
|
4112
|
+
ref: forwardRef2
|
|
4113
|
+
},
|
|
4114
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4115
|
+
"path",
|
|
4116
|
+
{
|
|
4117
|
+
fill: "currentColor",
|
|
4118
|
+
d: "m4.0696 13.1237.1237.9924 1.9847-.2475-.1238-.9923-1.9846.2474Zm.9304 1.8763-.7071.7071h1.4142l-.7071-.7071Zm8 6c4.9706 0 9-4.0294 9-9h-2c0 3.866-3.134 7-7 7v2Zm9-9c0-4.9706-4.0294-9-9-9v2c3.866 0 7 3.134 7 7h2Zm-9-9c-4.9706 0-9 4.0294-9 9h2c0-3.866 3.134-7 7-7v-2Zm-9 9c0 .3801.0236.7552.0696 1.1237l1.9846-.2474a7.079 7.079 0 0 1-.0542-.8763h-2Zm1.7071 3.7071 3-3-1.4142-1.4142-3 3 1.4142 1.4142Zm0-1.4142-3-3-1.4142 1.4142 3 3 1.4142-1.4142Z"
|
|
4119
|
+
}
|
|
4120
|
+
),
|
|
4121
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 13, cy: 12, r: 2, fill: "currentColor" })
|
|
4122
|
+
);
|
|
4123
|
+
}
|
|
4124
|
+
);
|
|
4125
|
+
const IconClockCounterClockwiseOld = react.forwardRef(
|
|
4126
|
+
(props, forwardRef2) => {
|
|
3845
4127
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
3846
4128
|
return react.createElement(
|
|
3847
4129
|
StyledIcon,
|
|
3848
4130
|
{
|
|
3849
4131
|
...props,
|
|
3850
|
-
weight,
|
|
3851
4132
|
debug,
|
|
3852
4133
|
"aria-hidden": true,
|
|
3853
|
-
size,
|
|
3854
4134
|
viewBox: "0 0 24 24",
|
|
3855
4135
|
fill: "none",
|
|
3856
4136
|
ref: forwardRef2
|
|
@@ -3876,6 +4156,28 @@ const IconClockCounterClockwise = react.forwardRef(
|
|
|
3876
4156
|
);
|
|
3877
4157
|
}
|
|
3878
4158
|
);
|
|
4159
|
+
const IconClockCounterClockwise = react.forwardRef(
|
|
4160
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
4161
|
+
const [v1] = designSystemExperiments.useNewDesignLanguage();
|
|
4162
|
+
return v1 ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
4163
|
+
IconClockCounterClockwiseNew,
|
|
4164
|
+
{
|
|
4165
|
+
...props,
|
|
4166
|
+
size,
|
|
4167
|
+
weight,
|
|
4168
|
+
ref: forwardRef2
|
|
4169
|
+
}
|
|
4170
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
4171
|
+
IconClockCounterClockwiseOld,
|
|
4172
|
+
{
|
|
4173
|
+
...props,
|
|
4174
|
+
size,
|
|
4175
|
+
weight,
|
|
4176
|
+
ref: forwardRef2
|
|
4177
|
+
}
|
|
4178
|
+
);
|
|
4179
|
+
}
|
|
4180
|
+
);
|
|
3879
4181
|
IconClockCounterClockwise[designSystemBaseIcon.iconSymbol] = true;
|
|
3880
4182
|
|
|
3881
4183
|
const IconClockOvertime = react.forwardRef(
|
|
@@ -5598,7 +5900,7 @@ const IconDiagrammingFormat = react.forwardRef(
|
|
|
5598
5900
|
{
|
|
5599
5901
|
fill: "currentColor",
|
|
5600
5902
|
fillRule: "evenodd",
|
|
5601
|
-
d: "M13 4.5c0-1.3807 1.1193-2.5 2.5-2.5h4c1.3807 0 2.5 1.1193 2.5 2.5v4c0 1.3807-1.1193 2.5-2.5 2.5h-4c-1.3807 0-2.5-1.1193-2.5-2.5v-1h-2c-2.2091 0-4 1.7909-4 4v.5c2.419 0 4.4367 1.7178 4.9 4h6.
|
|
5903
|
+
d: "M13 4.5c0-1.3807 1.1193-2.5 2.5-2.5h4c1.3807 0 2.5 1.1193 2.5 2.5v4c0 1.3807-1.1193 2.5-2.5 2.5h-4c-1.3807 0-2.5-1.1193-2.5-2.5v-1h-2c-2.2091 0-4 1.7909-4 4v.5c2.419 0 4.4367 1.7178 4.9 4h6.6265l-2.1437-1.7117 1.2341-1.5768 4.3833 3.5001c.2387.1906.378.481.378.7884 0 .3073-.1393.5978-.378.7884l-4.3833 3.4999-1.2341-1.5768 2.1435-1.7115h-6.6263c-.4633 2.2822-2.481 4-4.9 4-2.7614 0-5-2.2386-5-5 0-2.0503 1.2341-3.8124 3-4.584v-.916c0-3.3137 2.6863-6 6-6h2v-1Zm2.5-.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4Zm-8.5 10c-1.6569 0-3 1.3431-3 3s1.3431 3 3 3 3-1.3431 3-3-1.3431-3-3-3Z",
|
|
5602
5904
|
clipRule: "evenodd"
|
|
5603
5905
|
}
|
|
5604
5906
|
)
|