@mirohq/design-system-icons 1.11.1 → 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 +408 -5
- package/dist/main.js.map +1 -1
- package/dist/module.js +394 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +31 -1
- package/package.json +2 -2
- package/react/arrow-clockwise-into-rectangle.tsx +34 -0
- package/react/bear.tsx +34 -0
- package/react/box-captions-filled.tsx +36 -0
- package/react/car.tsx +36 -0
- package/react/chat-cross.tsx +34 -0
- package/react/drink-burger.tsx +34 -0
- package/react/heart-music-note.tsx +36 -0
- package/react/horizontal-blocks.tsx +34 -0
- package/react/index.ts +15 -0
- package/react/line-vertical.tsx +31 -0
- package/react/magnifying-glass-minus.tsx +34 -0
- package/react/magnifying-glass-plus.tsx +1 -1
- package/react/proto-checkbox.tsx +1 -1
- package/react/proto-radio.tsx +1 -3
- package/react/rectangle-portrait-square-bottom-right.tsx +33 -0
- package/react/rectangles-layout.tsx +34 -0
- package/react/split-horizontal.tsx +34 -0
- package/react/tennis-ball.tsx +36 -0
- package/react/vertical-blocks.tsx +34 -0
- package/svg/24/arrow-clockwise-into-rectangle.svg +2 -0
- package/svg/24/bear.svg +2 -0
- package/svg/24/box-captions-filled.svg +2 -0
- package/svg/24/car.svg +2 -0
- package/svg/24/chat-cross.svg +2 -0
- package/svg/24/drink-burger.svg +2 -0
- package/svg/24/heart-music-note.svg +2 -0
- package/svg/24/horizontal-blocks.svg +2 -0
- package/svg/24/line-vertical.svg +2 -0
- package/svg/24/magnifying-glass-minus.svg +2 -0
- package/svg/24/magnifying-glass-plus.svg +1 -1
- package/svg/24/proto-checkbox.svg +1 -1
- package/svg/24/proto-radio.svg +1 -1
- package/svg/24/rectangle-portrait-square-bottom-right.svg +2 -0
- package/svg/24/rectangles-layout.svg +2 -0
- package/svg/24/split-horizontal.svg +2 -0
- package/svg/24/tennis-ball.svg +2 -0
- package/svg/24/vertical-blocks.svg +2 -0
- package/svg/meta.json +160 -19
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);
|
|
@@ -1948,6 +2000,34 @@ const IconBookmark = react.forwardRef(
|
|
|
1948
2000
|
);
|
|
1949
2001
|
IconBookmark[designSystemBaseIcon.iconSymbol] = true;
|
|
1950
2002
|
|
|
2003
|
+
const IconBoxCaptionsFilled = react.forwardRef(
|
|
2004
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2005
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2006
|
+
return react.createElement(
|
|
2007
|
+
StyledIcon,
|
|
2008
|
+
{
|
|
2009
|
+
...props,
|
|
2010
|
+
debug,
|
|
2011
|
+
"aria-hidden": true,
|
|
2012
|
+
size,
|
|
2013
|
+
viewBox: "0 0 24 24",
|
|
2014
|
+
fill: "none",
|
|
2015
|
+
ref: forwardRef2
|
|
2016
|
+
},
|
|
2017
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2018
|
+
"path",
|
|
2019
|
+
{
|
|
2020
|
+
fill: "currentColor",
|
|
2021
|
+
fillRule: "evenodd",
|
|
2022
|
+
d: "M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM9.112 9.336c-.482 0-.943.097-1.348.287a2.662 2.662 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.883 3.883 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.656-2.097h-1.416a1.016 1.016 0 0 1-.501.695 1.263 1.263 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104.133-.039.276-.06.422-.06a1.469 1.469 0 0 1 .45.063c.412.122.696.416.75.818H11.8c-.152-1.272-1.208-2.096-2.688-2.096Zm5.961 0c-.482 0-.943.097-1.348.287a2.66 2.66 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.929 3.929 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.655-2.097h-1.416a1.016 1.016 0 0 1-.5.695 1.258 1.258 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104a1.5 1.5 0 0 1 .422-.06 1.467 1.467 0 0 1 .45.063c.412.122.695.416.75.818h1.496c-.152-1.272-1.208-2.096-2.688-2.096Z",
|
|
2023
|
+
clipRule: "evenodd"
|
|
2024
|
+
}
|
|
2025
|
+
)
|
|
2026
|
+
);
|
|
2027
|
+
}
|
|
2028
|
+
);
|
|
2029
|
+
IconBoxCaptionsFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
2030
|
+
|
|
1951
2031
|
const IconBoxCaptions = react.forwardRef(
|
|
1952
2032
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1953
2033
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2350,6 +2430,34 @@ const IconCaptionHorizontal = react.forwardRef(
|
|
|
2350
2430
|
);
|
|
2351
2431
|
IconCaptionHorizontal[designSystemBaseIcon.iconSymbol] = true;
|
|
2352
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
|
+
|
|
2353
2461
|
const IconCardCircles = react.forwardRef(
|
|
2354
2462
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2355
2463
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2532,6 +2640,32 @@ const IconChatCheck = react.forwardRef(
|
|
|
2532
2640
|
);
|
|
2533
2641
|
IconChatCheck[designSystemBaseIcon.iconSymbol] = true;
|
|
2534
2642
|
|
|
2643
|
+
const IconChatCross = react.forwardRef(
|
|
2644
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2645
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2646
|
+
return react.createElement(
|
|
2647
|
+
StyledIcon,
|
|
2648
|
+
{
|
|
2649
|
+
...props,
|
|
2650
|
+
debug,
|
|
2651
|
+
"aria-hidden": true,
|
|
2652
|
+
size,
|
|
2653
|
+
viewBox: "0 0 24 24",
|
|
2654
|
+
fill: "none",
|
|
2655
|
+
ref: forwardRef2
|
|
2656
|
+
},
|
|
2657
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2658
|
+
"path",
|
|
2659
|
+
{
|
|
2660
|
+
fill: "currentColor",
|
|
2661
|
+
d: "M21.707 2.707 19.414 5l2.293 2.293-1.414 1.414L18 6.414l-2.293 2.293-1.414-1.414L16.586 5l-2.293-2.293 1.414-1.414L18 3.586l2.293-2.293 1.414 1.414ZM2 12c0-5.147 3.889-9.386 8.89-9.94l.22 1.99a8.002 8.002 0 0 0-5.926 12.14l.103.821-.764 2.456 2.431-.77.83.104a7.966 7.966 0 0 0 4.216 1.2 8.002 8.002 0 0 0 7.951-7.111l1.988.22C21.387 18.11 17.148 22 12 22a9.973 9.973 0 0 1-4.865-1.263l-3.832 1.216-1.258-1.25 1.201-3.868A9.958 9.958 0 0 1 2 12Z"
|
|
2662
|
+
}
|
|
2663
|
+
)
|
|
2664
|
+
);
|
|
2665
|
+
}
|
|
2666
|
+
);
|
|
2667
|
+
IconChatCross[designSystemBaseIcon.iconSymbol] = true;
|
|
2668
|
+
|
|
2535
2669
|
const IconChatDashesLinesTwo = react.forwardRef(
|
|
2536
2670
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2537
2671
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -5154,6 +5288,32 @@ const IconDownload = react.forwardRef(
|
|
|
5154
5288
|
);
|
|
5155
5289
|
IconDownload[designSystemBaseIcon.iconSymbol] = true;
|
|
5156
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
|
+
|
|
5157
5317
|
const IconEnvelope = react.forwardRef(
|
|
5158
5318
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
5159
5319
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6330,6 +6490,34 @@ const IconHeartFilled = react.forwardRef(
|
|
|
6330
6490
|
);
|
|
6331
6491
|
IconHeartFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
6332
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
|
+
|
|
6333
6521
|
const IconHeart = react.forwardRef(
|
|
6334
6522
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6335
6523
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6466,6 +6654,32 @@ const IconHighlighter = react.forwardRef(
|
|
|
6466
6654
|
);
|
|
6467
6655
|
IconHighlighter[designSystemBaseIcon.iconSymbol] = true;
|
|
6468
6656
|
|
|
6657
|
+
const IconHorizontalBlocks = react.forwardRef(
|
|
6658
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
6659
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
6660
|
+
return react.createElement(
|
|
6661
|
+
StyledIcon,
|
|
6662
|
+
{
|
|
6663
|
+
...props,
|
|
6664
|
+
debug,
|
|
6665
|
+
"aria-hidden": true,
|
|
6666
|
+
size,
|
|
6667
|
+
viewBox: "0 0 24 24",
|
|
6668
|
+
fill: "none",
|
|
6669
|
+
ref: forwardRef2
|
|
6670
|
+
},
|
|
6671
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
6672
|
+
"path",
|
|
6673
|
+
{
|
|
6674
|
+
fill: "currentColor",
|
|
6675
|
+
d: "M5 15v4h10v-4H5Zm12 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 19v-4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4ZM5 5v4h14V5H5Zm16 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 9V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4Z"
|
|
6676
|
+
}
|
|
6677
|
+
)
|
|
6678
|
+
);
|
|
6679
|
+
}
|
|
6680
|
+
);
|
|
6681
|
+
IconHorizontalBlocks[designSystemBaseIcon.iconSymbol] = true;
|
|
6682
|
+
|
|
6469
6683
|
const IconHouse = react.forwardRef(
|
|
6470
6684
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6471
6685
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7100,6 +7314,26 @@ const IconLineTwoDiagonalTopRightDouble = react.forwardRef(
|
|
|
7100
7314
|
);
|
|
7101
7315
|
IconLineTwoDiagonalTopRightDouble[designSystemBaseIcon.iconSymbol] = true;
|
|
7102
7316
|
|
|
7317
|
+
const IconLineVertical = react.forwardRef(
|
|
7318
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7319
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
7320
|
+
return react.createElement(
|
|
7321
|
+
StyledIcon,
|
|
7322
|
+
{
|
|
7323
|
+
...props,
|
|
7324
|
+
debug,
|
|
7325
|
+
"aria-hidden": true,
|
|
7326
|
+
size,
|
|
7327
|
+
viewBox: "0 0 24 24",
|
|
7328
|
+
fill: "none",
|
|
7329
|
+
ref: forwardRef2
|
|
7330
|
+
},
|
|
7331
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M14 20h-2V4h2v16Z" })
|
|
7332
|
+
);
|
|
7333
|
+
}
|
|
7334
|
+
);
|
|
7335
|
+
IconLineVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
7336
|
+
|
|
7103
7337
|
const IconLinesThreeHorizontalLineVerticalCenter = react.forwardRef(({ size = "medium", ...props }, forwardRef2) => {
|
|
7104
7338
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
7105
7339
|
return react.createElement(
|
|
@@ -7470,6 +7704,32 @@ const IconMagnifyingGlassLightning = react.forwardRef(
|
|
|
7470
7704
|
);
|
|
7471
7705
|
IconMagnifyingGlassLightning[designSystemBaseIcon.iconSymbol] = true;
|
|
7472
7706
|
|
|
7707
|
+
const IconMagnifyingGlassMinus = react.forwardRef(
|
|
7708
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7709
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
7710
|
+
return react.createElement(
|
|
7711
|
+
StyledIcon,
|
|
7712
|
+
{
|
|
7713
|
+
...props,
|
|
7714
|
+
debug,
|
|
7715
|
+
"aria-hidden": true,
|
|
7716
|
+
size,
|
|
7717
|
+
viewBox: "0 0 24 24",
|
|
7718
|
+
fill: "none",
|
|
7719
|
+
ref: forwardRef2
|
|
7720
|
+
},
|
|
7721
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
7722
|
+
"path",
|
|
7723
|
+
{
|
|
7724
|
+
fill: "currentColor",
|
|
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"
|
|
7726
|
+
}
|
|
7727
|
+
)
|
|
7728
|
+
);
|
|
7729
|
+
}
|
|
7730
|
+
);
|
|
7731
|
+
IconMagnifyingGlassMinus[designSystemBaseIcon.iconSymbol] = true;
|
|
7732
|
+
|
|
7473
7733
|
const IconMagnifyingGlassPlus = react.forwardRef(
|
|
7474
7734
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
7475
7735
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7488,7 +7748,7 @@ const IconMagnifyingGlassPlus = react.forwardRef(
|
|
|
7488
7748
|
"path",
|
|
7489
7749
|
{
|
|
7490
7750
|
fill: "currentColor",
|
|
7491
|
-
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"
|
|
7492
7752
|
}
|
|
7493
7753
|
)
|
|
7494
7754
|
);
|
|
@@ -9672,7 +9932,7 @@ const IconProtoCheckbox = react.forwardRef(
|
|
|
9672
9932
|
"path",
|
|
9673
9933
|
{
|
|
9674
9934
|
fill: "currentColor",
|
|
9675
|
-
d: "
|
|
9935
|
+
d: "M19 6a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6Zm2 12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12Zm-4.21-9.387-5.429 7-1.583-.004-2.571-3.347 1.586-1.219 1.781 2.32 4.636-5.976 1.58 1.226Z"
|
|
9676
9936
|
}
|
|
9677
9937
|
)
|
|
9678
9938
|
);
|
|
@@ -9776,9 +10036,7 @@ const IconProtoRadio = react.forwardRef(
|
|
|
9776
10036
|
"path",
|
|
9777
10037
|
{
|
|
9778
10038
|
fill: "currentColor",
|
|
9779
|
-
|
|
9780
|
-
d: "M12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm3-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",
|
|
9781
|
-
clipRule: "evenodd"
|
|
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"
|
|
9782
10040
|
}
|
|
9783
10041
|
)
|
|
9784
10042
|
);
|
|
@@ -10336,6 +10594,30 @@ const IconRectanglePortraitFilled = react.forwardRef(
|
|
|
10336
10594
|
);
|
|
10337
10595
|
IconRectanglePortraitFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
10338
10596
|
|
|
10597
|
+
const IconRectanglePortraitSquareBottomRight = react.forwardRef(({ size = "medium", ...props }, forwardRef2) => {
|
|
10598
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10599
|
+
return react.createElement(
|
|
10600
|
+
StyledIcon,
|
|
10601
|
+
{
|
|
10602
|
+
...props,
|
|
10603
|
+
debug,
|
|
10604
|
+
"aria-hidden": true,
|
|
10605
|
+
size,
|
|
10606
|
+
viewBox: "0 0 24 24",
|
|
10607
|
+
fill: "none",
|
|
10608
|
+
ref: forwardRef2
|
|
10609
|
+
},
|
|
10610
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10611
|
+
"path",
|
|
10612
|
+
{
|
|
10613
|
+
fill: "currentColor",
|
|
10614
|
+
d: "M11.5 10.5h7v6h-7v-6ZM20 7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10l.005.102A1 1 0 0 0 5 18h14a1 1 0 0 0 1-1V7Zm2 10a3 3 0 0 1-3 3H5a3 3 0 0 1-2.996-2.846L2 17V7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10Z"
|
|
10615
|
+
}
|
|
10616
|
+
)
|
|
10617
|
+
);
|
|
10618
|
+
});
|
|
10619
|
+
IconRectanglePortraitSquareBottomRight[designSystemBaseIcon.iconSymbol] = true;
|
|
10620
|
+
|
|
10339
10621
|
const IconRectanglePortraitSquareTopLeft = react.forwardRef(
|
|
10340
10622
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10341
10623
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10442,6 +10724,32 @@ const IconRectangleTriangleBottomCenter = react.forwardRef(
|
|
|
10442
10724
|
);
|
|
10443
10725
|
IconRectangleTriangleBottomCenter[designSystemBaseIcon.iconSymbol] = true;
|
|
10444
10726
|
|
|
10727
|
+
const IconRectanglesLayout = react.forwardRef(
|
|
10728
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
10729
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10730
|
+
return react.createElement(
|
|
10731
|
+
StyledIcon,
|
|
10732
|
+
{
|
|
10733
|
+
...props,
|
|
10734
|
+
debug,
|
|
10735
|
+
"aria-hidden": true,
|
|
10736
|
+
size,
|
|
10737
|
+
viewBox: "0 0 24 24",
|
|
10738
|
+
fill: "none",
|
|
10739
|
+
ref: forwardRef2
|
|
10740
|
+
},
|
|
10741
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10742
|
+
"path",
|
|
10743
|
+
{
|
|
10744
|
+
fill: "currentColor",
|
|
10745
|
+
d: "m13 4-1 1v6l1 1h8l1-1V5l-1-1h-8Zm7 6h-6V6h6v4ZM3 3 2 4v15l1 1h6l1-1V4L9 3H3Zm5 15H4V5h4v13Zm5-4-1 1v5l1 1h6l1-1v-5l-1-1h-6Zm5 5h-4v-3h4v3Z"
|
|
10746
|
+
}
|
|
10747
|
+
)
|
|
10748
|
+
);
|
|
10749
|
+
}
|
|
10750
|
+
);
|
|
10751
|
+
IconRectanglesLayout[designSystemBaseIcon.iconSymbol] = true;
|
|
10752
|
+
|
|
10445
10753
|
const IconRectanglesSquares = react.forwardRef(
|
|
10446
10754
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10447
10755
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11988,6 +12296,32 @@ const IconSpinner = react.forwardRef(
|
|
|
11988
12296
|
);
|
|
11989
12297
|
IconSpinner[designSystemBaseIcon.iconSymbol] = true;
|
|
11990
12298
|
|
|
12299
|
+
const IconSplitHorizontal = react.forwardRef(
|
|
12300
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
12301
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12302
|
+
return react.createElement(
|
|
12303
|
+
StyledIcon,
|
|
12304
|
+
{
|
|
12305
|
+
...props,
|
|
12306
|
+
debug,
|
|
12307
|
+
"aria-hidden": true,
|
|
12308
|
+
size,
|
|
12309
|
+
viewBox: "0 0 24 24",
|
|
12310
|
+
fill: "none",
|
|
12311
|
+
ref: forwardRef2
|
|
12312
|
+
},
|
|
12313
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12314
|
+
"path",
|
|
12315
|
+
{
|
|
12316
|
+
fill: "currentColor",
|
|
12317
|
+
d: "M3 18V6a3 3 0 0 1 3-3h2v2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2v2H6a3 3 0 0 1-3-3Zm16 0V6a1 1 0 0 0-1-1h-2V3h2a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3h-2v-2h2a1 1 0 0 0 1-1Zm-6 5h-2V1h2v22Z"
|
|
12318
|
+
}
|
|
12319
|
+
)
|
|
12320
|
+
);
|
|
12321
|
+
}
|
|
12322
|
+
);
|
|
12323
|
+
IconSplitHorizontal[designSystemBaseIcon.iconSymbol] = true;
|
|
12324
|
+
|
|
11991
12325
|
const IconSplitVertical = react.forwardRef(
|
|
11992
12326
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
11993
12327
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -13226,6 +13560,34 @@ const IconTasks = react.forwardRef(
|
|
|
13226
13560
|
);
|
|
13227
13561
|
IconTasks[designSystemBaseIcon.iconSymbol] = true;
|
|
13228
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
|
+
|
|
13229
13591
|
const IconTextAColorSelection = react.forwardRef(
|
|
13230
13592
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
13231
13593
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -14746,6 +15108,32 @@ const IconUsers = react.forwardRef(
|
|
|
14746
15108
|
);
|
|
14747
15109
|
IconUsers[designSystemBaseIcon.iconSymbol] = true;
|
|
14748
15110
|
|
|
15111
|
+
const IconVerticalBlocks = react.forwardRef(
|
|
15112
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
15113
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
15114
|
+
return react.createElement(
|
|
15115
|
+
StyledIcon,
|
|
15116
|
+
{
|
|
15117
|
+
...props,
|
|
15118
|
+
debug,
|
|
15119
|
+
"aria-hidden": true,
|
|
15120
|
+
size,
|
|
15121
|
+
viewBox: "0 0 24 24",
|
|
15122
|
+
fill: "none",
|
|
15123
|
+
ref: forwardRef2
|
|
15124
|
+
},
|
|
15125
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
15126
|
+
"path",
|
|
15127
|
+
{
|
|
15128
|
+
fill: "currentColor",
|
|
15129
|
+
d: "M15 5h4v12h-4V5Zm4 14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4ZM5 5h4v14H5V5Zm4 16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4Z"
|
|
15130
|
+
}
|
|
15131
|
+
)
|
|
15132
|
+
);
|
|
15133
|
+
}
|
|
15134
|
+
);
|
|
15135
|
+
IconVerticalBlocks[designSystemBaseIcon.iconSymbol] = true;
|
|
15136
|
+
|
|
14749
15137
|
const IconVideoCameraDot = react.forwardRef(
|
|
14750
15138
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
14751
15139
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15206,6 +15594,7 @@ exports.IconArrowBendUpRight = IconArrowBendUpRight;
|
|
|
15206
15594
|
exports.IconArrowBoxLeft = IconArrowBoxLeft;
|
|
15207
15595
|
exports.IconArrowBoxOut = IconArrowBoxOut;
|
|
15208
15596
|
exports.IconArrowClockwiseDownRight = IconArrowClockwiseDownRight;
|
|
15597
|
+
exports.IconArrowClockwiseIntoRectangle = IconArrowClockwiseIntoRectangle;
|
|
15209
15598
|
exports.IconArrowClockwiseUpLeft = IconArrowClockwiseUpLeft;
|
|
15210
15599
|
exports.IconArrowCounterClockwiseDownLeft = IconArrowCounterClockwiseDownLeft;
|
|
15211
15600
|
exports.IconArrowCounterClockwiseUpRight = IconArrowCounterClockwiseUpRight;
|
|
@@ -15249,6 +15638,7 @@ exports.IconAt = IconAt;
|
|
|
15249
15638
|
exports.IconAttachment = IconAttachment;
|
|
15250
15639
|
exports.IconBadge = IconBadge;
|
|
15251
15640
|
exports.IconBarrel = IconBarrel;
|
|
15641
|
+
exports.IconBear = IconBear;
|
|
15252
15642
|
exports.IconBell = IconBell;
|
|
15253
15643
|
exports.IconBellSlash = IconBellSlash;
|
|
15254
15644
|
exports.IconBellTilt = IconBellTilt;
|
|
@@ -15256,6 +15646,7 @@ exports.IconBoard = IconBoard;
|
|
|
15256
15646
|
exports.IconBookOpenInfo = IconBookOpenInfo;
|
|
15257
15647
|
exports.IconBookmark = IconBookmark;
|
|
15258
15648
|
exports.IconBoxCaptions = IconBoxCaptions;
|
|
15649
|
+
exports.IconBoxCaptionsFilled = IconBoxCaptionsFilled;
|
|
15259
15650
|
exports.IconBracketClose = IconBracketClose;
|
|
15260
15651
|
exports.IconBracketCurlyLeft = IconBracketCurlyLeft;
|
|
15261
15652
|
exports.IconBracketCurlyRight = IconBracketCurlyRight;
|
|
@@ -15270,6 +15661,7 @@ exports.IconCalendarStart = IconCalendarStart;
|
|
|
15270
15661
|
exports.IconCamera = IconCamera;
|
|
15271
15662
|
exports.IconCaptionAlong = IconCaptionAlong;
|
|
15272
15663
|
exports.IconCaptionHorizontal = IconCaptionHorizontal;
|
|
15664
|
+
exports.IconCar = IconCar;
|
|
15273
15665
|
exports.IconCard = IconCard;
|
|
15274
15666
|
exports.IconCardCircles = IconCardCircles;
|
|
15275
15667
|
exports.IconCardNumberThree = IconCardNumberThree;
|
|
@@ -15278,6 +15670,7 @@ exports.IconChartBarY = IconChartBarY;
|
|
|
15278
15670
|
exports.IconChartBarYSimple = IconChartBarYSimple;
|
|
15279
15671
|
exports.IconChat = IconChat;
|
|
15280
15672
|
exports.IconChatCheck = IconChatCheck;
|
|
15673
|
+
exports.IconChatCross = IconChatCross;
|
|
15281
15674
|
exports.IconChatDashesLinesTwo = IconChatDashesLinesTwo;
|
|
15282
15675
|
exports.IconChatLinesCross = IconChatLinesCross;
|
|
15283
15676
|
exports.IconChatLinesDot = IconChatLinesDot;
|
|
@@ -15376,6 +15769,7 @@ exports.IconDotsThree = IconDotsThree;
|
|
|
15376
15769
|
exports.IconDotsThreeVertical = IconDotsThreeVertical;
|
|
15377
15770
|
exports.IconDotsTwo = IconDotsTwo;
|
|
15378
15771
|
exports.IconDownload = IconDownload;
|
|
15772
|
+
exports.IconDrinkBurger = IconDrinkBurger;
|
|
15379
15773
|
exports.IconEnvelope = IconEnvelope;
|
|
15380
15774
|
exports.IconEraser = IconEraser;
|
|
15381
15775
|
exports.IconExclamationMarkOctagon = IconExclamationMarkOctagon;
|
|
@@ -15421,10 +15815,12 @@ exports.IconHeadphones = IconHeadphones;
|
|
|
15421
15815
|
exports.IconHeadsetPerson = IconHeadsetPerson;
|
|
15422
15816
|
exports.IconHeart = IconHeart;
|
|
15423
15817
|
exports.IconHeartFilled = IconHeartFilled;
|
|
15818
|
+
exports.IconHeartMusicNote = IconHeartMusicNote;
|
|
15424
15819
|
exports.IconHexagon = IconHexagon;
|
|
15425
15820
|
exports.IconHighlighter = IconHighlighter;
|
|
15426
15821
|
exports.IconHighlighterColorSelection = IconHighlighterColorSelection;
|
|
15427
15822
|
exports.IconHighlighterUnderline = IconHighlighterUnderline;
|
|
15823
|
+
exports.IconHorizontalBlocks = IconHorizontalBlocks;
|
|
15428
15824
|
exports.IconHouse = IconHouse;
|
|
15429
15825
|
exports.IconImage = IconImage;
|
|
15430
15826
|
exports.IconIndentLeft = IconIndentLeft;
|
|
@@ -15449,6 +15845,7 @@ exports.IconLineHorizontal = IconLineHorizontal;
|
|
|
15449
15845
|
exports.IconLineOrthogonal = IconLineOrthogonal;
|
|
15450
15846
|
exports.IconLineStraight = IconLineStraight;
|
|
15451
15847
|
exports.IconLineTwoDiagonalTopRightDouble = IconLineTwoDiagonalTopRightDouble;
|
|
15848
|
+
exports.IconLineVertical = IconLineVertical;
|
|
15452
15849
|
exports.IconLinesThreeHorizontal = IconLinesThreeHorizontal;
|
|
15453
15850
|
exports.IconLinesThreeHorizontalLineVerticalCenter = IconLinesThreeHorizontalLineVerticalCenter;
|
|
15454
15851
|
exports.IconLinesThreeVertical = IconLinesThreeVertical;
|
|
@@ -15464,6 +15861,7 @@ exports.IconLogout = IconLogout;
|
|
|
15464
15861
|
exports.IconMagnet = IconMagnet;
|
|
15465
15862
|
exports.IconMagnifyingGlass = IconMagnifyingGlass;
|
|
15466
15863
|
exports.IconMagnifyingGlassLightning = IconMagnifyingGlassLightning;
|
|
15864
|
+
exports.IconMagnifyingGlassMinus = IconMagnifyingGlassMinus;
|
|
15467
15865
|
exports.IconMagnifyingGlassPlus = IconMagnifyingGlassPlus;
|
|
15468
15866
|
exports.IconMap = IconMap;
|
|
15469
15867
|
exports.IconMegaphone = IconMegaphone;
|
|
@@ -15572,9 +15970,11 @@ exports.IconRectanglePortraitDash = IconRectanglePortraitDash;
|
|
|
15572
15970
|
exports.IconRectanglePortraitDashSquareTopCenter = IconRectanglePortraitDashSquareTopCenter;
|
|
15573
15971
|
exports.IconRectanglePortraitDashSquareTopLeft = IconRectanglePortraitDashSquareTopLeft;
|
|
15574
15972
|
exports.IconRectanglePortraitFilled = IconRectanglePortraitFilled;
|
|
15973
|
+
exports.IconRectanglePortraitSquareBottomRight = IconRectanglePortraitSquareBottomRight;
|
|
15575
15974
|
exports.IconRectanglePortraitSquareTopLeft = IconRectanglePortraitSquareTopLeft;
|
|
15576
15975
|
exports.IconRectangleTick = IconRectangleTick;
|
|
15577
15976
|
exports.IconRectangleTriangleBottomCenter = IconRectangleTriangleBottomCenter;
|
|
15977
|
+
exports.IconRectanglesLayout = IconRectanglesLayout;
|
|
15578
15978
|
exports.IconRectanglesSquares = IconRectanglesSquares;
|
|
15579
15979
|
exports.IconRectanglesThreeAligned = IconRectanglesThreeAligned;
|
|
15580
15980
|
exports.IconRectanglesThreeFree = IconRectanglesThreeFree;
|
|
@@ -15633,6 +16033,7 @@ exports.IconSparksFilled = IconSparksFilled;
|
|
|
15633
16033
|
exports.IconSpeakerCross = IconSpeakerCross;
|
|
15634
16034
|
exports.IconSpeakerHigh = IconSpeakerHigh;
|
|
15635
16035
|
exports.IconSpinner = IconSpinner;
|
|
16036
|
+
exports.IconSplitHorizontal = IconSplitHorizontal;
|
|
15636
16037
|
exports.IconSplitVertical = IconSplitVertical;
|
|
15637
16038
|
exports.IconSquare = IconSquare;
|
|
15638
16039
|
exports.IconSquareArrowIn = IconSquareArrowIn;
|
|
@@ -15679,6 +16080,7 @@ exports.IconTableFormat = IconTableFormat;
|
|
|
15679
16080
|
exports.IconTablet = IconTablet;
|
|
15680
16081
|
exports.IconTag = IconTag;
|
|
15681
16082
|
exports.IconTasks = IconTasks;
|
|
16083
|
+
exports.IconTennisBall = IconTennisBall;
|
|
15682
16084
|
exports.IconTextAColorSelection = IconTextAColorSelection;
|
|
15683
16085
|
exports.IconTextAHorizontal = IconTextAHorizontal;
|
|
15684
16086
|
exports.IconTextAUnderline = IconTextAUnderline;
|
|
@@ -15736,6 +16138,7 @@ exports.IconUserPenLineBottom = IconUserPenLineBottom;
|
|
|
15736
16138
|
exports.IconUserTickDown = IconUserTickDown;
|
|
15737
16139
|
exports.IconUsers = IconUsers;
|
|
15738
16140
|
exports.IconUsersThree = IconUsersThree;
|
|
16141
|
+
exports.IconVerticalBlocks = IconVerticalBlocks;
|
|
15739
16142
|
exports.IconVideoCamera = IconVideoCamera;
|
|
15740
16143
|
exports.IconVideoCameraDot = IconVideoCameraDot;
|
|
15741
16144
|
exports.IconVideoCameraLines = IconVideoCameraLines;
|