@mirohq/design-system-icons 0.21.0 → 0.21.2
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 +6 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +6 -2
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/react/lightbox.tsx +3 -2
- package/svg/24/lightbox.svg +1 -1
package/dist/main.js
CHANGED
|
@@ -20,7 +20,7 @@ const isIconComponent = (iconComponent) => {
|
|
|
20
20
|
const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.svg, {
|
|
21
21
|
display: "inline-flex",
|
|
22
22
|
verticalAlign: "text-bottom",
|
|
23
|
-
forcedColorAdjust: "
|
|
23
|
+
forcedColorAdjust: "auto",
|
|
24
24
|
variants: {
|
|
25
25
|
size: {
|
|
26
26
|
small: {
|
|
@@ -4701,8 +4701,12 @@ const IconLightbox = React.forwardRef(
|
|
|
4701
4701
|
strokeLinecap: "round",
|
|
4702
4702
|
strokeLinejoin: "round",
|
|
4703
4703
|
strokeWidth: "var(--svg-stroke-width)",
|
|
4704
|
-
d: "M12 4h-
|
|
4704
|
+
d: "M12 4h-9v14h5m4-14h9v14h-5m-4-14v-2m-4 16-2 4m2-4h8m0 0 2 4",
|
|
4705
4705
|
vectorEffect: "non-scaling-stroke"
|
|
4706
|
+
}),
|
|
4707
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
4708
|
+
fill: "currentColor",
|
|
4709
|
+
d: "M3 4h18v3h-18v-3ZM3 15h18v3h-18v-3Z"
|
|
4706
4710
|
})
|
|
4707
4711
|
)
|
|
4708
4712
|
);
|