@mirohq/design-system-icons 0.36.1-forms.2 → 0.36.2-forms.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 +26 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +25 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +4 -2
- package/package.json +3 -3
- package/react/dots-six-horizontal.tsx +30 -0
- package/react/{dots-six.tsx → dots-six-vertical.tsx} +2 -2
- package/react/index.ts +2 -1
- package/svg/24/dots-six-horizontal.svg +2 -0
- package/svg/meta.json +10 -1
- /package/svg/24/{dots-six.svg → dots-six-vertical.svg} +0 -0
package/dist/main.js
CHANGED
|
@@ -4056,7 +4056,29 @@ const IconDotsNine = react.forwardRef(
|
|
|
4056
4056
|
);
|
|
4057
4057
|
IconDotsNine[designSystemBaseIcon.iconSymbol] = true;
|
|
4058
4058
|
|
|
4059
|
-
const
|
|
4059
|
+
const IconDotsSixHorizontal = react.forwardRef(
|
|
4060
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
4061
|
+
StyledIcon,
|
|
4062
|
+
{
|
|
4063
|
+
...props,
|
|
4064
|
+
weight,
|
|
4065
|
+
size,
|
|
4066
|
+
viewBox: "0 0 24 24",
|
|
4067
|
+
fill: "none",
|
|
4068
|
+
ref: forwardRef2
|
|
4069
|
+
},
|
|
4070
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4071
|
+
"path",
|
|
4072
|
+
{
|
|
4073
|
+
fill: "currentColor",
|
|
4074
|
+
d: "M6 8c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM6 16c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM14 8c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM14 16c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM22 8c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2ZM22 16c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2Z"
|
|
4075
|
+
}
|
|
4076
|
+
)
|
|
4077
|
+
)
|
|
4078
|
+
);
|
|
4079
|
+
IconDotsSixHorizontal[designSystemBaseIcon.iconSymbol] = true;
|
|
4080
|
+
|
|
4081
|
+
const IconDotsSixVertical = react.forwardRef(
|
|
4060
4082
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
4061
4083
|
StyledIcon,
|
|
4062
4084
|
{
|
|
@@ -4084,7 +4106,7 @@ const IconDotsSix = react.forwardRef(
|
|
|
4084
4106
|
)
|
|
4085
4107
|
)
|
|
4086
4108
|
);
|
|
4087
|
-
|
|
4109
|
+
IconDotsSixVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
4088
4110
|
|
|
4089
4111
|
const IconDotsThreeVertical = react.forwardRef(
|
|
4090
4112
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
@@ -13037,7 +13059,8 @@ exports.IconDiagramCardUser = IconDiagramCardUser;
|
|
|
13037
13059
|
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
13038
13060
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
13039
13061
|
exports.IconDotsNine = IconDotsNine;
|
|
13040
|
-
exports.
|
|
13062
|
+
exports.IconDotsSixHorizontal = IconDotsSixHorizontal;
|
|
13063
|
+
exports.IconDotsSixVertical = IconDotsSixVertical;
|
|
13041
13064
|
exports.IconDotsThree = IconDotsThree;
|
|
13042
13065
|
exports.IconDotsThreeVertical = IconDotsThreeVertical;
|
|
13043
13066
|
exports.IconDotsTwo = IconDotsTwo;
|