@mirohq/design-system-icons 0.18.0 → 0.20.0-icon-types.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 +32 -37
- package/dist/main.js.map +1 -1
- package/dist/module.js +31 -37
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +5 -3
- package/package.json +1 -1
- package/react/bell.tsx +4 -0
- package/react/camera.tsx +4 -0
- package/react/index.ts +1 -1
- package/react/lightbox.tsx +36 -0
- package/react/sticky-eye-open.tsx +1 -1
- package/svg/24/lightbox.svg +2 -0
- package/svg/24/sticky-eye-open.svg +1 -1
- package/svg/meta.json +5 -5
- package/react/background-color.tsx +0 -46
- package/svg/24/background-color.svg +0 -2
package/dist/main.js
CHANGED
|
@@ -1081,41 +1081,6 @@ const IconAt = React.forwardRef(
|
|
|
1081
1081
|
)
|
|
1082
1082
|
);
|
|
1083
1083
|
|
|
1084
|
-
const IconBackgroundColor = React.forwardRef(
|
|
1085
|
-
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1086
|
-
StyledIcon,
|
|
1087
|
-
{
|
|
1088
|
-
...props,
|
|
1089
|
-
weight,
|
|
1090
|
-
size,
|
|
1091
|
-
viewBox: "0 0 24 24",
|
|
1092
|
-
fill: "none",
|
|
1093
|
-
ref: forwardRef2
|
|
1094
|
-
},
|
|
1095
|
-
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1096
|
-
stroke: "currentColor",
|
|
1097
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
1098
|
-
d: "m10.9497 2.9497 9.6746 9.6746-8.2604 8.2605c-.781.781-2.0474.781-2.8284 0l-6.8462-6.8462c-.781-.7811-.781-2.0474 0-2.8285l8.2604-8.2604Z",
|
|
1099
|
-
vectorEffect: "non-scaling-stroke"
|
|
1100
|
-
}),
|
|
1101
|
-
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1102
|
-
stroke: "currentColor",
|
|
1103
|
-
strokeLinecap: "round",
|
|
1104
|
-
strokeLinejoin: "round",
|
|
1105
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
1106
|
-
d: "m20.5 19 .5-2 .5 2-.5.5-.5-.5Z",
|
|
1107
|
-
vectorEffect: "non-scaling-stroke"
|
|
1108
|
-
}),
|
|
1109
|
-
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
1110
|
-
stroke: "currentColor",
|
|
1111
|
-
strokeLinecap: "round",
|
|
1112
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
1113
|
-
d: "m10.586 8-5.586-5.586",
|
|
1114
|
-
vectorEffect: "non-scaling-stroke"
|
|
1115
|
-
})
|
|
1116
|
-
)
|
|
1117
|
-
);
|
|
1118
|
-
|
|
1119
1084
|
const IconBadge = React.forwardRef(
|
|
1120
1085
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1121
1086
|
StyledIcon,
|
|
@@ -1222,6 +1187,8 @@ const IconBellTilt = React.forwardRef(
|
|
|
1222
1187
|
)
|
|
1223
1188
|
);
|
|
1224
1189
|
|
|
1190
|
+
const IconTypeSymbol = Symbol("icon");
|
|
1191
|
+
|
|
1225
1192
|
const IconBell = React.forwardRef(
|
|
1226
1193
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1227
1194
|
StyledIcon,
|
|
@@ -1249,6 +1216,7 @@ const IconBell = React.forwardRef(
|
|
|
1249
1216
|
})))
|
|
1250
1217
|
)
|
|
1251
1218
|
);
|
|
1219
|
+
IconBell.__Type = IconTypeSymbol;
|
|
1252
1220
|
|
|
1253
1221
|
const IconBoard = React.forwardRef(
|
|
1254
1222
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
@@ -1518,6 +1486,7 @@ const IconCamera = React.forwardRef(
|
|
|
1518
1486
|
})))
|
|
1519
1487
|
)
|
|
1520
1488
|
);
|
|
1489
|
+
IconCamera.__Type = IconTypeSymbol;
|
|
1521
1490
|
|
|
1522
1491
|
const IconCardNumberThree = React.forwardRef(
|
|
1523
1492
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
@@ -4550,6 +4519,31 @@ const IconLifesaver = React.forwardRef(
|
|
|
4550
4519
|
)
|
|
4551
4520
|
);
|
|
4552
4521
|
|
|
4522
|
+
const IconLightbox = React.forwardRef(
|
|
4523
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
4524
|
+
StyledIcon,
|
|
4525
|
+
{
|
|
4526
|
+
...props,
|
|
4527
|
+
weight,
|
|
4528
|
+
size,
|
|
4529
|
+
viewBox: "0 0 24 24",
|
|
4530
|
+
fill: "none",
|
|
4531
|
+
ref: forwardRef2
|
|
4532
|
+
},
|
|
4533
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4534
|
+
fill: "currentColor",
|
|
4535
|
+
d: "M3.4142 2h-1.4142v1.4142l1.4142-1.4142ZM2 8.4142v-2.8284l3.5858-3.5858h2.8284l-2 2h-.4142c-1.1046 0-2 .8954-2 2v.4142l-2 2ZM2 13.4142v-2.8284l2-2v2.8284l-2 2ZM2 18.4142v-2.8284l2-2v2.8284l-2 2ZM3.4142 22h-1.4142v-1.4142l2.0677-2.0678a2.0038 2.0038 0 0 0 1.4143 1.4143l-2.0678 2.0677ZM8.4142 22h-2.8284l2-2h2.8284l-2 2ZM13.4142 22h-2.8284l2-2h2.8284l-2 2ZM18.4142 22h-2.8284l2-2h.4142c1.1046 0 2-.8954 2-2v-.4142l2-2v2.8284l-3.5858 3.5858ZM22 20.5858v1.4142h-1.4142l1.4142-1.4142ZM22 10.5858v2.8284l-2 2v-2.8284l2-2ZM22 5.5858v2.8284l-2 2v-2.8284l2-2ZM20.5858 2h1.4142v1.4142l-2.0677 2.0678a2.0038 2.0038 0 0 0-1.4143-1.4143l2.0678-2.0677ZM15.5858 2h2.8284l-2 2h-2.8284l2-2ZM10.5858 2h2.8284l-2 2h-2.8284l2-2Z"
|
|
4536
|
+
}),
|
|
4537
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4538
|
+
stroke: "currentColor",
|
|
4539
|
+
strokeLinecap: "round",
|
|
4540
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
4541
|
+
d: "M7.2778 17h9.4444c.1534 0 .2778-.1599.2778-.3571v-9.2858c0-.1972-.1244-.3571-.2778-.3571h-9.4444c-.1534 0-.2778.1599-.2778.3571v9.2858c0 .1972.1244.3571.2778.3571Z",
|
|
4542
|
+
vectorEffect: "non-scaling-stroke"
|
|
4543
|
+
})
|
|
4544
|
+
)
|
|
4545
|
+
);
|
|
4546
|
+
|
|
4553
4547
|
const IconLightbulb = React.forwardRef(
|
|
4554
4548
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
4555
4549
|
StyledIcon,
|
|
@@ -8511,7 +8505,7 @@ const IconStickyEyeOpen = React.forwardRef(
|
|
|
8511
8505
|
}),
|
|
8512
8506
|
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
8513
8507
|
fill: "currentColor",
|
|
8514
|
-
d: "M22
|
|
8508
|
+
d: "M22 11c0-.5523-.4477-1-1-1s-1 .4477-1 1h2Zm-1 3 .7071.7071a1.0001 1.0001 0 0 0 .2929-.7071h-1Zm-15-10c.5523 0 1-.4477 1-1s-.4477-1-1-1v2Zm8 17v1c.2652 0 .5196-.1054.7071-.2929l-.7071-.7071Zm0-7v-1c-.5523 0-1 .4477-1 1h1Zm6-3v3h2v-3h-2Zm-16 9v-16h-2v16h2Zm0-16h2v-2h-2v2Zm10 16h-10v2h10v-2Zm7-7h-7v2h7v-2Zm-8 1v7h2v-7h-2Zm-3-8c0 .1635-.0495.2218.0106.0838.0389-.0892.1075-.2226.2115-.3883.2072-.3302.5283-.747.9618-1.1535.8639-.8098 2.1304-1.542 3.8161-1.542v-2c-2.3143 0-4.0478 1.0178-5.184 2.083-.5664.531-.9953 1.083-1.288 1.5496-.1461.2327-.265.4549-.3511.6528-.065.149-.1769.4261-.1769.7146h2Zm5-3c1.6857 0 2.9522.7322 3.8161 1.542.4335.4065.7546.8233.9618 1.1536.104.1656.1727.299.2115.3882.0601.138.0106.0797.0106-.0838h2c0-.2885-.112-.5656-.1769-.7146-.0862-.198-.205-.42-.351-.6528-.2928-.4666-.7217-1.0186-1.2882-1.5496-1.1361-1.0652-2.8696-2.083-5.1839-2.083v2Zm5 3c0-.1635.0495-.2218-.0106-.0838-.0388.0892-.1075.2226-.2115.3883-.2072.3302-.5283.747-.9618 1.1535-.8639.8098-2.1304 1.542-3.8161 1.542v2c2.3143 0 4.0478-1.0178 5.1839-2.083.5665-.531.9954-1.083 1.2882-1.5496.146-.2327.2648-.4549.351-.6528.0649-.149.1769-.4261.1769-.7146h-2Zm-5 3c-1.6857 0-2.9522-.7322-3.8161-1.542-.4335-.4065-.7546-.8233-.9618-1.1536-.104-.1656-.1726-.299-.2115-.3882-.06-.138-.0106-.0797-.0106.0838h-2c0 .2885.112.5656.1769.7146.0861.198.205.42.351.6528.2928.4666.7217 1.0186 1.2882 1.5496 1.1361 1.0652 2.8696 2.083 5.1839 2.083v-2Zm5.2929 4.2929-7 7 1.4142 1.4142 7-7-1.4142-1.4142Zm-16.2929-9.2929v-2c-1.1046 0-2 .8954-2 2h2Zm-2 16c0 1.1046.8954 2 2 2v-2h-2Z"
|
|
8515
8509
|
})
|
|
8516
8510
|
)
|
|
8517
8511
|
);
|
|
@@ -10184,7 +10178,6 @@ exports.IconArrowsOutLinesHorizontal = IconArrowsOutLinesHorizontal;
|
|
|
10184
10178
|
exports.IconArrowsOutSimple = IconArrowsOutSimple;
|
|
10185
10179
|
exports.IconArticle = IconArticle;
|
|
10186
10180
|
exports.IconAt = IconAt;
|
|
10187
|
-
exports.IconBackgroundColor = IconBackgroundColor;
|
|
10188
10181
|
exports.IconBadge = IconBadge;
|
|
10189
10182
|
exports.IconBarrel = IconBarrel;
|
|
10190
10183
|
exports.IconBell = IconBell;
|
|
@@ -10310,6 +10303,7 @@ exports.IconLaptop = IconLaptop;
|
|
|
10310
10303
|
exports.IconLasso = IconLasso;
|
|
10311
10304
|
exports.IconLayout = IconLayout;
|
|
10312
10305
|
exports.IconLifesaver = IconLifesaver;
|
|
10306
|
+
exports.IconLightbox = IconLightbox;
|
|
10313
10307
|
exports.IconLightbulb = IconLightbulb;
|
|
10314
10308
|
exports.IconLightning = IconLightning;
|
|
10315
10309
|
exports.IconLineCurved = IconLineCurved;
|
|
@@ -10497,6 +10491,7 @@ exports.IconTriangle = IconTriangle;
|
|
|
10497
10491
|
exports.IconTriangleSquareCircle = IconTriangleSquareCircle;
|
|
10498
10492
|
exports.IconTrident = IconTrident;
|
|
10499
10493
|
exports.IconTrophy = IconTrophy;
|
|
10494
|
+
exports.IconTypeSymbol = IconTypeSymbol;
|
|
10500
10495
|
exports.IconUser = IconUser;
|
|
10501
10496
|
exports.IconUserAdd = IconUserAdd;
|
|
10502
10497
|
exports.IconUserArrowRightUp = IconUserArrowRightUp;
|