@mirohq/design-system-icons 0.41.3 → 0.42.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 +25 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +25 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +5 -10
- package/package.json +6 -6
- package/react/file-spreadsheet.tsx +32 -0
- package/react/index.ts +1 -0
- package/svg/24/file-spreadsheet.svg +2 -0
- package/svg/meta.json +8 -0
package/dist/main.js
CHANGED
|
@@ -4866,6 +4866,30 @@ const IconFactory = react.forwardRef(
|
|
|
4866
4866
|
);
|
|
4867
4867
|
IconFactory[designSystemBaseIcon.iconSymbol] = true;
|
|
4868
4868
|
|
|
4869
|
+
const IconFileSpreadsheet = react.forwardRef(
|
|
4870
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
4871
|
+
StyledIcon,
|
|
4872
|
+
{
|
|
4873
|
+
...props,
|
|
4874
|
+
weight,
|
|
4875
|
+
size,
|
|
4876
|
+
viewBox: "0 0 24 24",
|
|
4877
|
+
fill: "none",
|
|
4878
|
+
ref: forwardRef2
|
|
4879
|
+
},
|
|
4880
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4881
|
+
"path",
|
|
4882
|
+
{
|
|
4883
|
+
stroke: "currentColor",
|
|
4884
|
+
strokeLinecap: "round",
|
|
4885
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
4886
|
+
d: "M14 3v4.5a.5.5 0 0 0 .5.5h4.5m-10 9h1m4 0h1m-6-4h1m4 0h1m-1.2071-10h-7.7929c-.5523 0-1 .4477-1 1v16c0 .5523.4477 1 1 1h12c.5523 0 1-.4477 1-1v-11.7929a.5003.5003 0 0 0-.1464-.3536l-4.7072-4.707a.4998.4998 0 0 0-.3535-.1465Z"
|
|
4887
|
+
}
|
|
4888
|
+
)
|
|
4889
|
+
)
|
|
4890
|
+
);
|
|
4891
|
+
IconFileSpreadsheet[designSystemBaseIcon.iconSymbol] = true;
|
|
4892
|
+
|
|
4869
4893
|
const IconFlag = react.forwardRef(
|
|
4870
4894
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
4871
4895
|
StyledIcon,
|
|
@@ -13501,6 +13525,7 @@ exports.IconEyeOpenSlash = IconEyeOpenSlash;
|
|
|
13501
13525
|
exports.IconEyedropper = IconEyedropper;
|
|
13502
13526
|
exports.IconFactory = IconFactory;
|
|
13503
13527
|
exports.IconFactoryHouse = IconFactoryHouse;
|
|
13528
|
+
exports.IconFileSpreadsheet = IconFileSpreadsheet;
|
|
13504
13529
|
exports.IconFlag = IconFlag;
|
|
13505
13530
|
exports.IconFolder = IconFolder;
|
|
13506
13531
|
exports.IconFrame = IconFrame;
|