@mirohq/design-system-icons 0.30.6 → 0.31.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 +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 +16 -1
- package/package.json +4 -4
- package/react/index.ts +1 -0
- package/react/mermaid.tsx +32 -0
- package/svg/24/mermaid.svg +2 -0
- package/svg/meta.json +8 -0
package/dist/main.js
CHANGED
|
@@ -6505,6 +6505,30 @@ const IconMegaphone = react.forwardRef(
|
|
|
6505
6505
|
);
|
|
6506
6506
|
IconMegaphone[designSystemBaseIcon.iconSymbol] = true;
|
|
6507
6507
|
|
|
6508
|
+
const IconMermaid = react.forwardRef(
|
|
6509
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
6510
|
+
StyledIcon,
|
|
6511
|
+
{
|
|
6512
|
+
...props,
|
|
6513
|
+
weight,
|
|
6514
|
+
size,
|
|
6515
|
+
viewBox: "0 0 24 24",
|
|
6516
|
+
fill: "none",
|
|
6517
|
+
ref: forwardRef2
|
|
6518
|
+
},
|
|
6519
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
6520
|
+
"path",
|
|
6521
|
+
{
|
|
6522
|
+
fill: "currentColor",
|
|
6523
|
+
fillRule: "evenodd",
|
|
6524
|
+
d: "M4 2c-1.1046 0-2 .8954-2 2v16c0 1.1046.8954 2 2 2h16c1.1046 0 2-.8954 2-2v-16c0-1.1046-.8954-2-2-2h-16Zm8 9.0645c.9041-2.5237 3.3408-4.1736 5.9946-4.0589.089 2.128-.9186 4.1576-2.66 5.3577-.892.6192-1.4249 1.6461-1.4218 2.7397v1.897h-3.8253v-1.897c.003-1.0936-.5301-2.1206-1.4222-2.7397-1.741-1.2006-2.7483-3.2298-2.66-5.3577 2.6538-.1147 5.0906 1.5352 5.9947 4.0589Z",
|
|
6525
|
+
clipRule: "evenodd"
|
|
6526
|
+
}
|
|
6527
|
+
)
|
|
6528
|
+
)
|
|
6529
|
+
);
|
|
6530
|
+
IconMermaid[designSystemBaseIcon.iconSymbol] = true;
|
|
6531
|
+
|
|
6508
6532
|
const IconMicrophoneSlash = react.forwardRef(
|
|
6509
6533
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
6510
6534
|
StyledIcon,
|
|
@@ -12807,6 +12831,7 @@ exports.IconMagnifyingGlassLightning = IconMagnifyingGlassLightning;
|
|
|
12807
12831
|
exports.IconMagnifyingGlassPlus = IconMagnifyingGlassPlus;
|
|
12808
12832
|
exports.IconMap = IconMap;
|
|
12809
12833
|
exports.IconMegaphone = IconMegaphone;
|
|
12834
|
+
exports.IconMermaid = IconMermaid;
|
|
12810
12835
|
exports.IconMicrophone = IconMicrophone;
|
|
12811
12836
|
exports.IconMicrophoneSlash = IconMicrophoneSlash;
|
|
12812
12837
|
exports.IconMinus = IconMinus;
|