@mirohq/design-system-icons 1.15.0 → 1.16.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 +60 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +59 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +5 -1
- package/package.json +3 -3
- package/react/arrow-curves-sparks.tsx +34 -0
- package/react/index.ts +2 -0
- package/react/rectangle-portrait-filled.tsx +1 -1
- package/react/rectangle-portrait.tsx +3 -1
- package/react/widget-columns.tsx +36 -0
- package/svg/24/arrow-curves-sparks.svg +2 -0
- package/svg/24/rectangle-portrait-filled.svg +1 -1
- package/svg/24/rectangle-portrait.svg +1 -1
- package/svg/24/widget-columns.svg +2 -0
- package/svg/meta.json +33 -6
package/dist/main.js
CHANGED
|
@@ -812,6 +812,32 @@ const IconArrowCurvesBottomRight = react.forwardRef(
|
|
|
812
812
|
);
|
|
813
813
|
IconArrowCurvesBottomRight[designSystemBaseIcon.iconSymbol] = true;
|
|
814
814
|
|
|
815
|
+
const IconArrowCurvesSparks = react.forwardRef(
|
|
816
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
817
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
818
|
+
return react.createElement(
|
|
819
|
+
StyledIcon,
|
|
820
|
+
{
|
|
821
|
+
...props,
|
|
822
|
+
debug,
|
|
823
|
+
"aria-hidden": true,
|
|
824
|
+
size,
|
|
825
|
+
viewBox: "0 0 24 24",
|
|
826
|
+
fill: "none",
|
|
827
|
+
ref: forwardRef2
|
|
828
|
+
},
|
|
829
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
830
|
+
"path",
|
|
831
|
+
{
|
|
832
|
+
fill: "currentColor",
|
|
833
|
+
d: "M15 12H7c-1.002 0-1.668.343-2.088.783A2.485 2.485 0 0 0 4.25 14.5c0 .642.23 1.263.662 1.717.42.44 1.086.783 2.088.783h11.586l-1.293-1.293 1.414-1.414 3 3v1.414l-3 3-1.414-1.414L18.586 19H7c-1.498 0-2.706-.532-3.537-1.404-.818-.86-1.213-1.989-1.213-3.096s.395-2.237 1.213-3.096C4.293 10.532 5.502 10 7 10h8v2Zm-3-7H5V3h7v2Zm7.25-4A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5Z"
|
|
834
|
+
}
|
|
835
|
+
)
|
|
836
|
+
);
|
|
837
|
+
}
|
|
838
|
+
);
|
|
839
|
+
IconArrowCurvesSparks[designSystemBaseIcon.iconSymbol] = true;
|
|
840
|
+
|
|
815
841
|
const IconArrowDownLeft = react.forwardRef(
|
|
816
842
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
817
843
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10852,7 +10878,7 @@ const IconRectanglePortraitFilled = react.forwardRef(
|
|
|
10852
10878
|
"path",
|
|
10853
10879
|
{
|
|
10854
10880
|
fill: "currentColor",
|
|
10855
|
-
d: "
|
|
10881
|
+
d: "M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Z"
|
|
10856
10882
|
}
|
|
10857
10883
|
)
|
|
10858
10884
|
);
|
|
@@ -10930,7 +10956,9 @@ const IconRectanglePortrait = react.forwardRef(
|
|
|
10930
10956
|
"path",
|
|
10931
10957
|
{
|
|
10932
10958
|
fill: "currentColor",
|
|
10933
|
-
|
|
10959
|
+
fillRule: "evenodd",
|
|
10960
|
+
d: "M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12ZM6 5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6Z",
|
|
10961
|
+
clipRule: "evenodd"
|
|
10934
10962
|
}
|
|
10935
10963
|
)
|
|
10936
10964
|
);
|
|
@@ -15810,6 +15838,34 @@ const IconWarning = react.forwardRef(
|
|
|
15810
15838
|
);
|
|
15811
15839
|
IconWarning[designSystemBaseIcon.iconSymbol] = true;
|
|
15812
15840
|
|
|
15841
|
+
const IconWidgetColumns = react.forwardRef(
|
|
15842
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
15843
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
15844
|
+
return react.createElement(
|
|
15845
|
+
StyledIcon,
|
|
15846
|
+
{
|
|
15847
|
+
...props,
|
|
15848
|
+
debug,
|
|
15849
|
+
"aria-hidden": true,
|
|
15850
|
+
size,
|
|
15851
|
+
viewBox: "0 0 24 24",
|
|
15852
|
+
fill: "none",
|
|
15853
|
+
ref: forwardRef2
|
|
15854
|
+
},
|
|
15855
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
15856
|
+
"path",
|
|
15857
|
+
{
|
|
15858
|
+
fill: "currentColor",
|
|
15859
|
+
fillRule: "evenodd",
|
|
15860
|
+
d: "M19 2a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h14ZM5 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h3V4H5Zm11 16h3a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-3v16Zm-6 0h4V4h-4v16Z",
|
|
15861
|
+
clipRule: "evenodd"
|
|
15862
|
+
}
|
|
15863
|
+
)
|
|
15864
|
+
);
|
|
15865
|
+
}
|
|
15866
|
+
);
|
|
15867
|
+
IconWidgetColumns[designSystemBaseIcon.iconSymbol] = true;
|
|
15868
|
+
|
|
15813
15869
|
const IconWifiExclamation = react.forwardRef(
|
|
15814
15870
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
15815
15871
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15892,6 +15948,7 @@ exports.IconArrowClockwiseUpLeft = IconArrowClockwiseUpLeft;
|
|
|
15892
15948
|
exports.IconArrowCounterClockwiseDownLeft = IconArrowCounterClockwiseDownLeft;
|
|
15893
15949
|
exports.IconArrowCounterClockwiseUpRight = IconArrowCounterClockwiseUpRight;
|
|
15894
15950
|
exports.IconArrowCurvesBottomRight = IconArrowCurvesBottomRight;
|
|
15951
|
+
exports.IconArrowCurvesSparks = IconArrowCurvesSparks;
|
|
15895
15952
|
exports.IconArrowDown = IconArrowDown;
|
|
15896
15953
|
exports.IconArrowDownLeft = IconArrowDownLeft;
|
|
15897
15954
|
exports.IconArrowDownRight = IconArrowDownRight;
|
|
@@ -16456,6 +16513,7 @@ exports.IconViewSideRight = IconViewSideRight;
|
|
|
16456
16513
|
exports.IconWallet = IconWallet;
|
|
16457
16514
|
exports.IconWand = IconWand;
|
|
16458
16515
|
exports.IconWarning = IconWarning;
|
|
16516
|
+
exports.IconWidgetColumns = IconWidgetColumns;
|
|
16459
16517
|
exports.IconWifi = IconWifi;
|
|
16460
16518
|
exports.IconWifiExclamation = IconWifiExclamation;
|
|
16461
16519
|
//# sourceMappingURL=main.js.map
|