@mirohq/design-system-icons 0.45.2-style-dictionary.2 → 0.46.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 +36 -12
- package/dist/main.js.map +1 -1
- package/dist/module.js +36 -13
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +5 -3
- package/package.json +3 -3
- package/react/activity.tsx +36 -0
- package/react/arrow-box-out.tsx +4 -9
- package/react/index.ts +1 -0
- package/svg/24/activity.svg +2 -0
- package/svg/24/arrow-box-out.svg +1 -1
- package/svg/meta.json +9 -0
package/dist/main.js
CHANGED
|
@@ -22,6 +22,37 @@ const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.s
|
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
+
const IconActivity = react.forwardRef(
|
|
26
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
27
|
+
StyledIcon,
|
|
28
|
+
{
|
|
29
|
+
...props,
|
|
30
|
+
weight,
|
|
31
|
+
size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none",
|
|
34
|
+
ref: forwardRef2
|
|
35
|
+
},
|
|
36
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
37
|
+
"path",
|
|
38
|
+
{
|
|
39
|
+
fill: "currentColor",
|
|
40
|
+
d: "M9.5 8a1 1 0 0 1 .7683.3598l4.2317 5.0782 1.7318-2.0782c.3536-.4243.9841-.4816 1.4084-.128.4243.3535.4816.9841.1281 1.4084l-2.5 3a1.0001 1.0001 0 0 1-1.5365 0l-4.2318-5.0782-1.7317 2.0782c-.3536.4243-.9842.4816-1.4084.128-.4243-.3535-.4816-.9841-.128-1.4084l2.5-3a1 1 0 0 1 .7681-.3598Z"
|
|
41
|
+
}
|
|
42
|
+
),
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
44
|
+
"path",
|
|
45
|
+
{
|
|
46
|
+
fill: "currentColor",
|
|
47
|
+
fillRule: "evenodd",
|
|
48
|
+
d: "M12 2c-5.5228 0-10 4.4771-10 10 0 1.6688.4096 3.2446 1.1342 4.6297l-1.1002 4.1118a1 1 0 0 0 1.2245 1.2245l4.1119-1.1002c1.385.7246 2.9608 1.1342 4.6296 1.1342 5.5229 0 10-4.4772 10-10 0-5.5229-4.4771-10-10-10Zm-8 10c0-4.4183 3.5817-8 8-8s8 3.5817 8 8-3.5817 8-8 8c-1.4588 0-2.8236-.3896-3.9992-1.0696a1 1 0 0 0-.7592-.1005l-2.8282.7568.7567-2.8282a1 1 0 0 0-.1004-.7592c-.6801-1.1757-1.0697-2.5405-1.0697-3.9993Z",
|
|
49
|
+
clipRule: "evenodd"
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
)
|
|
53
|
+
);
|
|
54
|
+
IconActivity[designSystemBaseIcon.iconSymbol] = true;
|
|
55
|
+
|
|
25
56
|
const IconAddLineBottom = react.forwardRef(
|
|
26
57
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
27
58
|
StyledIcon,
|
|
@@ -478,18 +509,10 @@ const IconArrowBoxOut = react.forwardRef(
|
|
|
478
509
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
479
510
|
"path",
|
|
480
511
|
{
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
}
|
|
486
|
-
),
|
|
487
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
488
|
-
"path",
|
|
489
|
-
{
|
|
490
|
-
stroke: "currentColor",
|
|
491
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
492
|
-
d: "M12 12v.0001"
|
|
512
|
+
fill: "currentColor",
|
|
513
|
+
fillRule: "evenodd",
|
|
514
|
+
d: "M13.0013 5c-.5523 0-1-.4477-1-1s.4477-1 1-1h8v8c0 .5523-.4478 1-1 1-.5523 0-1-.4477-1-1v-4.5883l-7.2954 7.2954c-.3905.3905-1.0237.3905-1.4142 0-.3906-.3905-.3906-1.0237 0-1.4142l7.2929-7.2929h-4.5833Zm-10.0025 3c0-1.1046.8954-2 2-2h4.5c.5523 0 1 .4477 1 1s-.4477 1-1 1h-4.5v11h11v-5c0-.5523.4477-1 1-1s1 .4477 1 1v5c0 1.1046-.8955 2-2 2h-11c-1.1046 0-2-.8954-2-2v-11Z",
|
|
515
|
+
clipRule: "evenodd"
|
|
493
516
|
}
|
|
494
517
|
)
|
|
495
518
|
)
|
|
@@ -13862,6 +13885,7 @@ const IconWallet = react.forwardRef(
|
|
|
13862
13885
|
);
|
|
13863
13886
|
IconWallet[designSystemBaseIcon.iconSymbol] = true;
|
|
13864
13887
|
|
|
13888
|
+
exports.IconActivity = IconActivity;
|
|
13865
13889
|
exports.IconAddLineBottom = IconAddLineBottom;
|
|
13866
13890
|
exports.IconAddLineRight = IconAddLineRight;
|
|
13867
13891
|
exports.IconAlignBottom = IconAlignBottom;
|