@yoroll/react-icon 0.0.23 → 0.0.24
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/index.cjs +753 -615
- package/dist/index.iife.js +744 -615
- package/dist/index.iife.min.js +5 -5
- package/dist/index.js +965 -818
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.js +2 -2
- package/dist/types/components/Appfeed.d.ts +4 -0
- package/dist/types/components/AppfeedFilled.d.ts +4 -0
- package/dist/types/components/Comment.d.ts +4 -0
- package/dist/types/components/Invitefriends.d.ts +4 -0
- package/dist/types/components/LikeFilled.d.ts +4 -0
- package/dist/types/components/Me.d.ts +4 -0
- package/dist/types/components/MeFilled.d.ts +4 -0
- package/dist/types/components/ModelClaudeFilled.d.ts +4 -0
- package/dist/types/components/Search.d.ts +4 -0
- package/dist/types/components/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @lineargame svg icons react v0.0.
|
|
1
|
+
/*! @lineargame svg icons react v0.0.24 */
|
|
2
2
|
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
@@ -29,6 +29,8 @@ __export(index_exports, {
|
|
|
29
29
|
IconAngleDown: () => AngleDown_default,
|
|
30
30
|
IconAngleright: () => Angleright_default,
|
|
31
31
|
IconAnnouncement: () => Announcement_default,
|
|
32
|
+
IconAppfeed: () => Appfeed_default,
|
|
33
|
+
IconAppfeedFilled: () => AppfeedFilled_default,
|
|
32
34
|
IconArtboard: () => Artboard_default,
|
|
33
35
|
IconAssets: () => Assets_default,
|
|
34
36
|
IconAssetsFilled: () => AssetsFilled_default,
|
|
@@ -51,6 +53,7 @@ __export(index_exports, {
|
|
|
51
53
|
IconClose: () => Close_default,
|
|
52
54
|
IconCollapsewindow: () => Collapsewindow_default,
|
|
53
55
|
IconCommand: () => Command_default,
|
|
56
|
+
IconComment: () => Comment_default,
|
|
54
57
|
IconCopy: () => Copy_default,
|
|
55
58
|
IconCopylink: () => Copylink_default,
|
|
56
59
|
IconCreateplan: () => Createplan_default,
|
|
@@ -123,11 +126,16 @@ __export(index_exports, {
|
|
|
123
126
|
IconImageLoadFailedFilled: () => ImageLoadFailedFilled_default,
|
|
124
127
|
IconInfo: () => Info_default,
|
|
125
128
|
IconInvitecode: () => Invitecode_default,
|
|
129
|
+
IconInvitefriends: () => Invitefriends_default,
|
|
126
130
|
IconLeftFilled: () => LeftFilled_default,
|
|
131
|
+
IconLikeFilled: () => LikeFilled_default,
|
|
127
132
|
IconLoading: () => Loading_default,
|
|
128
133
|
IconLogin: () => Login_default,
|
|
129
134
|
IconLogout: () => Logout_default,
|
|
130
135
|
IconMagic: () => Magic_default,
|
|
136
|
+
IconMe: () => Me_default,
|
|
137
|
+
IconMeFilled: () => MeFilled_default,
|
|
138
|
+
IconModelClaudeFilled: () => ModelClaudeFilled_default,
|
|
131
139
|
IconModelDeepmindFilled: () => ModelDeepmindFilled_default,
|
|
132
140
|
IconModelGeminiFilled: () => ModelGeminiFilled_default,
|
|
133
141
|
IconModelNanobananaLogoNomoFilled: () => ModelNanobananaLogoNomoFilled_default,
|
|
@@ -191,6 +199,7 @@ __export(index_exports, {
|
|
|
191
199
|
IconSceneNext: () => SceneNext_default,
|
|
192
200
|
IconScriptmode: () => Scriptmode_default,
|
|
193
201
|
IconScrolldown: () => Scrolldown_default,
|
|
202
|
+
IconSearch: () => Search_default,
|
|
194
203
|
IconSendrequest: () => Sendrequest_default,
|
|
195
204
|
IconSendup: () => Sendup_default,
|
|
196
205
|
IconSendup2: () => Sendup2_default,
|
|
@@ -461,8 +470,41 @@ var import_jsx_runtime16 = require("react/jsx-runtime"), IconAnnouncement = ({ s
|
|
|
461
470
|
}
|
|
462
471
|
) }), Announcement_default = IconAnnouncement;
|
|
463
472
|
|
|
473
|
+
// src/components/AppfeedFilled.tsx
|
|
474
|
+
var import_jsx_runtime17 = require("react/jsx-runtime"), IconAppfeedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
475
|
+
"path",
|
|
476
|
+
{
|
|
477
|
+
fill: fill || color || "currentColor",
|
|
478
|
+
d: "M22 3H2V21H22V3ZM9.75 7.5V16.5H11.25L16.5 12L11.25 7.5H9.75Z",
|
|
479
|
+
fillRule: "evenodd",
|
|
480
|
+
clipRule: "evenodd"
|
|
481
|
+
}
|
|
482
|
+
) }), AppfeedFilled_default = IconAppfeedFilled;
|
|
483
|
+
|
|
484
|
+
// src/components/Appfeed.tsx
|
|
485
|
+
var import_jsx_runtime18 = require("react/jsx-runtime"), IconAppfeed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
486
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
487
|
+
"path",
|
|
488
|
+
{
|
|
489
|
+
fill: stroke || color || "currentColor",
|
|
490
|
+
d: "M12 7.5H9V16.5H12L16.5 12L12 7.5ZM13.318 12L11.25 14.068V9.93198L13.318 12Z",
|
|
491
|
+
fillRule: "evenodd",
|
|
492
|
+
clipRule: "evenodd"
|
|
493
|
+
}
|
|
494
|
+
),
|
|
495
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
496
|
+
"path",
|
|
497
|
+
{
|
|
498
|
+
fill: stroke || color || "currentColor",
|
|
499
|
+
d: "M2 3H22V21H2V3ZM4.25 5.25H19.75V18.75H4.25V5.25Z",
|
|
500
|
+
fillRule: "evenodd",
|
|
501
|
+
clipRule: "evenodd"
|
|
502
|
+
}
|
|
503
|
+
)
|
|
504
|
+
] }), Appfeed_default = IconAppfeed;
|
|
505
|
+
|
|
464
506
|
// src/components/Artboard.tsx
|
|
465
|
-
var
|
|
507
|
+
var import_jsx_runtime19 = require("react/jsx-runtime"), IconArtboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
466
508
|
"path",
|
|
467
509
|
{
|
|
468
510
|
fill: stroke || color || "currentColor",
|
|
@@ -473,17 +515,17 @@ var import_jsx_runtime17 = require("react/jsx-runtime"), IconArtboard = ({ size,
|
|
|
473
515
|
) }), Artboard_default = IconArtboard;
|
|
474
516
|
|
|
475
517
|
// src/components/AssetsFilled.tsx
|
|
476
|
-
var
|
|
477
|
-
/* @__PURE__ */ (0,
|
|
478
|
-
/* @__PURE__ */ (0,
|
|
479
|
-
/* @__PURE__ */ (0,
|
|
518
|
+
var import_jsx_runtime20 = require("react/jsx-runtime"), IconAssetsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
519
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { fill: fill || color || "currentColor", d: "M19.5 0H4.5V3H19.5V0Z" }),
|
|
520
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { fill: fill || color || "currentColor", d: "M3 6H21V9H3V6Z" }),
|
|
521
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { fill: fill || color || "currentColor", d: "M1.5 12H22.5V22.5H1.5V12Z" })
|
|
480
522
|
] }), AssetsFilled_default = IconAssetsFilled;
|
|
481
523
|
|
|
482
524
|
// src/components/Assets.tsx
|
|
483
|
-
var
|
|
484
|
-
/* @__PURE__ */ (0,
|
|
485
|
-
/* @__PURE__ */ (0,
|
|
486
|
-
/* @__PURE__ */ (0,
|
|
525
|
+
var import_jsx_runtime21 = require("react/jsx-runtime"), IconAssets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
526
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { fill: stroke || color || "currentColor", d: "M19.5 0H4.5V2.25H19.5V0Z" }),
|
|
527
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { fill: stroke || color || "currentColor", d: "M3 5.25H21V7.5H3V5.25Z" }),
|
|
528
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
487
529
|
"path",
|
|
488
530
|
{
|
|
489
531
|
fill: stroke || color || "currentColor",
|
|
@@ -495,7 +537,7 @@ var import_jsx_runtime19 = require("react/jsx-runtime"), IconAssets = ({ size, w
|
|
|
495
537
|
] }), Assets_default = IconAssets;
|
|
496
538
|
|
|
497
539
|
// src/components/Autolayout.tsx
|
|
498
|
-
var
|
|
540
|
+
var import_jsx_runtime22 = require("react/jsx-runtime"), IconAutolayout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
499
541
|
"path",
|
|
500
542
|
{
|
|
501
543
|
fill: stroke || color || "currentColor",
|
|
@@ -504,8 +546,8 @@ var import_jsx_runtime20 = require("react/jsx-runtime"), IconAutolayout = ({ siz
|
|
|
504
546
|
) }), Autolayout_default = IconAutolayout;
|
|
505
547
|
|
|
506
548
|
// src/components/Backtoprojects.tsx
|
|
507
|
-
var
|
|
508
|
-
/* @__PURE__ */ (0,
|
|
549
|
+
var import_jsx_runtime23 = require("react/jsx-runtime"), IconBacktoprojects = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
550
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
509
551
|
"path",
|
|
510
552
|
{
|
|
511
553
|
fill: stroke || color || "currentColor",
|
|
@@ -514,7 +556,7 @@ var import_jsx_runtime21 = require("react/jsx-runtime"), IconBacktoprojects = ({
|
|
|
514
556
|
clipRule: "evenodd"
|
|
515
557
|
}
|
|
516
558
|
),
|
|
517
|
-
/* @__PURE__ */ (0,
|
|
559
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
518
560
|
"path",
|
|
519
561
|
{
|
|
520
562
|
fill: stroke || color || "currentColor",
|
|
@@ -523,7 +565,7 @@ var import_jsx_runtime21 = require("react/jsx-runtime"), IconBacktoprojects = ({
|
|
|
523
565
|
clipRule: "evenodd"
|
|
524
566
|
}
|
|
525
567
|
),
|
|
526
|
-
/* @__PURE__ */ (0,
|
|
568
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
527
569
|
"path",
|
|
528
570
|
{
|
|
529
571
|
fill: stroke || color || "currentColor",
|
|
@@ -532,7 +574,7 @@ var import_jsx_runtime21 = require("react/jsx-runtime"), IconBacktoprojects = ({
|
|
|
532
574
|
clipRule: "evenodd"
|
|
533
575
|
}
|
|
534
576
|
),
|
|
535
|
-
/* @__PURE__ */ (0,
|
|
577
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
536
578
|
"path",
|
|
537
579
|
{
|
|
538
580
|
fill: stroke || color || "currentColor",
|
|
@@ -544,7 +586,7 @@ var import_jsx_runtime21 = require("react/jsx-runtime"), IconBacktoprojects = ({
|
|
|
544
586
|
] }), Backtoprojects_default = IconBacktoprojects;
|
|
545
587
|
|
|
546
588
|
// src/components/Backward.tsx
|
|
547
|
-
var
|
|
589
|
+
var import_jsx_runtime24 = require("react/jsx-runtime"), IconBackward = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
548
590
|
"path",
|
|
549
591
|
{
|
|
550
592
|
fill: stroke || color || "currentColor",
|
|
@@ -553,7 +595,7 @@ var import_jsx_runtime22 = require("react/jsx-runtime"), IconBackward = ({ size,
|
|
|
553
595
|
) }), Backward_default = IconBackward;
|
|
554
596
|
|
|
555
597
|
// src/components/BatchShots.tsx
|
|
556
|
-
var
|
|
598
|
+
var import_jsx_runtime25 = require("react/jsx-runtime"), IconBatchShots = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
557
599
|
"path",
|
|
558
600
|
{
|
|
559
601
|
fill: stroke || color || "currentColor",
|
|
@@ -564,15 +606,15 @@ var import_jsx_runtime23 = require("react/jsx-runtime"), IconBatchShots = ({ siz
|
|
|
564
606
|
) }), BatchShots_default = IconBatchShots;
|
|
565
607
|
|
|
566
608
|
// src/components/Canvaposition.tsx
|
|
567
|
-
var
|
|
568
|
-
/* @__PURE__ */ (0,
|
|
609
|
+
var import_jsx_runtime26 = require("react/jsx-runtime"), IconCanvaposition = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
610
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
569
611
|
"path",
|
|
570
612
|
{
|
|
571
613
|
fill: stroke || color || "currentColor",
|
|
572
614
|
d: "M12 13.5C12.8284 13.5 13.5 12.8284 13.5 12C13.5 11.1716 12.8284 10.5 12 10.5C11.1716 10.5 10.5 11.1716 10.5 12C10.5 12.8284 11.1716 13.5 12 13.5Z"
|
|
573
615
|
}
|
|
574
616
|
),
|
|
575
|
-
/* @__PURE__ */ (0,
|
|
617
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
576
618
|
"path",
|
|
577
619
|
{
|
|
578
620
|
fill: stroke || color || "currentColor",
|
|
@@ -584,8 +626,8 @@ var import_jsx_runtime24 = require("react/jsx-runtime"), IconCanvaposition = ({
|
|
|
584
626
|
] }), Canvaposition_default = IconCanvaposition;
|
|
585
627
|
|
|
586
628
|
// src/components/Canvasframe.tsx
|
|
587
|
-
var
|
|
588
|
-
/* @__PURE__ */ (0,
|
|
629
|
+
var import_jsx_runtime27 = require("react/jsx-runtime"), IconCanvasframe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
630
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
589
631
|
"path",
|
|
590
632
|
{
|
|
591
633
|
fill: stroke || color || "currentColor",
|
|
@@ -594,7 +636,7 @@ var import_jsx_runtime25 = require("react/jsx-runtime"), IconCanvasframe = ({ si
|
|
|
594
636
|
clipRule: "evenodd"
|
|
595
637
|
}
|
|
596
638
|
),
|
|
597
|
-
/* @__PURE__ */ (0,
|
|
639
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
598
640
|
"path",
|
|
599
641
|
{
|
|
600
642
|
fill: stroke || color || "currentColor",
|
|
@@ -603,7 +645,7 @@ var import_jsx_runtime25 = require("react/jsx-runtime"), IconCanvasframe = ({ si
|
|
|
603
645
|
clipRule: "evenodd"
|
|
604
646
|
}
|
|
605
647
|
),
|
|
606
|
-
/* @__PURE__ */ (0,
|
|
648
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
607
649
|
"path",
|
|
608
650
|
{
|
|
609
651
|
fill: stroke || color || "currentColor",
|
|
@@ -612,7 +654,7 @@ var import_jsx_runtime25 = require("react/jsx-runtime"), IconCanvasframe = ({ si
|
|
|
612
654
|
clipRule: "evenodd"
|
|
613
655
|
}
|
|
614
656
|
),
|
|
615
|
-
/* @__PURE__ */ (0,
|
|
657
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
616
658
|
"path",
|
|
617
659
|
{
|
|
618
660
|
fill: stroke || color || "currentColor",
|
|
@@ -624,7 +666,7 @@ var import_jsx_runtime25 = require("react/jsx-runtime"), IconCanvasframe = ({ si
|
|
|
624
666
|
] }), Canvasframe_default = IconCanvasframe;
|
|
625
667
|
|
|
626
668
|
// src/components/Canvasmode.tsx
|
|
627
|
-
var
|
|
669
|
+
var import_jsx_runtime28 = require("react/jsx-runtime"), IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
628
670
|
"path",
|
|
629
671
|
{
|
|
630
672
|
fill: stroke || color || "currentColor",
|
|
@@ -635,7 +677,7 @@ var import_jsx_runtime26 = require("react/jsx-runtime"), IconCanvasmode = ({ siz
|
|
|
635
677
|
) }), Canvasmode_default = IconCanvasmode;
|
|
636
678
|
|
|
637
679
|
// src/components/CcgFilled.tsx
|
|
638
|
-
var
|
|
680
|
+
var import_jsx_runtime29 = require("react/jsx-runtime"), IconCcgFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
639
681
|
"path",
|
|
640
682
|
{
|
|
641
683
|
fill: fill || color || "currentColor",
|
|
@@ -646,7 +688,7 @@ var import_jsx_runtime27 = require("react/jsx-runtime"), IconCcgFilled = ({ size
|
|
|
646
688
|
) }), CcgFilled_default = IconCcgFilled;
|
|
647
689
|
|
|
648
690
|
// src/components/Ccg.tsx
|
|
649
|
-
var
|
|
691
|
+
var import_jsx_runtime30 = require("react/jsx-runtime"), IconCcg = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
650
692
|
"path",
|
|
651
693
|
{
|
|
652
694
|
fill: stroke || color || "currentColor",
|
|
@@ -657,29 +699,29 @@ var import_jsx_runtime28 = require("react/jsx-runtime"), IconCcg = ({ size, widt
|
|
|
657
699
|
) }), Ccg_default = IconCcg;
|
|
658
700
|
|
|
659
701
|
// src/components/Ccggame.tsx
|
|
660
|
-
var
|
|
661
|
-
/* @__PURE__ */ (0,
|
|
702
|
+
var import_jsx_runtime31 = require("react/jsx-runtime"), IconCcggame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
703
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
662
704
|
"path",
|
|
663
705
|
{
|
|
664
706
|
fill: stroke || color || "currentColor",
|
|
665
707
|
d: "M9.75 9.75C9.75 10.9926 8.74264 12 7.5 12C6.25736 12 5.25 10.9926 5.25 9.75C5.25 8.50736 6.25736 7.5 7.5 7.5C8.74264 7.5 9.75 8.50736 9.75 9.75Z"
|
|
666
708
|
}
|
|
667
709
|
),
|
|
668
|
-
/* @__PURE__ */ (0,
|
|
710
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
669
711
|
"path",
|
|
670
712
|
{
|
|
671
713
|
fill: stroke || color || "currentColor",
|
|
672
714
|
d: "M19.125 8.0625C19.125 8.78737 18.5374 9.375 17.8125 9.375C17.0876 9.375 16.5 8.78737 16.5 8.0625C16.5 7.33763 17.0876 6.75 17.8125 6.75C18.5374 6.75 19.125 7.33763 19.125 8.0625Z"
|
|
673
715
|
}
|
|
674
716
|
),
|
|
675
|
-
/* @__PURE__ */ (0,
|
|
717
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
676
718
|
"path",
|
|
677
719
|
{
|
|
678
720
|
fill: stroke || color || "currentColor",
|
|
679
721
|
d: "M16.3125 12.75C17.0374 12.75 17.625 12.1624 17.625 11.4375C17.625 10.7126 17.0374 10.125 16.3125 10.125C15.5876 10.125 15 10.7126 15 11.4375C15 12.1624 15.5876 12.75 16.3125 12.75Z"
|
|
680
722
|
}
|
|
681
723
|
),
|
|
682
|
-
/* @__PURE__ */ (0,
|
|
724
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
683
725
|
"path",
|
|
684
726
|
{
|
|
685
727
|
fill: stroke || color || "currentColor",
|
|
@@ -691,7 +733,7 @@ var import_jsx_runtime29 = require("react/jsx-runtime"), IconCcggame = ({ size,
|
|
|
691
733
|
] }), Ccggame_default = IconCcggame;
|
|
692
734
|
|
|
693
735
|
// src/components/Ccglanguage.tsx
|
|
694
|
-
var
|
|
736
|
+
var import_jsx_runtime32 = require("react/jsx-runtime"), IconCcglanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
695
737
|
"path",
|
|
696
738
|
{
|
|
697
739
|
fill: stroke || color || "currentColor",
|
|
@@ -700,7 +742,7 @@ var import_jsx_runtime30 = require("react/jsx-runtime"), IconCcglanguage = ({ si
|
|
|
700
742
|
) }), Ccglanguage_default = IconCcglanguage;
|
|
701
743
|
|
|
702
744
|
// src/components/Chaptercollapse.tsx
|
|
703
|
-
var
|
|
745
|
+
var import_jsx_runtime33 = require("react/jsx-runtime"), IconChaptercollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
704
746
|
"path",
|
|
705
747
|
{
|
|
706
748
|
fill: stroke || color || "currentColor",
|
|
@@ -711,7 +753,7 @@ var import_jsx_runtime31 = require("react/jsx-runtime"), IconChaptercollapse = (
|
|
|
711
753
|
) }), Chaptercollapse_default = IconChaptercollapse;
|
|
712
754
|
|
|
713
755
|
// src/components/Chapterexpand.tsx
|
|
714
|
-
var
|
|
756
|
+
var import_jsx_runtime34 = require("react/jsx-runtime"), IconChapterexpand = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
715
757
|
"path",
|
|
716
758
|
{
|
|
717
759
|
fill: stroke || color || "currentColor",
|
|
@@ -722,15 +764,15 @@ var import_jsx_runtime32 = require("react/jsx-runtime"), IconChapterexpand = ({
|
|
|
722
764
|
) }), Chapterexpand_default = IconChapterexpand;
|
|
723
765
|
|
|
724
766
|
// src/components/Chathistory.tsx
|
|
725
|
-
var
|
|
726
|
-
/* @__PURE__ */ (0,
|
|
767
|
+
var import_jsx_runtime35 = require("react/jsx-runtime"), IconChathistory = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
768
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
727
769
|
"path",
|
|
728
770
|
{
|
|
729
771
|
fill: stroke || color || "currentColor",
|
|
730
772
|
d: "M10.5 4.5V12.4926L15.7369 17.3267L17.2631 15.6733L12.75 11.5074V4.5H10.5Z"
|
|
731
773
|
}
|
|
732
774
|
),
|
|
733
|
-
/* @__PURE__ */ (0,
|
|
775
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
734
776
|
"path",
|
|
735
777
|
{
|
|
736
778
|
fill: stroke || color || "currentColor",
|
|
@@ -742,7 +784,7 @@ var import_jsx_runtime33 = require("react/jsx-runtime"), IconChathistory = ({ si
|
|
|
742
784
|
] }), Chathistory_default = IconChathistory;
|
|
743
785
|
|
|
744
786
|
// src/components/Check.tsx
|
|
745
|
-
var
|
|
787
|
+
var import_jsx_runtime36 = require("react/jsx-runtime"), IconCheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
746
788
|
"path",
|
|
747
789
|
{
|
|
748
790
|
fill: stroke || color || "currentColor",
|
|
@@ -751,7 +793,7 @@ var import_jsx_runtime34 = require("react/jsx-runtime"), IconCheck = ({ size, wi
|
|
|
751
793
|
) }), Check_default = IconCheck;
|
|
752
794
|
|
|
753
795
|
// src/components/CheckedFilled.tsx
|
|
754
|
-
var
|
|
796
|
+
var import_jsx_runtime37 = require("react/jsx-runtime"), IconCheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
755
797
|
"path",
|
|
756
798
|
{
|
|
757
799
|
fill: fill || color || "currentColor",
|
|
@@ -762,7 +804,7 @@ var import_jsx_runtime35 = require("react/jsx-runtime"), IconCheckedFilled = ({
|
|
|
762
804
|
) }), CheckedFilled_default = IconCheckedFilled;
|
|
763
805
|
|
|
764
806
|
// src/components/Close.tsx
|
|
765
|
-
var
|
|
807
|
+
var import_jsx_runtime38 = require("react/jsx-runtime"), IconClose = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
766
808
|
"path",
|
|
767
809
|
{
|
|
768
810
|
fill: stroke || color || "currentColor",
|
|
@@ -771,8 +813,8 @@ var import_jsx_runtime36 = require("react/jsx-runtime"), IconClose = ({ size, wi
|
|
|
771
813
|
) }), Close_default = IconClose;
|
|
772
814
|
|
|
773
815
|
// src/components/Collapsewindow.tsx
|
|
774
|
-
var
|
|
775
|
-
/* @__PURE__ */ (0,
|
|
816
|
+
var import_jsx_runtime39 = require("react/jsx-runtime"), IconCollapsewindow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
817
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
776
818
|
"path",
|
|
777
819
|
{
|
|
778
820
|
fill: stroke || color || "currentColor",
|
|
@@ -781,7 +823,7 @@ var import_jsx_runtime37 = require("react/jsx-runtime"), IconCollapsewindow = ({
|
|
|
781
823
|
clipRule: "evenodd"
|
|
782
824
|
}
|
|
783
825
|
),
|
|
784
|
-
/* @__PURE__ */ (0,
|
|
826
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
785
827
|
"path",
|
|
786
828
|
{
|
|
787
829
|
fill: stroke || color || "currentColor",
|
|
@@ -793,7 +835,7 @@ var import_jsx_runtime37 = require("react/jsx-runtime"), IconCollapsewindow = ({
|
|
|
793
835
|
] }), Collapsewindow_default = IconCollapsewindow;
|
|
794
836
|
|
|
795
837
|
// src/components/Command.tsx
|
|
796
|
-
var
|
|
838
|
+
var import_jsx_runtime40 = require("react/jsx-runtime"), IconCommand = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
797
839
|
"path",
|
|
798
840
|
{
|
|
799
841
|
fill: stroke || color || "currentColor",
|
|
@@ -801,10 +843,26 @@ var import_jsx_runtime38 = require("react/jsx-runtime"), IconCommand = ({ size,
|
|
|
801
843
|
}
|
|
802
844
|
) }), Command_default = IconCommand;
|
|
803
845
|
|
|
846
|
+
// src/components/Comment.tsx
|
|
847
|
+
var import_jsx_runtime41 = require("react/jsx-runtime"), IconComment = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
848
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 9.375H10.875V11.625H13.125V9.375Z" }),
|
|
849
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { fill: stroke || color || "currentColor", d: "M15.75 9.375H18V11.625H15.75V9.375Z" }),
|
|
850
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { fill: stroke || color || "currentColor", d: "M8.25 9.375H6V11.625H8.25V9.375Z" }),
|
|
851
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
852
|
+
"path",
|
|
853
|
+
{
|
|
854
|
+
fill: stroke || color || "currentColor",
|
|
855
|
+
d: "M16.5 19.5L12 24L7.5 19.5H0V1.5H24V19.5H16.5ZM12 20.818L8.43198 17.25H2.25V3.75H21.75V17.25H15.568L12 20.818Z",
|
|
856
|
+
fillRule: "evenodd",
|
|
857
|
+
clipRule: "evenodd"
|
|
858
|
+
}
|
|
859
|
+
)
|
|
860
|
+
] }), Comment_default = IconComment;
|
|
861
|
+
|
|
804
862
|
// src/components/Copy.tsx
|
|
805
|
-
var
|
|
806
|
-
/* @__PURE__ */ (0,
|
|
807
|
-
/* @__PURE__ */ (0,
|
|
863
|
+
var import_jsx_runtime42 = require("react/jsx-runtime"), IconCopy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
864
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { fill: stroke || color || "currentColor", d: "M12.75 2.25H2.25V12.75H6V15H0V0H15V6H12.75V2.25Z" }),
|
|
865
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
808
866
|
"path",
|
|
809
867
|
{
|
|
810
868
|
fill: stroke || color || "currentColor",
|
|
@@ -816,7 +874,7 @@ var import_jsx_runtime39 = require("react/jsx-runtime"), IconCopy = ({ size, wid
|
|
|
816
874
|
] }), Copy_default = IconCopy;
|
|
817
875
|
|
|
818
876
|
// src/components/Copylink.tsx
|
|
819
|
-
var
|
|
877
|
+
var import_jsx_runtime43 = require("react/jsx-runtime"), IconCopylink = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
|
|
820
878
|
"path",
|
|
821
879
|
{
|
|
822
880
|
fill: stroke || color || "currentColor",
|
|
@@ -827,7 +885,7 @@ var import_jsx_runtime40 = require("react/jsx-runtime"), IconCopylink = ({ size,
|
|
|
827
885
|
) }), Copylink_default = IconCopylink;
|
|
828
886
|
|
|
829
887
|
// src/components/Createplan.tsx
|
|
830
|
-
var
|
|
888
|
+
var import_jsx_runtime44 = require("react/jsx-runtime"), IconCreateplan = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
831
889
|
"path",
|
|
832
890
|
{
|
|
833
891
|
fill: stroke || color || "currentColor",
|
|
@@ -838,8 +896,8 @@ var import_jsx_runtime41 = require("react/jsx-runtime"), IconCreateplan = ({ siz
|
|
|
838
896
|
) }), Createplan_default = IconCreateplan;
|
|
839
897
|
|
|
840
898
|
// src/components/CreditFilled.tsx
|
|
841
|
-
var
|
|
842
|
-
/* @__PURE__ */ (0,
|
|
899
|
+
var import_jsx_runtime45 = require("react/jsx-runtime"), IconCreditFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
900
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("g", { clipPath: "url(#clip0_2_28)", children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
|
|
843
901
|
"path",
|
|
844
902
|
{
|
|
845
903
|
fill: fill || color || "currentColor",
|
|
@@ -848,11 +906,11 @@ var import_jsx_runtime42 = require("react/jsx-runtime"), IconCreditFilled = ({ s
|
|
|
848
906
|
clipRule: "evenodd"
|
|
849
907
|
}
|
|
850
908
|
) }),
|
|
851
|
-
/* @__PURE__ */ (0,
|
|
909
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("clipPath", { id: "clip0_2_28", children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
852
910
|
] }), CreditFilled_default = IconCreditFilled;
|
|
853
911
|
|
|
854
912
|
// src/components/Cursor.tsx
|
|
855
|
-
var
|
|
913
|
+
var import_jsx_runtime46 = require("react/jsx-runtime"), IconCursor = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
|
|
856
914
|
"path",
|
|
857
915
|
{
|
|
858
916
|
fill: stroke || color || "currentColor",
|
|
@@ -863,9 +921,9 @@ var import_jsx_runtime43 = require("react/jsx-runtime"), IconCursor = ({ size, w
|
|
|
863
921
|
) }), Cursor_default = IconCursor;
|
|
864
922
|
|
|
865
923
|
// src/components/DeleteSceneChoice.tsx
|
|
866
|
-
var
|
|
867
|
-
/* @__PURE__ */ (0,
|
|
868
|
-
/* @__PURE__ */ (0,
|
|
924
|
+
var import_jsx_runtime47 = require("react/jsx-runtime"), IconDeleteSceneChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
925
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: stroke || color || "currentColor", d: "M18 10.875H6V13.125H18V10.875Z" }),
|
|
926
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
|
|
869
927
|
"path",
|
|
870
928
|
{
|
|
871
929
|
fill: stroke || color || "currentColor",
|
|
@@ -877,9 +935,9 @@ var import_jsx_runtime44 = require("react/jsx-runtime"), IconDeleteSceneChoice =
|
|
|
877
935
|
] }), DeleteSceneChoice_default = IconDeleteSceneChoice;
|
|
878
936
|
|
|
879
937
|
// src/components/Delete.tsx
|
|
880
|
-
var
|
|
881
|
-
/* @__PURE__ */ (0,
|
|
882
|
-
/* @__PURE__ */ (0,
|
|
938
|
+
var import_jsx_runtime48 = require("react/jsx-runtime"), IconDelete = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
939
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 17.25V11.25H10.875V17.25H13.125Z" }),
|
|
940
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
|
|
883
941
|
"path",
|
|
884
942
|
{
|
|
885
943
|
fill: stroke || color || "currentColor",
|
|
@@ -891,7 +949,7 @@ var import_jsx_runtime45 = require("react/jsx-runtime"), IconDelete = ({ size, w
|
|
|
891
949
|
] }), Delete_default = IconDelete;
|
|
892
950
|
|
|
893
951
|
// src/components/DownFilled.tsx
|
|
894
|
-
var
|
|
952
|
+
var import_jsx_runtime49 = require("react/jsx-runtime"), IconDownFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
|
|
895
953
|
"path",
|
|
896
954
|
{
|
|
897
955
|
fill: fill || color || "currentColor",
|
|
@@ -902,7 +960,7 @@ var import_jsx_runtime46 = require("react/jsx-runtime"), IconDownFilled = ({ siz
|
|
|
902
960
|
) }), DownFilled_default = IconDownFilled;
|
|
903
961
|
|
|
904
962
|
// src/components/DownleftFilled.tsx
|
|
905
|
-
var
|
|
963
|
+
var import_jsx_runtime50 = require("react/jsx-runtime"), IconDownleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
|
|
906
964
|
"path",
|
|
907
965
|
{
|
|
908
966
|
fill: fill || color || "currentColor",
|
|
@@ -913,15 +971,15 @@ var import_jsx_runtime47 = require("react/jsx-runtime"), IconDownleftFilled = ({
|
|
|
913
971
|
) }), DownleftFilled_default = IconDownleftFilled;
|
|
914
972
|
|
|
915
973
|
// src/components/Download.tsx
|
|
916
|
-
var
|
|
917
|
-
/* @__PURE__ */ (0,
|
|
974
|
+
var import_jsx_runtime51 = require("react/jsx-runtime"), IconDownload = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
975
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
918
976
|
"path",
|
|
919
977
|
{
|
|
920
978
|
fill: stroke || color || "currentColor",
|
|
921
979
|
d: "M22.5 24L22.5 13.5H20.25V21.75L3.75 21.75L3.75 13.5H1.5L1.5 24L22.5 24Z"
|
|
922
980
|
}
|
|
923
981
|
),
|
|
924
|
-
/* @__PURE__ */ (0,
|
|
982
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
|
|
925
983
|
"path",
|
|
926
984
|
{
|
|
927
985
|
fill: stroke || color || "currentColor",
|
|
@@ -933,7 +991,7 @@ var import_jsx_runtime48 = require("react/jsx-runtime"), IconDownload = ({ size,
|
|
|
933
991
|
] }), Download_default = IconDownload;
|
|
934
992
|
|
|
935
993
|
// src/components/DownrightFilled.tsx
|
|
936
|
-
var
|
|
994
|
+
var import_jsx_runtime52 = require("react/jsx-runtime"), IconDownrightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
937
995
|
"path",
|
|
938
996
|
{
|
|
939
997
|
fill: fill || color || "currentColor",
|
|
@@ -944,18 +1002,18 @@ var import_jsx_runtime49 = require("react/jsx-runtime"), IconDownrightFilled = (
|
|
|
944
1002
|
) }), DownrightFilled_default = IconDownrightFilled;
|
|
945
1003
|
|
|
946
1004
|
// src/components/DraghandleFilled.tsx
|
|
947
|
-
var
|
|
948
|
-
/* @__PURE__ */ (0,
|
|
949
|
-
/* @__PURE__ */ (0,
|
|
950
|
-
/* @__PURE__ */ (0,
|
|
951
|
-
/* @__PURE__ */ (0,
|
|
952
|
-
/* @__PURE__ */ (0,
|
|
953
|
-
/* @__PURE__ */ (0,
|
|
1005
|
+
var import_jsx_runtime53 = require("react/jsx-runtime"), IconDraghandleFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1006
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: fill || color || "currentColor", d: "M18 7.19999V2.39999H13.2V7.19999L18 7.19999Z" }),
|
|
1007
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: fill || color || "currentColor", d: "M18 9.59999V14.4H13.2L13.2 9.59999H18Z" }),
|
|
1008
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: fill || color || "currentColor", d: "M10.8 9.59999V14.4H6V9.59999H10.8Z" }),
|
|
1009
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: fill || color || "currentColor", d: "M10.8 2.39999V7.19999L6 7.19999V2.39999H10.8Z" }),
|
|
1010
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: fill || color || "currentColor", d: "M18 21.6V16.8H13.2V21.6H18Z" }),
|
|
1011
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: fill || color || "currentColor", d: "M10.8 16.8V21.6H6V16.8H10.8Z" })
|
|
954
1012
|
] }), DraghandleFilled_default = IconDraghandleFilled;
|
|
955
1013
|
|
|
956
1014
|
// src/components/Edit.tsx
|
|
957
|
-
var
|
|
958
|
-
/* @__PURE__ */ (0,
|
|
1015
|
+
var import_jsx_runtime54 = require("react/jsx-runtime"), IconEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1016
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
959
1017
|
"path",
|
|
960
1018
|
{
|
|
961
1019
|
fill: stroke || color || "currentColor",
|
|
@@ -964,7 +1022,7 @@ var import_jsx_runtime51 = require("react/jsx-runtime"), IconEdit = ({ size, wid
|
|
|
964
1022
|
clipRule: "evenodd"
|
|
965
1023
|
}
|
|
966
1024
|
),
|
|
967
|
-
/* @__PURE__ */ (0,
|
|
1025
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
968
1026
|
"path",
|
|
969
1027
|
{
|
|
970
1028
|
fill: stroke || color || "currentColor",
|
|
@@ -974,7 +1032,7 @@ var import_jsx_runtime51 = require("react/jsx-runtime"), IconEdit = ({ size, wid
|
|
|
974
1032
|
] }), Edit_default = IconEdit;
|
|
975
1033
|
|
|
976
1034
|
// src/components/Element.tsx
|
|
977
|
-
var
|
|
1035
|
+
var import_jsx_runtime55 = require("react/jsx-runtime"), IconElement = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
|
|
978
1036
|
"path",
|
|
979
1037
|
{
|
|
980
1038
|
fill: stroke || color || "currentColor",
|
|
@@ -985,8 +1043,8 @@ var import_jsx_runtime52 = require("react/jsx-runtime"), IconElement = ({ size,
|
|
|
985
1043
|
) }), Element_default = IconElement;
|
|
986
1044
|
|
|
987
1045
|
// src/components/Expandwindow.tsx
|
|
988
|
-
var
|
|
989
|
-
/* @__PURE__ */ (0,
|
|
1046
|
+
var import_jsx_runtime56 = require("react/jsx-runtime"), IconExpandwindow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1047
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
990
1048
|
"path",
|
|
991
1049
|
{
|
|
992
1050
|
fill: stroke || color || "currentColor",
|
|
@@ -995,7 +1053,7 @@ var import_jsx_runtime53 = require("react/jsx-runtime"), IconExpandwindow = ({ s
|
|
|
995
1053
|
clipRule: "evenodd"
|
|
996
1054
|
}
|
|
997
1055
|
),
|
|
998
|
-
/* @__PURE__ */ (0,
|
|
1056
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
999
1057
|
"path",
|
|
1000
1058
|
{
|
|
1001
1059
|
fill: stroke || color || "currentColor",
|
|
@@ -1007,7 +1065,7 @@ var import_jsx_runtime53 = require("react/jsx-runtime"), IconExpandwindow = ({ s
|
|
|
1007
1065
|
] }), Expandwindow_default = IconExpandwindow;
|
|
1008
1066
|
|
|
1009
1067
|
// src/components/FavoriteFilled.tsx
|
|
1010
|
-
var
|
|
1068
|
+
var import_jsx_runtime57 = require("react/jsx-runtime"), IconFavoriteFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
1011
1069
|
"path",
|
|
1012
1070
|
{
|
|
1013
1071
|
fill: fill || color || "currentColor",
|
|
@@ -1016,7 +1074,7 @@ var import_jsx_runtime54 = require("react/jsx-runtime"), IconFavoriteFilled = ({
|
|
|
1016
1074
|
) }), FavoriteFilled_default = IconFavoriteFilled;
|
|
1017
1075
|
|
|
1018
1076
|
// src/components/Favorite.tsx
|
|
1019
|
-
var
|
|
1077
|
+
var import_jsx_runtime58 = require("react/jsx-runtime"), IconFavorite = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
1020
1078
|
"path",
|
|
1021
1079
|
{
|
|
1022
1080
|
fill: stroke || color || "currentColor",
|
|
@@ -1027,7 +1085,7 @@ var import_jsx_runtime55 = require("react/jsx-runtime"), IconFavorite = ({ size,
|
|
|
1027
1085
|
) }), Favorite_default = IconFavorite;
|
|
1028
1086
|
|
|
1029
1087
|
// src/components/FeedbackFailFilled.tsx
|
|
1030
|
-
var
|
|
1088
|
+
var import_jsx_runtime59 = require("react/jsx-runtime"), IconFeedbackFailFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
1031
1089
|
"path",
|
|
1032
1090
|
{
|
|
1033
1091
|
fill: fill || color || "currentColor",
|
|
@@ -1038,7 +1096,7 @@ var import_jsx_runtime56 = require("react/jsx-runtime"), IconFeedbackFailFilled
|
|
|
1038
1096
|
) }), FeedbackFailFilled_default = IconFeedbackFailFilled;
|
|
1039
1097
|
|
|
1040
1098
|
// src/components/FeedbackPendingFilled.tsx
|
|
1041
|
-
var
|
|
1099
|
+
var import_jsx_runtime60 = require("react/jsx-runtime"), IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
1042
1100
|
"path",
|
|
1043
1101
|
{
|
|
1044
1102
|
fill: fill || color || "currentColor",
|
|
@@ -1049,7 +1107,7 @@ var import_jsx_runtime57 = require("react/jsx-runtime"), IconFeedbackPendingFill
|
|
|
1049
1107
|
) }), FeedbackPendingFilled_default = IconFeedbackPendingFilled;
|
|
1050
1108
|
|
|
1051
1109
|
// src/components/FeedbackProblemFilled.tsx
|
|
1052
|
-
var
|
|
1110
|
+
var import_jsx_runtime61 = require("react/jsx-runtime"), IconFeedbackProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
1053
1111
|
"path",
|
|
1054
1112
|
{
|
|
1055
1113
|
fill: fill || color || "currentColor",
|
|
@@ -1060,29 +1118,29 @@ var import_jsx_runtime58 = require("react/jsx-runtime"), IconFeedbackProblemFill
|
|
|
1060
1118
|
) }), FeedbackProblemFilled_default = IconFeedbackProblemFilled;
|
|
1061
1119
|
|
|
1062
1120
|
// src/components/FeedbackProblem.tsx
|
|
1063
|
-
var
|
|
1064
|
-
/* @__PURE__ */ (0,
|
|
1121
|
+
var import_jsx_runtime62 = require("react/jsx-runtime"), IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1122
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
1065
1123
|
"path",
|
|
1066
1124
|
{
|
|
1067
1125
|
fill: stroke || color || "currentColor",
|
|
1068
1126
|
d: "M8.25 10.5C9.07843 10.5 9.75 9.82843 9.75 9C9.75 8.17157 9.07843 7.5 8.25 7.5C7.42157 7.5 6.75 8.17157 6.75 9C6.75 9.82843 7.42157 10.5 8.25 10.5Z"
|
|
1069
1127
|
}
|
|
1070
1128
|
),
|
|
1071
|
-
/* @__PURE__ */ (0,
|
|
1129
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
1072
1130
|
"path",
|
|
1073
1131
|
{
|
|
1074
1132
|
fill: stroke || color || "currentColor",
|
|
1075
1133
|
d: "M17.25 9C17.25 9.82843 16.5784 10.5 15.75 10.5C14.9216 10.5 14.25 9.82843 14.25 9C14.25 8.17157 14.9216 7.5 15.75 7.5C16.5784 7.5 17.25 8.17157 17.25 9Z"
|
|
1076
1134
|
}
|
|
1077
1135
|
),
|
|
1078
|
-
/* @__PURE__ */ (0,
|
|
1136
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
1079
1137
|
"path",
|
|
1080
1138
|
{
|
|
1081
1139
|
fill: stroke || color || "currentColor",
|
|
1082
1140
|
d: "M12 17.25C13.2426 17.25 14.25 16.2426 14.25 15C14.25 13.7574 13.2426 12.75 12 12.75C10.7574 12.75 9.75 13.7574 9.75 15C9.75 16.2426 10.7574 17.25 12 17.25Z"
|
|
1083
1141
|
}
|
|
1084
1142
|
),
|
|
1085
|
-
/* @__PURE__ */ (0,
|
|
1143
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
1086
1144
|
"path",
|
|
1087
1145
|
{
|
|
1088
1146
|
fill: stroke || color || "currentColor",
|
|
@@ -1094,8 +1152,8 @@ var import_jsx_runtime59 = require("react/jsx-runtime"), IconFeedbackProblem = (
|
|
|
1094
1152
|
] }), FeedbackProblem_default = IconFeedbackProblem;
|
|
1095
1153
|
|
|
1096
1154
|
// src/components/FiletypeImageFilled.tsx
|
|
1097
|
-
var
|
|
1098
|
-
/* @__PURE__ */ (0,
|
|
1155
|
+
var import_jsx_runtime63 = require("react/jsx-runtime"), IconFiletypeImageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1156
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
1099
1157
|
"path",
|
|
1100
1158
|
{
|
|
1101
1159
|
fill: "#2E2E2E",
|
|
@@ -1103,21 +1161,21 @@ var import_jsx_runtime60 = require("react/jsx-runtime"), IconFiletypeImageFilled
|
|
|
1103
1161
|
style: { opacity: 0.3 }
|
|
1104
1162
|
}
|
|
1105
1163
|
) }),
|
|
1106
|
-
/* @__PURE__ */ (0,
|
|
1164
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
1107
1165
|
"path",
|
|
1108
1166
|
{
|
|
1109
1167
|
fill: "#2E2E2E",
|
|
1110
1168
|
d: "M19.9993 6.2882H17.59C17.058 6.28768 16.548 6.07629 16.1718 5.70045C15.7957 5.3246 15.5841 4.81499 15.5836 4.28346V1.5L19.9993 6.2882Z"
|
|
1111
1169
|
}
|
|
1112
1170
|
),
|
|
1113
|
-
/* @__PURE__ */ (0,
|
|
1171
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
1114
1172
|
"path",
|
|
1115
1173
|
{
|
|
1116
1174
|
fill: "#2E2E2E",
|
|
1117
1175
|
d: "M10.5938 11.0625C11.0252 11.0625 11.375 10.7127 11.375 10.2812C11.375 9.84978 11.0252 9.5 10.5938 9.5C10.1623 9.5 9.8125 9.84978 9.8125 10.2812C9.8125 10.7127 10.1623 11.0625 10.5938 11.0625Z"
|
|
1118
1176
|
}
|
|
1119
1177
|
),
|
|
1120
|
-
/* @__PURE__ */ (0,
|
|
1178
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
1121
1179
|
"path",
|
|
1122
1180
|
{
|
|
1123
1181
|
fill: "#2E2E2E",
|
|
@@ -1129,8 +1187,8 @@ var import_jsx_runtime60 = require("react/jsx-runtime"), IconFiletypeImageFilled
|
|
|
1129
1187
|
] }), FiletypeImageFilled_default = IconFiletypeImageFilled;
|
|
1130
1188
|
|
|
1131
1189
|
// src/components/FiletypePdfFilled.tsx
|
|
1132
|
-
var
|
|
1133
|
-
/* @__PURE__ */ (0,
|
|
1190
|
+
var import_jsx_runtime64 = require("react/jsx-runtime"), IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1191
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
1134
1192
|
"path",
|
|
1135
1193
|
{
|
|
1136
1194
|
fill: "#FF3E4C",
|
|
@@ -1138,14 +1196,14 @@ var import_jsx_runtime61 = require("react/jsx-runtime"), IconFiletypePdfFilled =
|
|
|
1138
1196
|
style: { opacity: 0.3 }
|
|
1139
1197
|
}
|
|
1140
1198
|
) }),
|
|
1141
|
-
/* @__PURE__ */ (0,
|
|
1199
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
1142
1200
|
"path",
|
|
1143
1201
|
{
|
|
1144
1202
|
fill: "#FF3E4C",
|
|
1145
1203
|
d: "M19.9993 6.2882H17.59C17.058 6.28768 16.548 6.07629 16.1718 5.70045C15.7957 5.3246 15.5841 4.81499 15.5836 4.28346V1.5L19.9993 6.2882Z"
|
|
1146
1204
|
}
|
|
1147
1205
|
),
|
|
1148
|
-
/* @__PURE__ */ (0,
|
|
1206
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
1149
1207
|
"path",
|
|
1150
1208
|
{
|
|
1151
1209
|
fill: "#FF3E4C",
|
|
@@ -1155,8 +1213,8 @@ var import_jsx_runtime61 = require("react/jsx-runtime"), IconFiletypePdfFilled =
|
|
|
1155
1213
|
] }), FiletypePdfFilled_default = IconFiletypePdfFilled;
|
|
1156
1214
|
|
|
1157
1215
|
// src/components/FiletypePdfLumiFilled.tsx
|
|
1158
|
-
var
|
|
1159
|
-
/* @__PURE__ */ (0,
|
|
1216
|
+
var import_jsx_runtime65 = require("react/jsx-runtime"), IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1217
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
1160
1218
|
"path",
|
|
1161
1219
|
{
|
|
1162
1220
|
fill: "#2E2E2E",
|
|
@@ -1164,14 +1222,14 @@ var import_jsx_runtime62 = require("react/jsx-runtime"), IconFiletypePdfLumiFill
|
|
|
1164
1222
|
style: { opacity: 0.3 }
|
|
1165
1223
|
}
|
|
1166
1224
|
) }),
|
|
1167
|
-
/* @__PURE__ */ (0,
|
|
1225
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
1168
1226
|
"path",
|
|
1169
1227
|
{
|
|
1170
1228
|
fill: "#2E2E2E",
|
|
1171
1229
|
d: "M19.9993 6.2882H17.59C17.058 6.28768 16.548 6.07629 16.1718 5.70045C15.7957 5.3246 15.5841 4.81499 15.5836 4.28346V1.5L19.9993 6.2882Z"
|
|
1172
1230
|
}
|
|
1173
1231
|
),
|
|
1174
|
-
/* @__PURE__ */ (0,
|
|
1232
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
1175
1233
|
"path",
|
|
1176
1234
|
{
|
|
1177
1235
|
fill: "#2E2E2E",
|
|
@@ -1181,8 +1239,8 @@ var import_jsx_runtime62 = require("react/jsx-runtime"), IconFiletypePdfLumiFill
|
|
|
1181
1239
|
] }), FiletypePdfLumiFilled_default = IconFiletypePdfLumiFilled;
|
|
1182
1240
|
|
|
1183
1241
|
// src/components/FiletypeTxtFilled.tsx
|
|
1184
|
-
var
|
|
1185
|
-
/* @__PURE__ */ (0,
|
|
1242
|
+
var import_jsx_runtime66 = require("react/jsx-runtime"), IconFiletypeTxtFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1243
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
1186
1244
|
"path",
|
|
1187
1245
|
{
|
|
1188
1246
|
fill: "#005FAD",
|
|
@@ -1190,11 +1248,11 @@ var import_jsx_runtime63 = require("react/jsx-runtime"), IconFiletypeTxtFilled =
|
|
|
1190
1248
|
style: { opacity: 0.3 }
|
|
1191
1249
|
}
|
|
1192
1250
|
) }),
|
|
1193
|
-
/* @__PURE__ */ (0,
|
|
1194
|
-
/* @__PURE__ */ (0,
|
|
1195
|
-
/* @__PURE__ */ (0,
|
|
1196
|
-
/* @__PURE__ */ (0,
|
|
1197
|
-
/* @__PURE__ */ (0,
|
|
1251
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: "#005FAD", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
1252
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: "#005FAD", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
1253
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: "#005FAD", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
1254
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { fill: "#005FAD", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
1255
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
1198
1256
|
"path",
|
|
1199
1257
|
{
|
|
1200
1258
|
fill: "#005FAD",
|
|
@@ -1204,8 +1262,8 @@ var import_jsx_runtime63 = require("react/jsx-runtime"), IconFiletypeTxtFilled =
|
|
|
1204
1262
|
] }), FiletypeTxtFilled_default = IconFiletypeTxtFilled;
|
|
1205
1263
|
|
|
1206
1264
|
// src/components/FiletypeTxtLumiFilled.tsx
|
|
1207
|
-
var
|
|
1208
|
-
/* @__PURE__ */ (0,
|
|
1265
|
+
var import_jsx_runtime67 = require("react/jsx-runtime"), IconFiletypeTxtLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1266
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
1209
1267
|
"path",
|
|
1210
1268
|
{
|
|
1211
1269
|
fill: "#2E2E2E",
|
|
@@ -1213,11 +1271,11 @@ var import_jsx_runtime64 = require("react/jsx-runtime"), IconFiletypeTxtLumiFill
|
|
|
1213
1271
|
style: { opacity: 0.3 }
|
|
1214
1272
|
}
|
|
1215
1273
|
) }),
|
|
1216
|
-
/* @__PURE__ */ (0,
|
|
1217
|
-
/* @__PURE__ */ (0,
|
|
1218
|
-
/* @__PURE__ */ (0,
|
|
1219
|
-
/* @__PURE__ */ (0,
|
|
1220
|
-
/* @__PURE__ */ (0,
|
|
1274
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { fill: "#2E2E2E", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
1275
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { fill: "#2E2E2E", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
1276
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { fill: "#2E2E2E", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
1277
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { fill: "#2E2E2E", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
1278
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
1221
1279
|
"path",
|
|
1222
1280
|
{
|
|
1223
1281
|
fill: "#2E2E2E",
|
|
@@ -1227,8 +1285,8 @@ var import_jsx_runtime64 = require("react/jsx-runtime"), IconFiletypeTxtLumiFill
|
|
|
1227
1285
|
] }), FiletypeTxtLumiFilled_default = IconFiletypeTxtLumiFilled;
|
|
1228
1286
|
|
|
1229
1287
|
// src/components/FiletypeWordFilled.tsx
|
|
1230
|
-
var
|
|
1231
|
-
/* @__PURE__ */ (0,
|
|
1288
|
+
var import_jsx_runtime68 = require("react/jsx-runtime"), IconFiletypeWordFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1289
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
1232
1290
|
"path",
|
|
1233
1291
|
{
|
|
1234
1292
|
fill: "#0072FF",
|
|
@@ -1236,14 +1294,14 @@ var import_jsx_runtime65 = require("react/jsx-runtime"), IconFiletypeWordFilled
|
|
|
1236
1294
|
style: { opacity: 0.3 }
|
|
1237
1295
|
}
|
|
1238
1296
|
) }),
|
|
1239
|
-
/* @__PURE__ */ (0,
|
|
1297
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
1240
1298
|
"path",
|
|
1241
1299
|
{
|
|
1242
1300
|
fill: "#0072FF",
|
|
1243
1301
|
d: "M8.09258 8L9.69258 16H10.8121L12 9.56557L13.1879 16H14.3074L15.9074 8H15.1426L13.7547 14.9392L12.4736 8H11.5264L10.2453 14.9392L8.85743 8H8.09258Z"
|
|
1244
1302
|
}
|
|
1245
1303
|
),
|
|
1246
|
-
/* @__PURE__ */ (0,
|
|
1304
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
1247
1305
|
"path",
|
|
1248
1306
|
{
|
|
1249
1307
|
fill: "#0072FF",
|
|
@@ -1253,8 +1311,8 @@ var import_jsx_runtime65 = require("react/jsx-runtime"), IconFiletypeWordFilled
|
|
|
1253
1311
|
] }), FiletypeWordFilled_default = IconFiletypeWordFilled;
|
|
1254
1312
|
|
|
1255
1313
|
// src/components/FiletypeWordLumiFilled.tsx
|
|
1256
|
-
var
|
|
1257
|
-
/* @__PURE__ */ (0,
|
|
1314
|
+
var import_jsx_runtime69 = require("react/jsx-runtime"), IconFiletypeWordLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1315
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
1258
1316
|
"path",
|
|
1259
1317
|
{
|
|
1260
1318
|
fill: "#2E2E2E",
|
|
@@ -1262,14 +1320,14 @@ var import_jsx_runtime66 = require("react/jsx-runtime"), IconFiletypeWordLumiFil
|
|
|
1262
1320
|
style: { opacity: 0.3 }
|
|
1263
1321
|
}
|
|
1264
1322
|
) }),
|
|
1265
|
-
/* @__PURE__ */ (0,
|
|
1323
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
1266
1324
|
"path",
|
|
1267
1325
|
{
|
|
1268
1326
|
fill: "#2E2E2E",
|
|
1269
1327
|
d: "M8.09257 8L9.69257 16H10.8121L12 9.56557L13.1879 16H14.3074L15.9074 8H15.1426L13.7547 14.9392L12.4736 8H11.5264L10.2453 14.9392L8.85742 8H8.09257Z"
|
|
1270
1328
|
}
|
|
1271
1329
|
),
|
|
1272
|
-
/* @__PURE__ */ (0,
|
|
1330
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
1273
1331
|
"path",
|
|
1274
1332
|
{
|
|
1275
1333
|
fill: "#2E2E2E",
|
|
@@ -1279,8 +1337,8 @@ var import_jsx_runtime66 = require("react/jsx-runtime"), IconFiletypeWordLumiFil
|
|
|
1279
1337
|
] }), FiletypeWordLumiFilled_default = IconFiletypeWordLumiFilled;
|
|
1280
1338
|
|
|
1281
1339
|
// src/components/Fillin.tsx
|
|
1282
|
-
var
|
|
1283
|
-
/* @__PURE__ */ (0,
|
|
1340
|
+
var import_jsx_runtime70 = require("react/jsx-runtime"), IconFillin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1341
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("g", { clipPath: "url(#clip0_491_23)", children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
1284
1342
|
"path",
|
|
1285
1343
|
{
|
|
1286
1344
|
fill: stroke || color || "currentColor",
|
|
@@ -1289,7 +1347,7 @@ var import_jsx_runtime67 = require("react/jsx-runtime"), IconFillin = ({ size, w
|
|
|
1289
1347
|
clipRule: "evenodd"
|
|
1290
1348
|
}
|
|
1291
1349
|
) }),
|
|
1292
|
-
/* @__PURE__ */ (0,
|
|
1350
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("clipPath", { id: "clip0_491_23", children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
1293
1351
|
"rect",
|
|
1294
1352
|
{
|
|
1295
1353
|
width: "24",
|
|
@@ -1301,33 +1359,33 @@ var import_jsx_runtime67 = require("react/jsx-runtime"), IconFillin = ({ size, w
|
|
|
1301
1359
|
] }), Fillin_default = IconFillin;
|
|
1302
1360
|
|
|
1303
1361
|
// src/components/FoldedMenu.tsx
|
|
1304
|
-
var
|
|
1305
|
-
/* @__PURE__ */ (0,
|
|
1306
|
-
/* @__PURE__ */ (0,
|
|
1307
|
-
/* @__PURE__ */ (0,
|
|
1308
|
-
/* @__PURE__ */ (0,
|
|
1362
|
+
var import_jsx_runtime71 = require("react/jsx-runtime"), IconFoldedMenu = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1363
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H22.5V1.5H1.5V3.75Z" }),
|
|
1364
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H22.5V20.25H1.5V22.5Z" }),
|
|
1365
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { fill: stroke || color || "currentColor", d: "M22.5 10.125H1.5V7.875H22.5V10.125Z" }),
|
|
1366
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H22.5V13.875H1.5V16.125Z" })
|
|
1309
1367
|
] }), FoldedMenu_default = IconFoldedMenu;
|
|
1310
1368
|
|
|
1311
1369
|
// src/components/FullScreen.tsx
|
|
1312
|
-
var
|
|
1313
|
-
/* @__PURE__ */ (0,
|
|
1314
|
-
/* @__PURE__ */ (0,
|
|
1315
|
-
/* @__PURE__ */ (0,
|
|
1316
|
-
/* @__PURE__ */ (0,
|
|
1370
|
+
var import_jsx_runtime72 = require("react/jsx-runtime"), IconFullScreen = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1371
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { fill: stroke || color || "currentColor", d: "M3.25 14V20.75H10V23H1V14H3.25Z" }),
|
|
1372
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { fill: stroke || color || "currentColor", d: "M23 23H14V20.75H20.75V14H23V23Z" }),
|
|
1373
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { fill: stroke || color || "currentColor", d: "M10 3.25H3.25V10H1V1H10V3.25Z" }),
|
|
1374
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { fill: stroke || color || "currentColor", d: "M23 10H20.75V3.25H14V1H23V10Z" })
|
|
1317
1375
|
] }), FullScreen_default = IconFullScreen;
|
|
1318
1376
|
|
|
1319
1377
|
// src/components/GameFilled.tsx
|
|
1320
|
-
var
|
|
1321
|
-
/* @__PURE__ */ (0,
|
|
1322
|
-
/* @__PURE__ */ (0,
|
|
1323
|
-
/* @__PURE__ */ (0,
|
|
1378
|
+
var import_jsx_runtime73 = require("react/jsx-runtime"), IconGameFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1379
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { fill: fill || color || "currentColor", d: "M7.5 0H16.5V5.37868L12 9.87868L7.5 5.37868V0Z" }),
|
|
1380
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { fill: fill || color || "currentColor", d: "M5.37868 7.5H0V16.5H5.37868L9.87868 12L5.37868 7.5Z" }),
|
|
1381
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
1324
1382
|
"path",
|
|
1325
1383
|
{
|
|
1326
1384
|
fill: fill || color || "currentColor",
|
|
1327
1385
|
d: "M7.5 18.6213V24H16.5V18.6213L12 14.1213L7.5 18.6213Z"
|
|
1328
1386
|
}
|
|
1329
1387
|
),
|
|
1330
|
-
/* @__PURE__ */ (0,
|
|
1388
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
1331
1389
|
"path",
|
|
1332
1390
|
{
|
|
1333
1391
|
fill: fill || color || "currentColor",
|
|
@@ -1337,8 +1395,8 @@ var import_jsx_runtime70 = require("react/jsx-runtime"), IconGameFilled = ({ siz
|
|
|
1337
1395
|
] }), GameFilled_default = IconGameFilled;
|
|
1338
1396
|
|
|
1339
1397
|
// src/components/Game.tsx
|
|
1340
|
-
var
|
|
1341
|
-
/* @__PURE__ */ (0,
|
|
1398
|
+
var import_jsx_runtime74 = require("react/jsx-runtime"), IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1399
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
1342
1400
|
"path",
|
|
1343
1401
|
{
|
|
1344
1402
|
fill: stroke || color || "currentColor",
|
|
@@ -1347,7 +1405,7 @@ var import_jsx_runtime71 = require("react/jsx-runtime"), IconGame = ({ size, wid
|
|
|
1347
1405
|
clipRule: "evenodd"
|
|
1348
1406
|
}
|
|
1349
1407
|
),
|
|
1350
|
-
/* @__PURE__ */ (0,
|
|
1408
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
1351
1409
|
"path",
|
|
1352
1410
|
{
|
|
1353
1411
|
fill: stroke || color || "currentColor",
|
|
@@ -1356,7 +1414,7 @@ var import_jsx_runtime71 = require("react/jsx-runtime"), IconGame = ({ size, wid
|
|
|
1356
1414
|
clipRule: "evenodd"
|
|
1357
1415
|
}
|
|
1358
1416
|
),
|
|
1359
|
-
/* @__PURE__ */ (0,
|
|
1417
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
1360
1418
|
"path",
|
|
1361
1419
|
{
|
|
1362
1420
|
fill: stroke || color || "currentColor",
|
|
@@ -1365,7 +1423,7 @@ var import_jsx_runtime71 = require("react/jsx-runtime"), IconGame = ({ size, wid
|
|
|
1365
1423
|
clipRule: "evenodd"
|
|
1366
1424
|
}
|
|
1367
1425
|
),
|
|
1368
|
-
/* @__PURE__ */ (0,
|
|
1426
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
1369
1427
|
"path",
|
|
1370
1428
|
{
|
|
1371
1429
|
fill: stroke || color || "currentColor",
|
|
@@ -1377,7 +1435,7 @@ var import_jsx_runtime71 = require("react/jsx-runtime"), IconGame = ({ size, wid
|
|
|
1377
1435
|
] }), Game_default = IconGame;
|
|
1378
1436
|
|
|
1379
1437
|
// src/components/GamebackupFilled.tsx
|
|
1380
|
-
var
|
|
1438
|
+
var import_jsx_runtime75 = require("react/jsx-runtime"), IconGamebackupFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
1381
1439
|
"path",
|
|
1382
1440
|
{
|
|
1383
1441
|
fill: fill || color || "currentColor",
|
|
@@ -1388,7 +1446,7 @@ var import_jsx_runtime72 = require("react/jsx-runtime"), IconGamebackupFilled =
|
|
|
1388
1446
|
) }), GamebackupFilled_default = IconGamebackupFilled;
|
|
1389
1447
|
|
|
1390
1448
|
// src/components/Gamebackup.tsx
|
|
1391
|
-
var
|
|
1449
|
+
var import_jsx_runtime76 = require("react/jsx-runtime"), IconGamebackup = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
1392
1450
|
"path",
|
|
1393
1451
|
{
|
|
1394
1452
|
fill: stroke || color || "currentColor",
|
|
@@ -1399,7 +1457,7 @@ var import_jsx_runtime73 = require("react/jsx-runtime"), IconGamebackup = ({ siz
|
|
|
1399
1457
|
) }), Gamebackup_default = IconGamebackup;
|
|
1400
1458
|
|
|
1401
1459
|
// src/components/GamecontrolChoice.tsx
|
|
1402
|
-
var
|
|
1460
|
+
var import_jsx_runtime77 = require("react/jsx-runtime"), IconGamecontrolChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
1403
1461
|
"path",
|
|
1404
1462
|
{
|
|
1405
1463
|
fill: stroke || color || "currentColor",
|
|
@@ -1410,7 +1468,7 @@ var import_jsx_runtime74 = require("react/jsx-runtime"), IconGamecontrolChoice =
|
|
|
1410
1468
|
) }), GamecontrolChoice_default = IconGamecontrolChoice;
|
|
1411
1469
|
|
|
1412
1470
|
// src/components/GamecontrolGameplay.tsx
|
|
1413
|
-
var
|
|
1471
|
+
var import_jsx_runtime78 = require("react/jsx-runtime"), IconGamecontrolGameplay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
1414
1472
|
"path",
|
|
1415
1473
|
{
|
|
1416
1474
|
fill: stroke || color || "currentColor",
|
|
@@ -1421,7 +1479,7 @@ var import_jsx_runtime75 = require("react/jsx-runtime"), IconGamecontrolGameplay
|
|
|
1421
1479
|
) }), GamecontrolGameplay_default = IconGamecontrolGameplay;
|
|
1422
1480
|
|
|
1423
1481
|
// src/components/GamecontrolLinear.tsx
|
|
1424
|
-
var
|
|
1482
|
+
var import_jsx_runtime79 = require("react/jsx-runtime"), IconGamecontrolLinear = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
1425
1483
|
"path",
|
|
1426
1484
|
{
|
|
1427
1485
|
fill: stroke || color || "currentColor",
|
|
@@ -1432,15 +1490,15 @@ var import_jsx_runtime76 = require("react/jsx-runtime"), IconGamecontrolLinear =
|
|
|
1432
1490
|
) }), GamecontrolLinear_default = IconGamecontrolLinear;
|
|
1433
1491
|
|
|
1434
1492
|
// src/components/GamecontrolNone.tsx
|
|
1435
|
-
var
|
|
1436
|
-
/* @__PURE__ */ (0,
|
|
1493
|
+
var import_jsx_runtime80 = require("react/jsx-runtime"), IconGamecontrolNone = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1494
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
1437
1495
|
"path",
|
|
1438
1496
|
{
|
|
1439
1497
|
fill: stroke || color || "currentColor",
|
|
1440
1498
|
d: "M12 13.5C12.8284 13.5 13.5 12.8284 13.5 12C13.5 11.1716 12.8284 10.5 12 10.5C11.1716 10.5 10.5 11.1716 10.5 12C10.5 12.8284 11.1716 13.5 12 13.5Z"
|
|
1441
1499
|
}
|
|
1442
1500
|
),
|
|
1443
|
-
/* @__PURE__ */ (0,
|
|
1501
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
1444
1502
|
"path",
|
|
1445
1503
|
{
|
|
1446
1504
|
fill: stroke || color || "currentColor",
|
|
@@ -1449,7 +1507,7 @@ var import_jsx_runtime77 = require("react/jsx-runtime"), IconGamecontrolNone = (
|
|
|
1449
1507
|
clipRule: "evenodd"
|
|
1450
1508
|
}
|
|
1451
1509
|
),
|
|
1452
|
-
/* @__PURE__ */ (0,
|
|
1510
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
1453
1511
|
"path",
|
|
1454
1512
|
{
|
|
1455
1513
|
fill: stroke || color || "currentColor",
|
|
@@ -1461,22 +1519,22 @@ var import_jsx_runtime77 = require("react/jsx-runtime"), IconGamecontrolNone = (
|
|
|
1461
1519
|
] }), GamecontrolNone_default = IconGamecontrolNone;
|
|
1462
1520
|
|
|
1463
1521
|
// src/components/GamecontrolTerminal.tsx
|
|
1464
|
-
var
|
|
1465
|
-
/* @__PURE__ */ (0,
|
|
1522
|
+
var import_jsx_runtime81 = require("react/jsx-runtime"), IconGamecontrolTerminal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1523
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
1466
1524
|
"path",
|
|
1467
1525
|
{
|
|
1468
1526
|
fill: stroke || color || "currentColor",
|
|
1469
1527
|
d: "M14.2893 0.218108L12.2541 2.25325C12.1697 2.25109 12.085 2.25 12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12C21.75 11.915 21.7489 11.8303 21.7468 11.7459L23.7819 9.71075C23.925 10.4518 24 11.2171 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C12.7829 0 13.5482 0.0749648 14.2893 0.218108Z"
|
|
1470
1528
|
}
|
|
1471
1529
|
),
|
|
1472
|
-
/* @__PURE__ */ (0,
|
|
1530
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
1473
1531
|
"path",
|
|
1474
1532
|
{
|
|
1475
1533
|
fill: stroke || color || "currentColor",
|
|
1476
1534
|
d: "M18.7088 12.75L16.4378 12.75C16.0807 14.8783 14.2297 16.5 12 16.5C9.51472 16.5 7.5 14.4853 7.5 12C7.5 9.77025 9.12172 7.91928 11.25 7.56222L11.25 5.2912C7.87504 5.66428 5.25 8.52559 5.25 12C5.25 15.7279 8.27208 18.75 12 18.75C15.4744 18.75 18.3357 16.125 18.7088 12.75Z"
|
|
1477
1535
|
}
|
|
1478
1536
|
),
|
|
1479
|
-
/* @__PURE__ */ (0,
|
|
1537
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
1480
1538
|
"path",
|
|
1481
1539
|
{
|
|
1482
1540
|
fill: stroke || color || "currentColor",
|
|
@@ -1488,7 +1546,7 @@ var import_jsx_runtime78 = require("react/jsx-runtime"), IconGamecontrolTerminal
|
|
|
1488
1546
|
] }), GamecontrolTerminal_default = IconGamecontrolTerminal;
|
|
1489
1547
|
|
|
1490
1548
|
// src/components/Gamelanguage.tsx
|
|
1491
|
-
var
|
|
1549
|
+
var import_jsx_runtime82 = require("react/jsx-runtime"), IconGamelanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
1492
1550
|
"path",
|
|
1493
1551
|
{
|
|
1494
1552
|
fill: stroke || color || "currentColor",
|
|
@@ -1499,8 +1557,8 @@ var import_jsx_runtime79 = require("react/jsx-runtime"), IconGamelanguage = ({ s
|
|
|
1499
1557
|
) }), Gamelanguage_default = IconGamelanguage;
|
|
1500
1558
|
|
|
1501
1559
|
// src/components/Gamepreview.tsx
|
|
1502
|
-
var
|
|
1503
|
-
/* @__PURE__ */ (0,
|
|
1560
|
+
var import_jsx_runtime83 = require("react/jsx-runtime"), IconGamepreview = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1561
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
1504
1562
|
"path",
|
|
1505
1563
|
{
|
|
1506
1564
|
fill: stroke || color || "currentColor",
|
|
@@ -1509,7 +1567,7 @@ var import_jsx_runtime80 = require("react/jsx-runtime"), IconGamepreview = ({ si
|
|
|
1509
1567
|
clipRule: "evenodd"
|
|
1510
1568
|
}
|
|
1511
1569
|
),
|
|
1512
|
-
/* @__PURE__ */ (0,
|
|
1570
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
1513
1571
|
"path",
|
|
1514
1572
|
{
|
|
1515
1573
|
fill: stroke || color || "currentColor",
|
|
@@ -1521,7 +1579,7 @@ var import_jsx_runtime80 = require("react/jsx-runtime"), IconGamepreview = ({ si
|
|
|
1521
1579
|
] }), Gamepreview_default = IconGamepreview;
|
|
1522
1580
|
|
|
1523
1581
|
// src/components/Gameui.tsx
|
|
1524
|
-
var
|
|
1582
|
+
var import_jsx_runtime84 = require("react/jsx-runtime"), IconGameui = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
1525
1583
|
"path",
|
|
1526
1584
|
{
|
|
1527
1585
|
fill: stroke || color || "currentColor",
|
|
@@ -1532,8 +1590,8 @@ var import_jsx_runtime81 = require("react/jsx-runtime"), IconGameui = ({ size, w
|
|
|
1532
1590
|
) }), Gameui_default = IconGameui;
|
|
1533
1591
|
|
|
1534
1592
|
// src/components/Gameuivariable.tsx
|
|
1535
|
-
var
|
|
1536
|
-
/* @__PURE__ */ (0,
|
|
1593
|
+
var import_jsx_runtime85 = require("react/jsx-runtime"), IconGameuivariable = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1594
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
1537
1595
|
"path",
|
|
1538
1596
|
{
|
|
1539
1597
|
fill: fill || color || "currentColor",
|
|
@@ -1542,7 +1600,7 @@ var import_jsx_runtime82 = require("react/jsx-runtime"), IconGameuivariable = ({
|
|
|
1542
1600
|
clipRule: "evenodd"
|
|
1543
1601
|
}
|
|
1544
1602
|
),
|
|
1545
|
-
/* @__PURE__ */ (0,
|
|
1603
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
1546
1604
|
"path",
|
|
1547
1605
|
{
|
|
1548
1606
|
fill: stroke || color || "currentColor",
|
|
@@ -1552,15 +1610,15 @@ var import_jsx_runtime82 = require("react/jsx-runtime"), IconGameuivariable = ({
|
|
|
1552
1610
|
] }), Gameuivariable_default = IconGameuivariable;
|
|
1553
1611
|
|
|
1554
1612
|
// src/components/Gameuivariable2.tsx
|
|
1555
|
-
var
|
|
1556
|
-
/* @__PURE__ */ (0,
|
|
1613
|
+
var import_jsx_runtime86 = require("react/jsx-runtime"), IconGameuivariable2 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1614
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
1557
1615
|
"path",
|
|
1558
1616
|
{
|
|
1559
1617
|
fill: fill || color || "currentColor",
|
|
1560
1618
|
d: "M21.3496 9.34961L19.7578 10.9404L17.2041 8.38672L13.5908 12L13.5918 12.001L12.001 13.5918L12 13.5908L8.38672 17.2041L12 20.8184L14.5127 18.3037L16.1045 19.8955L12 24L0 12L12 0L21.3496 9.34961ZM3.18164 12L6.7959 15.6133L10.4092 12L6.7959 8.38672L3.18164 12ZM8.38672 6.7959L12 10.4092L15.6133 6.7959L12 3.18164L8.38672 6.7959Z"
|
|
1561
1619
|
}
|
|
1562
1620
|
),
|
|
1563
|
-
/* @__PURE__ */ (0,
|
|
1621
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
1564
1622
|
"path",
|
|
1565
1623
|
{
|
|
1566
1624
|
fill: stroke || color || "currentColor",
|
|
@@ -1570,15 +1628,15 @@ var import_jsx_runtime83 = require("react/jsx-runtime"), IconGameuivariable2 = (
|
|
|
1570
1628
|
] }), Gameuivariable2_default = IconGameuivariable2;
|
|
1571
1629
|
|
|
1572
1630
|
// src/components/GenerateMultimage.tsx
|
|
1573
|
-
var
|
|
1574
|
-
/* @__PURE__ */ (0,
|
|
1631
|
+
var import_jsx_runtime87 = require("react/jsx-runtime"), IconGenerateMultimage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1632
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
1575
1633
|
"path",
|
|
1576
1634
|
{
|
|
1577
1635
|
fill: stroke || color || "currentColor",
|
|
1578
1636
|
d: "M12 7.5C12.8284 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8284 4.5 12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5Z"
|
|
1579
1637
|
}
|
|
1580
1638
|
),
|
|
1581
|
-
/* @__PURE__ */ (0,
|
|
1639
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
1582
1640
|
"path",
|
|
1583
1641
|
{
|
|
1584
1642
|
fill: stroke || color || "currentColor",
|
|
@@ -1587,11 +1645,11 @@ var import_jsx_runtime84 = require("react/jsx-runtime"), IconGenerateMultimage =
|
|
|
1587
1645
|
clipRule: "evenodd"
|
|
1588
1646
|
}
|
|
1589
1647
|
),
|
|
1590
|
-
/* @__PURE__ */ (0,
|
|
1648
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { fill: stroke || color || "currentColor", d: "M0 6V24H18V21.75H2.25V6H0Z" })
|
|
1591
1649
|
] }), GenerateMultimage_default = IconGenerateMultimage;
|
|
1592
1650
|
|
|
1593
1651
|
// src/components/GenerateFilled.tsx
|
|
1594
|
-
var
|
|
1652
|
+
var import_jsx_runtime88 = require("react/jsx-runtime"), IconGenerateFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
1595
1653
|
"path",
|
|
1596
1654
|
{
|
|
1597
1655
|
fill: fill || color || "currentColor",
|
|
@@ -1602,15 +1660,15 @@ var import_jsx_runtime85 = require("react/jsx-runtime"), IconGenerateFilled = ({
|
|
|
1602
1660
|
) }), GenerateFilled_default = IconGenerateFilled;
|
|
1603
1661
|
|
|
1604
1662
|
// src/components/GenerateFrameStart.tsx
|
|
1605
|
-
var
|
|
1606
|
-
/* @__PURE__ */ (0,
|
|
1663
|
+
var import_jsx_runtime89 = require("react/jsx-runtime"), IconGenerateFrameStart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1664
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
1607
1665
|
"path",
|
|
1608
1666
|
{
|
|
1609
1667
|
fill: stroke || color || "currentColor",
|
|
1610
1668
|
d: "M8.625 9.75C9.66053 9.75 10.5 8.91053 10.5 7.875C10.5 6.83947 9.66053 6 8.625 6C7.58947 6 6.75 6.83947 6.75 7.875C6.75 8.91053 7.58947 9.75 8.625 9.75Z"
|
|
1611
1669
|
}
|
|
1612
1670
|
),
|
|
1613
|
-
/* @__PURE__ */ (0,
|
|
1671
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
1614
1672
|
"path",
|
|
1615
1673
|
{
|
|
1616
1674
|
fill: stroke || color || "currentColor",
|
|
@@ -1622,8 +1680,8 @@ var import_jsx_runtime86 = require("react/jsx-runtime"), IconGenerateFrameStart
|
|
|
1622
1680
|
] }), GenerateFrameStart_default = IconGenerateFrameStart;
|
|
1623
1681
|
|
|
1624
1682
|
// src/components/GenerateFrameStart2End.tsx
|
|
1625
|
-
var
|
|
1626
|
-
/* @__PURE__ */ (0,
|
|
1683
|
+
var import_jsx_runtime90 = require("react/jsx-runtime"), IconGenerateFrameStart2End = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1684
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
1627
1685
|
"path",
|
|
1628
1686
|
{
|
|
1629
1687
|
fill: stroke || color || "currentColor",
|
|
@@ -1632,14 +1690,14 @@ var import_jsx_runtime87 = require("react/jsx-runtime"), IconGenerateFrameStart2
|
|
|
1632
1690
|
clipRule: "evenodd"
|
|
1633
1691
|
}
|
|
1634
1692
|
),
|
|
1635
|
-
/* @__PURE__ */ (0,
|
|
1693
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
1636
1694
|
"path",
|
|
1637
1695
|
{
|
|
1638
1696
|
fill: stroke || color || "currentColor",
|
|
1639
1697
|
d: "M4.74981 7.49969C5.5782 7.49969 6.24975 6.82815 6.24975 5.99976C6.24975 5.17136 5.5782 4.49982 4.74981 4.49982C3.92141 4.49982 3.24987 5.17136 3.24987 5.99976C3.24987 6.82815 3.92141 7.49969 4.74981 7.49969Z"
|
|
1640
1698
|
}
|
|
1641
1699
|
),
|
|
1642
|
-
/* @__PURE__ */ (0,
|
|
1700
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
1643
1701
|
"path",
|
|
1644
1702
|
{
|
|
1645
1703
|
fill: stroke || color || "currentColor",
|
|
@@ -1651,8 +1709,8 @@ var import_jsx_runtime87 = require("react/jsx-runtime"), IconGenerateFrameStart2
|
|
|
1651
1709
|
] }), GenerateFrameStart2End_default = IconGenerateFrameStart2End;
|
|
1652
1710
|
|
|
1653
1711
|
// src/components/GenerateSwitchframe.tsx
|
|
1654
|
-
var
|
|
1655
|
-
/* @__PURE__ */ (0,
|
|
1712
|
+
var import_jsx_runtime91 = require("react/jsx-runtime"), IconGenerateSwitchframe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1713
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
1656
1714
|
"path",
|
|
1657
1715
|
{
|
|
1658
1716
|
fill: stroke || color || "currentColor",
|
|
@@ -1661,7 +1719,7 @@ var import_jsx_runtime88 = require("react/jsx-runtime"), IconGenerateSwitchframe
|
|
|
1661
1719
|
clipRule: "evenodd"
|
|
1662
1720
|
}
|
|
1663
1721
|
),
|
|
1664
|
-
/* @__PURE__ */ (0,
|
|
1722
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
1665
1723
|
"path",
|
|
1666
1724
|
{
|
|
1667
1725
|
fill: stroke || color || "currentColor",
|
|
@@ -1673,15 +1731,15 @@ var import_jsx_runtime88 = require("react/jsx-runtime"), IconGenerateSwitchframe
|
|
|
1673
1731
|
] }), GenerateSwitchframe_default = IconGenerateSwitchframe;
|
|
1674
1732
|
|
|
1675
1733
|
// src/components/GenerateT2V.tsx
|
|
1676
|
-
var
|
|
1677
|
-
/* @__PURE__ */ (0,
|
|
1734
|
+
var import_jsx_runtime92 = require("react/jsx-runtime"), IconGenerateT2V = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1735
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
1678
1736
|
"path",
|
|
1679
1737
|
{
|
|
1680
1738
|
fill: stroke || color || "currentColor",
|
|
1681
1739
|
d: "M6 6V10.5H8.25V8.25H10.875V15.75H8.25V18H15.75V15.75H13.125V8.25H15.75V10.5H18V6H6Z"
|
|
1682
1740
|
}
|
|
1683
1741
|
),
|
|
1684
|
-
/* @__PURE__ */ (0,
|
|
1742
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
1685
1743
|
"path",
|
|
1686
1744
|
{
|
|
1687
1745
|
fill: stroke || color || "currentColor",
|
|
@@ -1693,7 +1751,7 @@ var import_jsx_runtime89 = require("react/jsx-runtime"), IconGenerateT2V = ({ si
|
|
|
1693
1751
|
] }), GenerateT2V_default = IconGenerateT2V;
|
|
1694
1752
|
|
|
1695
1753
|
// src/components/Generate.tsx
|
|
1696
|
-
var
|
|
1754
|
+
var import_jsx_runtime93 = require("react/jsx-runtime"), IconGenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
1697
1755
|
"path",
|
|
1698
1756
|
{
|
|
1699
1757
|
fill: stroke || color || "currentColor",
|
|
@@ -1702,15 +1760,15 @@ var import_jsx_runtime90 = require("react/jsx-runtime"), IconGenerate = ({ size,
|
|
|
1702
1760
|
) }), Generate_default = IconGenerate;
|
|
1703
1761
|
|
|
1704
1762
|
// src/components/GenreAuto.tsx
|
|
1705
|
-
var
|
|
1706
|
-
/* @__PURE__ */ (0,
|
|
1763
|
+
var import_jsx_runtime94 = require("react/jsx-runtime"), IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1764
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
1707
1765
|
"path",
|
|
1708
1766
|
{
|
|
1709
1767
|
fill: stroke || color || "currentColor",
|
|
1710
1768
|
d: "M18.375 6.375V10.5H16.125V6.375H12V4.125H16.125V0H18.375V4.125H22.5V6.375H18.375Z"
|
|
1711
1769
|
}
|
|
1712
1770
|
),
|
|
1713
|
-
/* @__PURE__ */ (0,
|
|
1771
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
1714
1772
|
"path",
|
|
1715
1773
|
{
|
|
1716
1774
|
fill: stroke || color || "currentColor",
|
|
@@ -1719,15 +1777,15 @@ var import_jsx_runtime91 = require("react/jsx-runtime"), IconGenreAuto = ({ size
|
|
|
1719
1777
|
clipRule: "evenodd"
|
|
1720
1778
|
}
|
|
1721
1779
|
),
|
|
1722
|
-
/* @__PURE__ */ (0,
|
|
1723
|
-
/* @__PURE__ */ (0,
|
|
1780
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { fill: stroke || color || "currentColor", d: "M3.75 0.75L1.5 3L3.75 5.25L6 3L3.75 0.75Z" }),
|
|
1781
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
1724
1782
|
"path",
|
|
1725
1783
|
{
|
|
1726
1784
|
fill: stroke || color || "currentColor",
|
|
1727
1785
|
d: "M18 21.75L20.25 19.5L22.5 21.75L20.25 24L18 21.75Z"
|
|
1728
1786
|
}
|
|
1729
1787
|
),
|
|
1730
|
-
/* @__PURE__ */ (0,
|
|
1788
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
1731
1789
|
"path",
|
|
1732
1790
|
{
|
|
1733
1791
|
fill: stroke || color || "currentColor",
|
|
@@ -1737,22 +1795,22 @@ var import_jsx_runtime91 = require("react/jsx-runtime"), IconGenreAuto = ({ size
|
|
|
1737
1795
|
] }), GenreAuto_default = IconGenreAuto;
|
|
1738
1796
|
|
|
1739
1797
|
// src/components/GenreComedy.tsx
|
|
1740
|
-
var
|
|
1741
|
-
/* @__PURE__ */ (0,
|
|
1798
|
+
var import_jsx_runtime95 = require("react/jsx-runtime"), IconGenreComedy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1799
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
1742
1800
|
"path",
|
|
1743
1801
|
{
|
|
1744
1802
|
fill: stroke || color || "currentColor",
|
|
1745
1803
|
d: "M8.25 10.5C9.07843 10.5 9.75 9.82843 9.75 9C9.75 8.17157 9.07843 7.5 8.25 7.5C7.42157 7.5 6.75 8.17157 6.75 9C6.75 9.82843 7.42157 10.5 8.25 10.5Z"
|
|
1746
1804
|
}
|
|
1747
1805
|
),
|
|
1748
|
-
/* @__PURE__ */ (0,
|
|
1806
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
1749
1807
|
"path",
|
|
1750
1808
|
{
|
|
1751
1809
|
fill: stroke || color || "currentColor",
|
|
1752
1810
|
d: "M17.25 9C17.25 9.82843 16.5784 10.5 15.75 10.5C14.9216 10.5 14.25 9.82843 14.25 9C14.25 8.17157 14.9216 7.5 15.75 7.5C16.5784 7.5 17.25 8.17157 17.25 9Z"
|
|
1753
1811
|
}
|
|
1754
1812
|
),
|
|
1755
|
-
/* @__PURE__ */ (0,
|
|
1813
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
1756
1814
|
"path",
|
|
1757
1815
|
{
|
|
1758
1816
|
fill: stroke || color || "currentColor",
|
|
@@ -1761,7 +1819,7 @@ var import_jsx_runtime92 = require("react/jsx-runtime"), IconGenreComedy = ({ si
|
|
|
1761
1819
|
clipRule: "evenodd"
|
|
1762
1820
|
}
|
|
1763
1821
|
),
|
|
1764
|
-
/* @__PURE__ */ (0,
|
|
1822
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
1765
1823
|
"path",
|
|
1766
1824
|
{
|
|
1767
1825
|
fill: stroke || color || "currentColor",
|
|
@@ -1773,7 +1831,7 @@ var import_jsx_runtime92 = require("react/jsx-runtime"), IconGenreComedy = ({ si
|
|
|
1773
1831
|
] }), GenreComedy_default = IconGenreComedy;
|
|
1774
1832
|
|
|
1775
1833
|
// src/components/GenreFantasy.tsx
|
|
1776
|
-
var
|
|
1834
|
+
var import_jsx_runtime96 = require("react/jsx-runtime"), IconGenreFantasy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
1777
1835
|
"path",
|
|
1778
1836
|
{
|
|
1779
1837
|
fill: stroke || color || "currentColor",
|
|
@@ -1784,22 +1842,22 @@ var import_jsx_runtime93 = require("react/jsx-runtime"), IconGenreFantasy = ({ s
|
|
|
1784
1842
|
) }), GenreFantasy_default = IconGenreFantasy;
|
|
1785
1843
|
|
|
1786
1844
|
// src/components/GenreHorror.tsx
|
|
1787
|
-
var
|
|
1788
|
-
/* @__PURE__ */ (0,
|
|
1845
|
+
var import_jsx_runtime97 = require("react/jsx-runtime"), IconGenreHorror = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1846
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
1789
1847
|
"path",
|
|
1790
1848
|
{
|
|
1791
1849
|
fill: stroke || color || "currentColor",
|
|
1792
1850
|
d: "M10.5 9C10.5 9.82843 9.82843 10.5 9 10.5C8.17157 10.5 7.5 9.82843 7.5 9C7.5 8.17157 8.17157 7.5 9 7.5C9.82843 7.5 10.5 8.17157 10.5 9Z"
|
|
1793
1851
|
}
|
|
1794
1852
|
),
|
|
1795
|
-
/* @__PURE__ */ (0,
|
|
1853
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
1796
1854
|
"path",
|
|
1797
1855
|
{
|
|
1798
1856
|
fill: stroke || color || "currentColor",
|
|
1799
1857
|
d: "M15 10.5C15.8284 10.5 16.5 9.82843 16.5 9C16.5 8.17157 15.8284 7.5 15 7.5C14.1716 7.5 13.5 8.17157 13.5 9C13.5 9.82843 14.1716 10.5 15 10.5Z"
|
|
1800
1858
|
}
|
|
1801
1859
|
),
|
|
1802
|
-
/* @__PURE__ */ (0,
|
|
1860
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
1803
1861
|
"path",
|
|
1804
1862
|
{
|
|
1805
1863
|
fill: stroke || color || "currentColor",
|
|
@@ -1811,7 +1869,7 @@ var import_jsx_runtime94 = require("react/jsx-runtime"), IconGenreHorror = ({ si
|
|
|
1811
1869
|
] }), GenreHorror_default = IconGenreHorror;
|
|
1812
1870
|
|
|
1813
1871
|
// src/components/GenreRomance.tsx
|
|
1814
|
-
var
|
|
1872
|
+
var import_jsx_runtime98 = require("react/jsx-runtime"), IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
1815
1873
|
"path",
|
|
1816
1874
|
{
|
|
1817
1875
|
fill: stroke || color || "currentColor",
|
|
@@ -1822,15 +1880,15 @@ var import_jsx_runtime95 = require("react/jsx-runtime"), IconGenreRomance = ({ s
|
|
|
1822
1880
|
) }), GenreRomance_default = IconGenreRomance;
|
|
1823
1881
|
|
|
1824
1882
|
// src/components/GenreScifi.tsx
|
|
1825
|
-
var
|
|
1826
|
-
/* @__PURE__ */ (0,
|
|
1883
|
+
var import_jsx_runtime99 = require("react/jsx-runtime"), IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1884
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
1827
1885
|
"path",
|
|
1828
1886
|
{
|
|
1829
1887
|
fill: stroke || color || "currentColor",
|
|
1830
1888
|
d: "M17.25 8.25C17.25 9.07843 16.5784 9.75 15.75 9.75C14.9216 9.75 14.25 9.07843 14.25 8.25C14.25 7.42157 14.9216 6.75 15.75 6.75C16.5784 6.75 17.25 7.42157 17.25 8.25Z"
|
|
1831
1889
|
}
|
|
1832
1890
|
),
|
|
1833
|
-
/* @__PURE__ */ (0,
|
|
1891
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
1834
1892
|
"path",
|
|
1835
1893
|
{
|
|
1836
1894
|
fill: stroke || color || "currentColor",
|
|
@@ -1839,7 +1897,7 @@ var import_jsx_runtime96 = require("react/jsx-runtime"), IconGenreScifi = ({ siz
|
|
|
1839
1897
|
clipRule: "evenodd"
|
|
1840
1898
|
}
|
|
1841
1899
|
),
|
|
1842
|
-
/* @__PURE__ */ (0,
|
|
1900
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
1843
1901
|
"path",
|
|
1844
1902
|
{
|
|
1845
1903
|
fill: stroke || color || "currentColor",
|
|
@@ -1849,7 +1907,7 @@ var import_jsx_runtime96 = require("react/jsx-runtime"), IconGenreScifi = ({ siz
|
|
|
1849
1907
|
] }), GenreScifi_default = IconGenreScifi;
|
|
1850
1908
|
|
|
1851
1909
|
// src/components/GenreSuspense.tsx
|
|
1852
|
-
var
|
|
1910
|
+
var import_jsx_runtime100 = require("react/jsx-runtime"), IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
1853
1911
|
"path",
|
|
1854
1912
|
{
|
|
1855
1913
|
fill: stroke || color || "currentColor",
|
|
@@ -1860,7 +1918,7 @@ var import_jsx_runtime97 = require("react/jsx-runtime"), IconGenreSuspense = ({
|
|
|
1860
1918
|
) }), GenreSuspense_default = IconGenreSuspense;
|
|
1861
1919
|
|
|
1862
1920
|
// src/components/Genre.tsx
|
|
1863
|
-
var
|
|
1921
|
+
var import_jsx_runtime101 = require("react/jsx-runtime"), IconGenre = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
1864
1922
|
"path",
|
|
1865
1923
|
{
|
|
1866
1924
|
fill: stroke || color || "currentColor",
|
|
@@ -1871,8 +1929,8 @@ var import_jsx_runtime98 = require("react/jsx-runtime"), IconGenre = ({ size, wi
|
|
|
1871
1929
|
) }), Genre_default = IconGenre;
|
|
1872
1930
|
|
|
1873
1931
|
// src/components/GoogleLogoFilled.tsx
|
|
1874
|
-
var
|
|
1875
|
-
/* @__PURE__ */ (0,
|
|
1932
|
+
var import_jsx_runtime102 = require("react/jsx-runtime"), IconGoogleLogoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1933
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1876
1934
|
"mask",
|
|
1877
1935
|
{
|
|
1878
1936
|
id: "mask0_48_113",
|
|
@@ -1882,7 +1940,7 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
1882
1940
|
y: "0",
|
|
1883
1941
|
maskUnits: "userSpaceOnUse",
|
|
1884
1942
|
style: { maskType: "luminance" },
|
|
1885
|
-
children: /* @__PURE__ */ (0,
|
|
1943
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1886
1944
|
"path",
|
|
1887
1945
|
{
|
|
1888
1946
|
fill: stroke || color || "currentColor",
|
|
@@ -1891,64 +1949,64 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
1891
1949
|
)
|
|
1892
1950
|
}
|
|
1893
1951
|
),
|
|
1894
|
-
/* @__PURE__ */ (0,
|
|
1895
|
-
/* @__PURE__ */ (0,
|
|
1952
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("g", { mask: "url(#mask0_48_113)", children: [
|
|
1953
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter0_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1896
1954
|
"path",
|
|
1897
1955
|
{
|
|
1898
1956
|
fill: "url(#paint0_radial_48_113)",
|
|
1899
1957
|
d: "M-0.13855 12.0511C-0.125823 13.9626 0.41885 15.9348 1.2433 17.5269V17.5378C1.83901 18.694 2.65317 19.6074 3.58049 20.5123L9.18123 18.4687C8.1216 17.9304 7.95992 17.6006 7.20034 16.9988C6.42411 16.2161 5.84559 15.3175 5.4853 14.2639H5.47079L5.4853 14.253C5.24828 13.5572 5.2249 12.8187 5.21615 12.0511H-0.13855Z"
|
|
1900
1958
|
}
|
|
1901
1959
|
) }),
|
|
1902
|
-
/* @__PURE__ */ (0,
|
|
1960
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter1_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1903
1961
|
"path",
|
|
1904
1962
|
{
|
|
1905
1963
|
fill: "url(#paint1_radial_48_113)",
|
|
1906
1964
|
d: "M12.2937 -0.116608C11.7402 1.82819 11.9518 3.71859 12.2937 4.81851C12.933 4.81898 13.5488 4.89518 14.1327 5.04699C15.4713 5.395 16.4181 6.08044 16.9983 6.6226L20.5889 3.10649C18.4618 1.15622 15.902 -0.113535 12.2937 -0.116608Z"
|
|
1907
1965
|
}
|
|
1908
1966
|
) }),
|
|
1909
|
-
/* @__PURE__ */ (0,
|
|
1967
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter2_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1910
1968
|
"path",
|
|
1911
1969
|
{
|
|
1912
1970
|
fill: "url(#paint2_radial_48_113)",
|
|
1913
1971
|
d: "M12.2817 -0.131989C9.56642 -0.132047 7.05954 0.713967 5.00522 2.14376C4.24245 2.67465 3.54248 3.2879 2.91919 3.96986C2.7559 5.50172 4.14151 7.38453 6.88543 7.36895C8.21677 5.8203 10.1858 4.81833 12.3773 4.81833C12.3793 4.81833 12.3813 4.8185 12.3833 4.81851L12.2938 -0.131638C12.2897 -0.131641 12.2858 -0.131989 12.2817 -0.131989Z"
|
|
1914
1972
|
}
|
|
1915
1973
|
) }),
|
|
1916
|
-
/* @__PURE__ */ (0,
|
|
1974
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter3_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1917
1975
|
"path",
|
|
1918
1976
|
{
|
|
1919
1977
|
fill: "url(#paint3_radial_48_113)",
|
|
1920
1978
|
d: "M21.2438 12.6054L18.8202 14.2704C18.7139 14.9233 18.4749 15.5657 18.1252 16.1513C17.7245 16.8224 17.2292 17.3333 16.7215 17.7223C15.2038 18.8853 13.4353 19.1248 12.2043 19.1258C10.9318 21.293 10.7087 22.3785 12.2938 24.1276C14.2551 24.1262 15.9938 23.7721 17.5275 23.1091C18.6362 22.6299 19.6185 22.0048 20.5078 21.2014C21.6829 20.1399 22.6033 18.8268 23.2315 17.3162C23.8597 15.8056 24.1956 14.0974 24.1956 12.2454L21.2438 12.6054Z"
|
|
1921
1979
|
}
|
|
1922
1980
|
) }),
|
|
1923
|
-
/* @__PURE__ */ (0,
|
|
1981
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter4_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1924
1982
|
"path",
|
|
1925
1983
|
{
|
|
1926
1984
|
fill: "#3086FF",
|
|
1927
1985
|
d: "M12.1147 9.56912V14.5333H23.7753C23.8778 13.8535 24.217 12.9737 24.217 12.2454C24.217 11.3943 24.1316 10.3547 23.9866 9.56912H12.1147Z"
|
|
1928
1986
|
}
|
|
1929
1987
|
) }),
|
|
1930
|
-
/* @__PURE__ */ (0,
|
|
1988
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter5_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1931
1989
|
"path",
|
|
1932
1990
|
{
|
|
1933
1991
|
fill: "url(#paint4_radial_48_113)",
|
|
1934
1992
|
d: "M2.97483 3.79462C2.25525 4.58193 1.64051 5.46316 1.1531 6.4162C0.316879 8.0461 -0.140991 10.0276 -0.140991 11.9697C-0.140991 11.997 -0.138726 12.0238 -0.138544 12.0511C0.231793 12.7612 4.97698 12.6252 5.21616 12.0511C5.21586 12.0244 5.21284 11.9982 5.21284 11.9714C5.21284 11.1748 5.34741 10.5877 5.5927 9.8676C5.8953 8.97932 6.36909 8.16135 6.97495 7.45659C7.11229 7.28125 7.47863 6.9043 7.58551 6.6782C7.62622 6.59208 7.5116 6.54374 7.50518 6.51343C7.49801 6.47952 7.34433 6.50679 7.30989 6.48153C7.20057 6.40135 6.98409 6.35947 6.85263 6.32225C6.57166 6.24269 6.10601 6.06725 5.84737 5.88538C5.02982 5.3105 3.75397 4.62381 2.97483 3.79462Z"
|
|
1935
1993
|
}
|
|
1936
1994
|
) }),
|
|
1937
|
-
/* @__PURE__ */ (0,
|
|
1995
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter6_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1938
1996
|
"path",
|
|
1939
1997
|
{
|
|
1940
1998
|
fill: "url(#paint5_radial_48_113)",
|
|
1941
1999
|
d: "M5.86493 6.51682C7.76074 7.66521 8.30593 5.93717 9.56638 5.39642L7.37379 0.849579C6.56724 1.18857 5.80521 1.60974 5.09815 2.10184C4.04224 2.83676 3.10978 3.73356 2.33951 4.75414L5.86493 6.51682Z"
|
|
1942
2000
|
}
|
|
1943
2001
|
) }),
|
|
1944
|
-
/* @__PURE__ */ (0,
|
|
2002
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter7_f_48_113)", children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1945
2003
|
"path",
|
|
1946
2004
|
{
|
|
1947
2005
|
fill: "url(#paint6_radial_48_113)",
|
|
1948
2006
|
d: "M6.63653 18.1174C4.09165 19.0362 3.69324 19.0691 3.45898 20.6463C3.90663 21.0831 4.3876 21.4872 4.8987 21.8536C6.27014 22.8367 8.9082 24.1459 12.282 24.1459C12.286 24.1459 12.2898 24.1456 12.2938 24.1456V19.0381C12.2912 19.0382 12.2883 19.0383 12.2857 19.0383C11.0223 19.0383 10.0128 18.7065 8.97763 18.1294C8.72242 17.9872 8.25938 18.3692 8.02401 18.1984C7.69937 17.9629 6.9181 18.4014 6.63653 18.1174Z"
|
|
1949
2007
|
}
|
|
1950
2008
|
) }),
|
|
1951
|
-
/* @__PURE__ */ (0,
|
|
2009
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("g", { filter: "url(#filter8_f_48_113)", style: { opacity: 0.5 }, children: /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
|
|
1952
2010
|
"path",
|
|
1953
2011
|
{
|
|
1954
2012
|
fill: "url(#paint7_linear_48_113)",
|
|
@@ -1956,8 +2014,8 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
1956
2014
|
}
|
|
1957
2015
|
) })
|
|
1958
2016
|
] }),
|
|
1959
|
-
/* @__PURE__ */ (0,
|
|
1960
|
-
/* @__PURE__ */ (0,
|
|
2017
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("defs", { children: [
|
|
2018
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
1961
2019
|
"filter",
|
|
1962
2020
|
{
|
|
1963
2021
|
id: "filter0_f_48_113",
|
|
@@ -1968,13 +2026,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
1968
2026
|
filterUnits: "userSpaceOnUse",
|
|
1969
2027
|
colorInterpolationFilters: "sRGB",
|
|
1970
2028
|
children: [
|
|
1971
|
-
/* @__PURE__ */ (0,
|
|
1972
|
-
/* @__PURE__ */ (0,
|
|
1973
|
-
/* @__PURE__ */ (0,
|
|
2029
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2030
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2031
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1974
2032
|
]
|
|
1975
2033
|
}
|
|
1976
2034
|
),
|
|
1977
|
-
/* @__PURE__ */ (0,
|
|
2035
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
1978
2036
|
"filter",
|
|
1979
2037
|
{
|
|
1980
2038
|
id: "filter1_f_48_113",
|
|
@@ -1985,13 +2043,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
1985
2043
|
filterUnits: "userSpaceOnUse",
|
|
1986
2044
|
colorInterpolationFilters: "sRGB",
|
|
1987
2045
|
children: [
|
|
1988
|
-
/* @__PURE__ */ (0,
|
|
1989
|
-
/* @__PURE__ */ (0,
|
|
1990
|
-
/* @__PURE__ */ (0,
|
|
2046
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2047
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2048
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1991
2049
|
]
|
|
1992
2050
|
}
|
|
1993
2051
|
),
|
|
1994
|
-
/* @__PURE__ */ (0,
|
|
2052
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
1995
2053
|
"filter",
|
|
1996
2054
|
{
|
|
1997
2055
|
id: "filter2_f_48_113",
|
|
@@ -2002,13 +2060,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2002
2060
|
filterUnits: "userSpaceOnUse",
|
|
2003
2061
|
colorInterpolationFilters: "sRGB",
|
|
2004
2062
|
children: [
|
|
2005
|
-
/* @__PURE__ */ (0,
|
|
2006
|
-
/* @__PURE__ */ (0,
|
|
2007
|
-
/* @__PURE__ */ (0,
|
|
2063
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2064
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2065
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
2008
2066
|
]
|
|
2009
2067
|
}
|
|
2010
2068
|
),
|
|
2011
|
-
/* @__PURE__ */ (0,
|
|
2069
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2012
2070
|
"filter",
|
|
2013
2071
|
{
|
|
2014
2072
|
id: "filter3_f_48_113",
|
|
@@ -2019,13 +2077,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2019
2077
|
filterUnits: "userSpaceOnUse",
|
|
2020
2078
|
colorInterpolationFilters: "sRGB",
|
|
2021
2079
|
children: [
|
|
2022
|
-
/* @__PURE__ */ (0,
|
|
2023
|
-
/* @__PURE__ */ (0,
|
|
2024
|
-
/* @__PURE__ */ (0,
|
|
2080
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2081
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2082
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
2025
2083
|
]
|
|
2026
2084
|
}
|
|
2027
2085
|
),
|
|
2028
|
-
/* @__PURE__ */ (0,
|
|
2086
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2029
2087
|
"filter",
|
|
2030
2088
|
{
|
|
2031
2089
|
id: "filter4_f_48_113",
|
|
@@ -2036,13 +2094,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2036
2094
|
filterUnits: "userSpaceOnUse",
|
|
2037
2095
|
colorInterpolationFilters: "sRGB",
|
|
2038
2096
|
children: [
|
|
2039
|
-
/* @__PURE__ */ (0,
|
|
2040
|
-
/* @__PURE__ */ (0,
|
|
2041
|
-
/* @__PURE__ */ (0,
|
|
2097
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2098
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2099
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
2042
2100
|
]
|
|
2043
2101
|
}
|
|
2044
2102
|
),
|
|
2045
|
-
/* @__PURE__ */ (0,
|
|
2103
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2046
2104
|
"filter",
|
|
2047
2105
|
{
|
|
2048
2106
|
id: "filter5_f_48_113",
|
|
@@ -2053,13 +2111,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2053
2111
|
filterUnits: "userSpaceOnUse",
|
|
2054
2112
|
colorInterpolationFilters: "sRGB",
|
|
2055
2113
|
children: [
|
|
2056
|
-
/* @__PURE__ */ (0,
|
|
2057
|
-
/* @__PURE__ */ (0,
|
|
2058
|
-
/* @__PURE__ */ (0,
|
|
2114
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2115
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2116
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
2059
2117
|
]
|
|
2060
2118
|
}
|
|
2061
2119
|
),
|
|
2062
|
-
/* @__PURE__ */ (0,
|
|
2120
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2063
2121
|
"filter",
|
|
2064
2122
|
{
|
|
2065
2123
|
id: "filter6_f_48_113",
|
|
@@ -2070,13 +2128,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2070
2128
|
filterUnits: "userSpaceOnUse",
|
|
2071
2129
|
colorInterpolationFilters: "sRGB",
|
|
2072
2130
|
children: [
|
|
2073
|
-
/* @__PURE__ */ (0,
|
|
2074
|
-
/* @__PURE__ */ (0,
|
|
2075
|
-
/* @__PURE__ */ (0,
|
|
2131
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2132
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2133
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "1.65243" })
|
|
2076
2134
|
]
|
|
2077
2135
|
}
|
|
2078
2136
|
),
|
|
2079
|
-
/* @__PURE__ */ (0,
|
|
2137
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2080
2138
|
"filter",
|
|
2081
2139
|
{
|
|
2082
2140
|
id: "filter7_f_48_113",
|
|
@@ -2087,13 +2145,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2087
2145
|
filterUnits: "userSpaceOnUse",
|
|
2088
2146
|
colorInterpolationFilters: "sRGB",
|
|
2089
2147
|
children: [
|
|
2090
|
-
/* @__PURE__ */ (0,
|
|
2091
|
-
/* @__PURE__ */ (0,
|
|
2092
|
-
/* @__PURE__ */ (0,
|
|
2148
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2149
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2150
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
2093
2151
|
]
|
|
2094
2152
|
}
|
|
2095
2153
|
),
|
|
2096
|
-
/* @__PURE__ */ (0,
|
|
2154
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2097
2155
|
"filter",
|
|
2098
2156
|
{
|
|
2099
2157
|
id: "filter8_f_48_113",
|
|
@@ -2104,13 +2162,13 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2104
2162
|
filterUnits: "userSpaceOnUse",
|
|
2105
2163
|
colorInterpolationFilters: "sRGB",
|
|
2106
2164
|
children: [
|
|
2107
|
-
/* @__PURE__ */ (0,
|
|
2108
|
-
/* @__PURE__ */ (0,
|
|
2109
|
-
/* @__PURE__ */ (0,
|
|
2165
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
2166
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
2167
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
2110
2168
|
]
|
|
2111
2169
|
}
|
|
2112
2170
|
),
|
|
2113
|
-
/* @__PURE__ */ (0,
|
|
2171
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2114
2172
|
"radialGradient",
|
|
2115
2173
|
{
|
|
2116
2174
|
id: "paint0_radial_48_113",
|
|
@@ -2120,20 +2178,20 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2120
2178
|
gradientTransform: "matrix(-0.498722 -11.9519 17.9311 -0.717223 9.06911 20.3322)",
|
|
2121
2179
|
gradientUnits: "userSpaceOnUse",
|
|
2122
2180
|
children: [
|
|
2123
|
-
/* @__PURE__ */ (0,
|
|
2124
|
-
/* @__PURE__ */ (0,
|
|
2125
|
-
/* @__PURE__ */ (0,
|
|
2126
|
-
/* @__PURE__ */ (0,
|
|
2127
|
-
/* @__PURE__ */ (0,
|
|
2128
|
-
/* @__PURE__ */ (0,
|
|
2129
|
-
/* @__PURE__ */ (0,
|
|
2130
|
-
/* @__PURE__ */ (0,
|
|
2131
|
-
/* @__PURE__ */ (0,
|
|
2132
|
-
/* @__PURE__ */ (0,
|
|
2181
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.141612", stopColor: "#1ABD4D" }),
|
|
2182
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.247515", stopColor: "#6EC30D" }),
|
|
2183
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.311547", stopColor: "#8AC502" }),
|
|
2184
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.366013", stopColor: "#A2C600" }),
|
|
2185
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.445673", stopColor: "#C8C903" }),
|
|
2186
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.540305", stopColor: "#EBCB03" }),
|
|
2187
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.615636", stopColor: "#F7CD07" }),
|
|
2188
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.699345", stopColor: "#FDCD04" }),
|
|
2189
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.771242", stopColor: "#FDCE05" }),
|
|
2190
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.860566", stopColor: "#FFCE0A" })
|
|
2133
2191
|
]
|
|
2134
2192
|
}
|
|
2135
2193
|
),
|
|
2136
|
-
/* @__PURE__ */ (0,
|
|
2194
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2137
2195
|
"radialGradient",
|
|
2138
2196
|
{
|
|
2139
2197
|
id: "paint1_radial_48_113",
|
|
@@ -2143,12 +2201,12 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2143
2201
|
gradientTransform: "matrix(8.46967 -2.03557e-05 -1.19045e-05 10.7093 20.253 6.36819)",
|
|
2144
2202
|
gradientUnits: "userSpaceOnUse",
|
|
2145
2203
|
children: [
|
|
2146
|
-
/* @__PURE__ */ (0,
|
|
2147
|
-
/* @__PURE__ */ (0,
|
|
2204
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.408458", stopColor: "#FB4E5A" }),
|
|
2205
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "1", stopColor: "#FF4540" })
|
|
2148
2206
|
]
|
|
2149
2207
|
}
|
|
2150
2208
|
),
|
|
2151
|
-
/* @__PURE__ */ (0,
|
|
2209
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2152
2210
|
"radialGradient",
|
|
2153
2211
|
{
|
|
2154
2212
|
id: "paint2_radial_48_113",
|
|
@@ -2158,18 +2216,18 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2158
2216
|
gradientTransform: "matrix(-11.8666 6.43492 8.91875 15.766 15.6277 -1.68219)",
|
|
2159
2217
|
gradientUnits: "userSpaceOnUse",
|
|
2160
2218
|
children: [
|
|
2161
|
-
/* @__PURE__ */ (0,
|
|
2162
|
-
/* @__PURE__ */ (0,
|
|
2163
|
-
/* @__PURE__ */ (0,
|
|
2164
|
-
/* @__PURE__ */ (0,
|
|
2165
|
-
/* @__PURE__ */ (0,
|
|
2166
|
-
/* @__PURE__ */ (0,
|
|
2167
|
-
/* @__PURE__ */ (0,
|
|
2168
|
-
/* @__PURE__ */ (0,
|
|
2219
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.231273", stopColor: "#FF4541" }),
|
|
2220
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.311547", stopColor: "#FF4540" }),
|
|
2221
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.457516", stopColor: "#FF4640" }),
|
|
2222
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.540305", stopColor: "#FF473F" }),
|
|
2223
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.699346", stopColor: "#FF5138" }),
|
|
2224
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.771242", stopColor: "#FF5B33" }),
|
|
2225
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.860566", stopColor: "#FF6C29" }),
|
|
2226
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "1", stopColor: "#FF8C18" })
|
|
2169
2227
|
]
|
|
2170
2228
|
}
|
|
2171
2229
|
),
|
|
2172
|
-
/* @__PURE__ */ (0,
|
|
2230
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2173
2231
|
"radialGradient",
|
|
2174
2232
|
{
|
|
2175
2233
|
id: "paint3_radial_48_113",
|
|
@@ -2179,19 +2237,19 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2179
2237
|
gradientTransform: "matrix(-21.5204 -27.5047 -10.3696 7.77752 12.4702 22.5743)",
|
|
2180
2238
|
gradientUnits: "userSpaceOnUse",
|
|
2181
2239
|
children: [
|
|
2182
|
-
/* @__PURE__ */ (0,
|
|
2183
|
-
/* @__PURE__ */ (0,
|
|
2184
|
-
/* @__PURE__ */ (0,
|
|
2185
|
-
/* @__PURE__ */ (0,
|
|
2186
|
-
/* @__PURE__ */ (0,
|
|
2187
|
-
/* @__PURE__ */ (0,
|
|
2188
|
-
/* @__PURE__ */ (0,
|
|
2189
|
-
/* @__PURE__ */ (0,
|
|
2190
|
-
/* @__PURE__ */ (0,
|
|
2240
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.131546", stopColor: "#0CBA65" }),
|
|
2241
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.209784", stopColor: "#0BB86D" }),
|
|
2242
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.297297", stopColor: "#09B479" }),
|
|
2243
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.396257", stopColor: "#08AD93" }),
|
|
2244
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.477124", stopColor: "#0AA6A9" }),
|
|
2245
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.568425", stopColor: "#0D9CC6" }),
|
|
2246
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.667385", stopColor: "#1893DD" }),
|
|
2247
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.768727", stopColor: "#258BF1" }),
|
|
2248
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.858506", stopColor: "#3086FF" })
|
|
2191
2249
|
]
|
|
2192
2250
|
}
|
|
2193
2251
|
),
|
|
2194
|
-
/* @__PURE__ */ (0,
|
|
2252
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2195
2253
|
"radialGradient",
|
|
2196
2254
|
{
|
|
2197
2255
|
id: "paint4_radial_48_113",
|
|
@@ -2201,18 +2259,18 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2201
2259
|
gradientTransform: "matrix(-1.52295 12.8522 18.1501 2.06168 11.2421 2.13475)",
|
|
2202
2260
|
gradientUnits: "userSpaceOnUse",
|
|
2203
2261
|
children: [
|
|
2204
|
-
/* @__PURE__ */ (0,
|
|
2205
|
-
/* @__PURE__ */ (0,
|
|
2206
|
-
/* @__PURE__ */ (0,
|
|
2207
|
-
/* @__PURE__ */ (0,
|
|
2208
|
-
/* @__PURE__ */ (0,
|
|
2209
|
-
/* @__PURE__ */ (0,
|
|
2210
|
-
/* @__PURE__ */ (0,
|
|
2211
|
-
/* @__PURE__ */ (0,
|
|
2262
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.366013", stopColor: "#FF4E3A" }),
|
|
2263
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.457516", stopColor: "#FF8A1B" }),
|
|
2264
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.540305", stopColor: "#FFA312" }),
|
|
2265
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.615636", stopColor: "#FFB60C" }),
|
|
2266
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.771242", stopColor: "#FFCD0A" }),
|
|
2267
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.860566", stopColor: "#FECF0A" }),
|
|
2268
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.915033", stopColor: "#FECF08" }),
|
|
2269
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "1", stopColor: "#FDCD01" })
|
|
2212
2270
|
]
|
|
2213
2271
|
}
|
|
2214
2272
|
),
|
|
2215
|
-
/* @__PURE__ */ (0,
|
|
2273
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2216
2274
|
"radialGradient",
|
|
2217
2275
|
{
|
|
2218
2276
|
id: "paint5_radial_48_113",
|
|
@@ -2222,15 +2280,15 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2222
2280
|
gradientTransform: "matrix(-4.40212 4.76677 -13.7322 -12.1566 9.10044 2.00144)",
|
|
2223
2281
|
gradientUnits: "userSpaceOnUse",
|
|
2224
2282
|
children: [
|
|
2225
|
-
/* @__PURE__ */ (0,
|
|
2226
|
-
/* @__PURE__ */ (0,
|
|
2227
|
-
/* @__PURE__ */ (0,
|
|
2228
|
-
/* @__PURE__ */ (0,
|
|
2229
|
-
/* @__PURE__ */ (0,
|
|
2283
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.315904", stopColor: "#FF4C3C" }),
|
|
2284
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.603818", stopColor: "#FF692C" }),
|
|
2285
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.726837", stopColor: "#FF7825" }),
|
|
2286
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.884534", stopColor: "#FF8D1B" }),
|
|
2287
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "1", stopColor: "#FF9F13" })
|
|
2230
2288
|
]
|
|
2231
2289
|
}
|
|
2232
2290
|
),
|
|
2233
|
-
/* @__PURE__ */ (0,
|
|
2291
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2234
2292
|
"radialGradient",
|
|
2235
2293
|
{
|
|
2236
2294
|
id: "paint6_radial_48_113",
|
|
@@ -2240,20 +2298,20 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2240
2298
|
gradientTransform: "matrix(-11.8666 -6.43492 8.91876 -15.766 15.6277 25.6232)",
|
|
2241
2299
|
gradientUnits: "userSpaceOnUse",
|
|
2242
2300
|
children: [
|
|
2243
|
-
/* @__PURE__ */ (0,
|
|
2244
|
-
/* @__PURE__ */ (0,
|
|
2245
|
-
/* @__PURE__ */ (0,
|
|
2246
|
-
/* @__PURE__ */ (0,
|
|
2247
|
-
/* @__PURE__ */ (0,
|
|
2248
|
-
/* @__PURE__ */ (0,
|
|
2249
|
-
/* @__PURE__ */ (0,
|
|
2250
|
-
/* @__PURE__ */ (0,
|
|
2251
|
-
/* @__PURE__ */ (0,
|
|
2252
|
-
/* @__PURE__ */ (0,
|
|
2301
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.231273", stopColor: "#0FBC5F" }),
|
|
2302
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.311547", stopColor: "#0FBC5F" }),
|
|
2303
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.366013", stopColor: "#0FBC5E" }),
|
|
2304
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.457516", stopColor: "#0FBC5D" }),
|
|
2305
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.540305", stopColor: "#12BC58" }),
|
|
2306
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.699346", stopColor: "#28BF3C" }),
|
|
2307
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.771242", stopColor: "#38C02B" }),
|
|
2308
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.860566", stopColor: "#52C218" }),
|
|
2309
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "0.915033", stopColor: "#67C30F" }),
|
|
2310
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "1", stopColor: "#86C504" })
|
|
2253
2311
|
]
|
|
2254
2312
|
}
|
|
2255
2313
|
),
|
|
2256
|
-
/* @__PURE__ */ (0,
|
|
2314
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
2257
2315
|
"linearGradient",
|
|
2258
2316
|
{
|
|
2259
2317
|
id: "paint7_linear_48_113",
|
|
@@ -2263,8 +2321,8 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2263
2321
|
y2: "21.5116",
|
|
2264
2322
|
gradientUnits: "userSpaceOnUse",
|
|
2265
2323
|
children: [
|
|
2266
|
-
/* @__PURE__ */ (0,
|
|
2267
|
-
/* @__PURE__ */ (0,
|
|
2324
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { stopColor: "#0FBC5C" }),
|
|
2325
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("stop", { offset: "1", stopColor: "#0CBA65" })
|
|
2268
2326
|
]
|
|
2269
2327
|
}
|
|
2270
2328
|
)
|
|
@@ -2272,7 +2330,7 @@ var import_jsx_runtime99 = require("react/jsx-runtime"), IconGoogleLogoFilled =
|
|
|
2272
2330
|
] }), GoogleLogoFilled_default = IconGoogleLogoFilled;
|
|
2273
2331
|
|
|
2274
2332
|
// src/components/Handtool.tsx
|
|
2275
|
-
var
|
|
2333
|
+
var import_jsx_runtime103 = require("react/jsx-runtime"), IconHandtool = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
2276
2334
|
"path",
|
|
2277
2335
|
{
|
|
2278
2336
|
fill: stroke || color || "currentColor",
|
|
@@ -2281,16 +2339,16 @@ var import_jsx_runtime100 = require("react/jsx-runtime"), IconHandtool = ({ size
|
|
|
2281
2339
|
) }), Handtool_default = IconHandtool;
|
|
2282
2340
|
|
|
2283
2341
|
// src/components/Help.tsx
|
|
2284
|
-
var
|
|
2285
|
-
/* @__PURE__ */ (0,
|
|
2286
|
-
/* @__PURE__ */ (0,
|
|
2342
|
+
var import_jsx_runtime104 = require("react/jsx-runtime"), IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2343
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 16.5V18.75H10.875V16.5H13.125Z" }),
|
|
2344
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
2287
2345
|
"path",
|
|
2288
2346
|
{
|
|
2289
2347
|
fill: stroke || color || "currentColor",
|
|
2290
2348
|
d: "M9.75 9.75C9.75 8.50736 10.7574 7.5 12 7.5C13.2426 7.5 14.25 8.50736 14.25 9.75C14.25 10.9926 13.2426 12 12 12H10.875V14.25H12C14.4853 14.25 16.5 12.2353 16.5 9.75C16.5 7.26472 14.4853 5.25 12 5.25C9.51472 5.25 7.5 7.26472 7.5 9.75V10.5H9.75V9.75Z"
|
|
2291
2349
|
}
|
|
2292
2350
|
),
|
|
2293
|
-
/* @__PURE__ */ (0,
|
|
2351
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
2294
2352
|
"path",
|
|
2295
2353
|
{
|
|
2296
2354
|
fill: stroke || color || "currentColor",
|
|
@@ -2302,7 +2360,7 @@ var import_jsx_runtime101 = require("react/jsx-runtime"), IconHelp = ({ size, wi
|
|
|
2302
2360
|
] }), Help_default = IconHelp;
|
|
2303
2361
|
|
|
2304
2362
|
// src/components/HomepageFilled.tsx
|
|
2305
|
-
var
|
|
2363
|
+
var import_jsx_runtime105 = require("react/jsx-runtime"), IconHomepageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
2306
2364
|
"path",
|
|
2307
2365
|
{
|
|
2308
2366
|
fill: fill || color || "currentColor",
|
|
@@ -2313,7 +2371,7 @@ var import_jsx_runtime102 = require("react/jsx-runtime"), IconHomepageFilled = (
|
|
|
2313
2371
|
) }), HomepageFilled_default = IconHomepageFilled;
|
|
2314
2372
|
|
|
2315
2373
|
// src/components/Hotareacenter.tsx
|
|
2316
|
-
var
|
|
2374
|
+
var import_jsx_runtime106 = require("react/jsx-runtime"), IconHotareacenter = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
2317
2375
|
"path",
|
|
2318
2376
|
{
|
|
2319
2377
|
fill: "#191919",
|
|
@@ -2323,22 +2381,22 @@ var import_jsx_runtime103 = require("react/jsx-runtime"), IconHotareacenter = ({
|
|
|
2323
2381
|
) }), Hotareacenter_default = IconHotareacenter;
|
|
2324
2382
|
|
|
2325
2383
|
// src/components/ImageGeneration.tsx
|
|
2326
|
-
var
|
|
2327
|
-
/* @__PURE__ */ (0,
|
|
2384
|
+
var import_jsx_runtime107 = require("react/jsx-runtime"), IconImageGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2385
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
2328
2386
|
"path",
|
|
2329
2387
|
{
|
|
2330
2388
|
fill: stroke || color || "currentColor",
|
|
2331
2389
|
d: "M12 3.75H3.75V17.1592L9 11.9092L12 14.9092L14.9092 12H18.0908L12 18.0908L9 15.0908L3.84082 20.25H20.25V12H22.5V22.5H1.5V1.5H12V3.75Z"
|
|
2332
2390
|
}
|
|
2333
2391
|
),
|
|
2334
|
-
/* @__PURE__ */ (0,
|
|
2392
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
2335
2393
|
"path",
|
|
2336
2394
|
{
|
|
2337
2395
|
fill: stroke || color || "currentColor",
|
|
2338
2396
|
d: "M20.4287 3.57129L24 4.28613V5.71387L20.4287 6.42871L19.7139 10H18.2861L17.5713 6.42871L14 5.71387V4.28613L17.5713 3.57129L18.2861 0H19.7139L20.4287 3.57129Z"
|
|
2339
2397
|
}
|
|
2340
2398
|
),
|
|
2341
|
-
/* @__PURE__ */ (0,
|
|
2399
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
2342
2400
|
"path",
|
|
2343
2401
|
{
|
|
2344
2402
|
fill: stroke || color || "currentColor",
|
|
@@ -2348,8 +2406,8 @@ var import_jsx_runtime104 = require("react/jsx-runtime"), IconImageGeneration =
|
|
|
2348
2406
|
] }), ImageGeneration_default = IconImageGeneration;
|
|
2349
2407
|
|
|
2350
2408
|
// src/components/ImageLoadFailedFilled.tsx
|
|
2351
|
-
var
|
|
2352
|
-
/* @__PURE__ */ (0,
|
|
2409
|
+
var import_jsx_runtime108 = require("react/jsx-runtime"), IconImageLoadFailedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2410
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
2353
2411
|
"path",
|
|
2354
2412
|
{
|
|
2355
2413
|
fill: fill || color || "currentColor",
|
|
@@ -2358,7 +2416,7 @@ var import_jsx_runtime105 = require("react/jsx-runtime"), IconImageLoadFailedFil
|
|
|
2358
2416
|
clipRule: "evenodd"
|
|
2359
2417
|
}
|
|
2360
2418
|
),
|
|
2361
|
-
/* @__PURE__ */ (0,
|
|
2419
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
2362
2420
|
"path",
|
|
2363
2421
|
{
|
|
2364
2422
|
fill: fill || color || "currentColor",
|
|
@@ -2368,10 +2426,10 @@ var import_jsx_runtime105 = require("react/jsx-runtime"), IconImageLoadFailedFil
|
|
|
2368
2426
|
] }), ImageLoadFailedFilled_default = IconImageLoadFailedFilled;
|
|
2369
2427
|
|
|
2370
2428
|
// src/components/Info.tsx
|
|
2371
|
-
var
|
|
2372
|
-
/* @__PURE__ */ (0,
|
|
2373
|
-
/* @__PURE__ */ (0,
|
|
2374
|
-
/* @__PURE__ */ (0,
|
|
2429
|
+
var import_jsx_runtime109 = require("react/jsx-runtime"), IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2430
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 5.25V7.5H10.875V5.25H13.125Z" }),
|
|
2431
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)("path", { fill: stroke || color || "currentColor", d: "M9 12H10.875V18.75H15V16.5H13.125V9.75H9V12Z" }),
|
|
2432
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
2375
2433
|
"path",
|
|
2376
2434
|
{
|
|
2377
2435
|
fill: stroke || color || "currentColor",
|
|
@@ -2383,7 +2441,7 @@ var import_jsx_runtime106 = require("react/jsx-runtime"), IconInfo = ({ size, wi
|
|
|
2383
2441
|
] }), Info_default = IconInfo;
|
|
2384
2442
|
|
|
2385
2443
|
// src/components/Invitecode.tsx
|
|
2386
|
-
var
|
|
2444
|
+
var import_jsx_runtime110 = require("react/jsx-runtime"), IconInvitecode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
2387
2445
|
"path",
|
|
2388
2446
|
{
|
|
2389
2447
|
fill: fill || color || "currentColor",
|
|
@@ -2393,8 +2451,19 @@ var import_jsx_runtime107 = require("react/jsx-runtime"), IconInvitecode = ({ si
|
|
|
2393
2451
|
}
|
|
2394
2452
|
) }), Invitecode_default = IconInvitecode;
|
|
2395
2453
|
|
|
2454
|
+
// src/components/Invitefriends.tsx
|
|
2455
|
+
var import_jsx_runtime111 = require("react/jsx-runtime"), IconInvitefriends = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
2456
|
+
"path",
|
|
2457
|
+
{
|
|
2458
|
+
fill: stroke || color || "currentColor",
|
|
2459
|
+
d: "M8.625 0C9.96903 0 11.1754 0.589225 12 1.52345C12.8246 0.589225 14.031 0 15.375 0H19.5V5.25H24V12.75H22.5V22.5H1.5V12.75H0V5.25H4.5V0H8.625ZM6.75 2.25V5.25H10.875V4.5C10.875 3.25736 9.86764 2.25 8.625 2.25H6.75ZM21.75 7.5V10.5H2.25V7.5H21.75ZM17.25 2.25V5.25H13.125V4.5C13.125 3.25736 14.1324 2.25 15.375 2.25H17.25ZM20.25 12.75V20.25H13.125V12.75H20.25ZM10.875 12.75V20.25H3.75V12.75H10.875Z",
|
|
2460
|
+
fillRule: "evenodd",
|
|
2461
|
+
clipRule: "evenodd"
|
|
2462
|
+
}
|
|
2463
|
+
) }), Invitefriends_default = IconInvitefriends;
|
|
2464
|
+
|
|
2396
2465
|
// src/components/LeftFilled.tsx
|
|
2397
|
-
var
|
|
2466
|
+
var import_jsx_runtime112 = require("react/jsx-runtime"), IconLeftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
2398
2467
|
"path",
|
|
2399
2468
|
{
|
|
2400
2469
|
fill: fill || color || "currentColor",
|
|
@@ -2404,16 +2473,25 @@ var import_jsx_runtime108 = require("react/jsx-runtime"), IconLeftFilled = ({ si
|
|
|
2404
2473
|
}
|
|
2405
2474
|
) }), LeftFilled_default = IconLeftFilled;
|
|
2406
2475
|
|
|
2476
|
+
// src/components/LikeFilled.tsx
|
|
2477
|
+
var import_jsx_runtime113 = require("react/jsx-runtime"), IconLikeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
2478
|
+
"path",
|
|
2479
|
+
{
|
|
2480
|
+
fill: fill || color || "currentColor",
|
|
2481
|
+
d: "M1.86396 12.364L12 22.5L22.136 12.364C23.3295 11.1705 24 9.55179 24 7.86396V7.57851C24 4.22144 21.2786 1.5 17.9215 1.5C16.0749 1.5 14.3285 2.33938 13.175 3.7813L12 5.25L10.825 3.7813C9.6715 2.33938 7.92507 1.5 6.07852 1.5C2.72144 1.5 0 4.22144 0 7.57851V7.86396C0 9.55179 0.670485 11.1705 1.86396 12.364Z"
|
|
2482
|
+
}
|
|
2483
|
+
) }), LikeFilled_default = IconLikeFilled;
|
|
2484
|
+
|
|
2407
2485
|
// src/components/Loading.tsx
|
|
2408
|
-
var
|
|
2409
|
-
/* @__PURE__ */ (0,
|
|
2486
|
+
var import_jsx_runtime114 = require("react/jsx-runtime"), IconLoading = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2487
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
2410
2488
|
"path",
|
|
2411
2489
|
{
|
|
2412
2490
|
fill: fill || color || "currentColor",
|
|
2413
2491
|
d: "M4.10058 17.2783C3.0567 15.716 2.49999 13.8789 2.49999 12L0 12C1.03743e-07 14.3733 0.703882 16.6936 2.02246 18.6669L2.27636 19.0312C3.57677 20.8296 5.35246 22.2353 7.40818 23.0869L7.82127 23.249C9.90155 24.0218 12.1585 24.2035 14.3408 23.7695C16.6686 23.3064 18.8071 22.1635 20.4853 20.4853L20.7939 20.165C22.3038 18.5388 23.3354 16.5229 23.7695 14.3408L23.8476 13.9033C24.1761 11.8583 23.9702 9.76285 23.249 7.82127L23.0869 7.40818C22.2353 5.35246 20.8296 3.57677 19.0312 2.27636L18.6669 2.02246C16.6936 0.703882 14.3733 -1.03743e-07 12 0L12 2.49999C13.8789 2.49999 15.716 3.0567 17.2783 4.10058C18.8405 5.14444 20.0583 6.62838 20.7773 8.36424C21.4963 10.1001 21.6839 12.0107 21.3173 13.8535C20.9507 15.6962 20.0463 17.3892 18.7177 18.7177C17.3892 20.0463 15.6962 20.9507 13.8535 21.3173C12.0107 21.6839 10.1001 21.4953 8.36424 20.7763C6.62853 20.0573 5.14437 18.8404 4.10058 17.2783Z"
|
|
2414
2492
|
}
|
|
2415
2493
|
),
|
|
2416
|
-
/* @__PURE__ */ (0,
|
|
2494
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
2417
2495
|
"path",
|
|
2418
2496
|
{
|
|
2419
2497
|
fill: stroke || color || "currentColor",
|
|
@@ -2423,15 +2501,15 @@ var import_jsx_runtime109 = require("react/jsx-runtime"), IconLoading = ({ size,
|
|
|
2423
2501
|
] }), Loading_default = IconLoading;
|
|
2424
2502
|
|
|
2425
2503
|
// src/components/Login.tsx
|
|
2426
|
-
var
|
|
2427
|
-
/* @__PURE__ */ (0,
|
|
2504
|
+
var import_jsx_runtime115 = require("react/jsx-runtime"), IconLogin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2505
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
2428
2506
|
"path",
|
|
2429
2507
|
{
|
|
2430
2508
|
fill: stroke || color || "currentColor",
|
|
2431
2509
|
d: "M24 1.5L13.5 1.5V3.75H21.75V20.25H13.5V22.5H24V1.5Z"
|
|
2432
2510
|
}
|
|
2433
2511
|
),
|
|
2434
|
-
/* @__PURE__ */ (0,
|
|
2512
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
2435
2513
|
"path",
|
|
2436
2514
|
{
|
|
2437
2515
|
fill: stroke || color || "currentColor",
|
|
@@ -2443,8 +2521,8 @@ var import_jsx_runtime110 = require("react/jsx-runtime"), IconLogin = ({ size, w
|
|
|
2443
2521
|
] }), Login_default = IconLogin;
|
|
2444
2522
|
|
|
2445
2523
|
// src/components/Logout.tsx
|
|
2446
|
-
var
|
|
2447
|
-
/* @__PURE__ */ (0,
|
|
2524
|
+
var import_jsx_runtime116 = require("react/jsx-runtime"), IconLogout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2525
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
2448
2526
|
"path",
|
|
2449
2527
|
{
|
|
2450
2528
|
fill: stroke || color || "currentColor",
|
|
@@ -2453,7 +2531,7 @@ var import_jsx_runtime111 = require("react/jsx-runtime"), IconLogout = ({ size,
|
|
|
2453
2531
|
clipRule: "evenodd"
|
|
2454
2532
|
}
|
|
2455
2533
|
),
|
|
2456
|
-
/* @__PURE__ */ (0,
|
|
2534
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)(
|
|
2457
2535
|
"path",
|
|
2458
2536
|
{
|
|
2459
2537
|
fill: stroke || color || "currentColor",
|
|
@@ -2463,8 +2541,8 @@ var import_jsx_runtime111 = require("react/jsx-runtime"), IconLogout = ({ size,
|
|
|
2463
2541
|
] }), Logout_default = IconLogout;
|
|
2464
2542
|
|
|
2465
2543
|
// src/components/Magic.tsx
|
|
2466
|
-
var
|
|
2467
|
-
/* @__PURE__ */ (0,
|
|
2544
|
+
var import_jsx_runtime117 = require("react/jsx-runtime"), IconMagic = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2545
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
2468
2546
|
"path",
|
|
2469
2547
|
{
|
|
2470
2548
|
fill: stroke || color || "currentColor",
|
|
@@ -2473,15 +2551,15 @@ var import_jsx_runtime112 = require("react/jsx-runtime"), IconMagic = ({ size, w
|
|
|
2473
2551
|
clipRule: "evenodd"
|
|
2474
2552
|
}
|
|
2475
2553
|
),
|
|
2476
|
-
/* @__PURE__ */ (0,
|
|
2477
|
-
/* @__PURE__ */ (0,
|
|
2554
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { fill: stroke || color || "currentColor", d: "M5.25 3L3 5.25L5.25 7.5L7.5 5.25L5.25 3Z" }),
|
|
2555
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
2478
2556
|
"path",
|
|
2479
2557
|
{
|
|
2480
2558
|
fill: stroke || color || "currentColor",
|
|
2481
2559
|
d: "M19.5 14.25L21.75 12L24 14.25L21.75 16.5L19.5 14.25Z"
|
|
2482
2560
|
}
|
|
2483
2561
|
),
|
|
2484
|
-
/* @__PURE__ */ (0,
|
|
2562
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
2485
2563
|
"path",
|
|
2486
2564
|
{
|
|
2487
2565
|
fill: stroke || color || "currentColor",
|
|
@@ -2490,8 +2568,48 @@ var import_jsx_runtime112 = require("react/jsx-runtime"), IconMagic = ({ size, w
|
|
|
2490
2568
|
)
|
|
2491
2569
|
] }), Magic_default = IconMagic;
|
|
2492
2570
|
|
|
2571
|
+
// src/components/MeFilled.tsx
|
|
2572
|
+
var import_jsx_runtime118 = require("react/jsx-runtime"), IconMeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2573
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
2574
|
+
"path",
|
|
2575
|
+
{
|
|
2576
|
+
fill: fill || color || "currentColor",
|
|
2577
|
+
d: "M12 10.5C14.4853 10.5 16.5 8.48528 16.5 6C16.5 3.51472 14.4853 1.5 12 1.5C9.51472 1.5 7.5 3.51472 7.5 6C7.5 8.48528 9.51472 10.5 12 10.5Z"
|
|
2578
|
+
}
|
|
2579
|
+
),
|
|
2580
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
2581
|
+
"path",
|
|
2582
|
+
{
|
|
2583
|
+
fill: fill || color || "currentColor",
|
|
2584
|
+
d: "M21 18C21 15.5147 18.9853 13.5 16.5 13.5H7.5C5.01472 13.5 3 15.5147 3 18V22.5H21V18Z"
|
|
2585
|
+
}
|
|
2586
|
+
)
|
|
2587
|
+
] }), MeFilled_default = IconMeFilled;
|
|
2588
|
+
|
|
2589
|
+
// src/components/Me.tsx
|
|
2590
|
+
var import_jsx_runtime119 = require("react/jsx-runtime"), IconMe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2591
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
2592
|
+
"path",
|
|
2593
|
+
{
|
|
2594
|
+
fill: stroke || color || "currentColor",
|
|
2595
|
+
d: "M16.5 6C16.5 8.48528 14.4853 10.5 12 10.5C9.51472 10.5 7.5 8.48528 7.5 6C7.5 3.51472 9.51472 1.5 12 1.5C14.4853 1.5 16.5 3.51472 16.5 6ZM12 8.25C13.2426 8.25 14.25 7.24264 14.25 6C14.25 4.75736 13.2426 3.75 12 3.75C10.7574 3.75 9.75 4.75736 9.75 6C9.75 7.24264 10.7574 8.25 12 8.25Z",
|
|
2596
|
+
fillRule: "evenodd",
|
|
2597
|
+
clipRule: "evenodd"
|
|
2598
|
+
}
|
|
2599
|
+
),
|
|
2600
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
2601
|
+
"path",
|
|
2602
|
+
{
|
|
2603
|
+
fill: stroke || color || "currentColor",
|
|
2604
|
+
d: "M16.5 13.5C18.9853 13.5 21 15.5147 21 18V22.5H3V18C3 15.5147 5.01472 13.5 7.5 13.5H16.5ZM18.75 18C18.75 16.7574 17.7426 15.75 16.5 15.75H7.5C6.25736 15.75 5.25 16.7574 5.25 18V20.25H18.75V18Z",
|
|
2605
|
+
fillRule: "evenodd",
|
|
2606
|
+
clipRule: "evenodd"
|
|
2607
|
+
}
|
|
2608
|
+
)
|
|
2609
|
+
] }), Me_default = IconMe;
|
|
2610
|
+
|
|
2493
2611
|
// src/components/ModelGeminiFilled.tsx
|
|
2494
|
-
var
|
|
2612
|
+
var import_jsx_runtime120 = require("react/jsx-runtime"), IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
2495
2613
|
"path",
|
|
2496
2614
|
{
|
|
2497
2615
|
fill: fill || color || "currentColor",
|
|
@@ -2500,7 +2618,7 @@ var import_jsx_runtime113 = require("react/jsx-runtime"), IconModelGeminiFilled
|
|
|
2500
2618
|
) }), ModelGeminiFilled_default = IconModelGeminiFilled;
|
|
2501
2619
|
|
|
2502
2620
|
// src/components/ModelOpenaiFilled.tsx
|
|
2503
|
-
var
|
|
2621
|
+
var import_jsx_runtime121 = require("react/jsx-runtime"), IconModelOpenaiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime121.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
|
|
2504
2622
|
"path",
|
|
2505
2623
|
{
|
|
2506
2624
|
fill: fill || color || "currentColor",
|
|
@@ -2508,9 +2626,18 @@ var import_jsx_runtime114 = require("react/jsx-runtime"), IconModelOpenaiFilled
|
|
|
2508
2626
|
}
|
|
2509
2627
|
) }), ModelOpenaiFilled_default = IconModelOpenaiFilled;
|
|
2510
2628
|
|
|
2629
|
+
// src/components/ModelClaudeFilled.tsx
|
|
2630
|
+
var import_jsx_runtime122 = require("react/jsx-runtime"), IconModelClaudeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
2631
|
+
"path",
|
|
2632
|
+
{
|
|
2633
|
+
fill: fill || color || "currentColor",
|
|
2634
|
+
d: "M10.7 20.05L10.98 18.872L11.3 17.352L11.56 16.136L11.8 14.635L11.94 14.141L11.92 14.103L11.82 14.122L10.62 15.68L8.8 18.017L7.36 19.461L7.02 19.594L6.42 19.309L6.48 18.777L6.82 18.321L8.8 15.908L10 14.407L10.78 13.552L10.76 13.438H10.72L5.44 16.706L4.5 16.82L4.08 16.459L4.14 15.87L4.34 15.68L5.92 14.635L9.86 12.545L9.92 12.355L9.86 12.26H9.66L9 12.222L6.76 12.165L4.82 12.089L2.92 11.994L2.44 11.899L2 11.329L2.04 11.044L2.44 10.797L3.02 10.835L4.28 10.93L6.18 11.044L7.56 11.12L9.6 11.329H9.92L9.96 11.196L9.86 11.12L9.78 11.044L7.8 9.79L5.68 8.46L4.56 7.681L3.96 7.282L3.66 6.921L3.54 6.123L4.08 5.553L4.82 5.61L5 5.648L5.74 6.199L7.32 7.358L9.4 8.821L9.7 9.049L9.84 8.973V8.916L9.7 8.707L8.58 6.769L7.38 4.793L6.84 3.976L6.7 3.482C6.64667 3.311 6.62 3.121 6.62 2.912L7.24 2.114L7.58 2L8.42 2.114L8.76 2.399L9.28 3.52L10.1 5.287L11.4 7.681L11.78 8.403L11.98 9.049L12.06 9.258H12.2V9.144L12.3 7.776L12.5 6.123L12.7 3.995L12.76 3.387L13.08 2.665L13.7 2.285L14.18 2.494L14.58 3.045L14.52 3.387L14.3 4.85L13.82 7.149L13.52 8.707H13.7L13.9 8.498L14.72 7.472L16.1 5.838L16.7 5.192L17.42 4.47L17.88 4.128H18.74L19.36 5.021L19.08 5.952L18.2 7.016L17.46 7.909L16.4 9.258L15.76 10.341L15.82 10.417H15.96L18.34 9.923L19.64 9.714L21.16 9.467L21.86 9.771L21.94 10.075L21.66 10.721L20.02 11.101L18.1 11.462L15.24 12.108L15.2 12.127L15.24 12.184L16.52 12.298L17.08 12.336H18.44L20.96 12.507L21.62 12.925L22 13.419L21.94 13.818L20.92 14.293L19.56 13.989L16.36 13.267L15.28 13.02H15.12V13.096L16.04 13.951L17.7 15.376L19.8 17.219L19.9 17.675L19.64 18.055L19.36 18.017L17.52 16.687L16.8 16.098L15.2 14.825H15.1V14.958L15.46 15.471L17.42 18.264L17.52 19.119L17.38 19.385L16.86 19.556L16.32 19.461L15.16 17.941L13.98 16.212L13.02 14.673L12.92 14.749L12.34 20.487L12.08 20.772L11.48 21L10.98 20.639L10.7 20.05Z"
|
|
2635
|
+
}
|
|
2636
|
+
) }), ModelClaudeFilled_default = IconModelClaudeFilled;
|
|
2637
|
+
|
|
2511
2638
|
// src/components/ModelDeepmindFilled.tsx
|
|
2512
|
-
var
|
|
2513
|
-
/* @__PURE__ */ (0,
|
|
2639
|
+
var import_jsx_runtime123 = require("react/jsx-runtime"), IconModelDeepmindFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2640
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("g", { clipPath: "url(#clip0_40_67)", children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
2514
2641
|
"path",
|
|
2515
2642
|
{
|
|
2516
2643
|
fill: fill || color || "currentColor",
|
|
@@ -2519,27 +2646,27 @@ var import_jsx_runtime115 = require("react/jsx-runtime"), IconModelDeepmindFille
|
|
|
2519
2646
|
clipRule: "evenodd"
|
|
2520
2647
|
}
|
|
2521
2648
|
) }),
|
|
2522
|
-
/* @__PURE__ */ (0,
|
|
2649
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("clipPath", { id: "clip0_40_67", children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("rect", { width: "20", height: "20", fill: stroke || color || "currentColor", transform: "translate(2 2)" }) }) })
|
|
2523
2650
|
] }), ModelDeepmindFilled_default = IconModelDeepmindFilled;
|
|
2524
2651
|
|
|
2525
2652
|
// src/components/ModelSeedFilled.tsx
|
|
2526
|
-
var
|
|
2527
|
-
/* @__PURE__ */ (0,
|
|
2528
|
-
/* @__PURE__ */ (0,
|
|
2653
|
+
var import_jsx_runtime124 = require("react/jsx-runtime"), IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2654
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { fill: fill || color || "currentColor", d: "M23 2.95271V20.0401L19.2211 21V2L23 2.95271Z" }),
|
|
2655
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
2529
2656
|
"path",
|
|
2530
2657
|
{
|
|
2531
2658
|
fill: fill || color || "currentColor",
|
|
2532
2659
|
d: "M10.7528 11.4648V19.5633L6.98126 20.5241V10.5048L10.7528 11.4648Z"
|
|
2533
2660
|
}
|
|
2534
2661
|
),
|
|
2535
|
-
/* @__PURE__ */ (0,
|
|
2662
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
2536
2663
|
"path",
|
|
2537
2664
|
{
|
|
2538
2665
|
fill: fill || color || "currentColor",
|
|
2539
2666
|
d: "M4.77158 3.95509V19.044L1 20.0048V2.99515L4.77158 3.95509Z"
|
|
2540
2667
|
}
|
|
2541
2668
|
),
|
|
2542
|
-
/* @__PURE__ */ (0,
|
|
2669
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
|
|
2543
2670
|
"path",
|
|
2544
2671
|
{
|
|
2545
2672
|
fill: fill || color || "currentColor",
|
|
@@ -2549,7 +2676,7 @@ var import_jsx_runtime116 = require("react/jsx-runtime"), IconModelSeedFilled =
|
|
|
2549
2676
|
] }), ModelSeedFilled_default = IconModelSeedFilled;
|
|
2550
2677
|
|
|
2551
2678
|
// src/components/ModelSoraFilled.tsx
|
|
2552
|
-
var
|
|
2679
|
+
var import_jsx_runtime125 = require("react/jsx-runtime"), IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("svg", { fill: "none", viewBox: "0 0 25 25", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
|
|
2553
2680
|
"path",
|
|
2554
2681
|
{
|
|
2555
2682
|
fill: fill || color || "currentColor",
|
|
@@ -2558,7 +2685,7 @@ var import_jsx_runtime117 = require("react/jsx-runtime"), IconModelSoraFilled =
|
|
|
2558
2685
|
) }), ModelSoraFilled_default = IconModelSoraFilled;
|
|
2559
2686
|
|
|
2560
2687
|
// src/components/ModelNanobananaLogoNomoFilled.tsx
|
|
2561
|
-
var
|
|
2688
|
+
var import_jsx_runtime126 = require("react/jsx-runtime"), IconModelNanobananaLogoNomoFilled = ({
|
|
2562
2689
|
size,
|
|
2563
2690
|
width,
|
|
2564
2691
|
height,
|
|
@@ -2566,64 +2693,64 @@ var import_jsx_runtime118 = require("react/jsx-runtime"), IconModelNanobananaLog
|
|
|
2566
2693
|
className,
|
|
2567
2694
|
fill,
|
|
2568
2695
|
stroke
|
|
2569
|
-
}) => /* @__PURE__ */ (0,
|
|
2570
|
-
/* @__PURE__ */ (0,
|
|
2696
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2697
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2571
2698
|
"path",
|
|
2572
2699
|
{
|
|
2573
2700
|
fill: "#5A5C62",
|
|
2574
2701
|
d: "M1.64625 17.835C1.86 18.2775 2.75438 18.2494 3.24751 18.0938C4.5075 17.6963 5.29125 16.6125 5.29125 16.6125L11.7863 13.8563L13.7756 12.8119C13.7756 12.8119 14.1619 12.1556 13.3894 11.655C12.6169 11.1544 12.075 11.1169 12.075 11.1169L9.83625 12.5419C9.83625 12.5419 8.39063 11.4169 6.9225 11.2463C5.52 11.085 3.77438 12.225 3.315 14.3775C2.94188 16.1231 2.35125 16.7381 2.17313 16.965C1.995 17.1938 1.4625 17.4563 1.64625 17.835Z"
|
|
2575
2702
|
}
|
|
2576
2703
|
),
|
|
2577
|
-
/* @__PURE__ */ (0,
|
|
2704
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2578
2705
|
"path",
|
|
2579
2706
|
{
|
|
2580
2707
|
fill: "#D5D6D7",
|
|
2581
2708
|
d: "M9.42749 6.0281C10.0031 4.1231 10.7306 1.89372 11.8294 1.1306C12.8025 0.455595 13.7494 0.57747 14.1994 0.871845C14.1994 0.871845 15.0112 1.20372 15.225 2.04185C15.5775 3.4181 15.1144 5.06997 14.8125 6.77622C14.5106 8.48247 14.3531 9.65622 14.2162 11.0268C14.2031 11.1506 11.9362 15.1856 11.9362 15.1856L10.1269 16.155C10.1269 16.155 8.74499 13.1662 8.76562 12.7443C8.78437 12.3206 9.00749 7.41935 9.42749 6.0281Z"
|
|
2582
2709
|
}
|
|
2583
2710
|
),
|
|
2584
|
-
/* @__PURE__ */ (0,
|
|
2711
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2585
2712
|
"path",
|
|
2586
2713
|
{
|
|
2587
2714
|
fill: "#C4C5C7",
|
|
2588
2715
|
d: "M14.1469 12.5513C14.1713 13.0069 13.0725 16.6388 13.0725 16.6388L10.125 16.1513C10.125 16.1513 8.03439 14.9138 7.97626 12.6694C7.88626 9.28501 8.46564 7.69126 8.88564 6.30001C9.46314 4.39876 10.7494 1.89376 11.8388 1.11751C12.4781 0.661886 13.1869 0.594387 13.4775 0.650637C13.4775 0.650637 11.5425 2.16564 10.5638 4.75689C9.58501 7.34814 9.35439 10.3425 9.35439 10.3425C9.35439 10.3425 10.0744 10.8731 11.7731 11.1169C13.0856 11.3063 14.2181 10.9856 14.2181 10.9856C14.2181 10.9856 14.115 11.9738 14.1469 12.5513Z"
|
|
2589
2716
|
}
|
|
2590
2717
|
),
|
|
2591
|
-
/* @__PURE__ */ (0,
|
|
2718
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2592
2719
|
"path",
|
|
2593
2720
|
{
|
|
2594
2721
|
fill: "#7B7C81",
|
|
2595
2722
|
d: "M8.00062 15.7031L9.17999 13.2394L9.11624 12.3619C9.11624 12.3619 8.86499 11.625 10.4344 12.8156C11.1619 13.3669 11.6006 14.3831 11.6006 14.3831C11.6006 14.3831 11.8219 13.8356 12.5981 13.1119C13.2881 12.4706 14.2162 12.1594 14.2162 12.1594C14.2162 12.1594 16.1437 11.7844 16.3537 11.9475C17.7131 13.0087 18.7069 14.3006 18.7069 14.3006L19.7062 18.0787L21.3675 19.0969C21.3675 19.0969 20.9137 19.7606 20.2575 19.5131C19.7456 19.32 19.1119 18.7406 18.7706 18.0112C18.3019 17.0081 17.3175 15.1106 16.8169 14.5106C15.8494 13.3556 14.9006 12.9337 14.1937 13.2694C13.3894 13.65 14.0325 17.4487 14.0325 17.4487L19.2037 21.8006L19.2919 22.3931C19.2919 22.3931 18.54 23.115 16.4681 23.0475C14.3962 22.98 11.625 22.2131 9.87187 19.8225C8.32499 17.715 8.00062 15.7031 8.00062 15.7031Z"
|
|
2596
2723
|
}
|
|
2597
2724
|
),
|
|
2598
|
-
/* @__PURE__ */ (0,
|
|
2725
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2599
2726
|
"path",
|
|
2600
2727
|
{
|
|
2601
2728
|
fill: "#85878B",
|
|
2602
2729
|
d: "M12.0787 15.93C12.0337 16.9706 12.6825 18.5475 14.1825 19.8619C15.6806 21.1763 17.2631 21.6113 18.2456 21.6863C18.9581 21.7406 19.17 21.3338 19.17 21.3338C19.17 21.3338 17.7337 20.0119 16.6669 18.9525C15.6544 17.9456 14.5519 15.8306 14.3119 14.8575C14.0719 13.8844 14.2894 13.23 14.2894 13.23C14.2894 13.23 13.8244 13.3594 13.14 14.0456C12.4762 14.7113 12.1031 15.3525 12.0787 15.93Z"
|
|
2603
2730
|
}
|
|
2604
2731
|
),
|
|
2605
|
-
/* @__PURE__ */ (0,
|
|
2732
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2606
2733
|
"path",
|
|
2607
2734
|
{
|
|
2608
2735
|
fill: "#1B1D24",
|
|
2609
2736
|
d: "M18.4781 22.2638C18.6337 22.6256 19.1681 22.6406 19.4006 22.44C19.62 22.2506 19.8337 21.8738 19.6125 21.4519C19.4662 21.1744 18.9862 21.0975 18.7162 21.3131C18.4462 21.5288 18.3375 21.9356 18.4781 22.2638Z"
|
|
2610
2737
|
}
|
|
2611
2738
|
),
|
|
2612
|
-
/* @__PURE__ */ (0,
|
|
2739
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2613
2740
|
"path",
|
|
2614
2741
|
{
|
|
2615
2742
|
fill: "#D5D6D7",
|
|
2616
2743
|
d: "M19.545 18.345C20.16 19.1981 20.7769 19.3275 21.0319 19.3556C21.255 19.3818 21.4988 19.0968 21.4706 18.8343C21.4425 18.5718 21.0113 18.2025 20.9588 17.3962C20.9063 16.59 20.97 13.6331 19.3294 11.9343C18.1725 10.7381 16.755 11.1506 15.84 11.4675C14.8088 11.8237 14.2144 12.1612 14.2144 12.1612C14.2144 12.1612 15.0581 12.1031 16.5131 13.2506C17.3588 13.9181 17.8556 14.835 18.3244 15.8868C18.6619 16.6481 19.1119 17.745 19.545 18.345Z"
|
|
2617
2744
|
}
|
|
2618
2745
|
),
|
|
2619
|
-
/* @__PURE__ */ (0,
|
|
2746
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2620
2747
|
"path",
|
|
2621
2748
|
{
|
|
2622
2749
|
fill: "#85878B",
|
|
2623
2750
|
d: "M3.1875 20.5463C3.36 20.8913 3.78187 21.105 4.155 21.0882C4.94437 21.0544 5.66437 20.6475 6.46125 19.62C7.58812 18.165 8.56875 14.6738 9.30375 13.7438C9.80062 13.1157 10.4194 12.8044 10.4194 12.8044C10.4194 12.8044 10.0781 12.5157 9.73687 12.3375C9.39562 12.1594 8.57062 12.2438 8.57062 12.2438L5.04937 17.9025L3.1875 20.5463Z"
|
|
2624
2751
|
}
|
|
2625
2752
|
),
|
|
2626
|
-
/* @__PURE__ */ (0,
|
|
2753
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)(
|
|
2627
2754
|
"path",
|
|
2628
2755
|
{
|
|
2629
2756
|
fill: "#D5D6D7",
|
|
@@ -2633,9 +2760,9 @@ var import_jsx_runtime118 = require("react/jsx-runtime"), IconModelNanobananaLog
|
|
|
2633
2760
|
] }), ModelNanobananaLogoNomoFilled_default = IconModelNanobananaLogoNomoFilled;
|
|
2634
2761
|
|
|
2635
2762
|
// src/components/ModelhappyhorseFilled.tsx
|
|
2636
|
-
var
|
|
2637
|
-
/* @__PURE__ */ (0,
|
|
2638
|
-
/* @__PURE__ */ (0,
|
|
2763
|
+
var import_jsx_runtime127 = require("react/jsx-runtime"), IconModelhappyhorseFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2764
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsxs)("g", { clipPath: "url(#clip0_786_80)", children: [
|
|
2765
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
2639
2766
|
"mask",
|
|
2640
2767
|
{
|
|
2641
2768
|
id: "mask0_786_80",
|
|
@@ -2645,10 +2772,10 @@ var import_jsx_runtime119 = require("react/jsx-runtime"), IconModelhappyhorseFil
|
|
|
2645
2772
|
y: "-8",
|
|
2646
2773
|
maskUnits: "userSpaceOnUse",
|
|
2647
2774
|
style: { maskType: "luminance" },
|
|
2648
|
-
children: /* @__PURE__ */ (0,
|
|
2775
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("path", { fill: stroke || color || "currentColor", d: "M32 -8H-8V32H32V-8Z" })
|
|
2649
2776
|
}
|
|
2650
2777
|
),
|
|
2651
|
-
/* @__PURE__ */ (0,
|
|
2778
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("g", { mask: "url(#mask0_786_80)", children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
|
|
2652
2779
|
"path",
|
|
2653
2780
|
{
|
|
2654
2781
|
fill: fill || color || "currentColor",
|
|
@@ -2656,11 +2783,11 @@ var import_jsx_runtime119 = require("react/jsx-runtime"), IconModelhappyhorseFil
|
|
|
2656
2783
|
}
|
|
2657
2784
|
) })
|
|
2658
2785
|
] }),
|
|
2659
|
-
/* @__PURE__ */ (0,
|
|
2786
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("clipPath", { id: "clip0_786_80", children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
2660
2787
|
] }), ModelhappyhorseFilled_default = IconModelhappyhorseFilled;
|
|
2661
2788
|
|
|
2662
2789
|
// src/components/ModelklingFilled.tsx
|
|
2663
|
-
var
|
|
2790
|
+
var import_jsx_runtime128 = require("react/jsx-runtime"), IconModelklingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
|
|
2664
2791
|
"path",
|
|
2665
2792
|
{
|
|
2666
2793
|
fill: fill || color || "currentColor",
|
|
@@ -2671,7 +2798,7 @@ var import_jsx_runtime120 = require("react/jsx-runtime"), IconModelklingFilled =
|
|
|
2671
2798
|
) }), ModelklingFilled_default = IconModelklingFilled;
|
|
2672
2799
|
|
|
2673
2800
|
// src/components/Models.tsx
|
|
2674
|
-
var
|
|
2801
|
+
var import_jsx_runtime129 = require("react/jsx-runtime"), IconModels = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
|
|
2675
2802
|
"path",
|
|
2676
2803
|
{
|
|
2677
2804
|
fill: stroke || color || "currentColor",
|
|
@@ -2682,7 +2809,7 @@ var import_jsx_runtime121 = require("react/jsx-runtime"), IconModels = ({ size,
|
|
|
2682
2809
|
) }), Models_default = IconModels;
|
|
2683
2810
|
|
|
2684
2811
|
// src/components/MoreCollapse.tsx
|
|
2685
|
-
var
|
|
2812
|
+
var import_jsx_runtime130 = require("react/jsx-runtime"), IconMoreCollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime130.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
2686
2813
|
"path",
|
|
2687
2814
|
{
|
|
2688
2815
|
fill: stroke || color || "currentColor",
|
|
@@ -2691,22 +2818,22 @@ var import_jsx_runtime122 = require("react/jsx-runtime"), IconMoreCollapse = ({
|
|
|
2691
2818
|
) }), MoreCollapse_default = IconMoreCollapse;
|
|
2692
2819
|
|
|
2693
2820
|
// src/components/MoreHorizontal.tsx
|
|
2694
|
-
var
|
|
2695
|
-
/* @__PURE__ */ (0,
|
|
2821
|
+
var import_jsx_runtime131 = require("react/jsx-runtime"), IconMoreHorizontal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2822
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
2696
2823
|
"path",
|
|
2697
2824
|
{
|
|
2698
2825
|
fill: stroke || color || "currentColor",
|
|
2699
2826
|
d: "M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z"
|
|
2700
2827
|
}
|
|
2701
2828
|
),
|
|
2702
|
-
/* @__PURE__ */ (0,
|
|
2829
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
2703
2830
|
"path",
|
|
2704
2831
|
{
|
|
2705
2832
|
fill: stroke || color || "currentColor",
|
|
2706
2833
|
d: "M7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12Z"
|
|
2707
2834
|
}
|
|
2708
2835
|
),
|
|
2709
|
-
/* @__PURE__ */ (0,
|
|
2836
|
+
/* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
2710
2837
|
"path",
|
|
2711
2838
|
{
|
|
2712
2839
|
fill: stroke || color || "currentColor",
|
|
@@ -2716,7 +2843,7 @@ var import_jsx_runtime123 = require("react/jsx-runtime"), IconMoreHorizontal = (
|
|
|
2716
2843
|
] }), MoreHorizontal_default = IconMoreHorizontal;
|
|
2717
2844
|
|
|
2718
2845
|
// src/components/MoreShowed.tsx
|
|
2719
|
-
var
|
|
2846
|
+
var import_jsx_runtime132 = require("react/jsx-runtime"), IconMoreShowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
|
|
2720
2847
|
"path",
|
|
2721
2848
|
{
|
|
2722
2849
|
fill: stroke || color || "currentColor",
|
|
@@ -2725,22 +2852,22 @@ var import_jsx_runtime124 = require("react/jsx-runtime"), IconMoreShowed = ({ si
|
|
|
2725
2852
|
) }), MoreShowed_default = IconMoreShowed;
|
|
2726
2853
|
|
|
2727
2854
|
// src/components/More.tsx
|
|
2728
|
-
var
|
|
2729
|
-
/* @__PURE__ */ (0,
|
|
2855
|
+
var import_jsx_runtime133 = require("react/jsx-runtime"), IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2856
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
2730
2857
|
"path",
|
|
2731
2858
|
{
|
|
2732
2859
|
fill: stroke || color || "currentColor",
|
|
2733
2860
|
d: "M14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12Z"
|
|
2734
2861
|
}
|
|
2735
2862
|
),
|
|
2736
|
-
/* @__PURE__ */ (0,
|
|
2863
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
2737
2864
|
"path",
|
|
2738
2865
|
{
|
|
2739
2866
|
fill: stroke || color || "currentColor",
|
|
2740
2867
|
d: "M12 17C13.1046 17 14 17.8954 14 19C14 20.1046 13.1046 21 12 21C10.8954 21 10 20.1046 10 19C10 17.8954 10.8954 17 12 17Z"
|
|
2741
2868
|
}
|
|
2742
2869
|
),
|
|
2743
|
-
/* @__PURE__ */ (0,
|
|
2870
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
|
|
2744
2871
|
"path",
|
|
2745
2872
|
{
|
|
2746
2873
|
fill: stroke || color || "currentColor",
|
|
@@ -2750,29 +2877,29 @@ var import_jsx_runtime125 = require("react/jsx-runtime"), IconMore = ({ size, wi
|
|
|
2750
2877
|
] }), More_default = IconMore;
|
|
2751
2878
|
|
|
2752
2879
|
// src/components/Moresettings.tsx
|
|
2753
|
-
var
|
|
2754
|
-
/* @__PURE__ */ (0,
|
|
2880
|
+
var import_jsx_runtime134 = require("react/jsx-runtime"), IconMoresettings = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2881
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
2755
2882
|
"path",
|
|
2756
2883
|
{
|
|
2757
2884
|
fill: stroke || color || "currentColor",
|
|
2758
2885
|
d: "M13.5 12C13.5 11.1716 12.8284 10.5 12 10.5C11.1716 10.5 10.5 11.1716 10.5 12C10.5 12.8284 11.1716 13.5 12 13.5C12.8284 13.5 13.5 12.8284 13.5 12Z"
|
|
2759
2886
|
}
|
|
2760
2887
|
),
|
|
2761
|
-
/* @__PURE__ */ (0,
|
|
2888
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
2762
2889
|
"path",
|
|
2763
2890
|
{
|
|
2764
2891
|
fill: stroke || color || "currentColor",
|
|
2765
2892
|
d: "M12 15.75C12.8284 15.75 13.5 16.4216 13.5 17.25C13.5 18.0784 12.8284 18.75 12 18.75C11.1716 18.75 10.5 18.0784 10.5 17.25C10.5 16.4216 11.1716 15.75 12 15.75Z"
|
|
2766
2893
|
}
|
|
2767
2894
|
),
|
|
2768
|
-
/* @__PURE__ */ (0,
|
|
2895
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
2769
2896
|
"path",
|
|
2770
2897
|
{
|
|
2771
2898
|
fill: stroke || color || "currentColor",
|
|
2772
2899
|
d: "M13.5 6.75C13.5 5.92157 12.8284 5.25 12 5.25C11.1716 5.25 10.5 5.92157 10.5 6.75C10.5 7.57843 11.1716 8.25 12 8.25C12.8284 8.25 13.5 7.57843 13.5 6.75Z"
|
|
2773
2900
|
}
|
|
2774
2901
|
),
|
|
2775
|
-
/* @__PURE__ */ (0,
|
|
2902
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
2776
2903
|
"path",
|
|
2777
2904
|
{
|
|
2778
2905
|
fill: stroke || color || "currentColor",
|
|
@@ -2784,8 +2911,8 @@ var import_jsx_runtime126 = require("react/jsx-runtime"), IconMoresettings = ({
|
|
|
2784
2911
|
] }), Moresettings_default = IconMoresettings;
|
|
2785
2912
|
|
|
2786
2913
|
// src/components/MouseDrag.tsx
|
|
2787
|
-
var
|
|
2788
|
-
/* @__PURE__ */ (0,
|
|
2914
|
+
var import_jsx_runtime135 = require("react/jsx-runtime"), IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2915
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
2789
2916
|
"path",
|
|
2790
2917
|
{
|
|
2791
2918
|
fill: fill || color || "currentColor",
|
|
@@ -2793,7 +2920,7 @@ var import_jsx_runtime127 = require("react/jsx-runtime"), IconMouseDrag = ({ siz
|
|
|
2793
2920
|
d: "M13.5 3.5V20.5H10.5V3.5H13.5Z"
|
|
2794
2921
|
}
|
|
2795
2922
|
),
|
|
2796
|
-
/* @__PURE__ */ (0,
|
|
2923
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
2797
2924
|
"path",
|
|
2798
2925
|
{
|
|
2799
2926
|
fill: fill || color || "currentColor",
|
|
@@ -2801,7 +2928,7 @@ var import_jsx_runtime127 = require("react/jsx-runtime"), IconMouseDrag = ({ siz
|
|
|
2801
2928
|
d: "M6.79297 7.5L2.29297 12L6.79297 16.5H8.5V7.5H6.79297Z"
|
|
2802
2929
|
}
|
|
2803
2930
|
),
|
|
2804
|
-
/* @__PURE__ */ (0,
|
|
2931
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
|
|
2805
2932
|
"path",
|
|
2806
2933
|
{
|
|
2807
2934
|
fill: fill || color || "currentColor",
|
|
@@ -2812,8 +2939,8 @@ var import_jsx_runtime127 = require("react/jsx-runtime"), IconMouseDrag = ({ siz
|
|
|
2812
2939
|
] }), MouseDrag_default = IconMouseDrag;
|
|
2813
2940
|
|
|
2814
2941
|
// src/components/MouseMove.tsx
|
|
2815
|
-
var
|
|
2816
|
-
/* @__PURE__ */ (0,
|
|
2942
|
+
var import_jsx_runtime136 = require("react/jsx-runtime"), IconMouseMove = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2943
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("g", { clipPath: "url(#clip0_384_31)", children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
|
|
2817
2944
|
"path",
|
|
2818
2945
|
{
|
|
2819
2946
|
fill: fill || color || "currentColor",
|
|
@@ -2821,12 +2948,12 @@ var import_jsx_runtime128 = require("react/jsx-runtime"), IconMouseMove = ({ siz
|
|
|
2821
2948
|
d: "M15.5557 7.51074H13.0635V10.5635H16.1172V8.07129H18.5918L22.334 11.8135L21.9805 12.167L18.7383 15.4102L18.5918 15.5566H16.1172V13.0635H13.0635V16.1172H15.5557V18.5918L11.8135 22.334L11.46 21.9805L8.2168 18.7383L8.07031 18.5918V16.1172H10.5635V13.0635H7.50977V15.5566H5.03516L4.88867 15.4102L1.64648 12.167L1.29297 11.8135L5.03516 8.07129H7.50977V10.5635H10.5635V7.51074H8.07031V5.03516L8.2168 4.88867L11.46 1.64648L11.8135 1.29297L15.5557 5.03516V7.51074Z"
|
|
2822
2949
|
}
|
|
2823
2950
|
) }),
|
|
2824
|
-
/* @__PURE__ */ (0,
|
|
2951
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("clipPath", { id: "clip0_384_31", children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
2825
2952
|
] }), MouseMove_default = IconMouseMove;
|
|
2826
2953
|
|
|
2827
2954
|
// src/components/MouseNumberchange.tsx
|
|
2828
|
-
var
|
|
2829
|
-
/* @__PURE__ */ (0,
|
|
2955
|
+
var import_jsx_runtime137 = require("react/jsx-runtime"), IconMouseNumberchange = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2956
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
2830
2957
|
"path",
|
|
2831
2958
|
{
|
|
2832
2959
|
fill: fill || color || "currentColor",
|
|
@@ -2834,7 +2961,7 @@ var import_jsx_runtime129 = require("react/jsx-runtime"), IconMouseNumberchange
|
|
|
2834
2961
|
d: "M10.5 17L9.30567 17L0.97168 12L9.30566 7L10.5 7L10.5 17Z"
|
|
2835
2962
|
}
|
|
2836
2963
|
),
|
|
2837
|
-
/* @__PURE__ */ (0,
|
|
2964
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
|
|
2838
2965
|
"path",
|
|
2839
2966
|
{
|
|
2840
2967
|
fill: fill || color || "currentColor",
|
|
@@ -2845,7 +2972,7 @@ var import_jsx_runtime129 = require("react/jsx-runtime"), IconMouseNumberchange
|
|
|
2845
2972
|
] }), MouseNumberchange_default = IconMouseNumberchange;
|
|
2846
2973
|
|
|
2847
2974
|
// src/components/Musicassets.tsx
|
|
2848
|
-
var
|
|
2975
|
+
var import_jsx_runtime138 = require("react/jsx-runtime"), IconMusicassets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
|
|
2849
2976
|
"path",
|
|
2850
2977
|
{
|
|
2851
2978
|
fill: stroke || color || "currentColor",
|
|
@@ -2856,8 +2983,8 @@ var import_jsx_runtime130 = require("react/jsx-runtime"), IconMusicassets = ({ s
|
|
|
2856
2983
|
) }), Musicassets_default = IconMusicassets;
|
|
2857
2984
|
|
|
2858
2985
|
// src/components/Mute.tsx
|
|
2859
|
-
var
|
|
2860
|
-
/* @__PURE__ */ (0,
|
|
2986
|
+
var import_jsx_runtime139 = require("react/jsx-runtime"), IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2987
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
2861
2988
|
"path",
|
|
2862
2989
|
{
|
|
2863
2990
|
fill: stroke || color || "currentColor",
|
|
@@ -2866,7 +2993,7 @@ var import_jsx_runtime131 = require("react/jsx-runtime"), IconMute = ({ size, wi
|
|
|
2866
2993
|
clipRule: "evenodd"
|
|
2867
2994
|
}
|
|
2868
2995
|
),
|
|
2869
|
-
/* @__PURE__ */ (0,
|
|
2996
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
|
|
2870
2997
|
"path",
|
|
2871
2998
|
{
|
|
2872
2999
|
fill: stroke || color || "currentColor",
|
|
@@ -2876,8 +3003,8 @@ var import_jsx_runtime131 = require("react/jsx-runtime"), IconMute = ({ size, wi
|
|
|
2876
3003
|
] }), Mute_default = IconMute;
|
|
2877
3004
|
|
|
2878
3005
|
// src/components/Newchat.tsx
|
|
2879
|
-
var
|
|
2880
|
-
/* @__PURE__ */ (0,
|
|
3006
|
+
var import_jsx_runtime140 = require("react/jsx-runtime"), IconNewchat = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3007
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
2881
3008
|
"path",
|
|
2882
3009
|
{
|
|
2883
3010
|
fill: stroke || color || "currentColor",
|
|
@@ -2886,7 +3013,7 @@ var import_jsx_runtime132 = require("react/jsx-runtime"), IconNewchat = ({ size,
|
|
|
2886
3013
|
clipRule: "evenodd"
|
|
2887
3014
|
}
|
|
2888
3015
|
),
|
|
2889
|
-
/* @__PURE__ */ (0,
|
|
3016
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
|
|
2890
3017
|
"path",
|
|
2891
3018
|
{
|
|
2892
3019
|
fill: stroke || color || "currentColor",
|
|
@@ -2896,7 +3023,7 @@ var import_jsx_runtime132 = require("react/jsx-runtime"), IconNewchat = ({ size,
|
|
|
2896
3023
|
] }), Newchat_default = IconNewchat;
|
|
2897
3024
|
|
|
2898
3025
|
// src/components/Next.tsx
|
|
2899
|
-
var
|
|
3026
|
+
var import_jsx_runtime141 = require("react/jsx-runtime"), IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
|
|
2900
3027
|
"path",
|
|
2901
3028
|
{
|
|
2902
3029
|
fill: stroke || color || "currentColor",
|
|
@@ -2907,15 +3034,15 @@ var import_jsx_runtime133 = require("react/jsx-runtime"), IconNext = ({ size, wi
|
|
|
2907
3034
|
) }), Next_default = IconNext;
|
|
2908
3035
|
|
|
2909
3036
|
// src/components/Nextscene.tsx
|
|
2910
|
-
var
|
|
2911
|
-
/* @__PURE__ */ (0,
|
|
3037
|
+
var import_jsx_runtime142 = require("react/jsx-runtime"), IconNextscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3038
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
2912
3039
|
"path",
|
|
2913
3040
|
{
|
|
2914
3041
|
fill: stroke || color || "currentColor",
|
|
2915
3042
|
d: "M16.7959 12L10.2656 18.5303L9.2041 17.4697L14.6738 12L9.2041 6.53027L10.2656 5.46973L16.7959 12Z"
|
|
2916
3043
|
}
|
|
2917
3044
|
),
|
|
2918
|
-
/* @__PURE__ */ (0,
|
|
3045
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
|
|
2919
3046
|
"path",
|
|
2920
3047
|
{
|
|
2921
3048
|
fill: stroke || color || "currentColor",
|
|
@@ -2927,7 +3054,7 @@ var import_jsx_runtime134 = require("react/jsx-runtime"), IconNextscene = ({ siz
|
|
|
2927
3054
|
] }), Nextscene_default = IconNextscene;
|
|
2928
3055
|
|
|
2929
3056
|
// src/components/Niceofficial.tsx
|
|
2930
|
-
var
|
|
3057
|
+
var import_jsx_runtime143 = require("react/jsx-runtime"), IconNiceofficial = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
|
|
2931
3058
|
"path",
|
|
2932
3059
|
{
|
|
2933
3060
|
fill: fill || color || "currentColor",
|
|
@@ -2938,8 +3065,8 @@ var import_jsx_runtime135 = require("react/jsx-runtime"), IconNiceofficial = ({
|
|
|
2938
3065
|
) }), Niceofficial_default = IconNiceofficial;
|
|
2939
3066
|
|
|
2940
3067
|
// src/components/Notification.tsx
|
|
2941
|
-
var
|
|
2942
|
-
/* @__PURE__ */ (0,
|
|
3068
|
+
var import_jsx_runtime144 = require("react/jsx-runtime"), IconNotification = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3069
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
2943
3070
|
"path",
|
|
2944
3071
|
{
|
|
2945
3072
|
fill: stroke || color || "currentColor",
|
|
@@ -2948,7 +3075,7 @@ var import_jsx_runtime136 = require("react/jsx-runtime"), IconNotification = ({
|
|
|
2948
3075
|
clipRule: "evenodd"
|
|
2949
3076
|
}
|
|
2950
3077
|
),
|
|
2951
|
-
/* @__PURE__ */ (0,
|
|
3078
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
|
|
2952
3079
|
"path",
|
|
2953
3080
|
{
|
|
2954
3081
|
fill: stroke || color || "currentColor",
|
|
@@ -2958,17 +3085,17 @@ var import_jsx_runtime136 = require("react/jsx-runtime"), IconNotification = ({
|
|
|
2958
3085
|
] }), Notification_default = IconNotification;
|
|
2959
3086
|
|
|
2960
3087
|
// src/components/Oneclickgenerate.tsx
|
|
2961
|
-
var
|
|
2962
|
-
/* @__PURE__ */ (0,
|
|
2963
|
-
/* @__PURE__ */ (0,
|
|
2964
|
-
/* @__PURE__ */ (0,
|
|
3088
|
+
var import_jsx_runtime145 = require("react/jsx-runtime"), IconOneclickgenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3089
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { fill: stroke || color || "currentColor", d: "M12 4.5V0H9.75V4.5H12Z" }),
|
|
3090
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("path", { fill: stroke || color || "currentColor", d: "M4.5 9.75H0V12H4.5V9.75Z" }),
|
|
3091
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
2965
3092
|
"path",
|
|
2966
3093
|
{
|
|
2967
3094
|
fill: stroke || color || "currentColor",
|
|
2968
3095
|
d: "M5.2045 6.7955L1.4545 3.0455L3.0455 1.4545L6.7955 5.2045L5.2045 6.7955Z"
|
|
2969
3096
|
}
|
|
2970
3097
|
),
|
|
2971
|
-
/* @__PURE__ */ (0,
|
|
3098
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
|
|
2972
3099
|
"path",
|
|
2973
3100
|
{
|
|
2974
3101
|
fill: stroke || color || "currentColor",
|
|
@@ -2980,8 +3107,8 @@ var import_jsx_runtime137 = require("react/jsx-runtime"), IconOneclickgenerate =
|
|
|
2980
3107
|
] }), Oneclickgenerate_default = IconOneclickgenerate;
|
|
2981
3108
|
|
|
2982
3109
|
// src/components/Opendemo.tsx
|
|
2983
|
-
var
|
|
2984
|
-
/* @__PURE__ */ (0,
|
|
3110
|
+
var import_jsx_runtime146 = require("react/jsx-runtime"), IconOpendemo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3111
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
|
|
2985
3112
|
"path",
|
|
2986
3113
|
{
|
|
2987
3114
|
fill: stroke || color || "currentColor",
|
|
@@ -2990,11 +3117,11 @@ var import_jsx_runtime138 = require("react/jsx-runtime"), IconOpendemo = ({ size
|
|
|
2990
3117
|
clipRule: "evenodd"
|
|
2991
3118
|
}
|
|
2992
3119
|
),
|
|
2993
|
-
/* @__PURE__ */ (0,
|
|
3120
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
2994
3121
|
] }), Opendemo_default = IconOpendemo;
|
|
2995
3122
|
|
|
2996
3123
|
// src/components/OppsFilled.tsx
|
|
2997
|
-
var
|
|
3124
|
+
var import_jsx_runtime147 = require("react/jsx-runtime"), IconOppsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
2998
3125
|
"path",
|
|
2999
3126
|
{
|
|
3000
3127
|
fill: fill || color || "currentColor",
|
|
@@ -3005,7 +3132,7 @@ var import_jsx_runtime139 = require("react/jsx-runtime"), IconOppsFilled = ({ si
|
|
|
3005
3132
|
) }), OppsFilled_default = IconOppsFilled;
|
|
3006
3133
|
|
|
3007
3134
|
// src/components/OptionalcheckedFilled.tsx
|
|
3008
|
-
var
|
|
3135
|
+
var import_jsx_runtime148 = require("react/jsx-runtime"), IconOptionalcheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
|
|
3009
3136
|
"path",
|
|
3010
3137
|
{
|
|
3011
3138
|
fill: fill || color || "currentColor",
|
|
@@ -3016,7 +3143,7 @@ var import_jsx_runtime140 = require("react/jsx-runtime"), IconOptionalcheckedFil
|
|
|
3016
3143
|
) }), OptionalcheckedFilled_default = IconOptionalcheckedFilled;
|
|
3017
3144
|
|
|
3018
3145
|
// src/components/Optionaluncheck.tsx
|
|
3019
|
-
var
|
|
3146
|
+
var import_jsx_runtime149 = require("react/jsx-runtime"), IconOptionaluncheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
|
|
3020
3147
|
"path",
|
|
3021
3148
|
{
|
|
3022
3149
|
fill: stroke || color || "currentColor",
|
|
@@ -3027,7 +3154,7 @@ var import_jsx_runtime141 = require("react/jsx-runtime"), IconOptionaluncheck =
|
|
|
3027
3154
|
) }), Optionaluncheck_default = IconOptionaluncheck;
|
|
3028
3155
|
|
|
3029
3156
|
// src/components/Packagegame.tsx
|
|
3030
|
-
var
|
|
3157
|
+
var import_jsx_runtime150 = require("react/jsx-runtime"), IconPackagegame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime150.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
|
|
3031
3158
|
"path",
|
|
3032
3159
|
{
|
|
3033
3160
|
fill: stroke || color || "currentColor",
|
|
@@ -3038,11 +3165,11 @@ var import_jsx_runtime142 = require("react/jsx-runtime"), IconPackagegame = ({ s
|
|
|
3038
3165
|
) }), Packagegame_default = IconPackagegame;
|
|
3039
3166
|
|
|
3040
3167
|
// src/components/PageError.tsx
|
|
3041
|
-
var
|
|
3168
|
+
var import_jsx_runtime151 = require("react/jsx-runtime"), IconPageError = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { fill: stroke || color || "currentColor", d: "M22.5 13.125H1.5V10.875H22.5V13.125Z" }) }), PageError_default = IconPageError;
|
|
3042
3169
|
|
|
3043
3170
|
// src/components/Parameters.tsx
|
|
3044
|
-
var
|
|
3045
|
-
/* @__PURE__ */ (0,
|
|
3171
|
+
var import_jsx_runtime152 = require("react/jsx-runtime"), IconParameters = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3172
|
+
/* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
3046
3173
|
"path",
|
|
3047
3174
|
{
|
|
3048
3175
|
fill: stroke || color || "currentColor",
|
|
@@ -3051,7 +3178,7 @@ var import_jsx_runtime144 = require("react/jsx-runtime"), IconParameters = ({ si
|
|
|
3051
3178
|
clipRule: "evenodd"
|
|
3052
3179
|
}
|
|
3053
3180
|
),
|
|
3054
|
-
/* @__PURE__ */ (0,
|
|
3181
|
+
/* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
|
|
3055
3182
|
"path",
|
|
3056
3183
|
{
|
|
3057
3184
|
fill: stroke || color || "currentColor",
|
|
@@ -3063,14 +3190,14 @@ var import_jsx_runtime144 = require("react/jsx-runtime"), IconParameters = ({ si
|
|
|
3063
3190
|
] }), Parameters_default = IconParameters;
|
|
3064
3191
|
|
|
3065
3192
|
// src/components/PauseFilled.tsx
|
|
3066
|
-
var
|
|
3067
|
-
/* @__PURE__ */ (0,
|
|
3068
|
-
/* @__PURE__ */ (0,
|
|
3193
|
+
var import_jsx_runtime153 = require("react/jsx-runtime"), IconPauseFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3194
|
+
/* @__PURE__ */ (0, import_jsx_runtime153.jsx)("path", { fill: fill || color || "currentColor", d: "M10.5 1.5H3V22.5H10.5V1.5Z" }),
|
|
3195
|
+
/* @__PURE__ */ (0, import_jsx_runtime153.jsx)("path", { fill: fill || color || "currentColor", d: "M21 1.5H13.5V22.5H21V1.5Z" })
|
|
3069
3196
|
] }), PauseFilled_default = IconPauseFilled;
|
|
3070
3197
|
|
|
3071
3198
|
// src/components/Pause.tsx
|
|
3072
|
-
var
|
|
3073
|
-
/* @__PURE__ */ (0,
|
|
3199
|
+
var import_jsx_runtime154 = require("react/jsx-runtime"), IconPause = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime154.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3200
|
+
/* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
3074
3201
|
"path",
|
|
3075
3202
|
{
|
|
3076
3203
|
fill: stroke || color || "currentColor",
|
|
@@ -3079,7 +3206,7 @@ var import_jsx_runtime146 = require("react/jsx-runtime"), IconPause = ({ size, w
|
|
|
3079
3206
|
clipRule: "evenodd"
|
|
3080
3207
|
}
|
|
3081
3208
|
),
|
|
3082
|
-
/* @__PURE__ */ (0,
|
|
3209
|
+
/* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
|
|
3083
3210
|
"path",
|
|
3084
3211
|
{
|
|
3085
3212
|
fill: stroke || color || "currentColor",
|
|
@@ -3091,7 +3218,7 @@ var import_jsx_runtime146 = require("react/jsx-runtime"), IconPause = ({ size, w
|
|
|
3091
3218
|
] }), Pause_default = IconPause;
|
|
3092
3219
|
|
|
3093
3220
|
// src/components/Pencil.tsx
|
|
3094
|
-
var
|
|
3221
|
+
var import_jsx_runtime155 = require("react/jsx-runtime"), IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
|
|
3095
3222
|
"path",
|
|
3096
3223
|
{
|
|
3097
3224
|
fill: stroke || color || "currentColor",
|
|
@@ -3102,7 +3229,7 @@ var import_jsx_runtime147 = require("react/jsx-runtime"), IconPencil = ({ size,
|
|
|
3102
3229
|
) }), Pencil_default = IconPencil;
|
|
3103
3230
|
|
|
3104
3231
|
// src/components/Pick.tsx
|
|
3105
|
-
var
|
|
3232
|
+
var import_jsx_runtime156 = require("react/jsx-runtime"), IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime156.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime156.jsx)(
|
|
3106
3233
|
"path",
|
|
3107
3234
|
{
|
|
3108
3235
|
fill: stroke || color || "currentColor",
|
|
@@ -3113,22 +3240,22 @@ var import_jsx_runtime148 = require("react/jsx-runtime"), IconPick = ({ size, wi
|
|
|
3113
3240
|
) }), Pick_default = IconPick;
|
|
3114
3241
|
|
|
3115
3242
|
// src/components/PickedFilled.tsx
|
|
3116
|
-
var
|
|
3243
|
+
var import_jsx_runtime157 = require("react/jsx-runtime"), IconPickedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime157.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime157.jsx)("path", { fill: fill || color || "currentColor", d: "M3 0H21V24H18L12 18L6 24H3V0Z" }) }), PickedFilled_default = IconPickedFilled;
|
|
3117
3244
|
|
|
3118
3245
|
// src/components/PlanFilled.tsx
|
|
3119
|
-
var
|
|
3120
|
-
/* @__PURE__ */ (0,
|
|
3246
|
+
var import_jsx_runtime158 = require("react/jsx-runtime"), IconPlanFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3247
|
+
/* @__PURE__ */ (0, import_jsx_runtime158.jsx)("g", { clipPath: "url(#clip0_2_30)", children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
|
|
3121
3248
|
"path",
|
|
3122
3249
|
{
|
|
3123
3250
|
fill: fill || color || "currentColor",
|
|
3124
3251
|
d: "M13.5 10.5L15 0H12L3 10.5V13.5H10.5L9 24H12L21 13.5L21 10.5H13.5Z"
|
|
3125
3252
|
}
|
|
3126
3253
|
) }),
|
|
3127
|
-
/* @__PURE__ */ (0,
|
|
3254
|
+
/* @__PURE__ */ (0, import_jsx_runtime158.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)("clipPath", { id: "clip0_2_30", children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
3128
3255
|
] }), PlanFilled_default = IconPlanFilled;
|
|
3129
3256
|
|
|
3130
3257
|
// src/components/PlayFilled.tsx
|
|
3131
|
-
var
|
|
3258
|
+
var import_jsx_runtime159 = require("react/jsx-runtime"), IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime159.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime159.jsx)(
|
|
3132
3259
|
"path",
|
|
3133
3260
|
{
|
|
3134
3261
|
fill: fill || color || "currentColor",
|
|
@@ -3137,7 +3264,7 @@ var import_jsx_runtime151 = require("react/jsx-runtime"), IconPlayFilled = ({ si
|
|
|
3137
3264
|
) }), PlayFilled_default = IconPlayFilled;
|
|
3138
3265
|
|
|
3139
3266
|
// src/components/Play.tsx
|
|
3140
|
-
var
|
|
3267
|
+
var import_jsx_runtime160 = require("react/jsx-runtime"), IconPlay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime160.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime160.jsx)(
|
|
3141
3268
|
"path",
|
|
3142
3269
|
{
|
|
3143
3270
|
fill: stroke || color || "currentColor",
|
|
@@ -3148,7 +3275,7 @@ var import_jsx_runtime152 = require("react/jsx-runtime"), IconPlay = ({ size, wi
|
|
|
3148
3275
|
) }), Play_default = IconPlay;
|
|
3149
3276
|
|
|
3150
3277
|
// src/components/Premiumcontent.tsx
|
|
3151
|
-
var
|
|
3278
|
+
var import_jsx_runtime161 = require("react/jsx-runtime"), IconPremiumcontent = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime161.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime161.jsx)(
|
|
3152
3279
|
"path",
|
|
3153
3280
|
{
|
|
3154
3281
|
fill: stroke || color || "currentColor",
|
|
@@ -3159,15 +3286,15 @@ var import_jsx_runtime153 = require("react/jsx-runtime"), IconPremiumcontent = (
|
|
|
3159
3286
|
) }), Premiumcontent_default = IconPremiumcontent;
|
|
3160
3287
|
|
|
3161
3288
|
// src/components/Previouscene.tsx
|
|
3162
|
-
var
|
|
3163
|
-
/* @__PURE__ */ (0,
|
|
3289
|
+
var import_jsx_runtime162 = require("react/jsx-runtime"), IconPreviouscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime162.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3290
|
+
/* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
3164
3291
|
"path",
|
|
3165
3292
|
{
|
|
3166
3293
|
fill: stroke || color || "currentColor",
|
|
3167
3294
|
d: "M7.2041 12L13.7344 18.5303L14.7959 17.4697L9.32617 12L14.7959 6.53027L13.7344 5.46973L7.2041 12Z"
|
|
3168
3295
|
}
|
|
3169
3296
|
),
|
|
3170
|
-
/* @__PURE__ */ (0,
|
|
3297
|
+
/* @__PURE__ */ (0, import_jsx_runtime162.jsx)(
|
|
3171
3298
|
"path",
|
|
3172
3299
|
{
|
|
3173
3300
|
fill: stroke || color || "currentColor",
|
|
@@ -3179,7 +3306,7 @@ var import_jsx_runtime154 = require("react/jsx-runtime"), IconPreviouscene = ({
|
|
|
3179
3306
|
] }), Previouscene_default = IconPreviouscene;
|
|
3180
3307
|
|
|
3181
3308
|
// src/components/ProblemFilled.tsx
|
|
3182
|
-
var
|
|
3309
|
+
var import_jsx_runtime163 = require("react/jsx-runtime"), IconProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime163.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime163.jsx)(
|
|
3183
3310
|
"path",
|
|
3184
3311
|
{
|
|
3185
3312
|
fill: fill || color || "currentColor",
|
|
@@ -3190,7 +3317,7 @@ var import_jsx_runtime155 = require("react/jsx-runtime"), IconProblemFilled = ({
|
|
|
3190
3317
|
) }), ProblemFilled_default = IconProblemFilled;
|
|
3191
3318
|
|
|
3192
3319
|
// src/components/ProblemNoticeFilled.tsx
|
|
3193
|
-
var
|
|
3320
|
+
var import_jsx_runtime164 = require("react/jsx-runtime"), IconProblemNoticeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime164.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime164.jsx)(
|
|
3194
3321
|
"path",
|
|
3195
3322
|
{
|
|
3196
3323
|
fill: fill || color || "currentColor",
|
|
@@ -3201,10 +3328,10 @@ var import_jsx_runtime156 = require("react/jsx-runtime"), IconProblemNoticeFille
|
|
|
3201
3328
|
) }), ProblemNoticeFilled_default = IconProblemNoticeFilled;
|
|
3202
3329
|
|
|
3203
3330
|
// src/components/Problem.tsx
|
|
3204
|
-
var
|
|
3205
|
-
/* @__PURE__ */ (0,
|
|
3206
|
-
/* @__PURE__ */ (0,
|
|
3207
|
-
/* @__PURE__ */ (0,
|
|
3331
|
+
var import_jsx_runtime165 = require("react/jsx-runtime"), IconProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime165.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3332
|
+
/* @__PURE__ */ (0, import_jsx_runtime165.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 13.5V6H10.875V13.5H13.125Z" }),
|
|
3333
|
+
/* @__PURE__ */ (0, import_jsx_runtime165.jsx)("path", { fill: stroke || color || "currentColor", d: "M13.125 18V15.75H10.875V18H13.125Z" }),
|
|
3334
|
+
/* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
|
|
3208
3335
|
"path",
|
|
3209
3336
|
{
|
|
3210
3337
|
fill: stroke || color || "currentColor",
|
|
@@ -3216,8 +3343,8 @@ var import_jsx_runtime157 = require("react/jsx-runtime"), IconProblem = ({ size,
|
|
|
3216
3343
|
] }), Problem_default = IconProblem;
|
|
3217
3344
|
|
|
3218
3345
|
// src/components/Publish.tsx
|
|
3219
|
-
var
|
|
3220
|
-
/* @__PURE__ */ (0,
|
|
3346
|
+
var import_jsx_runtime166 = require("react/jsx-runtime"), IconPublish = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3347
|
+
/* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
|
|
3221
3348
|
"path",
|
|
3222
3349
|
{
|
|
3223
3350
|
fill: stroke || color || "currentColor",
|
|
@@ -3226,12 +3353,12 @@ var import_jsx_runtime158 = require("react/jsx-runtime"), IconPublish = ({ size,
|
|
|
3226
3353
|
clipRule: "evenodd"
|
|
3227
3354
|
}
|
|
3228
3355
|
),
|
|
3229
|
-
/* @__PURE__ */ (0,
|
|
3356
|
+
/* @__PURE__ */ (0, import_jsx_runtime166.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
3230
3357
|
] }), Publish_default = IconPublish;
|
|
3231
3358
|
|
|
3232
3359
|
// src/components/Quote.tsx
|
|
3233
|
-
var
|
|
3234
|
-
/* @__PURE__ */ (0,
|
|
3360
|
+
var import_jsx_runtime167 = require("react/jsx-runtime"), IconQuote = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime167.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3361
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
|
|
3235
3362
|
"path",
|
|
3236
3363
|
{
|
|
3237
3364
|
fill: stroke || color || "currentColor",
|
|
@@ -3240,7 +3367,7 @@ var import_jsx_runtime159 = require("react/jsx-runtime"), IconQuote = ({ size, w
|
|
|
3240
3367
|
clipRule: "evenodd"
|
|
3241
3368
|
}
|
|
3242
3369
|
),
|
|
3243
|
-
/* @__PURE__ */ (0,
|
|
3370
|
+
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
|
|
3244
3371
|
"path",
|
|
3245
3372
|
{
|
|
3246
3373
|
fill: stroke || color || "currentColor",
|
|
@@ -3252,7 +3379,7 @@ var import_jsx_runtime159 = require("react/jsx-runtime"), IconQuote = ({ size, w
|
|
|
3252
3379
|
] }), Quote_default = IconQuote;
|
|
3253
3380
|
|
|
3254
3381
|
// src/components/Ratio169.tsx
|
|
3255
|
-
var
|
|
3382
|
+
var import_jsx_runtime168 = require("react/jsx-runtime"), IconRatio169 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime168.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime168.jsx)(
|
|
3256
3383
|
"path",
|
|
3257
3384
|
{
|
|
3258
3385
|
fill: stroke || color || "currentColor",
|
|
@@ -3261,15 +3388,15 @@ var import_jsx_runtime160 = require("react/jsx-runtime"), IconRatio169 = ({ size
|
|
|
3261
3388
|
) }), Ratio169_default = IconRatio169;
|
|
3262
3389
|
|
|
3263
3390
|
// src/components/Ratio11.tsx
|
|
3264
|
-
var
|
|
3265
|
-
/* @__PURE__ */ (0,
|
|
3391
|
+
var import_jsx_runtime169 = require("react/jsx-runtime"), IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime169.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3392
|
+
/* @__PURE__ */ (0, import_jsx_runtime169.jsx)("g", { clipPath: "url(#clip0_13_501)", children: /* @__PURE__ */ (0, import_jsx_runtime169.jsx)(
|
|
3266
3393
|
"path",
|
|
3267
3394
|
{
|
|
3268
3395
|
fill: stroke || color || "currentColor",
|
|
3269
3396
|
d: "M24 24L2.76562e-06 24L3.8147e-06 -1.04907e-06L24 0L24 24ZM2.40039 2.40039L2.40039 21.5996L21.5996 21.5996L21.5996 2.40039L2.40039 2.40039Z"
|
|
3270
3397
|
}
|
|
3271
3398
|
) }),
|
|
3272
|
-
/* @__PURE__ */ (0,
|
|
3399
|
+
/* @__PURE__ */ (0, import_jsx_runtime169.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime169.jsx)("clipPath", { id: "clip0_13_501", children: /* @__PURE__ */ (0, import_jsx_runtime169.jsx)(
|
|
3273
3400
|
"rect",
|
|
3274
3401
|
{
|
|
3275
3402
|
width: "24",
|
|
@@ -3281,15 +3408,15 @@ var import_jsx_runtime161 = require("react/jsx-runtime"), IconRatio11 = ({ size,
|
|
|
3281
3408
|
] }), Ratio11_default = IconRatio11;
|
|
3282
3409
|
|
|
3283
3410
|
// src/components/Ratio916.tsx
|
|
3284
|
-
var
|
|
3285
|
-
/* @__PURE__ */ (0,
|
|
3411
|
+
var import_jsx_runtime170 = require("react/jsx-runtime"), IconRatio916 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime170.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3412
|
+
/* @__PURE__ */ (0, import_jsx_runtime170.jsx)("g", { clipPath: "url(#clip0_13_499)", children: /* @__PURE__ */ (0, import_jsx_runtime170.jsx)(
|
|
3286
3413
|
"path",
|
|
3287
3414
|
{
|
|
3288
3415
|
fill: stroke || color || "currentColor",
|
|
3289
3416
|
d: "M18.8571 24L5.14286 24L5.14286 -5.99471e-07L18.8571 0L18.8571 24ZM7.49426 2.40039L7.49426 21.5996L16.5057 21.5996L16.5057 2.40039L7.49426 2.40039Z"
|
|
3290
3417
|
}
|
|
3291
3418
|
) }),
|
|
3292
|
-
/* @__PURE__ */ (0,
|
|
3419
|
+
/* @__PURE__ */ (0, import_jsx_runtime170.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime170.jsx)("clipPath", { id: "clip0_13_499", children: /* @__PURE__ */ (0, import_jsx_runtime170.jsx)(
|
|
3293
3420
|
"rect",
|
|
3294
3421
|
{
|
|
3295
3422
|
width: "24",
|
|
@@ -3301,17 +3428,17 @@ var import_jsx_runtime162 = require("react/jsx-runtime"), IconRatio916 = ({ size
|
|
|
3301
3428
|
] }), Ratio916_default = IconRatio916;
|
|
3302
3429
|
|
|
3303
3430
|
// src/components/RatioAuto.tsx
|
|
3304
|
-
var
|
|
3305
|
-
/* @__PURE__ */ (0,
|
|
3306
|
-
/* @__PURE__ */ (0,
|
|
3431
|
+
var import_jsx_runtime171 = require("react/jsx-runtime"), IconRatioAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime171.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3432
|
+
/* @__PURE__ */ (0, import_jsx_runtime171.jsxs)("g", { clipPath: "url(#clip0_468_23)", children: [
|
|
3433
|
+
/* @__PURE__ */ (0, import_jsx_runtime171.jsx)(
|
|
3307
3434
|
"path",
|
|
3308
3435
|
{
|
|
3309
3436
|
fill: stroke || color || "currentColor",
|
|
3310
3437
|
d: "M6.25 6.24999L6.25 9.99998H4L4 3.99998L10 3.99999V6.24999H6.25Z"
|
|
3311
3438
|
}
|
|
3312
3439
|
),
|
|
3313
|
-
/* @__PURE__ */ (0,
|
|
3314
|
-
/* @__PURE__ */ (0,
|
|
3440
|
+
/* @__PURE__ */ (0, import_jsx_runtime171.jsx)("path", { fill: stroke || color || "currentColor", d: "M14 20V17.75H17.75V14H20V20H14Z" }),
|
|
3441
|
+
/* @__PURE__ */ (0, import_jsx_runtime171.jsx)(
|
|
3315
3442
|
"path",
|
|
3316
3443
|
{
|
|
3317
3444
|
fill: stroke || color || "currentColor",
|
|
@@ -3321,7 +3448,7 @@ var import_jsx_runtime163 = require("react/jsx-runtime"), IconRatioAuto = ({ siz
|
|
|
3321
3448
|
}
|
|
3322
3449
|
)
|
|
3323
3450
|
] }),
|
|
3324
|
-
/* @__PURE__ */ (0,
|
|
3451
|
+
/* @__PURE__ */ (0, import_jsx_runtime171.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime171.jsx)("clipPath", { id: "clip0_468_23", children: /* @__PURE__ */ (0, import_jsx_runtime171.jsx)(
|
|
3325
3452
|
"rect",
|
|
3326
3453
|
{
|
|
3327
3454
|
width: "24",
|
|
@@ -3333,15 +3460,15 @@ var import_jsx_runtime163 = require("react/jsx-runtime"), IconRatioAuto = ({ siz
|
|
|
3333
3460
|
] }), RatioAuto_default = IconRatioAuto;
|
|
3334
3461
|
|
|
3335
3462
|
// src/components/Ratio.tsx
|
|
3336
|
-
var
|
|
3337
|
-
/* @__PURE__ */ (0,
|
|
3463
|
+
var import_jsx_runtime172 = require("react/jsx-runtime"), IconRatio = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime172.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3464
|
+
/* @__PURE__ */ (0, import_jsx_runtime172.jsx)(
|
|
3338
3465
|
"path",
|
|
3339
3466
|
{
|
|
3340
3467
|
fill: stroke || color || "currentColor",
|
|
3341
3468
|
d: "M3 0V3L0 3V5.25L18.75 5.25V24H21V21H24V18.75H21L21 3L5.25 3V0H3Z"
|
|
3342
3469
|
}
|
|
3343
3470
|
),
|
|
3344
|
-
/* @__PURE__ */ (0,
|
|
3471
|
+
/* @__PURE__ */ (0, import_jsx_runtime172.jsx)(
|
|
3345
3472
|
"path",
|
|
3346
3473
|
{
|
|
3347
3474
|
fill: stroke || color || "currentColor",
|
|
@@ -3351,7 +3478,7 @@ var import_jsx_runtime164 = require("react/jsx-runtime"), IconRatio = ({ size, w
|
|
|
3351
3478
|
] }), Ratio_default = IconRatio;
|
|
3352
3479
|
|
|
3353
3480
|
// src/components/ReEdit.tsx
|
|
3354
|
-
var
|
|
3481
|
+
var import_jsx_runtime173 = require("react/jsx-runtime"), IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime173.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime173.jsx)(
|
|
3355
3482
|
"path",
|
|
3356
3483
|
{
|
|
3357
3484
|
fill: stroke || color || "currentColor",
|
|
@@ -3362,7 +3489,7 @@ var import_jsx_runtime165 = require("react/jsx-runtime"), IconReEdit = ({ size,
|
|
|
3362
3489
|
) }), ReEdit_default = IconReEdit;
|
|
3363
3490
|
|
|
3364
3491
|
// src/components/Regenerate.tsx
|
|
3365
|
-
var
|
|
3492
|
+
var import_jsx_runtime174 = require("react/jsx-runtime"), IconRegenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime174.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime174.jsx)(
|
|
3366
3493
|
"path",
|
|
3367
3494
|
{
|
|
3368
3495
|
fill: stroke || color || "currentColor",
|
|
@@ -3373,8 +3500,8 @@ var import_jsx_runtime166 = require("react/jsx-runtime"), IconRegenerate = ({ si
|
|
|
3373
3500
|
) }), Regenerate_default = IconRegenerate;
|
|
3374
3501
|
|
|
3375
3502
|
// src/components/Resultsetting.tsx
|
|
3376
|
-
var
|
|
3377
|
-
/* @__PURE__ */ (0,
|
|
3503
|
+
var import_jsx_runtime175 = require("react/jsx-runtime"), IconResultsetting = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime175.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3504
|
+
/* @__PURE__ */ (0, import_jsx_runtime175.jsx)("g", { clipPath: "url(#clip0_554_27)", children: /* @__PURE__ */ (0, import_jsx_runtime175.jsx)(
|
|
3378
3505
|
"path",
|
|
3379
3506
|
{
|
|
3380
3507
|
fill: stroke || color || "currentColor",
|
|
@@ -3383,7 +3510,7 @@ var import_jsx_runtime167 = require("react/jsx-runtime"), IconResultsetting = ({
|
|
|
3383
3510
|
clipRule: "evenodd"
|
|
3384
3511
|
}
|
|
3385
3512
|
) }),
|
|
3386
|
-
/* @__PURE__ */ (0,
|
|
3513
|
+
/* @__PURE__ */ (0, import_jsx_runtime175.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime175.jsx)("clipPath", { id: "clip0_554_27", children: /* @__PURE__ */ (0, import_jsx_runtime175.jsx)(
|
|
3387
3514
|
"rect",
|
|
3388
3515
|
{
|
|
3389
3516
|
width: "24",
|
|
@@ -3395,7 +3522,7 @@ var import_jsx_runtime167 = require("react/jsx-runtime"), IconResultsetting = ({
|
|
|
3395
3522
|
] }), Resultsetting_default = IconResultsetting;
|
|
3396
3523
|
|
|
3397
3524
|
// src/components/RightFilled.tsx
|
|
3398
|
-
var
|
|
3525
|
+
var import_jsx_runtime176 = require("react/jsx-runtime"), IconRightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime176.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime176.jsx)(
|
|
3399
3526
|
"path",
|
|
3400
3527
|
{
|
|
3401
3528
|
fill: fill || color || "currentColor",
|
|
@@ -3406,19 +3533,19 @@ var import_jsx_runtime168 = require("react/jsx-runtime"), IconRightFilled = ({ s
|
|
|
3406
3533
|
) }), RightFilled_default = IconRightFilled;
|
|
3407
3534
|
|
|
3408
3535
|
// src/components/SatisfiedFilled.tsx
|
|
3409
|
-
var
|
|
3410
|
-
/* @__PURE__ */ (0,
|
|
3536
|
+
var import_jsx_runtime177 = require("react/jsx-runtime"), IconSatisfiedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime177.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3537
|
+
/* @__PURE__ */ (0, import_jsx_runtime177.jsx)(
|
|
3411
3538
|
"path",
|
|
3412
3539
|
{
|
|
3413
3540
|
fill: fill || color || "currentColor",
|
|
3414
3541
|
d: "M10.5 0L7.5 7.5V21H21L24 12V7.5H15V3C15 1.34315 13.6569 0 12 0H10.5Z"
|
|
3415
3542
|
}
|
|
3416
3543
|
),
|
|
3417
|
-
/* @__PURE__ */ (0,
|
|
3544
|
+
/* @__PURE__ */ (0, import_jsx_runtime177.jsx)("path", { fill: fill || color || "currentColor", d: "M4.5 7.5H0V21H4.5V7.5Z" })
|
|
3418
3545
|
] }), SatisfiedFilled_default = IconSatisfiedFilled;
|
|
3419
3546
|
|
|
3420
3547
|
// src/components/Satisfied.tsx
|
|
3421
|
-
var
|
|
3548
|
+
var import_jsx_runtime178 = require("react/jsx-runtime"), IconSatisfied = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime178.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime178.jsx)(
|
|
3422
3549
|
"path",
|
|
3423
3550
|
{
|
|
3424
3551
|
fill: stroke || color || "currentColor",
|
|
@@ -3429,7 +3556,7 @@ var import_jsx_runtime170 = require("react/jsx-runtime"), IconSatisfied = ({ siz
|
|
|
3429
3556
|
) }), Satisfied_default = IconSatisfied;
|
|
3430
3557
|
|
|
3431
3558
|
// src/components/SceneNext.tsx
|
|
3432
|
-
var
|
|
3559
|
+
var import_jsx_runtime179 = require("react/jsx-runtime"), IconSceneNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime179.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime179.jsx)(
|
|
3433
3560
|
"path",
|
|
3434
3561
|
{
|
|
3435
3562
|
fill: stroke || color || "currentColor",
|
|
@@ -3438,27 +3565,27 @@ var import_jsx_runtime171 = require("react/jsx-runtime"), IconSceneNext = ({ siz
|
|
|
3438
3565
|
) }), SceneNext_default = IconSceneNext;
|
|
3439
3566
|
|
|
3440
3567
|
// src/components/Scriptmode.tsx
|
|
3441
|
-
var
|
|
3442
|
-
/* @__PURE__ */ (0,
|
|
3443
|
-
/* @__PURE__ */ (0,
|
|
3444
|
-
/* @__PURE__ */ (0,
|
|
3445
|
-
/* @__PURE__ */ (0,
|
|
3446
|
-
/* @__PURE__ */ (0,
|
|
3447
|
-
/* @__PURE__ */ (0,
|
|
3448
|
-
/* @__PURE__ */ (0,
|
|
3449
|
-
/* @__PURE__ */ (0,
|
|
3568
|
+
var import_jsx_runtime180 = require("react/jsx-runtime"), IconScriptmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime180.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3569
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H3.75V1.5H1.5V3.75Z" }),
|
|
3570
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 10.125H3.75V7.875H1.5V10.125Z" }),
|
|
3571
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H3.75V13.875H1.5V16.125Z" }),
|
|
3572
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H3.75V20.25H1.5V22.5Z" }),
|
|
3573
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 3.75H22.5V1.5H7.5V3.75Z" }),
|
|
3574
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 10.125H22.5V7.875H7.5V10.125Z" }),
|
|
3575
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 16.125H22.5V13.875H7.5V16.125Z" }),
|
|
3576
|
+
/* @__PURE__ */ (0, import_jsx_runtime180.jsx)("path", { fill: stroke || color || "currentColor", d: "M7.5 22.5H22.5V20.25H7.5V22.5Z" })
|
|
3450
3577
|
] }), Scriptmode_default = IconScriptmode;
|
|
3451
3578
|
|
|
3452
3579
|
// src/components/Scrolldown.tsx
|
|
3453
|
-
var
|
|
3454
|
-
/* @__PURE__ */ (0,
|
|
3580
|
+
var import_jsx_runtime181 = require("react/jsx-runtime"), IconScrolldown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime181.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3581
|
+
/* @__PURE__ */ (0, import_jsx_runtime181.jsx)(
|
|
3455
3582
|
"path",
|
|
3456
3583
|
{
|
|
3457
3584
|
fill: stroke || color || "currentColor",
|
|
3458
3585
|
d: "M3.79546 11.9544L12 20.1589L20.2045 11.9544L21.7955 13.5454L12 23.3409L2.20447 13.5454L3.79546 11.9544Z"
|
|
3459
3586
|
}
|
|
3460
3587
|
),
|
|
3461
|
-
/* @__PURE__ */ (0,
|
|
3588
|
+
/* @__PURE__ */ (0, import_jsx_runtime181.jsx)(
|
|
3462
3589
|
"path",
|
|
3463
3590
|
{
|
|
3464
3591
|
fill: stroke || color || "currentColor",
|
|
@@ -3467,8 +3594,19 @@ var import_jsx_runtime173 = require("react/jsx-runtime"), IconScrolldown = ({ si
|
|
|
3467
3594
|
)
|
|
3468
3595
|
] }), Scrolldown_default = IconScrolldown;
|
|
3469
3596
|
|
|
3597
|
+
// src/components/Search.tsx
|
|
3598
|
+
var import_jsx_runtime182 = require("react/jsx-runtime"), IconSearch = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime182.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime182.jsx)(
|
|
3599
|
+
"path",
|
|
3600
|
+
{
|
|
3601
|
+
fill: stroke || color || "currentColor",
|
|
3602
|
+
d: "M10.5 21C12.9942 21 15.2854 20.1303 17.0866 18.6776L22.3795 23.9705L23.9705 22.3795L18.6776 17.0866C20.1303 15.2854 21 12.9942 21 10.5C21 4.70101 16.299 0 10.5 0C4.70101 0 0 4.70101 0 10.5C0 16.299 4.70101 21 10.5 21ZM10.5 18.75C15.0563 18.75 18.75 15.0563 18.75 10.5C18.75 5.94365 15.0563 2.25 10.5 2.25C5.94365 2.25 2.25 5.94365 2.25 10.5C2.25 15.0563 5.94365 18.75 10.5 18.75Z",
|
|
3603
|
+
fillRule: "evenodd",
|
|
3604
|
+
clipRule: "evenodd"
|
|
3605
|
+
}
|
|
3606
|
+
) }), Search_default = IconSearch;
|
|
3607
|
+
|
|
3470
3608
|
// src/components/Sendrequest.tsx
|
|
3471
|
-
var
|
|
3609
|
+
var import_jsx_runtime183 = require("react/jsx-runtime"), IconSendrequest = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime183.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime183.jsx)(
|
|
3472
3610
|
"path",
|
|
3473
3611
|
{
|
|
3474
3612
|
fill: fill || color || "currentColor",
|
|
@@ -3479,7 +3617,7 @@ var import_jsx_runtime174 = require("react/jsx-runtime"), IconSendrequest = ({ s
|
|
|
3479
3617
|
) }), Sendrequest_default = IconSendrequest;
|
|
3480
3618
|
|
|
3481
3619
|
// src/components/Sendup.tsx
|
|
3482
|
-
var
|
|
3620
|
+
var import_jsx_runtime184 = require("react/jsx-runtime"), IconSendup = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime184.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime184.jsx)(
|
|
3483
3621
|
"path",
|
|
3484
3622
|
{
|
|
3485
3623
|
fill: stroke || color || "currentColor",
|
|
@@ -3488,7 +3626,7 @@ var import_jsx_runtime175 = require("react/jsx-runtime"), IconSendup = ({ size,
|
|
|
3488
3626
|
) }), Sendup_default = IconSendup;
|
|
3489
3627
|
|
|
3490
3628
|
// src/components/Sendup2.tsx
|
|
3491
|
-
var
|
|
3629
|
+
var import_jsx_runtime185 = require("react/jsx-runtime"), IconSendup2 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime185.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime185.jsx)(
|
|
3492
3630
|
"path",
|
|
3493
3631
|
{
|
|
3494
3632
|
fill: stroke || color || "currentColor",
|
|
@@ -3497,7 +3635,7 @@ var import_jsx_runtime176 = require("react/jsx-runtime"), IconSendup2 = ({ size,
|
|
|
3497
3635
|
) }), Sendup2_default = IconSendup2;
|
|
3498
3636
|
|
|
3499
3637
|
// src/components/ShareFilled.tsx
|
|
3500
|
-
var
|
|
3638
|
+
var import_jsx_runtime186 = require("react/jsx-runtime"), IconShareFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime186.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime186.jsx)(
|
|
3501
3639
|
"path",
|
|
3502
3640
|
{
|
|
3503
3641
|
fill: fill || color || "currentColor",
|
|
@@ -3506,7 +3644,7 @@ var import_jsx_runtime177 = require("react/jsx-runtime"), IconShareFilled = ({ s
|
|
|
3506
3644
|
) }), ShareFilled_default = IconShareFilled;
|
|
3507
3645
|
|
|
3508
3646
|
// src/components/Share.tsx
|
|
3509
|
-
var
|
|
3647
|
+
var import_jsx_runtime187 = require("react/jsx-runtime"), IconShare = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime187.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime187.jsx)(
|
|
3510
3648
|
"path",
|
|
3511
3649
|
{
|
|
3512
3650
|
fill: stroke || color || "currentColor",
|
|
@@ -3517,7 +3655,7 @@ var import_jsx_runtime178 = require("react/jsx-runtime"), IconShare = ({ size, w
|
|
|
3517
3655
|
) }), Share_default = IconShare;
|
|
3518
3656
|
|
|
3519
3657
|
// src/components/Sidebar.tsx
|
|
3520
|
-
var
|
|
3658
|
+
var import_jsx_runtime188 = require("react/jsx-runtime"), IconSidebar = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime188.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime188.jsx)(
|
|
3521
3659
|
"path",
|
|
3522
3660
|
{
|
|
3523
3661
|
fill: stroke || color || "currentColor",
|
|
@@ -3528,7 +3666,7 @@ var import_jsx_runtime179 = require("react/jsx-runtime"), IconSidebar = ({ size,
|
|
|
3528
3666
|
) }), Sidebar_default = IconSidebar;
|
|
3529
3667
|
|
|
3530
3668
|
// src/components/Singleunchecked.tsx
|
|
3531
|
-
var
|
|
3669
|
+
var import_jsx_runtime189 = require("react/jsx-runtime"), IconSingleunchecked = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime189.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime189.jsx)(
|
|
3532
3670
|
"path",
|
|
3533
3671
|
{
|
|
3534
3672
|
fill: stroke || color || "currentColor",
|
|
@@ -3539,7 +3677,7 @@ var import_jsx_runtime180 = require("react/jsx-runtime"), IconSingleunchecked =
|
|
|
3539
3677
|
) }), Singleunchecked_default = IconSingleunchecked;
|
|
3540
3678
|
|
|
3541
3679
|
// src/components/SocialX.tsx
|
|
3542
|
-
var
|
|
3680
|
+
var import_jsx_runtime190 = require("react/jsx-runtime"), IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime190.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime190.jsx)(
|
|
3543
3681
|
"path",
|
|
3544
3682
|
{
|
|
3545
3683
|
fill: fill || color || "currentColor",
|
|
@@ -3548,7 +3686,7 @@ var import_jsx_runtime181 = require("react/jsx-runtime"), IconSocialX = ({ size,
|
|
|
3548
3686
|
) }), SocialX_default = IconSocialX;
|
|
3549
3687
|
|
|
3550
3688
|
// src/components/SocialDiscord.tsx
|
|
3551
|
-
var
|
|
3689
|
+
var import_jsx_runtime191 = require("react/jsx-runtime"), IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime191.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime191.jsx)(
|
|
3552
3690
|
"path",
|
|
3553
3691
|
{
|
|
3554
3692
|
fill: fill || color || "currentColor",
|
|
@@ -3557,8 +3695,8 @@ var import_jsx_runtime182 = require("react/jsx-runtime"), IconSocialDiscord = ({
|
|
|
3557
3695
|
) }), SocialDiscord_default = IconSocialDiscord;
|
|
3558
3696
|
|
|
3559
3697
|
// src/components/SoundOff.tsx
|
|
3560
|
-
var
|
|
3561
|
-
/* @__PURE__ */ (0,
|
|
3698
|
+
var import_jsx_runtime192 = require("react/jsx-runtime"), IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime192.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3699
|
+
/* @__PURE__ */ (0, import_jsx_runtime192.jsx)(
|
|
3562
3700
|
"path",
|
|
3563
3701
|
{
|
|
3564
3702
|
fill: stroke || color || "currentColor",
|
|
@@ -3567,7 +3705,7 @@ var import_jsx_runtime183 = require("react/jsx-runtime"), IconSoundOff = ({ size
|
|
|
3567
3705
|
clipRule: "evenodd"
|
|
3568
3706
|
}
|
|
3569
3707
|
),
|
|
3570
|
-
/* @__PURE__ */ (0,
|
|
3708
|
+
/* @__PURE__ */ (0, import_jsx_runtime192.jsx)(
|
|
3571
3709
|
"path",
|
|
3572
3710
|
{
|
|
3573
3711
|
fill: stroke || color || "currentColor",
|
|
@@ -3577,8 +3715,8 @@ var import_jsx_runtime183 = require("react/jsx-runtime"), IconSoundOff = ({ size
|
|
|
3577
3715
|
] }), SoundOff_default = IconSoundOff;
|
|
3578
3716
|
|
|
3579
3717
|
// src/components/SoundOn.tsx
|
|
3580
|
-
var
|
|
3581
|
-
/* @__PURE__ */ (0,
|
|
3718
|
+
var import_jsx_runtime193 = require("react/jsx-runtime"), IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime193.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3719
|
+
/* @__PURE__ */ (0, import_jsx_runtime193.jsx)(
|
|
3582
3720
|
"path",
|
|
3583
3721
|
{
|
|
3584
3722
|
fill: stroke || color || "currentColor",
|
|
@@ -3587,14 +3725,14 @@ var import_jsx_runtime184 = require("react/jsx-runtime"), IconSoundOn = ({ size,
|
|
|
3587
3725
|
clipRule: "evenodd"
|
|
3588
3726
|
}
|
|
3589
3727
|
),
|
|
3590
|
-
/* @__PURE__ */ (0,
|
|
3728
|
+
/* @__PURE__ */ (0, import_jsx_runtime193.jsx)(
|
|
3591
3729
|
"path",
|
|
3592
3730
|
{
|
|
3593
3731
|
fill: stroke || color || "currentColor",
|
|
3594
3732
|
d: "M15 5.25C18.7279 5.25 21.75 8.27208 21.75 12C21.75 15.7279 18.7279 18.75 15 18.75V21C19.9706 21 24 16.9706 24 12C24 7.02944 19.9706 3 15 3V5.25Z"
|
|
3595
3733
|
}
|
|
3596
3734
|
),
|
|
3597
|
-
/* @__PURE__ */ (0,
|
|
3735
|
+
/* @__PURE__ */ (0, import_jsx_runtime193.jsx)(
|
|
3598
3736
|
"path",
|
|
3599
3737
|
{
|
|
3600
3738
|
fill: stroke || color || "currentColor",
|
|
@@ -3604,10 +3742,10 @@ var import_jsx_runtime184 = require("react/jsx-runtime"), IconSoundOn = ({ size,
|
|
|
3604
3742
|
] }), SoundOn_default = IconSoundOn;
|
|
3605
3743
|
|
|
3606
3744
|
// src/components/StopFilled.tsx
|
|
3607
|
-
var
|
|
3745
|
+
var import_jsx_runtime194 = require("react/jsx-runtime"), IconStopFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime194.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime194.jsx)("rect", { width: "21", height: "21", x: "1.5", y: "1.5", fill: fill || color || "currentColor" }) }), StopFilled_default = IconStopFilled;
|
|
3608
3746
|
|
|
3609
3747
|
// src/components/Storyboard.tsx
|
|
3610
|
-
var
|
|
3748
|
+
var import_jsx_runtime195 = require("react/jsx-runtime"), IconStoryboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime195.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime195.jsx)(
|
|
3611
3749
|
"path",
|
|
3612
3750
|
{
|
|
3613
3751
|
fill: stroke || color || "currentColor",
|
|
@@ -3618,24 +3756,24 @@ var import_jsx_runtime186 = require("react/jsx-runtime"), IconStoryboard = ({ si
|
|
|
3618
3756
|
) }), Storyboard_default = IconStoryboard;
|
|
3619
3757
|
|
|
3620
3758
|
// src/components/StyleAutoFilled.tsx
|
|
3621
|
-
var
|
|
3622
|
-
/* @__PURE__ */ (0,
|
|
3759
|
+
var import_jsx_runtime196 = require("react/jsx-runtime"), IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime196.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3760
|
+
/* @__PURE__ */ (0, import_jsx_runtime196.jsx)(
|
|
3623
3761
|
"path",
|
|
3624
3762
|
{
|
|
3625
3763
|
fill: fill || color || "currentColor",
|
|
3626
3764
|
d: "M12 4.5L15.75 3.75L16.5 0H18L18.75 3.75L22.5 4.5V6L18.75 6.75L18 10.5H16.5L15.75 6.75L12 6V4.5Z"
|
|
3627
3765
|
}
|
|
3628
3766
|
),
|
|
3629
|
-
/* @__PURE__ */ (0,
|
|
3767
|
+
/* @__PURE__ */ (0, import_jsx_runtime196.jsx)(
|
|
3630
3768
|
"path",
|
|
3631
3769
|
{
|
|
3632
3770
|
fill: fill || color || "currentColor",
|
|
3633
3771
|
d: "M0 16.5V15L6 13.5L7.5 7.5H9L10.5 13.5L16.5 15V16.5L10.5 18L9 24H7.5L6 18L0 16.5Z"
|
|
3634
3772
|
}
|
|
3635
3773
|
),
|
|
3636
|
-
/* @__PURE__ */ (0,
|
|
3637
|
-
/* @__PURE__ */ (0,
|
|
3638
|
-
/* @__PURE__ */ (0,
|
|
3774
|
+
/* @__PURE__ */ (0, import_jsx_runtime196.jsx)("path", { fill: fill || color || "currentColor", d: "M1.5 3L3.75 0.75L6 3L3.75 5.25L1.5 3Z" }),
|
|
3775
|
+
/* @__PURE__ */ (0, import_jsx_runtime196.jsx)("path", { fill: fill || color || "currentColor", d: "M22.5 21L19.5 18L16.5 21L19.5 24L22.5 21Z" }),
|
|
3776
|
+
/* @__PURE__ */ (0, import_jsx_runtime196.jsx)(
|
|
3639
3777
|
"path",
|
|
3640
3778
|
{
|
|
3641
3779
|
fill: fill || color || "currentColor",
|
|
@@ -3645,43 +3783,43 @@ var import_jsx_runtime187 = require("react/jsx-runtime"), IconStyleAutoFilled =
|
|
|
3645
3783
|
] }), StyleAutoFilled_default = IconStyleAutoFilled;
|
|
3646
3784
|
|
|
3647
3785
|
// src/components/Style.tsx
|
|
3648
|
-
var
|
|
3649
|
-
/* @__PURE__ */ (0,
|
|
3786
|
+
var import_jsx_runtime197 = require("react/jsx-runtime"), IconStyle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime197.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3787
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)(
|
|
3650
3788
|
"path",
|
|
3651
3789
|
{
|
|
3652
3790
|
fill: stroke || color || "currentColor",
|
|
3653
3791
|
d: "M12 7.5C12.8284 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8284 4.5 12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5Z"
|
|
3654
3792
|
}
|
|
3655
3793
|
),
|
|
3656
|
-
/* @__PURE__ */ (0,
|
|
3794
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)(
|
|
3657
3795
|
"path",
|
|
3658
3796
|
{
|
|
3659
3797
|
fill: stroke || color || "currentColor",
|
|
3660
3798
|
d: "M7.5 12C7.5 12.8284 6.82843 13.5 6 13.5C5.17157 13.5 4.5 12.8284 4.5 12C4.5 11.1716 5.17157 10.5 6 10.5C6.82843 10.5 7.5 11.1716 7.5 12Z"
|
|
3661
3799
|
}
|
|
3662
3800
|
),
|
|
3663
|
-
/* @__PURE__ */ (0,
|
|
3801
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)(
|
|
3664
3802
|
"path",
|
|
3665
3803
|
{
|
|
3666
3804
|
fill: stroke || color || "currentColor",
|
|
3667
3805
|
d: "M6.69679 8.81815C7.28257 9.40394 8.23232 9.40394 8.81811 8.81815C9.40389 8.23236 9.40389 7.28262 8.81811 6.69683C8.23232 6.11104 7.28257 6.11104 6.69679 6.69683C6.111 7.28262 6.111 8.23236 6.69679 8.81815Z"
|
|
3668
3806
|
}
|
|
3669
3807
|
),
|
|
3670
|
-
/* @__PURE__ */ (0,
|
|
3808
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)(
|
|
3671
3809
|
"path",
|
|
3672
3810
|
{
|
|
3673
3811
|
fill: stroke || color || "currentColor",
|
|
3674
3812
|
d: "M15.182 8.81811C14.5962 8.23232 14.5962 7.28257 15.182 6.69679C15.7678 6.111 16.7176 6.111 17.3034 6.69679C17.8891 7.28257 17.8891 8.23232 17.3034 8.81811C16.7176 9.40389 15.7678 9.40389 15.182 8.81811Z"
|
|
3675
3813
|
}
|
|
3676
3814
|
),
|
|
3677
|
-
/* @__PURE__ */ (0,
|
|
3815
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)(
|
|
3678
3816
|
"path",
|
|
3679
3817
|
{
|
|
3680
3818
|
fill: stroke || color || "currentColor",
|
|
3681
3819
|
d: "M8.81833 17.3032C9.40412 16.7174 9.40412 15.7677 8.81833 15.1819C8.23255 14.5961 7.2828 14.5961 6.69701 15.1819C6.11123 15.7677 6.11123 16.7174 6.69701 17.3032C7.2828 17.889 8.23255 17.889 8.81833 17.3032Z"
|
|
3682
3820
|
}
|
|
3683
3821
|
),
|
|
3684
|
-
/* @__PURE__ */ (0,
|
|
3822
|
+
/* @__PURE__ */ (0, import_jsx_runtime197.jsx)(
|
|
3685
3823
|
"path",
|
|
3686
3824
|
{
|
|
3687
3825
|
fill: stroke || color || "currentColor",
|
|
@@ -3693,8 +3831,8 @@ var import_jsx_runtime188 = require("react/jsx-runtime"), IconStyle = ({ size, w
|
|
|
3693
3831
|
] }), Style_default = IconStyle;
|
|
3694
3832
|
|
|
3695
3833
|
// src/components/Styleoverall.tsx
|
|
3696
|
-
var
|
|
3697
|
-
/* @__PURE__ */ (0,
|
|
3834
|
+
var import_jsx_runtime198 = require("react/jsx-runtime"), IconStyleoverall = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime198.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3835
|
+
/* @__PURE__ */ (0, import_jsx_runtime198.jsx)(
|
|
3698
3836
|
"path",
|
|
3699
3837
|
{
|
|
3700
3838
|
fill: stroke || color || "currentColor",
|
|
@@ -3703,7 +3841,7 @@ var import_jsx_runtime189 = require("react/jsx-runtime"), IconStyleoverall = ({
|
|
|
3703
3841
|
clipRule: "evenodd"
|
|
3704
3842
|
}
|
|
3705
3843
|
),
|
|
3706
|
-
/* @__PURE__ */ (0,
|
|
3844
|
+
/* @__PURE__ */ (0, import_jsx_runtime198.jsx)(
|
|
3707
3845
|
"path",
|
|
3708
3846
|
{
|
|
3709
3847
|
fill: stroke || color || "currentColor",
|
|
@@ -3712,7 +3850,7 @@ var import_jsx_runtime189 = require("react/jsx-runtime"), IconStyleoverall = ({
|
|
|
3712
3850
|
clipRule: "evenodd"
|
|
3713
3851
|
}
|
|
3714
3852
|
),
|
|
3715
|
-
/* @__PURE__ */ (0,
|
|
3853
|
+
/* @__PURE__ */ (0, import_jsx_runtime198.jsx)(
|
|
3716
3854
|
"path",
|
|
3717
3855
|
{
|
|
3718
3856
|
fill: stroke || color || "currentColor",
|
|
@@ -3721,7 +3859,7 @@ var import_jsx_runtime189 = require("react/jsx-runtime"), IconStyleoverall = ({
|
|
|
3721
3859
|
clipRule: "evenodd"
|
|
3722
3860
|
}
|
|
3723
3861
|
),
|
|
3724
|
-
/* @__PURE__ */ (0,
|
|
3862
|
+
/* @__PURE__ */ (0, import_jsx_runtime198.jsx)(
|
|
3725
3863
|
"path",
|
|
3726
3864
|
{
|
|
3727
3865
|
fill: stroke || color || "currentColor",
|
|
@@ -3733,7 +3871,7 @@ var import_jsx_runtime189 = require("react/jsx-runtime"), IconStyleoverall = ({
|
|
|
3733
3871
|
] }), Styleoverall_default = IconStyleoverall;
|
|
3734
3872
|
|
|
3735
3873
|
// src/components/SwitchOffFilled.tsx
|
|
3736
|
-
var
|
|
3874
|
+
var import_jsx_runtime199 = require("react/jsx-runtime"), IconSwitchOffFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime199.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime199.jsx)(
|
|
3737
3875
|
"path",
|
|
3738
3876
|
{
|
|
3739
3877
|
fill: fill || color || "currentColor",
|
|
@@ -3744,7 +3882,7 @@ var import_jsx_runtime190 = require("react/jsx-runtime"), IconSwitchOffFilled =
|
|
|
3744
3882
|
) }), SwitchOffFilled_default = IconSwitchOffFilled;
|
|
3745
3883
|
|
|
3746
3884
|
// src/components/SwitchOnFilled.tsx
|
|
3747
|
-
var
|
|
3885
|
+
var import_jsx_runtime200 = require("react/jsx-runtime"), IconSwitchOnFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime200.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime200.jsx)(
|
|
3748
3886
|
"path",
|
|
3749
3887
|
{
|
|
3750
3888
|
fill: fill || color || "currentColor",
|
|
@@ -3755,7 +3893,7 @@ var import_jsx_runtime191 = require("react/jsx-runtime"), IconSwitchOnFilled = (
|
|
|
3755
3893
|
) }), SwitchOnFilled_default = IconSwitchOnFilled;
|
|
3756
3894
|
|
|
3757
3895
|
// src/components/Table.tsx
|
|
3758
|
-
var
|
|
3896
|
+
var import_jsx_runtime201 = require("react/jsx-runtime"), IconTable = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime201.jsx)("svg", { fill: "none", viewBox: "0 0 24 25", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime201.jsx)(
|
|
3759
3897
|
"path",
|
|
3760
3898
|
{
|
|
3761
3899
|
fill: stroke || color || "currentColor",
|
|
@@ -3766,8 +3904,8 @@ var import_jsx_runtime192 = require("react/jsx-runtime"), IconTable = ({ size, w
|
|
|
3766
3904
|
) }), Table_default = IconTable;
|
|
3767
3905
|
|
|
3768
3906
|
// src/components/Target.tsx
|
|
3769
|
-
var
|
|
3770
|
-
/* @__PURE__ */ (0,
|
|
3907
|
+
var import_jsx_runtime202 = require("react/jsx-runtime"), IconTarget = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime202.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3908
|
+
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)(
|
|
3771
3909
|
"path",
|
|
3772
3910
|
{
|
|
3773
3911
|
fill: stroke || color || "currentColor",
|
|
@@ -3776,7 +3914,7 @@ var import_jsx_runtime193 = require("react/jsx-runtime"), IconTarget = ({ size,
|
|
|
3776
3914
|
clipRule: "evenodd"
|
|
3777
3915
|
}
|
|
3778
3916
|
),
|
|
3779
|
-
/* @__PURE__ */ (0,
|
|
3917
|
+
/* @__PURE__ */ (0, import_jsx_runtime202.jsx)(
|
|
3780
3918
|
"path",
|
|
3781
3919
|
{
|
|
3782
3920
|
fill: stroke || color || "currentColor",
|
|
@@ -3788,43 +3926,43 @@ var import_jsx_runtime193 = require("react/jsx-runtime"), IconTarget = ({ size,
|
|
|
3788
3926
|
] }), Target_default = IconTarget;
|
|
3789
3927
|
|
|
3790
3928
|
// src/components/TextLogo.tsx
|
|
3791
|
-
var
|
|
3792
|
-
/* @__PURE__ */ (0,
|
|
3929
|
+
var import_jsx_runtime203 = require("react/jsx-runtime"), IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime203.jsxs)("svg", { fill: "none", viewBox: "0 0 124 40", className, width: width || size, height: height || size, children: [
|
|
3930
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
3793
3931
|
"path",
|
|
3794
3932
|
{
|
|
3795
3933
|
fill: fill || color || "currentColor",
|
|
3796
3934
|
d: "M42.0618 5.62237C49.8822 5.62238 56.2219 11.962 56.2219 19.7823C56.2218 27.6027 49.8822 33.9423 42.0618 33.9423C34.2415 33.9423 27.9019 27.6027 27.9018 19.7823C27.9018 11.962 34.2415 5.62237 42.0618 5.62237ZM42.0618 13.1743C38.4124 13.1743 35.4538 16.1328 35.4538 19.7823C35.4538 23.4318 38.4124 26.3903 42.0618 26.3903C45.7113 26.3903 48.6698 23.4318 48.6698 19.7823C48.6698 16.1329 45.7113 13.1743 42.0618 13.1743Z"
|
|
3797
3935
|
}
|
|
3798
3936
|
),
|
|
3799
|
-
/* @__PURE__ */ (0,
|
|
3937
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
3800
3938
|
"path",
|
|
3801
3939
|
{
|
|
3802
3940
|
fill: fill || color || "currentColor",
|
|
3803
3941
|
d: "M89.3535 5.62237C97.1738 5.62237 103.514 11.962 103.514 19.7823C103.514 27.6027 97.1738 33.9423 89.3535 33.9423C81.5331 33.9423 75.1935 27.6027 75.1935 19.7823C75.1935 11.962 81.5331 5.62239 89.3535 5.62237ZM89.3535 13.1744C85.704 13.1744 82.7455 16.1329 82.7455 19.7823C82.7455 23.4318 85.704 26.3904 89.3535 26.3904C93.003 26.3904 95.9615 23.4318 95.9615 19.7823C95.9615 16.1329 93.003 13.1744 89.3535 13.1744Z"
|
|
3804
3942
|
}
|
|
3805
3943
|
),
|
|
3806
|
-
/* @__PURE__ */ (0,
|
|
3944
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
3807
3945
|
"path",
|
|
3808
3946
|
{
|
|
3809
3947
|
fill: fill || color || "currentColor",
|
|
3810
3948
|
d: "M59.1199 19.3272C59.1199 11.741 63.1893 6.56006 71.8774 6.56006H73.4399C73.8818 6.56006 74.2399 6.91823 74.2399 7.36006V13.3258C74.2399 13.7676 73.8818 14.1258 73.4399 14.1258H71.8774C68.8335 14.1258 66.6799 16.2577 66.6799 19.3272V32.24C66.6799 32.6818 66.3217 33.04 65.8799 33.04H59.9199C59.4781 33.04 59.1199 32.6818 59.1199 32.24V19.3272Z"
|
|
3811
3949
|
}
|
|
3812
3950
|
),
|
|
3813
|
-
/* @__PURE__ */ (0,
|
|
3951
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
3814
3952
|
"path",
|
|
3815
3953
|
{
|
|
3816
3954
|
fill: fill || color || "currentColor",
|
|
3817
3955
|
d: "M106 0.799999C106 0.358172 106.358 0 106.8 0H112.8C113.242 0 113.6 0.358171 113.6 0.799998V32.3199C113.6 32.7618 113.242 33.1199 112.8 33.1199H106.8C106.358 33.1199 106 32.7618 106 32.3199V0.799999Z"
|
|
3818
3956
|
}
|
|
3819
3957
|
),
|
|
3820
|
-
/* @__PURE__ */ (0,
|
|
3958
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
3821
3959
|
"path",
|
|
3822
3960
|
{
|
|
3823
3961
|
fill: fill || color || "currentColor",
|
|
3824
3962
|
d: "M116.4 0.799999C116.4 0.358172 116.758 0 117.2 0H123.2C123.642 0 124 0.358171 124 0.799998V32.3199C124 32.7618 123.642 33.1199 123.2 33.1199H117.2C116.758 33.1199 116.4 32.7618 116.4 32.3199V0.799999Z"
|
|
3825
3963
|
}
|
|
3826
3964
|
),
|
|
3827
|
-
/* @__PURE__ */ (0,
|
|
3965
|
+
/* @__PURE__ */ (0, import_jsx_runtime203.jsx)(
|
|
3828
3966
|
"path",
|
|
3829
3967
|
{
|
|
3830
3968
|
fill: fill || color || "currentColor",
|
|
@@ -3834,7 +3972,7 @@ var import_jsx_runtime194 = require("react/jsx-runtime"), IconTextLogo = ({ size
|
|
|
3834
3972
|
] }), TextLogo_default = IconTextLogo;
|
|
3835
3973
|
|
|
3836
3974
|
// src/components/TipsFilled.tsx
|
|
3837
|
-
var
|
|
3975
|
+
var import_jsx_runtime204 = require("react/jsx-runtime"), IconTipsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime204.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime204.jsx)(
|
|
3838
3976
|
"path",
|
|
3839
3977
|
{
|
|
3840
3978
|
fill: fill || color || "currentColor",
|
|
@@ -3845,7 +3983,7 @@ var import_jsx_runtime195 = require("react/jsx-runtime"), IconTipsFilled = ({ si
|
|
|
3845
3983
|
) }), TipsFilled_default = IconTipsFilled;
|
|
3846
3984
|
|
|
3847
3985
|
// src/components/Tips.tsx
|
|
3848
|
-
var
|
|
3986
|
+
var import_jsx_runtime205 = require("react/jsx-runtime"), IconTips = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime205.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime205.jsx)(
|
|
3849
3987
|
"path",
|
|
3850
3988
|
{
|
|
3851
3989
|
fill: stroke || color || "currentColor",
|
|
@@ -3856,15 +3994,15 @@ var import_jsx_runtime196 = require("react/jsx-runtime"), IconTips = ({ size, wi
|
|
|
3856
3994
|
) }), Tips_default = IconTips;
|
|
3857
3995
|
|
|
3858
3996
|
// src/components/ToolsFilled.tsx
|
|
3859
|
-
var
|
|
3860
|
-
/* @__PURE__ */ (0,
|
|
3997
|
+
var import_jsx_runtime206 = require("react/jsx-runtime"), IconToolsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime206.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3998
|
+
/* @__PURE__ */ (0, import_jsx_runtime206.jsx)(
|
|
3861
3999
|
"path",
|
|
3862
4000
|
{
|
|
3863
4001
|
fill: fill || color || "currentColor",
|
|
3864
4002
|
d: "M24 12L19.5 16.5L15 15L9 9L7.5 4.5L12 0L16.5 1.5L22.5 7.5L24 12Z"
|
|
3865
4003
|
}
|
|
3866
4004
|
),
|
|
3867
|
-
/* @__PURE__ */ (0,
|
|
4005
|
+
/* @__PURE__ */ (0, import_jsx_runtime206.jsx)(
|
|
3868
4006
|
"path",
|
|
3869
4007
|
{
|
|
3870
4008
|
fill: fill || color || "currentColor",
|
|
@@ -3874,7 +4012,7 @@ var import_jsx_runtime197 = require("react/jsx-runtime"), IconToolsFilled = ({ s
|
|
|
3874
4012
|
] }), ToolsFilled_default = IconToolsFilled;
|
|
3875
4013
|
|
|
3876
4014
|
// src/components/Tools.tsx
|
|
3877
|
-
var
|
|
4015
|
+
var import_jsx_runtime207 = require("react/jsx-runtime"), IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime207.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime207.jsx)(
|
|
3878
4016
|
"path",
|
|
3879
4017
|
{
|
|
3880
4018
|
stroke: stroke || color || "currentColor",
|
|
@@ -3884,7 +4022,7 @@ var import_jsx_runtime198 = require("react/jsx-runtime"), IconTools = ({ size, w
|
|
|
3884
4022
|
) }), Tools_default = IconTools;
|
|
3885
4023
|
|
|
3886
4024
|
// src/components/Undo.tsx
|
|
3887
|
-
var
|
|
4025
|
+
var import_jsx_runtime208 = require("react/jsx-runtime"), IconUndo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime208.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime208.jsx)(
|
|
3888
4026
|
"path",
|
|
3889
4027
|
{
|
|
3890
4028
|
fill: stroke || color || "currentColor",
|
|
@@ -3895,19 +4033,19 @@ var import_jsx_runtime199 = require("react/jsx-runtime"), IconUndo = ({ size, wi
|
|
|
3895
4033
|
) }), Undo_default = IconUndo;
|
|
3896
4034
|
|
|
3897
4035
|
// src/components/UnsatisfiedFilled.tsx
|
|
3898
|
-
var
|
|
3899
|
-
/* @__PURE__ */ (0,
|
|
4036
|
+
var import_jsx_runtime209 = require("react/jsx-runtime"), IconUnsatisfiedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime209.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4037
|
+
/* @__PURE__ */ (0, import_jsx_runtime209.jsx)(
|
|
3900
4038
|
"path",
|
|
3901
4039
|
{
|
|
3902
4040
|
fill: fill || color || "currentColor",
|
|
3903
4041
|
d: "M10.5 24L7.5 16.5V3H21L24 12V16.5H15V21C15 22.6569 13.6569 24 12 24H10.5Z"
|
|
3904
4042
|
}
|
|
3905
4043
|
),
|
|
3906
|
-
/* @__PURE__ */ (0,
|
|
4044
|
+
/* @__PURE__ */ (0, import_jsx_runtime209.jsx)("path", { fill: fill || color || "currentColor", d: "M4.5 16.5H0V3H4.5V16.5Z" })
|
|
3907
4045
|
] }), UnsatisfiedFilled_default = IconUnsatisfiedFilled;
|
|
3908
4046
|
|
|
3909
4047
|
// src/components/Unsatisfied.tsx
|
|
3910
|
-
var
|
|
4048
|
+
var import_jsx_runtime210 = require("react/jsx-runtime"), IconUnsatisfied = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime210.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime210.jsx)(
|
|
3911
4049
|
"path",
|
|
3912
4050
|
{
|
|
3913
4051
|
fill: stroke || color || "currentColor",
|
|
@@ -3918,7 +4056,7 @@ var import_jsx_runtime201 = require("react/jsx-runtime"), IconUnsatisfied = ({ s
|
|
|
3918
4056
|
) }), Unsatisfied_default = IconUnsatisfied;
|
|
3919
4057
|
|
|
3920
4058
|
// src/components/UpFilled.tsx
|
|
3921
|
-
var
|
|
4059
|
+
var import_jsx_runtime211 = require("react/jsx-runtime"), IconUpFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime211.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime211.jsx)(
|
|
3922
4060
|
"path",
|
|
3923
4061
|
{
|
|
3924
4062
|
fill: fill || color || "currentColor",
|
|
@@ -3929,7 +4067,7 @@ var import_jsx_runtime202 = require("react/jsx-runtime"), IconUpFilled = ({ size
|
|
|
3929
4067
|
) }), UpFilled_default = IconUpFilled;
|
|
3930
4068
|
|
|
3931
4069
|
// src/components/UpleftFilled.tsx
|
|
3932
|
-
var
|
|
4070
|
+
var import_jsx_runtime212 = require("react/jsx-runtime"), IconUpleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime212.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime212.jsx)(
|
|
3933
4071
|
"path",
|
|
3934
4072
|
{
|
|
3935
4073
|
fill: fill || color || "currentColor",
|
|
@@ -3940,7 +4078,7 @@ var import_jsx_runtime203 = require("react/jsx-runtime"), IconUpleftFilled = ({
|
|
|
3940
4078
|
) }), UpleftFilled_default = IconUpleftFilled;
|
|
3941
4079
|
|
|
3942
4080
|
// src/components/Uploadedvideo.tsx
|
|
3943
|
-
var
|
|
4081
|
+
var import_jsx_runtime213 = require("react/jsx-runtime"), IconUploadedvideo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime213.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime213.jsx)(
|
|
3944
4082
|
"path",
|
|
3945
4083
|
{
|
|
3946
4084
|
fill: fill || color || "currentColor",
|
|
@@ -3951,7 +4089,7 @@ var import_jsx_runtime204 = require("react/jsx-runtime"), IconUploadedvideo = ({
|
|
|
3951
4089
|
) }), Uploadedvideo_default = IconUploadedvideo;
|
|
3952
4090
|
|
|
3953
4091
|
// src/components/Uploadfiles.tsx
|
|
3954
|
-
var
|
|
4092
|
+
var import_jsx_runtime214 = require("react/jsx-runtime"), IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime214.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime214.jsx)(
|
|
3955
4093
|
"path",
|
|
3956
4094
|
{
|
|
3957
4095
|
fill: stroke || color || "currentColor",
|
|
@@ -3960,7 +4098,7 @@ var import_jsx_runtime205 = require("react/jsx-runtime"), IconUploadfiles = ({ s
|
|
|
3960
4098
|
) }), Uploadfiles_default = IconUploadfiles;
|
|
3961
4099
|
|
|
3962
4100
|
// src/components/Uploadstory.tsx
|
|
3963
|
-
var
|
|
4101
|
+
var import_jsx_runtime215 = require("react/jsx-runtime"), IconUploadstory = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime215.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime215.jsx)(
|
|
3964
4102
|
"path",
|
|
3965
4103
|
{
|
|
3966
4104
|
fill: stroke || color || "currentColor",
|
|
@@ -3971,7 +4109,7 @@ var import_jsx_runtime206 = require("react/jsx-runtime"), IconUploadstory = ({ s
|
|
|
3971
4109
|
) }), Uploadstory_default = IconUploadstory;
|
|
3972
4110
|
|
|
3973
4111
|
// src/components/UprightFilled.tsx
|
|
3974
|
-
var
|
|
4112
|
+
var import_jsx_runtime216 = require("react/jsx-runtime"), IconUprightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime216.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime216.jsx)(
|
|
3975
4113
|
"path",
|
|
3976
4114
|
{
|
|
3977
4115
|
fill: fill || color || "currentColor",
|
|
@@ -3982,7 +4120,7 @@ var import_jsx_runtime207 = require("react/jsx-runtime"), IconUprightFilled = ({
|
|
|
3982
4120
|
) }), UprightFilled_default = IconUprightFilled;
|
|
3983
4121
|
|
|
3984
4122
|
// src/components/Userfeedback.tsx
|
|
3985
|
-
var
|
|
4123
|
+
var import_jsx_runtime217 = require("react/jsx-runtime"), IconUserfeedback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime217.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime217.jsx)(
|
|
3986
4124
|
"path",
|
|
3987
4125
|
{
|
|
3988
4126
|
fill: stroke || color || "currentColor",
|
|
@@ -3993,16 +4131,16 @@ var import_jsx_runtime208 = require("react/jsx-runtime"), IconUserfeedback = ({
|
|
|
3993
4131
|
) }), Userfeedback_default = IconUserfeedback;
|
|
3994
4132
|
|
|
3995
4133
|
// src/components/Userfollow.tsx
|
|
3996
|
-
var
|
|
3997
|
-
/* @__PURE__ */ (0,
|
|
4134
|
+
var import_jsx_runtime218 = require("react/jsx-runtime"), IconUserfollow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime218.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4135
|
+
/* @__PURE__ */ (0, import_jsx_runtime218.jsx)(
|
|
3998
4136
|
"path",
|
|
3999
4137
|
{
|
|
4000
4138
|
fill: stroke || color || "currentColor",
|
|
4001
4139
|
d: "M15 15.25H6.5C5.25736 15.25 4.25 16.2574 4.25 17.5V19.75H12V22H2V17.5C2 15.0147 4.01472 13 6.5 13H15V15.25Z"
|
|
4002
4140
|
}
|
|
4003
4141
|
),
|
|
4004
|
-
/* @__PURE__ */ (0,
|
|
4005
|
-
/* @__PURE__ */ (0,
|
|
4142
|
+
/* @__PURE__ */ (0, import_jsx_runtime218.jsx)("path", { fill: stroke || color || "currentColor", d: "M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z" }),
|
|
4143
|
+
/* @__PURE__ */ (0, import_jsx_runtime218.jsx)(
|
|
4006
4144
|
"path",
|
|
4007
4145
|
{
|
|
4008
4146
|
fill: stroke || color || "currentColor",
|
|
@@ -4014,7 +4152,7 @@ var import_jsx_runtime209 = require("react/jsx-runtime"), IconUserfollow = ({ si
|
|
|
4014
4152
|
] }), Userfollow_default = IconUserfollow;
|
|
4015
4153
|
|
|
4016
4154
|
// src/components/Userfollowback.tsx
|
|
4017
|
-
var
|
|
4155
|
+
var import_jsx_runtime219 = require("react/jsx-runtime"), IconUserfollowback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime219.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime219.jsx)(
|
|
4018
4156
|
"path",
|
|
4019
4157
|
{
|
|
4020
4158
|
fill: stroke || color || "currentColor",
|
|
@@ -4023,7 +4161,7 @@ var import_jsx_runtime210 = require("react/jsx-runtime"), IconUserfollowback = (
|
|
|
4023
4161
|
) }), Userfollowback_default = IconUserfollowback;
|
|
4024
4162
|
|
|
4025
4163
|
// src/components/Userfollowed.tsx
|
|
4026
|
-
var
|
|
4164
|
+
var import_jsx_runtime220 = require("react/jsx-runtime"), IconUserfollowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime220.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime220.jsx)(
|
|
4027
4165
|
"path",
|
|
4028
4166
|
{
|
|
4029
4167
|
fill: stroke || color || "currentColor",
|
|
@@ -4032,15 +4170,15 @@ var import_jsx_runtime211 = require("react/jsx-runtime"), IconUserfollowed = ({
|
|
|
4032
4170
|
) }), Userfollowed_default = IconUserfollowed;
|
|
4033
4171
|
|
|
4034
4172
|
// src/components/VideoGeneration.tsx
|
|
4035
|
-
var
|
|
4036
|
-
/* @__PURE__ */ (0,
|
|
4173
|
+
var import_jsx_runtime221 = require("react/jsx-runtime"), IconVideoGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime221.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4174
|
+
/* @__PURE__ */ (0, import_jsx_runtime221.jsx)(
|
|
4037
4175
|
"path",
|
|
4038
4176
|
{
|
|
4039
4177
|
fill: stroke || color || "currentColor",
|
|
4040
4178
|
d: "M12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12H24C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0V2.25Z"
|
|
4041
4179
|
}
|
|
4042
4180
|
),
|
|
4043
|
-
/* @__PURE__ */ (0,
|
|
4181
|
+
/* @__PURE__ */ (0, import_jsx_runtime221.jsx)(
|
|
4044
4182
|
"path",
|
|
4045
4183
|
{
|
|
4046
4184
|
fill: stroke || color || "currentColor",
|
|
@@ -4049,7 +4187,7 @@ var import_jsx_runtime212 = require("react/jsx-runtime"), IconVideoGeneration =
|
|
|
4049
4187
|
clipRule: "evenodd"
|
|
4050
4188
|
}
|
|
4051
4189
|
),
|
|
4052
|
-
/* @__PURE__ */ (0,
|
|
4190
|
+
/* @__PURE__ */ (0, import_jsx_runtime221.jsx)(
|
|
4053
4191
|
"path",
|
|
4054
4192
|
{
|
|
4055
4193
|
fill: stroke || color || "currentColor",
|
|
@@ -4059,9 +4197,9 @@ var import_jsx_runtime212 = require("react/jsx-runtime"), IconVideoGeneration =
|
|
|
4059
4197
|
] }), VideoGeneration_default = IconVideoGeneration;
|
|
4060
4198
|
|
|
4061
4199
|
// src/components/VideoLength.tsx
|
|
4062
|
-
var
|
|
4063
|
-
/* @__PURE__ */ (0,
|
|
4064
|
-
/* @__PURE__ */ (0,
|
|
4200
|
+
var import_jsx_runtime222 = require("react/jsx-runtime"), IconVideoLength = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime222.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4201
|
+
/* @__PURE__ */ (0, import_jsx_runtime222.jsx)("path", { fill: stroke || color || "currentColor", d: "M10.875 9V15H13.125V9H10.875Z" }),
|
|
4202
|
+
/* @__PURE__ */ (0, import_jsx_runtime222.jsx)(
|
|
4065
4203
|
"path",
|
|
4066
4204
|
{
|
|
4067
4205
|
fill: stroke || color || "currentColor",
|
|
@@ -4073,8 +4211,8 @@ var import_jsx_runtime213 = require("react/jsx-runtime"), IconVideoLength = ({ s
|
|
|
4073
4211
|
] }), VideoLength_default = IconVideoLength;
|
|
4074
4212
|
|
|
4075
4213
|
// src/components/Videogenerate.tsx
|
|
4076
|
-
var
|
|
4077
|
-
/* @__PURE__ */ (0,
|
|
4214
|
+
var import_jsx_runtime223 = require("react/jsx-runtime"), IconVideogenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime223.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4215
|
+
/* @__PURE__ */ (0, import_jsx_runtime223.jsx)(
|
|
4078
4216
|
"path",
|
|
4079
4217
|
{
|
|
4080
4218
|
fill: stroke || color || "currentColor",
|
|
@@ -4083,7 +4221,7 @@ var import_jsx_runtime214 = require("react/jsx-runtime"), IconVideogenerate = ({
|
|
|
4083
4221
|
clipRule: "evenodd"
|
|
4084
4222
|
}
|
|
4085
4223
|
),
|
|
4086
|
-
/* @__PURE__ */ (0,
|
|
4224
|
+
/* @__PURE__ */ (0, import_jsx_runtime223.jsx)(
|
|
4087
4225
|
"path",
|
|
4088
4226
|
{
|
|
4089
4227
|
fill: stroke || color || "currentColor",
|
|
@@ -4095,7 +4233,7 @@ var import_jsx_runtime214 = require("react/jsx-runtime"), IconVideogenerate = ({
|
|
|
4095
4233
|
] }), Videogenerate_default = IconVideogenerate;
|
|
4096
4234
|
|
|
4097
4235
|
// src/components/Visualstyles.tsx
|
|
4098
|
-
var
|
|
4236
|
+
var import_jsx_runtime224 = require("react/jsx-runtime"), IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime224.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime224.jsx)(
|
|
4099
4237
|
"path",
|
|
4100
4238
|
{
|
|
4101
4239
|
fill: stroke || color || "currentColor",
|
|
@@ -4106,8 +4244,8 @@ var import_jsx_runtime215 = require("react/jsx-runtime"), IconVisualstyles = ({
|
|
|
4106
4244
|
) }), Visualstyles_default = IconVisualstyles;
|
|
4107
4245
|
|
|
4108
4246
|
// src/components/Volume.tsx
|
|
4109
|
-
var
|
|
4110
|
-
/* @__PURE__ */ (0,
|
|
4247
|
+
var import_jsx_runtime225 = require("react/jsx-runtime"), IconVolume = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime225.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4248
|
+
/* @__PURE__ */ (0, import_jsx_runtime225.jsx)(
|
|
4111
4249
|
"path",
|
|
4112
4250
|
{
|
|
4113
4251
|
fill: stroke || color || "currentColor",
|
|
@@ -4116,14 +4254,14 @@ var import_jsx_runtime216 = require("react/jsx-runtime"), IconVolume = ({ size,
|
|
|
4116
4254
|
clipRule: "evenodd"
|
|
4117
4255
|
}
|
|
4118
4256
|
),
|
|
4119
|
-
/* @__PURE__ */ (0,
|
|
4257
|
+
/* @__PURE__ */ (0, import_jsx_runtime225.jsx)(
|
|
4120
4258
|
"path",
|
|
4121
4259
|
{
|
|
4122
4260
|
fill: stroke || color || "currentColor",
|
|
4123
4261
|
d: "M15 5.25C18.7279 5.25 21.75 8.27208 21.75 12C21.75 15.7279 18.7279 18.75 15 18.75V21C19.9706 21 24 16.9706 24 12C24 7.02944 19.9706 3 15 3V5.25Z"
|
|
4124
4262
|
}
|
|
4125
4263
|
),
|
|
4126
|
-
/* @__PURE__ */ (0,
|
|
4264
|
+
/* @__PURE__ */ (0, import_jsx_runtime225.jsx)(
|
|
4127
4265
|
"path",
|
|
4128
4266
|
{
|
|
4129
4267
|
fill: stroke || color || "currentColor",
|
|
@@ -4133,7 +4271,7 @@ var import_jsx_runtime216 = require("react/jsx-runtime"), IconVolume = ({ size,
|
|
|
4133
4271
|
] }), Volume_default = IconVolume;
|
|
4134
4272
|
|
|
4135
4273
|
// src/components/Withdrawgame.tsx
|
|
4136
|
-
var
|
|
4274
|
+
var import_jsx_runtime226 = require("react/jsx-runtime"), IconWithdrawgame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime226.jsx)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ (0, import_jsx_runtime226.jsx)(
|
|
4137
4275
|
"path",
|
|
4138
4276
|
{
|
|
4139
4277
|
fill: stroke || color || "currentColor",
|
|
@@ -4144,15 +4282,15 @@ var import_jsx_runtime217 = require("react/jsx-runtime"), IconWithdrawgame = ({
|
|
|
4144
4282
|
) }), Withdrawgame_default = IconWithdrawgame;
|
|
4145
4283
|
|
|
4146
4284
|
// src/components/Zoomhandle.tsx
|
|
4147
|
-
var
|
|
4148
|
-
/* @__PURE__ */ (0,
|
|
4285
|
+
var import_jsx_runtime227 = require("react/jsx-runtime"), IconZoomhandle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime227.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4286
|
+
/* @__PURE__ */ (0, import_jsx_runtime227.jsx)(
|
|
4149
4287
|
"path",
|
|
4150
4288
|
{
|
|
4151
4289
|
fill: fill || color || "currentColor",
|
|
4152
4290
|
d: "M12 -2.62268e-07C15.3137 -1.17422e-07 18 2.68629 18 6L18 18C18 21.3137 15.3137 24 12 24C8.68629 24 6 21.3137 6 18L6 6C6 2.68629 8.68629 -4.07115e-07 12 -2.62268e-07Z"
|
|
4153
4291
|
}
|
|
4154
4292
|
),
|
|
4155
|
-
/* @__PURE__ */ (0,
|
|
4293
|
+
/* @__PURE__ */ (0, import_jsx_runtime227.jsx)(
|
|
4156
4294
|
"path",
|
|
4157
4295
|
{
|
|
4158
4296
|
fill: stroke || color || "currentColor",
|
|
@@ -4162,15 +4300,15 @@ var import_jsx_runtime218 = require("react/jsx-runtime"), IconZoomhandle = ({ si
|
|
|
4162
4300
|
] }), Zoomhandle_default = IconZoomhandle;
|
|
4163
4301
|
|
|
4164
4302
|
// src/components/Zoomin.tsx
|
|
4165
|
-
var
|
|
4166
|
-
/* @__PURE__ */ (0,
|
|
4303
|
+
var import_jsx_runtime228 = require("react/jsx-runtime"), IconZoomin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime228.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4304
|
+
/* @__PURE__ */ (0, import_jsx_runtime228.jsx)(
|
|
4167
4305
|
"path",
|
|
4168
4306
|
{
|
|
4169
4307
|
fill: stroke || color || "currentColor",
|
|
4170
4308
|
d: "M11.625 11.625H15V9.375H11.625V6H9.375V9.375H6V11.625H9.375V15H11.625V11.625Z"
|
|
4171
4309
|
}
|
|
4172
4310
|
),
|
|
4173
|
-
/* @__PURE__ */ (0,
|
|
4311
|
+
/* @__PURE__ */ (0, import_jsx_runtime228.jsx)(
|
|
4174
4312
|
"path",
|
|
4175
4313
|
{
|
|
4176
4314
|
fill: stroke || color || "currentColor",
|
|
@@ -4182,9 +4320,9 @@ var import_jsx_runtime219 = require("react/jsx-runtime"), IconZoomin = ({ size,
|
|
|
4182
4320
|
] }), Zoomin_default = IconZoomin;
|
|
4183
4321
|
|
|
4184
4322
|
// src/components/Zoomout.tsx
|
|
4185
|
-
var
|
|
4186
|
-
/* @__PURE__ */ (0,
|
|
4187
|
-
/* @__PURE__ */ (0,
|
|
4323
|
+
var import_jsx_runtime229 = require("react/jsx-runtime"), IconZoomout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ (0, import_jsx_runtime229.jsxs)("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
4324
|
+
/* @__PURE__ */ (0, import_jsx_runtime229.jsx)("path", { fill: stroke || color || "currentColor", d: "M15 11.625H6V9.375H15V11.625Z" }),
|
|
4325
|
+
/* @__PURE__ */ (0, import_jsx_runtime229.jsx)(
|
|
4188
4326
|
"path",
|
|
4189
4327
|
{
|
|
4190
4328
|
fill: stroke || color || "currentColor",
|