@mirohq/design-system-icons 0.40.0 → 0.41.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 +161 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +158 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +10 -1
- package/package.json +4 -3
- package/react/comment-group.tsx +36 -0
- package/react/index.ts +4 -0
- package/react/shapes-lines.tsx +58 -0
- package/react/user-background-blur.tsx +38 -0
- package/react/user-filter.tsx +37 -0
- package/react/video-camera-simple-slash.tsx +1 -1
- package/react/video-camera-simple.tsx +1 -1
- package/svg/24/comment-group.svg +2 -0
- package/svg/24/shapes-lines.svg +2 -0
- package/svg/24/user-background-blur.svg +2 -0
- package/svg/24/user-filter.svg +2 -0
- package/svg/24/video-camera-simple-slash.svg +1 -1
- package/svg/24/video-camera-simple.svg +1 -1
- package/svg/meta.json +36 -0
package/dist/main.js
CHANGED
|
@@ -3151,6 +3151,37 @@ const IconColumnsThree = react.forwardRef(
|
|
|
3151
3151
|
);
|
|
3152
3152
|
IconColumnsThree[designSystemBaseIcon.iconSymbol] = true;
|
|
3153
3153
|
|
|
3154
|
+
const IconCommentGroup = react.forwardRef(
|
|
3155
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
3156
|
+
StyledIcon,
|
|
3157
|
+
{
|
|
3158
|
+
...props,
|
|
3159
|
+
weight,
|
|
3160
|
+
size,
|
|
3161
|
+
viewBox: "0 0 24 24",
|
|
3162
|
+
fill: "none",
|
|
3163
|
+
ref: forwardRef2
|
|
3164
|
+
},
|
|
3165
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3166
|
+
"path",
|
|
3167
|
+
{
|
|
3168
|
+
stroke: "currentColor",
|
|
3169
|
+
strokeLinejoin: "round",
|
|
3170
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3171
|
+
d: "M12 21.0001c4.9706 0 9-4.0294 9-9 0-4.9705-4.0294-9-9-9s-9 4.0295-9 9c0 1.7117.4779 3.3119 1.3075 4.6742l-.6747 3.6928 3.6926-.6746c1.3625.8297 2.9627 1.3076 4.6746 1.3076Z"
|
|
3172
|
+
}
|
|
3173
|
+
),
|
|
3174
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3175
|
+
"path",
|
|
3176
|
+
{
|
|
3177
|
+
fill: "currentColor",
|
|
3178
|
+
d: "M14.2594 16.4947h1v-2h-1v2Zm-4.5187-1h-1v1h1v-1Zm4.5187 0v-1h-4.5187v2h4.5187v-1Zm-3.5187 0c0-.6322.1894-.9694.4237-1.2107.2798-.2884.6841-.5047 1.2586-.7728.5063-.2362 1.2267-.5437 1.7792-1.0147.6263-.534 1.0572-1.2815 1.0572-2.3292h-2c0 .411-.1339.6189-.3548.8073-.2948.2513-.704.4334-1.3274.7243-.5552.2591-1.2806.6075-1.848 1.1922-.613.6317-.9885 1.4757-.9885 2.6036h2Zm4.5187-5.3274c0-1.0113-.4021-1.8397-1.0473-2.4046-.6259-.548-1.4304-.8063-2.2033-.8131-.7729-.0068-1.5848.2379-2.2182.7887-.6535.5683-1.0499 1.406-1.0499 2.429h2c0-.4753.1685-.7513.3623-.9198.2138-.186.5316-.3011.8883-.298.3569.0031.682.1242.9034.318.202.177.3647.4524.3647.8998h2Z"
|
|
3179
|
+
}
|
|
3180
|
+
)
|
|
3181
|
+
)
|
|
3182
|
+
);
|
|
3183
|
+
IconCommentGroup[designSystemBaseIcon.iconSymbol] = true;
|
|
3184
|
+
|
|
3154
3185
|
const IconConeSerpentine = react.forwardRef(
|
|
3155
3186
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
3156
3187
|
StyledIcon,
|
|
@@ -9425,6 +9456,65 @@ const IconScrollbarXy = react.forwardRef(
|
|
|
9425
9456
|
);
|
|
9426
9457
|
IconScrollbarXy[designSystemBaseIcon.iconSymbol] = true;
|
|
9427
9458
|
|
|
9459
|
+
const IconShapesLines = react.forwardRef(
|
|
9460
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
9461
|
+
StyledIcon,
|
|
9462
|
+
{
|
|
9463
|
+
...props,
|
|
9464
|
+
weight,
|
|
9465
|
+
size,
|
|
9466
|
+
viewBox: "0 0 24 24",
|
|
9467
|
+
fill: "none",
|
|
9468
|
+
ref: forwardRef2
|
|
9469
|
+
},
|
|
9470
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9471
|
+
"path",
|
|
9472
|
+
{
|
|
9473
|
+
stroke: "currentColor",
|
|
9474
|
+
strokeLinecap: "round",
|
|
9475
|
+
strokeLinejoin: "round",
|
|
9476
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9477
|
+
d: "m14 21.5 7-7m0 0v5m0-5h-5"
|
|
9478
|
+
}
|
|
9479
|
+
),
|
|
9480
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9481
|
+
"circle",
|
|
9482
|
+
{
|
|
9483
|
+
cx: 18,
|
|
9484
|
+
cy: 6,
|
|
9485
|
+
r: 4,
|
|
9486
|
+
stroke: "currentColor",
|
|
9487
|
+
strokeLinecap: "round",
|
|
9488
|
+
strokeWidth: "var(--svg-stroke-width)"
|
|
9489
|
+
}
|
|
9490
|
+
),
|
|
9491
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9492
|
+
"rect",
|
|
9493
|
+
{
|
|
9494
|
+
width: 8,
|
|
9495
|
+
height: 8,
|
|
9496
|
+
x: 2,
|
|
9497
|
+
y: 2,
|
|
9498
|
+
stroke: "currentColor",
|
|
9499
|
+
strokeLinecap: "round",
|
|
9500
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9501
|
+
rx: 1.5
|
|
9502
|
+
}
|
|
9503
|
+
),
|
|
9504
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9505
|
+
"path",
|
|
9506
|
+
{
|
|
9507
|
+
stroke: "currentColor",
|
|
9508
|
+
strokeLinecap: "round",
|
|
9509
|
+
strokeLinejoin: "round",
|
|
9510
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
9511
|
+
d: "M5.2979 14.4042c.2893-.5785 1.115-.5785 1.4042.0001l3.2299 6.4596c.2609.522-.1186 1.1361-.7022 1.1361h-6.4596c-.5836 0-.9631-.6141-.7022-1.1361l3.2299-6.4597Z"
|
|
9512
|
+
}
|
|
9513
|
+
)
|
|
9514
|
+
)
|
|
9515
|
+
);
|
|
9516
|
+
IconShapesLines[designSystemBaseIcon.iconSymbol] = true;
|
|
9517
|
+
|
|
9428
9518
|
const IconShapes = react.forwardRef(
|
|
9429
9519
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
9430
9520
|
StyledIcon,
|
|
@@ -12682,6 +12772,39 @@ const IconUserArrowRightUp = react.forwardRef(
|
|
|
12682
12772
|
);
|
|
12683
12773
|
IconUserArrowRightUp[designSystemBaseIcon.iconSymbol] = true;
|
|
12684
12774
|
|
|
12775
|
+
const IconUserBackgroundBlur = react.forwardRef(
|
|
12776
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
12777
|
+
StyledIcon,
|
|
12778
|
+
{
|
|
12779
|
+
...props,
|
|
12780
|
+
weight,
|
|
12781
|
+
size,
|
|
12782
|
+
viewBox: "0 0 24 24",
|
|
12783
|
+
fill: "none",
|
|
12784
|
+
ref: forwardRef2
|
|
12785
|
+
},
|
|
12786
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12787
|
+
"path",
|
|
12788
|
+
{
|
|
12789
|
+
stroke: "currentColor",
|
|
12790
|
+
strokeLinecap: "round",
|
|
12791
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
12792
|
+
d: "m5 20 .443-2.6576c.3214-1.9287 1.9902-3.3424 3.9455-3.3424h5.223c1.9553 0 3.6241 1.4137 3.9456 3.3424l.4429 2.6576m-4-12c0 1.6569-1.3431 3-3 3s-3-1.3431-3-3 1.3431-3 3-3 3 1.3431 3 3Z"
|
|
12793
|
+
}
|
|
12794
|
+
),
|
|
12795
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12796
|
+
"path",
|
|
12797
|
+
{
|
|
12798
|
+
fill: "currentColor",
|
|
12799
|
+
fillRule: "evenodd",
|
|
12800
|
+
d: "M4.8705 3.1471c-.0886-.1961-.3671-.1961-.4557 0l-.6667 1.476a.25.25 0 0 1-.125.125l-1.476.6667c-.1961.0886-.1961.367 0 .4557l1.476.6666a.25.25 0 0 1 .125.125l.6667 1.476a.2461.2461 0 0 0 .209.1465.2461.2461 0 0 0-.209.1464l-.6667 1.476a.2498.2498 0 0 1-.125.125l-1.476.6667c-.1961.0886-.1961.3671 0 .4557l1.476.6666a.2502.2502 0 0 1 .125.125l.6667 1.4761c.0886.1961.367.1961.4557 0l.6666-1.4761a.2502.2502 0 0 1 .125-.125l1.476-.6666c.1962-.0886.1962-.3671 0-.4557l-1.476-.6667a.2498.2498 0 0 1-.125-.125l-.6666-1.476a.2461.2461 0 0 0-.209-.1464.2461.2461 0 0 0 .209-.1464l.6666-1.4761a.25.25 0 0 1 .125-.125l1.476-.6666c.1962-.0886.1962-.3671 0-.4557l-1.476-.6667a.25.25 0 0 1-.125-.125l-.6666-1.476Zm14.7147 0c-.0886-.1961-.3671-.1961-.4557 0l-.6667 1.476a.2496.2496 0 0 1-.1249.125l-1.4761.6667c-.1961.0886-.1961.367 0 .4557l1.4761.6666a.2496.2496 0 0 1 .1249.125l.6667 1.476a.2462.2462 0 0 0 .2091.1465.2462.2462 0 0 0-.2091.1464l-.6667 1.476a.2494.2494 0 0 1-.1249.125l-1.4761.6667c-.1961.0886-.1961.3671 0 .4557l1.4761.6666a.2498.2498 0 0 1 .1249.125l.6667 1.4761c.0886.1961.3671.1961.4557 0l.6667-1.4761a.2498.2498 0 0 1 .1249-.125l1.4761-.6666c.1961-.0886.1961-.3671 0-.4557l-1.4761-.6667a.2494.2494 0 0 1-.1249-.125l-.6667-1.476a.2462.2462 0 0 0-.2091-.1464.2462.2462 0 0 0 .2091-.1464l.6667-1.4761a.2496.2496 0 0 1 .1249-.125l1.4761-.6666c.1961-.0886.1961-.3671 0-.4557l-1.4761-.6667a.2496.2496 0 0 1-.1249-.125l-.6667-1.476Z",
|
|
12801
|
+
clipRule: "evenodd"
|
|
12802
|
+
}
|
|
12803
|
+
)
|
|
12804
|
+
)
|
|
12805
|
+
);
|
|
12806
|
+
IconUserBackgroundBlur[designSystemBaseIcon.iconSymbol] = true;
|
|
12807
|
+
|
|
12685
12808
|
const IconUserCogPlus = react.forwardRef(
|
|
12686
12809
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
12687
12810
|
StyledIcon,
|
|
@@ -12774,6 +12897,38 @@ const IconUserEyeOpen = react.forwardRef(
|
|
|
12774
12897
|
);
|
|
12775
12898
|
IconUserEyeOpen[designSystemBaseIcon.iconSymbol] = true;
|
|
12776
12899
|
|
|
12900
|
+
const IconUserFilter = react.forwardRef(
|
|
12901
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
12902
|
+
StyledIcon,
|
|
12903
|
+
{
|
|
12904
|
+
...props,
|
|
12905
|
+
weight,
|
|
12906
|
+
size,
|
|
12907
|
+
viewBox: "0 0 24 24",
|
|
12908
|
+
fill: "none",
|
|
12909
|
+
ref: forwardRef2
|
|
12910
|
+
},
|
|
12911
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12912
|
+
"path",
|
|
12913
|
+
{
|
|
12914
|
+
stroke: "currentColor",
|
|
12915
|
+
strokeLinecap: "round",
|
|
12916
|
+
strokeLinejoin: "round",
|
|
12917
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
12918
|
+
d: "M3 20s0-6 4-6h4m4-7c0 2.2091-1.7909 4-4 4-2.2091 0-4-1.7909-4-4 0-2.2091 1.7909-4 4-4 2.2091 0 4 1.7909 4 4Z"
|
|
12919
|
+
}
|
|
12920
|
+
),
|
|
12921
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12922
|
+
"path",
|
|
12923
|
+
{
|
|
12924
|
+
fill: "currentColor",
|
|
12925
|
+
d: "M17.112 13.2505c.1509-.334.6251-.334.776 0l1.1352 2.5135a.4258.4258 0 0 0 .2128.2128l2.5135 1.1352c.334.1509.334.6251 0 .776l-2.5135 1.1352a.4258.4258 0 0 0-.2128.2128l-1.1352 2.5135c-.1509.334-.6251.334-.776 0l-1.1352-2.5135a.4258.4258 0 0 0-.2128-.2128l-2.5135-1.1352c-.334-.1509-.334-.6251 0-.776l2.5135-1.1352a.4258.4258 0 0 0 .2128-.2128l1.1352-2.5135Z"
|
|
12926
|
+
}
|
|
12927
|
+
)
|
|
12928
|
+
)
|
|
12929
|
+
);
|
|
12930
|
+
IconUserFilter[designSystemBaseIcon.iconSymbol] = true;
|
|
12931
|
+
|
|
12777
12932
|
const IconUserLoad = react.forwardRef(
|
|
12778
12933
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => react.createElement(
|
|
12779
12934
|
StyledIcon,
|
|
@@ -13023,7 +13178,7 @@ const IconVideoCameraSimpleSlash = react.forwardRef(
|
|
|
13023
13178
|
strokeLinecap: "round",
|
|
13024
13179
|
strokeLinejoin: "round",
|
|
13025
13180
|
strokeWidth: "var(--svg-stroke-width)",
|
|
13026
|
-
d: "M4
|
|
13181
|
+
d: "M4 18.5h12c.5523 0 1-.4477 1-1v-3m0-9v3m0 0 5-2v10l-5-2m0-6v6m-3.5-10h-10.5c-.5523 0-1 .4477-1 1v10m0 5 17-17"
|
|
13027
13182
|
}
|
|
13028
13183
|
)
|
|
13029
13184
|
)
|
|
@@ -13048,7 +13203,7 @@ const IconVideoCameraSimple = react.forwardRef(
|
|
|
13048
13203
|
strokeLinecap: "round",
|
|
13049
13204
|
strokeLinejoin: "round",
|
|
13050
13205
|
strokeWidth: "var(--svg-stroke-width)",
|
|
13051
|
-
d: "M17
|
|
13206
|
+
d: "M17 9v-3c0-.5523-.4477-1-1-1h-13c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1h13c.5523 0 1-.4477 1-1v-3m0-6 5-2v10l-5-2m0-6v6"
|
|
13052
13207
|
}
|
|
13053
13208
|
)
|
|
13054
13209
|
)
|
|
@@ -13291,6 +13446,7 @@ exports.IconCoins = IconCoins;
|
|
|
13291
13446
|
exports.IconCoinsChecked = IconCoinsChecked;
|
|
13292
13447
|
exports.IconCoinsSlash = IconCoinsSlash;
|
|
13293
13448
|
exports.IconColumnsThree = IconColumnsThree;
|
|
13449
|
+
exports.IconCommentGroup = IconCommentGroup;
|
|
13294
13450
|
exports.IconConeSerpentine = IconConeSerpentine;
|
|
13295
13451
|
exports.IconConnectionLineElbows = IconConnectionLineElbows;
|
|
13296
13452
|
exports.IconConnectionLineStraight = IconConnectionLineStraight;
|
|
@@ -13502,6 +13658,7 @@ exports.IconRssRectangle = IconRssRectangle;
|
|
|
13502
13658
|
exports.IconScissors = IconScissors;
|
|
13503
13659
|
exports.IconScrollbarXy = IconScrollbarXy;
|
|
13504
13660
|
exports.IconShapes = IconShapes;
|
|
13661
|
+
exports.IconShapesLines = IconShapesLines;
|
|
13505
13662
|
exports.IconShieldCheck = IconShieldCheck;
|
|
13506
13663
|
exports.IconShieldLock = IconShieldLock;
|
|
13507
13664
|
exports.IconShuffle = IconShuffle;
|
|
@@ -13606,9 +13763,11 @@ exports.IconTrophy = IconTrophy;
|
|
|
13606
13763
|
exports.IconUser = IconUser;
|
|
13607
13764
|
exports.IconUserAdd = IconUserAdd;
|
|
13608
13765
|
exports.IconUserArrowRightUp = IconUserArrowRightUp;
|
|
13766
|
+
exports.IconUserBackgroundBlur = IconUserBackgroundBlur;
|
|
13609
13767
|
exports.IconUserCog = IconUserCog;
|
|
13610
13768
|
exports.IconUserCogPlus = IconUserCogPlus;
|
|
13611
13769
|
exports.IconUserEyeOpen = IconUserEyeOpen;
|
|
13770
|
+
exports.IconUserFilter = IconUserFilter;
|
|
13612
13771
|
exports.IconUserLoad = IconUserLoad;
|
|
13613
13772
|
exports.IconUserNumberThree = IconUserNumberThree;
|
|
13614
13773
|
exports.IconUserPenDashesBottom = IconUserPenDashesBottom;
|