@mirohq/design-system-icons 1.12.0 → 1.13.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 +171 -5
- package/dist/main.js.map +1 -1
- package/dist/module.js +166 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +13 -1
- package/package.json +2 -2
- package/react/arrow-clockwise-into-rectangle.tsx +34 -0
- package/react/bear.tsx +34 -0
- package/react/car.tsx +36 -0
- package/react/drink-burger.tsx +34 -0
- package/react/heart-music-note.tsx +36 -0
- package/react/index.ts +6 -0
- package/react/magnifying-glass-minus.tsx +1 -3
- package/react/magnifying-glass-plus.tsx +1 -1
- package/react/proto-radio.tsx +1 -1
- package/react/tennis-ball.tsx +36 -0
- package/svg/24/arrow-clockwise-into-rectangle.svg +2 -0
- package/svg/24/bear.svg +2 -0
- package/svg/24/car.svg +2 -0
- package/svg/24/drink-burger.svg +2 -0
- package/svg/24/heart-music-note.svg +2 -0
- package/svg/24/magnifying-glass-minus.svg +1 -1
- package/svg/24/magnifying-glass-plus.svg +1 -1
- package/svg/24/proto-radio.svg +1 -1
- package/svg/24/tennis-ball.svg +2 -0
- package/svg/meta.json +60 -6
package/dist/main.js
CHANGED
|
@@ -656,6 +656,32 @@ const IconArrowClockwiseDownRight = react.forwardRef(
|
|
|
656
656
|
);
|
|
657
657
|
IconArrowClockwiseDownRight[designSystemBaseIcon.iconSymbol] = true;
|
|
658
658
|
|
|
659
|
+
const IconArrowClockwiseIntoRectangle = react.forwardRef(
|
|
660
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
661
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
662
|
+
return react.createElement(
|
|
663
|
+
StyledIcon,
|
|
664
|
+
{
|
|
665
|
+
...props,
|
|
666
|
+
debug,
|
|
667
|
+
"aria-hidden": true,
|
|
668
|
+
size,
|
|
669
|
+
viewBox: "0 0 24 24",
|
|
670
|
+
fill: "none",
|
|
671
|
+
ref: forwardRef2
|
|
672
|
+
},
|
|
673
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
674
|
+
"path",
|
|
675
|
+
{
|
|
676
|
+
fill: "currentColor",
|
|
677
|
+
d: "M6 17v-.188h2V17a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v.188H6V7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3Zm-1.636-6.263c1.814-1.604 4.71-1.604 6.523 0l1.113.986V10h2v4l-1 1H8.479v-2h1.946l-.863-.765c-1.057-.934-2.816-.934-3.873 0L3.663 14.03l-1.326-1.498 2.027-1.794Z"
|
|
678
|
+
}
|
|
679
|
+
)
|
|
680
|
+
);
|
|
681
|
+
}
|
|
682
|
+
);
|
|
683
|
+
IconArrowClockwiseIntoRectangle[designSystemBaseIcon.iconSymbol] = true;
|
|
684
|
+
|
|
659
685
|
const IconArrowClockwiseUpLeft = react.forwardRef(
|
|
660
686
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
661
687
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1784,6 +1810,32 @@ const IconBarrel = react.forwardRef(
|
|
|
1784
1810
|
);
|
|
1785
1811
|
IconBarrel[designSystemBaseIcon.iconSymbol] = true;
|
|
1786
1812
|
|
|
1813
|
+
const IconBear = react.forwardRef(
|
|
1814
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1815
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1816
|
+
return react.createElement(
|
|
1817
|
+
StyledIcon,
|
|
1818
|
+
{
|
|
1819
|
+
...props,
|
|
1820
|
+
debug,
|
|
1821
|
+
"aria-hidden": true,
|
|
1822
|
+
size,
|
|
1823
|
+
viewBox: "0 0 24 24",
|
|
1824
|
+
fill: "none",
|
|
1825
|
+
ref: forwardRef2
|
|
1826
|
+
},
|
|
1827
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1828
|
+
"path",
|
|
1829
|
+
{
|
|
1830
|
+
fill: "currentColor",
|
|
1831
|
+
d: "M17.85 2C20.777 2 23 4.455 23 7.294a5.361 5.361 0 0 1-1.106 3.271 9.02 9.02 0 0 1 .206 1.906C22.1 17.869 17.438 22 12 22c-5.268 0-9.807-3.877-10.086-9.027L1.9 12.47c0-.653.073-1.29.205-1.906A5.363 5.363 0 0 1 1 7.294C1 4.455 3.223 2 6.15 2l.351.012a5.037 5.037 0 0 1 2.962 1.234 10.682 10.682 0 0 1 5.072 0A5.034 5.034 0 0 1 17.85 2Zm0 2c-1.125 0-2.11.618-2.667 1.546A8.6 8.6 0 0 0 12 4.94a8.6 8.6 0 0 0-3.184.605C8.26 4.618 7.276 4 6.15 4 4.41 4 3 5.475 3 7.294c0 1.118.535 2.105 1.35 2.7a7.042 7.042 0 0 0-.45 2.477C3.9 16.629 7.527 20 12 20s8.1-3.371 8.1-7.53c0-.867-.16-1.7-.45-2.476a3.334 3.334 0 0 0 1.35-2.7C21 5.474 19.59 4 17.85 4ZM13 16v2h-2v-2l-2-2h6l-2 2Zm-4-4H7v-2h2v2Zm8 0h-2v-2h2v2Z"
|
|
1832
|
+
}
|
|
1833
|
+
)
|
|
1834
|
+
);
|
|
1835
|
+
}
|
|
1836
|
+
);
|
|
1837
|
+
IconBear[designSystemBaseIcon.iconSymbol] = true;
|
|
1838
|
+
|
|
1787
1839
|
const IconBellSlash = react.forwardRef(
|
|
1788
1840
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1789
1841
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2378,6 +2430,34 @@ const IconCaptionHorizontal = react.forwardRef(
|
|
|
2378
2430
|
);
|
|
2379
2431
|
IconCaptionHorizontal[designSystemBaseIcon.iconSymbol] = true;
|
|
2380
2432
|
|
|
2433
|
+
const IconCar = react.forwardRef(
|
|
2434
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2435
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2436
|
+
return react.createElement(
|
|
2437
|
+
StyledIcon,
|
|
2438
|
+
{
|
|
2439
|
+
...props,
|
|
2440
|
+
debug,
|
|
2441
|
+
"aria-hidden": true,
|
|
2442
|
+
size,
|
|
2443
|
+
viewBox: "0 0 24 24",
|
|
2444
|
+
fill: "none",
|
|
2445
|
+
ref: forwardRef2
|
|
2446
|
+
},
|
|
2447
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2448
|
+
"path",
|
|
2449
|
+
{
|
|
2450
|
+
fill: "currentColor",
|
|
2451
|
+
fillRule: "evenodd",
|
|
2452
|
+
d: "M10 16H6v-2h4v2Zm8 0h-4v-2h4v2ZM16.83 4.006a2 2 0 0 1 1.69 1.206L19.285 7H22v2h-1.737L22 12.648V18l-2 2v2h-4v-2H8v2H4v-2l-2-2v-5.352L3.737 9H2V7h2.714l.766-1.788A2 2 0 0 1 7.318 4h9.364l.148.006ZM4 13.1V18h16v-4.9L19 11H5l-1 2.1ZM6.033 9h11.934l-1.285-3H7.318L6.033 9Z",
|
|
2453
|
+
clipRule: "evenodd"
|
|
2454
|
+
}
|
|
2455
|
+
)
|
|
2456
|
+
);
|
|
2457
|
+
}
|
|
2458
|
+
);
|
|
2459
|
+
IconCar[designSystemBaseIcon.iconSymbol] = true;
|
|
2460
|
+
|
|
2381
2461
|
const IconCardCircles = react.forwardRef(
|
|
2382
2462
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2383
2463
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -5208,6 +5288,32 @@ const IconDownload = react.forwardRef(
|
|
|
5208
5288
|
);
|
|
5209
5289
|
IconDownload[designSystemBaseIcon.iconSymbol] = true;
|
|
5210
5290
|
|
|
5291
|
+
const IconDrinkBurger = react.forwardRef(
|
|
5292
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
5293
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5294
|
+
return react.createElement(
|
|
5295
|
+
StyledIcon,
|
|
5296
|
+
{
|
|
5297
|
+
...props,
|
|
5298
|
+
debug,
|
|
5299
|
+
"aria-hidden": true,
|
|
5300
|
+
size,
|
|
5301
|
+
viewBox: "0 0 24 24",
|
|
5302
|
+
fill: "none",
|
|
5303
|
+
ref: forwardRef2
|
|
5304
|
+
},
|
|
5305
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5306
|
+
"path",
|
|
5307
|
+
{
|
|
5308
|
+
fill: "currentColor",
|
|
5309
|
+
d: "M11.555 2.832 9 4.535V6h4.084l-.322 4.006A5.09 5.09 0 0 1 13 10h3a5 5 0 0 1 4.974 4.483A2.494 2.494 0 0 1 21 18.496V20a2 2 0 0 1-2 2H3.202L1.916 6H7V3.465l3.445-2.297 1.11 1.664ZM5.048 20H8v-1.504a2.493 2.493 0 0 1 .025-4.013 5.003 5.003 0 0 1 2.685-3.928L10.916 8H4.084l.964 12ZM10 19v1h9v-1h-9Zm-.5-3a.5.5 0 0 0 0 1h10a.5.5 0 0 0 0-1h-10Zm3.5-4a2.998 2.998 0 0 0-2.826 2h8.652A2.998 2.998 0 0 0 16 12h-3Z"
|
|
5310
|
+
}
|
|
5311
|
+
)
|
|
5312
|
+
);
|
|
5313
|
+
}
|
|
5314
|
+
);
|
|
5315
|
+
IconDrinkBurger[designSystemBaseIcon.iconSymbol] = true;
|
|
5316
|
+
|
|
5211
5317
|
const IconEnvelope = react.forwardRef(
|
|
5212
5318
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
5213
5319
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6384,6 +6490,34 @@ const IconHeartFilled = react.forwardRef(
|
|
|
6384
6490
|
);
|
|
6385
6491
|
IconHeartFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
6386
6492
|
|
|
6493
|
+
const IconHeartMusicNote = react.forwardRef(
|
|
6494
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
6495
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
6496
|
+
return react.createElement(
|
|
6497
|
+
StyledIcon,
|
|
6498
|
+
{
|
|
6499
|
+
...props,
|
|
6500
|
+
debug,
|
|
6501
|
+
"aria-hidden": true,
|
|
6502
|
+
size,
|
|
6503
|
+
viewBox: "0 0 24 24",
|
|
6504
|
+
fill: "none",
|
|
6505
|
+
ref: forwardRef2
|
|
6506
|
+
},
|
|
6507
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
6508
|
+
"path",
|
|
6509
|
+
{
|
|
6510
|
+
fill: "currentColor",
|
|
6511
|
+
fillRule: "evenodd",
|
|
6512
|
+
d: "M13 6.647c0-.99-.722-1.712-1.678-1.642C10.15 5.09 9.5 6.052 9.5 6.647h-2l-.008-.116c-.076-.597-.714-1.446-1.814-1.526C4.722 4.935 4 5.657 4 6.647c0 .712.5 1.585 1.541 2.628.847.849 1.905 1.669 2.959 2.47 1.057-.8 2.114-1.606 2.96-2.45C12.498 8.266 13 7.393 13 6.648Zm2 0c0 1.595-1.025 2.97-2.128 4.067-1.13 1.123-2.575 2.178-3.768 3.083H7.896c-1.2-.91-2.64-1.977-3.77-3.109C3.029 9.59 2 8.214 2 6.648 2 4.641 3.567 2.845 5.822 3.01A4.06 4.06 0 0 1 8.5 4.28a4.06 4.06 0 0 1 2.678-1.27C13.433 2.846 15 4.642 15 6.647Zm5.122 3.686a3 3 0 0 1 .183 4.41l-.464.464-1.414-1.414.464-.464a1 1 0 0 0-.062-1.47L18 11.157V18a3 3 0 1 1-2-2.826V9l1.646-.764 2.476 2.097ZM15 17a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
|
|
6513
|
+
clipRule: "evenodd"
|
|
6514
|
+
}
|
|
6515
|
+
)
|
|
6516
|
+
);
|
|
6517
|
+
}
|
|
6518
|
+
);
|
|
6519
|
+
IconHeartMusicNote[designSystemBaseIcon.iconSymbol] = true;
|
|
6520
|
+
|
|
6387
6521
|
const IconHeart = react.forwardRef(
|
|
6388
6522
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6389
6523
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7588,9 +7722,7 @@ const IconMagnifyingGlassMinus = react.forwardRef(
|
|
|
7588
7722
|
"path",
|
|
7589
7723
|
{
|
|
7590
7724
|
fill: "currentColor",
|
|
7591
|
-
|
|
7592
|
-
d: "M8.835 3.097c.054-.01.11-.018.165-.026V5.1a5 5 0 1 0 6 4.9h2a6.97 6.97 0 0 1-1.394 4.192l5.101 5.1-1.414 1.415-5.1-5.1a7 7 0 1 1-5.358-12.51ZM19 5v2h-7V5h7Z",
|
|
7593
|
-
clipRule: "evenodd"
|
|
7725
|
+
d: "M20 4v2h-8V4h8ZM3 10a7 7 0 0 1 7-7v2a5 5 0 1 0 4.93 5.835l1.973.33a6.97 6.97 0 0 1-1.297 3.026l5.101 5.102-1.414 1.414-5.103-5.103A7 7 0 0 1 3 10Z"
|
|
7594
7726
|
}
|
|
7595
7727
|
)
|
|
7596
7728
|
);
|
|
@@ -7616,7 +7748,7 @@ const IconMagnifyingGlassPlus = react.forwardRef(
|
|
|
7616
7748
|
"path",
|
|
7617
7749
|
{
|
|
7618
7750
|
fill: "currentColor",
|
|
7619
|
-
d: "M3
|
|
7751
|
+
d: "M3 10a7 7 0 0 1 7-7v2a5 5 0 1 0 4.93 5.835l1.973.33a6.97 6.97 0 0 1-1.297 3.026l5.101 5.102-1.414 1.414-5.103-5.103A7 7 0 0 1 3 10Zm14-9v3h3v2h-3v3h-2V6h-3V4h3V1h2Z"
|
|
7620
7752
|
}
|
|
7621
7753
|
)
|
|
7622
7754
|
);
|
|
@@ -9904,7 +10036,7 @@ const IconProtoRadio = react.forwardRef(
|
|
|
9904
10036
|
"path",
|
|
9905
10037
|
{
|
|
9906
10038
|
fill: "currentColor",
|
|
9907
|
-
d: "
|
|
10039
|
+
d: "M20 12a8 8 0 1 0-8 8v2C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10v-2a8 8 0 0 0 8-8Zm-4 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
|
|
9908
10040
|
}
|
|
9909
10041
|
)
|
|
9910
10042
|
);
|
|
@@ -13428,6 +13560,34 @@ const IconTasks = react.forwardRef(
|
|
|
13428
13560
|
);
|
|
13429
13561
|
IconTasks[designSystemBaseIcon.iconSymbol] = true;
|
|
13430
13562
|
|
|
13563
|
+
const IconTennisBall = react.forwardRef(
|
|
13564
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
13565
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
13566
|
+
return react.createElement(
|
|
13567
|
+
StyledIcon,
|
|
13568
|
+
{
|
|
13569
|
+
...props,
|
|
13570
|
+
debug,
|
|
13571
|
+
"aria-hidden": true,
|
|
13572
|
+
size,
|
|
13573
|
+
viewBox: "0 0 24 24",
|
|
13574
|
+
fill: "none",
|
|
13575
|
+
ref: forwardRef2
|
|
13576
|
+
},
|
|
13577
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13578
|
+
"path",
|
|
13579
|
+
{
|
|
13580
|
+
fill: "currentColor",
|
|
13581
|
+
fillRule: "evenodd",
|
|
13582
|
+
d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2ZM4.005 12.203a7.995 7.995 0 0 0 7.79 7.791 10.008 10.008 0 0 0-7.79-7.79Zm6.198-7.999a8.009 8.009 0 0 0-5.999 6 12.009 12.009 0 0 1 9.592 9.59 8.007 8.007 0 0 0 5.999-5.998 12.009 12.009 0 0 1-9.592-9.592Zm2-.2a10.008 10.008 0 0 0 7.791 7.792 7.995 7.995 0 0 0-7.79-7.791Z",
|
|
13583
|
+
clipRule: "evenodd"
|
|
13584
|
+
}
|
|
13585
|
+
)
|
|
13586
|
+
);
|
|
13587
|
+
}
|
|
13588
|
+
);
|
|
13589
|
+
IconTennisBall[designSystemBaseIcon.iconSymbol] = true;
|
|
13590
|
+
|
|
13431
13591
|
const IconTextAColorSelection = react.forwardRef(
|
|
13432
13592
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
13433
13593
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15434,6 +15594,7 @@ exports.IconArrowBendUpRight = IconArrowBendUpRight;
|
|
|
15434
15594
|
exports.IconArrowBoxLeft = IconArrowBoxLeft;
|
|
15435
15595
|
exports.IconArrowBoxOut = IconArrowBoxOut;
|
|
15436
15596
|
exports.IconArrowClockwiseDownRight = IconArrowClockwiseDownRight;
|
|
15597
|
+
exports.IconArrowClockwiseIntoRectangle = IconArrowClockwiseIntoRectangle;
|
|
15437
15598
|
exports.IconArrowClockwiseUpLeft = IconArrowClockwiseUpLeft;
|
|
15438
15599
|
exports.IconArrowCounterClockwiseDownLeft = IconArrowCounterClockwiseDownLeft;
|
|
15439
15600
|
exports.IconArrowCounterClockwiseUpRight = IconArrowCounterClockwiseUpRight;
|
|
@@ -15477,6 +15638,7 @@ exports.IconAt = IconAt;
|
|
|
15477
15638
|
exports.IconAttachment = IconAttachment;
|
|
15478
15639
|
exports.IconBadge = IconBadge;
|
|
15479
15640
|
exports.IconBarrel = IconBarrel;
|
|
15641
|
+
exports.IconBear = IconBear;
|
|
15480
15642
|
exports.IconBell = IconBell;
|
|
15481
15643
|
exports.IconBellSlash = IconBellSlash;
|
|
15482
15644
|
exports.IconBellTilt = IconBellTilt;
|
|
@@ -15499,6 +15661,7 @@ exports.IconCalendarStart = IconCalendarStart;
|
|
|
15499
15661
|
exports.IconCamera = IconCamera;
|
|
15500
15662
|
exports.IconCaptionAlong = IconCaptionAlong;
|
|
15501
15663
|
exports.IconCaptionHorizontal = IconCaptionHorizontal;
|
|
15664
|
+
exports.IconCar = IconCar;
|
|
15502
15665
|
exports.IconCard = IconCard;
|
|
15503
15666
|
exports.IconCardCircles = IconCardCircles;
|
|
15504
15667
|
exports.IconCardNumberThree = IconCardNumberThree;
|
|
@@ -15606,6 +15769,7 @@ exports.IconDotsThree = IconDotsThree;
|
|
|
15606
15769
|
exports.IconDotsThreeVertical = IconDotsThreeVertical;
|
|
15607
15770
|
exports.IconDotsTwo = IconDotsTwo;
|
|
15608
15771
|
exports.IconDownload = IconDownload;
|
|
15772
|
+
exports.IconDrinkBurger = IconDrinkBurger;
|
|
15609
15773
|
exports.IconEnvelope = IconEnvelope;
|
|
15610
15774
|
exports.IconEraser = IconEraser;
|
|
15611
15775
|
exports.IconExclamationMarkOctagon = IconExclamationMarkOctagon;
|
|
@@ -15651,6 +15815,7 @@ exports.IconHeadphones = IconHeadphones;
|
|
|
15651
15815
|
exports.IconHeadsetPerson = IconHeadsetPerson;
|
|
15652
15816
|
exports.IconHeart = IconHeart;
|
|
15653
15817
|
exports.IconHeartFilled = IconHeartFilled;
|
|
15818
|
+
exports.IconHeartMusicNote = IconHeartMusicNote;
|
|
15654
15819
|
exports.IconHexagon = IconHexagon;
|
|
15655
15820
|
exports.IconHighlighter = IconHighlighter;
|
|
15656
15821
|
exports.IconHighlighterColorSelection = IconHighlighterColorSelection;
|
|
@@ -15915,6 +16080,7 @@ exports.IconTableFormat = IconTableFormat;
|
|
|
15915
16080
|
exports.IconTablet = IconTablet;
|
|
15916
16081
|
exports.IconTag = IconTag;
|
|
15917
16082
|
exports.IconTasks = IconTasks;
|
|
16083
|
+
exports.IconTennisBall = IconTennisBall;
|
|
15918
16084
|
exports.IconTextAColorSelection = IconTextAColorSelection;
|
|
15919
16085
|
exports.IconTextAHorizontal = IconTextAHorizontal;
|
|
15920
16086
|
exports.IconTextAUnderline = IconTextAUnderline;
|