@mirohq/design-system-icons 1.23.0 → 1.24.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 +2 -2
- package/react/add-line-top.tsx +34 -0
- package/react/index.ts +1 -0
- package/svg/24/add-line-top.svg +2 -0
- package/svg/meta.json +9 -0
package/dist/main.js
CHANGED
|
@@ -156,6 +156,32 @@ const IconAddLineRight = react.forwardRef(
|
|
|
156
156
|
);
|
|
157
157
|
IconAddLineRight[designSystemBaseIcon.iconSymbol] = true;
|
|
158
158
|
|
|
159
|
+
const IconAddLineTop = react.forwardRef(
|
|
160
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
161
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
162
|
+
return react.createElement(
|
|
163
|
+
StyledIcon,
|
|
164
|
+
{
|
|
165
|
+
...props,
|
|
166
|
+
debug,
|
|
167
|
+
"aria-hidden": true,
|
|
168
|
+
size,
|
|
169
|
+
viewBox: "0 0 24 24",
|
|
170
|
+
fill: "none",
|
|
171
|
+
ref: forwardRef2
|
|
172
|
+
},
|
|
173
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
174
|
+
"path",
|
|
175
|
+
{
|
|
176
|
+
fill: "currentColor",
|
|
177
|
+
d: "M11 14v-4H7V8h4V4h2v4h4v2h-4v4h-2Zm-9 6v-2h20v2H2Z"
|
|
178
|
+
}
|
|
179
|
+
)
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
);
|
|
183
|
+
IconAddLineTop[designSystemBaseIcon.iconSymbol] = true;
|
|
184
|
+
|
|
159
185
|
const IconAha = react.forwardRef(
|
|
160
186
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
161
187
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16687,6 +16713,7 @@ exports.IconActivitySparkle = IconActivitySparkle;
|
|
|
16687
16713
|
exports.IconAddLineBottom = IconAddLineBottom;
|
|
16688
16714
|
exports.IconAddLineLeft = IconAddLineLeft;
|
|
16689
16715
|
exports.IconAddLineRight = IconAddLineRight;
|
|
16716
|
+
exports.IconAddLineTop = IconAddLineTop;
|
|
16690
16717
|
exports.IconAha = IconAha;
|
|
16691
16718
|
exports.IconAiCursor = IconAiCursor;
|
|
16692
16719
|
exports.IconAiText = IconAiText;
|