@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/module.js
CHANGED
|
@@ -652,6 +652,32 @@ const IconArrowClockwiseDownRight = forwardRef(
|
|
|
652
652
|
);
|
|
653
653
|
IconArrowClockwiseDownRight[iconSymbol] = true;
|
|
654
654
|
|
|
655
|
+
const IconArrowClockwiseIntoRectangle = forwardRef(
|
|
656
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
657
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
658
|
+
return createElement(
|
|
659
|
+
StyledIcon,
|
|
660
|
+
{
|
|
661
|
+
...props,
|
|
662
|
+
debug,
|
|
663
|
+
"aria-hidden": true,
|
|
664
|
+
size,
|
|
665
|
+
viewBox: "0 0 24 24",
|
|
666
|
+
fill: "none",
|
|
667
|
+
ref: forwardRef2
|
|
668
|
+
},
|
|
669
|
+
/* @__PURE__ */ jsx(
|
|
670
|
+
"path",
|
|
671
|
+
{
|
|
672
|
+
fill: "currentColor",
|
|
673
|
+
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"
|
|
674
|
+
}
|
|
675
|
+
)
|
|
676
|
+
);
|
|
677
|
+
}
|
|
678
|
+
);
|
|
679
|
+
IconArrowClockwiseIntoRectangle[iconSymbol] = true;
|
|
680
|
+
|
|
655
681
|
const IconArrowClockwiseUpLeft = forwardRef(
|
|
656
682
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
657
683
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1780,6 +1806,32 @@ const IconBarrel = forwardRef(
|
|
|
1780
1806
|
);
|
|
1781
1807
|
IconBarrel[iconSymbol] = true;
|
|
1782
1808
|
|
|
1809
|
+
const IconBear = forwardRef(
|
|
1810
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1811
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1812
|
+
return createElement(
|
|
1813
|
+
StyledIcon,
|
|
1814
|
+
{
|
|
1815
|
+
...props,
|
|
1816
|
+
debug,
|
|
1817
|
+
"aria-hidden": true,
|
|
1818
|
+
size,
|
|
1819
|
+
viewBox: "0 0 24 24",
|
|
1820
|
+
fill: "none",
|
|
1821
|
+
ref: forwardRef2
|
|
1822
|
+
},
|
|
1823
|
+
/* @__PURE__ */ jsx(
|
|
1824
|
+
"path",
|
|
1825
|
+
{
|
|
1826
|
+
fill: "currentColor",
|
|
1827
|
+
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"
|
|
1828
|
+
}
|
|
1829
|
+
)
|
|
1830
|
+
);
|
|
1831
|
+
}
|
|
1832
|
+
);
|
|
1833
|
+
IconBear[iconSymbol] = true;
|
|
1834
|
+
|
|
1783
1835
|
const IconBellSlash = forwardRef(
|
|
1784
1836
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1785
1837
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1944,6 +1996,34 @@ const IconBookmark = forwardRef(
|
|
|
1944
1996
|
);
|
|
1945
1997
|
IconBookmark[iconSymbol] = true;
|
|
1946
1998
|
|
|
1999
|
+
const IconBoxCaptionsFilled = forwardRef(
|
|
2000
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2001
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
2002
|
+
return createElement(
|
|
2003
|
+
StyledIcon,
|
|
2004
|
+
{
|
|
2005
|
+
...props,
|
|
2006
|
+
debug,
|
|
2007
|
+
"aria-hidden": true,
|
|
2008
|
+
size,
|
|
2009
|
+
viewBox: "0 0 24 24",
|
|
2010
|
+
fill: "none",
|
|
2011
|
+
ref: forwardRef2
|
|
2012
|
+
},
|
|
2013
|
+
/* @__PURE__ */ jsx(
|
|
2014
|
+
"path",
|
|
2015
|
+
{
|
|
2016
|
+
fill: "currentColor",
|
|
2017
|
+
fillRule: "evenodd",
|
|
2018
|
+
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",
|
|
2019
|
+
clipRule: "evenodd"
|
|
2020
|
+
}
|
|
2021
|
+
)
|
|
2022
|
+
);
|
|
2023
|
+
}
|
|
2024
|
+
);
|
|
2025
|
+
IconBoxCaptionsFilled[iconSymbol] = true;
|
|
2026
|
+
|
|
1947
2027
|
const IconBoxCaptions = forwardRef(
|
|
1948
2028
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1949
2029
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2346,6 +2426,34 @@ const IconCaptionHorizontal = forwardRef(
|
|
|
2346
2426
|
);
|
|
2347
2427
|
IconCaptionHorizontal[iconSymbol] = true;
|
|
2348
2428
|
|
|
2429
|
+
const IconCar = forwardRef(
|
|
2430
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2431
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
2432
|
+
return createElement(
|
|
2433
|
+
StyledIcon,
|
|
2434
|
+
{
|
|
2435
|
+
...props,
|
|
2436
|
+
debug,
|
|
2437
|
+
"aria-hidden": true,
|
|
2438
|
+
size,
|
|
2439
|
+
viewBox: "0 0 24 24",
|
|
2440
|
+
fill: "none",
|
|
2441
|
+
ref: forwardRef2
|
|
2442
|
+
},
|
|
2443
|
+
/* @__PURE__ */ jsx(
|
|
2444
|
+
"path",
|
|
2445
|
+
{
|
|
2446
|
+
fill: "currentColor",
|
|
2447
|
+
fillRule: "evenodd",
|
|
2448
|
+
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",
|
|
2449
|
+
clipRule: "evenodd"
|
|
2450
|
+
}
|
|
2451
|
+
)
|
|
2452
|
+
);
|
|
2453
|
+
}
|
|
2454
|
+
);
|
|
2455
|
+
IconCar[iconSymbol] = true;
|
|
2456
|
+
|
|
2349
2457
|
const IconCardCircles = forwardRef(
|
|
2350
2458
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2351
2459
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2528,6 +2636,32 @@ const IconChatCheck = forwardRef(
|
|
|
2528
2636
|
);
|
|
2529
2637
|
IconChatCheck[iconSymbol] = true;
|
|
2530
2638
|
|
|
2639
|
+
const IconChatCross = forwardRef(
|
|
2640
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2641
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
2642
|
+
return createElement(
|
|
2643
|
+
StyledIcon,
|
|
2644
|
+
{
|
|
2645
|
+
...props,
|
|
2646
|
+
debug,
|
|
2647
|
+
"aria-hidden": true,
|
|
2648
|
+
size,
|
|
2649
|
+
viewBox: "0 0 24 24",
|
|
2650
|
+
fill: "none",
|
|
2651
|
+
ref: forwardRef2
|
|
2652
|
+
},
|
|
2653
|
+
/* @__PURE__ */ jsx(
|
|
2654
|
+
"path",
|
|
2655
|
+
{
|
|
2656
|
+
fill: "currentColor",
|
|
2657
|
+
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"
|
|
2658
|
+
}
|
|
2659
|
+
)
|
|
2660
|
+
);
|
|
2661
|
+
}
|
|
2662
|
+
);
|
|
2663
|
+
IconChatCross[iconSymbol] = true;
|
|
2664
|
+
|
|
2531
2665
|
const IconChatDashesLinesTwo = forwardRef(
|
|
2532
2666
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2533
2667
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -5150,6 +5284,32 @@ const IconDownload = forwardRef(
|
|
|
5150
5284
|
);
|
|
5151
5285
|
IconDownload[iconSymbol] = true;
|
|
5152
5286
|
|
|
5287
|
+
const IconDrinkBurger = forwardRef(
|
|
5288
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
5289
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5290
|
+
return createElement(
|
|
5291
|
+
StyledIcon,
|
|
5292
|
+
{
|
|
5293
|
+
...props,
|
|
5294
|
+
debug,
|
|
5295
|
+
"aria-hidden": true,
|
|
5296
|
+
size,
|
|
5297
|
+
viewBox: "0 0 24 24",
|
|
5298
|
+
fill: "none",
|
|
5299
|
+
ref: forwardRef2
|
|
5300
|
+
},
|
|
5301
|
+
/* @__PURE__ */ jsx(
|
|
5302
|
+
"path",
|
|
5303
|
+
{
|
|
5304
|
+
fill: "currentColor",
|
|
5305
|
+
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"
|
|
5306
|
+
}
|
|
5307
|
+
)
|
|
5308
|
+
);
|
|
5309
|
+
}
|
|
5310
|
+
);
|
|
5311
|
+
IconDrinkBurger[iconSymbol] = true;
|
|
5312
|
+
|
|
5153
5313
|
const IconEnvelope = forwardRef(
|
|
5154
5314
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
5155
5315
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6326,6 +6486,34 @@ const IconHeartFilled = forwardRef(
|
|
|
6326
6486
|
);
|
|
6327
6487
|
IconHeartFilled[iconSymbol] = true;
|
|
6328
6488
|
|
|
6489
|
+
const IconHeartMusicNote = forwardRef(
|
|
6490
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
6491
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
6492
|
+
return createElement(
|
|
6493
|
+
StyledIcon,
|
|
6494
|
+
{
|
|
6495
|
+
...props,
|
|
6496
|
+
debug,
|
|
6497
|
+
"aria-hidden": true,
|
|
6498
|
+
size,
|
|
6499
|
+
viewBox: "0 0 24 24",
|
|
6500
|
+
fill: "none",
|
|
6501
|
+
ref: forwardRef2
|
|
6502
|
+
},
|
|
6503
|
+
/* @__PURE__ */ jsx(
|
|
6504
|
+
"path",
|
|
6505
|
+
{
|
|
6506
|
+
fill: "currentColor",
|
|
6507
|
+
fillRule: "evenodd",
|
|
6508
|
+
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",
|
|
6509
|
+
clipRule: "evenodd"
|
|
6510
|
+
}
|
|
6511
|
+
)
|
|
6512
|
+
);
|
|
6513
|
+
}
|
|
6514
|
+
);
|
|
6515
|
+
IconHeartMusicNote[iconSymbol] = true;
|
|
6516
|
+
|
|
6329
6517
|
const IconHeart = forwardRef(
|
|
6330
6518
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6331
6519
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6462,6 +6650,32 @@ const IconHighlighter = forwardRef(
|
|
|
6462
6650
|
);
|
|
6463
6651
|
IconHighlighter[iconSymbol] = true;
|
|
6464
6652
|
|
|
6653
|
+
const IconHorizontalBlocks = forwardRef(
|
|
6654
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
6655
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
6656
|
+
return createElement(
|
|
6657
|
+
StyledIcon,
|
|
6658
|
+
{
|
|
6659
|
+
...props,
|
|
6660
|
+
debug,
|
|
6661
|
+
"aria-hidden": true,
|
|
6662
|
+
size,
|
|
6663
|
+
viewBox: "0 0 24 24",
|
|
6664
|
+
fill: "none",
|
|
6665
|
+
ref: forwardRef2
|
|
6666
|
+
},
|
|
6667
|
+
/* @__PURE__ */ jsx(
|
|
6668
|
+
"path",
|
|
6669
|
+
{
|
|
6670
|
+
fill: "currentColor",
|
|
6671
|
+
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"
|
|
6672
|
+
}
|
|
6673
|
+
)
|
|
6674
|
+
);
|
|
6675
|
+
}
|
|
6676
|
+
);
|
|
6677
|
+
IconHorizontalBlocks[iconSymbol] = true;
|
|
6678
|
+
|
|
6465
6679
|
const IconHouse = forwardRef(
|
|
6466
6680
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6467
6681
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7096,6 +7310,26 @@ const IconLineTwoDiagonalTopRightDouble = forwardRef(
|
|
|
7096
7310
|
);
|
|
7097
7311
|
IconLineTwoDiagonalTopRightDouble[iconSymbol] = true;
|
|
7098
7312
|
|
|
7313
|
+
const IconLineVertical = forwardRef(
|
|
7314
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7315
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
7316
|
+
return createElement(
|
|
7317
|
+
StyledIcon,
|
|
7318
|
+
{
|
|
7319
|
+
...props,
|
|
7320
|
+
debug,
|
|
7321
|
+
"aria-hidden": true,
|
|
7322
|
+
size,
|
|
7323
|
+
viewBox: "0 0 24 24",
|
|
7324
|
+
fill: "none",
|
|
7325
|
+
ref: forwardRef2
|
|
7326
|
+
},
|
|
7327
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M14 20h-2V4h2v16Z" })
|
|
7328
|
+
);
|
|
7329
|
+
}
|
|
7330
|
+
);
|
|
7331
|
+
IconLineVertical[iconSymbol] = true;
|
|
7332
|
+
|
|
7099
7333
|
const IconLinesThreeHorizontalLineVerticalCenter = forwardRef(({ size = "medium", ...props }, forwardRef2) => {
|
|
7100
7334
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
7101
7335
|
return createElement(
|
|
@@ -7466,6 +7700,32 @@ const IconMagnifyingGlassLightning = forwardRef(
|
|
|
7466
7700
|
);
|
|
7467
7701
|
IconMagnifyingGlassLightning[iconSymbol] = true;
|
|
7468
7702
|
|
|
7703
|
+
const IconMagnifyingGlassMinus = forwardRef(
|
|
7704
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7705
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
7706
|
+
return createElement(
|
|
7707
|
+
StyledIcon,
|
|
7708
|
+
{
|
|
7709
|
+
...props,
|
|
7710
|
+
debug,
|
|
7711
|
+
"aria-hidden": true,
|
|
7712
|
+
size,
|
|
7713
|
+
viewBox: "0 0 24 24",
|
|
7714
|
+
fill: "none",
|
|
7715
|
+
ref: forwardRef2
|
|
7716
|
+
},
|
|
7717
|
+
/* @__PURE__ */ jsx(
|
|
7718
|
+
"path",
|
|
7719
|
+
{
|
|
7720
|
+
fill: "currentColor",
|
|
7721
|
+
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"
|
|
7722
|
+
}
|
|
7723
|
+
)
|
|
7724
|
+
);
|
|
7725
|
+
}
|
|
7726
|
+
);
|
|
7727
|
+
IconMagnifyingGlassMinus[iconSymbol] = true;
|
|
7728
|
+
|
|
7469
7729
|
const IconMagnifyingGlassPlus = forwardRef(
|
|
7470
7730
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
7471
7731
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7484,7 +7744,7 @@ const IconMagnifyingGlassPlus = forwardRef(
|
|
|
7484
7744
|
"path",
|
|
7485
7745
|
{
|
|
7486
7746
|
fill: "currentColor",
|
|
7487
|
-
d: "M3
|
|
7747
|
+
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"
|
|
7488
7748
|
}
|
|
7489
7749
|
)
|
|
7490
7750
|
);
|
|
@@ -9668,7 +9928,7 @@ const IconProtoCheckbox = forwardRef(
|
|
|
9668
9928
|
"path",
|
|
9669
9929
|
{
|
|
9670
9930
|
fill: "currentColor",
|
|
9671
|
-
d: "
|
|
9931
|
+
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"
|
|
9672
9932
|
}
|
|
9673
9933
|
)
|
|
9674
9934
|
);
|
|
@@ -9772,9 +10032,7 @@ const IconProtoRadio = forwardRef(
|
|
|
9772
10032
|
"path",
|
|
9773
10033
|
{
|
|
9774
10034
|
fill: "currentColor",
|
|
9775
|
-
|
|
9776
|
-
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",
|
|
9777
|
-
clipRule: "evenodd"
|
|
10035
|
+
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"
|
|
9778
10036
|
}
|
|
9779
10037
|
)
|
|
9780
10038
|
);
|
|
@@ -10332,6 +10590,30 @@ const IconRectanglePortraitFilled = forwardRef(
|
|
|
10332
10590
|
);
|
|
10333
10591
|
IconRectanglePortraitFilled[iconSymbol] = true;
|
|
10334
10592
|
|
|
10593
|
+
const IconRectanglePortraitSquareBottomRight = forwardRef(({ size = "medium", ...props }, forwardRef2) => {
|
|
10594
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10595
|
+
return createElement(
|
|
10596
|
+
StyledIcon,
|
|
10597
|
+
{
|
|
10598
|
+
...props,
|
|
10599
|
+
debug,
|
|
10600
|
+
"aria-hidden": true,
|
|
10601
|
+
size,
|
|
10602
|
+
viewBox: "0 0 24 24",
|
|
10603
|
+
fill: "none",
|
|
10604
|
+
ref: forwardRef2
|
|
10605
|
+
},
|
|
10606
|
+
/* @__PURE__ */ jsx(
|
|
10607
|
+
"path",
|
|
10608
|
+
{
|
|
10609
|
+
fill: "currentColor",
|
|
10610
|
+
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"
|
|
10611
|
+
}
|
|
10612
|
+
)
|
|
10613
|
+
);
|
|
10614
|
+
});
|
|
10615
|
+
IconRectanglePortraitSquareBottomRight[iconSymbol] = true;
|
|
10616
|
+
|
|
10335
10617
|
const IconRectanglePortraitSquareTopLeft = forwardRef(
|
|
10336
10618
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10337
10619
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10438,6 +10720,32 @@ const IconRectangleTriangleBottomCenter = forwardRef(
|
|
|
10438
10720
|
);
|
|
10439
10721
|
IconRectangleTriangleBottomCenter[iconSymbol] = true;
|
|
10440
10722
|
|
|
10723
|
+
const IconRectanglesLayout = forwardRef(
|
|
10724
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
10725
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10726
|
+
return createElement(
|
|
10727
|
+
StyledIcon,
|
|
10728
|
+
{
|
|
10729
|
+
...props,
|
|
10730
|
+
debug,
|
|
10731
|
+
"aria-hidden": true,
|
|
10732
|
+
size,
|
|
10733
|
+
viewBox: "0 0 24 24",
|
|
10734
|
+
fill: "none",
|
|
10735
|
+
ref: forwardRef2
|
|
10736
|
+
},
|
|
10737
|
+
/* @__PURE__ */ jsx(
|
|
10738
|
+
"path",
|
|
10739
|
+
{
|
|
10740
|
+
fill: "currentColor",
|
|
10741
|
+
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"
|
|
10742
|
+
}
|
|
10743
|
+
)
|
|
10744
|
+
);
|
|
10745
|
+
}
|
|
10746
|
+
);
|
|
10747
|
+
IconRectanglesLayout[iconSymbol] = true;
|
|
10748
|
+
|
|
10441
10749
|
const IconRectanglesSquares = forwardRef(
|
|
10442
10750
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10443
10751
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11984,6 +12292,32 @@ const IconSpinner = forwardRef(
|
|
|
11984
12292
|
);
|
|
11985
12293
|
IconSpinner[iconSymbol] = true;
|
|
11986
12294
|
|
|
12295
|
+
const IconSplitHorizontal = forwardRef(
|
|
12296
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
12297
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
12298
|
+
return createElement(
|
|
12299
|
+
StyledIcon,
|
|
12300
|
+
{
|
|
12301
|
+
...props,
|
|
12302
|
+
debug,
|
|
12303
|
+
"aria-hidden": true,
|
|
12304
|
+
size,
|
|
12305
|
+
viewBox: "0 0 24 24",
|
|
12306
|
+
fill: "none",
|
|
12307
|
+
ref: forwardRef2
|
|
12308
|
+
},
|
|
12309
|
+
/* @__PURE__ */ jsx(
|
|
12310
|
+
"path",
|
|
12311
|
+
{
|
|
12312
|
+
fill: "currentColor",
|
|
12313
|
+
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"
|
|
12314
|
+
}
|
|
12315
|
+
)
|
|
12316
|
+
);
|
|
12317
|
+
}
|
|
12318
|
+
);
|
|
12319
|
+
IconSplitHorizontal[iconSymbol] = true;
|
|
12320
|
+
|
|
11987
12321
|
const IconSplitVertical = forwardRef(
|
|
11988
12322
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
11989
12323
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -13222,6 +13556,34 @@ const IconTasks = forwardRef(
|
|
|
13222
13556
|
);
|
|
13223
13557
|
IconTasks[iconSymbol] = true;
|
|
13224
13558
|
|
|
13559
|
+
const IconTennisBall = forwardRef(
|
|
13560
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
13561
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
13562
|
+
return createElement(
|
|
13563
|
+
StyledIcon,
|
|
13564
|
+
{
|
|
13565
|
+
...props,
|
|
13566
|
+
debug,
|
|
13567
|
+
"aria-hidden": true,
|
|
13568
|
+
size,
|
|
13569
|
+
viewBox: "0 0 24 24",
|
|
13570
|
+
fill: "none",
|
|
13571
|
+
ref: forwardRef2
|
|
13572
|
+
},
|
|
13573
|
+
/* @__PURE__ */ jsx(
|
|
13574
|
+
"path",
|
|
13575
|
+
{
|
|
13576
|
+
fill: "currentColor",
|
|
13577
|
+
fillRule: "evenodd",
|
|
13578
|
+
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",
|
|
13579
|
+
clipRule: "evenodd"
|
|
13580
|
+
}
|
|
13581
|
+
)
|
|
13582
|
+
);
|
|
13583
|
+
}
|
|
13584
|
+
);
|
|
13585
|
+
IconTennisBall[iconSymbol] = true;
|
|
13586
|
+
|
|
13225
13587
|
const IconTextAColorSelection = forwardRef(
|
|
13226
13588
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
13227
13589
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -14742,6 +15104,32 @@ const IconUsers = forwardRef(
|
|
|
14742
15104
|
);
|
|
14743
15105
|
IconUsers[iconSymbol] = true;
|
|
14744
15106
|
|
|
15107
|
+
const IconVerticalBlocks = forwardRef(
|
|
15108
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
15109
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
15110
|
+
return createElement(
|
|
15111
|
+
StyledIcon,
|
|
15112
|
+
{
|
|
15113
|
+
...props,
|
|
15114
|
+
debug,
|
|
15115
|
+
"aria-hidden": true,
|
|
15116
|
+
size,
|
|
15117
|
+
viewBox: "0 0 24 24",
|
|
15118
|
+
fill: "none",
|
|
15119
|
+
ref: forwardRef2
|
|
15120
|
+
},
|
|
15121
|
+
/* @__PURE__ */ jsx(
|
|
15122
|
+
"path",
|
|
15123
|
+
{
|
|
15124
|
+
fill: "currentColor",
|
|
15125
|
+
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"
|
|
15126
|
+
}
|
|
15127
|
+
)
|
|
15128
|
+
);
|
|
15129
|
+
}
|
|
15130
|
+
);
|
|
15131
|
+
IconVerticalBlocks[iconSymbol] = true;
|
|
15132
|
+
|
|
14745
15133
|
const IconVideoCameraDot = forwardRef(
|
|
14746
15134
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
14747
15135
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15178,5 +15566,5 @@ const IconWifi = forwardRef(
|
|
|
15178
15566
|
);
|
|
15179
15567
|
IconWifi[iconSymbol] = true;
|
|
15180
15568
|
|
|
15181
|
-
export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingShapes, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlip, IconFlipCard, IconFolder, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
15569
|
+
export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseIntoRectangle, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBear, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBoxCaptionsFilled, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCar, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatCross, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingShapes, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconDrinkBurger, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlip, IconFlipCard, IconFolder, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHeartMusicNote, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHorizontalBlocks, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLineVertical, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassMinus, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareBottomRight, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesLayout, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitHorizontal, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTennisBall, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVerticalBlocks, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
15182
15570
|
//# sourceMappingURL=module.js.map
|