@mirohq/design-system-icons 0.44.1 → 0.45.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 +3 -1
- package/package.json +5 -9
- package/react/gavel.tsx +32 -0
- package/react/index.ts +1 -0
- package/svg/24/gavel.svg +2 -0
- package/svg/meta.json +6 -0
package/dist/main.js
CHANGED
|
@@ -5311,6 +5311,30 @@ const IconGauge = react.forwardRef(
|
|
|
5311
5311
|
);
|
|
5312
5312
|
IconGauge[designSystemBaseIcon.iconSymbol] = true;
|
|
5313
5313
|
|
|
5314
|
+
const IconGavel = react.forwardRef(
|
|
5315
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
5316
|
+
StyledIcon,
|
|
5317
|
+
{
|
|
5318
|
+
...props,
|
|
5319
|
+
weight,
|
|
5320
|
+
size,
|
|
5321
|
+
viewBox: "0 0 24 24",
|
|
5322
|
+
fill: "none",
|
|
5323
|
+
ref: forwardRef2
|
|
5324
|
+
},
|
|
5325
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5326
|
+
"path",
|
|
5327
|
+
{
|
|
5328
|
+
fill: "currentColor",
|
|
5329
|
+
fillRule: "evenodd",
|
|
5330
|
+
d: "M2.3063 12.7856a1.0453 1.0453 0 0 1-.2034-1.1914l1.3013-2.7125a1.0454 1.0454 0 0 1 .2034-.287l4.988-4.9874a1.0456 1.0456 0 0 1 .2872-.2033l2.7129-1.3011a1.0456 1.0456 0 0 1 1.1915.2033l3.5596 3.559c.3138.3138.3953.7914.2034 1.1914l-1.3013 2.7125a1.0468 1.0468 0 0 1-.2034.2871l-1.7562 1.756 8.4045 8.4032c.4083.4082.4083 1.0701 0 1.4784-.4084.4083-1.0704.4083-1.4787 0l-8.4045-8.4032-1.7532 1.7529a1.046 1.046 0 0 1-.2871.2034l-2.713 1.3011a1.0457 1.0457 0 0 1-1.1915-.2034l-3.5595-3.559Zm8.1651-7.8246 1.3609-.6527 2.5121 2.5117-.6528 1.3608-3.2202-3.2198Zm-1.6148 1.3424-2.5528 2.5524 3.4925 3.4919 2.5527-2.5524-3.4924-3.492Zm-3.8953 4.167 3.22 3.2196-1.3605.6525-2.5121-2.5117.6526-1.3604Z",
|
|
5331
|
+
clipRule: "evenodd"
|
|
5332
|
+
}
|
|
5333
|
+
)
|
|
5334
|
+
)
|
|
5335
|
+
);
|
|
5336
|
+
IconGavel[designSystemBaseIcon.iconSymbol] = true;
|
|
5337
|
+
|
|
5314
5338
|
const IconGift = react.forwardRef(
|
|
5315
5339
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
5316
5340
|
StyledIcon,
|
|
@@ -14009,6 +14033,7 @@ exports.IconFramePlay = IconFramePlay;
|
|
|
14009
14033
|
exports.IconFramePlus = IconFramePlus;
|
|
14010
14034
|
exports.IconFunnel = IconFunnel;
|
|
14011
14035
|
exports.IconGauge = IconGauge;
|
|
14036
|
+
exports.IconGavel = IconGavel;
|
|
14012
14037
|
exports.IconGift = IconGift;
|
|
14013
14038
|
exports.IconGlobe = IconGlobe;
|
|
14014
14039
|
exports.IconGraduationCap = IconGraduationCap;
|