@mirohq/design-system-icons 1.9.0 → 1.10.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 +27 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +27 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -1
- package/package.json +4 -4
- package/react/add-line-left.tsx +34 -0
- package/react/index.ts +1 -0
- package/svg/24/add-line-left.svg +2 -0
- package/svg/meta.json +9 -0
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);
|
|
@@ -15108,6 +15134,7 @@ IconWifi[designSystemBaseIcon.iconSymbol] = true;
|
|
|
15108
15134
|
|
|
15109
15135
|
exports.IconActivity = IconActivity;
|
|
15110
15136
|
exports.IconAddLineBottom = IconAddLineBottom;
|
|
15137
|
+
exports.IconAddLineLeft = IconAddLineLeft;
|
|
15111
15138
|
exports.IconAddLineRight = IconAddLineRight;
|
|
15112
15139
|
exports.IconAiText = IconAiText;
|
|
15113
15140
|
exports.IconAlignBottom = IconAlignBottom;
|