@mirohq/design-system-icons 0.19.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 +5 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +5 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +3 -3
- package/react/bell.tsx +4 -0
- package/react/camera.tsx +4 -0
package/dist/main.js
CHANGED
|
@@ -1187,6 +1187,8 @@ const IconBellTilt = React.forwardRef(
|
|
|
1187
1187
|
)
|
|
1188
1188
|
);
|
|
1189
1189
|
|
|
1190
|
+
const IconTypeSymbol = Symbol("icon");
|
|
1191
|
+
|
|
1190
1192
|
const IconBell = React.forwardRef(
|
|
1191
1193
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
1192
1194
|
StyledIcon,
|
|
@@ -1214,6 +1216,7 @@ const IconBell = React.forwardRef(
|
|
|
1214
1216
|
})))
|
|
1215
1217
|
)
|
|
1216
1218
|
);
|
|
1219
|
+
IconBell.__Type = IconTypeSymbol;
|
|
1217
1220
|
|
|
1218
1221
|
const IconBoard = React.forwardRef(
|
|
1219
1222
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
@@ -1483,6 +1486,7 @@ const IconCamera = React.forwardRef(
|
|
|
1483
1486
|
})))
|
|
1484
1487
|
)
|
|
1485
1488
|
);
|
|
1489
|
+
IconCamera.__Type = IconTypeSymbol;
|
|
1486
1490
|
|
|
1487
1491
|
const IconCardNumberThree = React.forwardRef(
|
|
1488
1492
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => React.createElement(
|
|
@@ -10487,6 +10491,7 @@ exports.IconTriangle = IconTriangle;
|
|
|
10487
10491
|
exports.IconTriangleSquareCircle = IconTriangleSquareCircle;
|
|
10488
10492
|
exports.IconTrident = IconTrident;
|
|
10489
10493
|
exports.IconTrophy = IconTrophy;
|
|
10494
|
+
exports.IconTypeSymbol = IconTypeSymbol;
|
|
10490
10495
|
exports.IconUser = IconUser;
|
|
10491
10496
|
exports.IconUserAdd = IconUserAdd;
|
|
10492
10497
|
exports.IconUserArrowRightUp = IconUserArrowRightUp;
|