@yoroll/react-icon 0.0.7 → 0.0.8
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 +481 -332
- package/dist/index.iife.js +468 -330
- package/dist/index.iife.min.js +3 -3
- package/dist/index.js +563 -403
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.js +1 -1
- package/dist/types/components/DeleteSceneChoice.d.ts +4 -0
- package/dist/types/components/FiletypePdfLumiFilled.d.ts +4 -0
- package/dist/types/components/GamecontrolChoice.d.ts +4 -0
- package/dist/types/components/GamecontrolGameplay.d.ts +4 -0
- package/dist/types/components/GamecontrolLinear.d.ts +4 -0
- package/dist/types/components/Handtool.d.ts +4 -0
- package/dist/types/components/ImageLoadFailedFilled.d.ts +4 -0
- package/dist/types/components/Invitecode.d.ts +4 -0
- package/dist/types/components/PageError.d.ts +4 -0
- package/dist/types/components/Pick.d.ts +4 -0
- package/dist/types/components/ProblemNoticeFilled.d.ts +4 -0
- package/dist/types/components/SwitchOnFilled.d.ts +4 -0
- package/dist/types/components/Target.d.ts +4 -0
- package/dist/types/components/index.d.ts +13 -2
- package/package.json +1 -1
- package/dist/types/components/ImageLoadFailed.d.ts +0 -4
- package/dist/types/components/SwitchOn.d.ts +0 -4
package/dist/index.js
CHANGED
|
@@ -237,11 +237,26 @@ var IconCursor = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
237
237
|
}
|
|
238
238
|
) }), Cursor_default = IconCursor;
|
|
239
239
|
|
|
240
|
-
// src/components/
|
|
240
|
+
// src/components/DeleteSceneChoice.tsx
|
|
241
241
|
import { jsx as jsx20, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
242
|
-
var
|
|
243
|
-
/* @__PURE__ */ jsx20("path", { fill: stroke || color || "currentColor", d: "
|
|
242
|
+
var IconDeleteSceneChoice = ({ 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: [
|
|
243
|
+
/* @__PURE__ */ jsx20("path", { fill: stroke || color || "currentColor", d: "M18 10.875H6V13.125H18V10.875Z" }),
|
|
244
244
|
/* @__PURE__ */ jsx20(
|
|
245
|
+
"path",
|
|
246
|
+
{
|
|
247
|
+
fill: stroke || color || "currentColor",
|
|
248
|
+
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 12ZM21.75 12C21.75 17.3848 17.3848 21.75 12 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 12Z",
|
|
249
|
+
fillRule: "evenodd",
|
|
250
|
+
clipRule: "evenodd"
|
|
251
|
+
}
|
|
252
|
+
)
|
|
253
|
+
] }), DeleteSceneChoice_default = IconDeleteSceneChoice;
|
|
254
|
+
|
|
255
|
+
// src/components/Delete.tsx
|
|
256
|
+
import { jsx as jsx21, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
257
|
+
var IconDelete = ({ 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: [
|
|
258
|
+
/* @__PURE__ */ jsx21("path", { fill: stroke || color || "currentColor", d: "M13.125 17.25V11.25H10.875V17.25H13.125Z" }),
|
|
259
|
+
/* @__PURE__ */ jsx21(
|
|
245
260
|
"path",
|
|
246
261
|
{
|
|
247
262
|
fill: stroke || color || "currentColor",
|
|
@@ -253,16 +268,16 @@ var IconDelete = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
253
268
|
] }), Delete_default = IconDelete;
|
|
254
269
|
|
|
255
270
|
// src/components/Download.tsx
|
|
256
|
-
import { jsx as
|
|
257
|
-
var IconDownload = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
258
|
-
/* @__PURE__ */
|
|
271
|
+
import { jsx as jsx22, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
272
|
+
var IconDownload = ({ 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: [
|
|
273
|
+
/* @__PURE__ */ jsx22(
|
|
259
274
|
"path",
|
|
260
275
|
{
|
|
261
276
|
fill: stroke || color || "currentColor",
|
|
262
277
|
d: "M22.5 24L22.5 13.5H20.25V21.75L3.75 21.75L3.75 13.5H1.5L1.5 24L22.5 24Z"
|
|
263
278
|
}
|
|
264
279
|
),
|
|
265
|
-
/* @__PURE__ */
|
|
280
|
+
/* @__PURE__ */ jsx22(
|
|
266
281
|
"path",
|
|
267
282
|
{
|
|
268
283
|
fill: stroke || color || "currentColor",
|
|
@@ -274,8 +289,8 @@ var IconDownload = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
274
289
|
] }), Download_default = IconDownload;
|
|
275
290
|
|
|
276
291
|
// src/components/FeedbackFailFilled.tsx
|
|
277
|
-
import { jsx as
|
|
278
|
-
var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
292
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
293
|
+
var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx23("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx23(
|
|
279
294
|
"path",
|
|
280
295
|
{
|
|
281
296
|
fill: fill || color || "currentColor",
|
|
@@ -286,8 +301,8 @@ var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, str
|
|
|
286
301
|
) }), FeedbackFailFilled_default = IconFeedbackFailFilled;
|
|
287
302
|
|
|
288
303
|
// src/components/FeedbackPendingFilled.tsx
|
|
289
|
-
import { jsx as
|
|
290
|
-
var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
304
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
305
|
+
var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx24("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx24(
|
|
291
306
|
"path",
|
|
292
307
|
{
|
|
293
308
|
fill: fill || color || "currentColor",
|
|
@@ -298,8 +313,8 @@ var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill,
|
|
|
298
313
|
) }), FeedbackPendingFilled_default = IconFeedbackPendingFilled;
|
|
299
314
|
|
|
300
315
|
// src/components/FeedbackProblemFilled.tsx
|
|
301
|
-
import { jsx as
|
|
302
|
-
var IconFeedbackProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
316
|
+
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
317
|
+
var IconFeedbackProblemFilled = ({ 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(
|
|
303
318
|
"path",
|
|
304
319
|
{
|
|
305
320
|
fill: fill || color || "currentColor",
|
|
@@ -310,30 +325,30 @@ var IconFeedbackProblemFilled = ({ size, width, height, color, className, fill,
|
|
|
310
325
|
) }), FeedbackProblemFilled_default = IconFeedbackProblemFilled;
|
|
311
326
|
|
|
312
327
|
// src/components/FeedbackProblem.tsx
|
|
313
|
-
import { jsx as
|
|
314
|
-
var IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
315
|
-
/* @__PURE__ */
|
|
328
|
+
import { jsx as jsx26, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
329
|
+
var IconFeedbackProblem = ({ 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: [
|
|
330
|
+
/* @__PURE__ */ jsx26(
|
|
316
331
|
"path",
|
|
317
332
|
{
|
|
318
333
|
fill: stroke || color || "currentColor",
|
|
319
334
|
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"
|
|
320
335
|
}
|
|
321
336
|
),
|
|
322
|
-
/* @__PURE__ */
|
|
337
|
+
/* @__PURE__ */ jsx26(
|
|
323
338
|
"path",
|
|
324
339
|
{
|
|
325
340
|
fill: stroke || color || "currentColor",
|
|
326
341
|
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"
|
|
327
342
|
}
|
|
328
343
|
),
|
|
329
|
-
/* @__PURE__ */
|
|
344
|
+
/* @__PURE__ */ jsx26(
|
|
330
345
|
"path",
|
|
331
346
|
{
|
|
332
347
|
fill: stroke || color || "currentColor",
|
|
333
348
|
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"
|
|
334
349
|
}
|
|
335
350
|
),
|
|
336
|
-
/* @__PURE__ */
|
|
351
|
+
/* @__PURE__ */ jsx26(
|
|
337
352
|
"path",
|
|
338
353
|
{
|
|
339
354
|
fill: stroke || color || "currentColor",
|
|
@@ -345,9 +360,9 @@ var IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke
|
|
|
345
360
|
] }), FeedbackProblem_default = IconFeedbackProblem;
|
|
346
361
|
|
|
347
362
|
// src/components/FiletypePdfFilled.tsx
|
|
348
|
-
import { jsx as
|
|
349
|
-
var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
350
|
-
/* @__PURE__ */
|
|
363
|
+
import { jsx as jsx27, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
364
|
+
var IconFiletypePdfFilled = ({ 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: [
|
|
365
|
+
/* @__PURE__ */ jsx27("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx27(
|
|
351
366
|
"path",
|
|
352
367
|
{
|
|
353
368
|
fill: "#FF3E4C",
|
|
@@ -355,14 +370,14 @@ var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stro
|
|
|
355
370
|
style: { opacity: 0.3 }
|
|
356
371
|
}
|
|
357
372
|
) }),
|
|
358
|
-
/* @__PURE__ */
|
|
373
|
+
/* @__PURE__ */ jsx27(
|
|
359
374
|
"path",
|
|
360
375
|
{
|
|
361
376
|
fill: "#FF3E4C",
|
|
362
377
|
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"
|
|
363
378
|
}
|
|
364
379
|
),
|
|
365
|
-
/* @__PURE__ */
|
|
380
|
+
/* @__PURE__ */ jsx27(
|
|
366
381
|
"path",
|
|
367
382
|
{
|
|
368
383
|
fill: "#FF3E4C",
|
|
@@ -371,9 +386,72 @@ var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stro
|
|
|
371
386
|
)
|
|
372
387
|
] }), FiletypePdfFilled_default = IconFiletypePdfFilled;
|
|
373
388
|
|
|
389
|
+
// src/components/FiletypePdfLumiFilled.tsx
|
|
390
|
+
import { jsx as jsx28, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
391
|
+
var IconFiletypePdfLumiFilled = ({ 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: [
|
|
392
|
+
/* @__PURE__ */ jsx28("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx28(
|
|
393
|
+
"path",
|
|
394
|
+
{
|
|
395
|
+
fill: "#2E2E2E",
|
|
396
|
+
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",
|
|
397
|
+
style: { opacity: 0.3 }
|
|
398
|
+
}
|
|
399
|
+
) }),
|
|
400
|
+
/* @__PURE__ */ jsx28(
|
|
401
|
+
"path",
|
|
402
|
+
{
|
|
403
|
+
fill: "#2E2E2E",
|
|
404
|
+
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"
|
|
405
|
+
}
|
|
406
|
+
),
|
|
407
|
+
/* @__PURE__ */ jsx28(
|
|
408
|
+
"path",
|
|
409
|
+
{
|
|
410
|
+
fill: "#2E2E2E",
|
|
411
|
+
d: "M10.6612 7.00247C10.1732 6.99394 9.75199 7.47889 9.85522 7.96337C9.92465 8.70371 10.4024 9.30447 10.7753 9.9158C10.8172 10.1434 10.697 10.3651 10.689 10.5911C10.4459 11.9178 10.0751 13.2376 9.50453 14.4553C8.79857 14.78 7.9992 15.1007 7.58628 15.8006C7.32421 16.2861 7.69321 16.9415 8.23485 16.9927C8.73737 17.0614 9.11034 16.6311 9.38504 16.2706C9.67185 15.8829 9.86058 15.4211 10.0992 15.0044C11.5436 14.4232 13.0628 14.0171 14.6139 13.8629C15.241 14.3114 15.9055 14.8404 16.7096 14.8724C17.177 14.8654 17.5553 14.4121 17.5039 13.9516C17.4738 13.5324 17.101 13.2384 16.7149 13.1596C16.092 12.9722 15.4249 13.0748 14.7913 13.0794C13.5721 12.106 12.4465 10.9861 11.5601 9.70462C11.6259 8.9256 11.758 8.06387 11.352 7.35515C11.1979 7.13164 10.9366 6.9785 10.6612 7.00247ZM10.6844 7.70995C10.8217 7.73637 10.8308 7.94067 10.8693 8.04996C10.9054 8.27263 10.9015 8.49983 10.8988 8.7247C10.7354 8.41939 10.523 8.10045 10.5608 7.73846C10.6039 7.73678 10.6421 7.71495 10.6844 7.70995ZM11.4407 10.7479C12.1674 11.6505 12.9745 12.4818 13.8554 13.2357C12.694 13.4127 11.5401 13.7091 10.4351 14.1089C10.8589 13.0022 11.1816 11.8588 11.3943 10.6919C11.4097 10.7106 11.4252 10.7292 11.4407 10.7479ZM15.9733 13.7827C16.2551 13.8098 16.5803 13.7935 16.8057 13.9875C16.8269 14.1626 16.6125 14.1882 16.4983 14.1248C16.2601 14.0453 16.0245 13.9454 15.8223 13.7932C15.8727 13.7901 15.9229 13.7836 15.9733 13.7827ZM8.93306 15.6242C8.79909 15.8732 8.60409 16.1079 8.40069 16.2842C8.333 16.3937 8.14728 16.1912 8.23273 16.1057C8.4092 15.8298 8.71727 15.6835 8.9901 15.5186C8.97109 15.5538 8.95208 15.589 8.93306 15.6242Z"
|
|
412
|
+
}
|
|
413
|
+
)
|
|
414
|
+
] }), FiletypePdfLumiFilled_default = IconFiletypePdfLumiFilled;
|
|
415
|
+
|
|
416
|
+
// src/components/GamecontrolChoice.tsx
|
|
417
|
+
import { jsx as jsx29 } from "react/jsx-runtime";
|
|
418
|
+
var IconGamecontrolChoice = ({ 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(
|
|
419
|
+
"path",
|
|
420
|
+
{
|
|
421
|
+
fill: stroke || color || "currentColor",
|
|
422
|
+
d: "M22.5 4.125C22.5 6.01317 21.2314 7.60503 19.5 8.09473V13.5H6.75V15.9053C8.48138 16.395 9.75 17.9868 9.75 19.875C9.75 22.1532 7.90317 24 5.625 24C3.34683 24 1.5 22.1532 1.5 19.875C1.5 17.9868 2.76862 16.395 4.5 15.9053V8.09473C2.76862 7.60503 1.5 6.01317 1.5 4.125C1.5 1.84683 3.34683 0 5.625 0C7.90317 0 9.75 1.84683 9.75 4.125C9.75 6.01317 8.48138 7.60503 6.75 8.09473V11.25H17.25V8.09473C15.5186 7.60503 14.25 6.01317 14.25 4.125C14.25 1.84683 16.0968 0 18.375 0C20.6532 0 22.5 1.84683 22.5 4.125ZM18.375 6C19.4105 6 20.25 5.16053 20.25 4.125C20.25 3.08947 19.4105 2.25 18.375 2.25C17.3395 2.25 16.5 3.08947 16.5 4.125C16.5 5.16053 17.3395 6 18.375 6ZM7.5 19.875C7.5 20.9105 6.66053 21.75 5.625 21.75C4.58947 21.75 3.75 20.9105 3.75 19.875C3.75 18.8395 4.58947 18 5.625 18C6.66053 18 7.5 18.8395 7.5 19.875ZM7.5 4.125C7.5 5.16053 6.66053 6 5.625 6C4.58947 6 3.75 5.16053 3.75 4.125C3.75 3.08947 4.58947 2.25 5.625 2.25C6.66053 2.25 7.5 3.08947 7.5 4.125Z",
|
|
423
|
+
fillRule: "evenodd",
|
|
424
|
+
clipRule: "evenodd"
|
|
425
|
+
}
|
|
426
|
+
) }), GamecontrolChoice_default = IconGamecontrolChoice;
|
|
427
|
+
|
|
428
|
+
// src/components/GamecontrolGameplay.tsx
|
|
429
|
+
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
430
|
+
var IconGamecontrolGameplay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx30("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx30(
|
|
431
|
+
"path",
|
|
432
|
+
{
|
|
433
|
+
fill: stroke || color || "currentColor",
|
|
434
|
+
d: "M13.125 8.85823C15.0659 8.35868 16.5 6.59682 16.5 4.5C16.5 2.01472 14.4853 0 12 0C9.51472 0 7.5 2.01472 7.5 4.5C7.5 6.59682 8.93412 8.35868 10.875 8.85823V12.75H6L1.5 17.25V22.5H22.5V17.25L18 12.75H13.125V8.85823ZM12 6.75C13.2426 6.75 14.25 5.74264 14.25 4.5C14.25 3.25736 13.2426 2.25 12 2.25C10.7574 2.25 9.75 3.25736 9.75 4.5C9.75 5.74264 10.7574 6.75 12 6.75ZM10.875 15V18H13.125V15H17.068L20.25 18.182V20.25H3.75V18.182L6.93198 15H10.875Z",
|
|
435
|
+
fillRule: "evenodd",
|
|
436
|
+
clipRule: "evenodd"
|
|
437
|
+
}
|
|
438
|
+
) }), GamecontrolGameplay_default = IconGamecontrolGameplay;
|
|
439
|
+
|
|
440
|
+
// src/components/GamecontrolLinear.tsx
|
|
441
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
442
|
+
var IconGamecontrolLinear = ({ 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(
|
|
443
|
+
"path",
|
|
444
|
+
{
|
|
445
|
+
fill: stroke || color || "currentColor",
|
|
446
|
+
d: "M17.1292 10.875C16.6142 8.51611 14.5133 6.75 12 6.75C9.48666 6.75 7.38582 8.51611 6.87082 10.875H0V13.125H6.87082C7.38582 15.4839 9.48666 17.25 12 17.25C14.5133 17.25 16.6142 15.4839 17.1292 13.125H24V10.875H17.1292ZM15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z",
|
|
447
|
+
fillRule: "evenodd",
|
|
448
|
+
clipRule: "evenodd"
|
|
449
|
+
}
|
|
450
|
+
) }), GamecontrolLinear_default = IconGamecontrolLinear;
|
|
451
|
+
|
|
374
452
|
// src/components/Gamelanguage.tsx
|
|
375
|
-
import { jsx as
|
|
376
|
-
var IconGamelanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
453
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
454
|
+
var IconGamelanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx32("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx32(
|
|
377
455
|
"path",
|
|
378
456
|
{
|
|
379
457
|
fill: stroke || color || "currentColor",
|
|
@@ -384,9 +462,9 @@ var IconGamelanguage = ({ size, width, height, color, className, fill, stroke })
|
|
|
384
462
|
) }), Gamelanguage_default = IconGamelanguage;
|
|
385
463
|
|
|
386
464
|
// src/components/Gamepreview.tsx
|
|
387
|
-
import { jsx as
|
|
388
|
-
var IconGamepreview = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
389
|
-
/* @__PURE__ */
|
|
465
|
+
import { jsx as jsx33, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
466
|
+
var IconGamepreview = ({ 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: [
|
|
467
|
+
/* @__PURE__ */ jsx33(
|
|
390
468
|
"path",
|
|
391
469
|
{
|
|
392
470
|
fill: stroke || color || "currentColor",
|
|
@@ -395,7 +473,7 @@ var IconGamepreview = ({ size, width, height, color, className, fill, stroke })
|
|
|
395
473
|
clipRule: "evenodd"
|
|
396
474
|
}
|
|
397
475
|
),
|
|
398
|
-
/* @__PURE__ */
|
|
476
|
+
/* @__PURE__ */ jsx33(
|
|
399
477
|
"path",
|
|
400
478
|
{
|
|
401
479
|
fill: stroke || color || "currentColor",
|
|
@@ -407,16 +485,16 @@ var IconGamepreview = ({ size, width, height, color, className, fill, stroke })
|
|
|
407
485
|
] }), Gamepreview_default = IconGamepreview;
|
|
408
486
|
|
|
409
487
|
// src/components/GenerateMultimage.tsx
|
|
410
|
-
import { jsx as
|
|
411
|
-
var IconGenerateMultimage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
412
|
-
/* @__PURE__ */
|
|
488
|
+
import { jsx as jsx34, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
489
|
+
var IconGenerateMultimage = ({ 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: [
|
|
490
|
+
/* @__PURE__ */ jsx34(
|
|
413
491
|
"path",
|
|
414
492
|
{
|
|
415
493
|
fill: stroke || color || "currentColor",
|
|
416
494
|
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"
|
|
417
495
|
}
|
|
418
496
|
),
|
|
419
|
-
/* @__PURE__ */
|
|
497
|
+
/* @__PURE__ */ jsx34(
|
|
420
498
|
"path",
|
|
421
499
|
{
|
|
422
500
|
fill: stroke || color || "currentColor",
|
|
@@ -425,12 +503,12 @@ var IconGenerateMultimage = ({ size, width, height, color, className, fill, stro
|
|
|
425
503
|
clipRule: "evenodd"
|
|
426
504
|
}
|
|
427
505
|
),
|
|
428
|
-
/* @__PURE__ */
|
|
506
|
+
/* @__PURE__ */ jsx34("path", { fill: stroke || color || "currentColor", d: "M0 6V24H18V21.75H2.25V6H0Z" })
|
|
429
507
|
] }), GenerateMultimage_default = IconGenerateMultimage;
|
|
430
508
|
|
|
431
509
|
// src/components/GenerateFilled.tsx
|
|
432
|
-
import { jsx as
|
|
433
|
-
var IconGenerateFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
510
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
511
|
+
var IconGenerateFilled = ({ 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(
|
|
434
512
|
"path",
|
|
435
513
|
{
|
|
436
514
|
fill: fill || color || "currentColor",
|
|
@@ -441,16 +519,16 @@ var IconGenerateFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
441
519
|
) }), GenerateFilled_default = IconGenerateFilled;
|
|
442
520
|
|
|
443
521
|
// src/components/GenerateFrameStart.tsx
|
|
444
|
-
import { jsx as
|
|
445
|
-
var IconGenerateFrameStart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
446
|
-
/* @__PURE__ */
|
|
522
|
+
import { jsx as jsx36, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
523
|
+
var IconGenerateFrameStart = ({ 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: [
|
|
524
|
+
/* @__PURE__ */ jsx36(
|
|
447
525
|
"path",
|
|
448
526
|
{
|
|
449
527
|
fill: stroke || color || "currentColor",
|
|
450
528
|
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"
|
|
451
529
|
}
|
|
452
530
|
),
|
|
453
|
-
/* @__PURE__ */
|
|
531
|
+
/* @__PURE__ */ jsx36(
|
|
454
532
|
"path",
|
|
455
533
|
{
|
|
456
534
|
fill: stroke || color || "currentColor",
|
|
@@ -462,9 +540,9 @@ var IconGenerateFrameStart = ({ size, width, height, color, className, fill, str
|
|
|
462
540
|
] }), GenerateFrameStart_default = IconGenerateFrameStart;
|
|
463
541
|
|
|
464
542
|
// src/components/GenerateFrameStart2End.tsx
|
|
465
|
-
import { jsx as
|
|
466
|
-
var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
467
|
-
/* @__PURE__ */
|
|
543
|
+
import { jsx as jsx37, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
544
|
+
var IconGenerateFrameStart2End = ({ 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: [
|
|
545
|
+
/* @__PURE__ */ jsx37(
|
|
468
546
|
"path",
|
|
469
547
|
{
|
|
470
548
|
fill: stroke || color || "currentColor",
|
|
@@ -473,14 +551,14 @@ var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill,
|
|
|
473
551
|
clipRule: "evenodd"
|
|
474
552
|
}
|
|
475
553
|
),
|
|
476
|
-
/* @__PURE__ */
|
|
554
|
+
/* @__PURE__ */ jsx37(
|
|
477
555
|
"path",
|
|
478
556
|
{
|
|
479
557
|
fill: stroke || color || "currentColor",
|
|
480
558
|
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"
|
|
481
559
|
}
|
|
482
560
|
),
|
|
483
|
-
/* @__PURE__ */
|
|
561
|
+
/* @__PURE__ */ jsx37(
|
|
484
562
|
"path",
|
|
485
563
|
{
|
|
486
564
|
fill: stroke || color || "currentColor",
|
|
@@ -492,9 +570,9 @@ var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill,
|
|
|
492
570
|
] }), GenerateFrameStart2End_default = IconGenerateFrameStart2End;
|
|
493
571
|
|
|
494
572
|
// src/components/GenerateSwitchframe.tsx
|
|
495
|
-
import { jsx as
|
|
496
|
-
var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
497
|
-
/* @__PURE__ */
|
|
573
|
+
import { jsx as jsx38, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
574
|
+
var IconGenerateSwitchframe = ({ 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: [
|
|
575
|
+
/* @__PURE__ */ jsx38(
|
|
498
576
|
"path",
|
|
499
577
|
{
|
|
500
578
|
fill: stroke || color || "currentColor",
|
|
@@ -503,7 +581,7 @@ var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, st
|
|
|
503
581
|
clipRule: "evenodd"
|
|
504
582
|
}
|
|
505
583
|
),
|
|
506
|
-
/* @__PURE__ */
|
|
584
|
+
/* @__PURE__ */ jsx38(
|
|
507
585
|
"path",
|
|
508
586
|
{
|
|
509
587
|
fill: stroke || color || "currentColor",
|
|
@@ -515,16 +593,16 @@ var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, st
|
|
|
515
593
|
] }), GenerateSwitchframe_default = IconGenerateSwitchframe;
|
|
516
594
|
|
|
517
595
|
// src/components/GenerateT2V.tsx
|
|
518
|
-
import { jsx as
|
|
519
|
-
var IconGenerateT2V = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
520
|
-
/* @__PURE__ */
|
|
596
|
+
import { jsx as jsx39, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
597
|
+
var IconGenerateT2V = ({ 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: [
|
|
598
|
+
/* @__PURE__ */ jsx39(
|
|
521
599
|
"path",
|
|
522
600
|
{
|
|
523
601
|
fill: stroke || color || "currentColor",
|
|
524
602
|
d: "M6 6V10.5H8.25V8.25H10.875V15.75H8.25V18H15.75V15.75H13.125V8.25H15.75V10.5H18V6H6Z"
|
|
525
603
|
}
|
|
526
604
|
),
|
|
527
|
-
/* @__PURE__ */
|
|
605
|
+
/* @__PURE__ */ jsx39(
|
|
528
606
|
"path",
|
|
529
607
|
{
|
|
530
608
|
fill: stroke || color || "currentColor",
|
|
@@ -536,16 +614,16 @@ var IconGenerateT2V = ({ size, width, height, color, className, fill, stroke })
|
|
|
536
614
|
] }), GenerateT2V_default = IconGenerateT2V;
|
|
537
615
|
|
|
538
616
|
// src/components/GenreAuto.tsx
|
|
539
|
-
import { jsx as
|
|
540
|
-
var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
541
|
-
/* @__PURE__ */
|
|
617
|
+
import { jsx as jsx40, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
618
|
+
var IconGenreAuto = ({ 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: [
|
|
619
|
+
/* @__PURE__ */ jsx40(
|
|
542
620
|
"path",
|
|
543
621
|
{
|
|
544
622
|
fill: stroke || color || "currentColor",
|
|
545
623
|
d: "M18.375 6.375V10.5H16.125V6.375H12V4.125H16.125V0H18.375V4.125H22.5V6.375H18.375Z"
|
|
546
624
|
}
|
|
547
625
|
),
|
|
548
|
-
/* @__PURE__ */
|
|
626
|
+
/* @__PURE__ */ jsx40(
|
|
549
627
|
"path",
|
|
550
628
|
{
|
|
551
629
|
fill: stroke || color || "currentColor",
|
|
@@ -554,15 +632,15 @@ var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
554
632
|
clipRule: "evenodd"
|
|
555
633
|
}
|
|
556
634
|
),
|
|
557
|
-
/* @__PURE__ */
|
|
558
|
-
/* @__PURE__ */
|
|
635
|
+
/* @__PURE__ */ jsx40("path", { fill: stroke || color || "currentColor", d: "M3.75 0.75L1.5 3L3.75 5.25L6 3L3.75 0.75Z" }),
|
|
636
|
+
/* @__PURE__ */ jsx40(
|
|
559
637
|
"path",
|
|
560
638
|
{
|
|
561
639
|
fill: stroke || color || "currentColor",
|
|
562
640
|
d: "M18 21.75L20.25 19.5L22.5 21.75L20.25 24L18 21.75Z"
|
|
563
641
|
}
|
|
564
642
|
),
|
|
565
|
-
/* @__PURE__ */
|
|
643
|
+
/* @__PURE__ */ jsx40(
|
|
566
644
|
"path",
|
|
567
645
|
{
|
|
568
646
|
fill: stroke || color || "currentColor",
|
|
@@ -572,23 +650,23 @@ var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
572
650
|
] }), GenreAuto_default = IconGenreAuto;
|
|
573
651
|
|
|
574
652
|
// src/components/GenreComedy.tsx
|
|
575
|
-
import { jsx as
|
|
576
|
-
var IconGenreComedy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
577
|
-
/* @__PURE__ */
|
|
653
|
+
import { jsx as jsx41, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
654
|
+
var IconGenreComedy = ({ 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: [
|
|
655
|
+
/* @__PURE__ */ jsx41(
|
|
578
656
|
"path",
|
|
579
657
|
{
|
|
580
658
|
fill: stroke || color || "currentColor",
|
|
581
659
|
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"
|
|
582
660
|
}
|
|
583
661
|
),
|
|
584
|
-
/* @__PURE__ */
|
|
662
|
+
/* @__PURE__ */ jsx41(
|
|
585
663
|
"path",
|
|
586
664
|
{
|
|
587
665
|
fill: stroke || color || "currentColor",
|
|
588
666
|
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"
|
|
589
667
|
}
|
|
590
668
|
),
|
|
591
|
-
/* @__PURE__ */
|
|
669
|
+
/* @__PURE__ */ jsx41(
|
|
592
670
|
"path",
|
|
593
671
|
{
|
|
594
672
|
fill: stroke || color || "currentColor",
|
|
@@ -597,7 +675,7 @@ var IconGenreComedy = ({ size, width, height, color, className, fill, stroke })
|
|
|
597
675
|
clipRule: "evenodd"
|
|
598
676
|
}
|
|
599
677
|
),
|
|
600
|
-
/* @__PURE__ */
|
|
678
|
+
/* @__PURE__ */ jsx41(
|
|
601
679
|
"path",
|
|
602
680
|
{
|
|
603
681
|
fill: stroke || color || "currentColor",
|
|
@@ -609,8 +687,8 @@ var IconGenreComedy = ({ size, width, height, color, className, fill, stroke })
|
|
|
609
687
|
] }), GenreComedy_default = IconGenreComedy;
|
|
610
688
|
|
|
611
689
|
// src/components/GenreFantasy.tsx
|
|
612
|
-
import { jsx as
|
|
613
|
-
var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
690
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
691
|
+
var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx42("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx42(
|
|
614
692
|
"path",
|
|
615
693
|
{
|
|
616
694
|
fill: stroke || color || "currentColor",
|
|
@@ -621,23 +699,23 @@ var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke })
|
|
|
621
699
|
) }), GenreFantasy_default = IconGenreFantasy;
|
|
622
700
|
|
|
623
701
|
// src/components/GenreHorror.tsx
|
|
624
|
-
import { jsx as
|
|
625
|
-
var IconGenreHorror = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
626
|
-
/* @__PURE__ */
|
|
702
|
+
import { jsx as jsx43, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
703
|
+
var IconGenreHorror = ({ 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: [
|
|
704
|
+
/* @__PURE__ */ jsx43(
|
|
627
705
|
"path",
|
|
628
706
|
{
|
|
629
707
|
fill: stroke || color || "currentColor",
|
|
630
708
|
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"
|
|
631
709
|
}
|
|
632
710
|
),
|
|
633
|
-
/* @__PURE__ */
|
|
711
|
+
/* @__PURE__ */ jsx43(
|
|
634
712
|
"path",
|
|
635
713
|
{
|
|
636
714
|
fill: stroke || color || "currentColor",
|
|
637
715
|
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"
|
|
638
716
|
}
|
|
639
717
|
),
|
|
640
|
-
/* @__PURE__ */
|
|
718
|
+
/* @__PURE__ */ jsx43(
|
|
641
719
|
"path",
|
|
642
720
|
{
|
|
643
721
|
fill: stroke || color || "currentColor",
|
|
@@ -649,8 +727,8 @@ var IconGenreHorror = ({ size, width, height, color, className, fill, stroke })
|
|
|
649
727
|
] }), GenreHorror_default = IconGenreHorror;
|
|
650
728
|
|
|
651
729
|
// src/components/GenreRomance.tsx
|
|
652
|
-
import { jsx as
|
|
653
|
-
var IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
730
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
731
|
+
var IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx44("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx44(
|
|
654
732
|
"path",
|
|
655
733
|
{
|
|
656
734
|
fill: stroke || color || "currentColor",
|
|
@@ -661,16 +739,16 @@ var IconGenreRomance = ({ size, width, height, color, className, fill, stroke })
|
|
|
661
739
|
) }), GenreRomance_default = IconGenreRomance;
|
|
662
740
|
|
|
663
741
|
// src/components/GenreScifi.tsx
|
|
664
|
-
import { jsx as
|
|
665
|
-
var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
666
|
-
/* @__PURE__ */
|
|
742
|
+
import { jsx as jsx45, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
743
|
+
var IconGenreScifi = ({ 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: [
|
|
744
|
+
/* @__PURE__ */ jsx45(
|
|
667
745
|
"path",
|
|
668
746
|
{
|
|
669
747
|
fill: stroke || color || "currentColor",
|
|
670
748
|
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"
|
|
671
749
|
}
|
|
672
750
|
),
|
|
673
|
-
/* @__PURE__ */
|
|
751
|
+
/* @__PURE__ */ jsx45(
|
|
674
752
|
"path",
|
|
675
753
|
{
|
|
676
754
|
fill: stroke || color || "currentColor",
|
|
@@ -679,7 +757,7 @@ var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
679
757
|
clipRule: "evenodd"
|
|
680
758
|
}
|
|
681
759
|
),
|
|
682
|
-
/* @__PURE__ */
|
|
760
|
+
/* @__PURE__ */ jsx45(
|
|
683
761
|
"path",
|
|
684
762
|
{
|
|
685
763
|
fill: stroke || color || "currentColor",
|
|
@@ -689,8 +767,8 @@ var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
689
767
|
] }), GenreScifi_default = IconGenreScifi;
|
|
690
768
|
|
|
691
769
|
// src/components/GenreSuspense.tsx
|
|
692
|
-
import { jsx as
|
|
693
|
-
var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
770
|
+
import { jsx as jsx46 } from "react/jsx-runtime";
|
|
771
|
+
var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx46("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx46(
|
|
694
772
|
"path",
|
|
695
773
|
{
|
|
696
774
|
fill: stroke || color || "currentColor",
|
|
@@ -701,8 +779,8 @@ var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }
|
|
|
701
779
|
) }), GenreSuspense_default = IconGenreSuspense;
|
|
702
780
|
|
|
703
781
|
// src/components/Genre.tsx
|
|
704
|
-
import { jsx as
|
|
705
|
-
var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
782
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
783
|
+
var IconGenre = ({ 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(
|
|
706
784
|
"path",
|
|
707
785
|
{
|
|
708
786
|
fill: stroke || color || "currentColor",
|
|
@@ -713,9 +791,9 @@ var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
713
791
|
) }), Genre_default = IconGenre;
|
|
714
792
|
|
|
715
793
|
// src/components/GoogleLogoFilled.tsx
|
|
716
|
-
import { jsx as
|
|
717
|
-
var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
718
|
-
/* @__PURE__ */
|
|
794
|
+
import { jsx as jsx48, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
795
|
+
var IconGoogleLogoFilled = ({ 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: [
|
|
796
|
+
/* @__PURE__ */ jsx48(
|
|
719
797
|
"mask",
|
|
720
798
|
{
|
|
721
799
|
id: "mask0_48_113",
|
|
@@ -725,7 +803,7 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
725
803
|
y: "0",
|
|
726
804
|
maskUnits: "userSpaceOnUse",
|
|
727
805
|
style: { maskType: "luminance" },
|
|
728
|
-
children: /* @__PURE__ */
|
|
806
|
+
children: /* @__PURE__ */ jsx48(
|
|
729
807
|
"path",
|
|
730
808
|
{
|
|
731
809
|
fill: stroke || color || "currentColor",
|
|
@@ -734,64 +812,64 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
734
812
|
)
|
|
735
813
|
}
|
|
736
814
|
),
|
|
737
|
-
/* @__PURE__ */
|
|
738
|
-
/* @__PURE__ */
|
|
815
|
+
/* @__PURE__ */ jsxs23("g", { mask: "url(#mask0_48_113)", children: [
|
|
816
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter0_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
739
817
|
"path",
|
|
740
818
|
{
|
|
741
819
|
fill: "url(#paint0_radial_48_113)",
|
|
742
820
|
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"
|
|
743
821
|
}
|
|
744
822
|
) }),
|
|
745
|
-
/* @__PURE__ */
|
|
823
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter1_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
746
824
|
"path",
|
|
747
825
|
{
|
|
748
826
|
fill: "url(#paint1_radial_48_113)",
|
|
749
827
|
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"
|
|
750
828
|
}
|
|
751
829
|
) }),
|
|
752
|
-
/* @__PURE__ */
|
|
830
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter2_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
753
831
|
"path",
|
|
754
832
|
{
|
|
755
833
|
fill: "url(#paint2_radial_48_113)",
|
|
756
834
|
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"
|
|
757
835
|
}
|
|
758
836
|
) }),
|
|
759
|
-
/* @__PURE__ */
|
|
837
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter3_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
760
838
|
"path",
|
|
761
839
|
{
|
|
762
840
|
fill: "url(#paint3_radial_48_113)",
|
|
763
841
|
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"
|
|
764
842
|
}
|
|
765
843
|
) }),
|
|
766
|
-
/* @__PURE__ */
|
|
844
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter4_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
767
845
|
"path",
|
|
768
846
|
{
|
|
769
847
|
fill: "#3086FF",
|
|
770
848
|
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"
|
|
771
849
|
}
|
|
772
850
|
) }),
|
|
773
|
-
/* @__PURE__ */
|
|
851
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter5_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
774
852
|
"path",
|
|
775
853
|
{
|
|
776
854
|
fill: "url(#paint4_radial_48_113)",
|
|
777
855
|
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"
|
|
778
856
|
}
|
|
779
857
|
) }),
|
|
780
|
-
/* @__PURE__ */
|
|
858
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter6_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
781
859
|
"path",
|
|
782
860
|
{
|
|
783
861
|
fill: "url(#paint5_radial_48_113)",
|
|
784
862
|
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"
|
|
785
863
|
}
|
|
786
864
|
) }),
|
|
787
|
-
/* @__PURE__ */
|
|
865
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter7_f_48_113)", children: /* @__PURE__ */ jsx48(
|
|
788
866
|
"path",
|
|
789
867
|
{
|
|
790
868
|
fill: "url(#paint6_radial_48_113)",
|
|
791
869
|
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"
|
|
792
870
|
}
|
|
793
871
|
) }),
|
|
794
|
-
/* @__PURE__ */
|
|
872
|
+
/* @__PURE__ */ jsx48("g", { filter: "url(#filter8_f_48_113)", style: { opacity: 0.5 }, children: /* @__PURE__ */ jsx48(
|
|
795
873
|
"path",
|
|
796
874
|
{
|
|
797
875
|
fill: "url(#paint7_linear_48_113)",
|
|
@@ -799,8 +877,8 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
799
877
|
}
|
|
800
878
|
) })
|
|
801
879
|
] }),
|
|
802
|
-
/* @__PURE__ */
|
|
803
|
-
/* @__PURE__ */
|
|
880
|
+
/* @__PURE__ */ jsxs23("defs", { children: [
|
|
881
|
+
/* @__PURE__ */ jsxs23(
|
|
804
882
|
"filter",
|
|
805
883
|
{
|
|
806
884
|
id: "filter0_f_48_113",
|
|
@@ -811,13 +889,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
811
889
|
filterUnits: "userSpaceOnUse",
|
|
812
890
|
colorInterpolationFilters: "sRGB",
|
|
813
891
|
children: [
|
|
814
|
-
/* @__PURE__ */
|
|
815
|
-
/* @__PURE__ */
|
|
816
|
-
/* @__PURE__ */
|
|
892
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
893
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
894
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
817
895
|
]
|
|
818
896
|
}
|
|
819
897
|
),
|
|
820
|
-
/* @__PURE__ */
|
|
898
|
+
/* @__PURE__ */ jsxs23(
|
|
821
899
|
"filter",
|
|
822
900
|
{
|
|
823
901
|
id: "filter1_f_48_113",
|
|
@@ -828,13 +906,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
828
906
|
filterUnits: "userSpaceOnUse",
|
|
829
907
|
colorInterpolationFilters: "sRGB",
|
|
830
908
|
children: [
|
|
831
|
-
/* @__PURE__ */
|
|
832
|
-
/* @__PURE__ */
|
|
833
|
-
/* @__PURE__ */
|
|
909
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
910
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
911
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
834
912
|
]
|
|
835
913
|
}
|
|
836
914
|
),
|
|
837
|
-
/* @__PURE__ */
|
|
915
|
+
/* @__PURE__ */ jsxs23(
|
|
838
916
|
"filter",
|
|
839
917
|
{
|
|
840
918
|
id: "filter2_f_48_113",
|
|
@@ -845,13 +923,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
845
923
|
filterUnits: "userSpaceOnUse",
|
|
846
924
|
colorInterpolationFilters: "sRGB",
|
|
847
925
|
children: [
|
|
848
|
-
/* @__PURE__ */
|
|
849
|
-
/* @__PURE__ */
|
|
850
|
-
/* @__PURE__ */
|
|
926
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
927
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
928
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
851
929
|
]
|
|
852
930
|
}
|
|
853
931
|
),
|
|
854
|
-
/* @__PURE__ */
|
|
932
|
+
/* @__PURE__ */ jsxs23(
|
|
855
933
|
"filter",
|
|
856
934
|
{
|
|
857
935
|
id: "filter3_f_48_113",
|
|
@@ -862,13 +940,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
862
940
|
filterUnits: "userSpaceOnUse",
|
|
863
941
|
colorInterpolationFilters: "sRGB",
|
|
864
942
|
children: [
|
|
865
|
-
/* @__PURE__ */
|
|
866
|
-
/* @__PURE__ */
|
|
867
|
-
/* @__PURE__ */
|
|
943
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
944
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
945
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
868
946
|
]
|
|
869
947
|
}
|
|
870
948
|
),
|
|
871
|
-
/* @__PURE__ */
|
|
949
|
+
/* @__PURE__ */ jsxs23(
|
|
872
950
|
"filter",
|
|
873
951
|
{
|
|
874
952
|
id: "filter4_f_48_113",
|
|
@@ -879,13 +957,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
879
957
|
filterUnits: "userSpaceOnUse",
|
|
880
958
|
colorInterpolationFilters: "sRGB",
|
|
881
959
|
children: [
|
|
882
|
-
/* @__PURE__ */
|
|
883
|
-
/* @__PURE__ */
|
|
884
|
-
/* @__PURE__ */
|
|
960
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
961
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
962
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
885
963
|
]
|
|
886
964
|
}
|
|
887
965
|
),
|
|
888
|
-
/* @__PURE__ */
|
|
966
|
+
/* @__PURE__ */ jsxs23(
|
|
889
967
|
"filter",
|
|
890
968
|
{
|
|
891
969
|
id: "filter5_f_48_113",
|
|
@@ -896,13 +974,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
896
974
|
filterUnits: "userSpaceOnUse",
|
|
897
975
|
colorInterpolationFilters: "sRGB",
|
|
898
976
|
children: [
|
|
899
|
-
/* @__PURE__ */
|
|
900
|
-
/* @__PURE__ */
|
|
901
|
-
/* @__PURE__ */
|
|
977
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
978
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
979
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
902
980
|
]
|
|
903
981
|
}
|
|
904
982
|
),
|
|
905
|
-
/* @__PURE__ */
|
|
983
|
+
/* @__PURE__ */ jsxs23(
|
|
906
984
|
"filter",
|
|
907
985
|
{
|
|
908
986
|
id: "filter6_f_48_113",
|
|
@@ -913,13 +991,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
913
991
|
filterUnits: "userSpaceOnUse",
|
|
914
992
|
colorInterpolationFilters: "sRGB",
|
|
915
993
|
children: [
|
|
916
|
-
/* @__PURE__ */
|
|
917
|
-
/* @__PURE__ */
|
|
918
|
-
/* @__PURE__ */
|
|
994
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
995
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
996
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "1.65243" })
|
|
919
997
|
]
|
|
920
998
|
}
|
|
921
999
|
),
|
|
922
|
-
/* @__PURE__ */
|
|
1000
|
+
/* @__PURE__ */ jsxs23(
|
|
923
1001
|
"filter",
|
|
924
1002
|
{
|
|
925
1003
|
id: "filter7_f_48_113",
|
|
@@ -930,13 +1008,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
930
1008
|
filterUnits: "userSpaceOnUse",
|
|
931
1009
|
colorInterpolationFilters: "sRGB",
|
|
932
1010
|
children: [
|
|
933
|
-
/* @__PURE__ */
|
|
934
|
-
/* @__PURE__ */
|
|
935
|
-
/* @__PURE__ */
|
|
1011
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1012
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1013
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
936
1014
|
]
|
|
937
1015
|
}
|
|
938
1016
|
),
|
|
939
|
-
/* @__PURE__ */
|
|
1017
|
+
/* @__PURE__ */ jsxs23(
|
|
940
1018
|
"filter",
|
|
941
1019
|
{
|
|
942
1020
|
id: "filter8_f_48_113",
|
|
@@ -947,13 +1025,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
947
1025
|
filterUnits: "userSpaceOnUse",
|
|
948
1026
|
colorInterpolationFilters: "sRGB",
|
|
949
1027
|
children: [
|
|
950
|
-
/* @__PURE__ */
|
|
951
|
-
/* @__PURE__ */
|
|
952
|
-
/* @__PURE__ */
|
|
1028
|
+
/* @__PURE__ */ jsx48("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1029
|
+
/* @__PURE__ */ jsx48("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1030
|
+
/* @__PURE__ */ jsx48("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
953
1031
|
]
|
|
954
1032
|
}
|
|
955
1033
|
),
|
|
956
|
-
/* @__PURE__ */
|
|
1034
|
+
/* @__PURE__ */ jsxs23(
|
|
957
1035
|
"radialGradient",
|
|
958
1036
|
{
|
|
959
1037
|
id: "paint0_radial_48_113",
|
|
@@ -963,20 +1041,20 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
963
1041
|
gradientTransform: "matrix(-0.498722 -11.9519 17.9311 -0.717223 9.06911 20.3322)",
|
|
964
1042
|
gradientUnits: "userSpaceOnUse",
|
|
965
1043
|
children: [
|
|
966
|
-
/* @__PURE__ */
|
|
967
|
-
/* @__PURE__ */
|
|
968
|
-
/* @__PURE__ */
|
|
969
|
-
/* @__PURE__ */
|
|
970
|
-
/* @__PURE__ */
|
|
971
|
-
/* @__PURE__ */
|
|
972
|
-
/* @__PURE__ */
|
|
973
|
-
/* @__PURE__ */
|
|
974
|
-
/* @__PURE__ */
|
|
975
|
-
/* @__PURE__ */
|
|
1044
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.141612", stopColor: "#1ABD4D" }),
|
|
1045
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.247515", stopColor: "#6EC30D" }),
|
|
1046
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.311547", stopColor: "#8AC502" }),
|
|
1047
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.366013", stopColor: "#A2C600" }),
|
|
1048
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.445673", stopColor: "#C8C903" }),
|
|
1049
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.540305", stopColor: "#EBCB03" }),
|
|
1050
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.615636", stopColor: "#F7CD07" }),
|
|
1051
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.699345", stopColor: "#FDCD04" }),
|
|
1052
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.771242", stopColor: "#FDCE05" }),
|
|
1053
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.860566", stopColor: "#FFCE0A" })
|
|
976
1054
|
]
|
|
977
1055
|
}
|
|
978
1056
|
),
|
|
979
|
-
/* @__PURE__ */
|
|
1057
|
+
/* @__PURE__ */ jsxs23(
|
|
980
1058
|
"radialGradient",
|
|
981
1059
|
{
|
|
982
1060
|
id: "paint1_radial_48_113",
|
|
@@ -986,12 +1064,12 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
986
1064
|
gradientTransform: "matrix(8.46967 -2.03557e-05 -1.19045e-05 10.7093 20.253 6.36819)",
|
|
987
1065
|
gradientUnits: "userSpaceOnUse",
|
|
988
1066
|
children: [
|
|
989
|
-
/* @__PURE__ */
|
|
990
|
-
/* @__PURE__ */
|
|
1067
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.408458", stopColor: "#FB4E5A" }),
|
|
1068
|
+
/* @__PURE__ */ jsx48("stop", { offset: "1", stopColor: "#FF4540" })
|
|
991
1069
|
]
|
|
992
1070
|
}
|
|
993
1071
|
),
|
|
994
|
-
/* @__PURE__ */
|
|
1072
|
+
/* @__PURE__ */ jsxs23(
|
|
995
1073
|
"radialGradient",
|
|
996
1074
|
{
|
|
997
1075
|
id: "paint2_radial_48_113",
|
|
@@ -1001,18 +1079,18 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1001
1079
|
gradientTransform: "matrix(-11.8666 6.43492 8.91875 15.766 15.6277 -1.68219)",
|
|
1002
1080
|
gradientUnits: "userSpaceOnUse",
|
|
1003
1081
|
children: [
|
|
1004
|
-
/* @__PURE__ */
|
|
1005
|
-
/* @__PURE__ */
|
|
1006
|
-
/* @__PURE__ */
|
|
1007
|
-
/* @__PURE__ */
|
|
1008
|
-
/* @__PURE__ */
|
|
1009
|
-
/* @__PURE__ */
|
|
1010
|
-
/* @__PURE__ */
|
|
1011
|
-
/* @__PURE__ */
|
|
1082
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.231273", stopColor: "#FF4541" }),
|
|
1083
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.311547", stopColor: "#FF4540" }),
|
|
1084
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.457516", stopColor: "#FF4640" }),
|
|
1085
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.540305", stopColor: "#FF473F" }),
|
|
1086
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.699346", stopColor: "#FF5138" }),
|
|
1087
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.771242", stopColor: "#FF5B33" }),
|
|
1088
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.860566", stopColor: "#FF6C29" }),
|
|
1089
|
+
/* @__PURE__ */ jsx48("stop", { offset: "1", stopColor: "#FF8C18" })
|
|
1012
1090
|
]
|
|
1013
1091
|
}
|
|
1014
1092
|
),
|
|
1015
|
-
/* @__PURE__ */
|
|
1093
|
+
/* @__PURE__ */ jsxs23(
|
|
1016
1094
|
"radialGradient",
|
|
1017
1095
|
{
|
|
1018
1096
|
id: "paint3_radial_48_113",
|
|
@@ -1022,19 +1100,19 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1022
1100
|
gradientTransform: "matrix(-21.5204 -27.5047 -10.3696 7.77752 12.4702 22.5743)",
|
|
1023
1101
|
gradientUnits: "userSpaceOnUse",
|
|
1024
1102
|
children: [
|
|
1025
|
-
/* @__PURE__ */
|
|
1026
|
-
/* @__PURE__ */
|
|
1027
|
-
/* @__PURE__ */
|
|
1028
|
-
/* @__PURE__ */
|
|
1029
|
-
/* @__PURE__ */
|
|
1030
|
-
/* @__PURE__ */
|
|
1031
|
-
/* @__PURE__ */
|
|
1032
|
-
/* @__PURE__ */
|
|
1033
|
-
/* @__PURE__ */
|
|
1103
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.131546", stopColor: "#0CBA65" }),
|
|
1104
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.209784", stopColor: "#0BB86D" }),
|
|
1105
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.297297", stopColor: "#09B479" }),
|
|
1106
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.396257", stopColor: "#08AD93" }),
|
|
1107
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.477124", stopColor: "#0AA6A9" }),
|
|
1108
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.568425", stopColor: "#0D9CC6" }),
|
|
1109
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.667385", stopColor: "#1893DD" }),
|
|
1110
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.768727", stopColor: "#258BF1" }),
|
|
1111
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.858506", stopColor: "#3086FF" })
|
|
1034
1112
|
]
|
|
1035
1113
|
}
|
|
1036
1114
|
),
|
|
1037
|
-
/* @__PURE__ */
|
|
1115
|
+
/* @__PURE__ */ jsxs23(
|
|
1038
1116
|
"radialGradient",
|
|
1039
1117
|
{
|
|
1040
1118
|
id: "paint4_radial_48_113",
|
|
@@ -1044,18 +1122,18 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1044
1122
|
gradientTransform: "matrix(-1.52295 12.8522 18.1501 2.06168 11.2421 2.13475)",
|
|
1045
1123
|
gradientUnits: "userSpaceOnUse",
|
|
1046
1124
|
children: [
|
|
1047
|
-
/* @__PURE__ */
|
|
1048
|
-
/* @__PURE__ */
|
|
1049
|
-
/* @__PURE__ */
|
|
1050
|
-
/* @__PURE__ */
|
|
1051
|
-
/* @__PURE__ */
|
|
1052
|
-
/* @__PURE__ */
|
|
1053
|
-
/* @__PURE__ */
|
|
1054
|
-
/* @__PURE__ */
|
|
1125
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.366013", stopColor: "#FF4E3A" }),
|
|
1126
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.457516", stopColor: "#FF8A1B" }),
|
|
1127
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.540305", stopColor: "#FFA312" }),
|
|
1128
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.615636", stopColor: "#FFB60C" }),
|
|
1129
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.771242", stopColor: "#FFCD0A" }),
|
|
1130
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.860566", stopColor: "#FECF0A" }),
|
|
1131
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.915033", stopColor: "#FECF08" }),
|
|
1132
|
+
/* @__PURE__ */ jsx48("stop", { offset: "1", stopColor: "#FDCD01" })
|
|
1055
1133
|
]
|
|
1056
1134
|
}
|
|
1057
1135
|
),
|
|
1058
|
-
/* @__PURE__ */
|
|
1136
|
+
/* @__PURE__ */ jsxs23(
|
|
1059
1137
|
"radialGradient",
|
|
1060
1138
|
{
|
|
1061
1139
|
id: "paint5_radial_48_113",
|
|
@@ -1065,15 +1143,15 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1065
1143
|
gradientTransform: "matrix(-4.40212 4.76677 -13.7322 -12.1566 9.10044 2.00144)",
|
|
1066
1144
|
gradientUnits: "userSpaceOnUse",
|
|
1067
1145
|
children: [
|
|
1068
|
-
/* @__PURE__ */
|
|
1069
|
-
/* @__PURE__ */
|
|
1070
|
-
/* @__PURE__ */
|
|
1071
|
-
/* @__PURE__ */
|
|
1072
|
-
/* @__PURE__ */
|
|
1146
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.315904", stopColor: "#FF4C3C" }),
|
|
1147
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.603818", stopColor: "#FF692C" }),
|
|
1148
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.726837", stopColor: "#FF7825" }),
|
|
1149
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.884534", stopColor: "#FF8D1B" }),
|
|
1150
|
+
/* @__PURE__ */ jsx48("stop", { offset: "1", stopColor: "#FF9F13" })
|
|
1073
1151
|
]
|
|
1074
1152
|
}
|
|
1075
1153
|
),
|
|
1076
|
-
/* @__PURE__ */
|
|
1154
|
+
/* @__PURE__ */ jsxs23(
|
|
1077
1155
|
"radialGradient",
|
|
1078
1156
|
{
|
|
1079
1157
|
id: "paint6_radial_48_113",
|
|
@@ -1083,20 +1161,20 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1083
1161
|
gradientTransform: "matrix(-11.8666 -6.43492 8.91876 -15.766 15.6277 25.6232)",
|
|
1084
1162
|
gradientUnits: "userSpaceOnUse",
|
|
1085
1163
|
children: [
|
|
1086
|
-
/* @__PURE__ */
|
|
1087
|
-
/* @__PURE__ */
|
|
1088
|
-
/* @__PURE__ */
|
|
1089
|
-
/* @__PURE__ */
|
|
1090
|
-
/* @__PURE__ */
|
|
1091
|
-
/* @__PURE__ */
|
|
1092
|
-
/* @__PURE__ */
|
|
1093
|
-
/* @__PURE__ */
|
|
1094
|
-
/* @__PURE__ */
|
|
1095
|
-
/* @__PURE__ */
|
|
1164
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.231273", stopColor: "#0FBC5F" }),
|
|
1165
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.311547", stopColor: "#0FBC5F" }),
|
|
1166
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.366013", stopColor: "#0FBC5E" }),
|
|
1167
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.457516", stopColor: "#0FBC5D" }),
|
|
1168
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.540305", stopColor: "#12BC58" }),
|
|
1169
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.699346", stopColor: "#28BF3C" }),
|
|
1170
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.771242", stopColor: "#38C02B" }),
|
|
1171
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.860566", stopColor: "#52C218" }),
|
|
1172
|
+
/* @__PURE__ */ jsx48("stop", { offset: "0.915033", stopColor: "#67C30F" }),
|
|
1173
|
+
/* @__PURE__ */ jsx48("stop", { offset: "1", stopColor: "#86C504" })
|
|
1096
1174
|
]
|
|
1097
1175
|
}
|
|
1098
1176
|
),
|
|
1099
|
-
/* @__PURE__ */
|
|
1177
|
+
/* @__PURE__ */ jsxs23(
|
|
1100
1178
|
"linearGradient",
|
|
1101
1179
|
{
|
|
1102
1180
|
id: "paint7_linear_48_113",
|
|
@@ -1106,26 +1184,36 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1106
1184
|
y2: "21.5116",
|
|
1107
1185
|
gradientUnits: "userSpaceOnUse",
|
|
1108
1186
|
children: [
|
|
1109
|
-
/* @__PURE__ */
|
|
1110
|
-
/* @__PURE__ */
|
|
1187
|
+
/* @__PURE__ */ jsx48("stop", { stopColor: "#0FBC5C" }),
|
|
1188
|
+
/* @__PURE__ */ jsx48("stop", { offset: "1", stopColor: "#0CBA65" })
|
|
1111
1189
|
]
|
|
1112
1190
|
}
|
|
1113
1191
|
)
|
|
1114
1192
|
] })
|
|
1115
1193
|
] }), GoogleLogoFilled_default = IconGoogleLogoFilled;
|
|
1116
1194
|
|
|
1195
|
+
// src/components/Handtool.tsx
|
|
1196
|
+
import { jsx as jsx49 } from "react/jsx-runtime";
|
|
1197
|
+
var IconHandtool = ({ 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(
|
|
1198
|
+
"path",
|
|
1199
|
+
{
|
|
1200
|
+
fill: stroke || color || "currentColor",
|
|
1201
|
+
d: "M9.7308 6.8061L16.4166 2.06993L21.4254 7.25613C24.6886 10.6356 24.8725 16.053 21.8475 19.6623C19.5421 22.413 15.8757 23.4769 12.5263 22.3658L11.3744 21.9836L4.35807 19.7097L4.10544 17.7491C3.88927 16.0749 5.05999 14.5501 6.68369 14.3911L7.72954 14.2888L0 5.67239L4.31856 1.2L9.7308 6.8061ZM2.95563 5.72837L10.759 14.4255L10.0791 16.2741L6.88433 16.5864C6.46331 16.6275 6.15981 17.0233 6.21586 17.4574L6.28863 18.0237L12.0107 19.8787L12.018 19.8809L13.1761 20.2653C15.7143 21.1072 18.4932 20.302 20.2403 18.2175C22.5326 15.4822 22.3919 11.3772 19.919 8.81619L16.1598 4.92196L9.47506 9.65921L4.31752 4.31797L2.95563 5.72837Z"
|
|
1202
|
+
}
|
|
1203
|
+
) }), Handtool_default = IconHandtool;
|
|
1204
|
+
|
|
1117
1205
|
// src/components/Help.tsx
|
|
1118
|
-
import { jsx as
|
|
1119
|
-
var IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1120
|
-
/* @__PURE__ */
|
|
1121
|
-
/* @__PURE__ */
|
|
1206
|
+
import { jsx as jsx50, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1207
|
+
var IconHelp = ({ 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: [
|
|
1208
|
+
/* @__PURE__ */ jsx50("path", { fill: stroke || color || "currentColor", d: "M13.125 16.5V18.75H10.875V16.5H13.125Z" }),
|
|
1209
|
+
/* @__PURE__ */ jsx50(
|
|
1122
1210
|
"path",
|
|
1123
1211
|
{
|
|
1124
1212
|
fill: stroke || color || "currentColor",
|
|
1125
1213
|
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"
|
|
1126
1214
|
}
|
|
1127
1215
|
),
|
|
1128
|
-
/* @__PURE__ */
|
|
1216
|
+
/* @__PURE__ */ jsx50(
|
|
1129
1217
|
"path",
|
|
1130
1218
|
{
|
|
1131
1219
|
fill: stroke || color || "currentColor",
|
|
@@ -1137,8 +1225,8 @@ var IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1137
1225
|
] }), Help_default = IconHelp;
|
|
1138
1226
|
|
|
1139
1227
|
// src/components/HomepageFilled.tsx
|
|
1140
|
-
import { jsx as
|
|
1141
|
-
var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1228
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
1229
|
+
var IconHomepageFilled = ({ 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(
|
|
1142
1230
|
"path",
|
|
1143
1231
|
{
|
|
1144
1232
|
fill: fill || color || "currentColor",
|
|
@@ -1149,16 +1237,16 @@ var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1149
1237
|
) }), HomepageFilled_default = IconHomepageFilled;
|
|
1150
1238
|
|
|
1151
1239
|
// src/components/ImageGeneration.tsx
|
|
1152
|
-
import { jsx as
|
|
1153
|
-
var IconImageGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1154
|
-
/* @__PURE__ */
|
|
1240
|
+
import { jsx as jsx52, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1241
|
+
var IconImageGeneration = ({ 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: [
|
|
1242
|
+
/* @__PURE__ */ jsx52(
|
|
1155
1243
|
"path",
|
|
1156
1244
|
{
|
|
1157
1245
|
fill: stroke || color || "currentColor",
|
|
1158
1246
|
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"
|
|
1159
1247
|
}
|
|
1160
1248
|
),
|
|
1161
|
-
/* @__PURE__ */
|
|
1249
|
+
/* @__PURE__ */ jsx52(
|
|
1162
1250
|
"path",
|
|
1163
1251
|
{
|
|
1164
1252
|
fill: stroke || color || "currentColor",
|
|
@@ -1167,10 +1255,10 @@ var IconImageGeneration = ({ size, width, height, color, className, fill, stroke
|
|
|
1167
1255
|
)
|
|
1168
1256
|
] }), ImageGeneration_default = IconImageGeneration;
|
|
1169
1257
|
|
|
1170
|
-
// src/components/
|
|
1171
|
-
import { jsx as
|
|
1172
|
-
var
|
|
1173
|
-
/* @__PURE__ */
|
|
1258
|
+
// src/components/ImageLoadFailedFilled.tsx
|
|
1259
|
+
import { jsx as jsx53, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1260
|
+
var IconImageLoadFailedFilled = ({ 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: [
|
|
1261
|
+
/* @__PURE__ */ jsx53(
|
|
1174
1262
|
"path",
|
|
1175
1263
|
{
|
|
1176
1264
|
fill: fill || color || "currentColor",
|
|
@@ -1179,21 +1267,21 @@ var IconImageLoadFailed = ({ size, width, height, color, className, fill, stroke
|
|
|
1179
1267
|
clipRule: "evenodd"
|
|
1180
1268
|
}
|
|
1181
1269
|
),
|
|
1182
|
-
/* @__PURE__ */
|
|
1270
|
+
/* @__PURE__ */ jsx53(
|
|
1183
1271
|
"path",
|
|
1184
1272
|
{
|
|
1185
1273
|
fill: fill || color || "currentColor",
|
|
1186
1274
|
d: "M22.5 22.5H12L12.9541 19.5H19.5V9L14.7998 13.6992L15.5 11.5L14 6L16.75 1.5H22.5V22.5Z"
|
|
1187
1275
|
}
|
|
1188
1276
|
)
|
|
1189
|
-
] }),
|
|
1277
|
+
] }), ImageLoadFailedFilled_default = IconImageLoadFailedFilled;
|
|
1190
1278
|
|
|
1191
1279
|
// src/components/Info.tsx
|
|
1192
|
-
import { jsx as
|
|
1193
|
-
var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1194
|
-
/* @__PURE__ */
|
|
1195
|
-
/* @__PURE__ */
|
|
1196
|
-
/* @__PURE__ */
|
|
1280
|
+
import { jsx as jsx54, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1281
|
+
var IconInfo = ({ 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: [
|
|
1282
|
+
/* @__PURE__ */ jsx54("path", { fill: stroke || color || "currentColor", d: "M13.125 5.25V7.5H10.875V5.25H13.125Z" }),
|
|
1283
|
+
/* @__PURE__ */ jsx54("path", { fill: stroke || color || "currentColor", d: "M9 12H10.875V18.75H15V16.5H13.125V9.75H9V12Z" }),
|
|
1284
|
+
/* @__PURE__ */ jsx54(
|
|
1197
1285
|
"path",
|
|
1198
1286
|
{
|
|
1199
1287
|
fill: stroke || color || "currentColor",
|
|
@@ -1204,9 +1292,21 @@ var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1204
1292
|
)
|
|
1205
1293
|
] }), Info_default = IconInfo;
|
|
1206
1294
|
|
|
1295
|
+
// src/components/Invitecode.tsx
|
|
1296
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
1297
|
+
var IconInvitecode = ({ 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(
|
|
1298
|
+
"path",
|
|
1299
|
+
{
|
|
1300
|
+
fill: fill || color || "currentColor",
|
|
1301
|
+
d: "M24 3H0V9C1.65685 9 3 10.3431 3 12C3 13.6569 1.65685 15 0 15V21H24V15C22.3431 15 21 13.6569 21 12C21 10.3431 22.3431 9 24 9V3ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
1302
|
+
fillRule: "evenodd",
|
|
1303
|
+
clipRule: "evenodd"
|
|
1304
|
+
}
|
|
1305
|
+
) }), Invitecode_default = IconInvitecode;
|
|
1306
|
+
|
|
1207
1307
|
// src/components/Loading.tsx
|
|
1208
|
-
import { jsx as
|
|
1209
|
-
var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1308
|
+
import { jsx as jsx56, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1309
|
+
var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs28(
|
|
1210
1310
|
"svg",
|
|
1211
1311
|
{
|
|
1212
1312
|
fill: "none",
|
|
@@ -1216,10 +1316,10 @@ var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1216
1316
|
height: height || size,
|
|
1217
1317
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
1218
1318
|
children: [
|
|
1219
|
-
/* @__PURE__ */
|
|
1220
|
-
/* @__PURE__ */
|
|
1221
|
-
/* @__PURE__ */
|
|
1222
|
-
/* @__PURE__ */
|
|
1319
|
+
/* @__PURE__ */ jsx56("rect", { width: "24", height: "24", fill: "url(#pattern0_78_19)" }),
|
|
1320
|
+
/* @__PURE__ */ jsxs28("defs", { children: [
|
|
1321
|
+
/* @__PURE__ */ jsx56("pattern", { id: "pattern0_78_19", width: "1", height: "1", patternContentUnits: "objectBoundingBox", children: /* @__PURE__ */ jsx56("use", { transform: "scale(0.005)", xlinkHref: "#image0_78_19" }) }),
|
|
1322
|
+
/* @__PURE__ */ jsx56(
|
|
1223
1323
|
"image",
|
|
1224
1324
|
{
|
|
1225
1325
|
id: "image0_78_19",
|
|
@@ -1235,16 +1335,16 @@ var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1235
1335
|
), Loading_default = IconLoading;
|
|
1236
1336
|
|
|
1237
1337
|
// src/components/Login.tsx
|
|
1238
|
-
import { jsx as
|
|
1239
|
-
var IconLogin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1240
|
-
/* @__PURE__ */
|
|
1338
|
+
import { jsx as jsx57, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
1339
|
+
var IconLogin = ({ 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: [
|
|
1340
|
+
/* @__PURE__ */ jsx57(
|
|
1241
1341
|
"path",
|
|
1242
1342
|
{
|
|
1243
1343
|
fill: stroke || color || "currentColor",
|
|
1244
1344
|
d: "M24 1.5L13.5 1.5V3.75H21.75V20.25H13.5V22.5H24V1.5Z"
|
|
1245
1345
|
}
|
|
1246
1346
|
),
|
|
1247
|
-
/* @__PURE__ */
|
|
1347
|
+
/* @__PURE__ */ jsx57(
|
|
1248
1348
|
"path",
|
|
1249
1349
|
{
|
|
1250
1350
|
fill: stroke || color || "currentColor",
|
|
@@ -1256,9 +1356,9 @@ var IconLogin = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1256
1356
|
] }), Login_default = IconLogin;
|
|
1257
1357
|
|
|
1258
1358
|
// src/components/Logout.tsx
|
|
1259
|
-
import { jsx as
|
|
1260
|
-
var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1261
|
-
/* @__PURE__ */
|
|
1359
|
+
import { jsx as jsx58, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1360
|
+
var IconLogout = ({ 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: [
|
|
1361
|
+
/* @__PURE__ */ jsx58(
|
|
1262
1362
|
"path",
|
|
1263
1363
|
{
|
|
1264
1364
|
fill: stroke || color || "currentColor",
|
|
@@ -1267,7 +1367,7 @@ var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1267
1367
|
clipRule: "evenodd"
|
|
1268
1368
|
}
|
|
1269
1369
|
),
|
|
1270
|
-
/* @__PURE__ */
|
|
1370
|
+
/* @__PURE__ */ jsx58(
|
|
1271
1371
|
"path",
|
|
1272
1372
|
{
|
|
1273
1373
|
fill: stroke || color || "currentColor",
|
|
@@ -1277,8 +1377,8 @@ var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1277
1377
|
] }), Logout_default = IconLogout;
|
|
1278
1378
|
|
|
1279
1379
|
// src/components/ModelGeminiFilled.tsx
|
|
1280
|
-
import { jsx as
|
|
1281
|
-
var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1380
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
1381
|
+
var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx59("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx59(
|
|
1282
1382
|
"path",
|
|
1283
1383
|
{
|
|
1284
1384
|
fill: fill || color || "currentColor",
|
|
@@ -1287,9 +1387,9 @@ var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stro
|
|
|
1287
1387
|
) }), ModelGeminiFilled_default = IconModelGeminiFilled;
|
|
1288
1388
|
|
|
1289
1389
|
// src/components/ModelDeepmindFilled.tsx
|
|
1290
|
-
import { jsx as
|
|
1291
|
-
var IconModelDeepmindFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1292
|
-
/* @__PURE__ */
|
|
1390
|
+
import { jsx as jsx60, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1391
|
+
var IconModelDeepmindFilled = ({ 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: [
|
|
1392
|
+
/* @__PURE__ */ jsx60("g", { clipPath: "url(#clip0_40_67)", children: /* @__PURE__ */ jsx60(
|
|
1293
1393
|
"path",
|
|
1294
1394
|
{
|
|
1295
1395
|
fill: fill || color || "currentColor",
|
|
@@ -1298,12 +1398,12 @@ var IconModelDeepmindFilled = ({ size, width, height, color, className, fill, st
|
|
|
1298
1398
|
clipRule: "evenodd"
|
|
1299
1399
|
}
|
|
1300
1400
|
) }),
|
|
1301
|
-
/* @__PURE__ */
|
|
1401
|
+
/* @__PURE__ */ jsx60("defs", { children: /* @__PURE__ */ jsx60("clipPath", { id: "clip0_40_67", children: /* @__PURE__ */ jsx60("rect", { width: "20", height: "20", fill: stroke || color || "currentColor", transform: "translate(2 2)" }) }) })
|
|
1302
1402
|
] }), ModelDeepmindFilled_default = IconModelDeepmindFilled;
|
|
1303
1403
|
|
|
1304
1404
|
// src/components/ModelSoraFilled.tsx
|
|
1305
|
-
import { jsx as
|
|
1306
|
-
var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1405
|
+
import { jsx as jsx61 } from "react/jsx-runtime";
|
|
1406
|
+
var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx61("svg", { fill: "none", viewBox: "0 0 25 25", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx61(
|
|
1307
1407
|
"path",
|
|
1308
1408
|
{
|
|
1309
1409
|
fill: fill || color || "currentColor",
|
|
@@ -1312,7 +1412,7 @@ var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1312
1412
|
) }), ModelSoraFilled_default = IconModelSoraFilled;
|
|
1313
1413
|
|
|
1314
1414
|
// src/components/ModelNanobananaLogoNomoFilled.tsx
|
|
1315
|
-
import { jsx as
|
|
1415
|
+
import { jsx as jsx62, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
1316
1416
|
var IconModelNanobananaLogoNomoFilled = ({
|
|
1317
1417
|
size,
|
|
1318
1418
|
width,
|
|
@@ -1321,64 +1421,64 @@ var IconModelNanobananaLogoNomoFilled = ({
|
|
|
1321
1421
|
className,
|
|
1322
1422
|
fill,
|
|
1323
1423
|
stroke
|
|
1324
|
-
}) => /* @__PURE__ */
|
|
1325
|
-
/* @__PURE__ */
|
|
1424
|
+
}) => /* @__PURE__ */ jsxs32("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1425
|
+
/* @__PURE__ */ jsx62(
|
|
1326
1426
|
"path",
|
|
1327
1427
|
{
|
|
1328
1428
|
fill: "#5A5C62",
|
|
1329
1429
|
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"
|
|
1330
1430
|
}
|
|
1331
1431
|
),
|
|
1332
|
-
/* @__PURE__ */
|
|
1432
|
+
/* @__PURE__ */ jsx62(
|
|
1333
1433
|
"path",
|
|
1334
1434
|
{
|
|
1335
1435
|
fill: "#D5D6D7",
|
|
1336
1436
|
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"
|
|
1337
1437
|
}
|
|
1338
1438
|
),
|
|
1339
|
-
/* @__PURE__ */
|
|
1439
|
+
/* @__PURE__ */ jsx62(
|
|
1340
1440
|
"path",
|
|
1341
1441
|
{
|
|
1342
1442
|
fill: "#C4C5C7",
|
|
1343
1443
|
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"
|
|
1344
1444
|
}
|
|
1345
1445
|
),
|
|
1346
|
-
/* @__PURE__ */
|
|
1446
|
+
/* @__PURE__ */ jsx62(
|
|
1347
1447
|
"path",
|
|
1348
1448
|
{
|
|
1349
1449
|
fill: "#7B7C81",
|
|
1350
1450
|
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"
|
|
1351
1451
|
}
|
|
1352
1452
|
),
|
|
1353
|
-
/* @__PURE__ */
|
|
1453
|
+
/* @__PURE__ */ jsx62(
|
|
1354
1454
|
"path",
|
|
1355
1455
|
{
|
|
1356
1456
|
fill: "#85878B",
|
|
1357
1457
|
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"
|
|
1358
1458
|
}
|
|
1359
1459
|
),
|
|
1360
|
-
/* @__PURE__ */
|
|
1460
|
+
/* @__PURE__ */ jsx62(
|
|
1361
1461
|
"path",
|
|
1362
1462
|
{
|
|
1363
1463
|
fill: "#1B1D24",
|
|
1364
1464
|
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"
|
|
1365
1465
|
}
|
|
1366
1466
|
),
|
|
1367
|
-
/* @__PURE__ */
|
|
1467
|
+
/* @__PURE__ */ jsx62(
|
|
1368
1468
|
"path",
|
|
1369
1469
|
{
|
|
1370
1470
|
fill: "#D5D6D7",
|
|
1371
1471
|
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"
|
|
1372
1472
|
}
|
|
1373
1473
|
),
|
|
1374
|
-
/* @__PURE__ */
|
|
1474
|
+
/* @__PURE__ */ jsx62(
|
|
1375
1475
|
"path",
|
|
1376
1476
|
{
|
|
1377
1477
|
fill: "#85878B",
|
|
1378
1478
|
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"
|
|
1379
1479
|
}
|
|
1380
1480
|
),
|
|
1381
|
-
/* @__PURE__ */
|
|
1481
|
+
/* @__PURE__ */ jsx62(
|
|
1382
1482
|
"path",
|
|
1383
1483
|
{
|
|
1384
1484
|
fill: "#D5D6D7",
|
|
@@ -1388,8 +1488,8 @@ var IconModelNanobananaLogoNomoFilled = ({
|
|
|
1388
1488
|
] }), ModelNanobananaLogoNomoFilled_default = IconModelNanobananaLogoNomoFilled;
|
|
1389
1489
|
|
|
1390
1490
|
// src/components/Models.tsx
|
|
1391
|
-
import { jsx as
|
|
1392
|
-
var IconModels = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1491
|
+
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
1492
|
+
var IconModels = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx63("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx63(
|
|
1393
1493
|
"path",
|
|
1394
1494
|
{
|
|
1395
1495
|
fill: stroke || color || "currentColor",
|
|
@@ -1400,23 +1500,23 @@ var IconModels = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1400
1500
|
) }), Models_default = IconModels;
|
|
1401
1501
|
|
|
1402
1502
|
// src/components/More.tsx
|
|
1403
|
-
import { jsx as
|
|
1404
|
-
var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1405
|
-
/* @__PURE__ */
|
|
1503
|
+
import { jsx as jsx64, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
1504
|
+
var IconMore = ({ 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: [
|
|
1505
|
+
/* @__PURE__ */ jsx64(
|
|
1406
1506
|
"path",
|
|
1407
1507
|
{
|
|
1408
1508
|
fill: stroke || color || "currentColor",
|
|
1409
1509
|
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"
|
|
1410
1510
|
}
|
|
1411
1511
|
),
|
|
1412
|
-
/* @__PURE__ */
|
|
1512
|
+
/* @__PURE__ */ jsx64(
|
|
1413
1513
|
"path",
|
|
1414
1514
|
{
|
|
1415
1515
|
fill: stroke || color || "currentColor",
|
|
1416
1516
|
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"
|
|
1417
1517
|
}
|
|
1418
1518
|
),
|
|
1419
|
-
/* @__PURE__ */
|
|
1519
|
+
/* @__PURE__ */ jsx64(
|
|
1420
1520
|
"path",
|
|
1421
1521
|
{
|
|
1422
1522
|
fill: stroke || color || "currentColor",
|
|
@@ -1426,30 +1526,30 @@ var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1426
1526
|
] }), More_default = IconMore;
|
|
1427
1527
|
|
|
1428
1528
|
// src/components/Moresettings.tsx
|
|
1429
|
-
import { jsx as
|
|
1430
|
-
var IconMoresettings = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1431
|
-
/* @__PURE__ */
|
|
1529
|
+
import { jsx as jsx65, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
1530
|
+
var IconMoresettings = ({ 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: [
|
|
1531
|
+
/* @__PURE__ */ jsx65(
|
|
1432
1532
|
"path",
|
|
1433
1533
|
{
|
|
1434
1534
|
fill: stroke || color || "currentColor",
|
|
1435
1535
|
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"
|
|
1436
1536
|
}
|
|
1437
1537
|
),
|
|
1438
|
-
/* @__PURE__ */
|
|
1538
|
+
/* @__PURE__ */ jsx65(
|
|
1439
1539
|
"path",
|
|
1440
1540
|
{
|
|
1441
1541
|
fill: stroke || color || "currentColor",
|
|
1442
1542
|
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"
|
|
1443
1543
|
}
|
|
1444
1544
|
),
|
|
1445
|
-
/* @__PURE__ */
|
|
1545
|
+
/* @__PURE__ */ jsx65(
|
|
1446
1546
|
"path",
|
|
1447
1547
|
{
|
|
1448
1548
|
fill: stroke || color || "currentColor",
|
|
1449
1549
|
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"
|
|
1450
1550
|
}
|
|
1451
1551
|
),
|
|
1452
|
-
/* @__PURE__ */
|
|
1552
|
+
/* @__PURE__ */ jsx65(
|
|
1453
1553
|
"path",
|
|
1454
1554
|
{
|
|
1455
1555
|
fill: stroke || color || "currentColor",
|
|
@@ -1461,8 +1561,8 @@ var IconMoresettings = ({ size, width, height, color, className, fill, stroke })
|
|
|
1461
1561
|
] }), Moresettings_default = IconMoresettings;
|
|
1462
1562
|
|
|
1463
1563
|
// src/components/Musicassets.tsx
|
|
1464
|
-
import { jsx as
|
|
1465
|
-
var IconMusicassets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1564
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
1565
|
+
var IconMusicassets = ({ 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(
|
|
1466
1566
|
"path",
|
|
1467
1567
|
{
|
|
1468
1568
|
fill: stroke || color || "currentColor",
|
|
@@ -1473,9 +1573,9 @@ var IconMusicassets = ({ size, width, height, color, className, fill, stroke })
|
|
|
1473
1573
|
) }), Musicassets_default = IconMusicassets;
|
|
1474
1574
|
|
|
1475
1575
|
// src/components/Mute.tsx
|
|
1476
|
-
import { jsx as
|
|
1477
|
-
var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1478
|
-
/* @__PURE__ */
|
|
1576
|
+
import { jsx as jsx67, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
1577
|
+
var IconMute = ({ 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: [
|
|
1578
|
+
/* @__PURE__ */ jsx67(
|
|
1479
1579
|
"path",
|
|
1480
1580
|
{
|
|
1481
1581
|
fill: stroke || color || "currentColor",
|
|
@@ -1484,7 +1584,7 @@ var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1484
1584
|
clipRule: "evenodd"
|
|
1485
1585
|
}
|
|
1486
1586
|
),
|
|
1487
|
-
/* @__PURE__ */
|
|
1587
|
+
/* @__PURE__ */ jsx67(
|
|
1488
1588
|
"path",
|
|
1489
1589
|
{
|
|
1490
1590
|
fill: stroke || color || "currentColor",
|
|
@@ -1494,9 +1594,9 @@ var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1494
1594
|
] }), Mute_default = IconMute;
|
|
1495
1595
|
|
|
1496
1596
|
// src/components/Nextscene.tsx
|
|
1497
|
-
import { jsx as
|
|
1498
|
-
var IconNextscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1499
|
-
/* @__PURE__ */
|
|
1597
|
+
import { jsx as jsx68, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
1598
|
+
var IconNextscene = ({ 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: [
|
|
1599
|
+
/* @__PURE__ */ jsx68(
|
|
1500
1600
|
"rect",
|
|
1501
1601
|
{
|
|
1502
1602
|
width: "22.5",
|
|
@@ -1509,7 +1609,7 @@ var IconNextscene = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1509
1609
|
strokeWidth: "1.5"
|
|
1510
1610
|
}
|
|
1511
1611
|
),
|
|
1512
|
-
/* @__PURE__ */
|
|
1612
|
+
/* @__PURE__ */ jsx68(
|
|
1513
1613
|
"path",
|
|
1514
1614
|
{
|
|
1515
1615
|
fill: stroke || color || "currentColor",
|
|
@@ -1519,18 +1619,18 @@ var IconNextscene = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1519
1619
|
] }), Nextscene_default = IconNextscene;
|
|
1520
1620
|
|
|
1521
1621
|
// src/components/Oneclickgenerate.tsx
|
|
1522
|
-
import { jsx as
|
|
1523
|
-
var IconOneclickgenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1524
|
-
/* @__PURE__ */
|
|
1525
|
-
/* @__PURE__ */
|
|
1526
|
-
/* @__PURE__ */
|
|
1622
|
+
import { jsx as jsx69, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
1623
|
+
var IconOneclickgenerate = ({ 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: [
|
|
1624
|
+
/* @__PURE__ */ jsx69("path", { fill: stroke || color || "currentColor", d: "M12 4.5V0H9.75V4.5H12Z" }),
|
|
1625
|
+
/* @__PURE__ */ jsx69("path", { fill: stroke || color || "currentColor", d: "M4.5 9.75H0V12H4.5V9.75Z" }),
|
|
1626
|
+
/* @__PURE__ */ jsx69(
|
|
1527
1627
|
"path",
|
|
1528
1628
|
{
|
|
1529
1629
|
fill: stroke || color || "currentColor",
|
|
1530
1630
|
d: "M5.2045 6.7955L1.4545 3.0455L3.0455 1.4545L6.7955 5.2045L5.2045 6.7955Z"
|
|
1531
1631
|
}
|
|
1532
1632
|
),
|
|
1533
|
-
/* @__PURE__ */
|
|
1633
|
+
/* @__PURE__ */ jsx69(
|
|
1534
1634
|
"path",
|
|
1535
1635
|
{
|
|
1536
1636
|
fill: stroke || color || "currentColor",
|
|
@@ -1542,9 +1642,9 @@ var IconOneclickgenerate = ({ size, width, height, color, className, fill, strok
|
|
|
1542
1642
|
] }), Oneclickgenerate_default = IconOneclickgenerate;
|
|
1543
1643
|
|
|
1544
1644
|
// src/components/Opendemo.tsx
|
|
1545
|
-
import { jsx as
|
|
1546
|
-
var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1547
|
-
/* @__PURE__ */
|
|
1645
|
+
import { jsx as jsx70, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
1646
|
+
var IconOpendemo = ({ 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: [
|
|
1647
|
+
/* @__PURE__ */ jsx70(
|
|
1548
1648
|
"path",
|
|
1549
1649
|
{
|
|
1550
1650
|
fill: stroke || color || "currentColor",
|
|
@@ -1553,12 +1653,16 @@ var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1553
1653
|
clipRule: "evenodd"
|
|
1554
1654
|
}
|
|
1555
1655
|
),
|
|
1556
|
-
/* @__PURE__ */
|
|
1656
|
+
/* @__PURE__ */ jsx70("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
1557
1657
|
] }), Opendemo_default = IconOpendemo;
|
|
1558
1658
|
|
|
1659
|
+
// src/components/PageError.tsx
|
|
1660
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
1661
|
+
var IconPageError = ({ 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("path", { fill: stroke || color || "currentColor", d: "M22.5 13.125H1.5V10.875H22.5V13.125Z" }) }), PageError_default = IconPageError;
|
|
1662
|
+
|
|
1559
1663
|
// src/components/Pencil.tsx
|
|
1560
|
-
import { jsx as
|
|
1561
|
-
var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1664
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
1665
|
+
var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx72("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx72(
|
|
1562
1666
|
"path",
|
|
1563
1667
|
{
|
|
1564
1668
|
fill: stroke || color || "currentColor",
|
|
@@ -1568,23 +1672,35 @@ var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1568
1672
|
}
|
|
1569
1673
|
) }), Pencil_default = IconPencil;
|
|
1570
1674
|
|
|
1675
|
+
// src/components/Pick.tsx
|
|
1676
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
1677
|
+
var IconPick = ({ 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(
|
|
1678
|
+
"path",
|
|
1679
|
+
{
|
|
1680
|
+
fill: stroke || color || "currentColor",
|
|
1681
|
+
d: "M18 24H21V0H3V24H6L12 18L18 24ZM5.25 21.568L12 14.818L18.75 21.568V2.25H5.25V21.568Z",
|
|
1682
|
+
fillRule: "evenodd",
|
|
1683
|
+
clipRule: "evenodd"
|
|
1684
|
+
}
|
|
1685
|
+
) }), Pick_default = IconPick;
|
|
1686
|
+
|
|
1571
1687
|
// src/components/PlanFilled.tsx
|
|
1572
|
-
import { jsx as
|
|
1573
|
-
var IconPlanFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1574
|
-
/* @__PURE__ */
|
|
1688
|
+
import { jsx as jsx74, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
1689
|
+
var IconPlanFilled = ({ 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: [
|
|
1690
|
+
/* @__PURE__ */ jsx74("g", { clipPath: "url(#clip0_2_30)", children: /* @__PURE__ */ jsx74(
|
|
1575
1691
|
"path",
|
|
1576
1692
|
{
|
|
1577
1693
|
fill: fill || color || "currentColor",
|
|
1578
1694
|
d: "M13.5 10.5L15 0H12L3 10.5V13.5H10.5L9 24H12L21 13.5L21 10.5H13.5Z"
|
|
1579
1695
|
}
|
|
1580
1696
|
) }),
|
|
1581
|
-
/* @__PURE__ */
|
|
1697
|
+
/* @__PURE__ */ jsx74("defs", { children: /* @__PURE__ */ jsx74("clipPath", { id: "clip0_2_30", children: /* @__PURE__ */ jsx74("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
1582
1698
|
] }), PlanFilled_default = IconPlanFilled;
|
|
1583
1699
|
|
|
1584
1700
|
// src/components/Previouscene.tsx
|
|
1585
|
-
import { jsx as
|
|
1586
|
-
var IconPreviouscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1587
|
-
/* @__PURE__ */
|
|
1701
|
+
import { jsx as jsx75, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
1702
|
+
var IconPreviouscene = ({ 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: [
|
|
1703
|
+
/* @__PURE__ */ jsx75(
|
|
1588
1704
|
"rect",
|
|
1589
1705
|
{
|
|
1590
1706
|
width: "22.5",
|
|
@@ -1596,7 +1712,7 @@ var IconPreviouscene = ({ size, width, height, color, className, fill, stroke })
|
|
|
1596
1712
|
strokeWidth: "1.5"
|
|
1597
1713
|
}
|
|
1598
1714
|
),
|
|
1599
|
-
/* @__PURE__ */
|
|
1715
|
+
/* @__PURE__ */ jsx75(
|
|
1600
1716
|
"path",
|
|
1601
1717
|
{
|
|
1602
1718
|
fill: stroke || color || "currentColor",
|
|
@@ -1605,12 +1721,24 @@ var IconPreviouscene = ({ size, width, height, color, className, fill, stroke })
|
|
|
1605
1721
|
)
|
|
1606
1722
|
] }), Previouscene_default = IconPreviouscene;
|
|
1607
1723
|
|
|
1724
|
+
// src/components/ProblemNoticeFilled.tsx
|
|
1725
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
1726
|
+
var IconProblemNoticeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx76("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx76(
|
|
1727
|
+
"path",
|
|
1728
|
+
{
|
|
1729
|
+
fill: fill || color || "currentColor",
|
|
1730
|
+
d: "M24 22.5H0V18L10.5 0H13.5L24 18V22.5ZM10.5 6H13.5V13.5H10.5V6ZM10.5 16.5H13.5V19.5H10.5V16.5Z",
|
|
1731
|
+
fillRule: "evenodd",
|
|
1732
|
+
clipRule: "evenodd"
|
|
1733
|
+
}
|
|
1734
|
+
) }), ProblemNoticeFilled_default = IconProblemNoticeFilled;
|
|
1735
|
+
|
|
1608
1736
|
// src/components/Problem.tsx
|
|
1609
|
-
import { jsx as
|
|
1610
|
-
var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1611
|
-
/* @__PURE__ */
|
|
1612
|
-
/* @__PURE__ */
|
|
1613
|
-
/* @__PURE__ */
|
|
1737
|
+
import { jsx as jsx77, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
1738
|
+
var IconProblem = ({ 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: [
|
|
1739
|
+
/* @__PURE__ */ jsx77("path", { fill: stroke || color || "currentColor", d: "M13.125 13.5V6H10.875V13.5H13.125Z" }),
|
|
1740
|
+
/* @__PURE__ */ jsx77("path", { fill: stroke || color || "currentColor", d: "M13.125 18V15.75H10.875V18H13.125Z" }),
|
|
1741
|
+
/* @__PURE__ */ jsx77(
|
|
1614
1742
|
"path",
|
|
1615
1743
|
{
|
|
1616
1744
|
fill: stroke || color || "currentColor",
|
|
@@ -1622,8 +1750,8 @@ var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1622
1750
|
] }), Problem_default = IconProblem;
|
|
1623
1751
|
|
|
1624
1752
|
// src/components/Ratio169.tsx
|
|
1625
|
-
import { jsx as
|
|
1626
|
-
var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1753
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
1754
|
+
var IconRatio169 = ({ 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(
|
|
1627
1755
|
"path",
|
|
1628
1756
|
{
|
|
1629
1757
|
fill: stroke || color || "currentColor",
|
|
@@ -1632,16 +1760,16 @@ var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1632
1760
|
) }), Ratio169_default = IconRatio169;
|
|
1633
1761
|
|
|
1634
1762
|
// src/components/Ratio11.tsx
|
|
1635
|
-
import { jsx as
|
|
1636
|
-
var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1637
|
-
/* @__PURE__ */
|
|
1763
|
+
import { jsx as jsx79, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
1764
|
+
var IconRatio11 = ({ 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: [
|
|
1765
|
+
/* @__PURE__ */ jsx79("g", { clipPath: "url(#clip0_13_501)", children: /* @__PURE__ */ jsx79(
|
|
1638
1766
|
"path",
|
|
1639
1767
|
{
|
|
1640
1768
|
fill: stroke || color || "currentColor",
|
|
1641
1769
|
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"
|
|
1642
1770
|
}
|
|
1643
1771
|
) }),
|
|
1644
|
-
/* @__PURE__ */
|
|
1772
|
+
/* @__PURE__ */ jsx79("defs", { children: /* @__PURE__ */ jsx79("clipPath", { id: "clip0_13_501", children: /* @__PURE__ */ jsx79(
|
|
1645
1773
|
"rect",
|
|
1646
1774
|
{
|
|
1647
1775
|
width: "24",
|
|
@@ -1653,16 +1781,16 @@ var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1653
1781
|
] }), Ratio11_default = IconRatio11;
|
|
1654
1782
|
|
|
1655
1783
|
// src/components/Ratio916.tsx
|
|
1656
|
-
import { jsx as
|
|
1657
|
-
var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1658
|
-
/* @__PURE__ */
|
|
1784
|
+
import { jsx as jsx80, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
1785
|
+
var IconRatio916 = ({ 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: [
|
|
1786
|
+
/* @__PURE__ */ jsx80("g", { clipPath: "url(#clip0_13_499)", children: /* @__PURE__ */ jsx80(
|
|
1659
1787
|
"path",
|
|
1660
1788
|
{
|
|
1661
1789
|
fill: stroke || color || "currentColor",
|
|
1662
1790
|
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"
|
|
1663
1791
|
}
|
|
1664
1792
|
) }),
|
|
1665
|
-
/* @__PURE__ */
|
|
1793
|
+
/* @__PURE__ */ jsx80("defs", { children: /* @__PURE__ */ jsx80("clipPath", { id: "clip0_13_499", children: /* @__PURE__ */ jsx80(
|
|
1666
1794
|
"rect",
|
|
1667
1795
|
{
|
|
1668
1796
|
width: "24",
|
|
@@ -1674,16 +1802,16 @@ var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1674
1802
|
] }), Ratio916_default = IconRatio916;
|
|
1675
1803
|
|
|
1676
1804
|
// src/components/Ratio.tsx
|
|
1677
|
-
import { jsx as
|
|
1678
|
-
var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1679
|
-
/* @__PURE__ */
|
|
1805
|
+
import { jsx as jsx81, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
1806
|
+
var IconRatio = ({ 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: [
|
|
1807
|
+
/* @__PURE__ */ jsx81(
|
|
1680
1808
|
"path",
|
|
1681
1809
|
{
|
|
1682
1810
|
fill: stroke || color || "currentColor",
|
|
1683
1811
|
d: "M3 0V3L0 3V5.25L18.75 5.25V24H21V21H24V18.75H21L21 3L5.25 3V0H3Z"
|
|
1684
1812
|
}
|
|
1685
1813
|
),
|
|
1686
|
-
/* @__PURE__ */
|
|
1814
|
+
/* @__PURE__ */ jsx81(
|
|
1687
1815
|
"path",
|
|
1688
1816
|
{
|
|
1689
1817
|
fill: stroke || color || "currentColor",
|
|
@@ -1693,8 +1821,8 @@ var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1693
1821
|
] }), Ratio_default = IconRatio;
|
|
1694
1822
|
|
|
1695
1823
|
// src/components/ReEdit.tsx
|
|
1696
|
-
import { jsx as
|
|
1697
|
-
var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1824
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
1825
|
+
var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx82("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx82(
|
|
1698
1826
|
"path",
|
|
1699
1827
|
{
|
|
1700
1828
|
fill: stroke || color || "currentColor",
|
|
@@ -1705,8 +1833,8 @@ var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1705
1833
|
) }), ReEdit_default = IconReEdit;
|
|
1706
1834
|
|
|
1707
1835
|
// src/components/Regenerate.tsx
|
|
1708
|
-
import { jsx as
|
|
1709
|
-
var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1836
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
1837
|
+
var IconRegenerate = ({ 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(
|
|
1710
1838
|
"path",
|
|
1711
1839
|
{
|
|
1712
1840
|
fill: stroke || color || "currentColor",
|
|
@@ -1717,21 +1845,21 @@ var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1717
1845
|
) }), Regenerate_default = IconRegenerate;
|
|
1718
1846
|
|
|
1719
1847
|
// src/components/Scriptmode.tsx
|
|
1720
|
-
import { jsx as
|
|
1721
|
-
var IconScriptmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1722
|
-
/* @__PURE__ */
|
|
1723
|
-
/* @__PURE__ */
|
|
1724
|
-
/* @__PURE__ */
|
|
1725
|
-
/* @__PURE__ */
|
|
1726
|
-
/* @__PURE__ */
|
|
1727
|
-
/* @__PURE__ */
|
|
1728
|
-
/* @__PURE__ */
|
|
1729
|
-
/* @__PURE__ */
|
|
1848
|
+
import { jsx as jsx84, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
1849
|
+
var IconScriptmode = ({ 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: [
|
|
1850
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H3.75V1.5H1.5V3.75Z" }),
|
|
1851
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M1.5 10.125H3.75V7.875H1.5V10.125Z" }),
|
|
1852
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H3.75V13.875H1.5V16.125Z" }),
|
|
1853
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H3.75V20.25H1.5V22.5Z" }),
|
|
1854
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M7.5 3.75H22.5V1.5H7.5V3.75Z" }),
|
|
1855
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M7.5 10.125H22.5V7.875H7.5V10.125Z" }),
|
|
1856
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M7.5 16.125H22.5V13.875H7.5V16.125Z" }),
|
|
1857
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M7.5 22.5H22.5V20.25H7.5V22.5Z" })
|
|
1730
1858
|
] }), Scriptmode_default = IconScriptmode;
|
|
1731
1859
|
|
|
1732
1860
|
// src/components/SocialX.tsx
|
|
1733
|
-
import { jsx as
|
|
1734
|
-
var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1861
|
+
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
1862
|
+
var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx85("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx85(
|
|
1735
1863
|
"path",
|
|
1736
1864
|
{
|
|
1737
1865
|
fill: fill || color || "currentColor",
|
|
@@ -1740,8 +1868,8 @@ var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1740
1868
|
) }), SocialX_default = IconSocialX;
|
|
1741
1869
|
|
|
1742
1870
|
// src/components/SocialDiscord.tsx
|
|
1743
|
-
import { jsx as
|
|
1744
|
-
var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1871
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
1872
|
+
var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx86("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx86(
|
|
1745
1873
|
"path",
|
|
1746
1874
|
{
|
|
1747
1875
|
fill: fill || color || "currentColor",
|
|
@@ -1750,9 +1878,9 @@ var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }
|
|
|
1750
1878
|
) }), SocialDiscord_default = IconSocialDiscord;
|
|
1751
1879
|
|
|
1752
1880
|
// src/components/SoundOff.tsx
|
|
1753
|
-
import { jsx as
|
|
1754
|
-
var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1755
|
-
/* @__PURE__ */
|
|
1881
|
+
import { jsx as jsx87, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
1882
|
+
var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs46("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1883
|
+
/* @__PURE__ */ jsx87(
|
|
1756
1884
|
"path",
|
|
1757
1885
|
{
|
|
1758
1886
|
fill: stroke || color || "currentColor",
|
|
@@ -1761,7 +1889,7 @@ var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1761
1889
|
clipRule: "evenodd"
|
|
1762
1890
|
}
|
|
1763
1891
|
),
|
|
1764
|
-
/* @__PURE__ */
|
|
1892
|
+
/* @__PURE__ */ jsx87(
|
|
1765
1893
|
"path",
|
|
1766
1894
|
{
|
|
1767
1895
|
fill: stroke || color || "currentColor",
|
|
@@ -1771,9 +1899,9 @@ var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1771
1899
|
] }), SoundOff_default = IconSoundOff;
|
|
1772
1900
|
|
|
1773
1901
|
// src/components/SoundOn.tsx
|
|
1774
|
-
import { jsx as
|
|
1775
|
-
var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1776
|
-
/* @__PURE__ */
|
|
1902
|
+
import { jsx as jsx88, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
1903
|
+
var IconSoundOn = ({ 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: [
|
|
1904
|
+
/* @__PURE__ */ jsx88(
|
|
1777
1905
|
"path",
|
|
1778
1906
|
{
|
|
1779
1907
|
fill: stroke || color || "currentColor",
|
|
@@ -1782,14 +1910,14 @@ var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1782
1910
|
clipRule: "evenodd"
|
|
1783
1911
|
}
|
|
1784
1912
|
),
|
|
1785
|
-
/* @__PURE__ */
|
|
1913
|
+
/* @__PURE__ */ jsx88(
|
|
1786
1914
|
"path",
|
|
1787
1915
|
{
|
|
1788
1916
|
fill: stroke || color || "currentColor",
|
|
1789
1917
|
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"
|
|
1790
1918
|
}
|
|
1791
1919
|
),
|
|
1792
|
-
/* @__PURE__ */
|
|
1920
|
+
/* @__PURE__ */ jsx88(
|
|
1793
1921
|
"path",
|
|
1794
1922
|
{
|
|
1795
1923
|
fill: stroke || color || "currentColor",
|
|
@@ -1799,8 +1927,8 @@ var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
1799
1927
|
] }), SoundOn_default = IconSoundOn;
|
|
1800
1928
|
|
|
1801
1929
|
// src/components/Storyboard.tsx
|
|
1802
|
-
import { jsx as
|
|
1803
|
-
var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1930
|
+
import { jsx as jsx89 } from "react/jsx-runtime";
|
|
1931
|
+
var IconStoryboard = ({ 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(
|
|
1804
1932
|
"path",
|
|
1805
1933
|
{
|
|
1806
1934
|
fill: stroke || color || "currentColor",
|
|
@@ -1811,25 +1939,25 @@ var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1811
1939
|
) }), Storyboard_default = IconStoryboard;
|
|
1812
1940
|
|
|
1813
1941
|
// src/components/StyleAutoFilled.tsx
|
|
1814
|
-
import { jsx as
|
|
1815
|
-
var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1816
|
-
/* @__PURE__ */
|
|
1942
|
+
import { jsx as jsx90, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
1943
|
+
var IconStyleAutoFilled = ({ 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: [
|
|
1944
|
+
/* @__PURE__ */ jsx90(
|
|
1817
1945
|
"path",
|
|
1818
1946
|
{
|
|
1819
1947
|
fill: fill || color || "currentColor",
|
|
1820
1948
|
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"
|
|
1821
1949
|
}
|
|
1822
1950
|
),
|
|
1823
|
-
/* @__PURE__ */
|
|
1951
|
+
/* @__PURE__ */ jsx90(
|
|
1824
1952
|
"path",
|
|
1825
1953
|
{
|
|
1826
1954
|
fill: fill || color || "currentColor",
|
|
1827
1955
|
d: "M0 16.5V15L6 13.5L7.5 7.5H9L10.5 13.5L16.5 15V16.5L10.5 18L9 24H7.5L6 18L0 16.5Z"
|
|
1828
1956
|
}
|
|
1829
1957
|
),
|
|
1830
|
-
/* @__PURE__ */
|
|
1831
|
-
/* @__PURE__ */
|
|
1832
|
-
/* @__PURE__ */
|
|
1958
|
+
/* @__PURE__ */ jsx90("path", { fill: fill || color || "currentColor", d: "M1.5 3L3.75 0.75L6 3L3.75 5.25L1.5 3Z" }),
|
|
1959
|
+
/* @__PURE__ */ jsx90("path", { fill: fill || color || "currentColor", d: "M22.5 21L19.5 18L16.5 21L19.5 24L22.5 21Z" }),
|
|
1960
|
+
/* @__PURE__ */ jsx90(
|
|
1833
1961
|
"path",
|
|
1834
1962
|
{
|
|
1835
1963
|
fill: fill || color || "currentColor",
|
|
@@ -1839,44 +1967,44 @@ var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1839
1967
|
] }), StyleAutoFilled_default = IconStyleAutoFilled;
|
|
1840
1968
|
|
|
1841
1969
|
// src/components/Style.tsx
|
|
1842
|
-
import { jsx as
|
|
1843
|
-
var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1844
|
-
/* @__PURE__ */
|
|
1970
|
+
import { jsx as jsx91, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
1971
|
+
var IconStyle = ({ 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: [
|
|
1972
|
+
/* @__PURE__ */ jsx91(
|
|
1845
1973
|
"path",
|
|
1846
1974
|
{
|
|
1847
1975
|
fill: stroke || color || "currentColor",
|
|
1848
1976
|
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"
|
|
1849
1977
|
}
|
|
1850
1978
|
),
|
|
1851
|
-
/* @__PURE__ */
|
|
1979
|
+
/* @__PURE__ */ jsx91(
|
|
1852
1980
|
"path",
|
|
1853
1981
|
{
|
|
1854
1982
|
fill: stroke || color || "currentColor",
|
|
1855
1983
|
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"
|
|
1856
1984
|
}
|
|
1857
1985
|
),
|
|
1858
|
-
/* @__PURE__ */
|
|
1986
|
+
/* @__PURE__ */ jsx91(
|
|
1859
1987
|
"path",
|
|
1860
1988
|
{
|
|
1861
1989
|
fill: stroke || color || "currentColor",
|
|
1862
1990
|
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"
|
|
1863
1991
|
}
|
|
1864
1992
|
),
|
|
1865
|
-
/* @__PURE__ */
|
|
1993
|
+
/* @__PURE__ */ jsx91(
|
|
1866
1994
|
"path",
|
|
1867
1995
|
{
|
|
1868
1996
|
fill: stroke || color || "currentColor",
|
|
1869
1997
|
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"
|
|
1870
1998
|
}
|
|
1871
1999
|
),
|
|
1872
|
-
/* @__PURE__ */
|
|
2000
|
+
/* @__PURE__ */ jsx91(
|
|
1873
2001
|
"path",
|
|
1874
2002
|
{
|
|
1875
2003
|
fill: stroke || color || "currentColor",
|
|
1876
2004
|
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"
|
|
1877
2005
|
}
|
|
1878
2006
|
),
|
|
1879
|
-
/* @__PURE__ */
|
|
2007
|
+
/* @__PURE__ */ jsx91(
|
|
1880
2008
|
"path",
|
|
1881
2009
|
{
|
|
1882
2010
|
fill: stroke || color || "currentColor",
|
|
@@ -1887,9 +2015,9 @@ var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1887
2015
|
)
|
|
1888
2016
|
] }), Style_default = IconStyle;
|
|
1889
2017
|
|
|
1890
|
-
// src/components/
|
|
1891
|
-
import { jsx as
|
|
1892
|
-
var
|
|
2018
|
+
// src/components/SwitchOnFilled.tsx
|
|
2019
|
+
import { jsx as jsx92 } from "react/jsx-runtime";
|
|
2020
|
+
var IconSwitchOnFilled = ({ 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(
|
|
1893
2021
|
"path",
|
|
1894
2022
|
{
|
|
1895
2023
|
fill: fill || color || "currentColor",
|
|
@@ -1897,47 +2025,68 @@ var IconSwitchOn = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1897
2025
|
fillRule: "evenodd",
|
|
1898
2026
|
clipRule: "evenodd"
|
|
1899
2027
|
}
|
|
1900
|
-
) }),
|
|
2028
|
+
) }), SwitchOnFilled_default = IconSwitchOnFilled;
|
|
2029
|
+
|
|
2030
|
+
// src/components/Target.tsx
|
|
2031
|
+
import { jsx as jsx93, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
2032
|
+
var IconTarget = ({ 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: [
|
|
2033
|
+
/* @__PURE__ */ jsx93(
|
|
2034
|
+
"path",
|
|
2035
|
+
{
|
|
2036
|
+
fill: stroke || color || "currentColor",
|
|
2037
|
+
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"
|
|
2038
|
+
}
|
|
2039
|
+
),
|
|
2040
|
+
/* @__PURE__ */ jsx93(
|
|
2041
|
+
"path",
|
|
2042
|
+
{
|
|
2043
|
+
fill: stroke || color || "currentColor",
|
|
2044
|
+
d: "M13.125 0V2.3142C17.6107 2.82957 21.1704 6.38926 21.6858 10.875H24V13.125H21.6858C21.1704 17.6107 17.6107 21.1704 13.125 21.6858V24H10.875V21.6858C6.38926 21.1704 2.82957 17.6107 2.3142 13.125H0V10.875H2.3142C2.82957 6.38926 6.38926 2.82957 10.875 2.3142V0H13.125ZM10.875 7.5V4.58381C7.63352 5.07141 5.07141 7.63352 4.58381 10.875H7.5V13.125H4.58381C5.07141 16.3665 7.63352 18.9286 10.875 19.4162V16.5H13.125V19.4162C16.3665 18.9286 18.9286 16.3665 19.4162 13.125H16.5V10.875H19.4162C18.9286 7.63352 16.3665 5.07141 13.125 4.58381V7.5H10.875Z",
|
|
2045
|
+
fillRule: "evenodd",
|
|
2046
|
+
clipRule: "evenodd"
|
|
2047
|
+
}
|
|
2048
|
+
)
|
|
2049
|
+
] }), Target_default = IconTarget;
|
|
1901
2050
|
|
|
1902
2051
|
// src/components/TextLogo.tsx
|
|
1903
|
-
import { jsx as
|
|
1904
|
-
var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1905
|
-
/* @__PURE__ */
|
|
2052
|
+
import { jsx as jsx94, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
2053
|
+
var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs51("svg", { fill: "none", viewBox: "0 0 124 40", className, width: width || size, height: height || size, children: [
|
|
2054
|
+
/* @__PURE__ */ jsx94(
|
|
1906
2055
|
"path",
|
|
1907
2056
|
{
|
|
1908
2057
|
fill: fill || color || "currentColor",
|
|
1909
2058
|
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"
|
|
1910
2059
|
}
|
|
1911
2060
|
),
|
|
1912
|
-
/* @__PURE__ */
|
|
2061
|
+
/* @__PURE__ */ jsx94(
|
|
1913
2062
|
"path",
|
|
1914
2063
|
{
|
|
1915
2064
|
fill: fill || color || "currentColor",
|
|
1916
2065
|
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"
|
|
1917
2066
|
}
|
|
1918
2067
|
),
|
|
1919
|
-
/* @__PURE__ */
|
|
2068
|
+
/* @__PURE__ */ jsx94(
|
|
1920
2069
|
"path",
|
|
1921
2070
|
{
|
|
1922
2071
|
fill: fill || color || "currentColor",
|
|
1923
2072
|
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"
|
|
1924
2073
|
}
|
|
1925
2074
|
),
|
|
1926
|
-
/* @__PURE__ */
|
|
2075
|
+
/* @__PURE__ */ jsx94(
|
|
1927
2076
|
"path",
|
|
1928
2077
|
{
|
|
1929
2078
|
fill: fill || color || "currentColor",
|
|
1930
2079
|
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"
|
|
1931
2080
|
}
|
|
1932
2081
|
),
|
|
1933
|
-
/* @__PURE__ */
|
|
2082
|
+
/* @__PURE__ */ jsx94(
|
|
1934
2083
|
"path",
|
|
1935
2084
|
{
|
|
1936
2085
|
fill: fill || color || "currentColor",
|
|
1937
2086
|
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"
|
|
1938
2087
|
}
|
|
1939
2088
|
),
|
|
1940
|
-
/* @__PURE__ */
|
|
2089
|
+
/* @__PURE__ */ jsx94(
|
|
1941
2090
|
"path",
|
|
1942
2091
|
{
|
|
1943
2092
|
fill: fill || color || "currentColor",
|
|
@@ -1947,16 +2096,16 @@ var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1947
2096
|
] }), TextLogo_default = IconTextLogo;
|
|
1948
2097
|
|
|
1949
2098
|
// src/components/ToolsFilled.tsx
|
|
1950
|
-
import { jsx as
|
|
1951
|
-
var IconToolsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1952
|
-
/* @__PURE__ */
|
|
2099
|
+
import { jsx as jsx95, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
2100
|
+
var IconToolsFilled = ({ 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: [
|
|
2101
|
+
/* @__PURE__ */ jsx95(
|
|
1953
2102
|
"path",
|
|
1954
2103
|
{
|
|
1955
2104
|
fill: fill || color || "currentColor",
|
|
1956
2105
|
d: "M24 12L19.5 16.5L15 15L9 9L7.5 4.5L12 0L16.5 1.5L22.5 7.5L24 12Z"
|
|
1957
2106
|
}
|
|
1958
2107
|
),
|
|
1959
|
-
/* @__PURE__ */
|
|
2108
|
+
/* @__PURE__ */ jsx95(
|
|
1960
2109
|
"path",
|
|
1961
2110
|
{
|
|
1962
2111
|
fill: fill || color || "currentColor",
|
|
@@ -1966,8 +2115,8 @@ var IconToolsFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
1966
2115
|
] }), ToolsFilled_default = IconToolsFilled;
|
|
1967
2116
|
|
|
1968
2117
|
// src/components/Tools.tsx
|
|
1969
|
-
import { jsx as
|
|
1970
|
-
var IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2118
|
+
import { jsx as jsx96 } from "react/jsx-runtime";
|
|
2119
|
+
var IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx96("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx96(
|
|
1971
2120
|
"path",
|
|
1972
2121
|
{
|
|
1973
2122
|
stroke: stroke || color || "currentColor",
|
|
@@ -1977,8 +2126,8 @@ var IconTools = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1977
2126
|
) }), Tools_default = IconTools;
|
|
1978
2127
|
|
|
1979
2128
|
// src/components/Uploadfiles.tsx
|
|
1980
|
-
import { jsx as
|
|
1981
|
-
var IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2129
|
+
import { jsx as jsx97 } from "react/jsx-runtime";
|
|
2130
|
+
var IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx97("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx97(
|
|
1982
2131
|
"path",
|
|
1983
2132
|
{
|
|
1984
2133
|
fill: stroke || color || "currentColor",
|
|
@@ -1987,8 +2136,8 @@ var IconUploadfiles = ({ size, width, height, color, className, fill, stroke })
|
|
|
1987
2136
|
) }), Uploadfiles_default = IconUploadfiles;
|
|
1988
2137
|
|
|
1989
2138
|
// src/components/Userfeedback.tsx
|
|
1990
|
-
import { jsx as
|
|
1991
|
-
var IconUserfeedback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2139
|
+
import { jsx as jsx98 } from "react/jsx-runtime";
|
|
2140
|
+
var IconUserfeedback = ({ 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(
|
|
1992
2141
|
"path",
|
|
1993
2142
|
{
|
|
1994
2143
|
fill: stroke || color || "currentColor",
|
|
@@ -1999,23 +2148,23 @@ var IconUserfeedback = ({ size, width, height, color, className, fill, stroke })
|
|
|
1999
2148
|
) }), Userfeedback_default = IconUserfeedback;
|
|
2000
2149
|
|
|
2001
2150
|
// src/components/VideoGeneration.tsx
|
|
2002
|
-
import { jsx as
|
|
2003
|
-
var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2004
|
-
/* @__PURE__ */
|
|
2151
|
+
import { jsx as jsx99, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
2152
|
+
var IconVideoGeneration = ({ 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: [
|
|
2153
|
+
/* @__PURE__ */ jsx99(
|
|
2005
2154
|
"path",
|
|
2006
2155
|
{
|
|
2007
2156
|
fill: stroke || color || "currentColor",
|
|
2008
2157
|
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"
|
|
2009
2158
|
}
|
|
2010
2159
|
),
|
|
2011
|
-
/* @__PURE__ */
|
|
2160
|
+
/* @__PURE__ */ jsx99(
|
|
2012
2161
|
"path",
|
|
2013
2162
|
{
|
|
2014
2163
|
fill: stroke || color || "currentColor",
|
|
2015
2164
|
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"
|
|
2016
2165
|
}
|
|
2017
2166
|
),
|
|
2018
|
-
/* @__PURE__ */
|
|
2167
|
+
/* @__PURE__ */ jsx99(
|
|
2019
2168
|
"path",
|
|
2020
2169
|
{
|
|
2021
2170
|
fill: stroke || color || "currentColor",
|
|
@@ -2027,10 +2176,10 @@ var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke
|
|
|
2027
2176
|
] }), VideoGeneration_default = IconVideoGeneration;
|
|
2028
2177
|
|
|
2029
2178
|
// src/components/VideoLength.tsx
|
|
2030
|
-
import { jsx as
|
|
2031
|
-
var IconVideoLength = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2032
|
-
/* @__PURE__ */
|
|
2033
|
-
/* @__PURE__ */
|
|
2179
|
+
import { jsx as jsx100, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
2180
|
+
var IconVideoLength = ({ 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: [
|
|
2181
|
+
/* @__PURE__ */ jsx100("path", { fill: stroke || color || "currentColor", d: "M10.875 9V15H13.125V9H10.875Z" }),
|
|
2182
|
+
/* @__PURE__ */ jsx100(
|
|
2034
2183
|
"path",
|
|
2035
2184
|
{
|
|
2036
2185
|
fill: stroke || color || "currentColor",
|
|
@@ -2042,9 +2191,9 @@ var IconVideoLength = ({ size, width, height, color, className, fill, stroke })
|
|
|
2042
2191
|
] }), VideoLength_default = IconVideoLength;
|
|
2043
2192
|
|
|
2044
2193
|
// src/components/Videogenerate.tsx
|
|
2045
|
-
import { jsx as
|
|
2046
|
-
var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2047
|
-
/* @__PURE__ */
|
|
2194
|
+
import { jsx as jsx101, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
2195
|
+
var IconVideogenerate = ({ 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: [
|
|
2196
|
+
/* @__PURE__ */ jsx101(
|
|
2048
2197
|
"path",
|
|
2049
2198
|
{
|
|
2050
2199
|
fill: stroke || color || "currentColor",
|
|
@@ -2053,7 +2202,7 @@ var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }
|
|
|
2053
2202
|
clipRule: "evenodd"
|
|
2054
2203
|
}
|
|
2055
2204
|
),
|
|
2056
|
-
/* @__PURE__ */
|
|
2205
|
+
/* @__PURE__ */ jsx101(
|
|
2057
2206
|
"path",
|
|
2058
2207
|
{
|
|
2059
2208
|
fill: stroke || color || "currentColor",
|
|
@@ -2065,8 +2214,8 @@ var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }
|
|
|
2065
2214
|
] }), Videogenerate_default = IconVideogenerate;
|
|
2066
2215
|
|
|
2067
2216
|
// src/components/Visualstyles.tsx
|
|
2068
|
-
import { jsx as
|
|
2069
|
-
var IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2217
|
+
import { jsx as jsx102 } from "react/jsx-runtime";
|
|
2218
|
+
var IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx102("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx102(
|
|
2070
2219
|
"path",
|
|
2071
2220
|
{
|
|
2072
2221
|
fill: stroke || color || "currentColor",
|
|
@@ -2077,9 +2226,9 @@ var IconVisualstyles = ({ size, width, height, color, className, fill, stroke })
|
|
|
2077
2226
|
) }), Visualstyles_default = IconVisualstyles;
|
|
2078
2227
|
|
|
2079
2228
|
// src/components/Volume.tsx
|
|
2080
|
-
import { jsx as
|
|
2081
|
-
var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2082
|
-
/* @__PURE__ */
|
|
2229
|
+
import { jsx as jsx103, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
2230
|
+
var IconVolume = ({ 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: [
|
|
2231
|
+
/* @__PURE__ */ jsx103(
|
|
2083
2232
|
"path",
|
|
2084
2233
|
{
|
|
2085
2234
|
fill: stroke || color || "currentColor",
|
|
@@ -2088,14 +2237,14 @@ var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2088
2237
|
clipRule: "evenodd"
|
|
2089
2238
|
}
|
|
2090
2239
|
),
|
|
2091
|
-
/* @__PURE__ */
|
|
2240
|
+
/* @__PURE__ */ jsx103(
|
|
2092
2241
|
"path",
|
|
2093
2242
|
{
|
|
2094
2243
|
fill: stroke || color || "currentColor",
|
|
2095
2244
|
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"
|
|
2096
2245
|
}
|
|
2097
2246
|
),
|
|
2098
|
-
/* @__PURE__ */
|
|
2247
|
+
/* @__PURE__ */ jsx103(
|
|
2099
2248
|
"path",
|
|
2100
2249
|
{
|
|
2101
2250
|
fill: stroke || color || "currentColor",
|
|
@@ -2122,12 +2271,17 @@ export {
|
|
|
2122
2271
|
CreditFilled_default as IconCreditFilled,
|
|
2123
2272
|
Cursor_default as IconCursor,
|
|
2124
2273
|
Delete_default as IconDelete,
|
|
2274
|
+
DeleteSceneChoice_default as IconDeleteSceneChoice,
|
|
2125
2275
|
Download_default as IconDownload,
|
|
2126
2276
|
FeedbackFailFilled_default as IconFeedbackFailFilled,
|
|
2127
2277
|
FeedbackPendingFilled_default as IconFeedbackPendingFilled,
|
|
2128
2278
|
FeedbackProblem_default as IconFeedbackProblem,
|
|
2129
2279
|
FeedbackProblemFilled_default as IconFeedbackProblemFilled,
|
|
2130
2280
|
FiletypePdfFilled_default as IconFiletypePdfFilled,
|
|
2281
|
+
FiletypePdfLumiFilled_default as IconFiletypePdfLumiFilled,
|
|
2282
|
+
GamecontrolChoice_default as IconGamecontrolChoice,
|
|
2283
|
+
GamecontrolGameplay_default as IconGamecontrolGameplay,
|
|
2284
|
+
GamecontrolLinear_default as IconGamecontrolLinear,
|
|
2131
2285
|
Gamelanguage_default as IconGamelanguage,
|
|
2132
2286
|
Gamepreview_default as IconGamepreview,
|
|
2133
2287
|
GenerateFilled_default as IconGenerateFilled,
|
|
@@ -2145,12 +2299,14 @@ export {
|
|
|
2145
2299
|
GenreScifi_default as IconGenreScifi,
|
|
2146
2300
|
GenreSuspense_default as IconGenreSuspense,
|
|
2147
2301
|
GoogleLogoFilled_default as IconGoogleLogoFilled,
|
|
2302
|
+
Handtool_default as IconHandtool,
|
|
2148
2303
|
Help_default as IconHelp,
|
|
2149
2304
|
Homepage_default as IconHomepage,
|
|
2150
2305
|
HomepageFilled_default as IconHomepageFilled,
|
|
2151
2306
|
ImageGeneration_default as IconImageGeneration,
|
|
2152
|
-
|
|
2307
|
+
ImageLoadFailedFilled_default as IconImageLoadFailedFilled,
|
|
2153
2308
|
Info_default as IconInfo,
|
|
2309
|
+
Invitecode_default as IconInvitecode,
|
|
2154
2310
|
Loading_default as IconLoading,
|
|
2155
2311
|
Login_default as IconLogin,
|
|
2156
2312
|
Logout_default as IconLogout,
|
|
@@ -2166,10 +2322,13 @@ export {
|
|
|
2166
2322
|
Nextscene_default as IconNextscene,
|
|
2167
2323
|
Oneclickgenerate_default as IconOneclickgenerate,
|
|
2168
2324
|
Opendemo_default as IconOpendemo,
|
|
2325
|
+
PageError_default as IconPageError,
|
|
2169
2326
|
Pencil_default as IconPencil,
|
|
2327
|
+
Pick_default as IconPick,
|
|
2170
2328
|
PlanFilled_default as IconPlanFilled,
|
|
2171
2329
|
Previouscene_default as IconPreviouscene,
|
|
2172
2330
|
Problem_default as IconProblem,
|
|
2331
|
+
ProblemNoticeFilled_default as IconProblemNoticeFilled,
|
|
2173
2332
|
Ratio_default as IconRatio,
|
|
2174
2333
|
Ratio11_default as IconRatio11,
|
|
2175
2334
|
Ratio169_default as IconRatio169,
|
|
@@ -2184,7 +2343,8 @@ export {
|
|
|
2184
2343
|
Storyboard_default as IconStoryboard,
|
|
2185
2344
|
Style_default as IconStyle,
|
|
2186
2345
|
StyleAutoFilled_default as IconStyleAutoFilled,
|
|
2187
|
-
|
|
2346
|
+
SwitchOnFilled_default as IconSwitchOnFilled,
|
|
2347
|
+
Target_default as IconTarget,
|
|
2188
2348
|
TextLogo_default as IconTextLogo,
|
|
2189
2349
|
Tools_default as IconTools,
|
|
2190
2350
|
ToolsFilled_default as IconToolsFilled,
|