@yoroll/react-icon 0.0.12 → 0.0.14
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 +1202 -439
- package/dist/index.iife.js +1156 -438
- package/dist/index.iife.min.js +6 -6
- package/dist/index.js +1367 -559
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.js +2 -2
- package/dist/types/components/Aboutus.d.ts +4 -0
- package/dist/types/components/Announcement.d.ts +4 -0
- package/dist/types/components/Backtoprojects.d.ts +4 -0
- package/dist/types/components/Changeprofilephoto.d.ts +4 -0
- package/dist/types/components/DownFilled.d.ts +4 -0
- package/dist/types/components/DownleftFilled.d.ts +4 -0
- package/dist/types/components/DownrightFilled.d.ts +4 -0
- package/dist/types/components/FiletypeImageFilled.d.ts +4 -0
- package/dist/types/components/FiletypeTxtFilled.d.ts +4 -0
- package/dist/types/components/FiletypeTxtLumiFilled.d.ts +4 -0
- package/dist/types/components/FiletypeWordFilled.d.ts +4 -0
- package/dist/types/components/FiletypeWordLumiFilled.d.ts +4 -0
- package/dist/types/components/FoldedMenu.d.ts +4 -0
- package/dist/types/components/Game.d.ts +4 -0
- package/dist/types/components/GameFilled.d.ts +4 -0
- package/dist/types/components/Gamebackup.d.ts +4 -0
- package/dist/types/components/GamebackupFilled.d.ts +4 -0
- package/dist/types/components/GamecontrolNone.d.ts +4 -0
- package/dist/types/components/Gameui.d.ts +4 -0
- package/dist/types/components/Hotareacenter.d.ts +4 -0
- package/dist/types/components/LeftFilled.d.ts +4 -0
- package/dist/types/components/ModelOpenaiFilled.d.ts +4 -0
- package/dist/types/components/MoreCollapse.d.ts +4 -0
- package/dist/types/components/MoreHorizontal.d.ts +4 -0
- package/dist/types/components/MoreShowed.d.ts +4 -0
- package/dist/types/components/MouseDrag.d.ts +4 -0
- package/dist/types/components/MouseMove.d.ts +4 -0
- package/dist/types/components/MouseNumberchange.d.ts +4 -0
- package/dist/types/components/OppsFilled.d.ts +4 -0
- package/dist/types/components/OptionalcheckedFilled.d.ts +4 -0
- package/dist/types/components/Optionaluncheck.d.ts +4 -0
- package/dist/types/components/Packagegame.d.ts +4 -0
- package/dist/types/components/Parameters.d.ts +4 -0
- package/dist/types/components/Pause.d.ts +4 -0
- package/dist/types/components/Play.d.ts +4 -0
- package/dist/types/components/Publish.d.ts +4 -0
- package/dist/types/components/RightFilled.d.ts +4 -0
- package/dist/types/components/SwitchOffFilled.d.ts +4 -0
- package/dist/types/components/Tips.d.ts +4 -0
- package/dist/types/components/UpFilled.d.ts +4 -0
- package/dist/types/components/UpleftFilled.d.ts +4 -0
- package/dist/types/components/UprightFilled.d.ts +4 -0
- package/dist/types/components/Withdrawgame.d.ts +4 -0
- package/dist/types/components/Zoomin.d.ts +4 -0
- package/dist/types/components/Zoomout.d.ts +4 -0
- package/dist/types/components/index.d.ts +45 -0
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @lineargame svg icons react v0.0.
|
|
1
|
+
/*! @lineargame svg icons react v0.0.13 */
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// src/components/Homepage.tsx
|
|
@@ -44,17 +44,38 @@ var IconUploadimage = ({ size, width, height, color, className, fill, stroke })
|
|
|
44
44
|
)
|
|
45
45
|
] }), Uploadimage_default = IconUploadimage;
|
|
46
46
|
|
|
47
|
-
// src/components/
|
|
47
|
+
// src/components/Aboutus.tsx
|
|
48
48
|
import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
49
|
-
var
|
|
49
|
+
var IconAboutus = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs2("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
50
50
|
/* @__PURE__ */ jsx4(
|
|
51
51
|
"path",
|
|
52
52
|
{
|
|
53
53
|
fill: stroke || color || "currentColor",
|
|
54
|
-
d: "
|
|
54
|
+
d: "M8.25 3.75V0H15.75V3.75H20.25L24 9L20.25 14.25H1.5V3.75H8.25ZM10.5 2.25H13.5V3.75H10.5V2.25ZM3.75 6V12H19.0921L21.235 9L19.0921 6H3.75Z",
|
|
55
|
+
fillRule: "evenodd",
|
|
56
|
+
clipRule: "evenodd"
|
|
55
57
|
}
|
|
56
58
|
),
|
|
57
59
|
/* @__PURE__ */ jsx4(
|
|
60
|
+
"path",
|
|
61
|
+
{
|
|
62
|
+
fill: stroke || color || "currentColor",
|
|
63
|
+
d: "M10.5 17.25V21.75H13.5V17.25H15.75V24H8.25V17.25H10.5Z"
|
|
64
|
+
}
|
|
65
|
+
)
|
|
66
|
+
] }), Aboutus_default = IconAboutus;
|
|
67
|
+
|
|
68
|
+
// src/components/AddSceneChoice.tsx
|
|
69
|
+
import { jsx as jsx5, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
70
|
+
var IconAddSceneChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs3("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
71
|
+
/* @__PURE__ */ jsx5(
|
|
72
|
+
"path",
|
|
73
|
+
{
|
|
74
|
+
fill: stroke || color || "currentColor",
|
|
75
|
+
d: "M10.875 6V10.875H6V13.125H10.875V18H13.125V13.125H18V10.875H13.125V6H10.875Z"
|
|
76
|
+
}
|
|
77
|
+
),
|
|
78
|
+
/* @__PURE__ */ jsx5(
|
|
58
79
|
"path",
|
|
59
80
|
{
|
|
60
81
|
fill: stroke || color || "currentColor",
|
|
@@ -66,8 +87,8 @@ var IconAddSceneChoice = ({ size, width, height, color, className, fill, stroke
|
|
|
66
87
|
] }), AddSceneChoice_default = IconAddSceneChoice;
|
|
67
88
|
|
|
68
89
|
// src/components/Add.tsx
|
|
69
|
-
import { jsx as
|
|
70
|
-
var IconAdd = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
90
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
91
|
+
var IconAdd = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx6("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx6(
|
|
71
92
|
"path",
|
|
72
93
|
{
|
|
73
94
|
fill: stroke || color || "currentColor",
|
|
@@ -76,9 +97,9 @@ var IconAdd = ({ size, width, height, color, className, fill, stroke }) => /* @_
|
|
|
76
97
|
) }), Add_default = IconAdd;
|
|
77
98
|
|
|
78
99
|
// src/components/Agreements.tsx
|
|
79
|
-
import { jsx as
|
|
80
|
-
var IconAgreements = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
81
|
-
/* @__PURE__ */
|
|
100
|
+
import { jsx as jsx7, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
101
|
+
var IconAgreements = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs4("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
102
|
+
/* @__PURE__ */ jsx7(
|
|
82
103
|
"path",
|
|
83
104
|
{
|
|
84
105
|
fill: stroke || color || "currentColor",
|
|
@@ -87,12 +108,12 @@ var IconAgreements = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
87
108
|
clipRule: "evenodd"
|
|
88
109
|
}
|
|
89
110
|
),
|
|
90
|
-
/* @__PURE__ */
|
|
111
|
+
/* @__PURE__ */ jsx7("path", { fill: stroke || color || "currentColor", d: "M7.5 16.25H16.5V14H7.5V16.25Z" })
|
|
91
112
|
] }), Agreements_default = IconAgreements;
|
|
92
113
|
|
|
93
114
|
// src/components/AngleDown.tsx
|
|
94
|
-
import { jsx as
|
|
95
|
-
var IconAngleDown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
115
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
116
|
+
var IconAngleDown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx8("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx8(
|
|
96
117
|
"path",
|
|
97
118
|
{
|
|
98
119
|
fill: stroke || color || "currentColor",
|
|
@@ -100,9 +121,21 @@ var IconAngleDown = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
100
121
|
}
|
|
101
122
|
) }), AngleDown_default = IconAngleDown;
|
|
102
123
|
|
|
124
|
+
// src/components/Announcement.tsx
|
|
125
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
126
|
+
var IconAnnouncement = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx9("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx9(
|
|
127
|
+
"path",
|
|
128
|
+
{
|
|
129
|
+
fill: stroke || color || "currentColor",
|
|
130
|
+
d: "M19.5 20.25H22.5V1.5H19.5C19.5 3.98528 17.4853 6 15 6H1.5V15.75H6.92877L8.26664 23.4428L10.4834 23.0572L9.21254 15.75H15C17.4853 15.75 19.5 17.7647 19.5 20.25ZM12 13.5H15C17.1205 13.5 19.0125 14.4778 20.25 16.007V5.743C19.0125 7.27225 17.1205 8.25 15 8.25H12V13.5ZM9.75 13.5V8.25H3.75V13.5H9.75Z",
|
|
131
|
+
fillRule: "evenodd",
|
|
132
|
+
clipRule: "evenodd"
|
|
133
|
+
}
|
|
134
|
+
) }), Announcement_default = IconAnnouncement;
|
|
135
|
+
|
|
103
136
|
// src/components/Artboard.tsx
|
|
104
|
-
import { jsx as
|
|
105
|
-
var IconArtboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
137
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
138
|
+
var IconArtboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx10("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx10(
|
|
106
139
|
"path",
|
|
107
140
|
{
|
|
108
141
|
fill: stroke || color || "currentColor",
|
|
@@ -113,19 +146,19 @@ var IconArtboard = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
113
146
|
) }), Artboard_default = IconArtboard;
|
|
114
147
|
|
|
115
148
|
// src/components/AssetsFilled.tsx
|
|
116
|
-
import { jsx as
|
|
117
|
-
var IconAssetsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
118
|
-
/* @__PURE__ */
|
|
119
|
-
/* @__PURE__ */
|
|
120
|
-
/* @__PURE__ */
|
|
149
|
+
import { jsx as jsx11, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
150
|
+
var IconAssetsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs5("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
151
|
+
/* @__PURE__ */ jsx11("path", { fill: fill || color || "currentColor", d: "M19.5 0H4.5V3H19.5V0Z" }),
|
|
152
|
+
/* @__PURE__ */ jsx11("path", { fill: fill || color || "currentColor", d: "M3 6H21V9H3V6Z" }),
|
|
153
|
+
/* @__PURE__ */ jsx11("path", { fill: fill || color || "currentColor", d: "M1.5 12H22.5V22.5H1.5V12Z" })
|
|
121
154
|
] }), AssetsFilled_default = IconAssetsFilled;
|
|
122
155
|
|
|
123
156
|
// src/components/Assets.tsx
|
|
124
|
-
import { jsx as
|
|
125
|
-
var IconAssets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
126
|
-
/* @__PURE__ */
|
|
127
|
-
/* @__PURE__ */
|
|
128
|
-
/* @__PURE__ */
|
|
157
|
+
import { jsx as jsx12, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
158
|
+
var IconAssets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs6("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
159
|
+
/* @__PURE__ */ jsx12("path", { fill: stroke || color || "currentColor", d: "M19.5 0H4.5V2.25H19.5V0Z" }),
|
|
160
|
+
/* @__PURE__ */ jsx12("path", { fill: stroke || color || "currentColor", d: "M3 5.25H21V7.5H3V5.25Z" }),
|
|
161
|
+
/* @__PURE__ */ jsx12(
|
|
129
162
|
"path",
|
|
130
163
|
{
|
|
131
164
|
fill: stroke || color || "currentColor",
|
|
@@ -136,9 +169,50 @@ var IconAssets = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
136
169
|
)
|
|
137
170
|
] }), Assets_default = IconAssets;
|
|
138
171
|
|
|
172
|
+
// src/components/Backtoprojects.tsx
|
|
173
|
+
import { jsx as jsx13, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
174
|
+
var IconBacktoprojects = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs7("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
175
|
+
/* @__PURE__ */ jsx13(
|
|
176
|
+
"path",
|
|
177
|
+
{
|
|
178
|
+
fill: stroke || color || "currentColor",
|
|
179
|
+
d: "M1.5 1.5H10.5V10.5H1.5V1.5ZM3.75 3.75H8.25V8.25H3.75V3.75Z",
|
|
180
|
+
fillRule: "evenodd",
|
|
181
|
+
clipRule: "evenodd"
|
|
182
|
+
}
|
|
183
|
+
),
|
|
184
|
+
/* @__PURE__ */ jsx13(
|
|
185
|
+
"path",
|
|
186
|
+
{
|
|
187
|
+
fill: stroke || color || "currentColor",
|
|
188
|
+
d: "M1.5 13.5H10.5V22.5H1.5V13.5ZM3.75 15.75H8.25V20.25H3.75V15.75Z",
|
|
189
|
+
fillRule: "evenodd",
|
|
190
|
+
clipRule: "evenodd"
|
|
191
|
+
}
|
|
192
|
+
),
|
|
193
|
+
/* @__PURE__ */ jsx13(
|
|
194
|
+
"path",
|
|
195
|
+
{
|
|
196
|
+
fill: stroke || color || "currentColor",
|
|
197
|
+
d: "M13.5 1.5V10.5H22.5V1.5H13.5ZM20.25 3.75H15.75V8.25H20.25V3.75Z",
|
|
198
|
+
fillRule: "evenodd",
|
|
199
|
+
clipRule: "evenodd"
|
|
200
|
+
}
|
|
201
|
+
),
|
|
202
|
+
/* @__PURE__ */ jsx13(
|
|
203
|
+
"path",
|
|
204
|
+
{
|
|
205
|
+
fill: stroke || color || "currentColor",
|
|
206
|
+
d: "M13.5 13.5H22.5V22.5H13.5V13.5ZM15.75 15.75H20.25V20.25H15.75V15.75Z",
|
|
207
|
+
fillRule: "evenodd",
|
|
208
|
+
clipRule: "evenodd"
|
|
209
|
+
}
|
|
210
|
+
)
|
|
211
|
+
] }), Backtoprojects_default = IconBacktoprojects;
|
|
212
|
+
|
|
139
213
|
// src/components/Backward.tsx
|
|
140
|
-
import { jsx as
|
|
141
|
-
var IconBackward = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
214
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
215
|
+
var IconBackward = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx14("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx14(
|
|
142
216
|
"path",
|
|
143
217
|
{
|
|
144
218
|
fill: stroke || color || "currentColor",
|
|
@@ -147,8 +221,8 @@ var IconBackward = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
147
221
|
) }), Backward_default = IconBackward;
|
|
148
222
|
|
|
149
223
|
// src/components/BatchShots.tsx
|
|
150
|
-
import { jsx as
|
|
151
|
-
var IconBatchShots = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
224
|
+
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
225
|
+
var IconBatchShots = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx15("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx15(
|
|
152
226
|
"path",
|
|
153
227
|
{
|
|
154
228
|
fill: stroke || color || "currentColor",
|
|
@@ -159,8 +233,8 @@ var IconBatchShots = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
159
233
|
) }), BatchShots_default = IconBatchShots;
|
|
160
234
|
|
|
161
235
|
// src/components/Canvasmode.tsx
|
|
162
|
-
import { jsx as
|
|
163
|
-
var IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
236
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
237
|
+
var IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx16("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx16(
|
|
164
238
|
"path",
|
|
165
239
|
{
|
|
166
240
|
fill: stroke || color || "currentColor",
|
|
@@ -170,9 +244,21 @@ var IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
170
244
|
}
|
|
171
245
|
) }), Canvasmode_default = IconCanvasmode;
|
|
172
246
|
|
|
247
|
+
// src/components/Changeprofilephoto.tsx
|
|
248
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
249
|
+
var IconChangeprofilephoto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx17("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx17(
|
|
250
|
+
"path",
|
|
251
|
+
{
|
|
252
|
+
fill: stroke || color || "currentColor",
|
|
253
|
+
d: "M22.602 8.14797L8.25 22.5H1.5V15.75L15.852 1.39797C16.7471 0.502866 17.9612 0 19.227 0C21.8631 0 24 2.13693 24 4.77297C24 6.03884 23.4971 7.25287 22.602 8.14797ZM3.75 20.25V16.682L13.9205 6.51149L17.4885 10.0795L7.31802 20.25H3.75ZM19.0795 8.48851L21.011 6.55698C21.4842 6.08383 21.75 5.4421 21.75 4.77297C21.75 3.37957 20.6204 2.25 19.227 2.25C18.5579 2.25 17.9162 2.51581 17.443 2.98896L15.5115 4.9205L19.0795 8.48851Z",
|
|
254
|
+
fillRule: "evenodd",
|
|
255
|
+
clipRule: "evenodd"
|
|
256
|
+
}
|
|
257
|
+
) }), Changeprofilephoto_default = IconChangeprofilephoto;
|
|
258
|
+
|
|
173
259
|
// src/components/Chaptercollapse.tsx
|
|
174
|
-
import { jsx as
|
|
175
|
-
var IconChaptercollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
260
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
261
|
+
var IconChaptercollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx18("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx18(
|
|
176
262
|
"path",
|
|
177
263
|
{
|
|
178
264
|
fill: stroke || color || "currentColor",
|
|
@@ -183,8 +269,8 @@ var IconChaptercollapse = ({ size, width, height, color, className, fill, stroke
|
|
|
183
269
|
) }), Chaptercollapse_default = IconChaptercollapse;
|
|
184
270
|
|
|
185
271
|
// src/components/Chapterexpand.tsx
|
|
186
|
-
import { jsx as
|
|
187
|
-
var IconChapterexpand = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
272
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
273
|
+
var IconChapterexpand = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx19("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx19(
|
|
188
274
|
"path",
|
|
189
275
|
{
|
|
190
276
|
fill: stroke || color || "currentColor",
|
|
@@ -195,8 +281,8 @@ var IconChapterexpand = ({ size, width, height, color, className, fill, stroke }
|
|
|
195
281
|
) }), Chapterexpand_default = IconChapterexpand;
|
|
196
282
|
|
|
197
283
|
// src/components/Check.tsx
|
|
198
|
-
import { jsx as
|
|
199
|
-
var IconCheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
284
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
285
|
+
var IconCheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx20("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx20(
|
|
200
286
|
"path",
|
|
201
287
|
{
|
|
202
288
|
fill: stroke || color || "currentColor",
|
|
@@ -205,8 +291,8 @@ var IconCheck = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
205
291
|
) }), Check_default = IconCheck;
|
|
206
292
|
|
|
207
293
|
// src/components/CheckedFilled.tsx
|
|
208
|
-
import { jsx as
|
|
209
|
-
var IconCheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
294
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
295
|
+
var IconCheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx21("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx21(
|
|
210
296
|
"path",
|
|
211
297
|
{
|
|
212
298
|
fill: fill || color || "currentColor",
|
|
@@ -217,8 +303,8 @@ var IconCheckedFilled = ({ size, width, height, color, className, fill, stroke }
|
|
|
217
303
|
) }), CheckedFilled_default = IconCheckedFilled;
|
|
218
304
|
|
|
219
305
|
// src/components/Close.tsx
|
|
220
|
-
import { jsx as
|
|
221
|
-
var IconClose = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
306
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
307
|
+
var IconClose = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx22("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx22(
|
|
222
308
|
"path",
|
|
223
309
|
{
|
|
224
310
|
fill: stroke || color || "currentColor",
|
|
@@ -227,10 +313,10 @@ var IconClose = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
227
313
|
) }), Close_default = IconClose;
|
|
228
314
|
|
|
229
315
|
// src/components/Copy.tsx
|
|
230
|
-
import { jsx as
|
|
231
|
-
var IconCopy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
232
|
-
/* @__PURE__ */
|
|
233
|
-
/* @__PURE__ */
|
|
316
|
+
import { jsx as jsx23, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
317
|
+
var IconCopy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs8("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
318
|
+
/* @__PURE__ */ jsx23("path", { fill: stroke || color || "currentColor", d: "M12.75 2.25H2.25V12.75H6V15H0V0H15V6H12.75V2.25Z" }),
|
|
319
|
+
/* @__PURE__ */ jsx23(
|
|
234
320
|
"path",
|
|
235
321
|
{
|
|
236
322
|
fill: stroke || color || "currentColor",
|
|
@@ -242,9 +328,9 @@ var IconCopy = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
242
328
|
] }), Copy_default = IconCopy;
|
|
243
329
|
|
|
244
330
|
// src/components/CreditFilled.tsx
|
|
245
|
-
import { jsx as
|
|
246
|
-
var IconCreditFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
247
|
-
/* @__PURE__ */
|
|
331
|
+
import { jsx as jsx24, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
332
|
+
var IconCreditFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs9("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
333
|
+
/* @__PURE__ */ jsx24("g", { clipPath: "url(#clip0_2_28)", children: /* @__PURE__ */ jsx24(
|
|
248
334
|
"path",
|
|
249
335
|
{
|
|
250
336
|
fill: fill || color || "currentColor",
|
|
@@ -253,12 +339,12 @@ var IconCreditFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
253
339
|
clipRule: "evenodd"
|
|
254
340
|
}
|
|
255
341
|
) }),
|
|
256
|
-
/* @__PURE__ */
|
|
342
|
+
/* @__PURE__ */ jsx24("defs", { children: /* @__PURE__ */ jsx24("clipPath", { id: "clip0_2_28", children: /* @__PURE__ */ jsx24("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
257
343
|
] }), CreditFilled_default = IconCreditFilled;
|
|
258
344
|
|
|
259
345
|
// src/components/Cursor.tsx
|
|
260
|
-
import { jsx as
|
|
261
|
-
var IconCursor = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
346
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
347
|
+
var IconCursor = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx25("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx25(
|
|
262
348
|
"path",
|
|
263
349
|
{
|
|
264
350
|
fill: stroke || color || "currentColor",
|
|
@@ -269,10 +355,10 @@ var IconCursor = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
269
355
|
) }), Cursor_default = IconCursor;
|
|
270
356
|
|
|
271
357
|
// src/components/DeleteSceneChoice.tsx
|
|
272
|
-
import { jsx as
|
|
273
|
-
var IconDeleteSceneChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
274
|
-
/* @__PURE__ */
|
|
275
|
-
/* @__PURE__ */
|
|
358
|
+
import { jsx as jsx26, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
359
|
+
var IconDeleteSceneChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs10("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
360
|
+
/* @__PURE__ */ jsx26("path", { fill: stroke || color || "currentColor", d: "M18 10.875H6V13.125H18V10.875Z" }),
|
|
361
|
+
/* @__PURE__ */ jsx26(
|
|
276
362
|
"path",
|
|
277
363
|
{
|
|
278
364
|
fill: stroke || color || "currentColor",
|
|
@@ -284,10 +370,10 @@ var IconDeleteSceneChoice = ({ size, width, height, color, className, fill, stro
|
|
|
284
370
|
] }), DeleteSceneChoice_default = IconDeleteSceneChoice;
|
|
285
371
|
|
|
286
372
|
// src/components/Delete.tsx
|
|
287
|
-
import { jsx as
|
|
288
|
-
var IconDelete = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
289
|
-
/* @__PURE__ */
|
|
290
|
-
/* @__PURE__ */
|
|
373
|
+
import { jsx as jsx27, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
374
|
+
var IconDelete = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs11("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
375
|
+
/* @__PURE__ */ jsx27("path", { fill: stroke || color || "currentColor", d: "M13.125 17.25V11.25H10.875V17.25H13.125Z" }),
|
|
376
|
+
/* @__PURE__ */ jsx27(
|
|
291
377
|
"path",
|
|
292
378
|
{
|
|
293
379
|
fill: stroke || color || "currentColor",
|
|
@@ -298,17 +384,41 @@ var IconDelete = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
298
384
|
)
|
|
299
385
|
] }), Delete_default = IconDelete;
|
|
300
386
|
|
|
387
|
+
// src/components/DownFilled.tsx
|
|
388
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
389
|
+
var IconDownFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx28("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx28(
|
|
390
|
+
"path",
|
|
391
|
+
{
|
|
392
|
+
fill: fill || color || "currentColor",
|
|
393
|
+
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM18 12H13.5V4.5H10.5V12H6V13.5L12 19.5L18 13.5V12Z",
|
|
394
|
+
fillRule: "evenodd",
|
|
395
|
+
clipRule: "evenodd"
|
|
396
|
+
}
|
|
397
|
+
) }), DownFilled_default = IconDownFilled;
|
|
398
|
+
|
|
399
|
+
// src/components/DownleftFilled.tsx
|
|
400
|
+
import { jsx as jsx29 } from "react/jsx-runtime";
|
|
401
|
+
var IconDownleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx29("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx29(
|
|
402
|
+
"path",
|
|
403
|
+
{
|
|
404
|
+
fill: fill || color || "currentColor",
|
|
405
|
+
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM18.3107 7.81068L13.0607 13.0607L16.125 16.125L15 17.25H6.75V9.00002L7.875 7.87502L10.9393 10.9394L16.1893 5.68936L18.3107 7.81068Z",
|
|
406
|
+
fillRule: "evenodd",
|
|
407
|
+
clipRule: "evenodd"
|
|
408
|
+
}
|
|
409
|
+
) }), DownleftFilled_default = IconDownleftFilled;
|
|
410
|
+
|
|
301
411
|
// src/components/Download.tsx
|
|
302
|
-
import { jsx as
|
|
303
|
-
var IconDownload = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
304
|
-
/* @__PURE__ */
|
|
412
|
+
import { jsx as jsx30, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
413
|
+
var IconDownload = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs12("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
414
|
+
/* @__PURE__ */ jsx30(
|
|
305
415
|
"path",
|
|
306
416
|
{
|
|
307
417
|
fill: stroke || color || "currentColor",
|
|
308
418
|
d: "M22.5 24L22.5 13.5H20.25V21.75L3.75 21.75L3.75 13.5H1.5L1.5 24L22.5 24Z"
|
|
309
419
|
}
|
|
310
420
|
),
|
|
311
|
-
/* @__PURE__ */
|
|
421
|
+
/* @__PURE__ */ jsx30(
|
|
312
422
|
"path",
|
|
313
423
|
{
|
|
314
424
|
fill: stroke || color || "currentColor",
|
|
@@ -319,20 +429,32 @@ var IconDownload = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
319
429
|
)
|
|
320
430
|
] }), Download_default = IconDownload;
|
|
321
431
|
|
|
432
|
+
// src/components/DownrightFilled.tsx
|
|
433
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
434
|
+
var IconDownrightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx31("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx31(
|
|
435
|
+
"path",
|
|
436
|
+
{
|
|
437
|
+
fill: fill || color || "currentColor",
|
|
438
|
+
d: "M24 12C24 5.37258 18.6274 -2.89694e-07 12 0C5.37258 2.89694e-07 -2.89694e-07 5.37258 0 12C2.89694e-07 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12ZM7.81068 5.68934L13.0607 10.9393L16.125 7.875L17.25 9V17.25L9.00002 17.25L7.87502 16.125L10.9394 13.0607L5.68936 7.81066L7.81068 5.68934Z",
|
|
439
|
+
fillRule: "evenodd",
|
|
440
|
+
clipRule: "evenodd"
|
|
441
|
+
}
|
|
442
|
+
) }), DownrightFilled_default = IconDownrightFilled;
|
|
443
|
+
|
|
322
444
|
// src/components/DraghandleFilled.tsx
|
|
323
|
-
import { jsx as
|
|
324
|
-
var IconDraghandleFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
325
|
-
/* @__PURE__ */
|
|
326
|
-
/* @__PURE__ */
|
|
327
|
-
/* @__PURE__ */
|
|
328
|
-
/* @__PURE__ */
|
|
329
|
-
/* @__PURE__ */
|
|
330
|
-
/* @__PURE__ */
|
|
445
|
+
import { jsx as jsx32, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
446
|
+
var IconDraghandleFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs13("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
447
|
+
/* @__PURE__ */ jsx32("path", { fill: fill || color || "currentColor", d: "M18 7.19999V2.39999H13.2V7.19999L18 7.19999Z" }),
|
|
448
|
+
/* @__PURE__ */ jsx32("path", { fill: fill || color || "currentColor", d: "M18 9.59999V14.4H13.2L13.2 9.59999H18Z" }),
|
|
449
|
+
/* @__PURE__ */ jsx32("path", { fill: fill || color || "currentColor", d: "M10.8 9.59999V14.4H6V9.59999H10.8Z" }),
|
|
450
|
+
/* @__PURE__ */ jsx32("path", { fill: fill || color || "currentColor", d: "M10.8 2.39999V7.19999L6 7.19999V2.39999H10.8Z" }),
|
|
451
|
+
/* @__PURE__ */ jsx32("path", { fill: fill || color || "currentColor", d: "M18 21.6V16.8H13.2V21.6H18Z" }),
|
|
452
|
+
/* @__PURE__ */ jsx32("path", { fill: fill || color || "currentColor", d: "M10.8 16.8V21.6H6V16.8H10.8Z" })
|
|
331
453
|
] }), DraghandleFilled_default = IconDraghandleFilled;
|
|
332
454
|
|
|
333
455
|
// src/components/FeedbackFailFilled.tsx
|
|
334
|
-
import { jsx as
|
|
335
|
-
var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
456
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
457
|
+
var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx33("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx33(
|
|
336
458
|
"path",
|
|
337
459
|
{
|
|
338
460
|
fill: fill || color || "currentColor",
|
|
@@ -343,8 +465,8 @@ var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, str
|
|
|
343
465
|
) }), FeedbackFailFilled_default = IconFeedbackFailFilled;
|
|
344
466
|
|
|
345
467
|
// src/components/FeedbackPendingFilled.tsx
|
|
346
|
-
import { jsx as
|
|
347
|
-
var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
468
|
+
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
469
|
+
var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx34("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx34(
|
|
348
470
|
"path",
|
|
349
471
|
{
|
|
350
472
|
fill: fill || color || "currentColor",
|
|
@@ -355,8 +477,8 @@ var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill,
|
|
|
355
477
|
) }), FeedbackPendingFilled_default = IconFeedbackPendingFilled;
|
|
356
478
|
|
|
357
479
|
// src/components/FeedbackProblemFilled.tsx
|
|
358
|
-
import { jsx as
|
|
359
|
-
var IconFeedbackProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
480
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
481
|
+
var IconFeedbackProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx35("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx35(
|
|
360
482
|
"path",
|
|
361
483
|
{
|
|
362
484
|
fill: fill || color || "currentColor",
|
|
@@ -367,30 +489,30 @@ var IconFeedbackProblemFilled = ({ size, width, height, color, className, fill,
|
|
|
367
489
|
) }), FeedbackProblemFilled_default = IconFeedbackProblemFilled;
|
|
368
490
|
|
|
369
491
|
// src/components/FeedbackProblem.tsx
|
|
370
|
-
import { jsx as
|
|
371
|
-
var IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
372
|
-
/* @__PURE__ */
|
|
492
|
+
import { jsx as jsx36, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
493
|
+
var IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs14("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
494
|
+
/* @__PURE__ */ jsx36(
|
|
373
495
|
"path",
|
|
374
496
|
{
|
|
375
497
|
fill: stroke || color || "currentColor",
|
|
376
498
|
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"
|
|
377
499
|
}
|
|
378
500
|
),
|
|
379
|
-
/* @__PURE__ */
|
|
501
|
+
/* @__PURE__ */ jsx36(
|
|
380
502
|
"path",
|
|
381
503
|
{
|
|
382
504
|
fill: stroke || color || "currentColor",
|
|
383
505
|
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"
|
|
384
506
|
}
|
|
385
507
|
),
|
|
386
|
-
/* @__PURE__ */
|
|
508
|
+
/* @__PURE__ */ jsx36(
|
|
387
509
|
"path",
|
|
388
510
|
{
|
|
389
511
|
fill: stroke || color || "currentColor",
|
|
390
512
|
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"
|
|
391
513
|
}
|
|
392
514
|
),
|
|
393
|
-
/* @__PURE__ */
|
|
515
|
+
/* @__PURE__ */ jsx36(
|
|
394
516
|
"path",
|
|
395
517
|
{
|
|
396
518
|
fill: stroke || color || "currentColor",
|
|
@@ -401,10 +523,46 @@ var IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke
|
|
|
401
523
|
)
|
|
402
524
|
] }), FeedbackProblem_default = IconFeedbackProblem;
|
|
403
525
|
|
|
526
|
+
// src/components/FiletypeImageFilled.tsx
|
|
527
|
+
import { jsx as jsx37, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
528
|
+
var IconFiletypeImageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs15("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
529
|
+
/* @__PURE__ */ jsx37("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx37(
|
|
530
|
+
"path",
|
|
531
|
+
{
|
|
532
|
+
fill: "#2E2E2E",
|
|
533
|
+
d: "M17.5907 6.28819C17.0587 6.28768 16.5487 6.07629 16.1725 5.70045C15.7963 5.3246 15.5848 4.81499 15.5843 4.28346V1.5H6.6185C5.92403 1.5 5.25801 1.77565 4.76694 2.26629C4.27588 2.75693 4 3.42237 4 4.11624V19.8876C4.00103 20.5808 4.27736 21.2453 4.76831 21.7351C5.25927 22.2249 5.9247 22.5 6.6185 22.5H17.3815C18.0753 22.5 18.7407 22.2249 19.2317 21.7351C19.7226 21.2453 19.999 20.5808 20 19.8876V6.28819H17.5907Z",
|
|
534
|
+
style: { opacity: 0.3 }
|
|
535
|
+
}
|
|
536
|
+
) }),
|
|
537
|
+
/* @__PURE__ */ jsx37(
|
|
538
|
+
"path",
|
|
539
|
+
{
|
|
540
|
+
fill: "#2E2E2E",
|
|
541
|
+
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"
|
|
542
|
+
}
|
|
543
|
+
),
|
|
544
|
+
/* @__PURE__ */ jsx37(
|
|
545
|
+
"path",
|
|
546
|
+
{
|
|
547
|
+
fill: "#2E2E2E",
|
|
548
|
+
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"
|
|
549
|
+
}
|
|
550
|
+
),
|
|
551
|
+
/* @__PURE__ */ jsx37(
|
|
552
|
+
"path",
|
|
553
|
+
{
|
|
554
|
+
fill: "#2E2E2E",
|
|
555
|
+
d: "M9.625 7.625C8.52043 7.625 7.625 8.52043 7.625 9.625V14.375C7.625 15.4796 8.52043 16.375 9.625 16.375H14.375C15.4796 16.375 16.375 15.4796 16.375 14.375V9.625C16.375 8.52043 15.4796 7.625 14.375 7.625H9.625ZM15.4375 9.5625C15.4375 9.01022 14.9898 8.5625 14.4375 8.5625H9.5625C9.01022 8.5625 8.5625 9.01022 8.5625 9.5625V13.4837C8.5625 14.4334 9.76209 14.8483 10.3488 14.1015L11.3107 12.8773C11.6773 12.4107 12.3693 12.3693 12.7889 12.7889C13.1798 13.1798 13.8151 13.1748 14.1997 12.7777L15.1557 11.7908C15.3365 11.6043 15.4375 11.3548 15.4375 11.0951V9.5625Z",
|
|
556
|
+
fillRule: "evenodd",
|
|
557
|
+
clipRule: "evenodd"
|
|
558
|
+
}
|
|
559
|
+
)
|
|
560
|
+
] }), FiletypeImageFilled_default = IconFiletypeImageFilled;
|
|
561
|
+
|
|
404
562
|
// src/components/FiletypePdfFilled.tsx
|
|
405
|
-
import { jsx as
|
|
406
|
-
var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
407
|
-
/* @__PURE__ */
|
|
563
|
+
import { jsx as jsx38, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
564
|
+
var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs16("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
565
|
+
/* @__PURE__ */ jsx38("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx38(
|
|
408
566
|
"path",
|
|
409
567
|
{
|
|
410
568
|
fill: "#FF3E4C",
|
|
@@ -412,14 +570,14 @@ var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stro
|
|
|
412
570
|
style: { opacity: 0.3 }
|
|
413
571
|
}
|
|
414
572
|
) }),
|
|
415
|
-
/* @__PURE__ */
|
|
573
|
+
/* @__PURE__ */ jsx38(
|
|
416
574
|
"path",
|
|
417
575
|
{
|
|
418
576
|
fill: "#FF3E4C",
|
|
419
577
|
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"
|
|
420
578
|
}
|
|
421
579
|
),
|
|
422
|
-
/* @__PURE__ */
|
|
580
|
+
/* @__PURE__ */ jsx38(
|
|
423
581
|
"path",
|
|
424
582
|
{
|
|
425
583
|
fill: "#FF3E4C",
|
|
@@ -429,9 +587,9 @@ var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stro
|
|
|
429
587
|
] }), FiletypePdfFilled_default = IconFiletypePdfFilled;
|
|
430
588
|
|
|
431
589
|
// src/components/FiletypePdfLumiFilled.tsx
|
|
432
|
-
import { jsx as
|
|
433
|
-
var IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
434
|
-
/* @__PURE__ */
|
|
590
|
+
import { jsx as jsx39, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
591
|
+
var IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs17("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
592
|
+
/* @__PURE__ */ jsx39("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx39(
|
|
435
593
|
"path",
|
|
436
594
|
{
|
|
437
595
|
fill: "#2E2E2E",
|
|
@@ -439,14 +597,14 @@ var IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
439
597
|
style: { opacity: 0.3 }
|
|
440
598
|
}
|
|
441
599
|
) }),
|
|
442
|
-
/* @__PURE__ */
|
|
600
|
+
/* @__PURE__ */ jsx39(
|
|
443
601
|
"path",
|
|
444
602
|
{
|
|
445
603
|
fill: "#2E2E2E",
|
|
446
604
|
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"
|
|
447
605
|
}
|
|
448
606
|
),
|
|
449
|
-
/* @__PURE__ */
|
|
607
|
+
/* @__PURE__ */ jsx39(
|
|
450
608
|
"path",
|
|
451
609
|
{
|
|
452
610
|
fill: "#2E2E2E",
|
|
@@ -455,9 +613,206 @@ var IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
455
613
|
)
|
|
456
614
|
] }), FiletypePdfLumiFilled_default = IconFiletypePdfLumiFilled;
|
|
457
615
|
|
|
616
|
+
// src/components/FiletypeTxtFilled.tsx
|
|
617
|
+
import { jsx as jsx40, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
618
|
+
var IconFiletypeTxtFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs18("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
619
|
+
/* @__PURE__ */ jsx40("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx40(
|
|
620
|
+
"path",
|
|
621
|
+
{
|
|
622
|
+
fill: "#005FAD",
|
|
623
|
+
d: "M17.5907 6.28819C17.0587 6.28768 16.5487 6.07629 16.1725 5.70045C15.7963 5.3246 15.5848 4.81499 15.5843 4.28346V1.5H6.6185C5.92403 1.5 5.25801 1.77565 4.76694 2.26629C4.27588 2.75693 4 3.42237 4 4.11624V19.8876C4.00103 20.5808 4.27736 21.2453 4.76831 21.7351C5.25927 22.2249 5.9247 22.5 6.6185 22.5H17.3815C18.0753 22.5 18.7407 22.2249 19.2317 21.7351C19.7226 21.2453 19.999 20.5808 20 19.8876V6.28819H17.5907Z",
|
|
624
|
+
style: { opacity: 0.3 }
|
|
625
|
+
}
|
|
626
|
+
) }),
|
|
627
|
+
/* @__PURE__ */ jsx40("path", { fill: "#005FAD", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
628
|
+
/* @__PURE__ */ jsx40("path", { fill: "#005FAD", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
629
|
+
/* @__PURE__ */ jsx40("path", { fill: "#005FAD", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
630
|
+
/* @__PURE__ */ jsx40("path", { fill: "#005FAD", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
631
|
+
/* @__PURE__ */ jsx40(
|
|
632
|
+
"path",
|
|
633
|
+
{
|
|
634
|
+
fill: "#005FAD",
|
|
635
|
+
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"
|
|
636
|
+
}
|
|
637
|
+
)
|
|
638
|
+
] }), FiletypeTxtFilled_default = IconFiletypeTxtFilled;
|
|
639
|
+
|
|
640
|
+
// src/components/FiletypeTxtLumiFilled.tsx
|
|
641
|
+
import { jsx as jsx41, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
642
|
+
var IconFiletypeTxtLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs19("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
643
|
+
/* @__PURE__ */ jsx41("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx41(
|
|
644
|
+
"path",
|
|
645
|
+
{
|
|
646
|
+
fill: "#2E2E2E",
|
|
647
|
+
d: "M17.5907 6.28819C17.0587 6.28768 16.5487 6.07629 16.1725 5.70045C15.7963 5.3246 15.5848 4.81499 15.5843 4.28346V1.5H6.6185C5.92403 1.5 5.25801 1.77565 4.76694 2.26629C4.27588 2.75693 4 3.42237 4 4.11624V19.8876C4.00103 20.5808 4.27736 21.2453 4.76831 21.7351C5.25927 22.2249 5.9247 22.5 6.6185 22.5H17.3815C18.0753 22.5 18.7407 22.2249 19.2317 21.7351C19.7226 21.2453 19.999 20.5808 20 19.8876V6.28819H17.5907Z",
|
|
648
|
+
style: { opacity: 0.3 }
|
|
649
|
+
}
|
|
650
|
+
) }),
|
|
651
|
+
/* @__PURE__ */ jsx41("path", { fill: "#2E2E2E", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
652
|
+
/* @__PURE__ */ jsx41("path", { fill: "#2E2E2E", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
653
|
+
/* @__PURE__ */ jsx41("path", { fill: "#2E2E2E", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
654
|
+
/* @__PURE__ */ jsx41("path", { fill: "#2E2E2E", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
655
|
+
/* @__PURE__ */ jsx41(
|
|
656
|
+
"path",
|
|
657
|
+
{
|
|
658
|
+
fill: "#2E2E2E",
|
|
659
|
+
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"
|
|
660
|
+
}
|
|
661
|
+
)
|
|
662
|
+
] }), FiletypeTxtLumiFilled_default = IconFiletypeTxtLumiFilled;
|
|
663
|
+
|
|
664
|
+
// src/components/FiletypeWordFilled.tsx
|
|
665
|
+
import { jsx as jsx42, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
666
|
+
var IconFiletypeWordFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs20("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
667
|
+
/* @__PURE__ */ jsx42("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx42(
|
|
668
|
+
"path",
|
|
669
|
+
{
|
|
670
|
+
fill: "#0072FF",
|
|
671
|
+
d: "M17.5907 6.28819C17.0587 6.28768 16.5487 6.07629 16.1725 5.70045C15.7963 5.3246 15.5848 4.81499 15.5843 4.28346V1.5H6.6185C5.92403 1.5 5.25801 1.77565 4.76694 2.26629C4.27588 2.75693 4 3.42237 4 4.11624V19.8876C4.00103 20.5808 4.27736 21.2453 4.76831 21.7351C5.25927 22.2249 5.9247 22.5 6.6185 22.5H17.3815C18.0753 22.5 18.7407 22.2249 19.2317 21.7351C19.7226 21.2453 19.999 20.5808 20 19.8876V6.28819H17.5907Z",
|
|
672
|
+
style: { opacity: 0.3 }
|
|
673
|
+
}
|
|
674
|
+
) }),
|
|
675
|
+
/* @__PURE__ */ jsx42(
|
|
676
|
+
"path",
|
|
677
|
+
{
|
|
678
|
+
fill: "#0072FF",
|
|
679
|
+
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"
|
|
680
|
+
}
|
|
681
|
+
),
|
|
682
|
+
/* @__PURE__ */ jsx42(
|
|
683
|
+
"path",
|
|
684
|
+
{
|
|
685
|
+
fill: "#0072FF",
|
|
686
|
+
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"
|
|
687
|
+
}
|
|
688
|
+
)
|
|
689
|
+
] }), FiletypeWordFilled_default = IconFiletypeWordFilled;
|
|
690
|
+
|
|
691
|
+
// src/components/FiletypeWordLumiFilled.tsx
|
|
692
|
+
import { jsx as jsx43, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
693
|
+
var IconFiletypeWordLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs21("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
694
|
+
/* @__PURE__ */ jsx43("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx43(
|
|
695
|
+
"path",
|
|
696
|
+
{
|
|
697
|
+
fill: "#2E2E2E",
|
|
698
|
+
d: "M17.5907 6.28819C17.0587 6.28768 16.5487 6.07629 16.1725 5.70045C15.7963 5.3246 15.5848 4.81499 15.5843 4.28346V1.5H6.6185C5.92403 1.5 5.25801 1.77565 4.76694 2.26629C4.27588 2.75693 4 3.42237 4 4.11624V19.8876C4.00103 20.5808 4.27736 21.2453 4.76831 21.7351C5.25927 22.2249 5.9247 22.5 6.6185 22.5H17.3815C18.0753 22.5 18.7407 22.2249 19.2317 21.7351C19.7226 21.2453 19.999 20.5808 20 19.8876V6.28819H17.5907Z",
|
|
699
|
+
style: { opacity: 0.3 }
|
|
700
|
+
}
|
|
701
|
+
) }),
|
|
702
|
+
/* @__PURE__ */ jsx43(
|
|
703
|
+
"path",
|
|
704
|
+
{
|
|
705
|
+
fill: "#2E2E2E",
|
|
706
|
+
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"
|
|
707
|
+
}
|
|
708
|
+
),
|
|
709
|
+
/* @__PURE__ */ jsx43(
|
|
710
|
+
"path",
|
|
711
|
+
{
|
|
712
|
+
fill: "#2E2E2E",
|
|
713
|
+
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"
|
|
714
|
+
}
|
|
715
|
+
)
|
|
716
|
+
] }), FiletypeWordLumiFilled_default = IconFiletypeWordLumiFilled;
|
|
717
|
+
|
|
718
|
+
// src/components/FoldedMenu.tsx
|
|
719
|
+
import { jsx as jsx44, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
720
|
+
var IconFoldedMenu = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs22("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
721
|
+
/* @__PURE__ */ jsx44("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H22.5V1.5H1.5V3.75Z" }),
|
|
722
|
+
/* @__PURE__ */ jsx44("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H22.5V20.25H1.5V22.5Z" }),
|
|
723
|
+
/* @__PURE__ */ jsx44("path", { fill: stroke || color || "currentColor", d: "M22.5 10.125H1.5V7.875H22.5V10.125Z" }),
|
|
724
|
+
/* @__PURE__ */ jsx44("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H22.5V13.875H1.5V16.125Z" })
|
|
725
|
+
] }), FoldedMenu_default = IconFoldedMenu;
|
|
726
|
+
|
|
727
|
+
// src/components/GameFilled.tsx
|
|
728
|
+
import { jsx as jsx45, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
729
|
+
var IconGameFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs23("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
730
|
+
/* @__PURE__ */ jsx45("path", { fill: fill || color || "currentColor", d: "M7.5 0H16.5V5.37868L12 9.87868L7.5 5.37868V0Z" }),
|
|
731
|
+
/* @__PURE__ */ jsx45("path", { fill: fill || color || "currentColor", d: "M5.37868 7.5H0V16.5H5.37868L9.87868 12L5.37868 7.5Z" }),
|
|
732
|
+
/* @__PURE__ */ jsx45(
|
|
733
|
+
"path",
|
|
734
|
+
{
|
|
735
|
+
fill: fill || color || "currentColor",
|
|
736
|
+
d: "M7.5 18.6213V24H16.5V18.6213L12 14.1213L7.5 18.6213Z"
|
|
737
|
+
}
|
|
738
|
+
),
|
|
739
|
+
/* @__PURE__ */ jsx45(
|
|
740
|
+
"path",
|
|
741
|
+
{
|
|
742
|
+
fill: fill || color || "currentColor",
|
|
743
|
+
d: "M18.6213 16.5H24V7.5H18.6213L14.1213 12L18.6213 16.5Z"
|
|
744
|
+
}
|
|
745
|
+
)
|
|
746
|
+
] }), GameFilled_default = IconGameFilled;
|
|
747
|
+
|
|
748
|
+
// src/components/Game.tsx
|
|
749
|
+
import { jsx as jsx46, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
750
|
+
var IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs24("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
751
|
+
/* @__PURE__ */ jsx46(
|
|
752
|
+
"path",
|
|
753
|
+
{
|
|
754
|
+
fill: stroke || color || "currentColor",
|
|
755
|
+
d: "M7.5 0H16.5V5.37868L12 9.87868L7.5 5.37868V0ZM9.75 4.4467L12 6.6967L14.25 4.4467V2.25H9.75V4.4467Z",
|
|
756
|
+
fillRule: "evenodd",
|
|
757
|
+
clipRule: "evenodd"
|
|
758
|
+
}
|
|
759
|
+
),
|
|
760
|
+
/* @__PURE__ */ jsx46(
|
|
761
|
+
"path",
|
|
762
|
+
{
|
|
763
|
+
fill: stroke || color || "currentColor",
|
|
764
|
+
d: "M0 7.5H5.37868L9.87868 12L5.37868 16.5H0V7.5ZM2.25 14.25H4.4467L6.6967 12L4.4467 9.75H2.25V14.25Z",
|
|
765
|
+
fillRule: "evenodd",
|
|
766
|
+
clipRule: "evenodd"
|
|
767
|
+
}
|
|
768
|
+
),
|
|
769
|
+
/* @__PURE__ */ jsx46(
|
|
770
|
+
"path",
|
|
771
|
+
{
|
|
772
|
+
fill: stroke || color || "currentColor",
|
|
773
|
+
d: "M7.5 24V18.6213L12 14.1213L16.5 18.6213V24H7.5ZM14.25 21.75V19.5533L12 17.3033L9.75 19.5533V21.75H14.25Z",
|
|
774
|
+
fillRule: "evenodd",
|
|
775
|
+
clipRule: "evenodd"
|
|
776
|
+
}
|
|
777
|
+
),
|
|
778
|
+
/* @__PURE__ */ jsx46(
|
|
779
|
+
"path",
|
|
780
|
+
{
|
|
781
|
+
fill: stroke || color || "currentColor",
|
|
782
|
+
d: "M24 16.5H18.6213L14.1213 12L18.6213 7.5H24V16.5ZM21.75 9.75H19.5533L17.3033 12L19.5533 14.25H21.75V9.75Z",
|
|
783
|
+
fillRule: "evenodd",
|
|
784
|
+
clipRule: "evenodd"
|
|
785
|
+
}
|
|
786
|
+
)
|
|
787
|
+
] }), Game_default = IconGame;
|
|
788
|
+
|
|
789
|
+
// src/components/GamebackupFilled.tsx
|
|
790
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
791
|
+
var IconGamebackupFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx47("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx47(
|
|
792
|
+
"path",
|
|
793
|
+
{
|
|
794
|
+
fill: fill || color || "currentColor",
|
|
795
|
+
d: "M12 4.44507L8.63888 0.523773L6.36111 2.47615L9.38156 6H1.5V22.5H22.5V6H14.6184L17.6389 2.47615L15.3611 0.523773L12 4.44507ZM16.5 9H19.5V19.5H16.5V9Z",
|
|
796
|
+
fillRule: "evenodd",
|
|
797
|
+
clipRule: "evenodd"
|
|
798
|
+
}
|
|
799
|
+
) }), GamebackupFilled_default = IconGamebackupFilled;
|
|
800
|
+
|
|
801
|
+
// src/components/Gamebackup.tsx
|
|
802
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
803
|
+
var IconGamebackup = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx48("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx48(
|
|
804
|
+
"path",
|
|
805
|
+
{
|
|
806
|
+
fill: stroke || color || "currentColor",
|
|
807
|
+
d: "M8.35416 0.767822L12 5.0213L15.6458 0.767822L17.3542 2.2321L14.1245 6H22.5V22.5H1.5V6H9.87546L6.64584 2.2321L8.35416 0.767822ZM3.75 8.25V20.25H15.75V8.25H3.75ZM18 8.25V20.25H20.25V8.25H18Z",
|
|
808
|
+
fillRule: "evenodd",
|
|
809
|
+
clipRule: "evenodd"
|
|
810
|
+
}
|
|
811
|
+
) }), Gamebackup_default = IconGamebackup;
|
|
812
|
+
|
|
458
813
|
// src/components/GamecontrolChoice.tsx
|
|
459
|
-
import { jsx as
|
|
460
|
-
var IconGamecontrolChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
814
|
+
import { jsx as jsx49 } from "react/jsx-runtime";
|
|
815
|
+
var IconGamecontrolChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx49("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx49(
|
|
461
816
|
"path",
|
|
462
817
|
{
|
|
463
818
|
fill: stroke || color || "currentColor",
|
|
@@ -468,8 +823,8 @@ var IconGamecontrolChoice = ({ size, width, height, color, className, fill, stro
|
|
|
468
823
|
) }), GamecontrolChoice_default = IconGamecontrolChoice;
|
|
469
824
|
|
|
470
825
|
// src/components/GamecontrolGameplay.tsx
|
|
471
|
-
import { jsx as
|
|
472
|
-
var IconGamecontrolGameplay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
826
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
|
827
|
+
var IconGamecontrolGameplay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx50("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx50(
|
|
473
828
|
"path",
|
|
474
829
|
{
|
|
475
830
|
fill: stroke || color || "currentColor",
|
|
@@ -480,8 +835,8 @@ var IconGamecontrolGameplay = ({ size, width, height, color, className, fill, st
|
|
|
480
835
|
) }), GamecontrolGameplay_default = IconGamecontrolGameplay;
|
|
481
836
|
|
|
482
837
|
// src/components/GamecontrolLinear.tsx
|
|
483
|
-
import { jsx as
|
|
484
|
-
var IconGamecontrolLinear = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
838
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
839
|
+
var IconGamecontrolLinear = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx51("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx51(
|
|
485
840
|
"path",
|
|
486
841
|
{
|
|
487
842
|
fill: stroke || color || "currentColor",
|
|
@@ -491,9 +846,39 @@ var IconGamecontrolLinear = ({ size, width, height, color, className, fill, stro
|
|
|
491
846
|
}
|
|
492
847
|
) }), GamecontrolLinear_default = IconGamecontrolLinear;
|
|
493
848
|
|
|
849
|
+
// src/components/GamecontrolNone.tsx
|
|
850
|
+
import { jsx as jsx52, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
851
|
+
var IconGamecontrolNone = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs25("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
852
|
+
/* @__PURE__ */ jsx52(
|
|
853
|
+
"path",
|
|
854
|
+
{
|
|
855
|
+
fill: stroke || color || "currentColor",
|
|
856
|
+
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"
|
|
857
|
+
}
|
|
858
|
+
),
|
|
859
|
+
/* @__PURE__ */ jsx52(
|
|
860
|
+
"path",
|
|
861
|
+
{
|
|
862
|
+
fill: stroke || color || "currentColor",
|
|
863
|
+
d: "M18.75 12C18.75 15.7279 15.7279 18.75 12 18.75C8.27208 18.75 5.25 15.7279 5.25 12C5.25 8.27208 8.27208 5.25 12 5.25C15.7279 5.25 18.75 8.27208 18.75 12ZM12 16.5C14.4853 16.5 16.5 14.4853 16.5 12C16.5 9.51472 14.4853 7.5 12 7.5C9.51472 7.5 7.5 9.51472 7.5 12C7.5 14.4853 9.51472 16.5 12 16.5Z",
|
|
864
|
+
fillRule: "evenodd",
|
|
865
|
+
clipRule: "evenodd"
|
|
866
|
+
}
|
|
867
|
+
),
|
|
868
|
+
/* @__PURE__ */ jsx52(
|
|
869
|
+
"path",
|
|
870
|
+
{
|
|
871
|
+
fill: stroke || color || "currentColor",
|
|
872
|
+
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM12 21.75C17.3848 21.75 21.75 17.3848 21.75 12C21.75 6.61522 17.3848 2.25 12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75Z",
|
|
873
|
+
fillRule: "evenodd",
|
|
874
|
+
clipRule: "evenodd"
|
|
875
|
+
}
|
|
876
|
+
)
|
|
877
|
+
] }), GamecontrolNone_default = IconGamecontrolNone;
|
|
878
|
+
|
|
494
879
|
// src/components/Gamelanguage.tsx
|
|
495
|
-
import { jsx as
|
|
496
|
-
var IconGamelanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
880
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
881
|
+
var IconGamelanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx53("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx53(
|
|
497
882
|
"path",
|
|
498
883
|
{
|
|
499
884
|
fill: stroke || color || "currentColor",
|
|
@@ -504,9 +889,9 @@ var IconGamelanguage = ({ size, width, height, color, className, fill, stroke })
|
|
|
504
889
|
) }), Gamelanguage_default = IconGamelanguage;
|
|
505
890
|
|
|
506
891
|
// src/components/Gamepreview.tsx
|
|
507
|
-
import { jsx as
|
|
508
|
-
var IconGamepreview = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
509
|
-
/* @__PURE__ */
|
|
892
|
+
import { jsx as jsx54, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
893
|
+
var IconGamepreview = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs26("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
894
|
+
/* @__PURE__ */ jsx54(
|
|
510
895
|
"path",
|
|
511
896
|
{
|
|
512
897
|
fill: stroke || color || "currentColor",
|
|
@@ -515,7 +900,7 @@ var IconGamepreview = ({ size, width, height, color, className, fill, stroke })
|
|
|
515
900
|
clipRule: "evenodd"
|
|
516
901
|
}
|
|
517
902
|
),
|
|
518
|
-
/* @__PURE__ */
|
|
903
|
+
/* @__PURE__ */ jsx54(
|
|
519
904
|
"path",
|
|
520
905
|
{
|
|
521
906
|
fill: stroke || color || "currentColor",
|
|
@@ -526,17 +911,29 @@ var IconGamepreview = ({ size, width, height, color, className, fill, stroke })
|
|
|
526
911
|
)
|
|
527
912
|
] }), Gamepreview_default = IconGamepreview;
|
|
528
913
|
|
|
914
|
+
// src/components/Gameui.tsx
|
|
915
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
916
|
+
var IconGameui = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx55("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx55(
|
|
917
|
+
"path",
|
|
918
|
+
{
|
|
919
|
+
fill: stroke || color || "currentColor",
|
|
920
|
+
d: "M12 24L24 12L12 0L0 12L12 24ZM8.38649 17.2045L12 20.818L15.6135 17.2045L12 13.591L8.38649 17.2045ZM6.7955 15.6135L10.409 12L6.7955 8.38649L3.18198 12L6.7955 15.6135ZM8.38649 6.7955L12 10.409L15.6135 6.7955L12 3.18198L8.38649 6.7955ZM17.2045 8.38649L13.591 12L17.2045 15.6135L20.818 12L17.2045 8.38649Z",
|
|
921
|
+
fillRule: "evenodd",
|
|
922
|
+
clipRule: "evenodd"
|
|
923
|
+
}
|
|
924
|
+
) }), Gameui_default = IconGameui;
|
|
925
|
+
|
|
529
926
|
// src/components/GenerateMultimage.tsx
|
|
530
|
-
import { jsx as
|
|
531
|
-
var IconGenerateMultimage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
532
|
-
/* @__PURE__ */
|
|
927
|
+
import { jsx as jsx56, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
928
|
+
var IconGenerateMultimage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs27("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
929
|
+
/* @__PURE__ */ jsx56(
|
|
533
930
|
"path",
|
|
534
931
|
{
|
|
535
932
|
fill: stroke || color || "currentColor",
|
|
536
933
|
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"
|
|
537
934
|
}
|
|
538
935
|
),
|
|
539
|
-
/* @__PURE__ */
|
|
936
|
+
/* @__PURE__ */ jsx56(
|
|
540
937
|
"path",
|
|
541
938
|
{
|
|
542
939
|
fill: stroke || color || "currentColor",
|
|
@@ -545,12 +942,12 @@ var IconGenerateMultimage = ({ size, width, height, color, className, fill, stro
|
|
|
545
942
|
clipRule: "evenodd"
|
|
546
943
|
}
|
|
547
944
|
),
|
|
548
|
-
/* @__PURE__ */
|
|
945
|
+
/* @__PURE__ */ jsx56("path", { fill: stroke || color || "currentColor", d: "M0 6V24H18V21.75H2.25V6H0Z" })
|
|
549
946
|
] }), GenerateMultimage_default = IconGenerateMultimage;
|
|
550
947
|
|
|
551
948
|
// src/components/GenerateFilled.tsx
|
|
552
|
-
import { jsx as
|
|
553
|
-
var IconGenerateFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
949
|
+
import { jsx as jsx57 } from "react/jsx-runtime";
|
|
950
|
+
var IconGenerateFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx57("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx57(
|
|
554
951
|
"path",
|
|
555
952
|
{
|
|
556
953
|
fill: fill || color || "currentColor",
|
|
@@ -561,16 +958,16 @@ var IconGenerateFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
561
958
|
) }), GenerateFilled_default = IconGenerateFilled;
|
|
562
959
|
|
|
563
960
|
// src/components/GenerateFrameStart.tsx
|
|
564
|
-
import { jsx as
|
|
565
|
-
var IconGenerateFrameStart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
566
|
-
/* @__PURE__ */
|
|
961
|
+
import { jsx as jsx58, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
962
|
+
var IconGenerateFrameStart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs28("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
963
|
+
/* @__PURE__ */ jsx58(
|
|
567
964
|
"path",
|
|
568
965
|
{
|
|
569
966
|
fill: stroke || color || "currentColor",
|
|
570
967
|
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"
|
|
571
968
|
}
|
|
572
969
|
),
|
|
573
|
-
/* @__PURE__ */
|
|
970
|
+
/* @__PURE__ */ jsx58(
|
|
574
971
|
"path",
|
|
575
972
|
{
|
|
576
973
|
fill: stroke || color || "currentColor",
|
|
@@ -582,9 +979,9 @@ var IconGenerateFrameStart = ({ size, width, height, color, className, fill, str
|
|
|
582
979
|
] }), GenerateFrameStart_default = IconGenerateFrameStart;
|
|
583
980
|
|
|
584
981
|
// src/components/GenerateFrameStart2End.tsx
|
|
585
|
-
import { jsx as
|
|
586
|
-
var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
587
|
-
/* @__PURE__ */
|
|
982
|
+
import { jsx as jsx59, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
983
|
+
var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs29("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
984
|
+
/* @__PURE__ */ jsx59(
|
|
588
985
|
"path",
|
|
589
986
|
{
|
|
590
987
|
fill: stroke || color || "currentColor",
|
|
@@ -593,14 +990,14 @@ var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill,
|
|
|
593
990
|
clipRule: "evenodd"
|
|
594
991
|
}
|
|
595
992
|
),
|
|
596
|
-
/* @__PURE__ */
|
|
993
|
+
/* @__PURE__ */ jsx59(
|
|
597
994
|
"path",
|
|
598
995
|
{
|
|
599
996
|
fill: stroke || color || "currentColor",
|
|
600
997
|
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"
|
|
601
998
|
}
|
|
602
999
|
),
|
|
603
|
-
/* @__PURE__ */
|
|
1000
|
+
/* @__PURE__ */ jsx59(
|
|
604
1001
|
"path",
|
|
605
1002
|
{
|
|
606
1003
|
fill: stroke || color || "currentColor",
|
|
@@ -612,9 +1009,9 @@ var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill,
|
|
|
612
1009
|
] }), GenerateFrameStart2End_default = IconGenerateFrameStart2End;
|
|
613
1010
|
|
|
614
1011
|
// src/components/GenerateSwitchframe.tsx
|
|
615
|
-
import { jsx as
|
|
616
|
-
var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
617
|
-
/* @__PURE__ */
|
|
1012
|
+
import { jsx as jsx60, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1013
|
+
var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs30("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1014
|
+
/* @__PURE__ */ jsx60(
|
|
618
1015
|
"path",
|
|
619
1016
|
{
|
|
620
1017
|
fill: stroke || color || "currentColor",
|
|
@@ -623,7 +1020,7 @@ var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, st
|
|
|
623
1020
|
clipRule: "evenodd"
|
|
624
1021
|
}
|
|
625
1022
|
),
|
|
626
|
-
/* @__PURE__ */
|
|
1023
|
+
/* @__PURE__ */ jsx60(
|
|
627
1024
|
"path",
|
|
628
1025
|
{
|
|
629
1026
|
fill: stroke || color || "currentColor",
|
|
@@ -635,16 +1032,16 @@ var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, st
|
|
|
635
1032
|
] }), GenerateSwitchframe_default = IconGenerateSwitchframe;
|
|
636
1033
|
|
|
637
1034
|
// src/components/GenerateT2V.tsx
|
|
638
|
-
import { jsx as
|
|
639
|
-
var IconGenerateT2V = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
640
|
-
/* @__PURE__ */
|
|
1035
|
+
import { jsx as jsx61, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1036
|
+
var IconGenerateT2V = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs31("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1037
|
+
/* @__PURE__ */ jsx61(
|
|
641
1038
|
"path",
|
|
642
1039
|
{
|
|
643
1040
|
fill: stroke || color || "currentColor",
|
|
644
1041
|
d: "M6 6V10.5H8.25V8.25H10.875V15.75H8.25V18H15.75V15.75H13.125V8.25H15.75V10.5H18V6H6Z"
|
|
645
1042
|
}
|
|
646
1043
|
),
|
|
647
|
-
/* @__PURE__ */
|
|
1044
|
+
/* @__PURE__ */ jsx61(
|
|
648
1045
|
"path",
|
|
649
1046
|
{
|
|
650
1047
|
fill: stroke || color || "currentColor",
|
|
@@ -656,16 +1053,16 @@ var IconGenerateT2V = ({ size, width, height, color, className, fill, stroke })
|
|
|
656
1053
|
] }), GenerateT2V_default = IconGenerateT2V;
|
|
657
1054
|
|
|
658
1055
|
// src/components/GenreAuto.tsx
|
|
659
|
-
import { jsx as
|
|
660
|
-
var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
661
|
-
/* @__PURE__ */
|
|
1056
|
+
import { jsx as jsx62, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
1057
|
+
var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs32("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1058
|
+
/* @__PURE__ */ jsx62(
|
|
662
1059
|
"path",
|
|
663
1060
|
{
|
|
664
1061
|
fill: stroke || color || "currentColor",
|
|
665
1062
|
d: "M18.375 6.375V10.5H16.125V6.375H12V4.125H16.125V0H18.375V4.125H22.5V6.375H18.375Z"
|
|
666
1063
|
}
|
|
667
1064
|
),
|
|
668
|
-
/* @__PURE__ */
|
|
1065
|
+
/* @__PURE__ */ jsx62(
|
|
669
1066
|
"path",
|
|
670
1067
|
{
|
|
671
1068
|
fill: stroke || color || "currentColor",
|
|
@@ -674,15 +1071,15 @@ var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
674
1071
|
clipRule: "evenodd"
|
|
675
1072
|
}
|
|
676
1073
|
),
|
|
677
|
-
/* @__PURE__ */
|
|
678
|
-
/* @__PURE__ */
|
|
1074
|
+
/* @__PURE__ */ jsx62("path", { fill: stroke || color || "currentColor", d: "M3.75 0.75L1.5 3L3.75 5.25L6 3L3.75 0.75Z" }),
|
|
1075
|
+
/* @__PURE__ */ jsx62(
|
|
679
1076
|
"path",
|
|
680
1077
|
{
|
|
681
1078
|
fill: stroke || color || "currentColor",
|
|
682
1079
|
d: "M18 21.75L20.25 19.5L22.5 21.75L20.25 24L18 21.75Z"
|
|
683
1080
|
}
|
|
684
1081
|
),
|
|
685
|
-
/* @__PURE__ */
|
|
1082
|
+
/* @__PURE__ */ jsx62(
|
|
686
1083
|
"path",
|
|
687
1084
|
{
|
|
688
1085
|
fill: stroke || color || "currentColor",
|
|
@@ -692,23 +1089,23 @@ var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
692
1089
|
] }), GenreAuto_default = IconGenreAuto;
|
|
693
1090
|
|
|
694
1091
|
// src/components/GenreComedy.tsx
|
|
695
|
-
import { jsx as
|
|
696
|
-
var IconGenreComedy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
697
|
-
/* @__PURE__ */
|
|
1092
|
+
import { jsx as jsx63, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
1093
|
+
var IconGenreComedy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs33("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1094
|
+
/* @__PURE__ */ jsx63(
|
|
698
1095
|
"path",
|
|
699
1096
|
{
|
|
700
1097
|
fill: stroke || color || "currentColor",
|
|
701
1098
|
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"
|
|
702
1099
|
}
|
|
703
1100
|
),
|
|
704
|
-
/* @__PURE__ */
|
|
1101
|
+
/* @__PURE__ */ jsx63(
|
|
705
1102
|
"path",
|
|
706
1103
|
{
|
|
707
1104
|
fill: stroke || color || "currentColor",
|
|
708
1105
|
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"
|
|
709
1106
|
}
|
|
710
1107
|
),
|
|
711
|
-
/* @__PURE__ */
|
|
1108
|
+
/* @__PURE__ */ jsx63(
|
|
712
1109
|
"path",
|
|
713
1110
|
{
|
|
714
1111
|
fill: stroke || color || "currentColor",
|
|
@@ -717,7 +1114,7 @@ var IconGenreComedy = ({ size, width, height, color, className, fill, stroke })
|
|
|
717
1114
|
clipRule: "evenodd"
|
|
718
1115
|
}
|
|
719
1116
|
),
|
|
720
|
-
/* @__PURE__ */
|
|
1117
|
+
/* @__PURE__ */ jsx63(
|
|
721
1118
|
"path",
|
|
722
1119
|
{
|
|
723
1120
|
fill: stroke || color || "currentColor",
|
|
@@ -729,8 +1126,8 @@ var IconGenreComedy = ({ size, width, height, color, className, fill, stroke })
|
|
|
729
1126
|
] }), GenreComedy_default = IconGenreComedy;
|
|
730
1127
|
|
|
731
1128
|
// src/components/GenreFantasy.tsx
|
|
732
|
-
import { jsx as
|
|
733
|
-
var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1129
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
1130
|
+
var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx64("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx64(
|
|
734
1131
|
"path",
|
|
735
1132
|
{
|
|
736
1133
|
fill: stroke || color || "currentColor",
|
|
@@ -741,23 +1138,23 @@ var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke })
|
|
|
741
1138
|
) }), GenreFantasy_default = IconGenreFantasy;
|
|
742
1139
|
|
|
743
1140
|
// src/components/GenreHorror.tsx
|
|
744
|
-
import { jsx as
|
|
745
|
-
var IconGenreHorror = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
746
|
-
/* @__PURE__ */
|
|
1141
|
+
import { jsx as jsx65, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
1142
|
+
var IconGenreHorror = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs34("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1143
|
+
/* @__PURE__ */ jsx65(
|
|
747
1144
|
"path",
|
|
748
1145
|
{
|
|
749
1146
|
fill: stroke || color || "currentColor",
|
|
750
1147
|
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"
|
|
751
1148
|
}
|
|
752
1149
|
),
|
|
753
|
-
/* @__PURE__ */
|
|
1150
|
+
/* @__PURE__ */ jsx65(
|
|
754
1151
|
"path",
|
|
755
1152
|
{
|
|
756
1153
|
fill: stroke || color || "currentColor",
|
|
757
1154
|
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"
|
|
758
1155
|
}
|
|
759
1156
|
),
|
|
760
|
-
/* @__PURE__ */
|
|
1157
|
+
/* @__PURE__ */ jsx65(
|
|
761
1158
|
"path",
|
|
762
1159
|
{
|
|
763
1160
|
fill: stroke || color || "currentColor",
|
|
@@ -769,8 +1166,8 @@ var IconGenreHorror = ({ size, width, height, color, className, fill, stroke })
|
|
|
769
1166
|
] }), GenreHorror_default = IconGenreHorror;
|
|
770
1167
|
|
|
771
1168
|
// src/components/GenreRomance.tsx
|
|
772
|
-
import { jsx as
|
|
773
|
-
var IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1169
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
1170
|
+
var IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx66("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx66(
|
|
774
1171
|
"path",
|
|
775
1172
|
{
|
|
776
1173
|
fill: stroke || color || "currentColor",
|
|
@@ -781,16 +1178,16 @@ var IconGenreRomance = ({ size, width, height, color, className, fill, stroke })
|
|
|
781
1178
|
) }), GenreRomance_default = IconGenreRomance;
|
|
782
1179
|
|
|
783
1180
|
// src/components/GenreScifi.tsx
|
|
784
|
-
import { jsx as
|
|
785
|
-
var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
786
|
-
/* @__PURE__ */
|
|
1181
|
+
import { jsx as jsx67, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
1182
|
+
var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs35("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1183
|
+
/* @__PURE__ */ jsx67(
|
|
787
1184
|
"path",
|
|
788
1185
|
{
|
|
789
1186
|
fill: stroke || color || "currentColor",
|
|
790
1187
|
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"
|
|
791
1188
|
}
|
|
792
1189
|
),
|
|
793
|
-
/* @__PURE__ */
|
|
1190
|
+
/* @__PURE__ */ jsx67(
|
|
794
1191
|
"path",
|
|
795
1192
|
{
|
|
796
1193
|
fill: stroke || color || "currentColor",
|
|
@@ -799,7 +1196,7 @@ var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
799
1196
|
clipRule: "evenodd"
|
|
800
1197
|
}
|
|
801
1198
|
),
|
|
802
|
-
/* @__PURE__ */
|
|
1199
|
+
/* @__PURE__ */ jsx67(
|
|
803
1200
|
"path",
|
|
804
1201
|
{
|
|
805
1202
|
fill: stroke || color || "currentColor",
|
|
@@ -809,8 +1206,8 @@ var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
809
1206
|
] }), GenreScifi_default = IconGenreScifi;
|
|
810
1207
|
|
|
811
1208
|
// src/components/GenreSuspense.tsx
|
|
812
|
-
import { jsx as
|
|
813
|
-
var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1209
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
1210
|
+
var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx68("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx68(
|
|
814
1211
|
"path",
|
|
815
1212
|
{
|
|
816
1213
|
fill: stroke || color || "currentColor",
|
|
@@ -821,8 +1218,8 @@ var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }
|
|
|
821
1218
|
) }), GenreSuspense_default = IconGenreSuspense;
|
|
822
1219
|
|
|
823
1220
|
// src/components/Genre.tsx
|
|
824
|
-
import { jsx as
|
|
825
|
-
var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1221
|
+
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
1222
|
+
var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx69("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx69(
|
|
826
1223
|
"path",
|
|
827
1224
|
{
|
|
828
1225
|
fill: stroke || color || "currentColor",
|
|
@@ -833,9 +1230,9 @@ var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
833
1230
|
) }), Genre_default = IconGenre;
|
|
834
1231
|
|
|
835
1232
|
// src/components/GoogleLogoFilled.tsx
|
|
836
|
-
import { jsx as
|
|
837
|
-
var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
838
|
-
/* @__PURE__ */
|
|
1233
|
+
import { jsx as jsx70, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
1234
|
+
var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs36("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1235
|
+
/* @__PURE__ */ jsx70(
|
|
839
1236
|
"mask",
|
|
840
1237
|
{
|
|
841
1238
|
id: "mask0_48_113",
|
|
@@ -845,7 +1242,7 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
845
1242
|
y: "0",
|
|
846
1243
|
maskUnits: "userSpaceOnUse",
|
|
847
1244
|
style: { maskType: "luminance" },
|
|
848
|
-
children: /* @__PURE__ */
|
|
1245
|
+
children: /* @__PURE__ */ jsx70(
|
|
849
1246
|
"path",
|
|
850
1247
|
{
|
|
851
1248
|
fill: stroke || color || "currentColor",
|
|
@@ -854,64 +1251,64 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
854
1251
|
)
|
|
855
1252
|
}
|
|
856
1253
|
),
|
|
857
|
-
/* @__PURE__ */
|
|
858
|
-
/* @__PURE__ */
|
|
1254
|
+
/* @__PURE__ */ jsxs36("g", { mask: "url(#mask0_48_113)", children: [
|
|
1255
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter0_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
859
1256
|
"path",
|
|
860
1257
|
{
|
|
861
1258
|
fill: "url(#paint0_radial_48_113)",
|
|
862
1259
|
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"
|
|
863
1260
|
}
|
|
864
1261
|
) }),
|
|
865
|
-
/* @__PURE__ */
|
|
1262
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter1_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
866
1263
|
"path",
|
|
867
1264
|
{
|
|
868
1265
|
fill: "url(#paint1_radial_48_113)",
|
|
869
1266
|
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"
|
|
870
1267
|
}
|
|
871
1268
|
) }),
|
|
872
|
-
/* @__PURE__ */
|
|
1269
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter2_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
873
1270
|
"path",
|
|
874
1271
|
{
|
|
875
1272
|
fill: "url(#paint2_radial_48_113)",
|
|
876
1273
|
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"
|
|
877
1274
|
}
|
|
878
1275
|
) }),
|
|
879
|
-
/* @__PURE__ */
|
|
1276
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter3_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
880
1277
|
"path",
|
|
881
1278
|
{
|
|
882
1279
|
fill: "url(#paint3_radial_48_113)",
|
|
883
1280
|
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"
|
|
884
1281
|
}
|
|
885
1282
|
) }),
|
|
886
|
-
/* @__PURE__ */
|
|
1283
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter4_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
887
1284
|
"path",
|
|
888
1285
|
{
|
|
889
1286
|
fill: "#3086FF",
|
|
890
1287
|
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"
|
|
891
1288
|
}
|
|
892
1289
|
) }),
|
|
893
|
-
/* @__PURE__ */
|
|
1290
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter5_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
894
1291
|
"path",
|
|
895
1292
|
{
|
|
896
1293
|
fill: "url(#paint4_radial_48_113)",
|
|
897
1294
|
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"
|
|
898
1295
|
}
|
|
899
1296
|
) }),
|
|
900
|
-
/* @__PURE__ */
|
|
1297
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter6_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
901
1298
|
"path",
|
|
902
1299
|
{
|
|
903
1300
|
fill: "url(#paint5_radial_48_113)",
|
|
904
1301
|
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"
|
|
905
1302
|
}
|
|
906
1303
|
) }),
|
|
907
|
-
/* @__PURE__ */
|
|
1304
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter7_f_48_113)", children: /* @__PURE__ */ jsx70(
|
|
908
1305
|
"path",
|
|
909
1306
|
{
|
|
910
1307
|
fill: "url(#paint6_radial_48_113)",
|
|
911
1308
|
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"
|
|
912
1309
|
}
|
|
913
1310
|
) }),
|
|
914
|
-
/* @__PURE__ */
|
|
1311
|
+
/* @__PURE__ */ jsx70("g", { filter: "url(#filter8_f_48_113)", style: { opacity: 0.5 }, children: /* @__PURE__ */ jsx70(
|
|
915
1312
|
"path",
|
|
916
1313
|
{
|
|
917
1314
|
fill: "url(#paint7_linear_48_113)",
|
|
@@ -919,8 +1316,8 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
919
1316
|
}
|
|
920
1317
|
) })
|
|
921
1318
|
] }),
|
|
922
|
-
/* @__PURE__ */
|
|
923
|
-
/* @__PURE__ */
|
|
1319
|
+
/* @__PURE__ */ jsxs36("defs", { children: [
|
|
1320
|
+
/* @__PURE__ */ jsxs36(
|
|
924
1321
|
"filter",
|
|
925
1322
|
{
|
|
926
1323
|
id: "filter0_f_48_113",
|
|
@@ -931,13 +1328,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
931
1328
|
filterUnits: "userSpaceOnUse",
|
|
932
1329
|
colorInterpolationFilters: "sRGB",
|
|
933
1330
|
children: [
|
|
934
|
-
/* @__PURE__ */
|
|
935
|
-
/* @__PURE__ */
|
|
936
|
-
/* @__PURE__ */
|
|
1331
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1332
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1333
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
937
1334
|
]
|
|
938
1335
|
}
|
|
939
1336
|
),
|
|
940
|
-
/* @__PURE__ */
|
|
1337
|
+
/* @__PURE__ */ jsxs36(
|
|
941
1338
|
"filter",
|
|
942
1339
|
{
|
|
943
1340
|
id: "filter1_f_48_113",
|
|
@@ -948,13 +1345,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
948
1345
|
filterUnits: "userSpaceOnUse",
|
|
949
1346
|
colorInterpolationFilters: "sRGB",
|
|
950
1347
|
children: [
|
|
951
|
-
/* @__PURE__ */
|
|
952
|
-
/* @__PURE__ */
|
|
953
|
-
/* @__PURE__ */
|
|
1348
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1349
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1350
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
954
1351
|
]
|
|
955
1352
|
}
|
|
956
1353
|
),
|
|
957
|
-
/* @__PURE__ */
|
|
1354
|
+
/* @__PURE__ */ jsxs36(
|
|
958
1355
|
"filter",
|
|
959
1356
|
{
|
|
960
1357
|
id: "filter2_f_48_113",
|
|
@@ -965,13 +1362,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
965
1362
|
filterUnits: "userSpaceOnUse",
|
|
966
1363
|
colorInterpolationFilters: "sRGB",
|
|
967
1364
|
children: [
|
|
968
|
-
/* @__PURE__ */
|
|
969
|
-
/* @__PURE__ */
|
|
970
|
-
/* @__PURE__ */
|
|
1365
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1366
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1367
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
971
1368
|
]
|
|
972
1369
|
}
|
|
973
1370
|
),
|
|
974
|
-
/* @__PURE__ */
|
|
1371
|
+
/* @__PURE__ */ jsxs36(
|
|
975
1372
|
"filter",
|
|
976
1373
|
{
|
|
977
1374
|
id: "filter3_f_48_113",
|
|
@@ -982,13 +1379,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
982
1379
|
filterUnits: "userSpaceOnUse",
|
|
983
1380
|
colorInterpolationFilters: "sRGB",
|
|
984
1381
|
children: [
|
|
985
|
-
/* @__PURE__ */
|
|
986
|
-
/* @__PURE__ */
|
|
987
|
-
/* @__PURE__ */
|
|
1382
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1383
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1384
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
988
1385
|
]
|
|
989
1386
|
}
|
|
990
1387
|
),
|
|
991
|
-
/* @__PURE__ */
|
|
1388
|
+
/* @__PURE__ */ jsxs36(
|
|
992
1389
|
"filter",
|
|
993
1390
|
{
|
|
994
1391
|
id: "filter4_f_48_113",
|
|
@@ -999,13 +1396,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
999
1396
|
filterUnits: "userSpaceOnUse",
|
|
1000
1397
|
colorInterpolationFilters: "sRGB",
|
|
1001
1398
|
children: [
|
|
1002
|
-
/* @__PURE__ */
|
|
1003
|
-
/* @__PURE__ */
|
|
1004
|
-
/* @__PURE__ */
|
|
1399
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1400
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1401
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1005
1402
|
]
|
|
1006
1403
|
}
|
|
1007
1404
|
),
|
|
1008
|
-
/* @__PURE__ */
|
|
1405
|
+
/* @__PURE__ */ jsxs36(
|
|
1009
1406
|
"filter",
|
|
1010
1407
|
{
|
|
1011
1408
|
id: "filter5_f_48_113",
|
|
@@ -1016,13 +1413,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1016
1413
|
filterUnits: "userSpaceOnUse",
|
|
1017
1414
|
colorInterpolationFilters: "sRGB",
|
|
1018
1415
|
children: [
|
|
1019
|
-
/* @__PURE__ */
|
|
1020
|
-
/* @__PURE__ */
|
|
1021
|
-
/* @__PURE__ */
|
|
1416
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1417
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1418
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1022
1419
|
]
|
|
1023
1420
|
}
|
|
1024
1421
|
),
|
|
1025
|
-
/* @__PURE__ */
|
|
1422
|
+
/* @__PURE__ */ jsxs36(
|
|
1026
1423
|
"filter",
|
|
1027
1424
|
{
|
|
1028
1425
|
id: "filter6_f_48_113",
|
|
@@ -1033,13 +1430,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1033
1430
|
filterUnits: "userSpaceOnUse",
|
|
1034
1431
|
colorInterpolationFilters: "sRGB",
|
|
1035
1432
|
children: [
|
|
1036
|
-
/* @__PURE__ */
|
|
1037
|
-
/* @__PURE__ */
|
|
1038
|
-
/* @__PURE__ */
|
|
1433
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1434
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1435
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "1.65243" })
|
|
1039
1436
|
]
|
|
1040
1437
|
}
|
|
1041
1438
|
),
|
|
1042
|
-
/* @__PURE__ */
|
|
1439
|
+
/* @__PURE__ */ jsxs36(
|
|
1043
1440
|
"filter",
|
|
1044
1441
|
{
|
|
1045
1442
|
id: "filter7_f_48_113",
|
|
@@ -1050,13 +1447,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1050
1447
|
filterUnits: "userSpaceOnUse",
|
|
1051
1448
|
colorInterpolationFilters: "sRGB",
|
|
1052
1449
|
children: [
|
|
1053
|
-
/* @__PURE__ */
|
|
1054
|
-
/* @__PURE__ */
|
|
1055
|
-
/* @__PURE__ */
|
|
1450
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1451
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1452
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1056
1453
|
]
|
|
1057
1454
|
}
|
|
1058
1455
|
),
|
|
1059
|
-
/* @__PURE__ */
|
|
1456
|
+
/* @__PURE__ */ jsxs36(
|
|
1060
1457
|
"filter",
|
|
1061
1458
|
{
|
|
1062
1459
|
id: "filter8_f_48_113",
|
|
@@ -1067,13 +1464,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1067
1464
|
filterUnits: "userSpaceOnUse",
|
|
1068
1465
|
colorInterpolationFilters: "sRGB",
|
|
1069
1466
|
children: [
|
|
1070
|
-
/* @__PURE__ */
|
|
1071
|
-
/* @__PURE__ */
|
|
1072
|
-
/* @__PURE__ */
|
|
1467
|
+
/* @__PURE__ */ jsx70("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1468
|
+
/* @__PURE__ */ jsx70("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1469
|
+
/* @__PURE__ */ jsx70("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1073
1470
|
]
|
|
1074
1471
|
}
|
|
1075
1472
|
),
|
|
1076
|
-
/* @__PURE__ */
|
|
1473
|
+
/* @__PURE__ */ jsxs36(
|
|
1077
1474
|
"radialGradient",
|
|
1078
1475
|
{
|
|
1079
1476
|
id: "paint0_radial_48_113",
|
|
@@ -1083,20 +1480,20 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1083
1480
|
gradientTransform: "matrix(-0.498722 -11.9519 17.9311 -0.717223 9.06911 20.3322)",
|
|
1084
1481
|
gradientUnits: "userSpaceOnUse",
|
|
1085
1482
|
children: [
|
|
1086
|
-
/* @__PURE__ */
|
|
1087
|
-
/* @__PURE__ */
|
|
1088
|
-
/* @__PURE__ */
|
|
1089
|
-
/* @__PURE__ */
|
|
1090
|
-
/* @__PURE__ */
|
|
1091
|
-
/* @__PURE__ */
|
|
1092
|
-
/* @__PURE__ */
|
|
1093
|
-
/* @__PURE__ */
|
|
1094
|
-
/* @__PURE__ */
|
|
1095
|
-
/* @__PURE__ */
|
|
1483
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.141612", stopColor: "#1ABD4D" }),
|
|
1484
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.247515", stopColor: "#6EC30D" }),
|
|
1485
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.311547", stopColor: "#8AC502" }),
|
|
1486
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.366013", stopColor: "#A2C600" }),
|
|
1487
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.445673", stopColor: "#C8C903" }),
|
|
1488
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.540305", stopColor: "#EBCB03" }),
|
|
1489
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.615636", stopColor: "#F7CD07" }),
|
|
1490
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.699345", stopColor: "#FDCD04" }),
|
|
1491
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.771242", stopColor: "#FDCE05" }),
|
|
1492
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.860566", stopColor: "#FFCE0A" })
|
|
1096
1493
|
]
|
|
1097
1494
|
}
|
|
1098
1495
|
),
|
|
1099
|
-
/* @__PURE__ */
|
|
1496
|
+
/* @__PURE__ */ jsxs36(
|
|
1100
1497
|
"radialGradient",
|
|
1101
1498
|
{
|
|
1102
1499
|
id: "paint1_radial_48_113",
|
|
@@ -1106,12 +1503,12 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1106
1503
|
gradientTransform: "matrix(8.46967 -2.03557e-05 -1.19045e-05 10.7093 20.253 6.36819)",
|
|
1107
1504
|
gradientUnits: "userSpaceOnUse",
|
|
1108
1505
|
children: [
|
|
1109
|
-
/* @__PURE__ */
|
|
1110
|
-
/* @__PURE__ */
|
|
1506
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.408458", stopColor: "#FB4E5A" }),
|
|
1507
|
+
/* @__PURE__ */ jsx70("stop", { offset: "1", stopColor: "#FF4540" })
|
|
1111
1508
|
]
|
|
1112
1509
|
}
|
|
1113
1510
|
),
|
|
1114
|
-
/* @__PURE__ */
|
|
1511
|
+
/* @__PURE__ */ jsxs36(
|
|
1115
1512
|
"radialGradient",
|
|
1116
1513
|
{
|
|
1117
1514
|
id: "paint2_radial_48_113",
|
|
@@ -1121,18 +1518,18 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1121
1518
|
gradientTransform: "matrix(-11.8666 6.43492 8.91875 15.766 15.6277 -1.68219)",
|
|
1122
1519
|
gradientUnits: "userSpaceOnUse",
|
|
1123
1520
|
children: [
|
|
1124
|
-
/* @__PURE__ */
|
|
1125
|
-
/* @__PURE__ */
|
|
1126
|
-
/* @__PURE__ */
|
|
1127
|
-
/* @__PURE__ */
|
|
1128
|
-
/* @__PURE__ */
|
|
1129
|
-
/* @__PURE__ */
|
|
1130
|
-
/* @__PURE__ */
|
|
1131
|
-
/* @__PURE__ */
|
|
1521
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.231273", stopColor: "#FF4541" }),
|
|
1522
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.311547", stopColor: "#FF4540" }),
|
|
1523
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.457516", stopColor: "#FF4640" }),
|
|
1524
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.540305", stopColor: "#FF473F" }),
|
|
1525
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.699346", stopColor: "#FF5138" }),
|
|
1526
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.771242", stopColor: "#FF5B33" }),
|
|
1527
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.860566", stopColor: "#FF6C29" }),
|
|
1528
|
+
/* @__PURE__ */ jsx70("stop", { offset: "1", stopColor: "#FF8C18" })
|
|
1132
1529
|
]
|
|
1133
1530
|
}
|
|
1134
1531
|
),
|
|
1135
|
-
/* @__PURE__ */
|
|
1532
|
+
/* @__PURE__ */ jsxs36(
|
|
1136
1533
|
"radialGradient",
|
|
1137
1534
|
{
|
|
1138
1535
|
id: "paint3_radial_48_113",
|
|
@@ -1142,19 +1539,19 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1142
1539
|
gradientTransform: "matrix(-21.5204 -27.5047 -10.3696 7.77752 12.4702 22.5743)",
|
|
1143
1540
|
gradientUnits: "userSpaceOnUse",
|
|
1144
1541
|
children: [
|
|
1145
|
-
/* @__PURE__ */
|
|
1146
|
-
/* @__PURE__ */
|
|
1147
|
-
/* @__PURE__ */
|
|
1148
|
-
/* @__PURE__ */
|
|
1149
|
-
/* @__PURE__ */
|
|
1150
|
-
/* @__PURE__ */
|
|
1151
|
-
/* @__PURE__ */
|
|
1152
|
-
/* @__PURE__ */
|
|
1153
|
-
/* @__PURE__ */
|
|
1542
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.131546", stopColor: "#0CBA65" }),
|
|
1543
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.209784", stopColor: "#0BB86D" }),
|
|
1544
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.297297", stopColor: "#09B479" }),
|
|
1545
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.396257", stopColor: "#08AD93" }),
|
|
1546
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.477124", stopColor: "#0AA6A9" }),
|
|
1547
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.568425", stopColor: "#0D9CC6" }),
|
|
1548
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.667385", stopColor: "#1893DD" }),
|
|
1549
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.768727", stopColor: "#258BF1" }),
|
|
1550
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.858506", stopColor: "#3086FF" })
|
|
1154
1551
|
]
|
|
1155
1552
|
}
|
|
1156
1553
|
),
|
|
1157
|
-
/* @__PURE__ */
|
|
1554
|
+
/* @__PURE__ */ jsxs36(
|
|
1158
1555
|
"radialGradient",
|
|
1159
1556
|
{
|
|
1160
1557
|
id: "paint4_radial_48_113",
|
|
@@ -1164,18 +1561,18 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1164
1561
|
gradientTransform: "matrix(-1.52295 12.8522 18.1501 2.06168 11.2421 2.13475)",
|
|
1165
1562
|
gradientUnits: "userSpaceOnUse",
|
|
1166
1563
|
children: [
|
|
1167
|
-
/* @__PURE__ */
|
|
1168
|
-
/* @__PURE__ */
|
|
1169
|
-
/* @__PURE__ */
|
|
1170
|
-
/* @__PURE__ */
|
|
1171
|
-
/* @__PURE__ */
|
|
1172
|
-
/* @__PURE__ */
|
|
1173
|
-
/* @__PURE__ */
|
|
1174
|
-
/* @__PURE__ */
|
|
1564
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.366013", stopColor: "#FF4E3A" }),
|
|
1565
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.457516", stopColor: "#FF8A1B" }),
|
|
1566
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.540305", stopColor: "#FFA312" }),
|
|
1567
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.615636", stopColor: "#FFB60C" }),
|
|
1568
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.771242", stopColor: "#FFCD0A" }),
|
|
1569
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.860566", stopColor: "#FECF0A" }),
|
|
1570
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.915033", stopColor: "#FECF08" }),
|
|
1571
|
+
/* @__PURE__ */ jsx70("stop", { offset: "1", stopColor: "#FDCD01" })
|
|
1175
1572
|
]
|
|
1176
1573
|
}
|
|
1177
1574
|
),
|
|
1178
|
-
/* @__PURE__ */
|
|
1575
|
+
/* @__PURE__ */ jsxs36(
|
|
1179
1576
|
"radialGradient",
|
|
1180
1577
|
{
|
|
1181
1578
|
id: "paint5_radial_48_113",
|
|
@@ -1185,15 +1582,15 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1185
1582
|
gradientTransform: "matrix(-4.40212 4.76677 -13.7322 -12.1566 9.10044 2.00144)",
|
|
1186
1583
|
gradientUnits: "userSpaceOnUse",
|
|
1187
1584
|
children: [
|
|
1188
|
-
/* @__PURE__ */
|
|
1189
|
-
/* @__PURE__ */
|
|
1190
|
-
/* @__PURE__ */
|
|
1191
|
-
/* @__PURE__ */
|
|
1192
|
-
/* @__PURE__ */
|
|
1585
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.315904", stopColor: "#FF4C3C" }),
|
|
1586
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.603818", stopColor: "#FF692C" }),
|
|
1587
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.726837", stopColor: "#FF7825" }),
|
|
1588
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.884534", stopColor: "#FF8D1B" }),
|
|
1589
|
+
/* @__PURE__ */ jsx70("stop", { offset: "1", stopColor: "#FF9F13" })
|
|
1193
1590
|
]
|
|
1194
1591
|
}
|
|
1195
1592
|
),
|
|
1196
|
-
/* @__PURE__ */
|
|
1593
|
+
/* @__PURE__ */ jsxs36(
|
|
1197
1594
|
"radialGradient",
|
|
1198
1595
|
{
|
|
1199
1596
|
id: "paint6_radial_48_113",
|
|
@@ -1203,20 +1600,20 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1203
1600
|
gradientTransform: "matrix(-11.8666 -6.43492 8.91876 -15.766 15.6277 25.6232)",
|
|
1204
1601
|
gradientUnits: "userSpaceOnUse",
|
|
1205
1602
|
children: [
|
|
1206
|
-
/* @__PURE__ */
|
|
1207
|
-
/* @__PURE__ */
|
|
1208
|
-
/* @__PURE__ */
|
|
1209
|
-
/* @__PURE__ */
|
|
1210
|
-
/* @__PURE__ */
|
|
1211
|
-
/* @__PURE__ */
|
|
1212
|
-
/* @__PURE__ */
|
|
1213
|
-
/* @__PURE__ */
|
|
1214
|
-
/* @__PURE__ */
|
|
1215
|
-
/* @__PURE__ */
|
|
1603
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.231273", stopColor: "#0FBC5F" }),
|
|
1604
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.311547", stopColor: "#0FBC5F" }),
|
|
1605
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.366013", stopColor: "#0FBC5E" }),
|
|
1606
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.457516", stopColor: "#0FBC5D" }),
|
|
1607
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.540305", stopColor: "#12BC58" }),
|
|
1608
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.699346", stopColor: "#28BF3C" }),
|
|
1609
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.771242", stopColor: "#38C02B" }),
|
|
1610
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.860566", stopColor: "#52C218" }),
|
|
1611
|
+
/* @__PURE__ */ jsx70("stop", { offset: "0.915033", stopColor: "#67C30F" }),
|
|
1612
|
+
/* @__PURE__ */ jsx70("stop", { offset: "1", stopColor: "#86C504" })
|
|
1216
1613
|
]
|
|
1217
1614
|
}
|
|
1218
1615
|
),
|
|
1219
|
-
/* @__PURE__ */
|
|
1616
|
+
/* @__PURE__ */ jsxs36(
|
|
1220
1617
|
"linearGradient",
|
|
1221
1618
|
{
|
|
1222
1619
|
id: "paint7_linear_48_113",
|
|
@@ -1226,8 +1623,8 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1226
1623
|
y2: "21.5116",
|
|
1227
1624
|
gradientUnits: "userSpaceOnUse",
|
|
1228
1625
|
children: [
|
|
1229
|
-
/* @__PURE__ */
|
|
1230
|
-
/* @__PURE__ */
|
|
1626
|
+
/* @__PURE__ */ jsx70("stop", { stopColor: "#0FBC5C" }),
|
|
1627
|
+
/* @__PURE__ */ jsx70("stop", { offset: "1", stopColor: "#0CBA65" })
|
|
1231
1628
|
]
|
|
1232
1629
|
}
|
|
1233
1630
|
)
|
|
@@ -1235,8 +1632,8 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1235
1632
|
] }), GoogleLogoFilled_default = IconGoogleLogoFilled;
|
|
1236
1633
|
|
|
1237
1634
|
// src/components/Handtool.tsx
|
|
1238
|
-
import { jsx as
|
|
1239
|
-
var IconHandtool = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1635
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
1636
|
+
var IconHandtool = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx71("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx71(
|
|
1240
1637
|
"path",
|
|
1241
1638
|
{
|
|
1242
1639
|
fill: stroke || color || "currentColor",
|
|
@@ -1245,17 +1642,17 @@ var IconHandtool = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1245
1642
|
) }), Handtool_default = IconHandtool;
|
|
1246
1643
|
|
|
1247
1644
|
// src/components/Help.tsx
|
|
1248
|
-
import { jsx as
|
|
1249
|
-
var IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1250
|
-
/* @__PURE__ */
|
|
1251
|
-
/* @__PURE__ */
|
|
1645
|
+
import { jsx as jsx72, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
1646
|
+
var IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs37("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1647
|
+
/* @__PURE__ */ jsx72("path", { fill: stroke || color || "currentColor", d: "M13.125 16.5V18.75H10.875V16.5H13.125Z" }),
|
|
1648
|
+
/* @__PURE__ */ jsx72(
|
|
1252
1649
|
"path",
|
|
1253
1650
|
{
|
|
1254
1651
|
fill: stroke || color || "currentColor",
|
|
1255
1652
|
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"
|
|
1256
1653
|
}
|
|
1257
1654
|
),
|
|
1258
|
-
/* @__PURE__ */
|
|
1655
|
+
/* @__PURE__ */ jsx72(
|
|
1259
1656
|
"path",
|
|
1260
1657
|
{
|
|
1261
1658
|
fill: stroke || color || "currentColor",
|
|
@@ -1267,8 +1664,8 @@ var IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1267
1664
|
] }), Help_default = IconHelp;
|
|
1268
1665
|
|
|
1269
1666
|
// src/components/HomepageFilled.tsx
|
|
1270
|
-
import { jsx as
|
|
1271
|
-
var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1667
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
1668
|
+
var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx73("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx73(
|
|
1272
1669
|
"path",
|
|
1273
1670
|
{
|
|
1274
1671
|
fill: fill || color || "currentColor",
|
|
@@ -1278,17 +1675,28 @@ var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1278
1675
|
}
|
|
1279
1676
|
) }), HomepageFilled_default = IconHomepageFilled;
|
|
1280
1677
|
|
|
1678
|
+
// src/components/Hotareacenter.tsx
|
|
1679
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
1680
|
+
var IconHotareacenter = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx74("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx74(
|
|
1681
|
+
"path",
|
|
1682
|
+
{
|
|
1683
|
+
fill: "#191919",
|
|
1684
|
+
stroke: stroke || color || "currentColor",
|
|
1685
|
+
d: "M12.9619 0.5V11.0381H23.5V12.9619H12.9619V23.5H11.0381V12.9619H0.5V11.0381H11.0381V0.5H12.9619Z"
|
|
1686
|
+
}
|
|
1687
|
+
) }), Hotareacenter_default = IconHotareacenter;
|
|
1688
|
+
|
|
1281
1689
|
// src/components/ImageGeneration.tsx
|
|
1282
|
-
import { jsx as
|
|
1283
|
-
var IconImageGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1284
|
-
/* @__PURE__ */
|
|
1690
|
+
import { jsx as jsx75, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
1691
|
+
var IconImageGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs38("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1692
|
+
/* @__PURE__ */ jsx75(
|
|
1285
1693
|
"path",
|
|
1286
1694
|
{
|
|
1287
1695
|
fill: stroke || color || "currentColor",
|
|
1288
1696
|
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.75ZM8.625 6C9.66053 6 10.5 6.83947 10.5 7.875C10.5 8.91053 9.66053 9.75 8.625 9.75C7.58947 9.75 6.75 8.91053 6.75 7.875C6.75 6.83947 7.58947 6 8.625 6Z"
|
|
1289
1697
|
}
|
|
1290
1698
|
),
|
|
1291
|
-
/* @__PURE__ */
|
|
1699
|
+
/* @__PURE__ */ jsx75(
|
|
1292
1700
|
"path",
|
|
1293
1701
|
{
|
|
1294
1702
|
fill: stroke || color || "currentColor",
|
|
@@ -1298,9 +1706,9 @@ var IconImageGeneration = ({ size, width, height, color, className, fill, stroke
|
|
|
1298
1706
|
] }), ImageGeneration_default = IconImageGeneration;
|
|
1299
1707
|
|
|
1300
1708
|
// src/components/ImageLoadFailedFilled.tsx
|
|
1301
|
-
import { jsx as
|
|
1302
|
-
var IconImageLoadFailedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1303
|
-
/* @__PURE__ */
|
|
1709
|
+
import { jsx as jsx76, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
1710
|
+
var IconImageLoadFailedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs39("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1711
|
+
/* @__PURE__ */ jsx76(
|
|
1304
1712
|
"path",
|
|
1305
1713
|
{
|
|
1306
1714
|
fill: fill || color || "currentColor",
|
|
@@ -1309,7 +1717,7 @@ var IconImageLoadFailedFilled = ({ size, width, height, color, className, fill,
|
|
|
1309
1717
|
clipRule: "evenodd"
|
|
1310
1718
|
}
|
|
1311
1719
|
),
|
|
1312
|
-
/* @__PURE__ */
|
|
1720
|
+
/* @__PURE__ */ jsx76(
|
|
1313
1721
|
"path",
|
|
1314
1722
|
{
|
|
1315
1723
|
fill: fill || color || "currentColor",
|
|
@@ -1319,11 +1727,11 @@ var IconImageLoadFailedFilled = ({ size, width, height, color, className, fill,
|
|
|
1319
1727
|
] }), ImageLoadFailedFilled_default = IconImageLoadFailedFilled;
|
|
1320
1728
|
|
|
1321
1729
|
// src/components/Info.tsx
|
|
1322
|
-
import { jsx as
|
|
1323
|
-
var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1324
|
-
/* @__PURE__ */
|
|
1325
|
-
/* @__PURE__ */
|
|
1326
|
-
/* @__PURE__ */
|
|
1730
|
+
import { jsx as jsx77, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
1731
|
+
var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs40("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1732
|
+
/* @__PURE__ */ jsx77("path", { fill: stroke || color || "currentColor", d: "M13.125 5.25V7.5H10.875V5.25H13.125Z" }),
|
|
1733
|
+
/* @__PURE__ */ jsx77("path", { fill: stroke || color || "currentColor", d: "M9 12H10.875V18.75H15V16.5H13.125V9.75H9V12Z" }),
|
|
1734
|
+
/* @__PURE__ */ jsx77(
|
|
1327
1735
|
"path",
|
|
1328
1736
|
{
|
|
1329
1737
|
fill: stroke || color || "currentColor",
|
|
@@ -1335,8 +1743,8 @@ var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1335
1743
|
] }), Info_default = IconInfo;
|
|
1336
1744
|
|
|
1337
1745
|
// src/components/Invitecode.tsx
|
|
1338
|
-
import { jsx as
|
|
1339
|
-
var IconInvitecode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1746
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
1747
|
+
var IconInvitecode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx78("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx78(
|
|
1340
1748
|
"path",
|
|
1341
1749
|
{
|
|
1342
1750
|
fill: fill || color || "currentColor",
|
|
@@ -1346,47 +1754,48 @@ var IconInvitecode = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1346
1754
|
}
|
|
1347
1755
|
) }), Invitecode_default = IconInvitecode;
|
|
1348
1756
|
|
|
1757
|
+
// src/components/LeftFilled.tsx
|
|
1758
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
1759
|
+
var IconLeftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx79("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx79(
|
|
1760
|
+
"path",
|
|
1761
|
+
{
|
|
1762
|
+
fill: fill || color || "currentColor",
|
|
1763
|
+
d: "M0 12C-2.89694e-07 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 2.89694e-07 12 0C5.37258 -2.89694e-07 2.89694e-07 5.37258 0 12ZM12 18V13.5H19.5V10.5L12 10.5V6H10.5L4.5 12L10.5 18H12Z",
|
|
1764
|
+
fillRule: "evenodd",
|
|
1765
|
+
clipRule: "evenodd"
|
|
1766
|
+
}
|
|
1767
|
+
) }), LeftFilled_default = IconLeftFilled;
|
|
1768
|
+
|
|
1349
1769
|
// src/components/Loading.tsx
|
|
1350
|
-
import { jsx as
|
|
1351
|
-
var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
id: "image0_78_19",
|
|
1368
|
-
width: "200",
|
|
1369
|
-
height: "200",
|
|
1370
|
-
preserveAspectRatio: "none",
|
|
1371
|
-
xlinkHref: "data:image/png;base64,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"
|
|
1372
|
-
}
|
|
1373
|
-
)
|
|
1374
|
-
] })
|
|
1375
|
-
]
|
|
1376
|
-
}
|
|
1377
|
-
), Loading_default = IconLoading;
|
|
1770
|
+
import { jsx as jsx80, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
1771
|
+
var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs41("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1772
|
+
/* @__PURE__ */ jsx80(
|
|
1773
|
+
"path",
|
|
1774
|
+
{
|
|
1775
|
+
fill: stroke || color || "currentColor",
|
|
1776
|
+
d: "M21.4999 12C21.4999 6.75334 17.2467 2.50005 12 2.50005C6.75328 2.50005 2.49999 6.75334 2.49999 12C2.49999 17.2467 6.75328 21.5 12 21.5V24C5.37257 24 0 18.6274 0 12C0 5.37263 5.37257 6.1035e-05 12 6.1035e-05C18.6274 6.1035e-05 23.9999 5.37263 23.9999 12C23.9999 18.6274 18.6274 24 12 24V21.5C17.2467 21.5 21.4999 17.2467 21.4999 12Z"
|
|
1777
|
+
}
|
|
1778
|
+
),
|
|
1779
|
+
/* @__PURE__ */ jsx80(
|
|
1780
|
+
"path",
|
|
1781
|
+
{
|
|
1782
|
+
fill: fill || color || "currentColor",
|
|
1783
|
+
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"
|
|
1784
|
+
}
|
|
1785
|
+
)
|
|
1786
|
+
] }), Loading_default = IconLoading;
|
|
1378
1787
|
|
|
1379
1788
|
// src/components/Login.tsx
|
|
1380
|
-
import { jsx as
|
|
1381
|
-
var IconLogin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1382
|
-
/* @__PURE__ */
|
|
1789
|
+
import { jsx as jsx81, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
1790
|
+
var IconLogin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs42("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1791
|
+
/* @__PURE__ */ jsx81(
|
|
1383
1792
|
"path",
|
|
1384
1793
|
{
|
|
1385
1794
|
fill: stroke || color || "currentColor",
|
|
1386
1795
|
d: "M24 1.5L13.5 1.5V3.75H21.75V20.25H13.5V22.5H24V1.5Z"
|
|
1387
1796
|
}
|
|
1388
1797
|
),
|
|
1389
|
-
/* @__PURE__ */
|
|
1798
|
+
/* @__PURE__ */ jsx81(
|
|
1390
1799
|
"path",
|
|
1391
1800
|
{
|
|
1392
1801
|
fill: stroke || color || "currentColor",
|
|
@@ -1398,9 +1807,9 @@ var IconLogin = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1398
1807
|
] }), Login_default = IconLogin;
|
|
1399
1808
|
|
|
1400
1809
|
// src/components/Logout.tsx
|
|
1401
|
-
import { jsx as
|
|
1402
|
-
var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1403
|
-
/* @__PURE__ */
|
|
1810
|
+
import { jsx as jsx82, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
1811
|
+
var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs43("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1812
|
+
/* @__PURE__ */ jsx82(
|
|
1404
1813
|
"path",
|
|
1405
1814
|
{
|
|
1406
1815
|
fill: stroke || color || "currentColor",
|
|
@@ -1409,7 +1818,7 @@ var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1409
1818
|
clipRule: "evenodd"
|
|
1410
1819
|
}
|
|
1411
1820
|
),
|
|
1412
|
-
/* @__PURE__ */
|
|
1821
|
+
/* @__PURE__ */ jsx82(
|
|
1413
1822
|
"path",
|
|
1414
1823
|
{
|
|
1415
1824
|
fill: stroke || color || "currentColor",
|
|
@@ -1419,19 +1828,29 @@ var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1419
1828
|
] }), Logout_default = IconLogout;
|
|
1420
1829
|
|
|
1421
1830
|
// src/components/ModelGeminiFilled.tsx
|
|
1422
|
-
import { jsx as
|
|
1423
|
-
var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1831
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
1832
|
+
var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx83("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx83(
|
|
1424
1833
|
"path",
|
|
1425
1834
|
{
|
|
1426
1835
|
fill: fill || color || "currentColor",
|
|
1427
|
-
d: "
|
|
1836
|
+
d: "M11.9797 1.5C11.64 7.1325 7.1325 11.64 1.5 11.9797V12.0203C7.1325 12.36 11.64 16.8675 11.9797 22.5H12.0203C12.36 16.8675 16.8675 12.36 22.5 12.0203V11.9797C16.8675 11.64 12.36 7.1325 12.0203 1.5H11.9797Z"
|
|
1428
1837
|
}
|
|
1429
1838
|
) }), ModelGeminiFilled_default = IconModelGeminiFilled;
|
|
1430
1839
|
|
|
1840
|
+
// src/components/ModelOpenaiFilled.tsx
|
|
1841
|
+
import { jsx as jsx84 } from "react/jsx-runtime";
|
|
1842
|
+
var IconModelOpenaiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx84("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx84(
|
|
1843
|
+
"path",
|
|
1844
|
+
{
|
|
1845
|
+
fill: fill || color || "currentColor",
|
|
1846
|
+
d: "M20.4616 10.2312C20.6284 9.73654 20.7135 9.21858 20.7136 8.69721C20.7135 7.8345 20.4806 6.98736 20.0388 6.24288C19.1511 4.71818 17.5043 3.77684 15.722 3.77684C15.3709 3.77685 15.0207 3.81344 14.6774 3.886C14.2156 3.37264 13.6488 2.96169 13.0143 2.68026C12.3798 2.39883 11.692 2.25331 10.9963 2.2533H10.9651L10.9534 2.25336C8.7947 2.25336 6.88035 3.62773 6.21676 5.65386C5.52986 5.79268 4.88094 6.07468 4.31344 6.48098C3.74593 6.88728 3.27294 7.40852 2.92613 8.00979C2.48567 8.75875 2.25357 9.60923 2.2533 10.4751C2.25346 11.6921 2.71129 12.8657 3.53813 13.7687C3.37122 14.2633 3.2861 14.7813 3.28603 15.3027C3.28611 16.1654 3.51901 17.0125 3.96079 17.757C4.48616 18.6596 5.28845 19.3741 6.25199 19.7977C7.21553 20.2213 8.29052 20.332 9.32193 20.1138C9.78379 20.6272 10.3507 21.0381 10.9852 21.3196C11.6198 21.601 12.3076 21.7466 13.0033 21.7466H13.0345L13.0472 21.7465C15.2071 21.7465 17.1208 20.3721 17.7844 18.3441C18.4713 18.2053 19.1202 17.9232 19.6877 17.5169C20.2552 17.1106 20.7282 16.5894 21.0751 15.9881C21.5151 15.2398 21.7467 14.3901 21.7466 13.525C21.7464 12.308 21.2886 11.1345 20.4618 10.2315L20.4616 10.2312ZM13.0358 20.4722H13.0307C12.1664 20.4719 11.3296 20.1728 10.6658 19.6268C10.7052 19.6058 10.7442 19.584 10.7826 19.5614L14.7163 17.3195C14.8145 17.2644 14.8961 17.1846 14.9529 17.0882C15.0097 16.9919 15.0396 16.8824 15.0397 16.771V11.2953L16.7023 12.2426C16.7111 12.2469 16.7186 12.2532 16.7242 12.2611C16.7299 12.2689 16.7334 12.278 16.7347 12.2876V16.8191C16.7324 18.8338 15.0778 20.4681 13.0358 20.4722ZM5.08119 17.12C4.75627 16.5657 4.58508 15.9367 4.58486 15.2963C4.58486 15.0874 4.60335 14.878 4.63935 14.6722C4.66859 14.6895 4.71963 14.7203 4.75626 14.741L8.68993 16.983C8.788 17.0395 8.89953 17.0692 9.01309 17.0692C9.12665 17.0692 9.23816 17.0394 9.33621 16.9828L14.1388 14.2467V16.1413L14.1389 16.1445C14.1389 16.1536 14.1367 16.1626 14.1326 16.1708C14.1285 16.179 14.1225 16.1861 14.1151 16.1916L10.1385 18.457C9.57584 18.7765 8.93805 18.9447 8.28885 18.9449C7.63897 18.9448 7.00052 18.7762 6.43753 18.4558C5.87455 18.1355 5.4068 17.6748 5.08119 17.1198V17.12ZM4.04632 8.64678C4.47836 7.90634 5.16055 7.3394 5.9735 7.04518C5.9735 7.07859 5.97157 7.1378 5.97157 7.17891V11.6628L5.9715 11.6665C5.97151 11.7778 6.00139 11.8872 6.0581 11.9835C6.1148 12.0797 6.19632 12.1594 6.29436 12.2146L11.097 14.9503L9.43436 15.8976C9.42616 15.9029 9.41674 15.9061 9.40696 15.907C9.39718 15.9079 9.38733 15.9064 9.37828 15.9026L5.4013 13.6353C4.83909 13.3139 4.37236 12.8524 4.04787 12.297C3.72339 11.7416 3.55255 11.1118 3.55247 10.4707C3.55272 9.83064 3.72307 9.20182 4.04653 8.64699L4.04632 8.64678ZM17.7068 11.7834L12.9042 9.04728L14.5669 8.10037C14.5751 8.09503 14.5845 8.09177 14.5942 8.0909C14.604 8.09002 14.6139 8.09154 14.6229 8.09533L18.5998 10.3607C19.1625 10.6816 19.6297 11.1428 19.9546 11.6982C20.2795 12.2536 20.4506 12.8835 20.4507 13.5247C20.4507 15.0552 19.4828 16.4246 18.0275 16.9532V12.3352C18.0277 12.3335 18.0277 12.3318 18.0277 12.3301C18.0277 12.2191 17.998 12.1102 17.9416 12.0142C17.8853 11.9182 17.8043 11.8386 17.7068 11.7834ZM19.3617 9.32583C19.323 9.30246 19.284 9.27955 19.2448 9.2571L15.3111 7.0151C15.2131 6.95871 15.1016 6.92898 14.9881 6.92894C14.8746 6.92898 14.7631 6.95871 14.665 7.0151L9.86233 9.75124V7.85666L9.86227 7.8534C9.86227 7.83489 9.87116 7.81746 9.88613 7.80637L13.8627 5.54287C14.4252 5.22291 15.063 5.05447 15.7123 5.05444C17.7569 5.05444 19.415 6.69048 19.415 8.70789C19.4149 8.91492 19.3971 9.12157 19.3617 9.32563V9.32583ZM8.95837 12.7026L7.29536 11.7553C7.28664 11.751 7.27912 11.7447 7.27348 11.7368C7.26783 11.729 7.26424 11.7199 7.26302 11.7103V7.17877C7.26391 5.16244 8.92203 3.52776 10.9658 3.52776C11.8314 3.52794 12.6696 3.82713 13.3349 4.37341C13.305 4.38954 13.2528 4.41799 13.2181 4.43874L9.28441 6.68068C9.18626 6.73577 9.10465 6.81553 9.04786 6.91184C8.99108 7.00815 8.96116 7.11757 8.96113 7.22899V7.2326L8.95837 12.7026ZM9.86158 10.7812L12.0006 9.56219L14.1396 10.7804V13.2176L12.0006 14.4358L9.86158 13.2176V10.7812Z"
|
|
1847
|
+
}
|
|
1848
|
+
) }), ModelOpenaiFilled_default = IconModelOpenaiFilled;
|
|
1849
|
+
|
|
1431
1850
|
// src/components/ModelDeepmindFilled.tsx
|
|
1432
|
-
import { jsx as
|
|
1433
|
-
var IconModelDeepmindFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1434
|
-
/* @__PURE__ */
|
|
1851
|
+
import { jsx as jsx85, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
1852
|
+
var IconModelDeepmindFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs44("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1853
|
+
/* @__PURE__ */ jsx85("g", { clipPath: "url(#clip0_40_67)", children: /* @__PURE__ */ jsx85(
|
|
1435
1854
|
"path",
|
|
1436
1855
|
{
|
|
1437
1856
|
fill: fill || color || "currentColor",
|
|
@@ -1440,28 +1859,28 @@ var IconModelDeepmindFilled = ({ size, width, height, color, className, fill, st
|
|
|
1440
1859
|
clipRule: "evenodd"
|
|
1441
1860
|
}
|
|
1442
1861
|
) }),
|
|
1443
|
-
/* @__PURE__ */
|
|
1862
|
+
/* @__PURE__ */ jsx85("defs", { children: /* @__PURE__ */ jsx85("clipPath", { id: "clip0_40_67", children: /* @__PURE__ */ jsx85("rect", { width: "20", height: "20", fill: stroke || color || "currentColor", transform: "translate(2 2)" }) }) })
|
|
1444
1863
|
] }), ModelDeepmindFilled_default = IconModelDeepmindFilled;
|
|
1445
1864
|
|
|
1446
1865
|
// src/components/ModelSeedFilled.tsx
|
|
1447
|
-
import { jsx as
|
|
1448
|
-
var IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1449
|
-
/* @__PURE__ */
|
|
1450
|
-
/* @__PURE__ */
|
|
1866
|
+
import { jsx as jsx86, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
1867
|
+
var IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs45("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1868
|
+
/* @__PURE__ */ jsx86("path", { fill: fill || color || "currentColor", d: "M23 2.95271V20.0401L19.2211 21V2L23 2.95271Z" }),
|
|
1869
|
+
/* @__PURE__ */ jsx86(
|
|
1451
1870
|
"path",
|
|
1452
1871
|
{
|
|
1453
1872
|
fill: fill || color || "currentColor",
|
|
1454
1873
|
d: "M10.7528 11.4648V19.5633L6.98126 20.5241V10.5048L10.7528 11.4648Z"
|
|
1455
1874
|
}
|
|
1456
1875
|
),
|
|
1457
|
-
/* @__PURE__ */
|
|
1876
|
+
/* @__PURE__ */ jsx86(
|
|
1458
1877
|
"path",
|
|
1459
1878
|
{
|
|
1460
1879
|
fill: fill || color || "currentColor",
|
|
1461
1880
|
d: "M4.77158 3.95509V19.044L1 20.0048V2.99515L4.77158 3.95509Z"
|
|
1462
1881
|
}
|
|
1463
1882
|
),
|
|
1464
|
-
/* @__PURE__ */
|
|
1883
|
+
/* @__PURE__ */ jsx86(
|
|
1465
1884
|
"path",
|
|
1466
1885
|
{
|
|
1467
1886
|
fill: fill || color || "currentColor",
|
|
@@ -1471,8 +1890,8 @@ var IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1471
1890
|
] }), ModelSeedFilled_default = IconModelSeedFilled;
|
|
1472
1891
|
|
|
1473
1892
|
// src/components/ModelSoraFilled.tsx
|
|
1474
|
-
import { jsx as
|
|
1475
|
-
var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1893
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
1894
|
+
var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx87("svg", { fill: "none", viewBox: "0 0 25 25", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx87(
|
|
1476
1895
|
"path",
|
|
1477
1896
|
{
|
|
1478
1897
|
fill: fill || color || "currentColor",
|
|
@@ -1481,7 +1900,7 @@ var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1481
1900
|
) }), ModelSoraFilled_default = IconModelSoraFilled;
|
|
1482
1901
|
|
|
1483
1902
|
// src/components/ModelNanobananaLogoNomoFilled.tsx
|
|
1484
|
-
import { jsx as
|
|
1903
|
+
import { jsx as jsx88, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
1485
1904
|
var IconModelNanobananaLogoNomoFilled = ({
|
|
1486
1905
|
size,
|
|
1487
1906
|
width,
|
|
@@ -1490,102 +1909,148 @@ var IconModelNanobananaLogoNomoFilled = ({
|
|
|
1490
1909
|
className,
|
|
1491
1910
|
fill,
|
|
1492
1911
|
stroke
|
|
1493
|
-
}) => /* @__PURE__ */
|
|
1494
|
-
/* @__PURE__ */
|
|
1912
|
+
}) => /* @__PURE__ */ jsxs46("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1913
|
+
/* @__PURE__ */ jsx88(
|
|
1495
1914
|
"path",
|
|
1496
1915
|
{
|
|
1497
1916
|
fill: "#5A5C62",
|
|
1498
1917
|
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"
|
|
1499
1918
|
}
|
|
1500
1919
|
),
|
|
1501
|
-
/* @__PURE__ */
|
|
1920
|
+
/* @__PURE__ */ jsx88(
|
|
1502
1921
|
"path",
|
|
1503
1922
|
{
|
|
1504
1923
|
fill: "#D5D6D7",
|
|
1505
1924
|
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"
|
|
1506
1925
|
}
|
|
1507
1926
|
),
|
|
1508
|
-
/* @__PURE__ */
|
|
1927
|
+
/* @__PURE__ */ jsx88(
|
|
1509
1928
|
"path",
|
|
1510
1929
|
{
|
|
1511
1930
|
fill: "#C4C5C7",
|
|
1512
1931
|
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"
|
|
1513
1932
|
}
|
|
1514
1933
|
),
|
|
1515
|
-
/* @__PURE__ */
|
|
1934
|
+
/* @__PURE__ */ jsx88(
|
|
1516
1935
|
"path",
|
|
1517
1936
|
{
|
|
1518
1937
|
fill: "#7B7C81",
|
|
1519
1938
|
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"
|
|
1520
1939
|
}
|
|
1521
1940
|
),
|
|
1522
|
-
/* @__PURE__ */
|
|
1941
|
+
/* @__PURE__ */ jsx88(
|
|
1523
1942
|
"path",
|
|
1524
1943
|
{
|
|
1525
1944
|
fill: "#85878B",
|
|
1526
1945
|
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"
|
|
1527
1946
|
}
|
|
1528
1947
|
),
|
|
1529
|
-
/* @__PURE__ */
|
|
1948
|
+
/* @__PURE__ */ jsx88(
|
|
1530
1949
|
"path",
|
|
1531
1950
|
{
|
|
1532
1951
|
fill: "#1B1D24",
|
|
1533
1952
|
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"
|
|
1534
1953
|
}
|
|
1535
1954
|
),
|
|
1536
|
-
/* @__PURE__ */
|
|
1955
|
+
/* @__PURE__ */ jsx88(
|
|
1956
|
+
"path",
|
|
1957
|
+
{
|
|
1958
|
+
fill: "#D5D6D7",
|
|
1959
|
+
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"
|
|
1960
|
+
}
|
|
1961
|
+
),
|
|
1962
|
+
/* @__PURE__ */ jsx88(
|
|
1963
|
+
"path",
|
|
1964
|
+
{
|
|
1965
|
+
fill: "#85878B",
|
|
1966
|
+
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"
|
|
1967
|
+
}
|
|
1968
|
+
),
|
|
1969
|
+
/* @__PURE__ */ jsx88(
|
|
1970
|
+
"path",
|
|
1971
|
+
{
|
|
1972
|
+
fill: "#D5D6D7",
|
|
1973
|
+
d: "M5.17688 12.8363C4.40438 13.9406 4.30313 14.91 4.18688 15.9C4.08188 16.7944 3.86626 18.675 3.54188 19.2881C3.21563 19.9013 2.89876 20.3006 3.24938 20.6738C3.60001 21.0469 4.63126 20.9138 5.37188 20.1075C5.96813 19.4569 6.29813 18.7481 6.74626 17.7075C7.19438 16.6669 7.85438 14.2106 8.71126 13.1006C9.25876 12.3919 9.80438 12.3713 9.80438 12.3713C9.80438 12.3713 9.08251 11.7825 7.70438 11.7675C6.46876 11.7544 5.82001 11.9175 5.17688 12.8363Z"
|
|
1974
|
+
}
|
|
1975
|
+
)
|
|
1976
|
+
] }), ModelNanobananaLogoNomoFilled_default = IconModelNanobananaLogoNomoFilled;
|
|
1977
|
+
|
|
1978
|
+
// src/components/Models.tsx
|
|
1979
|
+
import { jsx as jsx89 } from "react/jsx-runtime";
|
|
1980
|
+
var IconModels = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx89("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx89(
|
|
1981
|
+
"path",
|
|
1982
|
+
{
|
|
1983
|
+
fill: stroke || color || "currentColor",
|
|
1984
|
+
d: "M1.5 6L12 0L22.5 6V18L12 24L1.5 18V6ZM3.75 8.58143V16.6943L10.875 20.7657V12.6529L3.75 8.58143ZM13.125 20.7657L20.25 16.6943V8.58143L13.125 12.6529V20.7657ZM19.0987 6.64786L12 2.59144L4.90126 6.64786L12 10.7043L19.0987 6.64786Z",
|
|
1985
|
+
fillRule: "evenodd",
|
|
1986
|
+
clipRule: "evenodd"
|
|
1987
|
+
}
|
|
1988
|
+
) }), Models_default = IconModels;
|
|
1989
|
+
|
|
1990
|
+
// src/components/MoreCollapse.tsx
|
|
1991
|
+
import { jsx as jsx90 } from "react/jsx-runtime";
|
|
1992
|
+
var IconMoreCollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx90("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx90(
|
|
1993
|
+
"path",
|
|
1994
|
+
{
|
|
1995
|
+
fill: stroke || color || "currentColor",
|
|
1996
|
+
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM12 21.75C6.61522 21.75 2.25 17.3848 2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75ZM17.2959 10.5459L15.7051 8.95508L12 12.6592L8.2959 8.95508L6.70508 10.5459L12 15.8408L17.2959 10.5459Z"
|
|
1997
|
+
}
|
|
1998
|
+
) }), MoreCollapse_default = IconMoreCollapse;
|
|
1999
|
+
|
|
2000
|
+
// src/components/MoreHorizontal.tsx
|
|
2001
|
+
import { jsx as jsx91, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
2002
|
+
var IconMoreHorizontal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs47("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2003
|
+
/* @__PURE__ */ jsx91(
|
|
1537
2004
|
"path",
|
|
1538
2005
|
{
|
|
1539
|
-
fill: "
|
|
1540
|
-
d: "
|
|
2006
|
+
fill: stroke || color || "currentColor",
|
|
2007
|
+
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"
|
|
1541
2008
|
}
|
|
1542
2009
|
),
|
|
1543
|
-
/* @__PURE__ */
|
|
2010
|
+
/* @__PURE__ */ jsx91(
|
|
1544
2011
|
"path",
|
|
1545
2012
|
{
|
|
1546
|
-
fill: "
|
|
1547
|
-
d: "
|
|
2013
|
+
fill: stroke || color || "currentColor",
|
|
2014
|
+
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"
|
|
1548
2015
|
}
|
|
1549
2016
|
),
|
|
1550
|
-
/* @__PURE__ */
|
|
2017
|
+
/* @__PURE__ */ jsx91(
|
|
1551
2018
|
"path",
|
|
1552
2019
|
{
|
|
1553
|
-
fill: "
|
|
1554
|
-
d: "
|
|
2020
|
+
fill: stroke || color || "currentColor",
|
|
2021
|
+
d: "M19 14C20.1046 14 21 13.1046 21 12C21 10.8954 20.1046 10 19 10C17.8954 10 17 10.8954 17 12C17 13.1046 17.8954 14 19 14Z"
|
|
1555
2022
|
}
|
|
1556
2023
|
)
|
|
1557
|
-
] }),
|
|
2024
|
+
] }), MoreHorizontal_default = IconMoreHorizontal;
|
|
1558
2025
|
|
|
1559
|
-
// src/components/
|
|
1560
|
-
import { jsx as
|
|
1561
|
-
var
|
|
2026
|
+
// src/components/MoreShowed.tsx
|
|
2027
|
+
import { jsx as jsx92 } from "react/jsx-runtime";
|
|
2028
|
+
var IconMoreShowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx92("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx92(
|
|
1562
2029
|
"path",
|
|
1563
2030
|
{
|
|
1564
2031
|
fill: stroke || color || "currentColor",
|
|
1565
|
-
d: "
|
|
1566
|
-
fillRule: "evenodd",
|
|
1567
|
-
clipRule: "evenodd"
|
|
2032
|
+
d: "M12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0ZM12 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 6.61522 17.3848 2.25 12 2.25ZM17.2959 13.4551L15.7051 15.0459L12 11.3408L8.2959 15.0459L6.70508 13.4551L12 8.15918L17.2959 13.4551Z"
|
|
1568
2033
|
}
|
|
1569
|
-
) }),
|
|
2034
|
+
) }), MoreShowed_default = IconMoreShowed;
|
|
1570
2035
|
|
|
1571
2036
|
// src/components/More.tsx
|
|
1572
|
-
import { jsx as
|
|
1573
|
-
var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1574
|
-
/* @__PURE__ */
|
|
2037
|
+
import { jsx as jsx93, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
2038
|
+
var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs48("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2039
|
+
/* @__PURE__ */ jsx93(
|
|
1575
2040
|
"path",
|
|
1576
2041
|
{
|
|
1577
2042
|
fill: stroke || color || "currentColor",
|
|
1578
2043
|
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"
|
|
1579
2044
|
}
|
|
1580
2045
|
),
|
|
1581
|
-
/* @__PURE__ */
|
|
2046
|
+
/* @__PURE__ */ jsx93(
|
|
1582
2047
|
"path",
|
|
1583
2048
|
{
|
|
1584
2049
|
fill: stroke || color || "currentColor",
|
|
1585
2050
|
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"
|
|
1586
2051
|
}
|
|
1587
2052
|
),
|
|
1588
|
-
/* @__PURE__ */
|
|
2053
|
+
/* @__PURE__ */ jsx93(
|
|
1589
2054
|
"path",
|
|
1590
2055
|
{
|
|
1591
2056
|
fill: stroke || color || "currentColor",
|
|
@@ -1595,30 +2060,30 @@ var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1595
2060
|
] }), More_default = IconMore;
|
|
1596
2061
|
|
|
1597
2062
|
// src/components/Moresettings.tsx
|
|
1598
|
-
import { jsx as
|
|
1599
|
-
var IconMoresettings = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1600
|
-
/* @__PURE__ */
|
|
2063
|
+
import { jsx as jsx94, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
2064
|
+
var IconMoresettings = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs49("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2065
|
+
/* @__PURE__ */ jsx94(
|
|
1601
2066
|
"path",
|
|
1602
2067
|
{
|
|
1603
2068
|
fill: stroke || color || "currentColor",
|
|
1604
2069
|
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"
|
|
1605
2070
|
}
|
|
1606
2071
|
),
|
|
1607
|
-
/* @__PURE__ */
|
|
2072
|
+
/* @__PURE__ */ jsx94(
|
|
1608
2073
|
"path",
|
|
1609
2074
|
{
|
|
1610
2075
|
fill: stroke || color || "currentColor",
|
|
1611
2076
|
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"
|
|
1612
2077
|
}
|
|
1613
2078
|
),
|
|
1614
|
-
/* @__PURE__ */
|
|
2079
|
+
/* @__PURE__ */ jsx94(
|
|
1615
2080
|
"path",
|
|
1616
2081
|
{
|
|
1617
2082
|
fill: stroke || color || "currentColor",
|
|
1618
2083
|
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"
|
|
1619
2084
|
}
|
|
1620
2085
|
),
|
|
1621
|
-
/* @__PURE__ */
|
|
2086
|
+
/* @__PURE__ */ jsx94(
|
|
1622
2087
|
"path",
|
|
1623
2088
|
{
|
|
1624
2089
|
fill: stroke || color || "currentColor",
|
|
@@ -1629,9 +2094,73 @@ var IconMoresettings = ({ size, width, height, color, className, fill, stroke })
|
|
|
1629
2094
|
)
|
|
1630
2095
|
] }), Moresettings_default = IconMoresettings;
|
|
1631
2096
|
|
|
2097
|
+
// src/components/MouseDrag.tsx
|
|
2098
|
+
import { jsx as jsx95, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
2099
|
+
var IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs50("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2100
|
+
/* @__PURE__ */ jsx95(
|
|
2101
|
+
"path",
|
|
2102
|
+
{
|
|
2103
|
+
fill: fill || color || "currentColor",
|
|
2104
|
+
stroke: stroke || color || "currentColor",
|
|
2105
|
+
d: "M13.5 3.5V20.5H10.5V3.5H13.5Z"
|
|
2106
|
+
}
|
|
2107
|
+
),
|
|
2108
|
+
/* @__PURE__ */ jsx95(
|
|
2109
|
+
"path",
|
|
2110
|
+
{
|
|
2111
|
+
fill: fill || color || "currentColor",
|
|
2112
|
+
stroke: stroke || color || "currentColor",
|
|
2113
|
+
d: "M6.79297 7.5L2.29297 12L6.79297 16.5H8.5V7.5H6.79297Z"
|
|
2114
|
+
}
|
|
2115
|
+
),
|
|
2116
|
+
/* @__PURE__ */ jsx95(
|
|
2117
|
+
"path",
|
|
2118
|
+
{
|
|
2119
|
+
fill: fill || color || "currentColor",
|
|
2120
|
+
stroke: stroke || color || "currentColor",
|
|
2121
|
+
d: "M17.207 7.5L21.707 12L17.207 16.5H15.5V7.5H17.207Z"
|
|
2122
|
+
}
|
|
2123
|
+
)
|
|
2124
|
+
] }), MouseDrag_default = IconMouseDrag;
|
|
2125
|
+
|
|
2126
|
+
// src/components/MouseMove.tsx
|
|
2127
|
+
import { jsx as jsx96, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
2128
|
+
var IconMouseMove = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs51("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2129
|
+
/* @__PURE__ */ jsx96("g", { clipPath: "url(#clip0_384_31)", children: /* @__PURE__ */ jsx96(
|
|
2130
|
+
"path",
|
|
2131
|
+
{
|
|
2132
|
+
fill: fill || color || "currentColor",
|
|
2133
|
+
stroke: stroke || color || "currentColor",
|
|
2134
|
+
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"
|
|
2135
|
+
}
|
|
2136
|
+
) }),
|
|
2137
|
+
/* @__PURE__ */ jsx96("defs", { children: /* @__PURE__ */ jsx96("clipPath", { id: "clip0_384_31", children: /* @__PURE__ */ jsx96("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
2138
|
+
] }), MouseMove_default = IconMouseMove;
|
|
2139
|
+
|
|
2140
|
+
// src/components/MouseNumberchange.tsx
|
|
2141
|
+
import { jsx as jsx97, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
2142
|
+
var IconMouseNumberchange = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs52("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2143
|
+
/* @__PURE__ */ jsx97(
|
|
2144
|
+
"path",
|
|
2145
|
+
{
|
|
2146
|
+
fill: fill || color || "currentColor",
|
|
2147
|
+
stroke: stroke || color || "currentColor",
|
|
2148
|
+
d: "M10.5 17L9.30567 17L0.97168 12L9.30566 7L10.5 7L10.5 17Z"
|
|
2149
|
+
}
|
|
2150
|
+
),
|
|
2151
|
+
/* @__PURE__ */ jsx97(
|
|
2152
|
+
"path",
|
|
2153
|
+
{
|
|
2154
|
+
fill: fill || color || "currentColor",
|
|
2155
|
+
stroke: stroke || color || "currentColor",
|
|
2156
|
+
d: "M13.5 17L14.6943 17L23.0283 12L14.6943 7L13.5 7L13.5 17Z"
|
|
2157
|
+
}
|
|
2158
|
+
)
|
|
2159
|
+
] }), MouseNumberchange_default = IconMouseNumberchange;
|
|
2160
|
+
|
|
1632
2161
|
// src/components/Musicassets.tsx
|
|
1633
|
-
import { jsx as
|
|
1634
|
-
var IconMusicassets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2162
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
2163
|
+
var IconMusicassets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx98("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx98(
|
|
1635
2164
|
"path",
|
|
1636
2165
|
{
|
|
1637
2166
|
fill: stroke || color || "currentColor",
|
|
@@ -1642,9 +2171,9 @@ var IconMusicassets = ({ size, width, height, color, className, fill, stroke })
|
|
|
1642
2171
|
) }), Musicassets_default = IconMusicassets;
|
|
1643
2172
|
|
|
1644
2173
|
// src/components/Mute.tsx
|
|
1645
|
-
import { jsx as
|
|
1646
|
-
var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1647
|
-
/* @__PURE__ */
|
|
2174
|
+
import { jsx as jsx99, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
2175
|
+
var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs53("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2176
|
+
/* @__PURE__ */ jsx99(
|
|
1648
2177
|
"path",
|
|
1649
2178
|
{
|
|
1650
2179
|
fill: stroke || color || "currentColor",
|
|
@@ -1653,7 +2182,7 @@ var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1653
2182
|
clipRule: "evenodd"
|
|
1654
2183
|
}
|
|
1655
2184
|
),
|
|
1656
|
-
/* @__PURE__ */
|
|
2185
|
+
/* @__PURE__ */ jsx99(
|
|
1657
2186
|
"path",
|
|
1658
2187
|
{
|
|
1659
2188
|
fill: stroke || color || "currentColor",
|
|
@@ -1663,8 +2192,8 @@ var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1663
2192
|
] }), Mute_default = IconMute;
|
|
1664
2193
|
|
|
1665
2194
|
// src/components/Next.tsx
|
|
1666
|
-
import { jsx as
|
|
1667
|
-
var IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2195
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
2196
|
+
var IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx100("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx100(
|
|
1668
2197
|
"path",
|
|
1669
2198
|
{
|
|
1670
2199
|
fill: stroke || color || "currentColor",
|
|
@@ -1675,43 +2204,39 @@ var IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1675
2204
|
) }), Next_default = IconNext;
|
|
1676
2205
|
|
|
1677
2206
|
// src/components/Nextscene.tsx
|
|
1678
|
-
import { jsx as
|
|
1679
|
-
var IconNextscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1680
|
-
/* @__PURE__ */
|
|
1681
|
-
"
|
|
2207
|
+
import { jsx as jsx101, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
2208
|
+
var IconNextscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs54("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2209
|
+
/* @__PURE__ */ jsx101(
|
|
2210
|
+
"path",
|
|
1682
2211
|
{
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
x: "-0.75",
|
|
1686
|
-
y: "0.75",
|
|
1687
|
-
stroke: stroke || color || "currentColor",
|
|
1688
|
-
rx: "11.25",
|
|
1689
|
-
transform: "matrix(-1 0 0 1 22.5 0)",
|
|
1690
|
-
strokeWidth: "1.5"
|
|
2212
|
+
fill: stroke || color || "currentColor",
|
|
2213
|
+
d: "M16.7959 12L10.2656 18.5303L9.2041 17.4697L14.6738 12L9.2041 6.53027L10.2656 5.46973L16.7959 12Z"
|
|
1691
2214
|
}
|
|
1692
2215
|
),
|
|
1693
|
-
/* @__PURE__ */
|
|
2216
|
+
/* @__PURE__ */ jsx101(
|
|
1694
2217
|
"path",
|
|
1695
2218
|
{
|
|
1696
2219
|
fill: stroke || color || "currentColor",
|
|
1697
|
-
d: "
|
|
2220
|
+
d: "M12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0ZM12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5Z",
|
|
2221
|
+
fillRule: "evenodd",
|
|
2222
|
+
clipRule: "evenodd"
|
|
1698
2223
|
}
|
|
1699
2224
|
)
|
|
1700
2225
|
] }), Nextscene_default = IconNextscene;
|
|
1701
2226
|
|
|
1702
2227
|
// src/components/Oneclickgenerate.tsx
|
|
1703
|
-
import { jsx as
|
|
1704
|
-
var IconOneclickgenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1705
|
-
/* @__PURE__ */
|
|
1706
|
-
/* @__PURE__ */
|
|
1707
|
-
/* @__PURE__ */
|
|
2228
|
+
import { jsx as jsx102, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
2229
|
+
var IconOneclickgenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs55("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2230
|
+
/* @__PURE__ */ jsx102("path", { fill: stroke || color || "currentColor", d: "M12 4.5V0H9.75V4.5H12Z" }),
|
|
2231
|
+
/* @__PURE__ */ jsx102("path", { fill: stroke || color || "currentColor", d: "M4.5 9.75H0V12H4.5V9.75Z" }),
|
|
2232
|
+
/* @__PURE__ */ jsx102(
|
|
1708
2233
|
"path",
|
|
1709
2234
|
{
|
|
1710
2235
|
fill: stroke || color || "currentColor",
|
|
1711
2236
|
d: "M5.2045 6.7955L1.4545 3.0455L3.0455 1.4545L6.7955 5.2045L5.2045 6.7955Z"
|
|
1712
2237
|
}
|
|
1713
2238
|
),
|
|
1714
|
-
/* @__PURE__ */
|
|
2239
|
+
/* @__PURE__ */ jsx102(
|
|
1715
2240
|
"path",
|
|
1716
2241
|
{
|
|
1717
2242
|
fill: stroke || color || "currentColor",
|
|
@@ -1723,9 +2248,9 @@ var IconOneclickgenerate = ({ size, width, height, color, className, fill, strok
|
|
|
1723
2248
|
] }), Oneclickgenerate_default = IconOneclickgenerate;
|
|
1724
2249
|
|
|
1725
2250
|
// src/components/Opendemo.tsx
|
|
1726
|
-
import { jsx as
|
|
1727
|
-
var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1728
|
-
/* @__PURE__ */
|
|
2251
|
+
import { jsx as jsx103, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
2252
|
+
var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs56("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2253
|
+
/* @__PURE__ */ jsx103(
|
|
1729
2254
|
"path",
|
|
1730
2255
|
{
|
|
1731
2256
|
fill: stroke || color || "currentColor",
|
|
@@ -1734,16 +2259,110 @@ var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1734
2259
|
clipRule: "evenodd"
|
|
1735
2260
|
}
|
|
1736
2261
|
),
|
|
1737
|
-
/* @__PURE__ */
|
|
2262
|
+
/* @__PURE__ */ jsx103("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
1738
2263
|
] }), Opendemo_default = IconOpendemo;
|
|
1739
2264
|
|
|
2265
|
+
// src/components/OppsFilled.tsx
|
|
2266
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
2267
|
+
var IconOppsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx104("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx104(
|
|
2268
|
+
"path",
|
|
2269
|
+
{
|
|
2270
|
+
fill: fill || color || "currentColor",
|
|
2271
|
+
d: "M24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12ZM10.5 8.25C10.5 9.49264 9.49264 10.5 8.25 10.5C7.00736 10.5 6 9.49264 6 8.25C6 7.00736 7.00736 6 8.25 6C9.49264 6 10.5 7.00736 10.5 8.25ZM15.75 10.5C16.9926 10.5 18 9.49264 18 8.25C18 7.00736 16.9926 6 15.75 6C14.5074 6 13.5 7.00736 13.5 8.25C13.5 9.49264 14.5074 10.5 15.75 10.5Z",
|
|
2272
|
+
fillRule: "evenodd",
|
|
2273
|
+
clipRule: "evenodd"
|
|
2274
|
+
}
|
|
2275
|
+
) }), OppsFilled_default = IconOppsFilled;
|
|
2276
|
+
|
|
2277
|
+
// src/components/OptionalcheckedFilled.tsx
|
|
2278
|
+
import { jsx as jsx105 } from "react/jsx-runtime";
|
|
2279
|
+
var IconOptionalcheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx105("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx105(
|
|
2280
|
+
"path",
|
|
2281
|
+
{
|
|
2282
|
+
fill: fill || color || "currentColor",
|
|
2283
|
+
d: "M22.5 1.5H1.5V22.5H22.5V1.5ZM19.0607 8.56066L16.9393 6.43934L9.75 13.6287L7.06066 10.9393L4.93934 13.0607L9.75 17.8713L19.0607 8.56066Z",
|
|
2284
|
+
fillRule: "evenodd",
|
|
2285
|
+
clipRule: "evenodd"
|
|
2286
|
+
}
|
|
2287
|
+
) }), OptionalcheckedFilled_default = IconOptionalcheckedFilled;
|
|
2288
|
+
|
|
2289
|
+
// src/components/Optionaluncheck.tsx
|
|
2290
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
2291
|
+
var IconOptionaluncheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx106("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx106(
|
|
2292
|
+
"path",
|
|
2293
|
+
{
|
|
2294
|
+
fill: stroke || color || "currentColor",
|
|
2295
|
+
d: "M1.5 1.5V22.5H22.5V1.5H1.5ZM20.25 3.75H3.75V20.25H20.25V3.75Z",
|
|
2296
|
+
fillRule: "evenodd",
|
|
2297
|
+
clipRule: "evenodd"
|
|
2298
|
+
}
|
|
2299
|
+
) }), Optionaluncheck_default = IconOptionaluncheck;
|
|
2300
|
+
|
|
2301
|
+
// src/components/Packagegame.tsx
|
|
2302
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
2303
|
+
var IconPackagegame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx107("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx107(
|
|
2304
|
+
"path",
|
|
2305
|
+
{
|
|
2306
|
+
fill: stroke || color || "currentColor",
|
|
2307
|
+
d: "M22.5 22.5H1.5V9L6 1.5H18L22.5 9V22.5ZM10.875 3.75H7.27393L4.12393 9H10.875V3.75ZM13.125 3.75V9H19.8761L16.7261 3.75H13.125ZM3.75 20.25V11.25H20.25V20.25H3.75Z",
|
|
2308
|
+
fillRule: "evenodd",
|
|
2309
|
+
clipRule: "evenodd"
|
|
2310
|
+
}
|
|
2311
|
+
) }), Packagegame_default = IconPackagegame;
|
|
2312
|
+
|
|
1740
2313
|
// src/components/PageError.tsx
|
|
1741
|
-
import { jsx as
|
|
1742
|
-
var IconPageError = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2314
|
+
import { jsx as jsx108 } from "react/jsx-runtime";
|
|
2315
|
+
var IconPageError = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx108("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx108("path", { fill: stroke || color || "currentColor", d: "M22.5 13.125H1.5V10.875H22.5V13.125Z" }) }), PageError_default = IconPageError;
|
|
2316
|
+
|
|
2317
|
+
// src/components/Parameters.tsx
|
|
2318
|
+
import { jsx as jsx109, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
2319
|
+
var IconParameters = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs57("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2320
|
+
/* @__PURE__ */ jsx109(
|
|
2321
|
+
"path",
|
|
2322
|
+
{
|
|
2323
|
+
fill: stroke || color || "currentColor",
|
|
2324
|
+
d: "M12.75 4.875H22.5V7.125H12.75V10.5H4.5V7.125H1.5V4.875H4.5V1.5H12.75V4.875ZM6.75 3.75H10.5V8.25H6.75V3.75Z",
|
|
2325
|
+
fillRule: "evenodd",
|
|
2326
|
+
clipRule: "evenodd"
|
|
2327
|
+
}
|
|
2328
|
+
),
|
|
2329
|
+
/* @__PURE__ */ jsx109(
|
|
2330
|
+
"path",
|
|
2331
|
+
{
|
|
2332
|
+
fill: stroke || color || "currentColor",
|
|
2333
|
+
d: "M11.25 16.875V13.5H19.5V16.875H22.5V19.125H19.5V22.5H11.25V19.125H1.5V16.875H11.25ZM13.5 15.75H17.25V20.25H13.5V15.75Z",
|
|
2334
|
+
fillRule: "evenodd",
|
|
2335
|
+
clipRule: "evenodd"
|
|
2336
|
+
}
|
|
2337
|
+
)
|
|
2338
|
+
] }), Parameters_default = IconParameters;
|
|
2339
|
+
|
|
2340
|
+
// src/components/Pause.tsx
|
|
2341
|
+
import { jsx as jsx110, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
2342
|
+
var IconPause = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs58("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2343
|
+
/* @__PURE__ */ jsx110(
|
|
2344
|
+
"path",
|
|
2345
|
+
{
|
|
2346
|
+
fill: stroke || color || "currentColor",
|
|
2347
|
+
d: "M10.5 1.5H3V22.5H10.5V1.5ZM8.25 3.75H5.25V20.25H8.25V3.75Z",
|
|
2348
|
+
fillRule: "evenodd",
|
|
2349
|
+
clipRule: "evenodd"
|
|
2350
|
+
}
|
|
2351
|
+
),
|
|
2352
|
+
/* @__PURE__ */ jsx110(
|
|
2353
|
+
"path",
|
|
2354
|
+
{
|
|
2355
|
+
fill: stroke || color || "currentColor",
|
|
2356
|
+
d: "M21 1.5H13.5V22.5H21V1.5ZM18.75 3.75H15.75V20.25H18.75V3.75Z",
|
|
2357
|
+
fillRule: "evenodd",
|
|
2358
|
+
clipRule: "evenodd"
|
|
2359
|
+
}
|
|
2360
|
+
)
|
|
2361
|
+
] }), Pause_default = IconPause;
|
|
1743
2362
|
|
|
1744
2363
|
// src/components/Pencil.tsx
|
|
1745
|
-
import { jsx as
|
|
1746
|
-
var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2364
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
2365
|
+
var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx111("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx111(
|
|
1747
2366
|
"path",
|
|
1748
2367
|
{
|
|
1749
2368
|
fill: stroke || color || "currentColor",
|
|
@@ -1754,8 +2373,8 @@ var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1754
2373
|
) }), Pencil_default = IconPencil;
|
|
1755
2374
|
|
|
1756
2375
|
// src/components/Pick.tsx
|
|
1757
|
-
import { jsx as
|
|
1758
|
-
var IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2376
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
2377
|
+
var IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx112("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx112(
|
|
1759
2378
|
"path",
|
|
1760
2379
|
{
|
|
1761
2380
|
fill: stroke || color || "currentColor",
|
|
@@ -1766,25 +2385,25 @@ var IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1766
2385
|
) }), Pick_default = IconPick;
|
|
1767
2386
|
|
|
1768
2387
|
// src/components/PickedFilled.tsx
|
|
1769
|
-
import { jsx as
|
|
1770
|
-
var IconPickedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2388
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
2389
|
+
var IconPickedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx113("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx113("path", { fill: fill || color || "currentColor", d: "M3 0H21V24H18L12 18L6 24H3V0Z" }) }), PickedFilled_default = IconPickedFilled;
|
|
1771
2390
|
|
|
1772
2391
|
// src/components/PlanFilled.tsx
|
|
1773
|
-
import { jsx as
|
|
1774
|
-
var IconPlanFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1775
|
-
/* @__PURE__ */
|
|
2392
|
+
import { jsx as jsx114, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
2393
|
+
var IconPlanFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs59("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2394
|
+
/* @__PURE__ */ jsx114("g", { clipPath: "url(#clip0_2_30)", children: /* @__PURE__ */ jsx114(
|
|
1776
2395
|
"path",
|
|
1777
2396
|
{
|
|
1778
2397
|
fill: fill || color || "currentColor",
|
|
1779
2398
|
d: "M13.5 10.5L15 0H12L3 10.5V13.5H10.5L9 24H12L21 13.5L21 10.5H13.5Z"
|
|
1780
2399
|
}
|
|
1781
2400
|
) }),
|
|
1782
|
-
/* @__PURE__ */
|
|
2401
|
+
/* @__PURE__ */ jsx114("defs", { children: /* @__PURE__ */ jsx114("clipPath", { id: "clip0_2_30", children: /* @__PURE__ */ jsx114("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
1783
2402
|
] }), PlanFilled_default = IconPlanFilled;
|
|
1784
2403
|
|
|
1785
2404
|
// src/components/PlayFilled.tsx
|
|
1786
|
-
import { jsx as
|
|
1787
|
-
var IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2405
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
2406
|
+
var IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx115("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx115(
|
|
1788
2407
|
"path",
|
|
1789
2408
|
{
|
|
1790
2409
|
fill: fill || color || "currentColor",
|
|
@@ -1792,33 +2411,42 @@ var IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1792
2411
|
}
|
|
1793
2412
|
) }), PlayFilled_default = IconPlayFilled;
|
|
1794
2413
|
|
|
2414
|
+
// src/components/Play.tsx
|
|
2415
|
+
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
2416
|
+
var IconPlay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx116("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx116(
|
|
2417
|
+
"path",
|
|
2418
|
+
{
|
|
2419
|
+
fill: stroke || color || "currentColor",
|
|
2420
|
+
d: "M7.5 24H10.5L22.5 12L10.5 0L7.5 1.31134e-07L7.5 24ZM9.75 2.43198L19.318 12L9.75 21.568V2.43198Z",
|
|
2421
|
+
fillRule: "evenodd",
|
|
2422
|
+
clipRule: "evenodd"
|
|
2423
|
+
}
|
|
2424
|
+
) }), Play_default = IconPlay;
|
|
2425
|
+
|
|
1795
2426
|
// src/components/Previouscene.tsx
|
|
1796
|
-
import { jsx as
|
|
1797
|
-
var IconPreviouscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1798
|
-
/* @__PURE__ */
|
|
1799
|
-
"
|
|
2427
|
+
import { jsx as jsx117, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
2428
|
+
var IconPreviouscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs60("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2429
|
+
/* @__PURE__ */ jsx117(
|
|
2430
|
+
"path",
|
|
1800
2431
|
{
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
x: "0.75",
|
|
1804
|
-
y: "0.75",
|
|
1805
|
-
stroke: stroke || color || "currentColor",
|
|
1806
|
-
rx: "11.25",
|
|
1807
|
-
strokeWidth: "1.5"
|
|
2432
|
+
fill: stroke || color || "currentColor",
|
|
2433
|
+
d: "M7.2041 12L13.7344 18.5303L14.7959 17.4697L9.32617 12L14.7959 6.53027L13.7344 5.46973L7.2041 12Z"
|
|
1808
2434
|
}
|
|
1809
2435
|
),
|
|
1810
|
-
/* @__PURE__ */
|
|
2436
|
+
/* @__PURE__ */ jsx117(
|
|
1811
2437
|
"path",
|
|
1812
2438
|
{
|
|
1813
2439
|
fill: stroke || color || "currentColor",
|
|
1814
|
-
d: "
|
|
2440
|
+
d: "M12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0ZM12 1.5C17.799 1.5 22.5 6.20101 22.5 12C22.5 17.799 17.799 22.5 12 22.5C6.20101 22.5 1.5 17.799 1.5 12C1.5 6.20101 6.20101 1.5 12 1.5Z",
|
|
2441
|
+
fillRule: "evenodd",
|
|
2442
|
+
clipRule: "evenodd"
|
|
1815
2443
|
}
|
|
1816
2444
|
)
|
|
1817
2445
|
] }), Previouscene_default = IconPreviouscene;
|
|
1818
2446
|
|
|
1819
2447
|
// src/components/ProblemNoticeFilled.tsx
|
|
1820
|
-
import { jsx as
|
|
1821
|
-
var IconProblemNoticeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2448
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
2449
|
+
var IconProblemNoticeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx118("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx118(
|
|
1822
2450
|
"path",
|
|
1823
2451
|
{
|
|
1824
2452
|
fill: fill || color || "currentColor",
|
|
@@ -1829,11 +2457,11 @@ var IconProblemNoticeFilled = ({ size, width, height, color, className, fill, st
|
|
|
1829
2457
|
) }), ProblemNoticeFilled_default = IconProblemNoticeFilled;
|
|
1830
2458
|
|
|
1831
2459
|
// src/components/Problem.tsx
|
|
1832
|
-
import { jsx as
|
|
1833
|
-
var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1834
|
-
/* @__PURE__ */
|
|
1835
|
-
/* @__PURE__ */
|
|
1836
|
-
/* @__PURE__ */
|
|
2460
|
+
import { jsx as jsx119, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
2461
|
+
var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs61("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2462
|
+
/* @__PURE__ */ jsx119("path", { fill: stroke || color || "currentColor", d: "M13.125 13.5V6H10.875V13.5H13.125Z" }),
|
|
2463
|
+
/* @__PURE__ */ jsx119("path", { fill: stroke || color || "currentColor", d: "M13.125 18V15.75H10.875V18H13.125Z" }),
|
|
2464
|
+
/* @__PURE__ */ jsx119(
|
|
1837
2465
|
"path",
|
|
1838
2466
|
{
|
|
1839
2467
|
fill: stroke || color || "currentColor",
|
|
@@ -1844,9 +2472,24 @@ var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1844
2472
|
)
|
|
1845
2473
|
] }), Problem_default = IconProblem;
|
|
1846
2474
|
|
|
2475
|
+
// src/components/Publish.tsx
|
|
2476
|
+
import { jsx as jsx120, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
2477
|
+
var IconPublish = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs62("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2478
|
+
/* @__PURE__ */ jsx120(
|
|
2479
|
+
"path",
|
|
2480
|
+
{
|
|
2481
|
+
fill: stroke || color || "currentColor",
|
|
2482
|
+
d: "M13.125 1.875L16.8295 5.5795L9.70452 12.7045L11.2955 14.2955L18.4205 7.1705L22.125 10.875L24 9V0H15L13.125 1.875ZM21.75 7.31802L16.682 2.25H21.75V7.31802Z",
|
|
2483
|
+
fillRule: "evenodd",
|
|
2484
|
+
clipRule: "evenodd"
|
|
2485
|
+
}
|
|
2486
|
+
),
|
|
2487
|
+
/* @__PURE__ */ jsx120("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
2488
|
+
] }), Publish_default = IconPublish;
|
|
2489
|
+
|
|
1847
2490
|
// src/components/Ratio169.tsx
|
|
1848
|
-
import { jsx as
|
|
1849
|
-
var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2491
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
2492
|
+
var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx121("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx121(
|
|
1850
2493
|
"path",
|
|
1851
2494
|
{
|
|
1852
2495
|
fill: stroke || color || "currentColor",
|
|
@@ -1855,16 +2498,16 @@ var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1855
2498
|
) }), Ratio169_default = IconRatio169;
|
|
1856
2499
|
|
|
1857
2500
|
// src/components/Ratio11.tsx
|
|
1858
|
-
import { jsx as
|
|
1859
|
-
var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1860
|
-
/* @__PURE__ */
|
|
2501
|
+
import { jsx as jsx122, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
2502
|
+
var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs63("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2503
|
+
/* @__PURE__ */ jsx122("g", { clipPath: "url(#clip0_13_501)", children: /* @__PURE__ */ jsx122(
|
|
1861
2504
|
"path",
|
|
1862
2505
|
{
|
|
1863
2506
|
fill: stroke || color || "currentColor",
|
|
1864
2507
|
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"
|
|
1865
2508
|
}
|
|
1866
2509
|
) }),
|
|
1867
|
-
/* @__PURE__ */
|
|
2510
|
+
/* @__PURE__ */ jsx122("defs", { children: /* @__PURE__ */ jsx122("clipPath", { id: "clip0_13_501", children: /* @__PURE__ */ jsx122(
|
|
1868
2511
|
"rect",
|
|
1869
2512
|
{
|
|
1870
2513
|
width: "24",
|
|
@@ -1876,16 +2519,16 @@ var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1876
2519
|
] }), Ratio11_default = IconRatio11;
|
|
1877
2520
|
|
|
1878
2521
|
// src/components/Ratio916.tsx
|
|
1879
|
-
import { jsx as
|
|
1880
|
-
var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1881
|
-
/* @__PURE__ */
|
|
2522
|
+
import { jsx as jsx123, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
2523
|
+
var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs64("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2524
|
+
/* @__PURE__ */ jsx123("g", { clipPath: "url(#clip0_13_499)", children: /* @__PURE__ */ jsx123(
|
|
1882
2525
|
"path",
|
|
1883
2526
|
{
|
|
1884
2527
|
fill: stroke || color || "currentColor",
|
|
1885
2528
|
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"
|
|
1886
2529
|
}
|
|
1887
2530
|
) }),
|
|
1888
|
-
/* @__PURE__ */
|
|
2531
|
+
/* @__PURE__ */ jsx123("defs", { children: /* @__PURE__ */ jsx123("clipPath", { id: "clip0_13_499", children: /* @__PURE__ */ jsx123(
|
|
1889
2532
|
"rect",
|
|
1890
2533
|
{
|
|
1891
2534
|
width: "24",
|
|
@@ -1897,16 +2540,16 @@ var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1897
2540
|
] }), Ratio916_default = IconRatio916;
|
|
1898
2541
|
|
|
1899
2542
|
// src/components/Ratio.tsx
|
|
1900
|
-
import { jsx as
|
|
1901
|
-
var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1902
|
-
/* @__PURE__ */
|
|
2543
|
+
import { jsx as jsx124, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
2544
|
+
var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs65("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2545
|
+
/* @__PURE__ */ jsx124(
|
|
1903
2546
|
"path",
|
|
1904
2547
|
{
|
|
1905
2548
|
fill: stroke || color || "currentColor",
|
|
1906
2549
|
d: "M3 0V3L0 3V5.25L18.75 5.25V24H21V21H24V18.75H21L21 3L5.25 3V0H3Z"
|
|
1907
2550
|
}
|
|
1908
2551
|
),
|
|
1909
|
-
/* @__PURE__ */
|
|
2552
|
+
/* @__PURE__ */ jsx124(
|
|
1910
2553
|
"path",
|
|
1911
2554
|
{
|
|
1912
2555
|
fill: stroke || color || "currentColor",
|
|
@@ -1916,8 +2559,8 @@ var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1916
2559
|
] }), Ratio_default = IconRatio;
|
|
1917
2560
|
|
|
1918
2561
|
// src/components/ReEdit.tsx
|
|
1919
|
-
import { jsx as
|
|
1920
|
-
var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2562
|
+
import { jsx as jsx125 } from "react/jsx-runtime";
|
|
2563
|
+
var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx125("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx125(
|
|
1921
2564
|
"path",
|
|
1922
2565
|
{
|
|
1923
2566
|
fill: stroke || color || "currentColor",
|
|
@@ -1928,8 +2571,8 @@ var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1928
2571
|
) }), ReEdit_default = IconReEdit;
|
|
1929
2572
|
|
|
1930
2573
|
// src/components/Regenerate.tsx
|
|
1931
|
-
import { jsx as
|
|
1932
|
-
var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2574
|
+
import { jsx as jsx126 } from "react/jsx-runtime";
|
|
2575
|
+
var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx126("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx126(
|
|
1933
2576
|
"path",
|
|
1934
2577
|
{
|
|
1935
2578
|
fill: stroke || color || "currentColor",
|
|
@@ -1939,9 +2582,21 @@ var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1939
2582
|
}
|
|
1940
2583
|
) }), Regenerate_default = IconRegenerate;
|
|
1941
2584
|
|
|
2585
|
+
// src/components/RightFilled.tsx
|
|
2586
|
+
import { jsx as jsx127 } from "react/jsx-runtime";
|
|
2587
|
+
var IconRightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx127("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx127(
|
|
2588
|
+
"path",
|
|
2589
|
+
{
|
|
2590
|
+
fill: fill || color || "currentColor",
|
|
2591
|
+
d: "M24 12C24 5.37258 18.6274 -2.89694e-07 12 0C5.37258 2.89694e-07 -2.89694e-07 5.37258 0 12C2.89694e-07 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12ZM12 6V10.5H4.5V13.5H12V18H13.5L19.5 12L13.5 6H12Z",
|
|
2592
|
+
fillRule: "evenodd",
|
|
2593
|
+
clipRule: "evenodd"
|
|
2594
|
+
}
|
|
2595
|
+
) }), RightFilled_default = IconRightFilled;
|
|
2596
|
+
|
|
1942
2597
|
// src/components/SceneNext.tsx
|
|
1943
|
-
import { jsx as
|
|
1944
|
-
var IconSceneNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2598
|
+
import { jsx as jsx128 } from "react/jsx-runtime";
|
|
2599
|
+
var IconSceneNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx128("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx128(
|
|
1945
2600
|
"path",
|
|
1946
2601
|
{
|
|
1947
2602
|
fill: stroke || color || "currentColor",
|
|
@@ -1950,21 +2605,21 @@ var IconSceneNext = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1950
2605
|
) }), SceneNext_default = IconSceneNext;
|
|
1951
2606
|
|
|
1952
2607
|
// src/components/Scriptmode.tsx
|
|
1953
|
-
import { jsx as
|
|
1954
|
-
var IconScriptmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1955
|
-
/* @__PURE__ */
|
|
1956
|
-
/* @__PURE__ */
|
|
1957
|
-
/* @__PURE__ */
|
|
1958
|
-
/* @__PURE__ */
|
|
1959
|
-
/* @__PURE__ */
|
|
1960
|
-
/* @__PURE__ */
|
|
1961
|
-
/* @__PURE__ */
|
|
1962
|
-
/* @__PURE__ */
|
|
2608
|
+
import { jsx as jsx129, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
2609
|
+
var IconScriptmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs66("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2610
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H3.75V1.5H1.5V3.75Z" }),
|
|
2611
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M1.5 10.125H3.75V7.875H1.5V10.125Z" }),
|
|
2612
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H3.75V13.875H1.5V16.125Z" }),
|
|
2613
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H3.75V20.25H1.5V22.5Z" }),
|
|
2614
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M7.5 3.75H22.5V1.5H7.5V3.75Z" }),
|
|
2615
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M7.5 10.125H22.5V7.875H7.5V10.125Z" }),
|
|
2616
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M7.5 16.125H22.5V13.875H7.5V16.125Z" }),
|
|
2617
|
+
/* @__PURE__ */ jsx129("path", { fill: stroke || color || "currentColor", d: "M7.5 22.5H22.5V20.25H7.5V22.5Z" })
|
|
1963
2618
|
] }), Scriptmode_default = IconScriptmode;
|
|
1964
2619
|
|
|
1965
2620
|
// src/components/ShareFilled.tsx
|
|
1966
|
-
import { jsx as
|
|
1967
|
-
var IconShareFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2621
|
+
import { jsx as jsx130 } from "react/jsx-runtime";
|
|
2622
|
+
var IconShareFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx130("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx130(
|
|
1968
2623
|
"path",
|
|
1969
2624
|
{
|
|
1970
2625
|
fill: fill || color || "currentColor",
|
|
@@ -1973,8 +2628,8 @@ var IconShareFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
1973
2628
|
) }), ShareFilled_default = IconShareFilled;
|
|
1974
2629
|
|
|
1975
2630
|
// src/components/Share.tsx
|
|
1976
|
-
import { jsx as
|
|
1977
|
-
var IconShare = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2631
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
2632
|
+
var IconShare = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx131("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx131(
|
|
1978
2633
|
"path",
|
|
1979
2634
|
{
|
|
1980
2635
|
fill: stroke || color || "currentColor",
|
|
@@ -1985,8 +2640,8 @@ var IconShare = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1985
2640
|
) }), Share_default = IconShare;
|
|
1986
2641
|
|
|
1987
2642
|
// src/components/SocialX.tsx
|
|
1988
|
-
import { jsx as
|
|
1989
|
-
var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2643
|
+
import { jsx as jsx132 } from "react/jsx-runtime";
|
|
2644
|
+
var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx132("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx132(
|
|
1990
2645
|
"path",
|
|
1991
2646
|
{
|
|
1992
2647
|
fill: fill || color || "currentColor",
|
|
@@ -1995,8 +2650,8 @@ var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1995
2650
|
) }), SocialX_default = IconSocialX;
|
|
1996
2651
|
|
|
1997
2652
|
// src/components/SocialDiscord.tsx
|
|
1998
|
-
import { jsx as
|
|
1999
|
-
var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2653
|
+
import { jsx as jsx133 } from "react/jsx-runtime";
|
|
2654
|
+
var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx133("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx133(
|
|
2000
2655
|
"path",
|
|
2001
2656
|
{
|
|
2002
2657
|
fill: fill || color || "currentColor",
|
|
@@ -2005,9 +2660,9 @@ var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }
|
|
|
2005
2660
|
) }), SocialDiscord_default = IconSocialDiscord;
|
|
2006
2661
|
|
|
2007
2662
|
// src/components/SoundOff.tsx
|
|
2008
|
-
import { jsx as
|
|
2009
|
-
var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2010
|
-
/* @__PURE__ */
|
|
2663
|
+
import { jsx as jsx134, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
2664
|
+
var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs67("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2665
|
+
/* @__PURE__ */ jsx134(
|
|
2011
2666
|
"path",
|
|
2012
2667
|
{
|
|
2013
2668
|
fill: stroke || color || "currentColor",
|
|
@@ -2016,7 +2671,7 @@ var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2016
2671
|
clipRule: "evenodd"
|
|
2017
2672
|
}
|
|
2018
2673
|
),
|
|
2019
|
-
/* @__PURE__ */
|
|
2674
|
+
/* @__PURE__ */ jsx134(
|
|
2020
2675
|
"path",
|
|
2021
2676
|
{
|
|
2022
2677
|
fill: stroke || color || "currentColor",
|
|
@@ -2026,9 +2681,9 @@ var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2026
2681
|
] }), SoundOff_default = IconSoundOff;
|
|
2027
2682
|
|
|
2028
2683
|
// src/components/SoundOn.tsx
|
|
2029
|
-
import { jsx as
|
|
2030
|
-
var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2031
|
-
/* @__PURE__ */
|
|
2684
|
+
import { jsx as jsx135, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
2685
|
+
var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs68("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2686
|
+
/* @__PURE__ */ jsx135(
|
|
2032
2687
|
"path",
|
|
2033
2688
|
{
|
|
2034
2689
|
fill: stroke || color || "currentColor",
|
|
@@ -2037,14 +2692,14 @@ var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
2037
2692
|
clipRule: "evenodd"
|
|
2038
2693
|
}
|
|
2039
2694
|
),
|
|
2040
|
-
/* @__PURE__ */
|
|
2695
|
+
/* @__PURE__ */ jsx135(
|
|
2041
2696
|
"path",
|
|
2042
2697
|
{
|
|
2043
2698
|
fill: stroke || color || "currentColor",
|
|
2044
2699
|
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"
|
|
2045
2700
|
}
|
|
2046
2701
|
),
|
|
2047
|
-
/* @__PURE__ */
|
|
2702
|
+
/* @__PURE__ */ jsx135(
|
|
2048
2703
|
"path",
|
|
2049
2704
|
{
|
|
2050
2705
|
fill: stroke || color || "currentColor",
|
|
@@ -2054,8 +2709,8 @@ var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
2054
2709
|
] }), SoundOn_default = IconSoundOn;
|
|
2055
2710
|
|
|
2056
2711
|
// src/components/Storyboard.tsx
|
|
2057
|
-
import { jsx as
|
|
2058
|
-
var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2712
|
+
import { jsx as jsx136 } from "react/jsx-runtime";
|
|
2713
|
+
var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx136("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx136(
|
|
2059
2714
|
"path",
|
|
2060
2715
|
{
|
|
2061
2716
|
fill: stroke || color || "currentColor",
|
|
@@ -2066,25 +2721,25 @@ var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2066
2721
|
) }), Storyboard_default = IconStoryboard;
|
|
2067
2722
|
|
|
2068
2723
|
// src/components/StyleAutoFilled.tsx
|
|
2069
|
-
import { jsx as
|
|
2070
|
-
var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2071
|
-
/* @__PURE__ */
|
|
2724
|
+
import { jsx as jsx137, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
2725
|
+
var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs69("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2726
|
+
/* @__PURE__ */ jsx137(
|
|
2072
2727
|
"path",
|
|
2073
2728
|
{
|
|
2074
2729
|
fill: fill || color || "currentColor",
|
|
2075
2730
|
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"
|
|
2076
2731
|
}
|
|
2077
2732
|
),
|
|
2078
|
-
/* @__PURE__ */
|
|
2733
|
+
/* @__PURE__ */ jsx137(
|
|
2079
2734
|
"path",
|
|
2080
2735
|
{
|
|
2081
2736
|
fill: fill || color || "currentColor",
|
|
2082
2737
|
d: "M0 16.5V15L6 13.5L7.5 7.5H9L10.5 13.5L16.5 15V16.5L10.5 18L9 24H7.5L6 18L0 16.5Z"
|
|
2083
2738
|
}
|
|
2084
2739
|
),
|
|
2085
|
-
/* @__PURE__ */
|
|
2086
|
-
/* @__PURE__ */
|
|
2087
|
-
/* @__PURE__ */
|
|
2740
|
+
/* @__PURE__ */ jsx137("path", { fill: fill || color || "currentColor", d: "M1.5 3L3.75 0.75L6 3L3.75 5.25L1.5 3Z" }),
|
|
2741
|
+
/* @__PURE__ */ jsx137("path", { fill: fill || color || "currentColor", d: "M22.5 21L19.5 18L16.5 21L19.5 24L22.5 21Z" }),
|
|
2742
|
+
/* @__PURE__ */ jsx137(
|
|
2088
2743
|
"path",
|
|
2089
2744
|
{
|
|
2090
2745
|
fill: fill || color || "currentColor",
|
|
@@ -2094,44 +2749,44 @@ var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
2094
2749
|
] }), StyleAutoFilled_default = IconStyleAutoFilled;
|
|
2095
2750
|
|
|
2096
2751
|
// src/components/Style.tsx
|
|
2097
|
-
import { jsx as
|
|
2098
|
-
var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2099
|
-
/* @__PURE__ */
|
|
2752
|
+
import { jsx as jsx138, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
2753
|
+
var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs70("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2754
|
+
/* @__PURE__ */ jsx138(
|
|
2100
2755
|
"path",
|
|
2101
2756
|
{
|
|
2102
2757
|
fill: stroke || color || "currentColor",
|
|
2103
2758
|
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"
|
|
2104
2759
|
}
|
|
2105
2760
|
),
|
|
2106
|
-
/* @__PURE__ */
|
|
2761
|
+
/* @__PURE__ */ jsx138(
|
|
2107
2762
|
"path",
|
|
2108
2763
|
{
|
|
2109
2764
|
fill: stroke || color || "currentColor",
|
|
2110
2765
|
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"
|
|
2111
2766
|
}
|
|
2112
2767
|
),
|
|
2113
|
-
/* @__PURE__ */
|
|
2768
|
+
/* @__PURE__ */ jsx138(
|
|
2114
2769
|
"path",
|
|
2115
2770
|
{
|
|
2116
2771
|
fill: stroke || color || "currentColor",
|
|
2117
2772
|
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"
|
|
2118
2773
|
}
|
|
2119
2774
|
),
|
|
2120
|
-
/* @__PURE__ */
|
|
2775
|
+
/* @__PURE__ */ jsx138(
|
|
2121
2776
|
"path",
|
|
2122
2777
|
{
|
|
2123
2778
|
fill: stroke || color || "currentColor",
|
|
2124
2779
|
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"
|
|
2125
2780
|
}
|
|
2126
2781
|
),
|
|
2127
|
-
/* @__PURE__ */
|
|
2782
|
+
/* @__PURE__ */ jsx138(
|
|
2128
2783
|
"path",
|
|
2129
2784
|
{
|
|
2130
2785
|
fill: stroke || color || "currentColor",
|
|
2131
2786
|
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"
|
|
2132
2787
|
}
|
|
2133
2788
|
),
|
|
2134
|
-
/* @__PURE__ */
|
|
2789
|
+
/* @__PURE__ */ jsx138(
|
|
2135
2790
|
"path",
|
|
2136
2791
|
{
|
|
2137
2792
|
fill: stroke || color || "currentColor",
|
|
@@ -2142,9 +2797,9 @@ var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2142
2797
|
)
|
|
2143
2798
|
] }), Style_default = IconStyle;
|
|
2144
2799
|
|
|
2145
|
-
// src/components/
|
|
2146
|
-
import { jsx as
|
|
2147
|
-
var
|
|
2800
|
+
// src/components/SwitchOffFilled.tsx
|
|
2801
|
+
import { jsx as jsx139 } from "react/jsx-runtime";
|
|
2802
|
+
var IconSwitchOffFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx139("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx139(
|
|
2148
2803
|
"path",
|
|
2149
2804
|
{
|
|
2150
2805
|
fill: fill || color || "currentColor",
|
|
@@ -2152,12 +2807,24 @@ var IconSwitchOnFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
2152
2807
|
fillRule: "evenodd",
|
|
2153
2808
|
clipRule: "evenodd"
|
|
2154
2809
|
}
|
|
2810
|
+
) }), SwitchOffFilled_default = IconSwitchOffFilled;
|
|
2811
|
+
|
|
2812
|
+
// src/components/SwitchOnFilled.tsx
|
|
2813
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
2814
|
+
var IconSwitchOnFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx140("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx140(
|
|
2815
|
+
"path",
|
|
2816
|
+
{
|
|
2817
|
+
fill: fill || color || "currentColor",
|
|
2818
|
+
d: "M16.5 4.5C20.6421 4.5 24 7.85786 24 12C24 16.1421 20.6421 19.5 16.5 19.5H7.5C3.35786 19.5 0 16.1421 0 12C0 7.85786 3.35786 4.5 7.5 4.5H16.5ZM16.5 7.5C18.9853 7.5 21 9.51472 21 12C21 14.4853 18.9853 16.5 16.5 16.5C14.0147 16.5 12 14.4853 12 12C12 9.51472 14.0147 7.5 16.5 7.5Z",
|
|
2819
|
+
fillRule: "evenodd",
|
|
2820
|
+
clipRule: "evenodd"
|
|
2821
|
+
}
|
|
2155
2822
|
) }), SwitchOnFilled_default = IconSwitchOnFilled;
|
|
2156
2823
|
|
|
2157
2824
|
// src/components/Target.tsx
|
|
2158
|
-
import { jsx as
|
|
2159
|
-
var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2160
|
-
/* @__PURE__ */
|
|
2825
|
+
import { jsx as jsx141, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
2826
|
+
var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs71("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2827
|
+
/* @__PURE__ */ jsx141(
|
|
2161
2828
|
"path",
|
|
2162
2829
|
{
|
|
2163
2830
|
fill: stroke || color || "currentColor",
|
|
@@ -2166,7 +2833,7 @@ var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2166
2833
|
clipRule: "evenodd"
|
|
2167
2834
|
}
|
|
2168
2835
|
),
|
|
2169
|
-
/* @__PURE__ */
|
|
2836
|
+
/* @__PURE__ */ jsx141(
|
|
2170
2837
|
"path",
|
|
2171
2838
|
{
|
|
2172
2839
|
fill: stroke || color || "currentColor",
|
|
@@ -2178,44 +2845,44 @@ var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2178
2845
|
] }), Target_default = IconTarget;
|
|
2179
2846
|
|
|
2180
2847
|
// src/components/TextLogo.tsx
|
|
2181
|
-
import { jsx as
|
|
2182
|
-
var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2183
|
-
/* @__PURE__ */
|
|
2848
|
+
import { jsx as jsx142, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
2849
|
+
var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs72("svg", { fill: "none", viewBox: "0 0 124 40", className, width: width || size, height: height || size, children: [
|
|
2850
|
+
/* @__PURE__ */ jsx142(
|
|
2184
2851
|
"path",
|
|
2185
2852
|
{
|
|
2186
2853
|
fill: fill || color || "currentColor",
|
|
2187
2854
|
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"
|
|
2188
2855
|
}
|
|
2189
2856
|
),
|
|
2190
|
-
/* @__PURE__ */
|
|
2857
|
+
/* @__PURE__ */ jsx142(
|
|
2191
2858
|
"path",
|
|
2192
2859
|
{
|
|
2193
2860
|
fill: fill || color || "currentColor",
|
|
2194
2861
|
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"
|
|
2195
2862
|
}
|
|
2196
2863
|
),
|
|
2197
|
-
/* @__PURE__ */
|
|
2864
|
+
/* @__PURE__ */ jsx142(
|
|
2198
2865
|
"path",
|
|
2199
2866
|
{
|
|
2200
2867
|
fill: fill || color || "currentColor",
|
|
2201
2868
|
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"
|
|
2202
2869
|
}
|
|
2203
2870
|
),
|
|
2204
|
-
/* @__PURE__ */
|
|
2871
|
+
/* @__PURE__ */ jsx142(
|
|
2205
2872
|
"path",
|
|
2206
2873
|
{
|
|
2207
2874
|
fill: fill || color || "currentColor",
|
|
2208
2875
|
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"
|
|
2209
2876
|
}
|
|
2210
2877
|
),
|
|
2211
|
-
/* @__PURE__ */
|
|
2878
|
+
/* @__PURE__ */ jsx142(
|
|
2212
2879
|
"path",
|
|
2213
2880
|
{
|
|
2214
2881
|
fill: fill || color || "currentColor",
|
|
2215
2882
|
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"
|
|
2216
2883
|
}
|
|
2217
2884
|
),
|
|
2218
|
-
/* @__PURE__ */
|
|
2885
|
+
/* @__PURE__ */ jsx142(
|
|
2219
2886
|
"path",
|
|
2220
2887
|
{
|
|
2221
2888
|
fill: fill || color || "currentColor",
|
|
@@ -2224,17 +2891,29 @@ var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2224
2891
|
)
|
|
2225
2892
|
] }), TextLogo_default = IconTextLogo;
|
|
2226
2893
|
|
|
2894
|
+
// src/components/Tips.tsx
|
|
2895
|
+
import { jsx as jsx143 } from "react/jsx-runtime";
|
|
2896
|
+
var IconTips = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx143("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx143(
|
|
2897
|
+
"path",
|
|
2898
|
+
{
|
|
2899
|
+
fill: stroke || color || "currentColor",
|
|
2900
|
+
d: "M7.5 17.25V21.75L9.75 24H14.25L16.5 21.75V17.25L18.3594 15.3906C20.0501 13.6999 21 11.4021 21 9.01103C21 4.04047 16.9706 0 12 0C7.02944 0 3 4.04047 3 9.01103C3 11.4021 3.94986 13.6999 5.64061 15.3906L7.5 17.25ZM14.25 20.818V18H9.75V20.818L10.682 21.75H13.318L14.25 20.818ZM14.818 15.75H13.125V9H10.875V15.75H9.18198L7.2316 13.7996C5.96366 12.5317 5.25 10.8066 5.25 9.01103C5.25 5.27952 8.27567 2.25 12 2.25C15.7243 2.25 18.75 5.27952 18.75 9.01103C18.75 10.8066 18.0363 12.5317 16.7684 13.7996L14.818 15.75Z",
|
|
2901
|
+
fillRule: "evenodd",
|
|
2902
|
+
clipRule: "evenodd"
|
|
2903
|
+
}
|
|
2904
|
+
) }), Tips_default = IconTips;
|
|
2905
|
+
|
|
2227
2906
|
// src/components/ToolsFilled.tsx
|
|
2228
|
-
import { jsx as
|
|
2229
|
-
var IconToolsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2230
|
-
/* @__PURE__ */
|
|
2907
|
+
import { jsx as jsx144, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
2908
|
+
var IconToolsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs73("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2909
|
+
/* @__PURE__ */ jsx144(
|
|
2231
2910
|
"path",
|
|
2232
2911
|
{
|
|
2233
2912
|
fill: fill || color || "currentColor",
|
|
2234
2913
|
d: "M24 12L19.5 16.5L15 15L9 9L7.5 4.5L12 0L16.5 1.5L22.5 7.5L24 12Z"
|
|
2235
2914
|
}
|
|
2236
2915
|
),
|
|
2237
|
-
/* @__PURE__ */
|
|
2916
|
+
/* @__PURE__ */ jsx144(
|
|
2238
2917
|
"path",
|
|
2239
2918
|
{
|
|
2240
2919
|
fill: fill || color || "currentColor",
|
|
@@ -2244,8 +2923,8 @@ var IconToolsFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
2244
2923
|
] }), ToolsFilled_default = IconToolsFilled;
|
|
2245
2924
|
|
|
2246
2925
|
// src/components/Tools.tsx
|
|
2247
|
-
import { jsx as
|
|
2248
|
-
var IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2926
|
+
import { jsx as jsx145 } from "react/jsx-runtime";
|
|
2927
|
+
var IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx145("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx145(
|
|
2249
2928
|
"path",
|
|
2250
2929
|
{
|
|
2251
2930
|
stroke: stroke || color || "currentColor",
|
|
@@ -2254,9 +2933,33 @@ var IconTools = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2254
2933
|
}
|
|
2255
2934
|
) }), Tools_default = IconTools;
|
|
2256
2935
|
|
|
2936
|
+
// src/components/UpFilled.tsx
|
|
2937
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
2938
|
+
var IconUpFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx146("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx146(
|
|
2939
|
+
"path",
|
|
2940
|
+
{
|
|
2941
|
+
fill: fill || color || "currentColor",
|
|
2942
|
+
d: "M12 0C5.37258 5.79387e-07 -5.79387e-07 5.37258 0 12C5.79387e-07 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 -5.79387e-07 12 0ZM6 12H10.5L10.5 19.5H13.5V12L18 12V10.5L12 4.5L6 10.5V12Z",
|
|
2943
|
+
fillRule: "evenodd",
|
|
2944
|
+
clipRule: "evenodd"
|
|
2945
|
+
}
|
|
2946
|
+
) }), UpFilled_default = IconUpFilled;
|
|
2947
|
+
|
|
2948
|
+
// src/components/UpleftFilled.tsx
|
|
2949
|
+
import { jsx as jsx147 } from "react/jsx-runtime";
|
|
2950
|
+
var IconUpleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx147("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx147(
|
|
2951
|
+
"path",
|
|
2952
|
+
{
|
|
2953
|
+
fill: fill || color || "currentColor",
|
|
2954
|
+
d: "M0 12C7.90312e-08 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 -7.90312e-08 12 0C5.37258 7.90312e-08 -7.90312e-08 5.37258 0 12ZM16.1893 18.3107L10.9393 13.0607L7.87498 16.125L6.74998 15V6.75H15L16.125 7.875L13.0606 10.9393L18.3106 16.1893L16.1893 18.3107Z",
|
|
2955
|
+
fillRule: "evenodd",
|
|
2956
|
+
clipRule: "evenodd"
|
|
2957
|
+
}
|
|
2958
|
+
) }), UpleftFilled_default = IconUpleftFilled;
|
|
2959
|
+
|
|
2257
2960
|
// src/components/Uploadfiles.tsx
|
|
2258
|
-
import { jsx as
|
|
2259
|
-
var IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2961
|
+
import { jsx as jsx148 } from "react/jsx-runtime";
|
|
2962
|
+
var IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx148("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx148(
|
|
2260
2963
|
"path",
|
|
2261
2964
|
{
|
|
2262
2965
|
fill: stroke || color || "currentColor",
|
|
@@ -2264,9 +2967,21 @@ var IconUploadfiles = ({ size, width, height, color, className, fill, stroke })
|
|
|
2264
2967
|
}
|
|
2265
2968
|
) }), Uploadfiles_default = IconUploadfiles;
|
|
2266
2969
|
|
|
2970
|
+
// src/components/UprightFilled.tsx
|
|
2971
|
+
import { jsx as jsx149 } from "react/jsx-runtime";
|
|
2972
|
+
var IconUprightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx149("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx149(
|
|
2973
|
+
"path",
|
|
2974
|
+
{
|
|
2975
|
+
fill: fill || color || "currentColor",
|
|
2976
|
+
d: "M12 0C5.37258 5.79387e-07 -5.79387e-07 5.37258 0 12C5.79387e-07 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 -5.79387e-07 12 0ZM5.68934 16.1893L10.9393 10.9393L7.875 7.87498L9 6.74998L17.25 6.74998L17.25 15L16.125 16.125L13.0607 13.0606L7.81066 18.3106L5.68934 16.1893Z",
|
|
2977
|
+
fillRule: "evenodd",
|
|
2978
|
+
clipRule: "evenodd"
|
|
2979
|
+
}
|
|
2980
|
+
) }), UprightFilled_default = IconUprightFilled;
|
|
2981
|
+
|
|
2267
2982
|
// src/components/Userfeedback.tsx
|
|
2268
|
-
import { jsx as
|
|
2269
|
-
var IconUserfeedback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2983
|
+
import { jsx as jsx150 } from "react/jsx-runtime";
|
|
2984
|
+
var IconUserfeedback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx150("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx150(
|
|
2270
2985
|
"path",
|
|
2271
2986
|
{
|
|
2272
2987
|
fill: stroke || color || "currentColor",
|
|
@@ -2277,23 +2992,23 @@ var IconUserfeedback = ({ size, width, height, color, className, fill, stroke })
|
|
|
2277
2992
|
) }), Userfeedback_default = IconUserfeedback;
|
|
2278
2993
|
|
|
2279
2994
|
// src/components/VideoGeneration.tsx
|
|
2280
|
-
import { jsx as
|
|
2281
|
-
var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2282
|
-
/* @__PURE__ */
|
|
2995
|
+
import { jsx as jsx151, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
2996
|
+
var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs74("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2997
|
+
/* @__PURE__ */ jsx151(
|
|
2283
2998
|
"path",
|
|
2284
2999
|
{
|
|
2285
3000
|
fill: stroke || color || "currentColor",
|
|
2286
3001
|
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.25ZM12 6.75V9.93164L11.25 9.18164V14.8184L14.0684 12H17.25L11.25 18H9V6H11.25L12 6.75Z"
|
|
2287
3002
|
}
|
|
2288
3003
|
),
|
|
2289
|
-
/* @__PURE__ */
|
|
3004
|
+
/* @__PURE__ */ jsx151(
|
|
2290
3005
|
"path",
|
|
2291
3006
|
{
|
|
2292
3007
|
fill: stroke || color || "currentColor",
|
|
2293
3008
|
d: "M13.5 4.5L17.25 3.75L18 0H19.5L20.25 3.75L24 4.5V6L20.25 6.75L19.5 10.5H18L17.25 6.75L13.5 6V4.5Z"
|
|
2294
3009
|
}
|
|
2295
3010
|
),
|
|
2296
|
-
/* @__PURE__ */
|
|
3011
|
+
/* @__PURE__ */ jsx151(
|
|
2297
3012
|
"path",
|
|
2298
3013
|
{
|
|
2299
3014
|
fill: stroke || color || "currentColor",
|
|
@@ -2305,10 +3020,10 @@ var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke
|
|
|
2305
3020
|
] }), VideoGeneration_default = IconVideoGeneration;
|
|
2306
3021
|
|
|
2307
3022
|
// src/components/VideoLength.tsx
|
|
2308
|
-
import { jsx as
|
|
2309
|
-
var IconVideoLength = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2310
|
-
/* @__PURE__ */
|
|
2311
|
-
/* @__PURE__ */
|
|
3023
|
+
import { jsx as jsx152, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
3024
|
+
var IconVideoLength = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs75("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3025
|
+
/* @__PURE__ */ jsx152("path", { fill: stroke || color || "currentColor", d: "M10.875 9V15H13.125V9H10.875Z" }),
|
|
3026
|
+
/* @__PURE__ */ jsx152(
|
|
2312
3027
|
"path",
|
|
2313
3028
|
{
|
|
2314
3029
|
fill: stroke || color || "currentColor",
|
|
@@ -2320,9 +3035,9 @@ var IconVideoLength = ({ size, width, height, color, className, fill, stroke })
|
|
|
2320
3035
|
] }), VideoLength_default = IconVideoLength;
|
|
2321
3036
|
|
|
2322
3037
|
// src/components/Videogenerate.tsx
|
|
2323
|
-
import { jsx as
|
|
2324
|
-
var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2325
|
-
/* @__PURE__ */
|
|
3038
|
+
import { jsx as jsx153, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
3039
|
+
var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs76("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3040
|
+
/* @__PURE__ */ jsx153(
|
|
2326
3041
|
"path",
|
|
2327
3042
|
{
|
|
2328
3043
|
fill: stroke || color || "currentColor",
|
|
@@ -2331,7 +3046,7 @@ var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }
|
|
|
2331
3046
|
clipRule: "evenodd"
|
|
2332
3047
|
}
|
|
2333
3048
|
),
|
|
2334
|
-
/* @__PURE__ */
|
|
3049
|
+
/* @__PURE__ */ jsx153(
|
|
2335
3050
|
"path",
|
|
2336
3051
|
{
|
|
2337
3052
|
fill: stroke || color || "currentColor",
|
|
@@ -2343,8 +3058,8 @@ var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }
|
|
|
2343
3058
|
] }), Videogenerate_default = IconVideogenerate;
|
|
2344
3059
|
|
|
2345
3060
|
// src/components/Visualstyles.tsx
|
|
2346
|
-
import { jsx as
|
|
2347
|
-
var IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3061
|
+
import { jsx as jsx154 } from "react/jsx-runtime";
|
|
3062
|
+
var IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx154("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx154(
|
|
2348
3063
|
"path",
|
|
2349
3064
|
{
|
|
2350
3065
|
fill: stroke || color || "currentColor",
|
|
@@ -2355,9 +3070,9 @@ var IconVisualstyles = ({ size, width, height, color, className, fill, stroke })
|
|
|
2355
3070
|
) }), Visualstyles_default = IconVisualstyles;
|
|
2356
3071
|
|
|
2357
3072
|
// src/components/Volume.tsx
|
|
2358
|
-
import { jsx as
|
|
2359
|
-
var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2360
|
-
/* @__PURE__ */
|
|
3073
|
+
import { jsx as jsx155, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
3074
|
+
var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs77("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3075
|
+
/* @__PURE__ */ jsx155(
|
|
2361
3076
|
"path",
|
|
2362
3077
|
{
|
|
2363
3078
|
fill: stroke || color || "currentColor",
|
|
@@ -2366,14 +3081,14 @@ var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2366
3081
|
clipRule: "evenodd"
|
|
2367
3082
|
}
|
|
2368
3083
|
),
|
|
2369
|
-
/* @__PURE__ */
|
|
3084
|
+
/* @__PURE__ */ jsx155(
|
|
2370
3085
|
"path",
|
|
2371
3086
|
{
|
|
2372
3087
|
fill: stroke || color || "currentColor",
|
|
2373
3088
|
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"
|
|
2374
3089
|
}
|
|
2375
3090
|
),
|
|
2376
|
-
/* @__PURE__ */
|
|
3091
|
+
/* @__PURE__ */ jsx155(
|
|
2377
3092
|
"path",
|
|
2378
3093
|
{
|
|
2379
3094
|
fill: stroke || color || "currentColor",
|
|
@@ -2381,18 +3096,70 @@ var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2381
3096
|
}
|
|
2382
3097
|
)
|
|
2383
3098
|
] }), Volume_default = IconVolume;
|
|
3099
|
+
|
|
3100
|
+
// src/components/Withdrawgame.tsx
|
|
3101
|
+
import { jsx as jsx156 } from "react/jsx-runtime";
|
|
3102
|
+
var IconWithdrawgame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx156("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx156(
|
|
3103
|
+
"path",
|
|
3104
|
+
{
|
|
3105
|
+
fill: stroke || color || "currentColor",
|
|
3106
|
+
d: "M9.83506e-08 14.25L0 16.5L7.5 24L15 16.5V14.25L8.625 14.25L8.625 5.25L22.5 5.25V3L6.375 3L6.375 14.25H9.83506e-08ZM11.818 16.5L7.5 20.818L3.18198 16.5H11.818Z",
|
|
3107
|
+
fillRule: "evenodd",
|
|
3108
|
+
clipRule: "evenodd"
|
|
3109
|
+
}
|
|
3110
|
+
) }), Withdrawgame_default = IconWithdrawgame;
|
|
3111
|
+
|
|
3112
|
+
// src/components/Zoomin.tsx
|
|
3113
|
+
import { jsx as jsx157, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
3114
|
+
var IconZoomin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs78("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3115
|
+
/* @__PURE__ */ jsx157(
|
|
3116
|
+
"path",
|
|
3117
|
+
{
|
|
3118
|
+
fill: stroke || color || "currentColor",
|
|
3119
|
+
d: "M11.625 11.625H15V9.375H11.625V6H9.375V9.375H6V11.625H9.375V15H11.625V11.625Z"
|
|
3120
|
+
}
|
|
3121
|
+
),
|
|
3122
|
+
/* @__PURE__ */ jsx157(
|
|
3123
|
+
"path",
|
|
3124
|
+
{
|
|
3125
|
+
fill: stroke || color || "currentColor",
|
|
3126
|
+
d: "M21 10.5C21 12.9942 20.1303 15.2854 18.6776 17.0866L23.9705 22.3795L22.3795 23.9705L17.0866 18.6776C15.2854 20.1303 12.9942 21 10.5 21C4.70101 21 0 16.299 0 10.5C0 4.70101 4.70101 0 10.5 0C16.299 0 21 4.70101 21 10.5ZM18.75 10.5C18.75 15.0563 15.0563 18.75 10.5 18.75C5.94365 18.75 2.25 15.0563 2.25 10.5C2.25 5.94365 5.94365 2.25 10.5 2.25C15.0563 2.25 18.75 5.94365 18.75 10.5Z",
|
|
3127
|
+
fillRule: "evenodd",
|
|
3128
|
+
clipRule: "evenodd"
|
|
3129
|
+
}
|
|
3130
|
+
)
|
|
3131
|
+
] }), Zoomin_default = IconZoomin;
|
|
3132
|
+
|
|
3133
|
+
// src/components/Zoomout.tsx
|
|
3134
|
+
import { jsx as jsx158, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
3135
|
+
var IconZoomout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs79("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3136
|
+
/* @__PURE__ */ jsx158("path", { fill: stroke || color || "currentColor", d: "M15 11.625H6V9.375H15V11.625Z" }),
|
|
3137
|
+
/* @__PURE__ */ jsx158(
|
|
3138
|
+
"path",
|
|
3139
|
+
{
|
|
3140
|
+
fill: stroke || color || "currentColor",
|
|
3141
|
+
d: "M18.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 21C12.9942 21 15.2854 20.1303 17.0866 18.6776L22.3795 23.9705L23.9705 22.3795L18.6776 17.0866ZM10.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",
|
|
3142
|
+
fillRule: "evenodd",
|
|
3143
|
+
clipRule: "evenodd"
|
|
3144
|
+
}
|
|
3145
|
+
)
|
|
3146
|
+
] }), Zoomout_default = IconZoomout;
|
|
2384
3147
|
export {
|
|
3148
|
+
Aboutus_default as IconAboutus,
|
|
2385
3149
|
Add_default as IconAdd,
|
|
2386
3150
|
AddSceneChoice_default as IconAddSceneChoice,
|
|
2387
3151
|
Agreements_default as IconAgreements,
|
|
2388
3152
|
Aiwriting_default as IconAiwriting,
|
|
2389
3153
|
AngleDown_default as IconAngleDown,
|
|
3154
|
+
Announcement_default as IconAnnouncement,
|
|
2390
3155
|
Artboard_default as IconArtboard,
|
|
2391
3156
|
Assets_default as IconAssets,
|
|
2392
3157
|
AssetsFilled_default as IconAssetsFilled,
|
|
3158
|
+
Backtoprojects_default as IconBacktoprojects,
|
|
2393
3159
|
Backward_default as IconBackward,
|
|
2394
3160
|
BatchShots_default as IconBatchShots,
|
|
2395
3161
|
Canvasmode_default as IconCanvasmode,
|
|
3162
|
+
Changeprofilephoto_default as IconChangeprofilephoto,
|
|
2396
3163
|
Chaptercollapse_default as IconChaptercollapse,
|
|
2397
3164
|
Chapterexpand_default as IconChapterexpand,
|
|
2398
3165
|
Check_default as IconCheck,
|
|
@@ -2403,19 +3170,34 @@ export {
|
|
|
2403
3170
|
Cursor_default as IconCursor,
|
|
2404
3171
|
Delete_default as IconDelete,
|
|
2405
3172
|
DeleteSceneChoice_default as IconDeleteSceneChoice,
|
|
3173
|
+
DownFilled_default as IconDownFilled,
|
|
3174
|
+
DownleftFilled_default as IconDownleftFilled,
|
|
2406
3175
|
Download_default as IconDownload,
|
|
3176
|
+
DownrightFilled_default as IconDownrightFilled,
|
|
2407
3177
|
DraghandleFilled_default as IconDraghandleFilled,
|
|
2408
3178
|
FeedbackFailFilled_default as IconFeedbackFailFilled,
|
|
2409
3179
|
FeedbackPendingFilled_default as IconFeedbackPendingFilled,
|
|
2410
3180
|
FeedbackProblem_default as IconFeedbackProblem,
|
|
2411
3181
|
FeedbackProblemFilled_default as IconFeedbackProblemFilled,
|
|
3182
|
+
FiletypeImageFilled_default as IconFiletypeImageFilled,
|
|
2412
3183
|
FiletypePdfFilled_default as IconFiletypePdfFilled,
|
|
2413
3184
|
FiletypePdfLumiFilled_default as IconFiletypePdfLumiFilled,
|
|
3185
|
+
FiletypeTxtFilled_default as IconFiletypeTxtFilled,
|
|
3186
|
+
FiletypeTxtLumiFilled_default as IconFiletypeTxtLumiFilled,
|
|
3187
|
+
FiletypeWordFilled_default as IconFiletypeWordFilled,
|
|
3188
|
+
FiletypeWordLumiFilled_default as IconFiletypeWordLumiFilled,
|
|
3189
|
+
FoldedMenu_default as IconFoldedMenu,
|
|
3190
|
+
Game_default as IconGame,
|
|
3191
|
+
GameFilled_default as IconGameFilled,
|
|
3192
|
+
Gamebackup_default as IconGamebackup,
|
|
3193
|
+
GamebackupFilled_default as IconGamebackupFilled,
|
|
2414
3194
|
GamecontrolChoice_default as IconGamecontrolChoice,
|
|
2415
3195
|
GamecontrolGameplay_default as IconGamecontrolGameplay,
|
|
2416
3196
|
GamecontrolLinear_default as IconGamecontrolLinear,
|
|
3197
|
+
GamecontrolNone_default as IconGamecontrolNone,
|
|
2417
3198
|
Gamelanguage_default as IconGamelanguage,
|
|
2418
3199
|
Gamepreview_default as IconGamepreview,
|
|
3200
|
+
Gameui_default as IconGameui,
|
|
2419
3201
|
GenerateFilled_default as IconGenerateFilled,
|
|
2420
3202
|
GenerateFrameStart_default as IconGenerateFrameStart,
|
|
2421
3203
|
GenerateFrameStart2End_default as IconGenerateFrameStart2End,
|
|
@@ -2435,42 +3217,60 @@ export {
|
|
|
2435
3217
|
Help_default as IconHelp,
|
|
2436
3218
|
Homepage_default as IconHomepage,
|
|
2437
3219
|
HomepageFilled_default as IconHomepageFilled,
|
|
3220
|
+
Hotareacenter_default as IconHotareacenter,
|
|
2438
3221
|
ImageGeneration_default as IconImageGeneration,
|
|
2439
3222
|
ImageLoadFailedFilled_default as IconImageLoadFailedFilled,
|
|
2440
3223
|
Info_default as IconInfo,
|
|
2441
3224
|
Invitecode_default as IconInvitecode,
|
|
3225
|
+
LeftFilled_default as IconLeftFilled,
|
|
2442
3226
|
Loading_default as IconLoading,
|
|
2443
3227
|
Login_default as IconLogin,
|
|
2444
3228
|
Logout_default as IconLogout,
|
|
2445
3229
|
ModelDeepmindFilled_default as IconModelDeepmindFilled,
|
|
2446
3230
|
ModelGeminiFilled_default as IconModelGeminiFilled,
|
|
2447
3231
|
ModelNanobananaLogoNomoFilled_default as IconModelNanobananaLogoNomoFilled,
|
|
3232
|
+
ModelOpenaiFilled_default as IconModelOpenaiFilled,
|
|
2448
3233
|
ModelSeedFilled_default as IconModelSeedFilled,
|
|
2449
3234
|
ModelSoraFilled_default as IconModelSoraFilled,
|
|
2450
3235
|
Models_default as IconModels,
|
|
2451
3236
|
More_default as IconMore,
|
|
3237
|
+
MoreCollapse_default as IconMoreCollapse,
|
|
3238
|
+
MoreHorizontal_default as IconMoreHorizontal,
|
|
3239
|
+
MoreShowed_default as IconMoreShowed,
|
|
2452
3240
|
Moresettings_default as IconMoresettings,
|
|
3241
|
+
MouseDrag_default as IconMouseDrag,
|
|
3242
|
+
MouseMove_default as IconMouseMove,
|
|
3243
|
+
MouseNumberchange_default as IconMouseNumberchange,
|
|
2453
3244
|
Musicassets_default as IconMusicassets,
|
|
2454
3245
|
Mute_default as IconMute,
|
|
2455
3246
|
Next_default as IconNext,
|
|
2456
3247
|
Nextscene_default as IconNextscene,
|
|
2457
3248
|
Oneclickgenerate_default as IconOneclickgenerate,
|
|
2458
3249
|
Opendemo_default as IconOpendemo,
|
|
3250
|
+
OppsFilled_default as IconOppsFilled,
|
|
3251
|
+
OptionalcheckedFilled_default as IconOptionalcheckedFilled,
|
|
3252
|
+
Optionaluncheck_default as IconOptionaluncheck,
|
|
3253
|
+
Packagegame_default as IconPackagegame,
|
|
2459
3254
|
PageError_default as IconPageError,
|
|
3255
|
+
Parameters_default as IconParameters,
|
|
3256
|
+
Pause_default as IconPause,
|
|
2460
3257
|
Pencil_default as IconPencil,
|
|
2461
3258
|
Pick_default as IconPick,
|
|
2462
3259
|
PickedFilled_default as IconPickedFilled,
|
|
2463
3260
|
PlanFilled_default as IconPlanFilled,
|
|
3261
|
+
Play_default as IconPlay,
|
|
2464
3262
|
PlayFilled_default as IconPlayFilled,
|
|
2465
3263
|
Previouscene_default as IconPreviouscene,
|
|
2466
3264
|
Problem_default as IconProblem,
|
|
2467
3265
|
ProblemNoticeFilled_default as IconProblemNoticeFilled,
|
|
3266
|
+
Publish_default as IconPublish,
|
|
2468
3267
|
Ratio_default as IconRatio,
|
|
2469
3268
|
Ratio11_default as IconRatio11,
|
|
2470
3269
|
Ratio169_default as IconRatio169,
|
|
2471
3270
|
Ratio916_default as IconRatio916,
|
|
2472
3271
|
ReEdit_default as IconReEdit,
|
|
2473
3272
|
Regenerate_default as IconRegenerate,
|
|
3273
|
+
RightFilled_default as IconRightFilled,
|
|
2474
3274
|
SceneNext_default as IconSceneNext,
|
|
2475
3275
|
Scriptmode_default as IconScriptmode,
|
|
2476
3276
|
Share_default as IconShare,
|
|
@@ -2482,17 +3282,25 @@ export {
|
|
|
2482
3282
|
Storyboard_default as IconStoryboard,
|
|
2483
3283
|
Style_default as IconStyle,
|
|
2484
3284
|
StyleAutoFilled_default as IconStyleAutoFilled,
|
|
3285
|
+
SwitchOffFilled_default as IconSwitchOffFilled,
|
|
2485
3286
|
SwitchOnFilled_default as IconSwitchOnFilled,
|
|
2486
3287
|
Target_default as IconTarget,
|
|
2487
3288
|
TextLogo_default as IconTextLogo,
|
|
3289
|
+
Tips_default as IconTips,
|
|
2488
3290
|
Tools_default as IconTools,
|
|
2489
3291
|
ToolsFilled_default as IconToolsFilled,
|
|
3292
|
+
UpFilled_default as IconUpFilled,
|
|
3293
|
+
UpleftFilled_default as IconUpleftFilled,
|
|
2490
3294
|
Uploadfiles_default as IconUploadfiles,
|
|
2491
3295
|
Uploadimage_default as IconUploadimage,
|
|
3296
|
+
UprightFilled_default as IconUprightFilled,
|
|
2492
3297
|
Userfeedback_default as IconUserfeedback,
|
|
2493
3298
|
VideoGeneration_default as IconVideoGeneration,
|
|
2494
3299
|
VideoLength_default as IconVideoLength,
|
|
2495
3300
|
Videogenerate_default as IconVideogenerate,
|
|
2496
3301
|
Visualstyles_default as IconVisualstyles,
|
|
2497
|
-
Volume_default as IconVolume
|
|
3302
|
+
Volume_default as IconVolume,
|
|
3303
|
+
Withdrawgame_default as IconWithdrawgame,
|
|
3304
|
+
Zoomin_default as IconZoomin,
|
|
3305
|
+
Zoomout_default as IconZoomout
|
|
2498
3306
|
};
|