@mirohq/design-system-icons 1.9.0 → 1.10.1
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 +28 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +28 -4
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +3 -3
- package/react/add-line-left.tsx +34 -0
- package/react/index.ts +1 -0
- package/react/slide-format.tsx +1 -3
- package/svg/24/add-line-left.svg +2 -0
- package/svg/24/slide-format.svg +1 -1
- package/svg/meta.json +27 -18
package/dist/main.js
CHANGED
|
@@ -78,6 +78,32 @@ const IconAddLineBottom = react.forwardRef(
|
|
|
78
78
|
);
|
|
79
79
|
IconAddLineBottom[designSystemBaseIcon.iconSymbol] = true;
|
|
80
80
|
|
|
81
|
+
const IconAddLineLeft = react.forwardRef(
|
|
82
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
83
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
84
|
+
return react.createElement(
|
|
85
|
+
StyledIcon,
|
|
86
|
+
{
|
|
87
|
+
...props,
|
|
88
|
+
debug,
|
|
89
|
+
"aria-hidden": true,
|
|
90
|
+
size,
|
|
91
|
+
viewBox: "0 0 24 24",
|
|
92
|
+
fill: "none",
|
|
93
|
+
ref: forwardRef2
|
|
94
|
+
},
|
|
95
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
96
|
+
"path",
|
|
97
|
+
{
|
|
98
|
+
fill: "currentColor",
|
|
99
|
+
d: "M14 13h-4v4H8v-4H4v-2h4V7h2v4h4v2Zm7 8h-2V3h2v18Z"
|
|
100
|
+
}
|
|
101
|
+
)
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
);
|
|
105
|
+
IconAddLineLeft[designSystemBaseIcon.iconSymbol] = true;
|
|
106
|
+
|
|
81
107
|
const IconAddLineRight = react.forwardRef(
|
|
82
108
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
83
109
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11212,9 +11238,7 @@ const IconSlideFormat = react.forwardRef(
|
|
|
11212
11238
|
"path",
|
|
11213
11239
|
{
|
|
11214
11240
|
fill: "currentColor",
|
|
11215
|
-
|
|
11216
|
-
d: "M9 15H7v-2h2v2Zm4 0h-2v-4h2v4Zm4 0h-2V9h2v6Zm2-11a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM5 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z",
|
|
11217
|
-
clipRule: "evenodd"
|
|
11241
|
+
d: "M17 9v2H7V9h10Zm-8 4v2H7v-2h2Zm10-9a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM5 6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z"
|
|
11218
11242
|
}
|
|
11219
11243
|
)
|
|
11220
11244
|
);
|
|
@@ -15108,6 +15132,7 @@ IconWifi[designSystemBaseIcon.iconSymbol] = true;
|
|
|
15108
15132
|
|
|
15109
15133
|
exports.IconActivity = IconActivity;
|
|
15110
15134
|
exports.IconAddLineBottom = IconAddLineBottom;
|
|
15135
|
+
exports.IconAddLineLeft = IconAddLineLeft;
|
|
15111
15136
|
exports.IconAddLineRight = IconAddLineRight;
|
|
15112
15137
|
exports.IconAiText = IconAiText;
|
|
15113
15138
|
exports.IconAlignBottom = IconAlignBottom;
|