@mirohq/design-system-icons 1.12.0 → 1.14.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 +335 -5
- package/dist/main.js.map +1 -1
- package/dist/module.js +324 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +25 -1
- package/package.json +3 -3
- package/react/ai-cursor.tsx +34 -0
- package/react/arrow-clockwise-into-rectangle.tsx +34 -0
- package/react/bear.tsx +34 -0
- package/react/car.tsx +36 -0
- package/react/chart-line.tsx +34 -0
- package/react/chart-number.tsx +34 -0
- package/react/chart-progress.tsx +34 -0
- package/react/drink-burger.tsx +34 -0
- package/react/heart-music-note.tsx +36 -0
- package/react/index.ts +12 -0
- package/react/magnifying-glass-minus.tsx +1 -3
- package/react/magnifying-glass-plus.tsx +1 -1
- package/react/orbit-double.tsx +36 -0
- package/react/proto-radio.tsx +1 -1
- package/react/square-pencil.tsx +34 -0
- package/react/tennis-ball.tsx +36 -0
- package/svg/24/ai-cursor.svg +2 -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/chart-line.svg +2 -0
- package/svg/24/chart-number.svg +2 -0
- package/svg/24/chart-progress.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/orbit-double.svg +2 -0
- package/svg/24/proto-radio.svg +1 -1
- package/svg/24/square-pencil.svg +2 -0
- package/svg/24/tennis-ball.svg +2 -0
- package/svg/meta.json +131 -6
package/dist/module.js
CHANGED
|
@@ -126,6 +126,32 @@ const IconAddLineRight = forwardRef(
|
|
|
126
126
|
);
|
|
127
127
|
IconAddLineRight[iconSymbol] = true;
|
|
128
128
|
|
|
129
|
+
const IconAiCursor = forwardRef(
|
|
130
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
131
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
132
|
+
return createElement(
|
|
133
|
+
StyledIcon,
|
|
134
|
+
{
|
|
135
|
+
...props,
|
|
136
|
+
debug,
|
|
137
|
+
"aria-hidden": true,
|
|
138
|
+
size,
|
|
139
|
+
viewBox: "0 0 24 24",
|
|
140
|
+
fill: "none",
|
|
141
|
+
ref: forwardRef2
|
|
142
|
+
},
|
|
143
|
+
/* @__PURE__ */ jsx(
|
|
144
|
+
"path",
|
|
145
|
+
{
|
|
146
|
+
fill: "currentColor",
|
|
147
|
+
d: "M19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5ZM4.662 22.607l2.025.574c2.482-4.35 7.221-7 12.228-6.834l.598-2.108L5.138 3.822 3.046 4.99l1.616 17.617Zm11.771-8.132a15.648 15.648 0 0 0-9.998 5.559L5.176 6.319l11.257 8.156Z"
|
|
148
|
+
}
|
|
149
|
+
)
|
|
150
|
+
);
|
|
151
|
+
}
|
|
152
|
+
);
|
|
153
|
+
IconAiCursor[iconSymbol] = true;
|
|
154
|
+
|
|
129
155
|
const IconAiText = forwardRef(
|
|
130
156
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
131
157
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -652,6 +678,32 @@ const IconArrowClockwiseDownRight = forwardRef(
|
|
|
652
678
|
);
|
|
653
679
|
IconArrowClockwiseDownRight[iconSymbol] = true;
|
|
654
680
|
|
|
681
|
+
const IconArrowClockwiseIntoRectangle = forwardRef(
|
|
682
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
683
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
684
|
+
return createElement(
|
|
685
|
+
StyledIcon,
|
|
686
|
+
{
|
|
687
|
+
...props,
|
|
688
|
+
debug,
|
|
689
|
+
"aria-hidden": true,
|
|
690
|
+
size,
|
|
691
|
+
viewBox: "0 0 24 24",
|
|
692
|
+
fill: "none",
|
|
693
|
+
ref: forwardRef2
|
|
694
|
+
},
|
|
695
|
+
/* @__PURE__ */ jsx(
|
|
696
|
+
"path",
|
|
697
|
+
{
|
|
698
|
+
fill: "currentColor",
|
|
699
|
+
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"
|
|
700
|
+
}
|
|
701
|
+
)
|
|
702
|
+
);
|
|
703
|
+
}
|
|
704
|
+
);
|
|
705
|
+
IconArrowClockwiseIntoRectangle[iconSymbol] = true;
|
|
706
|
+
|
|
655
707
|
const IconArrowClockwiseUpLeft = forwardRef(
|
|
656
708
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
657
709
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -1780,6 +1832,32 @@ const IconBarrel = forwardRef(
|
|
|
1780
1832
|
);
|
|
1781
1833
|
IconBarrel[iconSymbol] = true;
|
|
1782
1834
|
|
|
1835
|
+
const IconBear = forwardRef(
|
|
1836
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1837
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1838
|
+
return createElement(
|
|
1839
|
+
StyledIcon,
|
|
1840
|
+
{
|
|
1841
|
+
...props,
|
|
1842
|
+
debug,
|
|
1843
|
+
"aria-hidden": true,
|
|
1844
|
+
size,
|
|
1845
|
+
viewBox: "0 0 24 24",
|
|
1846
|
+
fill: "none",
|
|
1847
|
+
ref: forwardRef2
|
|
1848
|
+
},
|
|
1849
|
+
/* @__PURE__ */ jsx(
|
|
1850
|
+
"path",
|
|
1851
|
+
{
|
|
1852
|
+
fill: "currentColor",
|
|
1853
|
+
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"
|
|
1854
|
+
}
|
|
1855
|
+
)
|
|
1856
|
+
);
|
|
1857
|
+
}
|
|
1858
|
+
);
|
|
1859
|
+
IconBear[iconSymbol] = true;
|
|
1860
|
+
|
|
1783
1861
|
const IconBellSlash = forwardRef(
|
|
1784
1862
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1785
1863
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2374,6 +2452,34 @@ const IconCaptionHorizontal = forwardRef(
|
|
|
2374
2452
|
);
|
|
2375
2453
|
IconCaptionHorizontal[iconSymbol] = true;
|
|
2376
2454
|
|
|
2455
|
+
const IconCar = forwardRef(
|
|
2456
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2457
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
2458
|
+
return createElement(
|
|
2459
|
+
StyledIcon,
|
|
2460
|
+
{
|
|
2461
|
+
...props,
|
|
2462
|
+
debug,
|
|
2463
|
+
"aria-hidden": true,
|
|
2464
|
+
size,
|
|
2465
|
+
viewBox: "0 0 24 24",
|
|
2466
|
+
fill: "none",
|
|
2467
|
+
ref: forwardRef2
|
|
2468
|
+
},
|
|
2469
|
+
/* @__PURE__ */ jsx(
|
|
2470
|
+
"path",
|
|
2471
|
+
{
|
|
2472
|
+
fill: "currentColor",
|
|
2473
|
+
fillRule: "evenodd",
|
|
2474
|
+
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",
|
|
2475
|
+
clipRule: "evenodd"
|
|
2476
|
+
}
|
|
2477
|
+
)
|
|
2478
|
+
);
|
|
2479
|
+
}
|
|
2480
|
+
);
|
|
2481
|
+
IconCar[iconSymbol] = true;
|
|
2482
|
+
|
|
2377
2483
|
const IconCardCircles = forwardRef(
|
|
2378
2484
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2379
2485
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2530,6 +2636,84 @@ const IconChartBarY = forwardRef(
|
|
|
2530
2636
|
);
|
|
2531
2637
|
IconChartBarY[iconSymbol] = true;
|
|
2532
2638
|
|
|
2639
|
+
const IconChartLine = 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: "M22 22H3l-1-1V4h2v16h18v2ZM11.625 9.219l4.122 3.299 4.405-7.048 1.696 1.06-5 8-1.473.251-4.148-3.319-3.395 5.092-1.664-1.109 4-6 1.457-.226Z"
|
|
2658
|
+
}
|
|
2659
|
+
)
|
|
2660
|
+
);
|
|
2661
|
+
}
|
|
2662
|
+
);
|
|
2663
|
+
IconChartLine[iconSymbol] = true;
|
|
2664
|
+
|
|
2665
|
+
const IconChartNumber = forwardRef(
|
|
2666
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2667
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
2668
|
+
return createElement(
|
|
2669
|
+
StyledIcon,
|
|
2670
|
+
{
|
|
2671
|
+
...props,
|
|
2672
|
+
debug,
|
|
2673
|
+
"aria-hidden": true,
|
|
2674
|
+
size,
|
|
2675
|
+
viewBox: "0 0 24 24",
|
|
2676
|
+
fill: "none",
|
|
2677
|
+
ref: forwardRef2
|
|
2678
|
+
},
|
|
2679
|
+
/* @__PURE__ */ jsx(
|
|
2680
|
+
"path",
|
|
2681
|
+
{
|
|
2682
|
+
fill: "currentColor",
|
|
2683
|
+
d: "M5 9H3V7h2a2 2 0 0 1 2 2v8H5V9Zm5 0v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Zm3-6v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Z"
|
|
2684
|
+
}
|
|
2685
|
+
)
|
|
2686
|
+
);
|
|
2687
|
+
}
|
|
2688
|
+
);
|
|
2689
|
+
IconChartNumber[iconSymbol] = true;
|
|
2690
|
+
|
|
2691
|
+
const IconChartProgress = forwardRef(
|
|
2692
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2693
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
2694
|
+
return createElement(
|
|
2695
|
+
StyledIcon,
|
|
2696
|
+
{
|
|
2697
|
+
...props,
|
|
2698
|
+
debug,
|
|
2699
|
+
"aria-hidden": true,
|
|
2700
|
+
size,
|
|
2701
|
+
viewBox: "0 0 24 24",
|
|
2702
|
+
fill: "none",
|
|
2703
|
+
ref: forwardRef2
|
|
2704
|
+
},
|
|
2705
|
+
/* @__PURE__ */ jsx(
|
|
2706
|
+
"path",
|
|
2707
|
+
{
|
|
2708
|
+
fill: "currentColor",
|
|
2709
|
+
d: "M12.016 2A10 10 0 0 1 17 20.66l-1-1.732a8 8 0 1 0-8.022-.012l-1.004 1.729A10 10 0 0 1 12.016 2Zm2.57 5.586L16 9l-7 7-1.414-1.414 7-7ZM11 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5 5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"
|
|
2710
|
+
}
|
|
2711
|
+
)
|
|
2712
|
+
);
|
|
2713
|
+
}
|
|
2714
|
+
);
|
|
2715
|
+
IconChartProgress[iconSymbol] = true;
|
|
2716
|
+
|
|
2533
2717
|
const IconChatCheck = forwardRef(
|
|
2534
2718
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2535
2719
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -5204,6 +5388,32 @@ const IconDownload = forwardRef(
|
|
|
5204
5388
|
);
|
|
5205
5389
|
IconDownload[iconSymbol] = true;
|
|
5206
5390
|
|
|
5391
|
+
const IconDrinkBurger = forwardRef(
|
|
5392
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
5393
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5394
|
+
return createElement(
|
|
5395
|
+
StyledIcon,
|
|
5396
|
+
{
|
|
5397
|
+
...props,
|
|
5398
|
+
debug,
|
|
5399
|
+
"aria-hidden": true,
|
|
5400
|
+
size,
|
|
5401
|
+
viewBox: "0 0 24 24",
|
|
5402
|
+
fill: "none",
|
|
5403
|
+
ref: forwardRef2
|
|
5404
|
+
},
|
|
5405
|
+
/* @__PURE__ */ jsx(
|
|
5406
|
+
"path",
|
|
5407
|
+
{
|
|
5408
|
+
fill: "currentColor",
|
|
5409
|
+
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"
|
|
5410
|
+
}
|
|
5411
|
+
)
|
|
5412
|
+
);
|
|
5413
|
+
}
|
|
5414
|
+
);
|
|
5415
|
+
IconDrinkBurger[iconSymbol] = true;
|
|
5416
|
+
|
|
5207
5417
|
const IconEnvelope = forwardRef(
|
|
5208
5418
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
5209
5419
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6380,6 +6590,34 @@ const IconHeartFilled = forwardRef(
|
|
|
6380
6590
|
);
|
|
6381
6591
|
IconHeartFilled[iconSymbol] = true;
|
|
6382
6592
|
|
|
6593
|
+
const IconHeartMusicNote = forwardRef(
|
|
6594
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
6595
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
6596
|
+
return createElement(
|
|
6597
|
+
StyledIcon,
|
|
6598
|
+
{
|
|
6599
|
+
...props,
|
|
6600
|
+
debug,
|
|
6601
|
+
"aria-hidden": true,
|
|
6602
|
+
size,
|
|
6603
|
+
viewBox: "0 0 24 24",
|
|
6604
|
+
fill: "none",
|
|
6605
|
+
ref: forwardRef2
|
|
6606
|
+
},
|
|
6607
|
+
/* @__PURE__ */ jsx(
|
|
6608
|
+
"path",
|
|
6609
|
+
{
|
|
6610
|
+
fill: "currentColor",
|
|
6611
|
+
fillRule: "evenodd",
|
|
6612
|
+
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",
|
|
6613
|
+
clipRule: "evenodd"
|
|
6614
|
+
}
|
|
6615
|
+
)
|
|
6616
|
+
);
|
|
6617
|
+
}
|
|
6618
|
+
);
|
|
6619
|
+
IconHeartMusicNote[iconSymbol] = true;
|
|
6620
|
+
|
|
6383
6621
|
const IconHeart = forwardRef(
|
|
6384
6622
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6385
6623
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7584,9 +7822,7 @@ const IconMagnifyingGlassMinus = forwardRef(
|
|
|
7584
7822
|
"path",
|
|
7585
7823
|
{
|
|
7586
7824
|
fill: "currentColor",
|
|
7587
|
-
|
|
7588
|
-
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",
|
|
7589
|
-
clipRule: "evenodd"
|
|
7825
|
+
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"
|
|
7590
7826
|
}
|
|
7591
7827
|
)
|
|
7592
7828
|
);
|
|
@@ -7612,7 +7848,7 @@ const IconMagnifyingGlassPlus = forwardRef(
|
|
|
7612
7848
|
"path",
|
|
7613
7849
|
{
|
|
7614
7850
|
fill: "currentColor",
|
|
7615
|
-
d: "M3
|
|
7851
|
+
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"
|
|
7616
7852
|
}
|
|
7617
7853
|
)
|
|
7618
7854
|
);
|
|
@@ -8628,6 +8864,34 @@ const IconOffice = forwardRef(
|
|
|
8628
8864
|
);
|
|
8629
8865
|
IconOffice[iconSymbol] = true;
|
|
8630
8866
|
|
|
8867
|
+
const IconOrbitDouble = forwardRef(
|
|
8868
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
8869
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
8870
|
+
return createElement(
|
|
8871
|
+
StyledIcon,
|
|
8872
|
+
{
|
|
8873
|
+
...props,
|
|
8874
|
+
debug,
|
|
8875
|
+
"aria-hidden": true,
|
|
8876
|
+
size,
|
|
8877
|
+
viewBox: "0 0 24 24",
|
|
8878
|
+
fill: "none",
|
|
8879
|
+
ref: forwardRef2
|
|
8880
|
+
},
|
|
8881
|
+
/* @__PURE__ */ jsx(
|
|
8882
|
+
"path",
|
|
8883
|
+
{
|
|
8884
|
+
fill: "currentColor",
|
|
8885
|
+
fillRule: "evenodd",
|
|
8886
|
+
d: "M12.02 4.57c3.135-1.695 6.172-1.934 7.78-.327 1.606 1.607 1.365 4.642-.33 7.777 1.696 3.136 1.936 6.172.329 7.779-1.608 1.607-4.644 1.367-7.779-.328-3.135 1.694-6.17 1.934-7.777.328-1.607-1.607-1.368-4.644.327-7.779-1.695-3.134-1.934-6.17-.327-7.777 1.607-1.607 4.642-1.368 7.777.327ZM5.832 14a9.91 9.91 0 0 0-.393 1.085c-.552 1.878-.193 2.888.218 3.3.411.411 1.42.77 3.3.217.35-.103.712-.235 1.084-.393a19.724 19.724 0 0 1-2.263-1.946 19.5 19.5 0 0 1-1.946-2.262Zm12.377 0a19.707 19.707 0 0 1-1.946 2.263c-.729.73-1.49 1.379-2.262 1.946.372.158.734.29 1.084.393 1.879.553 2.888.194 3.3-.218.41-.41.77-1.42.217-3.3a9.914 9.914 0 0 0-.393-1.083ZM12.02 6.895a17.245 17.245 0 0 0-2.827 2.298 17.25 17.25 0 0 0-2.299 2.828c.61.947 1.377 1.909 2.298 2.83.92.92 1.882 1.686 2.828 2.296a17.236 17.236 0 0 0 2.83-2.297c.92-.92 1.686-1.883 2.296-2.829a17.243 17.243 0 0 0-2.297-2.828 17.238 17.238 0 0 0-2.829-2.298ZM8.957 5.44c-1.88-.552-2.889-.193-3.3.218-.412.411-.77 1.42-.218 3.3.103.35.234.712.393 1.084a19.72 19.72 0 0 1 1.946-2.263c.73-.73 1.491-1.38 2.263-1.946a9.898 9.898 0 0 0-1.084-.393Zm9.428.218c-.411-.411-1.421-.77-3.3-.218A9.9 9.9 0 0 0 14 5.832a19.714 19.714 0 0 1 2.262 1.946 19.73 19.73 0 0 1 1.946 2.262c.158-.372.29-.734.393-1.083.553-1.879.195-2.888-.217-3.3Z",
|
|
8887
|
+
clipRule: "evenodd"
|
|
8888
|
+
}
|
|
8889
|
+
)
|
|
8890
|
+
);
|
|
8891
|
+
}
|
|
8892
|
+
);
|
|
8893
|
+
IconOrbitDouble[iconSymbol] = true;
|
|
8894
|
+
|
|
8631
8895
|
const IconOrgChart = forwardRef(
|
|
8632
8896
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
8633
8897
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -9900,7 +10164,7 @@ const IconProtoRadio = forwardRef(
|
|
|
9900
10164
|
"path",
|
|
9901
10165
|
{
|
|
9902
10166
|
fill: "currentColor",
|
|
9903
|
-
d: "
|
|
10167
|
+
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"
|
|
9904
10168
|
}
|
|
9905
10169
|
)
|
|
9906
10170
|
);
|
|
@@ -12344,6 +12608,32 @@ const IconSquareLineSquareDashed = forwardRef(
|
|
|
12344
12608
|
);
|
|
12345
12609
|
IconSquareLineSquareDashed[iconSymbol] = true;
|
|
12346
12610
|
|
|
12611
|
+
const IconSquarePencil = forwardRef(
|
|
12612
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
12613
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
12614
|
+
return createElement(
|
|
12615
|
+
StyledIcon,
|
|
12616
|
+
{
|
|
12617
|
+
...props,
|
|
12618
|
+
debug,
|
|
12619
|
+
"aria-hidden": true,
|
|
12620
|
+
size,
|
|
12621
|
+
viewBox: "0 0 24 24",
|
|
12622
|
+
fill: "none",
|
|
12623
|
+
ref: forwardRef2
|
|
12624
|
+
},
|
|
12625
|
+
/* @__PURE__ */ jsx(
|
|
12626
|
+
"path",
|
|
12627
|
+
{
|
|
12628
|
+
fill: "currentColor",
|
|
12629
|
+
d: "M3 18V6a3 3 0 0 1 3-3h7v2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2v7a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3ZM18.543 1.543a2.768 2.768 0 1 1 3.914 3.914l-5.839 5.839-3.422.684-1.176-1.176.684-3.422 5.839-5.839Zm2.5 1.414c-.3-.3-.786-.3-1.086 0l-5.411 5.41-.272 1.358 1.358-.272 5.411-5.41c.3-.3.3-.786 0-1.086Z"
|
|
12630
|
+
}
|
|
12631
|
+
)
|
|
12632
|
+
);
|
|
12633
|
+
}
|
|
12634
|
+
);
|
|
12635
|
+
IconSquarePencil[iconSymbol] = true;
|
|
12636
|
+
|
|
12347
12637
|
const IconSquareRounded = forwardRef(
|
|
12348
12638
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
12349
12639
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -13424,6 +13714,34 @@ const IconTasks = forwardRef(
|
|
|
13424
13714
|
);
|
|
13425
13715
|
IconTasks[iconSymbol] = true;
|
|
13426
13716
|
|
|
13717
|
+
const IconTennisBall = forwardRef(
|
|
13718
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
13719
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
13720
|
+
return createElement(
|
|
13721
|
+
StyledIcon,
|
|
13722
|
+
{
|
|
13723
|
+
...props,
|
|
13724
|
+
debug,
|
|
13725
|
+
"aria-hidden": true,
|
|
13726
|
+
size,
|
|
13727
|
+
viewBox: "0 0 24 24",
|
|
13728
|
+
fill: "none",
|
|
13729
|
+
ref: forwardRef2
|
|
13730
|
+
},
|
|
13731
|
+
/* @__PURE__ */ jsx(
|
|
13732
|
+
"path",
|
|
13733
|
+
{
|
|
13734
|
+
fill: "currentColor",
|
|
13735
|
+
fillRule: "evenodd",
|
|
13736
|
+
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",
|
|
13737
|
+
clipRule: "evenodd"
|
|
13738
|
+
}
|
|
13739
|
+
)
|
|
13740
|
+
);
|
|
13741
|
+
}
|
|
13742
|
+
);
|
|
13743
|
+
IconTennisBall[iconSymbol] = true;
|
|
13744
|
+
|
|
13427
13745
|
const IconTextAColorSelection = forwardRef(
|
|
13428
13746
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
13429
13747
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15406,5 +15724,5 @@ const IconWifi = forwardRef(
|
|
|
15406
15724
|
);
|
|
15407
15725
|
IconWifi[iconSymbol] = true;
|
|
15408
15726
|
|
|
15409
|
-
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, IconBoxCaptionsFilled, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, 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, 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, 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, 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 };
|
|
15727
|
+
export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiCursor, 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, IconChartLine, IconChartNumber, IconChartProgress, 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, IconOrbitDouble, 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, IconSquarePencil, 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 };
|
|
15410
15728
|
//# sourceMappingURL=module.js.map
|