@yoroll/react-icon 0.0.18 → 0.0.21
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/README.md +59 -0
- package/dist/index.cjs +889 -586
- package/dist/index.iife.js +871 -585
- package/dist/index.iife.min.js +4 -4
- package/dist/index.js +1088 -768
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.js +2 -2
- package/dist/types/components/Canvaposition.d.ts +4 -0
- package/dist/types/components/Chathistory.d.ts +4 -0
- package/dist/types/components/Document.d.ts +4 -0
- package/dist/types/components/Edit.d.ts +4 -0
- package/dist/types/components/Gameuivariable.d.ts +4 -0
- package/dist/types/components/Gameuivariable2.d.ts +4 -0
- package/dist/types/components/Generate.d.ts +4 -0
- package/dist/types/components/Magic.d.ts +4 -0
- package/dist/types/components/ModelhappyhorseFilled.d.ts +4 -0
- package/dist/types/components/Newchat.d.ts +4 -0
- package/dist/types/components/Notification.d.ts +4 -0
- package/dist/types/components/Quote.d.ts +4 -0
- package/dist/types/components/Satisfied.d.ts +4 -0
- package/dist/types/components/Sendup.d.ts +4 -0
- package/dist/types/components/Sendup2.d.ts +4 -0
- package/dist/types/components/Singleunchecked.d.ts +4 -0
- package/dist/types/components/TipsFilled.d.ts +4 -0
- package/dist/types/components/Unsatisfied.d.ts +4 -0
- package/dist/types/components/index.d.ts +18 -1
- package/package.json +1 -1
- package/dist/types/components/Changeprofilephoto.d.ts +0 -4
package/dist/index.js
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
|
-
/*! @lineargame svg icons react v0.0.
|
|
1
|
+
/*! @lineargame svg icons react v0.0.21 */
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
// src/components/
|
|
4
|
+
// src/components/Document.tsx
|
|
5
5
|
import { jsx } from "react/jsx-runtime";
|
|
6
|
-
var
|
|
6
|
+
var IconDocument = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx(
|
|
7
|
+
"path",
|
|
8
|
+
{
|
|
9
|
+
fill: stroke || color || "currentColor",
|
|
10
|
+
d: "M21 7.5L13.5 0H3V24H21V7.5ZM18.568 8.25L12.75 2.43198V8.25H18.568ZM10.5 2.25H5.25V21.75H18.75V10.5H10.5V2.25Z",
|
|
11
|
+
fillRule: "evenodd",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}
|
|
14
|
+
) }), Document_default = IconDocument;
|
|
15
|
+
|
|
16
|
+
// src/components/Homepage.tsx
|
|
17
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
18
|
+
var IconHomepage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx2("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx2(
|
|
7
19
|
"path",
|
|
8
20
|
{
|
|
9
21
|
fill: stroke || color || "currentColor",
|
|
@@ -14,8 +26,8 @@ var IconHomepage = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
14
26
|
) }), Homepage_default = IconHomepage;
|
|
15
27
|
|
|
16
28
|
// src/components/Aiwriting.tsx
|
|
17
|
-
import { jsx as
|
|
18
|
-
var IconAiwriting = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
29
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
30
|
+
var IconAiwriting = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx3("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx3(
|
|
19
31
|
"path",
|
|
20
32
|
{
|
|
21
33
|
fill: stroke || color || "currentColor",
|
|
@@ -24,8 +36,8 @@ var IconAiwriting = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
24
36
|
) }), Aiwriting_default = IconAiwriting;
|
|
25
37
|
|
|
26
38
|
// src/components/FmVeditorstart.tsx
|
|
27
|
-
import { jsx as
|
|
28
|
-
var IconFmVeditorstart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
39
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
40
|
+
var IconFmVeditorstart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx4("svg", { fill: "none", viewBox: "0 0 70 40", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx4(
|
|
29
41
|
"path",
|
|
30
42
|
{
|
|
31
43
|
fill: fill || color || "currentColor",
|
|
@@ -36,8 +48,8 @@ var IconFmVeditorstart = ({ size, width, height, color, className, fill, stroke
|
|
|
36
48
|
) }), FmVeditorstart_default = IconFmVeditorstart;
|
|
37
49
|
|
|
38
50
|
// src/components/QtEsave.tsx
|
|
39
|
-
import { jsx as
|
|
40
|
-
var IconQtEsave = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
51
|
+
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
52
|
+
var IconQtEsave = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx5("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx5(
|
|
41
53
|
"path",
|
|
42
54
|
{
|
|
43
55
|
fill: stroke || color || "currentColor",
|
|
@@ -48,9 +60,9 @@ var IconQtEsave = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
48
60
|
) }), QtEsave_default = IconQtEsave;
|
|
49
61
|
|
|
50
62
|
// src/components/Uploadimage.tsx
|
|
51
|
-
import { jsx as
|
|
63
|
+
import { jsx as jsx6, jsxs } from "react/jsx-runtime";
|
|
52
64
|
var IconUploadimage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
53
|
-
/* @__PURE__ */
|
|
65
|
+
/* @__PURE__ */ jsx6(
|
|
54
66
|
"path",
|
|
55
67
|
{
|
|
56
68
|
fill: stroke || color || "currentColor",
|
|
@@ -59,7 +71,7 @@ var IconUploadimage = ({ size, width, height, color, className, fill, stroke })
|
|
|
59
71
|
clipRule: "evenodd"
|
|
60
72
|
}
|
|
61
73
|
),
|
|
62
|
-
/* @__PURE__ */
|
|
74
|
+
/* @__PURE__ */ jsx6(
|
|
63
75
|
"path",
|
|
64
76
|
{
|
|
65
77
|
fill: stroke || color || "currentColor",
|
|
@@ -69,9 +81,9 @@ var IconUploadimage = ({ size, width, height, color, className, fill, stroke })
|
|
|
69
81
|
] }), Uploadimage_default = IconUploadimage;
|
|
70
82
|
|
|
71
83
|
// src/components/Aboutus.tsx
|
|
72
|
-
import { jsx as
|
|
84
|
+
import { jsx as jsx7, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
73
85
|
var IconAboutus = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs2("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
74
|
-
/* @__PURE__ */
|
|
86
|
+
/* @__PURE__ */ jsx7(
|
|
75
87
|
"path",
|
|
76
88
|
{
|
|
77
89
|
fill: stroke || color || "currentColor",
|
|
@@ -80,7 +92,7 @@ var IconAboutus = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
80
92
|
clipRule: "evenodd"
|
|
81
93
|
}
|
|
82
94
|
),
|
|
83
|
-
/* @__PURE__ */
|
|
95
|
+
/* @__PURE__ */ jsx7(
|
|
84
96
|
"path",
|
|
85
97
|
{
|
|
86
98
|
fill: stroke || color || "currentColor",
|
|
@@ -90,16 +102,16 @@ var IconAboutus = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
90
102
|
] }), Aboutus_default = IconAboutus;
|
|
91
103
|
|
|
92
104
|
// src/components/AddSceneChoice.tsx
|
|
93
|
-
import { jsx as
|
|
105
|
+
import { jsx as jsx8, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
94
106
|
var IconAddSceneChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs3("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
95
|
-
/* @__PURE__ */
|
|
107
|
+
/* @__PURE__ */ jsx8(
|
|
96
108
|
"path",
|
|
97
109
|
{
|
|
98
110
|
fill: stroke || color || "currentColor",
|
|
99
111
|
d: "M10.875 6V10.875H6V13.125H10.875V18H13.125V13.125H18V10.875H13.125V6H10.875Z"
|
|
100
112
|
}
|
|
101
113
|
),
|
|
102
|
-
/* @__PURE__ */
|
|
114
|
+
/* @__PURE__ */ jsx8(
|
|
103
115
|
"path",
|
|
104
116
|
{
|
|
105
117
|
fill: stroke || color || "currentColor",
|
|
@@ -111,8 +123,8 @@ var IconAddSceneChoice = ({ size, width, height, color, className, fill, stroke
|
|
|
111
123
|
] }), AddSceneChoice_default = IconAddSceneChoice;
|
|
112
124
|
|
|
113
125
|
// src/components/Add.tsx
|
|
114
|
-
import { jsx as
|
|
115
|
-
var IconAdd = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
126
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
127
|
+
var IconAdd = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx9("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx9(
|
|
116
128
|
"path",
|
|
117
129
|
{
|
|
118
130
|
fill: stroke || color || "currentColor",
|
|
@@ -121,9 +133,9 @@ var IconAdd = ({ size, width, height, color, className, fill, stroke }) => /* @_
|
|
|
121
133
|
) }), Add_default = IconAdd;
|
|
122
134
|
|
|
123
135
|
// src/components/Agreements.tsx
|
|
124
|
-
import { jsx as
|
|
136
|
+
import { jsx as jsx10, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
125
137
|
var IconAgreements = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs4("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
126
|
-
/* @__PURE__ */
|
|
138
|
+
/* @__PURE__ */ jsx10(
|
|
127
139
|
"path",
|
|
128
140
|
{
|
|
129
141
|
fill: stroke || color || "currentColor",
|
|
@@ -132,12 +144,12 @@ var IconAgreements = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
132
144
|
clipRule: "evenodd"
|
|
133
145
|
}
|
|
134
146
|
),
|
|
135
|
-
/* @__PURE__ */
|
|
147
|
+
/* @__PURE__ */ jsx10("path", { fill: stroke || color || "currentColor", d: "M7.5 16.25H16.5V14H7.5V16.25Z" })
|
|
136
148
|
] }), Agreements_default = IconAgreements;
|
|
137
149
|
|
|
138
150
|
// src/components/AngleDown.tsx
|
|
139
|
-
import { jsx as
|
|
140
|
-
var IconAngleDown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
151
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
152
|
+
var IconAngleDown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx11("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx11(
|
|
141
153
|
"path",
|
|
142
154
|
{
|
|
143
155
|
fill: stroke || color || "currentColor",
|
|
@@ -146,8 +158,8 @@ var IconAngleDown = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
146
158
|
) }), AngleDown_default = IconAngleDown;
|
|
147
159
|
|
|
148
160
|
// src/components/Angleright.tsx
|
|
149
|
-
import { jsx as
|
|
150
|
-
var IconAngleright = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
161
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
162
|
+
var IconAngleright = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx12("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx12(
|
|
151
163
|
"path",
|
|
152
164
|
{
|
|
153
165
|
fill: stroke || color || "currentColor",
|
|
@@ -156,8 +168,8 @@ var IconAngleright = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
156
168
|
) }), Angleright_default = IconAngleright;
|
|
157
169
|
|
|
158
170
|
// src/components/Announcement.tsx
|
|
159
|
-
import { jsx as
|
|
160
|
-
var IconAnnouncement = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
171
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
172
|
+
var IconAnnouncement = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx13("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx13(
|
|
161
173
|
"path",
|
|
162
174
|
{
|
|
163
175
|
fill: stroke || color || "currentColor",
|
|
@@ -168,8 +180,8 @@ var IconAnnouncement = ({ size, width, height, color, className, fill, stroke })
|
|
|
168
180
|
) }), Announcement_default = IconAnnouncement;
|
|
169
181
|
|
|
170
182
|
// src/components/Artboard.tsx
|
|
171
|
-
import { jsx as
|
|
172
|
-
var IconArtboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
183
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
|
184
|
+
var IconArtboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx14("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx14(
|
|
173
185
|
"path",
|
|
174
186
|
{
|
|
175
187
|
fill: stroke || color || "currentColor",
|
|
@@ -180,19 +192,19 @@ var IconArtboard = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
180
192
|
) }), Artboard_default = IconArtboard;
|
|
181
193
|
|
|
182
194
|
// src/components/AssetsFilled.tsx
|
|
183
|
-
import { jsx as
|
|
195
|
+
import { jsx as jsx15, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
184
196
|
var IconAssetsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs5("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
185
|
-
/* @__PURE__ */
|
|
186
|
-
/* @__PURE__ */
|
|
187
|
-
/* @__PURE__ */
|
|
197
|
+
/* @__PURE__ */ jsx15("path", { fill: fill || color || "currentColor", d: "M19.5 0H4.5V3H19.5V0Z" }),
|
|
198
|
+
/* @__PURE__ */ jsx15("path", { fill: fill || color || "currentColor", d: "M3 6H21V9H3V6Z" }),
|
|
199
|
+
/* @__PURE__ */ jsx15("path", { fill: fill || color || "currentColor", d: "M1.5 12H22.5V22.5H1.5V12Z" })
|
|
188
200
|
] }), AssetsFilled_default = IconAssetsFilled;
|
|
189
201
|
|
|
190
202
|
// src/components/Assets.tsx
|
|
191
|
-
import { jsx as
|
|
203
|
+
import { jsx as jsx16, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
192
204
|
var IconAssets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs6("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
193
|
-
/* @__PURE__ */
|
|
194
|
-
/* @__PURE__ */
|
|
195
|
-
/* @__PURE__ */
|
|
205
|
+
/* @__PURE__ */ jsx16("path", { fill: stroke || color || "currentColor", d: "M19.5 0H4.5V2.25H19.5V0Z" }),
|
|
206
|
+
/* @__PURE__ */ jsx16("path", { fill: stroke || color || "currentColor", d: "M3 5.25H21V7.5H3V5.25Z" }),
|
|
207
|
+
/* @__PURE__ */ jsx16(
|
|
196
208
|
"path",
|
|
197
209
|
{
|
|
198
210
|
fill: stroke || color || "currentColor",
|
|
@@ -204,8 +216,8 @@ var IconAssets = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
204
216
|
] }), Assets_default = IconAssets;
|
|
205
217
|
|
|
206
218
|
// src/components/Autolayout.tsx
|
|
207
|
-
import { jsx as
|
|
208
|
-
var IconAutolayout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
219
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
220
|
+
var IconAutolayout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx17("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx17(
|
|
209
221
|
"path",
|
|
210
222
|
{
|
|
211
223
|
fill: stroke || color || "currentColor",
|
|
@@ -214,9 +226,9 @@ var IconAutolayout = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
214
226
|
) }), Autolayout_default = IconAutolayout;
|
|
215
227
|
|
|
216
228
|
// src/components/Backtoprojects.tsx
|
|
217
|
-
import { jsx as
|
|
229
|
+
import { jsx as jsx18, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
218
230
|
var IconBacktoprojects = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs7("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
219
|
-
/* @__PURE__ */
|
|
231
|
+
/* @__PURE__ */ jsx18(
|
|
220
232
|
"path",
|
|
221
233
|
{
|
|
222
234
|
fill: stroke || color || "currentColor",
|
|
@@ -225,7 +237,7 @@ var IconBacktoprojects = ({ size, width, height, color, className, fill, stroke
|
|
|
225
237
|
clipRule: "evenodd"
|
|
226
238
|
}
|
|
227
239
|
),
|
|
228
|
-
/* @__PURE__ */
|
|
240
|
+
/* @__PURE__ */ jsx18(
|
|
229
241
|
"path",
|
|
230
242
|
{
|
|
231
243
|
fill: stroke || color || "currentColor",
|
|
@@ -234,7 +246,7 @@ var IconBacktoprojects = ({ size, width, height, color, className, fill, stroke
|
|
|
234
246
|
clipRule: "evenodd"
|
|
235
247
|
}
|
|
236
248
|
),
|
|
237
|
-
/* @__PURE__ */
|
|
249
|
+
/* @__PURE__ */ jsx18(
|
|
238
250
|
"path",
|
|
239
251
|
{
|
|
240
252
|
fill: stroke || color || "currentColor",
|
|
@@ -243,7 +255,7 @@ var IconBacktoprojects = ({ size, width, height, color, className, fill, stroke
|
|
|
243
255
|
clipRule: "evenodd"
|
|
244
256
|
}
|
|
245
257
|
),
|
|
246
|
-
/* @__PURE__ */
|
|
258
|
+
/* @__PURE__ */ jsx18(
|
|
247
259
|
"path",
|
|
248
260
|
{
|
|
249
261
|
fill: stroke || color || "currentColor",
|
|
@@ -255,8 +267,8 @@ var IconBacktoprojects = ({ size, width, height, color, className, fill, stroke
|
|
|
255
267
|
] }), Backtoprojects_default = IconBacktoprojects;
|
|
256
268
|
|
|
257
269
|
// src/components/Backward.tsx
|
|
258
|
-
import { jsx as
|
|
259
|
-
var IconBackward = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
270
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
271
|
+
var IconBackward = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx19("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx19(
|
|
260
272
|
"path",
|
|
261
273
|
{
|
|
262
274
|
fill: stroke || color || "currentColor",
|
|
@@ -265,8 +277,8 @@ var IconBackward = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
265
277
|
) }), Backward_default = IconBackward;
|
|
266
278
|
|
|
267
279
|
// src/components/BatchShots.tsx
|
|
268
|
-
import { jsx as
|
|
269
|
-
var IconBatchShots = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
280
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
281
|
+
var IconBatchShots = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx20("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx20(
|
|
270
282
|
"path",
|
|
271
283
|
{
|
|
272
284
|
fill: stroke || color || "currentColor",
|
|
@@ -276,9 +288,30 @@ var IconBatchShots = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
276
288
|
}
|
|
277
289
|
) }), BatchShots_default = IconBatchShots;
|
|
278
290
|
|
|
291
|
+
// src/components/Canvaposition.tsx
|
|
292
|
+
import { jsx as jsx21, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
293
|
+
var IconCanvaposition = ({ 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: [
|
|
294
|
+
/* @__PURE__ */ jsx21(
|
|
295
|
+
"path",
|
|
296
|
+
{
|
|
297
|
+
fill: stroke || color || "currentColor",
|
|
298
|
+
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"
|
|
299
|
+
}
|
|
300
|
+
),
|
|
301
|
+
/* @__PURE__ */ jsx21(
|
|
302
|
+
"path",
|
|
303
|
+
{
|
|
304
|
+
fill: stroke || color || "currentColor",
|
|
305
|
+
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",
|
|
306
|
+
fillRule: "evenodd",
|
|
307
|
+
clipRule: "evenodd"
|
|
308
|
+
}
|
|
309
|
+
)
|
|
310
|
+
] }), Canvaposition_default = IconCanvaposition;
|
|
311
|
+
|
|
279
312
|
// src/components/Canvasmode.tsx
|
|
280
|
-
import { jsx as
|
|
281
|
-
var IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
313
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
314
|
+
var IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx22("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx22(
|
|
282
315
|
"path",
|
|
283
316
|
{
|
|
284
317
|
fill: stroke || color || "currentColor",
|
|
@@ -289,8 +322,8 @@ var IconCanvasmode = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
289
322
|
) }), Canvasmode_default = IconCanvasmode;
|
|
290
323
|
|
|
291
324
|
// src/components/CcgFilled.tsx
|
|
292
|
-
import { jsx as
|
|
293
|
-
var IconCcgFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
325
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
326
|
+
var IconCcgFilled = ({ 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(
|
|
294
327
|
"path",
|
|
295
328
|
{
|
|
296
329
|
fill: fill || color || "currentColor",
|
|
@@ -301,8 +334,8 @@ var IconCcgFilled = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
301
334
|
) }), CcgFilled_default = IconCcgFilled;
|
|
302
335
|
|
|
303
336
|
// src/components/Ccg.tsx
|
|
304
|
-
import { jsx as
|
|
305
|
-
var IconCcg = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
337
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
338
|
+
var IconCcg = ({ 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(
|
|
306
339
|
"path",
|
|
307
340
|
{
|
|
308
341
|
fill: stroke || color || "currentColor",
|
|
@@ -313,30 +346,30 @@ var IconCcg = ({ size, width, height, color, className, fill, stroke }) => /* @_
|
|
|
313
346
|
) }), Ccg_default = IconCcg;
|
|
314
347
|
|
|
315
348
|
// src/components/Ccggame.tsx
|
|
316
|
-
import { jsx as
|
|
317
|
-
var IconCcggame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
318
|
-
/* @__PURE__ */
|
|
349
|
+
import { jsx as jsx25, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
350
|
+
var IconCcggame = ({ 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: [
|
|
351
|
+
/* @__PURE__ */ jsx25(
|
|
319
352
|
"path",
|
|
320
353
|
{
|
|
321
354
|
fill: stroke || color || "currentColor",
|
|
322
355
|
d: "M9.75 9.75C9.75 10.9926 8.74264 12 7.5 12C6.25736 12 5.25 10.9926 5.25 9.75C5.25 8.50736 6.25736 7.5 7.5 7.5C8.74264 7.5 9.75 8.50736 9.75 9.75Z"
|
|
323
356
|
}
|
|
324
357
|
),
|
|
325
|
-
/* @__PURE__ */
|
|
358
|
+
/* @__PURE__ */ jsx25(
|
|
326
359
|
"path",
|
|
327
360
|
{
|
|
328
361
|
fill: stroke || color || "currentColor",
|
|
329
362
|
d: "M19.125 8.0625C19.125 8.78737 18.5374 9.375 17.8125 9.375C17.0876 9.375 16.5 8.78737 16.5 8.0625C16.5 7.33763 17.0876 6.75 17.8125 6.75C18.5374 6.75 19.125 7.33763 19.125 8.0625Z"
|
|
330
363
|
}
|
|
331
364
|
),
|
|
332
|
-
/* @__PURE__ */
|
|
365
|
+
/* @__PURE__ */ jsx25(
|
|
333
366
|
"path",
|
|
334
367
|
{
|
|
335
368
|
fill: stroke || color || "currentColor",
|
|
336
369
|
d: "M16.3125 12.75C17.0374 12.75 17.625 12.1624 17.625 11.4375C17.625 10.7126 17.0374 10.125 16.3125 10.125C15.5876 10.125 15 10.7126 15 11.4375C15 12.1624 15.5876 12.75 16.3125 12.75Z"
|
|
337
370
|
}
|
|
338
371
|
),
|
|
339
|
-
/* @__PURE__ */
|
|
372
|
+
/* @__PURE__ */ jsx25(
|
|
340
373
|
"path",
|
|
341
374
|
{
|
|
342
375
|
fill: stroke || color || "currentColor",
|
|
@@ -348,8 +381,8 @@ var IconCcggame = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
348
381
|
] }), Ccggame_default = IconCcggame;
|
|
349
382
|
|
|
350
383
|
// src/components/Ccglanguage.tsx
|
|
351
|
-
import { jsx as
|
|
352
|
-
var IconCcglanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
384
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
385
|
+
var IconCcglanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx26("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx26(
|
|
353
386
|
"path",
|
|
354
387
|
{
|
|
355
388
|
fill: stroke || color || "currentColor",
|
|
@@ -357,21 +390,9 @@ var IconCcglanguage = ({ size, width, height, color, className, fill, stroke })
|
|
|
357
390
|
}
|
|
358
391
|
) }), Ccglanguage_default = IconCcglanguage;
|
|
359
392
|
|
|
360
|
-
// src/components/Changeprofilephoto.tsx
|
|
361
|
-
import { jsx as jsx25 } from "react/jsx-runtime";
|
|
362
|
-
var IconChangeprofilephoto = ({ 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(
|
|
363
|
-
"path",
|
|
364
|
-
{
|
|
365
|
-
fill: stroke || color || "currentColor",
|
|
366
|
-
d: "M22.602 8.14797L8.25 22.5H1.5V15.75L15.852 1.39797C16.7471 0.502866 17.9612 0 19.227 0C21.8631 0 24 2.13693 24 4.77297C24 6.03884 23.4971 7.25287 22.602 8.14797ZM3.75 20.25V16.682L13.9205 6.51149L17.4885 10.0795L7.31802 20.25H3.75ZM19.0795 8.48851L21.011 6.55698C21.4842 6.08383 21.75 5.4421 21.75 4.77297C21.75 3.37957 20.6204 2.25 19.227 2.25C18.5579 2.25 17.9162 2.51581 17.443 2.98896L15.5115 4.9205L19.0795 8.48851Z",
|
|
367
|
-
fillRule: "evenodd",
|
|
368
|
-
clipRule: "evenodd"
|
|
369
|
-
}
|
|
370
|
-
) }), Changeprofilephoto_default = IconChangeprofilephoto;
|
|
371
|
-
|
|
372
393
|
// src/components/Chaptercollapse.tsx
|
|
373
|
-
import { jsx as
|
|
374
|
-
var IconChaptercollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
394
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
395
|
+
var IconChaptercollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx27("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx27(
|
|
375
396
|
"path",
|
|
376
397
|
{
|
|
377
398
|
fill: stroke || color || "currentColor",
|
|
@@ -382,8 +403,8 @@ var IconChaptercollapse = ({ size, width, height, color, className, fill, stroke
|
|
|
382
403
|
) }), Chaptercollapse_default = IconChaptercollapse;
|
|
383
404
|
|
|
384
405
|
// src/components/Chapterexpand.tsx
|
|
385
|
-
import { jsx as
|
|
386
|
-
var IconChapterexpand = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
406
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
407
|
+
var IconChapterexpand = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx28("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx28(
|
|
387
408
|
"path",
|
|
388
409
|
{
|
|
389
410
|
fill: stroke || color || "currentColor",
|
|
@@ -393,9 +414,30 @@ var IconChapterexpand = ({ size, width, height, color, className, fill, stroke }
|
|
|
393
414
|
}
|
|
394
415
|
) }), Chapterexpand_default = IconChapterexpand;
|
|
395
416
|
|
|
417
|
+
// src/components/Chathistory.tsx
|
|
418
|
+
import { jsx as jsx29, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
419
|
+
var IconChathistory = ({ 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: [
|
|
420
|
+
/* @__PURE__ */ jsx29(
|
|
421
|
+
"path",
|
|
422
|
+
{
|
|
423
|
+
fill: stroke || color || "currentColor",
|
|
424
|
+
d: "M10.5 4.5V12.4926L15.7369 17.3267L17.2631 15.6733L12.75 11.5074V4.5H10.5Z"
|
|
425
|
+
}
|
|
426
|
+
),
|
|
427
|
+
/* @__PURE__ */ jsx29(
|
|
428
|
+
"path",
|
|
429
|
+
{
|
|
430
|
+
fill: stroke || color || "currentColor",
|
|
431
|
+
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",
|
|
432
|
+
fillRule: "evenodd",
|
|
433
|
+
clipRule: "evenodd"
|
|
434
|
+
}
|
|
435
|
+
)
|
|
436
|
+
] }), Chathistory_default = IconChathistory;
|
|
437
|
+
|
|
396
438
|
// src/components/Check.tsx
|
|
397
|
-
import { jsx as
|
|
398
|
-
var IconCheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
439
|
+
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
440
|
+
var IconCheck = ({ 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(
|
|
399
441
|
"path",
|
|
400
442
|
{
|
|
401
443
|
fill: stroke || color || "currentColor",
|
|
@@ -404,8 +446,8 @@ var IconCheck = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
404
446
|
) }), Check_default = IconCheck;
|
|
405
447
|
|
|
406
448
|
// src/components/CheckedFilled.tsx
|
|
407
|
-
import { jsx as
|
|
408
|
-
var IconCheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
449
|
+
import { jsx as jsx31 } from "react/jsx-runtime";
|
|
450
|
+
var IconCheckedFilled = ({ 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(
|
|
409
451
|
"path",
|
|
410
452
|
{
|
|
411
453
|
fill: fill || color || "currentColor",
|
|
@@ -416,8 +458,8 @@ var IconCheckedFilled = ({ size, width, height, color, className, fill, stroke }
|
|
|
416
458
|
) }), CheckedFilled_default = IconCheckedFilled;
|
|
417
459
|
|
|
418
460
|
// src/components/Close.tsx
|
|
419
|
-
import { jsx as
|
|
420
|
-
var IconClose = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
461
|
+
import { jsx as jsx32 } from "react/jsx-runtime";
|
|
462
|
+
var IconClose = ({ 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(
|
|
421
463
|
"path",
|
|
422
464
|
{
|
|
423
465
|
fill: stroke || color || "currentColor",
|
|
@@ -426,9 +468,9 @@ var IconClose = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
426
468
|
) }), Close_default = IconClose;
|
|
427
469
|
|
|
428
470
|
// src/components/Collapsewindow.tsx
|
|
429
|
-
import { jsx as
|
|
430
|
-
var IconCollapsewindow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
431
|
-
/* @__PURE__ */
|
|
471
|
+
import { jsx as jsx33, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
472
|
+
var IconCollapsewindow = ({ 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: [
|
|
473
|
+
/* @__PURE__ */ jsx33(
|
|
432
474
|
"path",
|
|
433
475
|
{
|
|
434
476
|
fill: stroke || color || "currentColor",
|
|
@@ -437,7 +479,7 @@ var IconCollapsewindow = ({ size, width, height, color, className, fill, stroke
|
|
|
437
479
|
clipRule: "evenodd"
|
|
438
480
|
}
|
|
439
481
|
),
|
|
440
|
-
/* @__PURE__ */
|
|
482
|
+
/* @__PURE__ */ jsx33(
|
|
441
483
|
"path",
|
|
442
484
|
{
|
|
443
485
|
fill: stroke || color || "currentColor",
|
|
@@ -449,10 +491,10 @@ var IconCollapsewindow = ({ size, width, height, color, className, fill, stroke
|
|
|
449
491
|
] }), Collapsewindow_default = IconCollapsewindow;
|
|
450
492
|
|
|
451
493
|
// src/components/Copy.tsx
|
|
452
|
-
import { jsx as
|
|
453
|
-
var IconCopy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
454
|
-
/* @__PURE__ */
|
|
455
|
-
/* @__PURE__ */
|
|
494
|
+
import { jsx as jsx34, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
495
|
+
var IconCopy = ({ 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: [
|
|
496
|
+
/* @__PURE__ */ jsx34("path", { fill: stroke || color || "currentColor", d: "M12.75 2.25H2.25V12.75H6V15H0V0H15V6H12.75V2.25Z" }),
|
|
497
|
+
/* @__PURE__ */ jsx34(
|
|
456
498
|
"path",
|
|
457
499
|
{
|
|
458
500
|
fill: stroke || color || "currentColor",
|
|
@@ -464,8 +506,8 @@ var IconCopy = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
464
506
|
] }), Copy_default = IconCopy;
|
|
465
507
|
|
|
466
508
|
// src/components/Copylink.tsx
|
|
467
|
-
import { jsx as
|
|
468
|
-
var IconCopylink = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
509
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
510
|
+
var IconCopylink = ({ 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(
|
|
469
511
|
"path",
|
|
470
512
|
{
|
|
471
513
|
fill: stroke || color || "currentColor",
|
|
@@ -476,9 +518,9 @@ var IconCopylink = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
476
518
|
) }), Copylink_default = IconCopylink;
|
|
477
519
|
|
|
478
520
|
// src/components/CreditFilled.tsx
|
|
479
|
-
import { jsx as
|
|
480
|
-
var IconCreditFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
481
|
-
/* @__PURE__ */
|
|
521
|
+
import { jsx as jsx36, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
522
|
+
var IconCreditFilled = ({ 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: [
|
|
523
|
+
/* @__PURE__ */ jsx36("g", { clipPath: "url(#clip0_2_28)", children: /* @__PURE__ */ jsx36(
|
|
482
524
|
"path",
|
|
483
525
|
{
|
|
484
526
|
fill: fill || color || "currentColor",
|
|
@@ -487,12 +529,12 @@ var IconCreditFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
487
529
|
clipRule: "evenodd"
|
|
488
530
|
}
|
|
489
531
|
) }),
|
|
490
|
-
/* @__PURE__ */
|
|
532
|
+
/* @__PURE__ */ jsx36("defs", { children: /* @__PURE__ */ jsx36("clipPath", { id: "clip0_2_28", children: /* @__PURE__ */ jsx36("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
491
533
|
] }), CreditFilled_default = IconCreditFilled;
|
|
492
534
|
|
|
493
535
|
// src/components/Cursor.tsx
|
|
494
|
-
import { jsx as
|
|
495
|
-
var IconCursor = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
536
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
537
|
+
var IconCursor = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx37("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx37(
|
|
496
538
|
"path",
|
|
497
539
|
{
|
|
498
540
|
fill: stroke || color || "currentColor",
|
|
@@ -503,10 +545,10 @@ var IconCursor = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
503
545
|
) }), Cursor_default = IconCursor;
|
|
504
546
|
|
|
505
547
|
// src/components/DeleteSceneChoice.tsx
|
|
506
|
-
import { jsx as
|
|
507
|
-
var IconDeleteSceneChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
508
|
-
/* @__PURE__ */
|
|
509
|
-
/* @__PURE__ */
|
|
548
|
+
import { jsx as jsx38, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
549
|
+
var IconDeleteSceneChoice = ({ 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: [
|
|
550
|
+
/* @__PURE__ */ jsx38("path", { fill: stroke || color || "currentColor", d: "M18 10.875H6V13.125H18V10.875Z" }),
|
|
551
|
+
/* @__PURE__ */ jsx38(
|
|
510
552
|
"path",
|
|
511
553
|
{
|
|
512
554
|
fill: stroke || color || "currentColor",
|
|
@@ -518,10 +560,10 @@ var IconDeleteSceneChoice = ({ size, width, height, color, className, fill, stro
|
|
|
518
560
|
] }), DeleteSceneChoice_default = IconDeleteSceneChoice;
|
|
519
561
|
|
|
520
562
|
// src/components/Delete.tsx
|
|
521
|
-
import { jsx as
|
|
522
|
-
var IconDelete = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
523
|
-
/* @__PURE__ */
|
|
524
|
-
/* @__PURE__ */
|
|
563
|
+
import { jsx as jsx39, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
564
|
+
var IconDelete = ({ 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: [
|
|
565
|
+
/* @__PURE__ */ jsx39("path", { fill: stroke || color || "currentColor", d: "M13.125 17.25V11.25H10.875V17.25H13.125Z" }),
|
|
566
|
+
/* @__PURE__ */ jsx39(
|
|
525
567
|
"path",
|
|
526
568
|
{
|
|
527
569
|
fill: stroke || color || "currentColor",
|
|
@@ -533,8 +575,8 @@ var IconDelete = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
533
575
|
] }), Delete_default = IconDelete;
|
|
534
576
|
|
|
535
577
|
// src/components/DownFilled.tsx
|
|
536
|
-
import { jsx as
|
|
537
|
-
var IconDownFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
578
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
579
|
+
var IconDownFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx40("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx40(
|
|
538
580
|
"path",
|
|
539
581
|
{
|
|
540
582
|
fill: fill || color || "currentColor",
|
|
@@ -545,8 +587,8 @@ var IconDownFilled = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
545
587
|
) }), DownFilled_default = IconDownFilled;
|
|
546
588
|
|
|
547
589
|
// src/components/DownleftFilled.tsx
|
|
548
|
-
import { jsx as
|
|
549
|
-
var IconDownleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
590
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
591
|
+
var IconDownleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx41("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx41(
|
|
550
592
|
"path",
|
|
551
593
|
{
|
|
552
594
|
fill: fill || color || "currentColor",
|
|
@@ -557,16 +599,16 @@ var IconDownleftFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
557
599
|
) }), DownleftFilled_default = IconDownleftFilled;
|
|
558
600
|
|
|
559
601
|
// src/components/Download.tsx
|
|
560
|
-
import { jsx as
|
|
561
|
-
var IconDownload = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
562
|
-
/* @__PURE__ */
|
|
602
|
+
import { jsx as jsx42, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
603
|
+
var IconDownload = ({ 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: [
|
|
604
|
+
/* @__PURE__ */ jsx42(
|
|
563
605
|
"path",
|
|
564
606
|
{
|
|
565
607
|
fill: stroke || color || "currentColor",
|
|
566
608
|
d: "M22.5 24L22.5 13.5H20.25V21.75L3.75 21.75L3.75 13.5H1.5L1.5 24L22.5 24Z"
|
|
567
609
|
}
|
|
568
610
|
),
|
|
569
|
-
/* @__PURE__ */
|
|
611
|
+
/* @__PURE__ */ jsx42(
|
|
570
612
|
"path",
|
|
571
613
|
{
|
|
572
614
|
fill: stroke || color || "currentColor",
|
|
@@ -578,8 +620,8 @@ var IconDownload = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
578
620
|
] }), Download_default = IconDownload;
|
|
579
621
|
|
|
580
622
|
// src/components/DownrightFilled.tsx
|
|
581
|
-
import { jsx as
|
|
582
|
-
var IconDownrightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
623
|
+
import { jsx as jsx43 } from "react/jsx-runtime";
|
|
624
|
+
var IconDownrightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx43("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx43(
|
|
583
625
|
"path",
|
|
584
626
|
{
|
|
585
627
|
fill: fill || color || "currentColor",
|
|
@@ -590,20 +632,41 @@ var IconDownrightFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
590
632
|
) }), DownrightFilled_default = IconDownrightFilled;
|
|
591
633
|
|
|
592
634
|
// src/components/DraghandleFilled.tsx
|
|
593
|
-
import { jsx as
|
|
594
|
-
var IconDraghandleFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
595
|
-
/* @__PURE__ */
|
|
596
|
-
/* @__PURE__ */
|
|
597
|
-
/* @__PURE__ */
|
|
598
|
-
/* @__PURE__ */
|
|
599
|
-
/* @__PURE__ */
|
|
600
|
-
/* @__PURE__ */
|
|
635
|
+
import { jsx as jsx44, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
636
|
+
var IconDraghandleFilled = ({ 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: [
|
|
637
|
+
/* @__PURE__ */ jsx44("path", { fill: fill || color || "currentColor", d: "M18 7.19999V2.39999H13.2V7.19999L18 7.19999Z" }),
|
|
638
|
+
/* @__PURE__ */ jsx44("path", { fill: fill || color || "currentColor", d: "M18 9.59999V14.4H13.2L13.2 9.59999H18Z" }),
|
|
639
|
+
/* @__PURE__ */ jsx44("path", { fill: fill || color || "currentColor", d: "M10.8 9.59999V14.4H6V9.59999H10.8Z" }),
|
|
640
|
+
/* @__PURE__ */ jsx44("path", { fill: fill || color || "currentColor", d: "M10.8 2.39999V7.19999L6 7.19999V2.39999H10.8Z" }),
|
|
641
|
+
/* @__PURE__ */ jsx44("path", { fill: fill || color || "currentColor", d: "M18 21.6V16.8H13.2V21.6H18Z" }),
|
|
642
|
+
/* @__PURE__ */ jsx44("path", { fill: fill || color || "currentColor", d: "M10.8 16.8V21.6H6V16.8H10.8Z" })
|
|
601
643
|
] }), DraghandleFilled_default = IconDraghandleFilled;
|
|
602
644
|
|
|
645
|
+
// src/components/Edit.tsx
|
|
646
|
+
import { jsx as jsx45, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
647
|
+
var IconEdit = ({ 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: [
|
|
648
|
+
/* @__PURE__ */ jsx45(
|
|
649
|
+
"path",
|
|
650
|
+
{
|
|
651
|
+
fill: stroke || color || "currentColor",
|
|
652
|
+
d: "M18.75 0L9 9.75V15H14.25L24 5.25L18.75 0ZM11.25 12.75V10.682L18.75 3.18198L20.818 5.25L13.318 12.75H11.25Z",
|
|
653
|
+
fillRule: "evenodd",
|
|
654
|
+
clipRule: "evenodd"
|
|
655
|
+
}
|
|
656
|
+
),
|
|
657
|
+
/* @__PURE__ */ jsx45(
|
|
658
|
+
"path",
|
|
659
|
+
{
|
|
660
|
+
fill: stroke || color || "currentColor",
|
|
661
|
+
d: "M1.5 1.5V22.5H22.5V13.5H20.25V20.25H3.75V3.75H10.5V1.5H1.5Z"
|
|
662
|
+
}
|
|
663
|
+
)
|
|
664
|
+
] }), Edit_default = IconEdit;
|
|
665
|
+
|
|
603
666
|
// src/components/Expandwindow.tsx
|
|
604
|
-
import { jsx as
|
|
605
|
-
var IconExpandwindow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
606
|
-
/* @__PURE__ */
|
|
667
|
+
import { jsx as jsx46, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
668
|
+
var IconExpandwindow = ({ 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: [
|
|
669
|
+
/* @__PURE__ */ jsx46(
|
|
607
670
|
"path",
|
|
608
671
|
{
|
|
609
672
|
fill: stroke || color || "currentColor",
|
|
@@ -612,7 +675,7 @@ var IconExpandwindow = ({ size, width, height, color, className, fill, stroke })
|
|
|
612
675
|
clipRule: "evenodd"
|
|
613
676
|
}
|
|
614
677
|
),
|
|
615
|
-
/* @__PURE__ */
|
|
678
|
+
/* @__PURE__ */ jsx46(
|
|
616
679
|
"path",
|
|
617
680
|
{
|
|
618
681
|
fill: stroke || color || "currentColor",
|
|
@@ -624,8 +687,8 @@ var IconExpandwindow = ({ size, width, height, color, className, fill, stroke })
|
|
|
624
687
|
] }), Expandwindow_default = IconExpandwindow;
|
|
625
688
|
|
|
626
689
|
// src/components/FavoriteFilled.tsx
|
|
627
|
-
import { jsx as
|
|
628
|
-
var IconFavoriteFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
690
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
691
|
+
var IconFavoriteFilled = ({ 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(
|
|
629
692
|
"path",
|
|
630
693
|
{
|
|
631
694
|
fill: fill || color || "currentColor",
|
|
@@ -634,8 +697,8 @@ var IconFavoriteFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
634
697
|
) }), FavoriteFilled_default = IconFavoriteFilled;
|
|
635
698
|
|
|
636
699
|
// src/components/Favorite.tsx
|
|
637
|
-
import { jsx as
|
|
638
|
-
var IconFavorite = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
700
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
701
|
+
var IconFavorite = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx48("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx48(
|
|
639
702
|
"path",
|
|
640
703
|
{
|
|
641
704
|
fill: stroke || color || "currentColor",
|
|
@@ -646,8 +709,8 @@ var IconFavorite = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
646
709
|
) }), Favorite_default = IconFavorite;
|
|
647
710
|
|
|
648
711
|
// src/components/FeedbackFailFilled.tsx
|
|
649
|
-
import { jsx as
|
|
650
|
-
var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
712
|
+
import { jsx as jsx49 } from "react/jsx-runtime";
|
|
713
|
+
var IconFeedbackFailFilled = ({ 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(
|
|
651
714
|
"path",
|
|
652
715
|
{
|
|
653
716
|
fill: fill || color || "currentColor",
|
|
@@ -658,8 +721,8 @@ var IconFeedbackFailFilled = ({ size, width, height, color, className, fill, str
|
|
|
658
721
|
) }), FeedbackFailFilled_default = IconFeedbackFailFilled;
|
|
659
722
|
|
|
660
723
|
// src/components/FeedbackPendingFilled.tsx
|
|
661
|
-
import { jsx as
|
|
662
|
-
var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
724
|
+
import { jsx as jsx50 } from "react/jsx-runtime";
|
|
725
|
+
var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx50("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx50(
|
|
663
726
|
"path",
|
|
664
727
|
{
|
|
665
728
|
fill: fill || color || "currentColor",
|
|
@@ -670,8 +733,8 @@ var IconFeedbackPendingFilled = ({ size, width, height, color, className, fill,
|
|
|
670
733
|
) }), FeedbackPendingFilled_default = IconFeedbackPendingFilled;
|
|
671
734
|
|
|
672
735
|
// src/components/FeedbackProblemFilled.tsx
|
|
673
|
-
import { jsx as
|
|
674
|
-
var IconFeedbackProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
736
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
737
|
+
var IconFeedbackProblemFilled = ({ 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(
|
|
675
738
|
"path",
|
|
676
739
|
{
|
|
677
740
|
fill: fill || color || "currentColor",
|
|
@@ -682,30 +745,30 @@ var IconFeedbackProblemFilled = ({ size, width, height, color, className, fill,
|
|
|
682
745
|
) }), FeedbackProblemFilled_default = IconFeedbackProblemFilled;
|
|
683
746
|
|
|
684
747
|
// src/components/FeedbackProblem.tsx
|
|
685
|
-
import { jsx as
|
|
686
|
-
var IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
687
|
-
/* @__PURE__ */
|
|
748
|
+
import { jsx as jsx52, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
749
|
+
var IconFeedbackProblem = ({ 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: [
|
|
750
|
+
/* @__PURE__ */ jsx52(
|
|
688
751
|
"path",
|
|
689
752
|
{
|
|
690
753
|
fill: stroke || color || "currentColor",
|
|
691
754
|
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"
|
|
692
755
|
}
|
|
693
756
|
),
|
|
694
|
-
/* @__PURE__ */
|
|
757
|
+
/* @__PURE__ */ jsx52(
|
|
695
758
|
"path",
|
|
696
759
|
{
|
|
697
760
|
fill: stroke || color || "currentColor",
|
|
698
761
|
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"
|
|
699
762
|
}
|
|
700
763
|
),
|
|
701
|
-
/* @__PURE__ */
|
|
764
|
+
/* @__PURE__ */ jsx52(
|
|
702
765
|
"path",
|
|
703
766
|
{
|
|
704
767
|
fill: stroke || color || "currentColor",
|
|
705
768
|
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"
|
|
706
769
|
}
|
|
707
770
|
),
|
|
708
|
-
/* @__PURE__ */
|
|
771
|
+
/* @__PURE__ */ jsx52(
|
|
709
772
|
"path",
|
|
710
773
|
{
|
|
711
774
|
fill: stroke || color || "currentColor",
|
|
@@ -717,9 +780,9 @@ var IconFeedbackProblem = ({ size, width, height, color, className, fill, stroke
|
|
|
717
780
|
] }), FeedbackProblem_default = IconFeedbackProblem;
|
|
718
781
|
|
|
719
782
|
// src/components/FiletypeImageFilled.tsx
|
|
720
|
-
import { jsx as
|
|
721
|
-
var IconFiletypeImageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
722
|
-
/* @__PURE__ */
|
|
783
|
+
import { jsx as jsx53, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
784
|
+
var IconFiletypeImageFilled = ({ 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: [
|
|
785
|
+
/* @__PURE__ */ jsx53("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx53(
|
|
723
786
|
"path",
|
|
724
787
|
{
|
|
725
788
|
fill: "#2E2E2E",
|
|
@@ -727,21 +790,21 @@ var IconFiletypeImageFilled = ({ size, width, height, color, className, fill, st
|
|
|
727
790
|
style: { opacity: 0.3 }
|
|
728
791
|
}
|
|
729
792
|
) }),
|
|
730
|
-
/* @__PURE__ */
|
|
793
|
+
/* @__PURE__ */ jsx53(
|
|
731
794
|
"path",
|
|
732
795
|
{
|
|
733
796
|
fill: "#2E2E2E",
|
|
734
797
|
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"
|
|
735
798
|
}
|
|
736
799
|
),
|
|
737
|
-
/* @__PURE__ */
|
|
800
|
+
/* @__PURE__ */ jsx53(
|
|
738
801
|
"path",
|
|
739
802
|
{
|
|
740
803
|
fill: "#2E2E2E",
|
|
741
804
|
d: "M10.5938 11.0625C11.0252 11.0625 11.375 10.7127 11.375 10.2812C11.375 9.84978 11.0252 9.5 10.5938 9.5C10.1623 9.5 9.8125 9.84978 9.8125 10.2812C9.8125 10.7127 10.1623 11.0625 10.5938 11.0625Z"
|
|
742
805
|
}
|
|
743
806
|
),
|
|
744
|
-
/* @__PURE__ */
|
|
807
|
+
/* @__PURE__ */ jsx53(
|
|
745
808
|
"path",
|
|
746
809
|
{
|
|
747
810
|
fill: "#2E2E2E",
|
|
@@ -753,9 +816,9 @@ var IconFiletypeImageFilled = ({ size, width, height, color, className, fill, st
|
|
|
753
816
|
] }), FiletypeImageFilled_default = IconFiletypeImageFilled;
|
|
754
817
|
|
|
755
818
|
// src/components/FiletypePdfFilled.tsx
|
|
756
|
-
import { jsx as
|
|
757
|
-
var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
758
|
-
/* @__PURE__ */
|
|
819
|
+
import { jsx as jsx54, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
820
|
+
var IconFiletypePdfFilled = ({ 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: [
|
|
821
|
+
/* @__PURE__ */ jsx54("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx54(
|
|
759
822
|
"path",
|
|
760
823
|
{
|
|
761
824
|
fill: "#FF3E4C",
|
|
@@ -763,14 +826,14 @@ var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stro
|
|
|
763
826
|
style: { opacity: 0.3 }
|
|
764
827
|
}
|
|
765
828
|
) }),
|
|
766
|
-
/* @__PURE__ */
|
|
829
|
+
/* @__PURE__ */ jsx54(
|
|
767
830
|
"path",
|
|
768
831
|
{
|
|
769
832
|
fill: "#FF3E4C",
|
|
770
833
|
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"
|
|
771
834
|
}
|
|
772
835
|
),
|
|
773
|
-
/* @__PURE__ */
|
|
836
|
+
/* @__PURE__ */ jsx54(
|
|
774
837
|
"path",
|
|
775
838
|
{
|
|
776
839
|
fill: "#FF3E4C",
|
|
@@ -780,9 +843,9 @@ var IconFiletypePdfFilled = ({ size, width, height, color, className, fill, stro
|
|
|
780
843
|
] }), FiletypePdfFilled_default = IconFiletypePdfFilled;
|
|
781
844
|
|
|
782
845
|
// src/components/FiletypePdfLumiFilled.tsx
|
|
783
|
-
import { jsx as
|
|
784
|
-
var IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
785
|
-
/* @__PURE__ */
|
|
846
|
+
import { jsx as jsx55, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
847
|
+
var IconFiletypePdfLumiFilled = ({ 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: [
|
|
848
|
+
/* @__PURE__ */ jsx55("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx55(
|
|
786
849
|
"path",
|
|
787
850
|
{
|
|
788
851
|
fill: "#2E2E2E",
|
|
@@ -790,14 +853,14 @@ var IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
790
853
|
style: { opacity: 0.3 }
|
|
791
854
|
}
|
|
792
855
|
) }),
|
|
793
|
-
/* @__PURE__ */
|
|
856
|
+
/* @__PURE__ */ jsx55(
|
|
794
857
|
"path",
|
|
795
858
|
{
|
|
796
859
|
fill: "#2E2E2E",
|
|
797
860
|
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"
|
|
798
861
|
}
|
|
799
862
|
),
|
|
800
|
-
/* @__PURE__ */
|
|
863
|
+
/* @__PURE__ */ jsx55(
|
|
801
864
|
"path",
|
|
802
865
|
{
|
|
803
866
|
fill: "#2E2E2E",
|
|
@@ -807,9 +870,9 @@ var IconFiletypePdfLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
807
870
|
] }), FiletypePdfLumiFilled_default = IconFiletypePdfLumiFilled;
|
|
808
871
|
|
|
809
872
|
// src/components/FiletypeTxtFilled.tsx
|
|
810
|
-
import { jsx as
|
|
811
|
-
var IconFiletypeTxtFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
812
|
-
/* @__PURE__ */
|
|
873
|
+
import { jsx as jsx56, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
874
|
+
var IconFiletypeTxtFilled = ({ 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: [
|
|
875
|
+
/* @__PURE__ */ jsx56("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx56(
|
|
813
876
|
"path",
|
|
814
877
|
{
|
|
815
878
|
fill: "#005FAD",
|
|
@@ -817,11 +880,11 @@ var IconFiletypeTxtFilled = ({ size, width, height, color, className, fill, stro
|
|
|
817
880
|
style: { opacity: 0.3 }
|
|
818
881
|
}
|
|
819
882
|
) }),
|
|
820
|
-
/* @__PURE__ */
|
|
821
|
-
/* @__PURE__ */
|
|
822
|
-
/* @__PURE__ */
|
|
823
|
-
/* @__PURE__ */
|
|
824
|
-
/* @__PURE__ */
|
|
883
|
+
/* @__PURE__ */ jsx56("path", { fill: "#005FAD", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
884
|
+
/* @__PURE__ */ jsx56("path", { fill: "#005FAD", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
885
|
+
/* @__PURE__ */ jsx56("path", { fill: "#005FAD", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
886
|
+
/* @__PURE__ */ jsx56("path", { fill: "#005FAD", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
887
|
+
/* @__PURE__ */ jsx56(
|
|
825
888
|
"path",
|
|
826
889
|
{
|
|
827
890
|
fill: "#005FAD",
|
|
@@ -831,9 +894,9 @@ var IconFiletypeTxtFilled = ({ size, width, height, color, className, fill, stro
|
|
|
831
894
|
] }), FiletypeTxtFilled_default = IconFiletypeTxtFilled;
|
|
832
895
|
|
|
833
896
|
// src/components/FiletypeTxtLumiFilled.tsx
|
|
834
|
-
import { jsx as
|
|
835
|
-
var IconFiletypeTxtLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
836
|
-
/* @__PURE__ */
|
|
897
|
+
import { jsx as jsx57, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
898
|
+
var IconFiletypeTxtLumiFilled = ({ 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: [
|
|
899
|
+
/* @__PURE__ */ jsx57("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx57(
|
|
837
900
|
"path",
|
|
838
901
|
{
|
|
839
902
|
fill: "#2E2E2E",
|
|
@@ -841,11 +904,11 @@ var IconFiletypeTxtLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
841
904
|
style: { opacity: 0.3 }
|
|
842
905
|
}
|
|
843
906
|
) }),
|
|
844
|
-
/* @__PURE__ */
|
|
845
|
-
/* @__PURE__ */
|
|
846
|
-
/* @__PURE__ */
|
|
847
|
-
/* @__PURE__ */
|
|
848
|
-
/* @__PURE__ */
|
|
907
|
+
/* @__PURE__ */ jsx57("path", { fill: "#2E2E2E", d: "M7.625 8.5625H16.375V7.625H7.625V8.5625Z" }),
|
|
908
|
+
/* @__PURE__ */ jsx57("path", { fill: "#2E2E2E", d: "M7.625 16.375H13.875V15.4375H7.625V16.375Z" }),
|
|
909
|
+
/* @__PURE__ */ jsx57("path", { fill: "#2E2E2E", d: "M16.375 11.2188H7.625V10.2812H16.375V11.2188Z" }),
|
|
910
|
+
/* @__PURE__ */ jsx57("path", { fill: "#2E2E2E", d: "M7.625 13.7188H16.375V12.7812H7.625V13.7188Z" }),
|
|
911
|
+
/* @__PURE__ */ jsx57(
|
|
849
912
|
"path",
|
|
850
913
|
{
|
|
851
914
|
fill: "#2E2E2E",
|
|
@@ -855,9 +918,9 @@ var IconFiletypeTxtLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
855
918
|
] }), FiletypeTxtLumiFilled_default = IconFiletypeTxtLumiFilled;
|
|
856
919
|
|
|
857
920
|
// src/components/FiletypeWordFilled.tsx
|
|
858
|
-
import { jsx as
|
|
859
|
-
var IconFiletypeWordFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
860
|
-
/* @__PURE__ */
|
|
921
|
+
import { jsx as jsx58, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
922
|
+
var IconFiletypeWordFilled = ({ 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: [
|
|
923
|
+
/* @__PURE__ */ jsx58("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx58(
|
|
861
924
|
"path",
|
|
862
925
|
{
|
|
863
926
|
fill: "#0072FF",
|
|
@@ -865,14 +928,14 @@ var IconFiletypeWordFilled = ({ size, width, height, color, className, fill, str
|
|
|
865
928
|
style: { opacity: 0.3 }
|
|
866
929
|
}
|
|
867
930
|
) }),
|
|
868
|
-
/* @__PURE__ */
|
|
931
|
+
/* @__PURE__ */ jsx58(
|
|
869
932
|
"path",
|
|
870
933
|
{
|
|
871
934
|
fill: "#0072FF",
|
|
872
935
|
d: "M8.09258 8L9.69258 16H10.8121L12 9.56557L13.1879 16H14.3074L15.9074 8H15.1426L13.7547 14.9392L12.4736 8H11.5264L10.2453 14.9392L8.85743 8H8.09258Z"
|
|
873
936
|
}
|
|
874
937
|
),
|
|
875
|
-
/* @__PURE__ */
|
|
938
|
+
/* @__PURE__ */ jsx58(
|
|
876
939
|
"path",
|
|
877
940
|
{
|
|
878
941
|
fill: "#0072FF",
|
|
@@ -882,9 +945,9 @@ var IconFiletypeWordFilled = ({ size, width, height, color, className, fill, str
|
|
|
882
945
|
] }), FiletypeWordFilled_default = IconFiletypeWordFilled;
|
|
883
946
|
|
|
884
947
|
// src/components/FiletypeWordLumiFilled.tsx
|
|
885
|
-
import { jsx as
|
|
886
|
-
var IconFiletypeWordLumiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
887
|
-
/* @__PURE__ */
|
|
948
|
+
import { jsx as jsx59, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
949
|
+
var IconFiletypeWordLumiFilled = ({ 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: [
|
|
950
|
+
/* @__PURE__ */ jsx59("g", { style: { opacity: 0.3 }, children: /* @__PURE__ */ jsx59(
|
|
888
951
|
"path",
|
|
889
952
|
{
|
|
890
953
|
fill: "#2E2E2E",
|
|
@@ -892,14 +955,14 @@ var IconFiletypeWordLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
892
955
|
style: { opacity: 0.3 }
|
|
893
956
|
}
|
|
894
957
|
) }),
|
|
895
|
-
/* @__PURE__ */
|
|
958
|
+
/* @__PURE__ */ jsx59(
|
|
896
959
|
"path",
|
|
897
960
|
{
|
|
898
961
|
fill: "#2E2E2E",
|
|
899
962
|
d: "M8.09257 8L9.69257 16H10.8121L12 9.56557L13.1879 16H14.3074L15.9074 8H15.1426L13.7547 14.9392L12.4736 8H11.5264L10.2453 14.9392L8.85742 8H8.09257Z"
|
|
900
963
|
}
|
|
901
964
|
),
|
|
902
|
-
/* @__PURE__ */
|
|
965
|
+
/* @__PURE__ */ jsx59(
|
|
903
966
|
"path",
|
|
904
967
|
{
|
|
905
968
|
fill: "#2E2E2E",
|
|
@@ -909,9 +972,9 @@ var IconFiletypeWordLumiFilled = ({ size, width, height, color, className, fill,
|
|
|
909
972
|
] }), FiletypeWordLumiFilled_default = IconFiletypeWordLumiFilled;
|
|
910
973
|
|
|
911
974
|
// src/components/Fillin.tsx
|
|
912
|
-
import { jsx as
|
|
913
|
-
var IconFillin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
914
|
-
/* @__PURE__ */
|
|
975
|
+
import { jsx as jsx60, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
976
|
+
var IconFillin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs28("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
977
|
+
/* @__PURE__ */ jsx60("g", { clipPath: "url(#clip0_491_23)", children: /* @__PURE__ */ jsx60(
|
|
915
978
|
"path",
|
|
916
979
|
{
|
|
917
980
|
fill: stroke || color || "currentColor",
|
|
@@ -920,7 +983,7 @@ var IconFillin = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
920
983
|
clipRule: "evenodd"
|
|
921
984
|
}
|
|
922
985
|
) }),
|
|
923
|
-
/* @__PURE__ */
|
|
986
|
+
/* @__PURE__ */ jsx60("defs", { children: /* @__PURE__ */ jsx60("clipPath", { id: "clip0_491_23", children: /* @__PURE__ */ jsx60(
|
|
924
987
|
"rect",
|
|
925
988
|
{
|
|
926
989
|
width: "24",
|
|
@@ -932,36 +995,36 @@ var IconFillin = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
932
995
|
] }), Fillin_default = IconFillin;
|
|
933
996
|
|
|
934
997
|
// src/components/FoldedMenu.tsx
|
|
935
|
-
import { jsx as
|
|
936
|
-
var IconFoldedMenu = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
937
|
-
/* @__PURE__ */
|
|
938
|
-
/* @__PURE__ */
|
|
939
|
-
/* @__PURE__ */
|
|
940
|
-
/* @__PURE__ */
|
|
998
|
+
import { jsx as jsx61, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
999
|
+
var IconFoldedMenu = ({ 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: [
|
|
1000
|
+
/* @__PURE__ */ jsx61("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H22.5V1.5H1.5V3.75Z" }),
|
|
1001
|
+
/* @__PURE__ */ jsx61("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H22.5V20.25H1.5V22.5Z" }),
|
|
1002
|
+
/* @__PURE__ */ jsx61("path", { fill: stroke || color || "currentColor", d: "M22.5 10.125H1.5V7.875H22.5V10.125Z" }),
|
|
1003
|
+
/* @__PURE__ */ jsx61("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H22.5V13.875H1.5V16.125Z" })
|
|
941
1004
|
] }), FoldedMenu_default = IconFoldedMenu;
|
|
942
1005
|
|
|
943
1006
|
// src/components/FullScreen.tsx
|
|
944
|
-
import { jsx as
|
|
945
|
-
var IconFullScreen = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
946
|
-
/* @__PURE__ */
|
|
947
|
-
/* @__PURE__ */
|
|
948
|
-
/* @__PURE__ */
|
|
949
|
-
/* @__PURE__ */
|
|
1007
|
+
import { jsx as jsx62, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1008
|
+
var IconFullScreen = ({ 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: [
|
|
1009
|
+
/* @__PURE__ */ jsx62("path", { fill: stroke || color || "currentColor", d: "M3.25 14V20.75H10V23H1V14H3.25Z" }),
|
|
1010
|
+
/* @__PURE__ */ jsx62("path", { fill: stroke || color || "currentColor", d: "M23 23H14V20.75H20.75V14H23V23Z" }),
|
|
1011
|
+
/* @__PURE__ */ jsx62("path", { fill: stroke || color || "currentColor", d: "M10 3.25H3.25V10H1V1H10V3.25Z" }),
|
|
1012
|
+
/* @__PURE__ */ jsx62("path", { fill: stroke || color || "currentColor", d: "M23 10H20.75V3.25H14V1H23V10Z" })
|
|
950
1013
|
] }), FullScreen_default = IconFullScreen;
|
|
951
1014
|
|
|
952
1015
|
// src/components/GameFilled.tsx
|
|
953
|
-
import { jsx as
|
|
954
|
-
var IconGameFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
955
|
-
/* @__PURE__ */
|
|
956
|
-
/* @__PURE__ */
|
|
957
|
-
/* @__PURE__ */
|
|
1016
|
+
import { jsx as jsx63, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1017
|
+
var IconGameFilled = ({ 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: [
|
|
1018
|
+
/* @__PURE__ */ jsx63("path", { fill: fill || color || "currentColor", d: "M7.5 0H16.5V5.37868L12 9.87868L7.5 5.37868V0Z" }),
|
|
1019
|
+
/* @__PURE__ */ jsx63("path", { fill: fill || color || "currentColor", d: "M5.37868 7.5H0V16.5H5.37868L9.87868 12L5.37868 7.5Z" }),
|
|
1020
|
+
/* @__PURE__ */ jsx63(
|
|
958
1021
|
"path",
|
|
959
1022
|
{
|
|
960
1023
|
fill: fill || color || "currentColor",
|
|
961
1024
|
d: "M7.5 18.6213V24H16.5V18.6213L12 14.1213L7.5 18.6213Z"
|
|
962
1025
|
}
|
|
963
1026
|
),
|
|
964
|
-
/* @__PURE__ */
|
|
1027
|
+
/* @__PURE__ */ jsx63(
|
|
965
1028
|
"path",
|
|
966
1029
|
{
|
|
967
1030
|
fill: fill || color || "currentColor",
|
|
@@ -971,9 +1034,9 @@ var IconGameFilled = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
971
1034
|
] }), GameFilled_default = IconGameFilled;
|
|
972
1035
|
|
|
973
1036
|
// src/components/Game.tsx
|
|
974
|
-
import { jsx as
|
|
975
|
-
var IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
976
|
-
/* @__PURE__ */
|
|
1037
|
+
import { jsx as jsx64, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
1038
|
+
var IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs32("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
1039
|
+
/* @__PURE__ */ jsx64(
|
|
977
1040
|
"path",
|
|
978
1041
|
{
|
|
979
1042
|
fill: stroke || color || "currentColor",
|
|
@@ -982,7 +1045,7 @@ var IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
982
1045
|
clipRule: "evenodd"
|
|
983
1046
|
}
|
|
984
1047
|
),
|
|
985
|
-
/* @__PURE__ */
|
|
1048
|
+
/* @__PURE__ */ jsx64(
|
|
986
1049
|
"path",
|
|
987
1050
|
{
|
|
988
1051
|
fill: stroke || color || "currentColor",
|
|
@@ -991,7 +1054,7 @@ var IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
991
1054
|
clipRule: "evenodd"
|
|
992
1055
|
}
|
|
993
1056
|
),
|
|
994
|
-
/* @__PURE__ */
|
|
1057
|
+
/* @__PURE__ */ jsx64(
|
|
995
1058
|
"path",
|
|
996
1059
|
{
|
|
997
1060
|
fill: stroke || color || "currentColor",
|
|
@@ -1000,7 +1063,7 @@ var IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1000
1063
|
clipRule: "evenodd"
|
|
1001
1064
|
}
|
|
1002
1065
|
),
|
|
1003
|
-
/* @__PURE__ */
|
|
1066
|
+
/* @__PURE__ */ jsx64(
|
|
1004
1067
|
"path",
|
|
1005
1068
|
{
|
|
1006
1069
|
fill: stroke || color || "currentColor",
|
|
@@ -1012,8 +1075,8 @@ var IconGame = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1012
1075
|
] }), Game_default = IconGame;
|
|
1013
1076
|
|
|
1014
1077
|
// src/components/GamebackupFilled.tsx
|
|
1015
|
-
import { jsx as
|
|
1016
|
-
var IconGamebackupFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1078
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
1079
|
+
var IconGamebackupFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx65("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx65(
|
|
1017
1080
|
"path",
|
|
1018
1081
|
{
|
|
1019
1082
|
fill: fill || color || "currentColor",
|
|
@@ -1024,8 +1087,8 @@ var IconGamebackupFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1024
1087
|
) }), GamebackupFilled_default = IconGamebackupFilled;
|
|
1025
1088
|
|
|
1026
1089
|
// src/components/Gamebackup.tsx
|
|
1027
|
-
import { jsx as
|
|
1028
|
-
var IconGamebackup = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1090
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
1091
|
+
var IconGamebackup = ({ 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(
|
|
1029
1092
|
"path",
|
|
1030
1093
|
{
|
|
1031
1094
|
fill: stroke || color || "currentColor",
|
|
@@ -1036,20 +1099,20 @@ var IconGamebackup = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1036
1099
|
) }), Gamebackup_default = IconGamebackup;
|
|
1037
1100
|
|
|
1038
1101
|
// src/components/GamecontrolChoice.tsx
|
|
1039
|
-
import { jsx as
|
|
1040
|
-
var IconGamecontrolChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1102
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
1103
|
+
var IconGamecontrolChoice = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx67("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx67(
|
|
1041
1104
|
"path",
|
|
1042
1105
|
{
|
|
1043
1106
|
fill: stroke || color || "currentColor",
|
|
1044
|
-
d: "
|
|
1107
|
+
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",
|
|
1045
1108
|
fillRule: "evenodd",
|
|
1046
1109
|
clipRule: "evenodd"
|
|
1047
1110
|
}
|
|
1048
1111
|
) }), GamecontrolChoice_default = IconGamecontrolChoice;
|
|
1049
1112
|
|
|
1050
1113
|
// src/components/GamecontrolGameplay.tsx
|
|
1051
|
-
import { jsx as
|
|
1052
|
-
var IconGamecontrolGameplay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1114
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
1115
|
+
var IconGamecontrolGameplay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx68("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx68(
|
|
1053
1116
|
"path",
|
|
1054
1117
|
{
|
|
1055
1118
|
fill: stroke || color || "currentColor",
|
|
@@ -1060,8 +1123,8 @@ var IconGamecontrolGameplay = ({ size, width, height, color, className, fill, st
|
|
|
1060
1123
|
) }), GamecontrolGameplay_default = IconGamecontrolGameplay;
|
|
1061
1124
|
|
|
1062
1125
|
// src/components/GamecontrolLinear.tsx
|
|
1063
|
-
import { jsx as
|
|
1064
|
-
var IconGamecontrolLinear = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1126
|
+
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
1127
|
+
var IconGamecontrolLinear = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx69("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx69(
|
|
1065
1128
|
"path",
|
|
1066
1129
|
{
|
|
1067
1130
|
fill: stroke || color || "currentColor",
|
|
@@ -1072,16 +1135,16 @@ var IconGamecontrolLinear = ({ size, width, height, color, className, fill, stro
|
|
|
1072
1135
|
) }), GamecontrolLinear_default = IconGamecontrolLinear;
|
|
1073
1136
|
|
|
1074
1137
|
// src/components/GamecontrolNone.tsx
|
|
1075
|
-
import { jsx as
|
|
1076
|
-
var IconGamecontrolNone = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1077
|
-
/* @__PURE__ */
|
|
1138
|
+
import { jsx as jsx70, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
1139
|
+
var IconGamecontrolNone = ({ 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: [
|
|
1140
|
+
/* @__PURE__ */ jsx70(
|
|
1078
1141
|
"path",
|
|
1079
1142
|
{
|
|
1080
1143
|
fill: stroke || color || "currentColor",
|
|
1081
1144
|
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"
|
|
1082
1145
|
}
|
|
1083
1146
|
),
|
|
1084
|
-
/* @__PURE__ */
|
|
1147
|
+
/* @__PURE__ */ jsx70(
|
|
1085
1148
|
"path",
|
|
1086
1149
|
{
|
|
1087
1150
|
fill: stroke || color || "currentColor",
|
|
@@ -1090,7 +1153,7 @@ var IconGamecontrolNone = ({ size, width, height, color, className, fill, stroke
|
|
|
1090
1153
|
clipRule: "evenodd"
|
|
1091
1154
|
}
|
|
1092
1155
|
),
|
|
1093
|
-
/* @__PURE__ */
|
|
1156
|
+
/* @__PURE__ */ jsx70(
|
|
1094
1157
|
"path",
|
|
1095
1158
|
{
|
|
1096
1159
|
fill: stroke || color || "currentColor",
|
|
@@ -1102,23 +1165,23 @@ var IconGamecontrolNone = ({ size, width, height, color, className, fill, stroke
|
|
|
1102
1165
|
] }), GamecontrolNone_default = IconGamecontrolNone;
|
|
1103
1166
|
|
|
1104
1167
|
// src/components/GamecontrolTerminal.tsx
|
|
1105
|
-
import { jsx as
|
|
1106
|
-
var IconGamecontrolTerminal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1107
|
-
/* @__PURE__ */
|
|
1168
|
+
import { jsx as jsx71, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
1169
|
+
var IconGamecontrolTerminal = ({ 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: [
|
|
1170
|
+
/* @__PURE__ */ jsx71(
|
|
1108
1171
|
"path",
|
|
1109
1172
|
{
|
|
1110
1173
|
fill: stroke || color || "currentColor",
|
|
1111
1174
|
d: "M14.2893 0.218108L12.2541 2.25325C12.1697 2.25109 12.085 2.25 12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12C21.75 11.915 21.7489 11.8303 21.7468 11.7459L23.7819 9.71075C23.925 10.4518 24 11.2171 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C12.7829 0 13.5482 0.0749648 14.2893 0.218108Z"
|
|
1112
1175
|
}
|
|
1113
1176
|
),
|
|
1114
|
-
/* @__PURE__ */
|
|
1177
|
+
/* @__PURE__ */ jsx71(
|
|
1115
1178
|
"path",
|
|
1116
1179
|
{
|
|
1117
1180
|
fill: stroke || color || "currentColor",
|
|
1118
1181
|
d: "M18.7088 12.75L16.4378 12.75C16.0807 14.8783 14.2297 16.5 12 16.5C9.51472 16.5 7.5 14.4853 7.5 12C7.5 9.77025 9.12172 7.91928 11.25 7.56222L11.25 5.2912C7.87504 5.66428 5.25 8.52559 5.25 12C5.25 15.7279 8.27208 18.75 12 18.75C15.4744 18.75 18.3357 16.125 18.7088 12.75Z"
|
|
1119
1182
|
}
|
|
1120
1183
|
),
|
|
1121
|
-
/* @__PURE__ */
|
|
1184
|
+
/* @__PURE__ */ jsx71(
|
|
1122
1185
|
"path",
|
|
1123
1186
|
{
|
|
1124
1187
|
fill: stroke || color || "currentColor",
|
|
@@ -1130,8 +1193,8 @@ var IconGamecontrolTerminal = ({ size, width, height, color, className, fill, st
|
|
|
1130
1193
|
] }), GamecontrolTerminal_default = IconGamecontrolTerminal;
|
|
1131
1194
|
|
|
1132
1195
|
// src/components/Gamelanguage.tsx
|
|
1133
|
-
import { jsx as
|
|
1134
|
-
var IconGamelanguage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1196
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
1197
|
+
var IconGamelanguage = ({ 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(
|
|
1135
1198
|
"path",
|
|
1136
1199
|
{
|
|
1137
1200
|
fill: stroke || color || "currentColor",
|
|
@@ -1142,9 +1205,9 @@ var IconGamelanguage = ({ size, width, height, color, className, fill, stroke })
|
|
|
1142
1205
|
) }), Gamelanguage_default = IconGamelanguage;
|
|
1143
1206
|
|
|
1144
1207
|
// src/components/Gamepreview.tsx
|
|
1145
|
-
import { jsx as
|
|
1146
|
-
var IconGamepreview = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1147
|
-
/* @__PURE__ */
|
|
1208
|
+
import { jsx as jsx73, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
1209
|
+
var IconGamepreview = ({ 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: [
|
|
1210
|
+
/* @__PURE__ */ jsx73(
|
|
1148
1211
|
"path",
|
|
1149
1212
|
{
|
|
1150
1213
|
fill: stroke || color || "currentColor",
|
|
@@ -1153,7 +1216,7 @@ var IconGamepreview = ({ size, width, height, color, className, fill, stroke })
|
|
|
1153
1216
|
clipRule: "evenodd"
|
|
1154
1217
|
}
|
|
1155
1218
|
),
|
|
1156
|
-
/* @__PURE__ */
|
|
1219
|
+
/* @__PURE__ */ jsx73(
|
|
1157
1220
|
"path",
|
|
1158
1221
|
{
|
|
1159
1222
|
fill: stroke || color || "currentColor",
|
|
@@ -1165,8 +1228,8 @@ var IconGamepreview = ({ size, width, height, color, className, fill, stroke })
|
|
|
1165
1228
|
] }), Gamepreview_default = IconGamepreview;
|
|
1166
1229
|
|
|
1167
1230
|
// src/components/Gameui.tsx
|
|
1168
|
-
import { jsx as
|
|
1169
|
-
var IconGameui = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1231
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
1232
|
+
var IconGameui = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx74("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx74(
|
|
1170
1233
|
"path",
|
|
1171
1234
|
{
|
|
1172
1235
|
fill: stroke || color || "currentColor",
|
|
@@ -1176,17 +1239,57 @@ var IconGameui = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1176
1239
|
}
|
|
1177
1240
|
) }), Gameui_default = IconGameui;
|
|
1178
1241
|
|
|
1242
|
+
// src/components/Gameuivariable.tsx
|
|
1243
|
+
import { jsx as jsx75, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
1244
|
+
var IconGameuivariable = ({ 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: [
|
|
1245
|
+
/* @__PURE__ */ jsx75(
|
|
1246
|
+
"path",
|
|
1247
|
+
{
|
|
1248
|
+
fill: fill || color || "currentColor",
|
|
1249
|
+
d: "M24 12L22.7363 13.2617C22.147 12.6727 21.4486 12.1931 20.6738 11.8555L17.2051 8.38672L13.5918 12L14.126 12.5342C13.5101 12.9715 12.9715 13.5101 12.5342 14.126L12 13.5918L8.38672 17.2051L11.8555 20.6738C12.1931 21.4486 12.6726 22.147 13.2617 22.7363L12 24L0 12L12 0L24 12ZM3.18164 12L6.79492 15.6133L10.4082 12L6.79492 8.38672L3.18164 12ZM8.38672 6.79492L12 10.4082L15.6133 6.79492L12 3.18164L8.38672 6.79492Z",
|
|
1250
|
+
fillRule: "evenodd",
|
|
1251
|
+
clipRule: "evenodd"
|
|
1252
|
+
}
|
|
1253
|
+
),
|
|
1254
|
+
/* @__PURE__ */ jsx75(
|
|
1255
|
+
"path",
|
|
1256
|
+
{
|
|
1257
|
+
fill: stroke || color || "currentColor",
|
|
1258
|
+
d: "M18 12C21.3137 12 24 14.6863 24 18C24 21.3137 21.3137 24 18 24C14.6863 24 12 21.3137 12 18C12 14.6863 14.6863 12 18 12ZM17.2922 18.6773L15.082 16.3781L13.9992 17.5406L17.2922 21L22.0008 16.1602L20.918 15L17.2922 18.6773Z"
|
|
1259
|
+
}
|
|
1260
|
+
)
|
|
1261
|
+
] }), Gameuivariable_default = IconGameuivariable;
|
|
1262
|
+
|
|
1263
|
+
// src/components/Gameuivariable2.tsx
|
|
1264
|
+
import { jsx as jsx76, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
1265
|
+
var IconGameuivariable2 = ({ 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: [
|
|
1266
|
+
/* @__PURE__ */ jsx76(
|
|
1267
|
+
"path",
|
|
1268
|
+
{
|
|
1269
|
+
fill: fill || color || "currentColor",
|
|
1270
|
+
d: "M21.3496 9.34961L19.7578 10.9404L17.2041 8.38672L13.5908 12L13.5918 12.001L12.001 13.5918L12 13.5908L8.38672 17.2041L12 20.8184L14.5127 18.3037L16.1045 19.8955L12 24L0 12L12 0L21.3496 9.34961ZM3.18164 12L6.7959 15.6133L10.4092 12L6.7959 8.38672L3.18164 12ZM8.38672 6.7959L12 10.4092L15.6133 6.7959L12 3.18164L8.38672 6.7959Z"
|
|
1271
|
+
}
|
|
1272
|
+
),
|
|
1273
|
+
/* @__PURE__ */ jsx76(
|
|
1274
|
+
"path",
|
|
1275
|
+
{
|
|
1276
|
+
fill: stroke || color || "currentColor",
|
|
1277
|
+
d: "M24 12L17.5 18.8L13 14.6L14.6 13L17.5 15.7L22.4 10.5L24 12Z"
|
|
1278
|
+
}
|
|
1279
|
+
)
|
|
1280
|
+
] }), Gameuivariable2_default = IconGameuivariable2;
|
|
1281
|
+
|
|
1179
1282
|
// src/components/GenerateMultimage.tsx
|
|
1180
|
-
import { jsx as
|
|
1181
|
-
var IconGenerateMultimage = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1182
|
-
/* @__PURE__ */
|
|
1283
|
+
import { jsx as jsx77, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
1284
|
+
var IconGenerateMultimage = ({ 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: [
|
|
1285
|
+
/* @__PURE__ */ jsx77(
|
|
1183
1286
|
"path",
|
|
1184
1287
|
{
|
|
1185
1288
|
fill: stroke || color || "currentColor",
|
|
1186
1289
|
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"
|
|
1187
1290
|
}
|
|
1188
1291
|
),
|
|
1189
|
-
/* @__PURE__ */
|
|
1292
|
+
/* @__PURE__ */ jsx77(
|
|
1190
1293
|
"path",
|
|
1191
1294
|
{
|
|
1192
1295
|
fill: stroke || color || "currentColor",
|
|
@@ -1195,12 +1298,12 @@ var IconGenerateMultimage = ({ size, width, height, color, className, fill, stro
|
|
|
1195
1298
|
clipRule: "evenodd"
|
|
1196
1299
|
}
|
|
1197
1300
|
),
|
|
1198
|
-
/* @__PURE__ */
|
|
1301
|
+
/* @__PURE__ */ jsx77("path", { fill: stroke || color || "currentColor", d: "M0 6V24H18V21.75H2.25V6H0Z" })
|
|
1199
1302
|
] }), GenerateMultimage_default = IconGenerateMultimage;
|
|
1200
1303
|
|
|
1201
1304
|
// src/components/GenerateFilled.tsx
|
|
1202
|
-
import { jsx as
|
|
1203
|
-
var IconGenerateFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1305
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
1306
|
+
var IconGenerateFilled = ({ 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(
|
|
1204
1307
|
"path",
|
|
1205
1308
|
{
|
|
1206
1309
|
fill: fill || color || "currentColor",
|
|
@@ -1211,16 +1314,16 @@ var IconGenerateFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1211
1314
|
) }), GenerateFilled_default = IconGenerateFilled;
|
|
1212
1315
|
|
|
1213
1316
|
// src/components/GenerateFrameStart.tsx
|
|
1214
|
-
import { jsx as
|
|
1215
|
-
var IconGenerateFrameStart = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1216
|
-
/* @__PURE__ */
|
|
1317
|
+
import { jsx as jsx79, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
1318
|
+
var IconGenerateFrameStart = ({ 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: [
|
|
1319
|
+
/* @__PURE__ */ jsx79(
|
|
1217
1320
|
"path",
|
|
1218
1321
|
{
|
|
1219
1322
|
fill: stroke || color || "currentColor",
|
|
1220
1323
|
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"
|
|
1221
1324
|
}
|
|
1222
1325
|
),
|
|
1223
|
-
/* @__PURE__ */
|
|
1326
|
+
/* @__PURE__ */ jsx79(
|
|
1224
1327
|
"path",
|
|
1225
1328
|
{
|
|
1226
1329
|
fill: stroke || color || "currentColor",
|
|
@@ -1232,9 +1335,9 @@ var IconGenerateFrameStart = ({ size, width, height, color, className, fill, str
|
|
|
1232
1335
|
] }), GenerateFrameStart_default = IconGenerateFrameStart;
|
|
1233
1336
|
|
|
1234
1337
|
// src/components/GenerateFrameStart2End.tsx
|
|
1235
|
-
import { jsx as
|
|
1236
|
-
var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1237
|
-
/* @__PURE__ */
|
|
1338
|
+
import { jsx as jsx80, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
1339
|
+
var IconGenerateFrameStart2End = ({ 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: [
|
|
1340
|
+
/* @__PURE__ */ jsx80(
|
|
1238
1341
|
"path",
|
|
1239
1342
|
{
|
|
1240
1343
|
fill: stroke || color || "currentColor",
|
|
@@ -1243,14 +1346,14 @@ var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill,
|
|
|
1243
1346
|
clipRule: "evenodd"
|
|
1244
1347
|
}
|
|
1245
1348
|
),
|
|
1246
|
-
/* @__PURE__ */
|
|
1349
|
+
/* @__PURE__ */ jsx80(
|
|
1247
1350
|
"path",
|
|
1248
1351
|
{
|
|
1249
1352
|
fill: stroke || color || "currentColor",
|
|
1250
1353
|
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"
|
|
1251
1354
|
}
|
|
1252
1355
|
),
|
|
1253
|
-
/* @__PURE__ */
|
|
1356
|
+
/* @__PURE__ */ jsx80(
|
|
1254
1357
|
"path",
|
|
1255
1358
|
{
|
|
1256
1359
|
fill: stroke || color || "currentColor",
|
|
@@ -1262,9 +1365,9 @@ var IconGenerateFrameStart2End = ({ size, width, height, color, className, fill,
|
|
|
1262
1365
|
] }), GenerateFrameStart2End_default = IconGenerateFrameStart2End;
|
|
1263
1366
|
|
|
1264
1367
|
// src/components/GenerateSwitchframe.tsx
|
|
1265
|
-
import { jsx as
|
|
1266
|
-
var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1267
|
-
/* @__PURE__ */
|
|
1368
|
+
import { jsx as jsx81, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
1369
|
+
var IconGenerateSwitchframe = ({ 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: [
|
|
1370
|
+
/* @__PURE__ */ jsx81(
|
|
1268
1371
|
"path",
|
|
1269
1372
|
{
|
|
1270
1373
|
fill: stroke || color || "currentColor",
|
|
@@ -1273,7 +1376,7 @@ var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, st
|
|
|
1273
1376
|
clipRule: "evenodd"
|
|
1274
1377
|
}
|
|
1275
1378
|
),
|
|
1276
|
-
/* @__PURE__ */
|
|
1379
|
+
/* @__PURE__ */ jsx81(
|
|
1277
1380
|
"path",
|
|
1278
1381
|
{
|
|
1279
1382
|
fill: stroke || color || "currentColor",
|
|
@@ -1285,16 +1388,16 @@ var IconGenerateSwitchframe = ({ size, width, height, color, className, fill, st
|
|
|
1285
1388
|
] }), GenerateSwitchframe_default = IconGenerateSwitchframe;
|
|
1286
1389
|
|
|
1287
1390
|
// src/components/GenerateT2V.tsx
|
|
1288
|
-
import { jsx as
|
|
1289
|
-
var IconGenerateT2V = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1290
|
-
/* @__PURE__ */
|
|
1391
|
+
import { jsx as jsx82, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
1392
|
+
var IconGenerateT2V = ({ 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: [
|
|
1393
|
+
/* @__PURE__ */ jsx82(
|
|
1291
1394
|
"path",
|
|
1292
1395
|
{
|
|
1293
1396
|
fill: stroke || color || "currentColor",
|
|
1294
1397
|
d: "M6 6V10.5H8.25V8.25H10.875V15.75H8.25V18H15.75V15.75H13.125V8.25H15.75V10.5H18V6H6Z"
|
|
1295
1398
|
}
|
|
1296
1399
|
),
|
|
1297
|
-
/* @__PURE__ */
|
|
1400
|
+
/* @__PURE__ */ jsx82(
|
|
1298
1401
|
"path",
|
|
1299
1402
|
{
|
|
1300
1403
|
fill: stroke || color || "currentColor",
|
|
@@ -1305,17 +1408,27 @@ var IconGenerateT2V = ({ size, width, height, color, className, fill, stroke })
|
|
|
1305
1408
|
)
|
|
1306
1409
|
] }), GenerateT2V_default = IconGenerateT2V;
|
|
1307
1410
|
|
|
1411
|
+
// src/components/Generate.tsx
|
|
1412
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
1413
|
+
var IconGenerate = ({ 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(
|
|
1414
|
+
"path",
|
|
1415
|
+
{
|
|
1416
|
+
fill: stroke || color || "currentColor",
|
|
1417
|
+
d: "M13.0908 0L16.3633 7.63672L24 10.9092V13.0908L16.3633 16.3633L13.0908 24H10.9092L7.63672 16.3633L0 13.0908V10.9092L7.63672 7.63672L10.9092 0H13.0908ZM9.31152 9.31152L3.03906 12L9.31152 14.6885L12 20.96L14.6885 14.6885L20.96 12L14.6885 9.31152L12 3.03906L9.31152 9.31152Z"
|
|
1418
|
+
}
|
|
1419
|
+
) }), Generate_default = IconGenerate;
|
|
1420
|
+
|
|
1308
1421
|
// src/components/GenreAuto.tsx
|
|
1309
|
-
import { jsx as
|
|
1310
|
-
var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1311
|
-
/* @__PURE__ */
|
|
1422
|
+
import { jsx as jsx84, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
1423
|
+
var IconGenreAuto = ({ 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: [
|
|
1424
|
+
/* @__PURE__ */ jsx84(
|
|
1312
1425
|
"path",
|
|
1313
1426
|
{
|
|
1314
1427
|
fill: stroke || color || "currentColor",
|
|
1315
1428
|
d: "M18.375 6.375V10.5H16.125V6.375H12V4.125H16.125V0H18.375V4.125H22.5V6.375H18.375Z"
|
|
1316
1429
|
}
|
|
1317
1430
|
),
|
|
1318
|
-
/* @__PURE__ */
|
|
1431
|
+
/* @__PURE__ */ jsx84(
|
|
1319
1432
|
"path",
|
|
1320
1433
|
{
|
|
1321
1434
|
fill: stroke || color || "currentColor",
|
|
@@ -1324,15 +1437,15 @@ var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1324
1437
|
clipRule: "evenodd"
|
|
1325
1438
|
}
|
|
1326
1439
|
),
|
|
1327
|
-
/* @__PURE__ */
|
|
1328
|
-
/* @__PURE__ */
|
|
1440
|
+
/* @__PURE__ */ jsx84("path", { fill: stroke || color || "currentColor", d: "M3.75 0.75L1.5 3L3.75 5.25L6 3L3.75 0.75Z" }),
|
|
1441
|
+
/* @__PURE__ */ jsx84(
|
|
1329
1442
|
"path",
|
|
1330
1443
|
{
|
|
1331
1444
|
fill: stroke || color || "currentColor",
|
|
1332
1445
|
d: "M18 21.75L20.25 19.5L22.5 21.75L20.25 24L18 21.75Z"
|
|
1333
1446
|
}
|
|
1334
1447
|
),
|
|
1335
|
-
/* @__PURE__ */
|
|
1448
|
+
/* @__PURE__ */ jsx84(
|
|
1336
1449
|
"path",
|
|
1337
1450
|
{
|
|
1338
1451
|
fill: stroke || color || "currentColor",
|
|
@@ -1342,23 +1455,23 @@ var IconGenreAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1342
1455
|
] }), GenreAuto_default = IconGenreAuto;
|
|
1343
1456
|
|
|
1344
1457
|
// src/components/GenreComedy.tsx
|
|
1345
|
-
import { jsx as
|
|
1346
|
-
var IconGenreComedy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1347
|
-
/* @__PURE__ */
|
|
1458
|
+
import { jsx as jsx85, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
1459
|
+
var IconGenreComedy = ({ 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: [
|
|
1460
|
+
/* @__PURE__ */ jsx85(
|
|
1348
1461
|
"path",
|
|
1349
1462
|
{
|
|
1350
1463
|
fill: stroke || color || "currentColor",
|
|
1351
1464
|
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"
|
|
1352
1465
|
}
|
|
1353
1466
|
),
|
|
1354
|
-
/* @__PURE__ */
|
|
1467
|
+
/* @__PURE__ */ jsx85(
|
|
1355
1468
|
"path",
|
|
1356
1469
|
{
|
|
1357
1470
|
fill: stroke || color || "currentColor",
|
|
1358
1471
|
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"
|
|
1359
1472
|
}
|
|
1360
1473
|
),
|
|
1361
|
-
/* @__PURE__ */
|
|
1474
|
+
/* @__PURE__ */ jsx85(
|
|
1362
1475
|
"path",
|
|
1363
1476
|
{
|
|
1364
1477
|
fill: stroke || color || "currentColor",
|
|
@@ -1367,7 +1480,7 @@ var IconGenreComedy = ({ size, width, height, color, className, fill, stroke })
|
|
|
1367
1480
|
clipRule: "evenodd"
|
|
1368
1481
|
}
|
|
1369
1482
|
),
|
|
1370
|
-
/* @__PURE__ */
|
|
1483
|
+
/* @__PURE__ */ jsx85(
|
|
1371
1484
|
"path",
|
|
1372
1485
|
{
|
|
1373
1486
|
fill: stroke || color || "currentColor",
|
|
@@ -1379,8 +1492,8 @@ var IconGenreComedy = ({ size, width, height, color, className, fill, stroke })
|
|
|
1379
1492
|
] }), GenreComedy_default = IconGenreComedy;
|
|
1380
1493
|
|
|
1381
1494
|
// src/components/GenreFantasy.tsx
|
|
1382
|
-
import { jsx as
|
|
1383
|
-
var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1495
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
1496
|
+
var IconGenreFantasy = ({ 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(
|
|
1384
1497
|
"path",
|
|
1385
1498
|
{
|
|
1386
1499
|
fill: stroke || color || "currentColor",
|
|
@@ -1391,23 +1504,23 @@ var IconGenreFantasy = ({ size, width, height, color, className, fill, stroke })
|
|
|
1391
1504
|
) }), GenreFantasy_default = IconGenreFantasy;
|
|
1392
1505
|
|
|
1393
1506
|
// src/components/GenreHorror.tsx
|
|
1394
|
-
import { jsx as
|
|
1395
|
-
var IconGenreHorror = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1396
|
-
/* @__PURE__ */
|
|
1507
|
+
import { jsx as jsx87, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
1508
|
+
var IconGenreHorror = ({ 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: [
|
|
1509
|
+
/* @__PURE__ */ jsx87(
|
|
1397
1510
|
"path",
|
|
1398
1511
|
{
|
|
1399
1512
|
fill: stroke || color || "currentColor",
|
|
1400
1513
|
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"
|
|
1401
1514
|
}
|
|
1402
1515
|
),
|
|
1403
|
-
/* @__PURE__ */
|
|
1516
|
+
/* @__PURE__ */ jsx87(
|
|
1404
1517
|
"path",
|
|
1405
1518
|
{
|
|
1406
1519
|
fill: stroke || color || "currentColor",
|
|
1407
1520
|
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"
|
|
1408
1521
|
}
|
|
1409
1522
|
),
|
|
1410
|
-
/* @__PURE__ */
|
|
1523
|
+
/* @__PURE__ */ jsx87(
|
|
1411
1524
|
"path",
|
|
1412
1525
|
{
|
|
1413
1526
|
fill: stroke || color || "currentColor",
|
|
@@ -1419,8 +1532,8 @@ var IconGenreHorror = ({ size, width, height, color, className, fill, stroke })
|
|
|
1419
1532
|
] }), GenreHorror_default = IconGenreHorror;
|
|
1420
1533
|
|
|
1421
1534
|
// src/components/GenreRomance.tsx
|
|
1422
|
-
import { jsx as
|
|
1423
|
-
var IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1535
|
+
import { jsx as jsx88 } from "react/jsx-runtime";
|
|
1536
|
+
var IconGenreRomance = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx88("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx88(
|
|
1424
1537
|
"path",
|
|
1425
1538
|
{
|
|
1426
1539
|
fill: stroke || color || "currentColor",
|
|
@@ -1431,16 +1544,16 @@ var IconGenreRomance = ({ size, width, height, color, className, fill, stroke })
|
|
|
1431
1544
|
) }), GenreRomance_default = IconGenreRomance;
|
|
1432
1545
|
|
|
1433
1546
|
// src/components/GenreScifi.tsx
|
|
1434
|
-
import { jsx as
|
|
1435
|
-
var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1436
|
-
/* @__PURE__ */
|
|
1547
|
+
import { jsx as jsx89, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
1548
|
+
var IconGenreScifi = ({ 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: [
|
|
1549
|
+
/* @__PURE__ */ jsx89(
|
|
1437
1550
|
"path",
|
|
1438
1551
|
{
|
|
1439
1552
|
fill: stroke || color || "currentColor",
|
|
1440
1553
|
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"
|
|
1441
1554
|
}
|
|
1442
1555
|
),
|
|
1443
|
-
/* @__PURE__ */
|
|
1556
|
+
/* @__PURE__ */ jsx89(
|
|
1444
1557
|
"path",
|
|
1445
1558
|
{
|
|
1446
1559
|
fill: stroke || color || "currentColor",
|
|
@@ -1449,7 +1562,7 @@ var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1449
1562
|
clipRule: "evenodd"
|
|
1450
1563
|
}
|
|
1451
1564
|
),
|
|
1452
|
-
/* @__PURE__ */
|
|
1565
|
+
/* @__PURE__ */ jsx89(
|
|
1453
1566
|
"path",
|
|
1454
1567
|
{
|
|
1455
1568
|
fill: stroke || color || "currentColor",
|
|
@@ -1459,8 +1572,8 @@ var IconGenreScifi = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
1459
1572
|
] }), GenreScifi_default = IconGenreScifi;
|
|
1460
1573
|
|
|
1461
1574
|
// src/components/GenreSuspense.tsx
|
|
1462
|
-
import { jsx as
|
|
1463
|
-
var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1575
|
+
import { jsx as jsx90 } from "react/jsx-runtime";
|
|
1576
|
+
var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx90("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx90(
|
|
1464
1577
|
"path",
|
|
1465
1578
|
{
|
|
1466
1579
|
fill: stroke || color || "currentColor",
|
|
@@ -1471,8 +1584,8 @@ var IconGenreSuspense = ({ size, width, height, color, className, fill, stroke }
|
|
|
1471
1584
|
) }), GenreSuspense_default = IconGenreSuspense;
|
|
1472
1585
|
|
|
1473
1586
|
// src/components/Genre.tsx
|
|
1474
|
-
import { jsx as
|
|
1475
|
-
var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1587
|
+
import { jsx as jsx91 } from "react/jsx-runtime";
|
|
1588
|
+
var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx91("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx91(
|
|
1476
1589
|
"path",
|
|
1477
1590
|
{
|
|
1478
1591
|
fill: stroke || color || "currentColor",
|
|
@@ -1483,9 +1596,9 @@ var IconGenre = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
1483
1596
|
) }), Genre_default = IconGenre;
|
|
1484
1597
|
|
|
1485
1598
|
// src/components/GoogleLogoFilled.tsx
|
|
1486
|
-
import { jsx as
|
|
1487
|
-
var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1488
|
-
/* @__PURE__ */
|
|
1599
|
+
import { jsx as jsx92, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
1600
|
+
var IconGoogleLogoFilled = ({ 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: [
|
|
1601
|
+
/* @__PURE__ */ jsx92(
|
|
1489
1602
|
"mask",
|
|
1490
1603
|
{
|
|
1491
1604
|
id: "mask0_48_113",
|
|
@@ -1495,7 +1608,7 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1495
1608
|
y: "0",
|
|
1496
1609
|
maskUnits: "userSpaceOnUse",
|
|
1497
1610
|
style: { maskType: "luminance" },
|
|
1498
|
-
children: /* @__PURE__ */
|
|
1611
|
+
children: /* @__PURE__ */ jsx92(
|
|
1499
1612
|
"path",
|
|
1500
1613
|
{
|
|
1501
1614
|
fill: stroke || color || "currentColor",
|
|
@@ -1504,64 +1617,64 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1504
1617
|
)
|
|
1505
1618
|
}
|
|
1506
1619
|
),
|
|
1507
|
-
/* @__PURE__ */
|
|
1508
|
-
/* @__PURE__ */
|
|
1620
|
+
/* @__PURE__ */ jsxs47("g", { mask: "url(#mask0_48_113)", children: [
|
|
1621
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter0_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1509
1622
|
"path",
|
|
1510
1623
|
{
|
|
1511
1624
|
fill: "url(#paint0_radial_48_113)",
|
|
1512
1625
|
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"
|
|
1513
1626
|
}
|
|
1514
1627
|
) }),
|
|
1515
|
-
/* @__PURE__ */
|
|
1628
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter1_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1516
1629
|
"path",
|
|
1517
1630
|
{
|
|
1518
1631
|
fill: "url(#paint1_radial_48_113)",
|
|
1519
1632
|
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"
|
|
1520
1633
|
}
|
|
1521
1634
|
) }),
|
|
1522
|
-
/* @__PURE__ */
|
|
1635
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter2_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1523
1636
|
"path",
|
|
1524
1637
|
{
|
|
1525
1638
|
fill: "url(#paint2_radial_48_113)",
|
|
1526
1639
|
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"
|
|
1527
1640
|
}
|
|
1528
1641
|
) }),
|
|
1529
|
-
/* @__PURE__ */
|
|
1642
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter3_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1530
1643
|
"path",
|
|
1531
1644
|
{
|
|
1532
1645
|
fill: "url(#paint3_radial_48_113)",
|
|
1533
1646
|
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"
|
|
1534
1647
|
}
|
|
1535
1648
|
) }),
|
|
1536
|
-
/* @__PURE__ */
|
|
1649
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter4_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1537
1650
|
"path",
|
|
1538
1651
|
{
|
|
1539
1652
|
fill: "#3086FF",
|
|
1540
1653
|
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"
|
|
1541
1654
|
}
|
|
1542
1655
|
) }),
|
|
1543
|
-
/* @__PURE__ */
|
|
1656
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter5_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1544
1657
|
"path",
|
|
1545
1658
|
{
|
|
1546
1659
|
fill: "url(#paint4_radial_48_113)",
|
|
1547
1660
|
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"
|
|
1548
1661
|
}
|
|
1549
1662
|
) }),
|
|
1550
|
-
/* @__PURE__ */
|
|
1663
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter6_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1551
1664
|
"path",
|
|
1552
1665
|
{
|
|
1553
1666
|
fill: "url(#paint5_radial_48_113)",
|
|
1554
1667
|
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"
|
|
1555
1668
|
}
|
|
1556
1669
|
) }),
|
|
1557
|
-
/* @__PURE__ */
|
|
1670
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter7_f_48_113)", children: /* @__PURE__ */ jsx92(
|
|
1558
1671
|
"path",
|
|
1559
1672
|
{
|
|
1560
1673
|
fill: "url(#paint6_radial_48_113)",
|
|
1561
1674
|
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"
|
|
1562
1675
|
}
|
|
1563
1676
|
) }),
|
|
1564
|
-
/* @__PURE__ */
|
|
1677
|
+
/* @__PURE__ */ jsx92("g", { filter: "url(#filter8_f_48_113)", style: { opacity: 0.5 }, children: /* @__PURE__ */ jsx92(
|
|
1565
1678
|
"path",
|
|
1566
1679
|
{
|
|
1567
1680
|
fill: "url(#paint7_linear_48_113)",
|
|
@@ -1569,8 +1682,8 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1569
1682
|
}
|
|
1570
1683
|
) })
|
|
1571
1684
|
] }),
|
|
1572
|
-
/* @__PURE__ */
|
|
1573
|
-
/* @__PURE__ */
|
|
1685
|
+
/* @__PURE__ */ jsxs47("defs", { children: [
|
|
1686
|
+
/* @__PURE__ */ jsxs47(
|
|
1574
1687
|
"filter",
|
|
1575
1688
|
{
|
|
1576
1689
|
id: "filter0_f_48_113",
|
|
@@ -1581,13 +1694,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1581
1694
|
filterUnits: "userSpaceOnUse",
|
|
1582
1695
|
colorInterpolationFilters: "sRGB",
|
|
1583
1696
|
children: [
|
|
1584
|
-
/* @__PURE__ */
|
|
1585
|
-
/* @__PURE__ */
|
|
1586
|
-
/* @__PURE__ */
|
|
1697
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1698
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1699
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1587
1700
|
]
|
|
1588
1701
|
}
|
|
1589
1702
|
),
|
|
1590
|
-
/* @__PURE__ */
|
|
1703
|
+
/* @__PURE__ */ jsxs47(
|
|
1591
1704
|
"filter",
|
|
1592
1705
|
{
|
|
1593
1706
|
id: "filter1_f_48_113",
|
|
@@ -1598,13 +1711,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1598
1711
|
filterUnits: "userSpaceOnUse",
|
|
1599
1712
|
colorInterpolationFilters: "sRGB",
|
|
1600
1713
|
children: [
|
|
1601
|
-
/* @__PURE__ */
|
|
1602
|
-
/* @__PURE__ */
|
|
1603
|
-
/* @__PURE__ */
|
|
1714
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1715
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1716
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1604
1717
|
]
|
|
1605
1718
|
}
|
|
1606
1719
|
),
|
|
1607
|
-
/* @__PURE__ */
|
|
1720
|
+
/* @__PURE__ */ jsxs47(
|
|
1608
1721
|
"filter",
|
|
1609
1722
|
{
|
|
1610
1723
|
id: "filter2_f_48_113",
|
|
@@ -1615,13 +1728,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1615
1728
|
filterUnits: "userSpaceOnUse",
|
|
1616
1729
|
colorInterpolationFilters: "sRGB",
|
|
1617
1730
|
children: [
|
|
1618
|
-
/* @__PURE__ */
|
|
1619
|
-
/* @__PURE__ */
|
|
1620
|
-
/* @__PURE__ */
|
|
1731
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1732
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1733
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1621
1734
|
]
|
|
1622
1735
|
}
|
|
1623
1736
|
),
|
|
1624
|
-
/* @__PURE__ */
|
|
1737
|
+
/* @__PURE__ */ jsxs47(
|
|
1625
1738
|
"filter",
|
|
1626
1739
|
{
|
|
1627
1740
|
id: "filter3_f_48_113",
|
|
@@ -1632,13 +1745,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1632
1745
|
filterUnits: "userSpaceOnUse",
|
|
1633
1746
|
colorInterpolationFilters: "sRGB",
|
|
1634
1747
|
children: [
|
|
1635
|
-
/* @__PURE__ */
|
|
1636
|
-
/* @__PURE__ */
|
|
1637
|
-
/* @__PURE__ */
|
|
1748
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1749
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1750
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1638
1751
|
]
|
|
1639
1752
|
}
|
|
1640
1753
|
),
|
|
1641
|
-
/* @__PURE__ */
|
|
1754
|
+
/* @__PURE__ */ jsxs47(
|
|
1642
1755
|
"filter",
|
|
1643
1756
|
{
|
|
1644
1757
|
id: "filter4_f_48_113",
|
|
@@ -1649,13 +1762,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1649
1762
|
filterUnits: "userSpaceOnUse",
|
|
1650
1763
|
colorInterpolationFilters: "sRGB",
|
|
1651
1764
|
children: [
|
|
1652
|
-
/* @__PURE__ */
|
|
1653
|
-
/* @__PURE__ */
|
|
1654
|
-
/* @__PURE__ */
|
|
1765
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1766
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1767
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1655
1768
|
]
|
|
1656
1769
|
}
|
|
1657
1770
|
),
|
|
1658
|
-
/* @__PURE__ */
|
|
1771
|
+
/* @__PURE__ */ jsxs47(
|
|
1659
1772
|
"filter",
|
|
1660
1773
|
{
|
|
1661
1774
|
id: "filter5_f_48_113",
|
|
@@ -1666,13 +1779,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1666
1779
|
filterUnits: "userSpaceOnUse",
|
|
1667
1780
|
colorInterpolationFilters: "sRGB",
|
|
1668
1781
|
children: [
|
|
1669
|
-
/* @__PURE__ */
|
|
1670
|
-
/* @__PURE__ */
|
|
1671
|
-
/* @__PURE__ */
|
|
1782
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1783
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1784
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1672
1785
|
]
|
|
1673
1786
|
}
|
|
1674
1787
|
),
|
|
1675
|
-
/* @__PURE__ */
|
|
1788
|
+
/* @__PURE__ */ jsxs47(
|
|
1676
1789
|
"filter",
|
|
1677
1790
|
{
|
|
1678
1791
|
id: "filter6_f_48_113",
|
|
@@ -1683,13 +1796,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1683
1796
|
filterUnits: "userSpaceOnUse",
|
|
1684
1797
|
colorInterpolationFilters: "sRGB",
|
|
1685
1798
|
children: [
|
|
1686
|
-
/* @__PURE__ */
|
|
1687
|
-
/* @__PURE__ */
|
|
1688
|
-
/* @__PURE__ */
|
|
1799
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1800
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1801
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "1.65243" })
|
|
1689
1802
|
]
|
|
1690
1803
|
}
|
|
1691
1804
|
),
|
|
1692
|
-
/* @__PURE__ */
|
|
1805
|
+
/* @__PURE__ */ jsxs47(
|
|
1693
1806
|
"filter",
|
|
1694
1807
|
{
|
|
1695
1808
|
id: "filter7_f_48_113",
|
|
@@ -1700,13 +1813,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1700
1813
|
filterUnits: "userSpaceOnUse",
|
|
1701
1814
|
colorInterpolationFilters: "sRGB",
|
|
1702
1815
|
children: [
|
|
1703
|
-
/* @__PURE__ */
|
|
1704
|
-
/* @__PURE__ */
|
|
1705
|
-
/* @__PURE__ */
|
|
1816
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1817
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1818
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1706
1819
|
]
|
|
1707
1820
|
}
|
|
1708
1821
|
),
|
|
1709
|
-
/* @__PURE__ */
|
|
1822
|
+
/* @__PURE__ */ jsxs47(
|
|
1710
1823
|
"filter",
|
|
1711
1824
|
{
|
|
1712
1825
|
id: "filter8_f_48_113",
|
|
@@ -1717,13 +1830,13 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1717
1830
|
filterUnits: "userSpaceOnUse",
|
|
1718
1831
|
colorInterpolationFilters: "sRGB",
|
|
1719
1832
|
children: [
|
|
1720
|
-
/* @__PURE__ */
|
|
1721
|
-
/* @__PURE__ */
|
|
1722
|
-
/* @__PURE__ */
|
|
1833
|
+
/* @__PURE__ */ jsx92("feFlood", { result: "BackgroundImageFix", floodOpacity: "0" }),
|
|
1834
|
+
/* @__PURE__ */ jsx92("feBlend", { in: "SourceGraphic", in2: "BackgroundImageFix", mode: "normal", result: "shape" }),
|
|
1835
|
+
/* @__PURE__ */ jsx92("feGaussianBlur", { result: "effect1_foregroundBlur_48_113", stdDeviation: "0.23504" })
|
|
1723
1836
|
]
|
|
1724
1837
|
}
|
|
1725
1838
|
),
|
|
1726
|
-
/* @__PURE__ */
|
|
1839
|
+
/* @__PURE__ */ jsxs47(
|
|
1727
1840
|
"radialGradient",
|
|
1728
1841
|
{
|
|
1729
1842
|
id: "paint0_radial_48_113",
|
|
@@ -1733,20 +1846,20 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1733
1846
|
gradientTransform: "matrix(-0.498722 -11.9519 17.9311 -0.717223 9.06911 20.3322)",
|
|
1734
1847
|
gradientUnits: "userSpaceOnUse",
|
|
1735
1848
|
children: [
|
|
1736
|
-
/* @__PURE__ */
|
|
1737
|
-
/* @__PURE__ */
|
|
1738
|
-
/* @__PURE__ */
|
|
1739
|
-
/* @__PURE__ */
|
|
1740
|
-
/* @__PURE__ */
|
|
1741
|
-
/* @__PURE__ */
|
|
1742
|
-
/* @__PURE__ */
|
|
1743
|
-
/* @__PURE__ */
|
|
1744
|
-
/* @__PURE__ */
|
|
1745
|
-
/* @__PURE__ */
|
|
1849
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.141612", stopColor: "#1ABD4D" }),
|
|
1850
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.247515", stopColor: "#6EC30D" }),
|
|
1851
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.311547", stopColor: "#8AC502" }),
|
|
1852
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.366013", stopColor: "#A2C600" }),
|
|
1853
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.445673", stopColor: "#C8C903" }),
|
|
1854
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.540305", stopColor: "#EBCB03" }),
|
|
1855
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.615636", stopColor: "#F7CD07" }),
|
|
1856
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.699345", stopColor: "#FDCD04" }),
|
|
1857
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.771242", stopColor: "#FDCE05" }),
|
|
1858
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.860566", stopColor: "#FFCE0A" })
|
|
1746
1859
|
]
|
|
1747
1860
|
}
|
|
1748
1861
|
),
|
|
1749
|
-
/* @__PURE__ */
|
|
1862
|
+
/* @__PURE__ */ jsxs47(
|
|
1750
1863
|
"radialGradient",
|
|
1751
1864
|
{
|
|
1752
1865
|
id: "paint1_radial_48_113",
|
|
@@ -1756,12 +1869,12 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1756
1869
|
gradientTransform: "matrix(8.46967 -2.03557e-05 -1.19045e-05 10.7093 20.253 6.36819)",
|
|
1757
1870
|
gradientUnits: "userSpaceOnUse",
|
|
1758
1871
|
children: [
|
|
1759
|
-
/* @__PURE__ */
|
|
1760
|
-
/* @__PURE__ */
|
|
1872
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.408458", stopColor: "#FB4E5A" }),
|
|
1873
|
+
/* @__PURE__ */ jsx92("stop", { offset: "1", stopColor: "#FF4540" })
|
|
1761
1874
|
]
|
|
1762
1875
|
}
|
|
1763
1876
|
),
|
|
1764
|
-
/* @__PURE__ */
|
|
1877
|
+
/* @__PURE__ */ jsxs47(
|
|
1765
1878
|
"radialGradient",
|
|
1766
1879
|
{
|
|
1767
1880
|
id: "paint2_radial_48_113",
|
|
@@ -1771,18 +1884,18 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1771
1884
|
gradientTransform: "matrix(-11.8666 6.43492 8.91875 15.766 15.6277 -1.68219)",
|
|
1772
1885
|
gradientUnits: "userSpaceOnUse",
|
|
1773
1886
|
children: [
|
|
1774
|
-
/* @__PURE__ */
|
|
1775
|
-
/* @__PURE__ */
|
|
1776
|
-
/* @__PURE__ */
|
|
1777
|
-
/* @__PURE__ */
|
|
1778
|
-
/* @__PURE__ */
|
|
1779
|
-
/* @__PURE__ */
|
|
1780
|
-
/* @__PURE__ */
|
|
1781
|
-
/* @__PURE__ */
|
|
1887
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.231273", stopColor: "#FF4541" }),
|
|
1888
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.311547", stopColor: "#FF4540" }),
|
|
1889
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.457516", stopColor: "#FF4640" }),
|
|
1890
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.540305", stopColor: "#FF473F" }),
|
|
1891
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.699346", stopColor: "#FF5138" }),
|
|
1892
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.771242", stopColor: "#FF5B33" }),
|
|
1893
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.860566", stopColor: "#FF6C29" }),
|
|
1894
|
+
/* @__PURE__ */ jsx92("stop", { offset: "1", stopColor: "#FF8C18" })
|
|
1782
1895
|
]
|
|
1783
1896
|
}
|
|
1784
1897
|
),
|
|
1785
|
-
/* @__PURE__ */
|
|
1898
|
+
/* @__PURE__ */ jsxs47(
|
|
1786
1899
|
"radialGradient",
|
|
1787
1900
|
{
|
|
1788
1901
|
id: "paint3_radial_48_113",
|
|
@@ -1792,19 +1905,19 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1792
1905
|
gradientTransform: "matrix(-21.5204 -27.5047 -10.3696 7.77752 12.4702 22.5743)",
|
|
1793
1906
|
gradientUnits: "userSpaceOnUse",
|
|
1794
1907
|
children: [
|
|
1795
|
-
/* @__PURE__ */
|
|
1796
|
-
/* @__PURE__ */
|
|
1797
|
-
/* @__PURE__ */
|
|
1798
|
-
/* @__PURE__ */
|
|
1799
|
-
/* @__PURE__ */
|
|
1800
|
-
/* @__PURE__ */
|
|
1801
|
-
/* @__PURE__ */
|
|
1802
|
-
/* @__PURE__ */
|
|
1803
|
-
/* @__PURE__ */
|
|
1908
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.131546", stopColor: "#0CBA65" }),
|
|
1909
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.209784", stopColor: "#0BB86D" }),
|
|
1910
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.297297", stopColor: "#09B479" }),
|
|
1911
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.396257", stopColor: "#08AD93" }),
|
|
1912
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.477124", stopColor: "#0AA6A9" }),
|
|
1913
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.568425", stopColor: "#0D9CC6" }),
|
|
1914
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.667385", stopColor: "#1893DD" }),
|
|
1915
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.768727", stopColor: "#258BF1" }),
|
|
1916
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.858506", stopColor: "#3086FF" })
|
|
1804
1917
|
]
|
|
1805
1918
|
}
|
|
1806
1919
|
),
|
|
1807
|
-
/* @__PURE__ */
|
|
1920
|
+
/* @__PURE__ */ jsxs47(
|
|
1808
1921
|
"radialGradient",
|
|
1809
1922
|
{
|
|
1810
1923
|
id: "paint4_radial_48_113",
|
|
@@ -1814,18 +1927,18 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1814
1927
|
gradientTransform: "matrix(-1.52295 12.8522 18.1501 2.06168 11.2421 2.13475)",
|
|
1815
1928
|
gradientUnits: "userSpaceOnUse",
|
|
1816
1929
|
children: [
|
|
1817
|
-
/* @__PURE__ */
|
|
1818
|
-
/* @__PURE__ */
|
|
1819
|
-
/* @__PURE__ */
|
|
1820
|
-
/* @__PURE__ */
|
|
1821
|
-
/* @__PURE__ */
|
|
1822
|
-
/* @__PURE__ */
|
|
1823
|
-
/* @__PURE__ */
|
|
1824
|
-
/* @__PURE__ */
|
|
1930
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.366013", stopColor: "#FF4E3A" }),
|
|
1931
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.457516", stopColor: "#FF8A1B" }),
|
|
1932
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.540305", stopColor: "#FFA312" }),
|
|
1933
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.615636", stopColor: "#FFB60C" }),
|
|
1934
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.771242", stopColor: "#FFCD0A" }),
|
|
1935
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.860566", stopColor: "#FECF0A" }),
|
|
1936
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.915033", stopColor: "#FECF08" }),
|
|
1937
|
+
/* @__PURE__ */ jsx92("stop", { offset: "1", stopColor: "#FDCD01" })
|
|
1825
1938
|
]
|
|
1826
1939
|
}
|
|
1827
1940
|
),
|
|
1828
|
-
/* @__PURE__ */
|
|
1941
|
+
/* @__PURE__ */ jsxs47(
|
|
1829
1942
|
"radialGradient",
|
|
1830
1943
|
{
|
|
1831
1944
|
id: "paint5_radial_48_113",
|
|
@@ -1835,15 +1948,15 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1835
1948
|
gradientTransform: "matrix(-4.40212 4.76677 -13.7322 -12.1566 9.10044 2.00144)",
|
|
1836
1949
|
gradientUnits: "userSpaceOnUse",
|
|
1837
1950
|
children: [
|
|
1838
|
-
/* @__PURE__ */
|
|
1839
|
-
/* @__PURE__ */
|
|
1840
|
-
/* @__PURE__ */
|
|
1841
|
-
/* @__PURE__ */
|
|
1842
|
-
/* @__PURE__ */
|
|
1951
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.315904", stopColor: "#FF4C3C" }),
|
|
1952
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.603818", stopColor: "#FF692C" }),
|
|
1953
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.726837", stopColor: "#FF7825" }),
|
|
1954
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.884534", stopColor: "#FF8D1B" }),
|
|
1955
|
+
/* @__PURE__ */ jsx92("stop", { offset: "1", stopColor: "#FF9F13" })
|
|
1843
1956
|
]
|
|
1844
1957
|
}
|
|
1845
1958
|
),
|
|
1846
|
-
/* @__PURE__ */
|
|
1959
|
+
/* @__PURE__ */ jsxs47(
|
|
1847
1960
|
"radialGradient",
|
|
1848
1961
|
{
|
|
1849
1962
|
id: "paint6_radial_48_113",
|
|
@@ -1853,20 +1966,20 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1853
1966
|
gradientTransform: "matrix(-11.8666 -6.43492 8.91876 -15.766 15.6277 25.6232)",
|
|
1854
1967
|
gradientUnits: "userSpaceOnUse",
|
|
1855
1968
|
children: [
|
|
1856
|
-
/* @__PURE__ */
|
|
1857
|
-
/* @__PURE__ */
|
|
1858
|
-
/* @__PURE__ */
|
|
1859
|
-
/* @__PURE__ */
|
|
1860
|
-
/* @__PURE__ */
|
|
1861
|
-
/* @__PURE__ */
|
|
1862
|
-
/* @__PURE__ */
|
|
1863
|
-
/* @__PURE__ */
|
|
1864
|
-
/* @__PURE__ */
|
|
1865
|
-
/* @__PURE__ */
|
|
1969
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.231273", stopColor: "#0FBC5F" }),
|
|
1970
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.311547", stopColor: "#0FBC5F" }),
|
|
1971
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.366013", stopColor: "#0FBC5E" }),
|
|
1972
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.457516", stopColor: "#0FBC5D" }),
|
|
1973
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.540305", stopColor: "#12BC58" }),
|
|
1974
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.699346", stopColor: "#28BF3C" }),
|
|
1975
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.771242", stopColor: "#38C02B" }),
|
|
1976
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.860566", stopColor: "#52C218" }),
|
|
1977
|
+
/* @__PURE__ */ jsx92("stop", { offset: "0.915033", stopColor: "#67C30F" }),
|
|
1978
|
+
/* @__PURE__ */ jsx92("stop", { offset: "1", stopColor: "#86C504" })
|
|
1866
1979
|
]
|
|
1867
1980
|
}
|
|
1868
1981
|
),
|
|
1869
|
-
/* @__PURE__ */
|
|
1982
|
+
/* @__PURE__ */ jsxs47(
|
|
1870
1983
|
"linearGradient",
|
|
1871
1984
|
{
|
|
1872
1985
|
id: "paint7_linear_48_113",
|
|
@@ -1876,8 +1989,8 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1876
1989
|
y2: "21.5116",
|
|
1877
1990
|
gradientUnits: "userSpaceOnUse",
|
|
1878
1991
|
children: [
|
|
1879
|
-
/* @__PURE__ */
|
|
1880
|
-
/* @__PURE__ */
|
|
1992
|
+
/* @__PURE__ */ jsx92("stop", { stopColor: "#0FBC5C" }),
|
|
1993
|
+
/* @__PURE__ */ jsx92("stop", { offset: "1", stopColor: "#0CBA65" })
|
|
1881
1994
|
]
|
|
1882
1995
|
}
|
|
1883
1996
|
)
|
|
@@ -1885,8 +1998,8 @@ var IconGoogleLogoFilled = ({ size, width, height, color, className, fill, strok
|
|
|
1885
1998
|
] }), GoogleLogoFilled_default = IconGoogleLogoFilled;
|
|
1886
1999
|
|
|
1887
2000
|
// src/components/Handtool.tsx
|
|
1888
|
-
import { jsx as
|
|
1889
|
-
var IconHandtool = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2001
|
+
import { jsx as jsx93 } from "react/jsx-runtime";
|
|
2002
|
+
var IconHandtool = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx93("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx93(
|
|
1890
2003
|
"path",
|
|
1891
2004
|
{
|
|
1892
2005
|
fill: stroke || color || "currentColor",
|
|
@@ -1895,17 +2008,17 @@ var IconHandtool = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
1895
2008
|
) }), Handtool_default = IconHandtool;
|
|
1896
2009
|
|
|
1897
2010
|
// src/components/Help.tsx
|
|
1898
|
-
import { jsx as
|
|
1899
|
-
var IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1900
|
-
/* @__PURE__ */
|
|
1901
|
-
/* @__PURE__ */
|
|
2011
|
+
import { jsx as jsx94, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
2012
|
+
var IconHelp = ({ 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: [
|
|
2013
|
+
/* @__PURE__ */ jsx94("path", { fill: stroke || color || "currentColor", d: "M13.125 16.5V18.75H10.875V16.5H13.125Z" }),
|
|
2014
|
+
/* @__PURE__ */ jsx94(
|
|
1902
2015
|
"path",
|
|
1903
2016
|
{
|
|
1904
2017
|
fill: stroke || color || "currentColor",
|
|
1905
2018
|
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"
|
|
1906
2019
|
}
|
|
1907
2020
|
),
|
|
1908
|
-
/* @__PURE__ */
|
|
2021
|
+
/* @__PURE__ */ jsx94(
|
|
1909
2022
|
"path",
|
|
1910
2023
|
{
|
|
1911
2024
|
fill: stroke || color || "currentColor",
|
|
@@ -1917,8 +2030,8 @@ var IconHelp = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
1917
2030
|
] }), Help_default = IconHelp;
|
|
1918
2031
|
|
|
1919
2032
|
// src/components/HomepageFilled.tsx
|
|
1920
|
-
import { jsx as
|
|
1921
|
-
var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2033
|
+
import { jsx as jsx95 } from "react/jsx-runtime";
|
|
2034
|
+
var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx95("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx95(
|
|
1922
2035
|
"path",
|
|
1923
2036
|
{
|
|
1924
2037
|
fill: fill || color || "currentColor",
|
|
@@ -1929,8 +2042,8 @@ var IconHomepageFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
1929
2042
|
) }), HomepageFilled_default = IconHomepageFilled;
|
|
1930
2043
|
|
|
1931
2044
|
// src/components/Hotareacenter.tsx
|
|
1932
|
-
import { jsx as
|
|
1933
|
-
var IconHotareacenter = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2045
|
+
import { jsx as jsx96 } from "react/jsx-runtime";
|
|
2046
|
+
var IconHotareacenter = ({ 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(
|
|
1934
2047
|
"path",
|
|
1935
2048
|
{
|
|
1936
2049
|
fill: "#191919",
|
|
@@ -1940,23 +2053,23 @@ var IconHotareacenter = ({ size, width, height, color, className, fill, stroke }
|
|
|
1940
2053
|
) }), Hotareacenter_default = IconHotareacenter;
|
|
1941
2054
|
|
|
1942
2055
|
// src/components/ImageGeneration.tsx
|
|
1943
|
-
import { jsx as
|
|
1944
|
-
var IconImageGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1945
|
-
/* @__PURE__ */
|
|
2056
|
+
import { jsx as jsx97, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
2057
|
+
var IconImageGeneration = ({ 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: [
|
|
2058
|
+
/* @__PURE__ */ jsx97(
|
|
1946
2059
|
"path",
|
|
1947
2060
|
{
|
|
1948
2061
|
fill: stroke || color || "currentColor",
|
|
1949
2062
|
d: "M12 3.75H3.75V17.1592L9 11.9092L12 14.9092L14.9092 12H18.0908L12 18.0908L9 15.0908L3.84082 20.25H20.25V12H22.5V22.5H1.5V1.5H12V3.75Z"
|
|
1950
2063
|
}
|
|
1951
2064
|
),
|
|
1952
|
-
/* @__PURE__ */
|
|
2065
|
+
/* @__PURE__ */ jsx97(
|
|
1953
2066
|
"path",
|
|
1954
2067
|
{
|
|
1955
2068
|
fill: stroke || color || "currentColor",
|
|
1956
2069
|
d: "M20.4287 3.57129L24 4.28613V5.71387L20.4287 6.42871L19.7139 10H18.2861L17.5713 6.42871L14 5.71387V4.28613L17.5713 3.57129L18.2861 0H19.7139L20.4287 3.57129Z"
|
|
1957
2070
|
}
|
|
1958
2071
|
),
|
|
1959
|
-
/* @__PURE__ */
|
|
2072
|
+
/* @__PURE__ */ jsx97(
|
|
1960
2073
|
"path",
|
|
1961
2074
|
{
|
|
1962
2075
|
fill: stroke || color || "currentColor",
|
|
@@ -1966,9 +2079,9 @@ var IconImageGeneration = ({ size, width, height, color, className, fill, stroke
|
|
|
1966
2079
|
] }), ImageGeneration_default = IconImageGeneration;
|
|
1967
2080
|
|
|
1968
2081
|
// src/components/ImageLoadFailedFilled.tsx
|
|
1969
|
-
import { jsx as
|
|
1970
|
-
var IconImageLoadFailedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1971
|
-
/* @__PURE__ */
|
|
2082
|
+
import { jsx as jsx98, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
2083
|
+
var IconImageLoadFailedFilled = ({ 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: [
|
|
2084
|
+
/* @__PURE__ */ jsx98(
|
|
1972
2085
|
"path",
|
|
1973
2086
|
{
|
|
1974
2087
|
fill: fill || color || "currentColor",
|
|
@@ -1977,7 +2090,7 @@ var IconImageLoadFailedFilled = ({ size, width, height, color, className, fill,
|
|
|
1977
2090
|
clipRule: "evenodd"
|
|
1978
2091
|
}
|
|
1979
2092
|
),
|
|
1980
|
-
/* @__PURE__ */
|
|
2093
|
+
/* @__PURE__ */ jsx98(
|
|
1981
2094
|
"path",
|
|
1982
2095
|
{
|
|
1983
2096
|
fill: fill || color || "currentColor",
|
|
@@ -1987,11 +2100,11 @@ var IconImageLoadFailedFilled = ({ size, width, height, color, className, fill,
|
|
|
1987
2100
|
] }), ImageLoadFailedFilled_default = IconImageLoadFailedFilled;
|
|
1988
2101
|
|
|
1989
2102
|
// src/components/Info.tsx
|
|
1990
|
-
import { jsx as
|
|
1991
|
-
var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
1992
|
-
/* @__PURE__ */
|
|
1993
|
-
/* @__PURE__ */
|
|
1994
|
-
/* @__PURE__ */
|
|
2103
|
+
import { jsx as jsx99, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
2104
|
+
var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs51("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2105
|
+
/* @__PURE__ */ jsx99("path", { fill: stroke || color || "currentColor", d: "M13.125 5.25V7.5H10.875V5.25H13.125Z" }),
|
|
2106
|
+
/* @__PURE__ */ jsx99("path", { fill: stroke || color || "currentColor", d: "M9 12H10.875V18.75H15V16.5H13.125V9.75H9V12Z" }),
|
|
2107
|
+
/* @__PURE__ */ jsx99(
|
|
1995
2108
|
"path",
|
|
1996
2109
|
{
|
|
1997
2110
|
fill: stroke || color || "currentColor",
|
|
@@ -2003,8 +2116,8 @@ var IconInfo = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
2003
2116
|
] }), Info_default = IconInfo;
|
|
2004
2117
|
|
|
2005
2118
|
// src/components/Invitecode.tsx
|
|
2006
|
-
import { jsx as
|
|
2007
|
-
var IconInvitecode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2119
|
+
import { jsx as jsx100 } from "react/jsx-runtime";
|
|
2120
|
+
var IconInvitecode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx100("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx100(
|
|
2008
2121
|
"path",
|
|
2009
2122
|
{
|
|
2010
2123
|
fill: fill || color || "currentColor",
|
|
@@ -2015,8 +2128,8 @@ var IconInvitecode = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2015
2128
|
) }), Invitecode_default = IconInvitecode;
|
|
2016
2129
|
|
|
2017
2130
|
// src/components/LeftFilled.tsx
|
|
2018
|
-
import { jsx as
|
|
2019
|
-
var IconLeftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2131
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
2132
|
+
var IconLeftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx101("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx101(
|
|
2020
2133
|
"path",
|
|
2021
2134
|
{
|
|
2022
2135
|
fill: fill || color || "currentColor",
|
|
@@ -2027,16 +2140,16 @@ var IconLeftFilled = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2027
2140
|
) }), LeftFilled_default = IconLeftFilled;
|
|
2028
2141
|
|
|
2029
2142
|
// src/components/Loading.tsx
|
|
2030
|
-
import { jsx as
|
|
2031
|
-
var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2032
|
-
/* @__PURE__ */
|
|
2143
|
+
import { jsx as jsx102, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
2144
|
+
var IconLoading = ({ 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: [
|
|
2145
|
+
/* @__PURE__ */ jsx102(
|
|
2033
2146
|
"path",
|
|
2034
2147
|
{
|
|
2035
2148
|
fill: fill || color || "currentColor",
|
|
2036
2149
|
d: "M4.10058 17.2783C3.0567 15.716 2.49999 13.8789 2.49999 12L0 12C1.03743e-07 14.3733 0.703882 16.6936 2.02246 18.6669L2.27636 19.0312C3.57677 20.8296 5.35246 22.2353 7.40818 23.0869L7.82127 23.249C9.90155 24.0218 12.1585 24.2035 14.3408 23.7695C16.6686 23.3064 18.8071 22.1635 20.4853 20.4853L20.7939 20.165C22.3038 18.5388 23.3354 16.5229 23.7695 14.3408L23.8476 13.9033C24.1761 11.8583 23.9702 9.76285 23.249 7.82127L23.0869 7.40818C22.2353 5.35246 20.8296 3.57677 19.0312 2.27636L18.6669 2.02246C16.6936 0.703882 14.3733 -1.03743e-07 12 0L12 2.49999C13.8789 2.49999 15.716 3.0567 17.2783 4.10058C18.8405 5.14444 20.0583 6.62838 20.7773 8.36424C21.4963 10.1001 21.6839 12.0107 21.3173 13.8535C20.9507 15.6962 20.0463 17.3892 18.7177 18.7177C17.3892 20.0463 15.6962 20.9507 13.8535 21.3173C12.0107 21.6839 10.1001 21.4953 8.36424 20.7763C6.62853 20.0573 5.14437 18.8404 4.10058 17.2783Z"
|
|
2037
2150
|
}
|
|
2038
2151
|
),
|
|
2039
|
-
/* @__PURE__ */
|
|
2152
|
+
/* @__PURE__ */ jsx102(
|
|
2040
2153
|
"path",
|
|
2041
2154
|
{
|
|
2042
2155
|
fill: stroke || color || "currentColor",
|
|
@@ -2046,16 +2159,16 @@ var IconLoading = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
2046
2159
|
] }), Loading_default = IconLoading;
|
|
2047
2160
|
|
|
2048
2161
|
// src/components/Login.tsx
|
|
2049
|
-
import { jsx as
|
|
2050
|
-
var IconLogin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2051
|
-
/* @__PURE__ */
|
|
2162
|
+
import { jsx as jsx103, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
2163
|
+
var IconLogin = ({ 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: [
|
|
2164
|
+
/* @__PURE__ */ jsx103(
|
|
2052
2165
|
"path",
|
|
2053
2166
|
{
|
|
2054
2167
|
fill: stroke || color || "currentColor",
|
|
2055
2168
|
d: "M24 1.5L13.5 1.5V3.75H21.75V20.25H13.5V22.5H24V1.5Z"
|
|
2056
2169
|
}
|
|
2057
2170
|
),
|
|
2058
|
-
/* @__PURE__ */
|
|
2171
|
+
/* @__PURE__ */ jsx103(
|
|
2059
2172
|
"path",
|
|
2060
2173
|
{
|
|
2061
2174
|
fill: stroke || color || "currentColor",
|
|
@@ -2067,9 +2180,9 @@ var IconLogin = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2067
2180
|
] }), Login_default = IconLogin;
|
|
2068
2181
|
|
|
2069
2182
|
// src/components/Logout.tsx
|
|
2070
|
-
import { jsx as
|
|
2071
|
-
var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2072
|
-
/* @__PURE__ */
|
|
2183
|
+
import { jsx as jsx104, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
2184
|
+
var IconLogout = ({ 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: [
|
|
2185
|
+
/* @__PURE__ */ jsx104(
|
|
2073
2186
|
"path",
|
|
2074
2187
|
{
|
|
2075
2188
|
fill: stroke || color || "currentColor",
|
|
@@ -2078,7 +2191,7 @@ var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2078
2191
|
clipRule: "evenodd"
|
|
2079
2192
|
}
|
|
2080
2193
|
),
|
|
2081
|
-
/* @__PURE__ */
|
|
2194
|
+
/* @__PURE__ */ jsx104(
|
|
2082
2195
|
"path",
|
|
2083
2196
|
{
|
|
2084
2197
|
fill: stroke || color || "currentColor",
|
|
@@ -2087,9 +2200,38 @@ var IconLogout = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2087
2200
|
)
|
|
2088
2201
|
] }), Logout_default = IconLogout;
|
|
2089
2202
|
|
|
2203
|
+
// src/components/Magic.tsx
|
|
2204
|
+
import { jsx as jsx105, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
2205
|
+
var IconMagic = ({ 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: [
|
|
2206
|
+
/* @__PURE__ */ jsx105(
|
|
2207
|
+
"path",
|
|
2208
|
+
{
|
|
2209
|
+
fill: stroke || color || "currentColor",
|
|
2210
|
+
d: "M9 10.5L11.25 6L20.25 0L24 3.75L15.75 10.5L12.75 16.5L6 24L0 18L9 10.5ZM12.9952 7.54067L19.9633 2.89529L20.651 3.58297L13.9528 9.06334L10.8738 15.2213L5.91406 20.7321L3.33318 18.1512L10.802 11.9272L12.9952 7.54067Z",
|
|
2211
|
+
fillRule: "evenodd",
|
|
2212
|
+
clipRule: "evenodd"
|
|
2213
|
+
}
|
|
2214
|
+
),
|
|
2215
|
+
/* @__PURE__ */ jsx105("path", { fill: stroke || color || "currentColor", d: "M5.25 3L3 5.25L5.25 7.5L7.5 5.25L5.25 3Z" }),
|
|
2216
|
+
/* @__PURE__ */ jsx105(
|
|
2217
|
+
"path",
|
|
2218
|
+
{
|
|
2219
|
+
fill: stroke || color || "currentColor",
|
|
2220
|
+
d: "M19.5 14.25L21.75 12L24 14.25L21.75 16.5L19.5 14.25Z"
|
|
2221
|
+
}
|
|
2222
|
+
),
|
|
2223
|
+
/* @__PURE__ */ jsx105(
|
|
2224
|
+
"path",
|
|
2225
|
+
{
|
|
2226
|
+
fill: stroke || color || "currentColor",
|
|
2227
|
+
d: "M16.5 22.5C17.3284 22.5 18 21.8284 18 21C18 20.1716 17.3284 19.5 16.5 19.5C15.6716 19.5 15 20.1716 15 21C15 21.8284 15.6716 22.5 16.5 22.5Z"
|
|
2228
|
+
}
|
|
2229
|
+
)
|
|
2230
|
+
] }), Magic_default = IconMagic;
|
|
2231
|
+
|
|
2090
2232
|
// src/components/ModelGeminiFilled.tsx
|
|
2091
|
-
import { jsx as
|
|
2092
|
-
var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2233
|
+
import { jsx as jsx106 } from "react/jsx-runtime";
|
|
2234
|
+
var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx106("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx106(
|
|
2093
2235
|
"path",
|
|
2094
2236
|
{
|
|
2095
2237
|
fill: fill || color || "currentColor",
|
|
@@ -2098,8 +2240,8 @@ var IconModelGeminiFilled = ({ size, width, height, color, className, fill, stro
|
|
|
2098
2240
|
) }), ModelGeminiFilled_default = IconModelGeminiFilled;
|
|
2099
2241
|
|
|
2100
2242
|
// src/components/ModelOpenaiFilled.tsx
|
|
2101
|
-
import { jsx as
|
|
2102
|
-
var IconModelOpenaiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2243
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
2244
|
+
var IconModelOpenaiFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx107("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx107(
|
|
2103
2245
|
"path",
|
|
2104
2246
|
{
|
|
2105
2247
|
fill: fill || color || "currentColor",
|
|
@@ -2108,9 +2250,9 @@ var IconModelOpenaiFilled = ({ size, width, height, color, className, fill, stro
|
|
|
2108
2250
|
) }), ModelOpenaiFilled_default = IconModelOpenaiFilled;
|
|
2109
2251
|
|
|
2110
2252
|
// src/components/ModelDeepmindFilled.tsx
|
|
2111
|
-
import { jsx as
|
|
2112
|
-
var IconModelDeepmindFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2113
|
-
/* @__PURE__ */
|
|
2253
|
+
import { jsx as jsx108, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
2254
|
+
var IconModelDeepmindFilled = ({ 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: [
|
|
2255
|
+
/* @__PURE__ */ jsx108("g", { clipPath: "url(#clip0_40_67)", children: /* @__PURE__ */ jsx108(
|
|
2114
2256
|
"path",
|
|
2115
2257
|
{
|
|
2116
2258
|
fill: fill || color || "currentColor",
|
|
@@ -2119,28 +2261,28 @@ var IconModelDeepmindFilled = ({ size, width, height, color, className, fill, st
|
|
|
2119
2261
|
clipRule: "evenodd"
|
|
2120
2262
|
}
|
|
2121
2263
|
) }),
|
|
2122
|
-
/* @__PURE__ */
|
|
2264
|
+
/* @__PURE__ */ jsx108("defs", { children: /* @__PURE__ */ jsx108("clipPath", { id: "clip0_40_67", children: /* @__PURE__ */ jsx108("rect", { width: "20", height: "20", fill: stroke || color || "currentColor", transform: "translate(2 2)" }) }) })
|
|
2123
2265
|
] }), ModelDeepmindFilled_default = IconModelDeepmindFilled;
|
|
2124
2266
|
|
|
2125
2267
|
// src/components/ModelSeedFilled.tsx
|
|
2126
|
-
import { jsx as
|
|
2127
|
-
var IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2128
|
-
/* @__PURE__ */
|
|
2129
|
-
/* @__PURE__ */
|
|
2268
|
+
import { jsx as jsx109, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
2269
|
+
var IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs57("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2270
|
+
/* @__PURE__ */ jsx109("path", { fill: fill || color || "currentColor", d: "M23 2.95271V20.0401L19.2211 21V2L23 2.95271Z" }),
|
|
2271
|
+
/* @__PURE__ */ jsx109(
|
|
2130
2272
|
"path",
|
|
2131
2273
|
{
|
|
2132
2274
|
fill: fill || color || "currentColor",
|
|
2133
2275
|
d: "M10.7528 11.4648V19.5633L6.98126 20.5241V10.5048L10.7528 11.4648Z"
|
|
2134
2276
|
}
|
|
2135
2277
|
),
|
|
2136
|
-
/* @__PURE__ */
|
|
2278
|
+
/* @__PURE__ */ jsx109(
|
|
2137
2279
|
"path",
|
|
2138
2280
|
{
|
|
2139
2281
|
fill: fill || color || "currentColor",
|
|
2140
2282
|
d: "M4.77158 3.95509V19.044L1 20.0048V2.99515L4.77158 3.95509Z"
|
|
2141
2283
|
}
|
|
2142
2284
|
),
|
|
2143
|
-
/* @__PURE__ */
|
|
2285
|
+
/* @__PURE__ */ jsx109(
|
|
2144
2286
|
"path",
|
|
2145
2287
|
{
|
|
2146
2288
|
fill: fill || color || "currentColor",
|
|
@@ -2150,8 +2292,8 @@ var IconModelSeedFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
2150
2292
|
] }), ModelSeedFilled_default = IconModelSeedFilled;
|
|
2151
2293
|
|
|
2152
2294
|
// src/components/ModelSoraFilled.tsx
|
|
2153
|
-
import { jsx as
|
|
2154
|
-
var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2295
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
2296
|
+
var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx110("svg", { fill: "none", viewBox: "0 0 25 25", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx110(
|
|
2155
2297
|
"path",
|
|
2156
2298
|
{
|
|
2157
2299
|
fill: fill || color || "currentColor",
|
|
@@ -2160,7 +2302,7 @@ var IconModelSoraFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
2160
2302
|
) }), ModelSoraFilled_default = IconModelSoraFilled;
|
|
2161
2303
|
|
|
2162
2304
|
// src/components/ModelNanobananaLogoNomoFilled.tsx
|
|
2163
|
-
import { jsx as
|
|
2305
|
+
import { jsx as jsx111, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
2164
2306
|
var IconModelNanobananaLogoNomoFilled = ({
|
|
2165
2307
|
size,
|
|
2166
2308
|
width,
|
|
@@ -2169,64 +2311,64 @@ var IconModelNanobananaLogoNomoFilled = ({
|
|
|
2169
2311
|
className,
|
|
2170
2312
|
fill,
|
|
2171
2313
|
stroke
|
|
2172
|
-
}) => /* @__PURE__ */
|
|
2173
|
-
/* @__PURE__ */
|
|
2314
|
+
}) => /* @__PURE__ */ jsxs58("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2315
|
+
/* @__PURE__ */ jsx111(
|
|
2174
2316
|
"path",
|
|
2175
2317
|
{
|
|
2176
2318
|
fill: "#5A5C62",
|
|
2177
2319
|
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"
|
|
2178
2320
|
}
|
|
2179
2321
|
),
|
|
2180
|
-
/* @__PURE__ */
|
|
2322
|
+
/* @__PURE__ */ jsx111(
|
|
2181
2323
|
"path",
|
|
2182
2324
|
{
|
|
2183
2325
|
fill: "#D5D6D7",
|
|
2184
2326
|
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"
|
|
2185
2327
|
}
|
|
2186
2328
|
),
|
|
2187
|
-
/* @__PURE__ */
|
|
2329
|
+
/* @__PURE__ */ jsx111(
|
|
2188
2330
|
"path",
|
|
2189
2331
|
{
|
|
2190
2332
|
fill: "#C4C5C7",
|
|
2191
2333
|
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"
|
|
2192
2334
|
}
|
|
2193
2335
|
),
|
|
2194
|
-
/* @__PURE__ */
|
|
2336
|
+
/* @__PURE__ */ jsx111(
|
|
2195
2337
|
"path",
|
|
2196
2338
|
{
|
|
2197
2339
|
fill: "#7B7C81",
|
|
2198
2340
|
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"
|
|
2199
2341
|
}
|
|
2200
2342
|
),
|
|
2201
|
-
/* @__PURE__ */
|
|
2343
|
+
/* @__PURE__ */ jsx111(
|
|
2202
2344
|
"path",
|
|
2203
2345
|
{
|
|
2204
2346
|
fill: "#85878B",
|
|
2205
2347
|
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"
|
|
2206
2348
|
}
|
|
2207
2349
|
),
|
|
2208
|
-
/* @__PURE__ */
|
|
2350
|
+
/* @__PURE__ */ jsx111(
|
|
2209
2351
|
"path",
|
|
2210
2352
|
{
|
|
2211
2353
|
fill: "#1B1D24",
|
|
2212
2354
|
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"
|
|
2213
2355
|
}
|
|
2214
2356
|
),
|
|
2215
|
-
/* @__PURE__ */
|
|
2357
|
+
/* @__PURE__ */ jsx111(
|
|
2216
2358
|
"path",
|
|
2217
2359
|
{
|
|
2218
2360
|
fill: "#D5D6D7",
|
|
2219
2361
|
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"
|
|
2220
2362
|
}
|
|
2221
2363
|
),
|
|
2222
|
-
/* @__PURE__ */
|
|
2364
|
+
/* @__PURE__ */ jsx111(
|
|
2223
2365
|
"path",
|
|
2224
2366
|
{
|
|
2225
2367
|
fill: "#85878B",
|
|
2226
2368
|
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"
|
|
2227
2369
|
}
|
|
2228
2370
|
),
|
|
2229
|
-
/* @__PURE__ */
|
|
2371
|
+
/* @__PURE__ */ jsx111(
|
|
2230
2372
|
"path",
|
|
2231
2373
|
{
|
|
2232
2374
|
fill: "#D5D6D7",
|
|
@@ -2235,9 +2377,37 @@ var IconModelNanobananaLogoNomoFilled = ({
|
|
|
2235
2377
|
)
|
|
2236
2378
|
] }), ModelNanobananaLogoNomoFilled_default = IconModelNanobananaLogoNomoFilled;
|
|
2237
2379
|
|
|
2380
|
+
// src/components/ModelhappyhorseFilled.tsx
|
|
2381
|
+
import { jsx as jsx112, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
2382
|
+
var IconModelhappyhorseFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs59("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2383
|
+
/* @__PURE__ */ jsxs59("g", { clipPath: "url(#clip0_786_80)", children: [
|
|
2384
|
+
/* @__PURE__ */ jsx112(
|
|
2385
|
+
"mask",
|
|
2386
|
+
{
|
|
2387
|
+
id: "mask0_786_80",
|
|
2388
|
+
width: "40",
|
|
2389
|
+
height: "40",
|
|
2390
|
+
x: "-8",
|
|
2391
|
+
y: "-8",
|
|
2392
|
+
maskUnits: "userSpaceOnUse",
|
|
2393
|
+
style: { maskType: "luminance" },
|
|
2394
|
+
children: /* @__PURE__ */ jsx112("path", { fill: stroke || color || "currentColor", d: "M32 -8H-8V32H32V-8Z" })
|
|
2395
|
+
}
|
|
2396
|
+
),
|
|
2397
|
+
/* @__PURE__ */ jsx112("g", { mask: "url(#mask0_786_80)", children: /* @__PURE__ */ jsx112(
|
|
2398
|
+
"path",
|
|
2399
|
+
{
|
|
2400
|
+
fill: fill || color || "currentColor",
|
|
2401
|
+
d: "M3.2393 18.3701C3.4048 18.3702 3.558 18.4208 3.6855 18.5068L3.6865 18.5049C4.3133 18.9561 4.978 19.357 5.6758 19.7021C5.8249 19.7762 5.9768 19.8484 6.1289 19.917C6.3239 20.0055 6.5212 20.089 6.7207 20.168C7.209 20.3621 7.7108 20.5294 8.2236 20.6689C9.4119 20.9922 10.6618 21.165 11.9521 21.165C13.0437 21.165 14.1069 21.0422 15.1279 20.8086C16.0405 20.5995 16.9198 20.3015 17.7559 19.9258C18.0406 19.7977 18.321 19.6608 18.5957 19.5146C19.1595 19.215 19.7005 18.8776 20.2158 18.5068C20.3114 18.4424 20.4213 18.398 20.54 18.3799L20.6621 18.3711C21.1024 18.3711 21.4599 18.7282 21.46 19.1689C21.46 19.3085 21.4234 19.4396 21.3604 19.5537C21.3909 19.5387 21.4212 19.5228 21.4512 19.5068C21.3961 19.5604 21.3407 19.6145 21.2852 19.667C21.2357 19.7285 21.1783 19.7826 21.1133 19.8271C18.6936 22.0267 15.4761 23.3672 11.9521 23.3672C8.4283 23.3672 5.217 22.0294 2.7988 19.834C2.7353 19.7765 2.6724 19.7177 2.6104 19.6592C2.5049 19.5237 2.4415 19.3539 2.4414 19.1689C2.4414 18.7281 2.7989 18.3701 3.2393 18.3701ZM5.8262 0.249023C6.2515 0.291053 6.657 0.403154 7.0303 0.572274C7.0667 0.588734 7.1037 0.605594 7.1396 0.623054C7.5044 0.530504 7.8861 0.481454 8.2793 0.481454C9.3996 0.481454 10.427 0.879554 11.2275 1.54199C12.0016 2.1829 12.5633 3.0717 12.792 4.0859C12.8244 4.2278 12.8497 4.3722 12.8682 4.5186L13.7178 9.3389L13.8174 9.9033L15.9014 10.2998C16.2851 10.3724 16.6414 10.5209 16.9541 10.7295C17.0382 10.5804 17.1369 10.4401 17.25 10.3125C17.6908 9.8132 18.3362 9.498 19.0547 9.498C19.8887 9.4981 20.6239 9.923 21.0557 10.5674C21.2961 10.9265 21.4434 11.3535 21.4609 11.8125H21.4668C21.5158 12.714 21.9753 13.5065 22.6621 14.0059C22.5726 14.0803 22.476 14.1466 22.374 14.2041C22.2336 14.2835 22.0827 14.3466 21.9238 14.3896C21.7602 14.4342 21.5868 14.458 21.4092 14.458C20.947 14.4579 20.5231 14.2974 20.1875 14.0303C20.0749 13.9402 19.9719 13.8386 19.8818 13.7266C19.6788 13.474 19.5356 13.1704 19.4775 12.8379L19.4678 12.8398C19.3102 11.9682 18.548 11.3066 17.6309 11.3066C17.6169 11.3066 17.6028 11.3076 17.5889 11.3076C17.9871 11.7984 18.2265 12.4241 18.2266 13.1055C18.2266 13.4527 18.1634 13.7861 18.0498 14.0938C17.9207 14.445 17.7242 14.7635 17.4766 15.0342C17.4836 15.0347 17.491 15.0356 17.498 15.0361C17.1499 15.5339 16.9443 16.1401 16.9443 16.7939C16.9444 17.1319 16.9991 17.4567 17.1006 17.7607L17.6533 19.5908C16.7978 19.9785 15.9035 20.2783 14.9814 20.4834L13.3896 16.9229C13.8845 16.8618 14.3319 16.6464 14.6807 16.3262C14.488 16.3672 14.2877 16.3896 14.083 16.3896C13.7254 16.3896 13.3834 16.3227 13.0684 16.2031C13.0366 16.1907 13.0054 16.1789 12.9746 16.166L12.6006 16.0391L10.9219 15.4404L9.6748 14.9951L7.0967 16.6582L7.6875 18.7646H7.6855C7.7085 18.8546 7.7207 18.9494 7.7207 19.0469C7.7206 19.4395 7.5204 19.7842 7.2168 19.9863C6.8017 19.8358 6.3947 19.6646 5.9961 19.4746L5.6641 18.4033L5.0068 16.2783C4.9638 16.1633 4.9395 16.0392 4.9395 15.9092C4.9395 15.5675 5.1029 15.2644 5.3555 15.0723C5.384 15.0508 5.4143 15.0302 5.4453 15.0117L6.917 14.0107L4.3105 13.0811L3.877 14.8018H3.875C3.6743 15.5827 2.9656 16.1592 2.1221 16.1592C2.0195 16.1592 1.91838 16.1508 1.82031 16.1338L1.82227 16.1211L2.6016 13.0225L2.7002 12.6338L2.9209 11.7578H2.9238C3.0454 11.2845 3.4759 10.9346 3.9873 10.9346C4.0741 10.9346 4.1574 10.9449 4.2383 10.9639L4.2422 10.9648C4.2476 10.9663 4.2524 10.9678 4.2578 10.9697C4.2948 10.9782 4.3317 10.989 4.3672 11.002C4.5027 11.0425 4.7277 11.1115 4.9658 11.1846C5.4061 11.3202 5.888 11.473 5.9141 11.499L5.9834 11.2949L6.2568 10.4893L6.6182 9.4258L7.2822 7.4736L7.7324 6.1494C7.806 6.0884 7.8763 6.0241 7.9434 5.957C8.1345 5.7664 8.2995 5.5501 8.4346 5.3145C8.6177 4.9952 8.7457 4.6395 8.8037 4.2607C8.6806 4.5719 8.4953 4.8523 8.2627 5.085C8.2057 5.142 8.1451 5.1965 8.082 5.248C8.0555 5.2696 8.0285 5.291 8.001 5.3115L6.9824 5.7559L5.0664 6.5898L5.0557 6.5947C4.9557 6.6366 4.8468 6.661 4.7334 6.667C4.7155 6.668 4.6975 6.6699 4.6797 6.6699C4.294 6.6699 3.9618 6.4453 3.8027 6.1211C3.7388 5.9916 3.7021 5.8459 3.7021 5.6914C3.7022 5.4443 3.7942 5.2185 3.9463 5.0459L4.3672 4.4268L6.1611 1.78906L6.0068 1.07812L5.9922 1.0127L5.9346 0.746094L5.8262 0.249023Z"
|
|
2402
|
+
}
|
|
2403
|
+
) })
|
|
2404
|
+
] }),
|
|
2405
|
+
/* @__PURE__ */ jsx112("defs", { children: /* @__PURE__ */ jsx112("clipPath", { id: "clip0_786_80", children: /* @__PURE__ */ jsx112("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
2406
|
+
] }), ModelhappyhorseFilled_default = IconModelhappyhorseFilled;
|
|
2407
|
+
|
|
2238
2408
|
// src/components/ModelklingFilled.tsx
|
|
2239
|
-
import { jsx as
|
|
2240
|
-
var IconModelklingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2409
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
2410
|
+
var IconModelklingFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx113("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx113(
|
|
2241
2411
|
"path",
|
|
2242
2412
|
{
|
|
2243
2413
|
fill: fill || color || "currentColor",
|
|
@@ -2248,8 +2418,8 @@ var IconModelklingFilled = ({ size, width, height, color, className, fill, strok
|
|
|
2248
2418
|
) }), ModelklingFilled_default = IconModelklingFilled;
|
|
2249
2419
|
|
|
2250
2420
|
// src/components/Models.tsx
|
|
2251
|
-
import { jsx as
|
|
2252
|
-
var IconModels = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2421
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
2422
|
+
var IconModels = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx114("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx114(
|
|
2253
2423
|
"path",
|
|
2254
2424
|
{
|
|
2255
2425
|
fill: stroke || color || "currentColor",
|
|
@@ -2260,8 +2430,8 @@ var IconModels = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2260
2430
|
) }), Models_default = IconModels;
|
|
2261
2431
|
|
|
2262
2432
|
// src/components/MoreCollapse.tsx
|
|
2263
|
-
import { jsx as
|
|
2264
|
-
var IconMoreCollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2433
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
2434
|
+
var IconMoreCollapse = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx115("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx115(
|
|
2265
2435
|
"path",
|
|
2266
2436
|
{
|
|
2267
2437
|
fill: stroke || color || "currentColor",
|
|
@@ -2270,23 +2440,23 @@ var IconMoreCollapse = ({ size, width, height, color, className, fill, stroke })
|
|
|
2270
2440
|
) }), MoreCollapse_default = IconMoreCollapse;
|
|
2271
2441
|
|
|
2272
2442
|
// src/components/MoreHorizontal.tsx
|
|
2273
|
-
import { jsx as
|
|
2274
|
-
var IconMoreHorizontal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2275
|
-
/* @__PURE__ */
|
|
2443
|
+
import { jsx as jsx116, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
2444
|
+
var IconMoreHorizontal = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs60("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2445
|
+
/* @__PURE__ */ jsx116(
|
|
2276
2446
|
"path",
|
|
2277
2447
|
{
|
|
2278
2448
|
fill: stroke || color || "currentColor",
|
|
2279
2449
|
d: "M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z"
|
|
2280
2450
|
}
|
|
2281
2451
|
),
|
|
2282
|
-
/* @__PURE__ */
|
|
2452
|
+
/* @__PURE__ */ jsx116(
|
|
2283
2453
|
"path",
|
|
2284
2454
|
{
|
|
2285
2455
|
fill: stroke || color || "currentColor",
|
|
2286
2456
|
d: "M7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12Z"
|
|
2287
2457
|
}
|
|
2288
2458
|
),
|
|
2289
|
-
/* @__PURE__ */
|
|
2459
|
+
/* @__PURE__ */ jsx116(
|
|
2290
2460
|
"path",
|
|
2291
2461
|
{
|
|
2292
2462
|
fill: stroke || color || "currentColor",
|
|
@@ -2296,8 +2466,8 @@ var IconMoreHorizontal = ({ size, width, height, color, className, fill, stroke
|
|
|
2296
2466
|
] }), MoreHorizontal_default = IconMoreHorizontal;
|
|
2297
2467
|
|
|
2298
2468
|
// src/components/MoreShowed.tsx
|
|
2299
|
-
import { jsx as
|
|
2300
|
-
var IconMoreShowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2469
|
+
import { jsx as jsx117 } from "react/jsx-runtime";
|
|
2470
|
+
var IconMoreShowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx117("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx117(
|
|
2301
2471
|
"path",
|
|
2302
2472
|
{
|
|
2303
2473
|
fill: stroke || color || "currentColor",
|
|
@@ -2306,23 +2476,23 @@ var IconMoreShowed = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2306
2476
|
) }), MoreShowed_default = IconMoreShowed;
|
|
2307
2477
|
|
|
2308
2478
|
// src/components/More.tsx
|
|
2309
|
-
import { jsx as
|
|
2310
|
-
var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2311
|
-
/* @__PURE__ */
|
|
2479
|
+
import { jsx as jsx118, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
2480
|
+
var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs61("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2481
|
+
/* @__PURE__ */ jsx118(
|
|
2312
2482
|
"path",
|
|
2313
2483
|
{
|
|
2314
2484
|
fill: stroke || color || "currentColor",
|
|
2315
2485
|
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"
|
|
2316
2486
|
}
|
|
2317
2487
|
),
|
|
2318
|
-
/* @__PURE__ */
|
|
2488
|
+
/* @__PURE__ */ jsx118(
|
|
2319
2489
|
"path",
|
|
2320
2490
|
{
|
|
2321
2491
|
fill: stroke || color || "currentColor",
|
|
2322
2492
|
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"
|
|
2323
2493
|
}
|
|
2324
2494
|
),
|
|
2325
|
-
/* @__PURE__ */
|
|
2495
|
+
/* @__PURE__ */ jsx118(
|
|
2326
2496
|
"path",
|
|
2327
2497
|
{
|
|
2328
2498
|
fill: stroke || color || "currentColor",
|
|
@@ -2332,30 +2502,30 @@ var IconMore = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
2332
2502
|
] }), More_default = IconMore;
|
|
2333
2503
|
|
|
2334
2504
|
// src/components/Moresettings.tsx
|
|
2335
|
-
import { jsx as
|
|
2336
|
-
var IconMoresettings = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2337
|
-
/* @__PURE__ */
|
|
2505
|
+
import { jsx as jsx119, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
2506
|
+
var IconMoresettings = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs62("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2507
|
+
/* @__PURE__ */ jsx119(
|
|
2338
2508
|
"path",
|
|
2339
2509
|
{
|
|
2340
2510
|
fill: stroke || color || "currentColor",
|
|
2341
2511
|
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"
|
|
2342
2512
|
}
|
|
2343
2513
|
),
|
|
2344
|
-
/* @__PURE__ */
|
|
2514
|
+
/* @__PURE__ */ jsx119(
|
|
2345
2515
|
"path",
|
|
2346
2516
|
{
|
|
2347
2517
|
fill: stroke || color || "currentColor",
|
|
2348
2518
|
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"
|
|
2349
2519
|
}
|
|
2350
2520
|
),
|
|
2351
|
-
/* @__PURE__ */
|
|
2521
|
+
/* @__PURE__ */ jsx119(
|
|
2352
2522
|
"path",
|
|
2353
2523
|
{
|
|
2354
2524
|
fill: stroke || color || "currentColor",
|
|
2355
2525
|
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"
|
|
2356
2526
|
}
|
|
2357
2527
|
),
|
|
2358
|
-
/* @__PURE__ */
|
|
2528
|
+
/* @__PURE__ */ jsx119(
|
|
2359
2529
|
"path",
|
|
2360
2530
|
{
|
|
2361
2531
|
fill: stroke || color || "currentColor",
|
|
@@ -2367,9 +2537,9 @@ var IconMoresettings = ({ size, width, height, color, className, fill, stroke })
|
|
|
2367
2537
|
] }), Moresettings_default = IconMoresettings;
|
|
2368
2538
|
|
|
2369
2539
|
// src/components/MouseDrag.tsx
|
|
2370
|
-
import { jsx as
|
|
2371
|
-
var IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2372
|
-
/* @__PURE__ */
|
|
2540
|
+
import { jsx as jsx120, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
2541
|
+
var IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs63("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2542
|
+
/* @__PURE__ */ jsx120(
|
|
2373
2543
|
"path",
|
|
2374
2544
|
{
|
|
2375
2545
|
fill: fill || color || "currentColor",
|
|
@@ -2377,7 +2547,7 @@ var IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2377
2547
|
d: "M13.5 3.5V20.5H10.5V3.5H13.5Z"
|
|
2378
2548
|
}
|
|
2379
2549
|
),
|
|
2380
|
-
/* @__PURE__ */
|
|
2550
|
+
/* @__PURE__ */ jsx120(
|
|
2381
2551
|
"path",
|
|
2382
2552
|
{
|
|
2383
2553
|
fill: fill || color || "currentColor",
|
|
@@ -2385,7 +2555,7 @@ var IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2385
2555
|
d: "M6.79297 7.5L2.29297 12L6.79297 16.5H8.5V7.5H6.79297Z"
|
|
2386
2556
|
}
|
|
2387
2557
|
),
|
|
2388
|
-
/* @__PURE__ */
|
|
2558
|
+
/* @__PURE__ */ jsx120(
|
|
2389
2559
|
"path",
|
|
2390
2560
|
{
|
|
2391
2561
|
fill: fill || color || "currentColor",
|
|
@@ -2396,9 +2566,9 @@ var IconMouseDrag = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2396
2566
|
] }), MouseDrag_default = IconMouseDrag;
|
|
2397
2567
|
|
|
2398
2568
|
// src/components/MouseMove.tsx
|
|
2399
|
-
import { jsx as
|
|
2400
|
-
var IconMouseMove = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2401
|
-
/* @__PURE__ */
|
|
2569
|
+
import { jsx as jsx121, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
2570
|
+
var IconMouseMove = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs64("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2571
|
+
/* @__PURE__ */ jsx121("g", { clipPath: "url(#clip0_384_31)", children: /* @__PURE__ */ jsx121(
|
|
2402
2572
|
"path",
|
|
2403
2573
|
{
|
|
2404
2574
|
fill: fill || color || "currentColor",
|
|
@@ -2406,13 +2576,13 @@ var IconMouseMove = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2406
2576
|
d: "M15.5557 7.51074H13.0635V10.5635H16.1172V8.07129H18.5918L22.334 11.8135L21.9805 12.167L18.7383 15.4102L18.5918 15.5566H16.1172V13.0635H13.0635V16.1172H15.5557V18.5918L11.8135 22.334L11.46 21.9805L8.2168 18.7383L8.07031 18.5918V16.1172H10.5635V13.0635H7.50977V15.5566H5.03516L4.88867 15.4102L1.64648 12.167L1.29297 11.8135L5.03516 8.07129H7.50977V10.5635H10.5635V7.51074H8.07031V5.03516L8.2168 4.88867L11.46 1.64648L11.8135 1.29297L15.5557 5.03516V7.51074Z"
|
|
2407
2577
|
}
|
|
2408
2578
|
) }),
|
|
2409
|
-
/* @__PURE__ */
|
|
2579
|
+
/* @__PURE__ */ jsx121("defs", { children: /* @__PURE__ */ jsx121("clipPath", { id: "clip0_384_31", children: /* @__PURE__ */ jsx121("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
2410
2580
|
] }), MouseMove_default = IconMouseMove;
|
|
2411
2581
|
|
|
2412
2582
|
// src/components/MouseNumberchange.tsx
|
|
2413
|
-
import { jsx as
|
|
2414
|
-
var IconMouseNumberchange = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2415
|
-
/* @__PURE__ */
|
|
2583
|
+
import { jsx as jsx122, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
2584
|
+
var IconMouseNumberchange = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs65("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2585
|
+
/* @__PURE__ */ jsx122(
|
|
2416
2586
|
"path",
|
|
2417
2587
|
{
|
|
2418
2588
|
fill: fill || color || "currentColor",
|
|
@@ -2420,7 +2590,7 @@ var IconMouseNumberchange = ({ size, width, height, color, className, fill, stro
|
|
|
2420
2590
|
d: "M10.5 17L9.30567 17L0.97168 12L9.30566 7L10.5 7L10.5 17Z"
|
|
2421
2591
|
}
|
|
2422
2592
|
),
|
|
2423
|
-
/* @__PURE__ */
|
|
2593
|
+
/* @__PURE__ */ jsx122(
|
|
2424
2594
|
"path",
|
|
2425
2595
|
{
|
|
2426
2596
|
fill: fill || color || "currentColor",
|
|
@@ -2431,8 +2601,8 @@ var IconMouseNumberchange = ({ size, width, height, color, className, fill, stro
|
|
|
2431
2601
|
] }), MouseNumberchange_default = IconMouseNumberchange;
|
|
2432
2602
|
|
|
2433
2603
|
// src/components/Musicassets.tsx
|
|
2434
|
-
import { jsx as
|
|
2435
|
-
var IconMusicassets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2604
|
+
import { jsx as jsx123 } from "react/jsx-runtime";
|
|
2605
|
+
var IconMusicassets = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx123("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx123(
|
|
2436
2606
|
"path",
|
|
2437
2607
|
{
|
|
2438
2608
|
fill: stroke || color || "currentColor",
|
|
@@ -2443,9 +2613,9 @@ var IconMusicassets = ({ size, width, height, color, className, fill, stroke })
|
|
|
2443
2613
|
) }), Musicassets_default = IconMusicassets;
|
|
2444
2614
|
|
|
2445
2615
|
// src/components/Mute.tsx
|
|
2446
|
-
import { jsx as
|
|
2447
|
-
var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2448
|
-
/* @__PURE__ */
|
|
2616
|
+
import { jsx as jsx124, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
2617
|
+
var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs66("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2618
|
+
/* @__PURE__ */ jsx124(
|
|
2449
2619
|
"path",
|
|
2450
2620
|
{
|
|
2451
2621
|
fill: stroke || color || "currentColor",
|
|
@@ -2454,7 +2624,7 @@ var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
2454
2624
|
clipRule: "evenodd"
|
|
2455
2625
|
}
|
|
2456
2626
|
),
|
|
2457
|
-
/* @__PURE__ */
|
|
2627
|
+
/* @__PURE__ */ jsx124(
|
|
2458
2628
|
"path",
|
|
2459
2629
|
{
|
|
2460
2630
|
fill: stroke || color || "currentColor",
|
|
@@ -2463,9 +2633,30 @@ var IconMute = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
2463
2633
|
)
|
|
2464
2634
|
] }), Mute_default = IconMute;
|
|
2465
2635
|
|
|
2636
|
+
// src/components/Newchat.tsx
|
|
2637
|
+
import { jsx as jsx125, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
2638
|
+
var IconNewchat = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs67("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2639
|
+
/* @__PURE__ */ jsx125(
|
|
2640
|
+
"path",
|
|
2641
|
+
{
|
|
2642
|
+
fill: stroke || color || "currentColor",
|
|
2643
|
+
d: "M16.5 19.5H24V1.5H0V19.5H7.5L12 24L16.5 19.5ZM12 20.818L15.568 17.25H21.75V3.75H2.25V17.25H8.43198L12 20.818Z",
|
|
2644
|
+
fillRule: "evenodd",
|
|
2645
|
+
clipRule: "evenodd"
|
|
2646
|
+
}
|
|
2647
|
+
),
|
|
2648
|
+
/* @__PURE__ */ jsx125(
|
|
2649
|
+
"path",
|
|
2650
|
+
{
|
|
2651
|
+
fill: stroke || color || "currentColor",
|
|
2652
|
+
d: "M11.0892 6V9.375H7.71423V11.625H11.0892V15H13.3392V11.625H16.7142V9.375H13.3392V6H11.0892Z"
|
|
2653
|
+
}
|
|
2654
|
+
)
|
|
2655
|
+
] }), Newchat_default = IconNewchat;
|
|
2656
|
+
|
|
2466
2657
|
// src/components/Next.tsx
|
|
2467
|
-
import { jsx as
|
|
2468
|
-
var IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2658
|
+
import { jsx as jsx126 } from "react/jsx-runtime";
|
|
2659
|
+
var IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx126("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx126(
|
|
2469
2660
|
"path",
|
|
2470
2661
|
{
|
|
2471
2662
|
fill: stroke || color || "currentColor",
|
|
@@ -2476,16 +2667,16 @@ var IconNext = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
2476
2667
|
) }), Next_default = IconNext;
|
|
2477
2668
|
|
|
2478
2669
|
// src/components/Nextscene.tsx
|
|
2479
|
-
import { jsx as
|
|
2480
|
-
var IconNextscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2481
|
-
/* @__PURE__ */
|
|
2670
|
+
import { jsx as jsx127, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
2671
|
+
var IconNextscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs68("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2672
|
+
/* @__PURE__ */ jsx127(
|
|
2482
2673
|
"path",
|
|
2483
2674
|
{
|
|
2484
2675
|
fill: stroke || color || "currentColor",
|
|
2485
2676
|
d: "M16.7959 12L10.2656 18.5303L9.2041 17.4697L14.6738 12L9.2041 6.53027L10.2656 5.46973L16.7959 12Z"
|
|
2486
2677
|
}
|
|
2487
2678
|
),
|
|
2488
|
-
/* @__PURE__ */
|
|
2679
|
+
/* @__PURE__ */ jsx127(
|
|
2489
2680
|
"path",
|
|
2490
2681
|
{
|
|
2491
2682
|
fill: stroke || color || "currentColor",
|
|
@@ -2497,8 +2688,8 @@ var IconNextscene = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2497
2688
|
] }), Nextscene_default = IconNextscene;
|
|
2498
2689
|
|
|
2499
2690
|
// src/components/Niceofficial.tsx
|
|
2500
|
-
import { jsx as
|
|
2501
|
-
var IconNiceofficial = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2691
|
+
import { jsx as jsx128 } from "react/jsx-runtime";
|
|
2692
|
+
var IconNiceofficial = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx128("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx128(
|
|
2502
2693
|
"path",
|
|
2503
2694
|
{
|
|
2504
2695
|
fill: fill || color || "currentColor",
|
|
@@ -2508,19 +2699,40 @@ var IconNiceofficial = ({ size, width, height, color, className, fill, stroke })
|
|
|
2508
2699
|
}
|
|
2509
2700
|
) }), Niceofficial_default = IconNiceofficial;
|
|
2510
2701
|
|
|
2702
|
+
// src/components/Notification.tsx
|
|
2703
|
+
import { jsx as jsx129, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
2704
|
+
var IconNotification = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs69("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2705
|
+
/* @__PURE__ */ jsx129(
|
|
2706
|
+
"path",
|
|
2707
|
+
{
|
|
2708
|
+
fill: stroke || color || "currentColor",
|
|
2709
|
+
d: "M22.5 15L19.5 12V7.5C19.5 3.35786 16.1421 0 12 0C7.85786 0 4.5 3.35786 4.5 7.5V12L1.5 15V18H22.5V15ZM6.75 12.932V7.5C6.75 4.6005 9.1005 2.25 12 2.25C14.8995 2.25 17.25 4.6005 17.25 7.5V12.932L20.068 15.75H3.93198L6.75 12.932Z",
|
|
2710
|
+
fillRule: "evenodd",
|
|
2711
|
+
clipRule: "evenodd"
|
|
2712
|
+
}
|
|
2713
|
+
),
|
|
2714
|
+
/* @__PURE__ */ jsx129(
|
|
2715
|
+
"path",
|
|
2716
|
+
{
|
|
2717
|
+
fill: stroke || color || "currentColor",
|
|
2718
|
+
d: "M12 24C10.0407 24 8.37385 22.7478 7.75609 21H10.323C10.7349 21.4603 11.3337 21.75 12 21.75C12.6664 21.75 13.2651 21.4603 13.6771 21H16.244C15.6262 22.7478 13.9594 24 12 24Z"
|
|
2719
|
+
}
|
|
2720
|
+
)
|
|
2721
|
+
] }), Notification_default = IconNotification;
|
|
2722
|
+
|
|
2511
2723
|
// src/components/Oneclickgenerate.tsx
|
|
2512
|
-
import { jsx as
|
|
2513
|
-
var IconOneclickgenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2514
|
-
/* @__PURE__ */
|
|
2515
|
-
/* @__PURE__ */
|
|
2516
|
-
/* @__PURE__ */
|
|
2724
|
+
import { jsx as jsx130, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
2725
|
+
var IconOneclickgenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs70("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2726
|
+
/* @__PURE__ */ jsx130("path", { fill: stroke || color || "currentColor", d: "M12 4.5V0H9.75V4.5H12Z" }),
|
|
2727
|
+
/* @__PURE__ */ jsx130("path", { fill: stroke || color || "currentColor", d: "M4.5 9.75H0V12H4.5V9.75Z" }),
|
|
2728
|
+
/* @__PURE__ */ jsx130(
|
|
2517
2729
|
"path",
|
|
2518
2730
|
{
|
|
2519
2731
|
fill: stroke || color || "currentColor",
|
|
2520
2732
|
d: "M5.2045 6.7955L1.4545 3.0455L3.0455 1.4545L6.7955 5.2045L5.2045 6.7955Z"
|
|
2521
2733
|
}
|
|
2522
2734
|
),
|
|
2523
|
-
/* @__PURE__ */
|
|
2735
|
+
/* @__PURE__ */ jsx130(
|
|
2524
2736
|
"path",
|
|
2525
2737
|
{
|
|
2526
2738
|
fill: stroke || color || "currentColor",
|
|
@@ -2532,9 +2744,9 @@ var IconOneclickgenerate = ({ size, width, height, color, className, fill, strok
|
|
|
2532
2744
|
] }), Oneclickgenerate_default = IconOneclickgenerate;
|
|
2533
2745
|
|
|
2534
2746
|
// src/components/Opendemo.tsx
|
|
2535
|
-
import { jsx as
|
|
2536
|
-
var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2537
|
-
/* @__PURE__ */
|
|
2747
|
+
import { jsx as jsx131, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
2748
|
+
var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs71("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2749
|
+
/* @__PURE__ */ jsx131(
|
|
2538
2750
|
"path",
|
|
2539
2751
|
{
|
|
2540
2752
|
fill: stroke || color || "currentColor",
|
|
@@ -2543,12 +2755,12 @@ var IconOpendemo = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2543
2755
|
clipRule: "evenodd"
|
|
2544
2756
|
}
|
|
2545
2757
|
),
|
|
2546
|
-
/* @__PURE__ */
|
|
2758
|
+
/* @__PURE__ */ jsx131("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
2547
2759
|
] }), Opendemo_default = IconOpendemo;
|
|
2548
2760
|
|
|
2549
2761
|
// src/components/OppsFilled.tsx
|
|
2550
|
-
import { jsx as
|
|
2551
|
-
var IconOppsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2762
|
+
import { jsx as jsx132 } from "react/jsx-runtime";
|
|
2763
|
+
var IconOppsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx132("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx132(
|
|
2552
2764
|
"path",
|
|
2553
2765
|
{
|
|
2554
2766
|
fill: fill || color || "currentColor",
|
|
@@ -2559,8 +2771,8 @@ var IconOppsFilled = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2559
2771
|
) }), OppsFilled_default = IconOppsFilled;
|
|
2560
2772
|
|
|
2561
2773
|
// src/components/OptionalcheckedFilled.tsx
|
|
2562
|
-
import { jsx as
|
|
2563
|
-
var IconOptionalcheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2774
|
+
import { jsx as jsx133 } from "react/jsx-runtime";
|
|
2775
|
+
var IconOptionalcheckedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx133("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx133(
|
|
2564
2776
|
"path",
|
|
2565
2777
|
{
|
|
2566
2778
|
fill: fill || color || "currentColor",
|
|
@@ -2571,8 +2783,8 @@ var IconOptionalcheckedFilled = ({ size, width, height, color, className, fill,
|
|
|
2571
2783
|
) }), OptionalcheckedFilled_default = IconOptionalcheckedFilled;
|
|
2572
2784
|
|
|
2573
2785
|
// src/components/Optionaluncheck.tsx
|
|
2574
|
-
import { jsx as
|
|
2575
|
-
var IconOptionaluncheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2786
|
+
import { jsx as jsx134 } from "react/jsx-runtime";
|
|
2787
|
+
var IconOptionaluncheck = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx134("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx134(
|
|
2576
2788
|
"path",
|
|
2577
2789
|
{
|
|
2578
2790
|
fill: stroke || color || "currentColor",
|
|
@@ -2583,8 +2795,8 @@ var IconOptionaluncheck = ({ size, width, height, color, className, fill, stroke
|
|
|
2583
2795
|
) }), Optionaluncheck_default = IconOptionaluncheck;
|
|
2584
2796
|
|
|
2585
2797
|
// src/components/Packagegame.tsx
|
|
2586
|
-
import { jsx as
|
|
2587
|
-
var IconPackagegame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2798
|
+
import { jsx as jsx135 } from "react/jsx-runtime";
|
|
2799
|
+
var IconPackagegame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx135("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx135(
|
|
2588
2800
|
"path",
|
|
2589
2801
|
{
|
|
2590
2802
|
fill: stroke || color || "currentColor",
|
|
@@ -2595,13 +2807,13 @@ var IconPackagegame = ({ size, width, height, color, className, fill, stroke })
|
|
|
2595
2807
|
) }), Packagegame_default = IconPackagegame;
|
|
2596
2808
|
|
|
2597
2809
|
// src/components/PageError.tsx
|
|
2598
|
-
import { jsx as
|
|
2599
|
-
var IconPageError = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2810
|
+
import { jsx as jsx136 } from "react/jsx-runtime";
|
|
2811
|
+
var IconPageError = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx136("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx136("path", { fill: stroke || color || "currentColor", d: "M22.5 13.125H1.5V10.875H22.5V13.125Z" }) }), PageError_default = IconPageError;
|
|
2600
2812
|
|
|
2601
2813
|
// src/components/Parameters.tsx
|
|
2602
|
-
import { jsx as
|
|
2603
|
-
var IconParameters = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2604
|
-
/* @__PURE__ */
|
|
2814
|
+
import { jsx as jsx137, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
2815
|
+
var IconParameters = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs72("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2816
|
+
/* @__PURE__ */ jsx137(
|
|
2605
2817
|
"path",
|
|
2606
2818
|
{
|
|
2607
2819
|
fill: stroke || color || "currentColor",
|
|
@@ -2610,7 +2822,7 @@ var IconParameters = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2610
2822
|
clipRule: "evenodd"
|
|
2611
2823
|
}
|
|
2612
2824
|
),
|
|
2613
|
-
/* @__PURE__ */
|
|
2825
|
+
/* @__PURE__ */ jsx137(
|
|
2614
2826
|
"path",
|
|
2615
2827
|
{
|
|
2616
2828
|
fill: stroke || color || "currentColor",
|
|
@@ -2622,9 +2834,9 @@ var IconParameters = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2622
2834
|
] }), Parameters_default = IconParameters;
|
|
2623
2835
|
|
|
2624
2836
|
// src/components/Pause.tsx
|
|
2625
|
-
import { jsx as
|
|
2626
|
-
var IconPause = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2627
|
-
/* @__PURE__ */
|
|
2837
|
+
import { jsx as jsx138, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
2838
|
+
var IconPause = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs73("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2839
|
+
/* @__PURE__ */ jsx138(
|
|
2628
2840
|
"path",
|
|
2629
2841
|
{
|
|
2630
2842
|
fill: stroke || color || "currentColor",
|
|
@@ -2633,7 +2845,7 @@ var IconPause = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2633
2845
|
clipRule: "evenodd"
|
|
2634
2846
|
}
|
|
2635
2847
|
),
|
|
2636
|
-
/* @__PURE__ */
|
|
2848
|
+
/* @__PURE__ */ jsx138(
|
|
2637
2849
|
"path",
|
|
2638
2850
|
{
|
|
2639
2851
|
fill: stroke || color || "currentColor",
|
|
@@ -2645,8 +2857,8 @@ var IconPause = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2645
2857
|
] }), Pause_default = IconPause;
|
|
2646
2858
|
|
|
2647
2859
|
// src/components/Pencil.tsx
|
|
2648
|
-
import { jsx as
|
|
2649
|
-
var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2860
|
+
import { jsx as jsx139 } from "react/jsx-runtime";
|
|
2861
|
+
var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx139("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx139(
|
|
2650
2862
|
"path",
|
|
2651
2863
|
{
|
|
2652
2864
|
fill: stroke || color || "currentColor",
|
|
@@ -2657,8 +2869,8 @@ var IconPencil = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2657
2869
|
) }), Pencil_default = IconPencil;
|
|
2658
2870
|
|
|
2659
2871
|
// src/components/Pick.tsx
|
|
2660
|
-
import { jsx as
|
|
2661
|
-
var IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2872
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
2873
|
+
var IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx140("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx140(
|
|
2662
2874
|
"path",
|
|
2663
2875
|
{
|
|
2664
2876
|
fill: stroke || color || "currentColor",
|
|
@@ -2669,25 +2881,25 @@ var IconPick = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
2669
2881
|
) }), Pick_default = IconPick;
|
|
2670
2882
|
|
|
2671
2883
|
// src/components/PickedFilled.tsx
|
|
2672
|
-
import { jsx as
|
|
2673
|
-
var IconPickedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2884
|
+
import { jsx as jsx141 } from "react/jsx-runtime";
|
|
2885
|
+
var IconPickedFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx141("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx141("path", { fill: fill || color || "currentColor", d: "M3 0H21V24H18L12 18L6 24H3V0Z" }) }), PickedFilled_default = IconPickedFilled;
|
|
2674
2886
|
|
|
2675
2887
|
// src/components/PlanFilled.tsx
|
|
2676
|
-
import { jsx as
|
|
2677
|
-
var IconPlanFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2678
|
-
/* @__PURE__ */
|
|
2888
|
+
import { jsx as jsx142, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
2889
|
+
var IconPlanFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs74("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2890
|
+
/* @__PURE__ */ jsx142("g", { clipPath: "url(#clip0_2_30)", children: /* @__PURE__ */ jsx142(
|
|
2679
2891
|
"path",
|
|
2680
2892
|
{
|
|
2681
2893
|
fill: fill || color || "currentColor",
|
|
2682
2894
|
d: "M13.5 10.5L15 0H12L3 10.5V13.5H10.5L9 24H12L21 13.5L21 10.5H13.5Z"
|
|
2683
2895
|
}
|
|
2684
2896
|
) }),
|
|
2685
|
-
/* @__PURE__ */
|
|
2897
|
+
/* @__PURE__ */ jsx142("defs", { children: /* @__PURE__ */ jsx142("clipPath", { id: "clip0_2_30", children: /* @__PURE__ */ jsx142("rect", { width: "24", height: "24", fill: stroke || color || "currentColor" }) }) })
|
|
2686
2898
|
] }), PlanFilled_default = IconPlanFilled;
|
|
2687
2899
|
|
|
2688
2900
|
// src/components/PlayFilled.tsx
|
|
2689
|
-
import { jsx as
|
|
2690
|
-
var IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2901
|
+
import { jsx as jsx143 } from "react/jsx-runtime";
|
|
2902
|
+
var IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx143("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx143(
|
|
2691
2903
|
"path",
|
|
2692
2904
|
{
|
|
2693
2905
|
fill: fill || color || "currentColor",
|
|
@@ -2696,8 +2908,8 @@ var IconPlayFilled = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2696
2908
|
) }), PlayFilled_default = IconPlayFilled;
|
|
2697
2909
|
|
|
2698
2910
|
// src/components/Play.tsx
|
|
2699
|
-
import { jsx as
|
|
2700
|
-
var IconPlay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2911
|
+
import { jsx as jsx144 } from "react/jsx-runtime";
|
|
2912
|
+
var IconPlay = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx144("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx144(
|
|
2701
2913
|
"path",
|
|
2702
2914
|
{
|
|
2703
2915
|
fill: stroke || color || "currentColor",
|
|
@@ -2708,16 +2920,16 @@ var IconPlay = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
2708
2920
|
) }), Play_default = IconPlay;
|
|
2709
2921
|
|
|
2710
2922
|
// src/components/Previouscene.tsx
|
|
2711
|
-
import { jsx as
|
|
2712
|
-
var IconPreviouscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2713
|
-
/* @__PURE__ */
|
|
2923
|
+
import { jsx as jsx145, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
2924
|
+
var IconPreviouscene = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs75("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2925
|
+
/* @__PURE__ */ jsx145(
|
|
2714
2926
|
"path",
|
|
2715
2927
|
{
|
|
2716
2928
|
fill: stroke || color || "currentColor",
|
|
2717
2929
|
d: "M7.2041 12L13.7344 18.5303L14.7959 17.4697L9.32617 12L14.7959 6.53027L13.7344 5.46973L7.2041 12Z"
|
|
2718
2930
|
}
|
|
2719
2931
|
),
|
|
2720
|
-
/* @__PURE__ */
|
|
2932
|
+
/* @__PURE__ */ jsx145(
|
|
2721
2933
|
"path",
|
|
2722
2934
|
{
|
|
2723
2935
|
fill: stroke || color || "currentColor",
|
|
@@ -2729,8 +2941,8 @@ var IconPreviouscene = ({ size, width, height, color, className, fill, stroke })
|
|
|
2729
2941
|
] }), Previouscene_default = IconPreviouscene;
|
|
2730
2942
|
|
|
2731
2943
|
// src/components/ProblemFilled.tsx
|
|
2732
|
-
import { jsx as
|
|
2733
|
-
var IconProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2944
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
2945
|
+
var IconProblemFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx146("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx146(
|
|
2734
2946
|
"path",
|
|
2735
2947
|
{
|
|
2736
2948
|
fill: fill || color || "currentColor",
|
|
@@ -2741,8 +2953,8 @@ var IconProblemFilled = ({ size, width, height, color, className, fill, stroke }
|
|
|
2741
2953
|
) }), ProblemFilled_default = IconProblemFilled;
|
|
2742
2954
|
|
|
2743
2955
|
// src/components/ProblemNoticeFilled.tsx
|
|
2744
|
-
import { jsx as
|
|
2745
|
-
var IconProblemNoticeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2956
|
+
import { jsx as jsx147 } from "react/jsx-runtime";
|
|
2957
|
+
var IconProblemNoticeFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx147("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx147(
|
|
2746
2958
|
"path",
|
|
2747
2959
|
{
|
|
2748
2960
|
fill: fill || color || "currentColor",
|
|
@@ -2753,11 +2965,11 @@ var IconProblemNoticeFilled = ({ size, width, height, color, className, fill, st
|
|
|
2753
2965
|
) }), ProblemNoticeFilled_default = IconProblemNoticeFilled;
|
|
2754
2966
|
|
|
2755
2967
|
// src/components/Problem.tsx
|
|
2756
|
-
import { jsx as
|
|
2757
|
-
var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2758
|
-
/* @__PURE__ */
|
|
2759
|
-
/* @__PURE__ */
|
|
2760
|
-
/* @__PURE__ */
|
|
2968
|
+
import { jsx as jsx148, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
2969
|
+
var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs76("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2970
|
+
/* @__PURE__ */ jsx148("path", { fill: stroke || color || "currentColor", d: "M13.125 13.5V6H10.875V13.5H13.125Z" }),
|
|
2971
|
+
/* @__PURE__ */ jsx148("path", { fill: stroke || color || "currentColor", d: "M13.125 18V15.75H10.875V18H13.125Z" }),
|
|
2972
|
+
/* @__PURE__ */ jsx148(
|
|
2761
2973
|
"path",
|
|
2762
2974
|
{
|
|
2763
2975
|
fill: stroke || color || "currentColor",
|
|
@@ -2769,9 +2981,9 @@ var IconProblem = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
2769
2981
|
] }), Problem_default = IconProblem;
|
|
2770
2982
|
|
|
2771
2983
|
// src/components/Publish.tsx
|
|
2772
|
-
import { jsx as
|
|
2773
|
-
var IconPublish = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2774
|
-
/* @__PURE__ */
|
|
2984
|
+
import { jsx as jsx149, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
2985
|
+
var IconPublish = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs77("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
2986
|
+
/* @__PURE__ */ jsx149(
|
|
2775
2987
|
"path",
|
|
2776
2988
|
{
|
|
2777
2989
|
fill: stroke || color || "currentColor",
|
|
@@ -2780,12 +2992,35 @@ var IconPublish = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
2780
2992
|
clipRule: "evenodd"
|
|
2781
2993
|
}
|
|
2782
2994
|
),
|
|
2783
|
-
/* @__PURE__ */
|
|
2995
|
+
/* @__PURE__ */ jsx149("path", { fill: stroke || color || "currentColor", d: "M1.5 3H9V5.25H3.75V20.25H18.75V15H21V22.5H1.5V3Z" })
|
|
2784
2996
|
] }), Publish_default = IconPublish;
|
|
2785
2997
|
|
|
2998
|
+
// src/components/Quote.tsx
|
|
2999
|
+
import { jsx as jsx150, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
3000
|
+
var IconQuote = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs78("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3001
|
+
/* @__PURE__ */ jsx150(
|
|
3002
|
+
"path",
|
|
3003
|
+
{
|
|
3004
|
+
fill: stroke || color || "currentColor",
|
|
3005
|
+
d: "M8.2045 2.2047L9.7955 3.79569L3.75 9.84118V10.5002H10.5V21.0002H1.5V8.9092L8.2045 2.2047ZM8.25 12.7502H3.75V18.7502H8.25V12.7502Z",
|
|
3006
|
+
fillRule: "evenodd",
|
|
3007
|
+
clipRule: "evenodd"
|
|
3008
|
+
}
|
|
3009
|
+
),
|
|
3010
|
+
/* @__PURE__ */ jsx150(
|
|
3011
|
+
"path",
|
|
3012
|
+
{
|
|
3013
|
+
fill: stroke || color || "currentColor",
|
|
3014
|
+
d: "M20.2045 2.2047L21.7955 3.79569L15.75 9.84118V10.5002H22.5V21.0002H13.5V8.9092L20.2045 2.2047ZM20.25 12.7502H15.75V18.7502H20.25V12.7502Z",
|
|
3015
|
+
fillRule: "evenodd",
|
|
3016
|
+
clipRule: "evenodd"
|
|
3017
|
+
}
|
|
3018
|
+
)
|
|
3019
|
+
] }), Quote_default = IconQuote;
|
|
3020
|
+
|
|
2786
3021
|
// src/components/Ratio169.tsx
|
|
2787
|
-
import { jsx as
|
|
2788
|
-
var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3022
|
+
import { jsx as jsx151 } from "react/jsx-runtime";
|
|
3023
|
+
var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx151("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx151(
|
|
2789
3024
|
"path",
|
|
2790
3025
|
{
|
|
2791
3026
|
fill: stroke || color || "currentColor",
|
|
@@ -2794,16 +3029,16 @@ var IconRatio169 = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2794
3029
|
) }), Ratio169_default = IconRatio169;
|
|
2795
3030
|
|
|
2796
3031
|
// src/components/Ratio11.tsx
|
|
2797
|
-
import { jsx as
|
|
2798
|
-
var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2799
|
-
/* @__PURE__ */
|
|
3032
|
+
import { jsx as jsx152, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
3033
|
+
var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs79("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3034
|
+
/* @__PURE__ */ jsx152("g", { clipPath: "url(#clip0_13_501)", children: /* @__PURE__ */ jsx152(
|
|
2800
3035
|
"path",
|
|
2801
3036
|
{
|
|
2802
3037
|
fill: stroke || color || "currentColor",
|
|
2803
3038
|
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"
|
|
2804
3039
|
}
|
|
2805
3040
|
) }),
|
|
2806
|
-
/* @__PURE__ */
|
|
3041
|
+
/* @__PURE__ */ jsx152("defs", { children: /* @__PURE__ */ jsx152("clipPath", { id: "clip0_13_501", children: /* @__PURE__ */ jsx152(
|
|
2807
3042
|
"rect",
|
|
2808
3043
|
{
|
|
2809
3044
|
width: "24",
|
|
@@ -2815,16 +3050,16 @@ var IconRatio11 = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
2815
3050
|
] }), Ratio11_default = IconRatio11;
|
|
2816
3051
|
|
|
2817
3052
|
// src/components/Ratio916.tsx
|
|
2818
|
-
import { jsx as
|
|
2819
|
-
var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2820
|
-
/* @__PURE__ */
|
|
3053
|
+
import { jsx as jsx153, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
3054
|
+
var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs80("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3055
|
+
/* @__PURE__ */ jsx153("g", { clipPath: "url(#clip0_13_499)", children: /* @__PURE__ */ jsx153(
|
|
2821
3056
|
"path",
|
|
2822
3057
|
{
|
|
2823
3058
|
fill: stroke || color || "currentColor",
|
|
2824
3059
|
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"
|
|
2825
3060
|
}
|
|
2826
3061
|
) }),
|
|
2827
|
-
/* @__PURE__ */
|
|
3062
|
+
/* @__PURE__ */ jsx153("defs", { children: /* @__PURE__ */ jsx153("clipPath", { id: "clip0_13_499", children: /* @__PURE__ */ jsx153(
|
|
2828
3063
|
"rect",
|
|
2829
3064
|
{
|
|
2830
3065
|
width: "24",
|
|
@@ -2836,18 +3071,18 @@ var IconRatio916 = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2836
3071
|
] }), Ratio916_default = IconRatio916;
|
|
2837
3072
|
|
|
2838
3073
|
// src/components/RatioAuto.tsx
|
|
2839
|
-
import { jsx as
|
|
2840
|
-
var IconRatioAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2841
|
-
/* @__PURE__ */
|
|
2842
|
-
/* @__PURE__ */
|
|
3074
|
+
import { jsx as jsx154, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
3075
|
+
var IconRatioAuto = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs81("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3076
|
+
/* @__PURE__ */ jsxs81("g", { clipPath: "url(#clip0_468_23)", children: [
|
|
3077
|
+
/* @__PURE__ */ jsx154(
|
|
2843
3078
|
"path",
|
|
2844
3079
|
{
|
|
2845
3080
|
fill: stroke || color || "currentColor",
|
|
2846
3081
|
d: "M6.25 6.24999L6.25 9.99998H4L4 3.99998L10 3.99999V6.24999H6.25Z"
|
|
2847
3082
|
}
|
|
2848
3083
|
),
|
|
2849
|
-
/* @__PURE__ */
|
|
2850
|
-
/* @__PURE__ */
|
|
3084
|
+
/* @__PURE__ */ jsx154("path", { fill: stroke || color || "currentColor", d: "M14 20V17.75H17.75V14H20V20H14Z" }),
|
|
3085
|
+
/* @__PURE__ */ jsx154(
|
|
2851
3086
|
"path",
|
|
2852
3087
|
{
|
|
2853
3088
|
fill: stroke || color || "currentColor",
|
|
@@ -2857,7 +3092,7 @@ var IconRatioAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2857
3092
|
}
|
|
2858
3093
|
)
|
|
2859
3094
|
] }),
|
|
2860
|
-
/* @__PURE__ */
|
|
3095
|
+
/* @__PURE__ */ jsx154("defs", { children: /* @__PURE__ */ jsx154("clipPath", { id: "clip0_468_23", children: /* @__PURE__ */ jsx154(
|
|
2861
3096
|
"rect",
|
|
2862
3097
|
{
|
|
2863
3098
|
width: "24",
|
|
@@ -2869,16 +3104,16 @@ var IconRatioAuto = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2869
3104
|
] }), RatioAuto_default = IconRatioAuto;
|
|
2870
3105
|
|
|
2871
3106
|
// src/components/Ratio.tsx
|
|
2872
|
-
import { jsx as
|
|
2873
|
-
var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2874
|
-
/* @__PURE__ */
|
|
3107
|
+
import { jsx as jsx155, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
3108
|
+
var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs82("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3109
|
+
/* @__PURE__ */ jsx155(
|
|
2875
3110
|
"path",
|
|
2876
3111
|
{
|
|
2877
3112
|
fill: stroke || color || "currentColor",
|
|
2878
3113
|
d: "M3 0V3L0 3V5.25L18.75 5.25V24H21V21H24V18.75H21L21 3L5.25 3V0H3Z"
|
|
2879
3114
|
}
|
|
2880
3115
|
),
|
|
2881
|
-
/* @__PURE__ */
|
|
3116
|
+
/* @__PURE__ */ jsx155(
|
|
2882
3117
|
"path",
|
|
2883
3118
|
{
|
|
2884
3119
|
fill: stroke || color || "currentColor",
|
|
@@ -2888,8 +3123,8 @@ var IconRatio = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2888
3123
|
] }), Ratio_default = IconRatio;
|
|
2889
3124
|
|
|
2890
3125
|
// src/components/ReEdit.tsx
|
|
2891
|
-
import { jsx as
|
|
2892
|
-
var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3126
|
+
import { jsx as jsx156 } from "react/jsx-runtime";
|
|
3127
|
+
var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx156("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx156(
|
|
2893
3128
|
"path",
|
|
2894
3129
|
{
|
|
2895
3130
|
fill: stroke || color || "currentColor",
|
|
@@ -2900,8 +3135,8 @@ var IconReEdit = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
2900
3135
|
) }), ReEdit_default = IconReEdit;
|
|
2901
3136
|
|
|
2902
3137
|
// src/components/Regenerate.tsx
|
|
2903
|
-
import { jsx as
|
|
2904
|
-
var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3138
|
+
import { jsx as jsx157 } from "react/jsx-runtime";
|
|
3139
|
+
var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx157("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx157(
|
|
2905
3140
|
"path",
|
|
2906
3141
|
{
|
|
2907
3142
|
fill: stroke || color || "currentColor",
|
|
@@ -2912,9 +3147,9 @@ var IconRegenerate = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2912
3147
|
) }), Regenerate_default = IconRegenerate;
|
|
2913
3148
|
|
|
2914
3149
|
// src/components/Resultsetting.tsx
|
|
2915
|
-
import { jsx as
|
|
2916
|
-
var IconResultsetting = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2917
|
-
/* @__PURE__ */
|
|
3150
|
+
import { jsx as jsx158, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
3151
|
+
var IconResultsetting = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs83("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3152
|
+
/* @__PURE__ */ jsx158("g", { clipPath: "url(#clip0_554_27)", children: /* @__PURE__ */ jsx158(
|
|
2918
3153
|
"path",
|
|
2919
3154
|
{
|
|
2920
3155
|
fill: stroke || color || "currentColor",
|
|
@@ -2923,7 +3158,7 @@ var IconResultsetting = ({ size, width, height, color, className, fill, stroke }
|
|
|
2923
3158
|
clipRule: "evenodd"
|
|
2924
3159
|
}
|
|
2925
3160
|
) }),
|
|
2926
|
-
/* @__PURE__ */
|
|
3161
|
+
/* @__PURE__ */ jsx158("defs", { children: /* @__PURE__ */ jsx158("clipPath", { id: "clip0_554_27", children: /* @__PURE__ */ jsx158(
|
|
2927
3162
|
"rect",
|
|
2928
3163
|
{
|
|
2929
3164
|
width: "24",
|
|
@@ -2935,8 +3170,8 @@ var IconResultsetting = ({ size, width, height, color, className, fill, stroke }
|
|
|
2935
3170
|
] }), Resultsetting_default = IconResultsetting;
|
|
2936
3171
|
|
|
2937
3172
|
// src/components/RightFilled.tsx
|
|
2938
|
-
import { jsx as
|
|
2939
|
-
var IconRightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3173
|
+
import { jsx as jsx159 } from "react/jsx-runtime";
|
|
3174
|
+
var IconRightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx159("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx159(
|
|
2940
3175
|
"path",
|
|
2941
3176
|
{
|
|
2942
3177
|
fill: fill || color || "currentColor",
|
|
@@ -2946,9 +3181,21 @@ var IconRightFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
2946
3181
|
}
|
|
2947
3182
|
) }), RightFilled_default = IconRightFilled;
|
|
2948
3183
|
|
|
3184
|
+
// src/components/Satisfied.tsx
|
|
3185
|
+
import { jsx as jsx160 } from "react/jsx-runtime";
|
|
3186
|
+
var IconSatisfied = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx160("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx160(
|
|
3187
|
+
"path",
|
|
3188
|
+
{
|
|
3189
|
+
fill: stroke || color || "currentColor",
|
|
3190
|
+
d: "M6.675 7.5L9.75 0H12.75C14.4069 0 15.75 1.34315 15.75 3V7.5H24V12L21 21H0V7.5H6.675ZM6 9.75H2.25V18.75H6V9.75ZM8.25 18.75H19.3783L21.75 11.6349V9.75H13.5V3C13.5 2.58579 13.1642 2.25 12.75 2.25H11.2593L8.25 9.58968V18.75Z",
|
|
3191
|
+
fillRule: "evenodd",
|
|
3192
|
+
clipRule: "evenodd"
|
|
3193
|
+
}
|
|
3194
|
+
) }), Satisfied_default = IconSatisfied;
|
|
3195
|
+
|
|
2949
3196
|
// src/components/SceneNext.tsx
|
|
2950
|
-
import { jsx as
|
|
2951
|
-
var IconSceneNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3197
|
+
import { jsx as jsx161 } from "react/jsx-runtime";
|
|
3198
|
+
var IconSceneNext = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx161("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx161(
|
|
2952
3199
|
"path",
|
|
2953
3200
|
{
|
|
2954
3201
|
fill: stroke || color || "currentColor",
|
|
@@ -2957,29 +3204,29 @@ var IconSceneNext = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
2957
3204
|
) }), SceneNext_default = IconSceneNext;
|
|
2958
3205
|
|
|
2959
3206
|
// src/components/Scriptmode.tsx
|
|
2960
|
-
import { jsx as
|
|
2961
|
-
var IconScriptmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2962
|
-
/* @__PURE__ */
|
|
2963
|
-
/* @__PURE__ */
|
|
2964
|
-
/* @__PURE__ */
|
|
2965
|
-
/* @__PURE__ */
|
|
2966
|
-
/* @__PURE__ */
|
|
2967
|
-
/* @__PURE__ */
|
|
2968
|
-
/* @__PURE__ */
|
|
2969
|
-
/* @__PURE__ */
|
|
3207
|
+
import { jsx as jsx162, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
3208
|
+
var IconScriptmode = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs84("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3209
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M1.5 3.75H3.75V1.5H1.5V3.75Z" }),
|
|
3210
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M1.5 10.125H3.75V7.875H1.5V10.125Z" }),
|
|
3211
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M1.5 16.125H3.75V13.875H1.5V16.125Z" }),
|
|
3212
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M1.5 22.5H3.75V20.25H1.5V22.5Z" }),
|
|
3213
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M7.5 3.75H22.5V1.5H7.5V3.75Z" }),
|
|
3214
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M7.5 10.125H22.5V7.875H7.5V10.125Z" }),
|
|
3215
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M7.5 16.125H22.5V13.875H7.5V16.125Z" }),
|
|
3216
|
+
/* @__PURE__ */ jsx162("path", { fill: stroke || color || "currentColor", d: "M7.5 22.5H22.5V20.25H7.5V22.5Z" })
|
|
2970
3217
|
] }), Scriptmode_default = IconScriptmode;
|
|
2971
3218
|
|
|
2972
3219
|
// src/components/Scrolldown.tsx
|
|
2973
|
-
import { jsx as
|
|
2974
|
-
var IconScrolldown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
2975
|
-
/* @__PURE__ */
|
|
3220
|
+
import { jsx as jsx163, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
3221
|
+
var IconScrolldown = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs85("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3222
|
+
/* @__PURE__ */ jsx163(
|
|
2976
3223
|
"path",
|
|
2977
3224
|
{
|
|
2978
3225
|
fill: stroke || color || "currentColor",
|
|
2979
3226
|
d: "M3.79546 11.9544L12 20.1589L20.2045 11.9544L21.7955 13.5454L12 23.3409L2.20447 13.5454L3.79546 11.9544Z"
|
|
2980
3227
|
}
|
|
2981
3228
|
),
|
|
2982
|
-
/* @__PURE__ */
|
|
3229
|
+
/* @__PURE__ */ jsx163(
|
|
2983
3230
|
"path",
|
|
2984
3231
|
{
|
|
2985
3232
|
fill: stroke || color || "currentColor",
|
|
@@ -2989,8 +3236,8 @@ var IconScrolldown = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
2989
3236
|
] }), Scrolldown_default = IconScrolldown;
|
|
2990
3237
|
|
|
2991
3238
|
// src/components/Sendrequest.tsx
|
|
2992
|
-
import { jsx as
|
|
2993
|
-
var IconSendrequest = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3239
|
+
import { jsx as jsx164 } from "react/jsx-runtime";
|
|
3240
|
+
var IconSendrequest = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx164("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx164(
|
|
2994
3241
|
"path",
|
|
2995
3242
|
{
|
|
2996
3243
|
fill: fill || color || "currentColor",
|
|
@@ -3000,9 +3247,29 @@ var IconSendrequest = ({ size, width, height, color, className, fill, stroke })
|
|
|
3000
3247
|
}
|
|
3001
3248
|
) }), Sendrequest_default = IconSendrequest;
|
|
3002
3249
|
|
|
3250
|
+
// src/components/Sendup.tsx
|
|
3251
|
+
import { jsx as jsx165 } from "react/jsx-runtime";
|
|
3252
|
+
var IconSendup = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx165("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx165(
|
|
3253
|
+
"path",
|
|
3254
|
+
{
|
|
3255
|
+
fill: stroke || color || "currentColor",
|
|
3256
|
+
d: "M19.1208 5.32254V19.176L16.8703 19.1753V9.16398L6.56135 19.473L4.97036 17.882L15.2793 7.57299H5.26798L5.26729 5.32254H19.1208Z"
|
|
3257
|
+
}
|
|
3258
|
+
) }), Sendup_default = IconSendup;
|
|
3259
|
+
|
|
3260
|
+
// src/components/Sendup2.tsx
|
|
3261
|
+
import { jsx as jsx166 } from "react/jsx-runtime";
|
|
3262
|
+
var IconSendup2 = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx166("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx166(
|
|
3263
|
+
"path",
|
|
3264
|
+
{
|
|
3265
|
+
fill: stroke || color || "currentColor",
|
|
3266
|
+
d: "M5.19922 10.7949L6.79102 12.3867L11.875 7.30273V18H3V20.25H14.125V7.31055L19.1992 12.3867L20.791 10.7949L12.9961 3L5.19922 10.7949Z"
|
|
3267
|
+
}
|
|
3268
|
+
) }), Sendup2_default = IconSendup2;
|
|
3269
|
+
|
|
3003
3270
|
// src/components/ShareFilled.tsx
|
|
3004
|
-
import { jsx as
|
|
3005
|
-
var IconShareFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3271
|
+
import { jsx as jsx167 } from "react/jsx-runtime";
|
|
3272
|
+
var IconShareFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx167("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx167(
|
|
3006
3273
|
"path",
|
|
3007
3274
|
{
|
|
3008
3275
|
fill: fill || color || "currentColor",
|
|
@@ -3011,8 +3278,8 @@ var IconShareFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
3011
3278
|
) }), ShareFilled_default = IconShareFilled;
|
|
3012
3279
|
|
|
3013
3280
|
// src/components/Share.tsx
|
|
3014
|
-
import { jsx as
|
|
3015
|
-
var IconShare = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3281
|
+
import { jsx as jsx168 } from "react/jsx-runtime";
|
|
3282
|
+
var IconShare = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx168("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx168(
|
|
3016
3283
|
"path",
|
|
3017
3284
|
{
|
|
3018
3285
|
fill: stroke || color || "currentColor",
|
|
@@ -3023,8 +3290,8 @@ var IconShare = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3023
3290
|
) }), Share_default = IconShare;
|
|
3024
3291
|
|
|
3025
3292
|
// src/components/Sidebar.tsx
|
|
3026
|
-
import { jsx as
|
|
3027
|
-
var IconSidebar = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3293
|
+
import { jsx as jsx169 } from "react/jsx-runtime";
|
|
3294
|
+
var IconSidebar = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx169("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx169(
|
|
3028
3295
|
"path",
|
|
3029
3296
|
{
|
|
3030
3297
|
fill: stroke || color || "currentColor",
|
|
@@ -3034,9 +3301,21 @@ var IconSidebar = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
3034
3301
|
}
|
|
3035
3302
|
) }), Sidebar_default = IconSidebar;
|
|
3036
3303
|
|
|
3304
|
+
// src/components/Singleunchecked.tsx
|
|
3305
|
+
import { jsx as jsx170 } from "react/jsx-runtime";
|
|
3306
|
+
var IconSingleunchecked = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx170("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx170(
|
|
3307
|
+
"path",
|
|
3308
|
+
{
|
|
3309
|
+
fill: stroke || color || "currentColor",
|
|
3310
|
+
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM12 21.75C17.3848 21.75 21.75 17.3848 21.75 12C21.75 6.61522 17.3848 2.25 12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75Z",
|
|
3311
|
+
fillRule: "evenodd",
|
|
3312
|
+
clipRule: "evenodd"
|
|
3313
|
+
}
|
|
3314
|
+
) }), Singleunchecked_default = IconSingleunchecked;
|
|
3315
|
+
|
|
3037
3316
|
// src/components/SocialX.tsx
|
|
3038
|
-
import { jsx as
|
|
3039
|
-
var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3317
|
+
import { jsx as jsx171 } from "react/jsx-runtime";
|
|
3318
|
+
var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx171("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx171(
|
|
3040
3319
|
"path",
|
|
3041
3320
|
{
|
|
3042
3321
|
fill: fill || color || "currentColor",
|
|
@@ -3045,8 +3324,8 @@ var IconSocialX = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
3045
3324
|
) }), SocialX_default = IconSocialX;
|
|
3046
3325
|
|
|
3047
3326
|
// src/components/SocialDiscord.tsx
|
|
3048
|
-
import { jsx as
|
|
3049
|
-
var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3327
|
+
import { jsx as jsx172 } from "react/jsx-runtime";
|
|
3328
|
+
var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx172("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx172(
|
|
3050
3329
|
"path",
|
|
3051
3330
|
{
|
|
3052
3331
|
fill: fill || color || "currentColor",
|
|
@@ -3055,9 +3334,9 @@ var IconSocialDiscord = ({ size, width, height, color, className, fill, stroke }
|
|
|
3055
3334
|
) }), SocialDiscord_default = IconSocialDiscord;
|
|
3056
3335
|
|
|
3057
3336
|
// src/components/SoundOff.tsx
|
|
3058
|
-
import { jsx as
|
|
3059
|
-
var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3060
|
-
/* @__PURE__ */
|
|
3337
|
+
import { jsx as jsx173, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
3338
|
+
var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs86("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3339
|
+
/* @__PURE__ */ jsx173(
|
|
3061
3340
|
"path",
|
|
3062
3341
|
{
|
|
3063
3342
|
fill: stroke || color || "currentColor",
|
|
@@ -3066,7 +3345,7 @@ var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
3066
3345
|
clipRule: "evenodd"
|
|
3067
3346
|
}
|
|
3068
3347
|
),
|
|
3069
|
-
/* @__PURE__ */
|
|
3348
|
+
/* @__PURE__ */ jsx173(
|
|
3070
3349
|
"path",
|
|
3071
3350
|
{
|
|
3072
3351
|
fill: stroke || color || "currentColor",
|
|
@@ -3076,9 +3355,9 @@ var IconSoundOff = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
3076
3355
|
] }), SoundOff_default = IconSoundOff;
|
|
3077
3356
|
|
|
3078
3357
|
// src/components/SoundOn.tsx
|
|
3079
|
-
import { jsx as
|
|
3080
|
-
var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3081
|
-
/* @__PURE__ */
|
|
3358
|
+
import { jsx as jsx174, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
3359
|
+
var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs87("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3360
|
+
/* @__PURE__ */ jsx174(
|
|
3082
3361
|
"path",
|
|
3083
3362
|
{
|
|
3084
3363
|
fill: stroke || color || "currentColor",
|
|
@@ -3087,14 +3366,14 @@ var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
3087
3366
|
clipRule: "evenodd"
|
|
3088
3367
|
}
|
|
3089
3368
|
),
|
|
3090
|
-
/* @__PURE__ */
|
|
3369
|
+
/* @__PURE__ */ jsx174(
|
|
3091
3370
|
"path",
|
|
3092
3371
|
{
|
|
3093
3372
|
fill: stroke || color || "currentColor",
|
|
3094
3373
|
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"
|
|
3095
3374
|
}
|
|
3096
3375
|
),
|
|
3097
|
-
/* @__PURE__ */
|
|
3376
|
+
/* @__PURE__ */ jsx174(
|
|
3098
3377
|
"path",
|
|
3099
3378
|
{
|
|
3100
3379
|
fill: stroke || color || "currentColor",
|
|
@@ -3104,8 +3383,8 @@ var IconSoundOn = ({ size, width, height, color, className, fill, stroke }) => /
|
|
|
3104
3383
|
] }), SoundOn_default = IconSoundOn;
|
|
3105
3384
|
|
|
3106
3385
|
// src/components/Storyboard.tsx
|
|
3107
|
-
import { jsx as
|
|
3108
|
-
var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3386
|
+
import { jsx as jsx175 } from "react/jsx-runtime";
|
|
3387
|
+
var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx175("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx175(
|
|
3109
3388
|
"path",
|
|
3110
3389
|
{
|
|
3111
3390
|
fill: stroke || color || "currentColor",
|
|
@@ -3116,25 +3395,25 @@ var IconStoryboard = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
3116
3395
|
) }), Storyboard_default = IconStoryboard;
|
|
3117
3396
|
|
|
3118
3397
|
// src/components/StyleAutoFilled.tsx
|
|
3119
|
-
import { jsx as
|
|
3120
|
-
var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3121
|
-
/* @__PURE__ */
|
|
3398
|
+
import { jsx as jsx176, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
3399
|
+
var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs88("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3400
|
+
/* @__PURE__ */ jsx176(
|
|
3122
3401
|
"path",
|
|
3123
3402
|
{
|
|
3124
3403
|
fill: fill || color || "currentColor",
|
|
3125
3404
|
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"
|
|
3126
3405
|
}
|
|
3127
3406
|
),
|
|
3128
|
-
/* @__PURE__ */
|
|
3407
|
+
/* @__PURE__ */ jsx176(
|
|
3129
3408
|
"path",
|
|
3130
3409
|
{
|
|
3131
3410
|
fill: fill || color || "currentColor",
|
|
3132
3411
|
d: "M0 16.5V15L6 13.5L7.5 7.5H9L10.5 13.5L16.5 15V16.5L10.5 18L9 24H7.5L6 18L0 16.5Z"
|
|
3133
3412
|
}
|
|
3134
3413
|
),
|
|
3135
|
-
/* @__PURE__ */
|
|
3136
|
-
/* @__PURE__ */
|
|
3137
|
-
/* @__PURE__ */
|
|
3414
|
+
/* @__PURE__ */ jsx176("path", { fill: fill || color || "currentColor", d: "M1.5 3L3.75 0.75L6 3L3.75 5.25L1.5 3Z" }),
|
|
3415
|
+
/* @__PURE__ */ jsx176("path", { fill: fill || color || "currentColor", d: "M22.5 21L19.5 18L16.5 21L19.5 24L22.5 21Z" }),
|
|
3416
|
+
/* @__PURE__ */ jsx176(
|
|
3138
3417
|
"path",
|
|
3139
3418
|
{
|
|
3140
3419
|
fill: fill || color || "currentColor",
|
|
@@ -3144,44 +3423,44 @@ var IconStyleAutoFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
3144
3423
|
] }), StyleAutoFilled_default = IconStyleAutoFilled;
|
|
3145
3424
|
|
|
3146
3425
|
// src/components/Style.tsx
|
|
3147
|
-
import { jsx as
|
|
3148
|
-
var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3149
|
-
/* @__PURE__ */
|
|
3426
|
+
import { jsx as jsx177, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
3427
|
+
var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs89("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3428
|
+
/* @__PURE__ */ jsx177(
|
|
3150
3429
|
"path",
|
|
3151
3430
|
{
|
|
3152
3431
|
fill: stroke || color || "currentColor",
|
|
3153
3432
|
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"
|
|
3154
3433
|
}
|
|
3155
3434
|
),
|
|
3156
|
-
/* @__PURE__ */
|
|
3435
|
+
/* @__PURE__ */ jsx177(
|
|
3157
3436
|
"path",
|
|
3158
3437
|
{
|
|
3159
3438
|
fill: stroke || color || "currentColor",
|
|
3160
3439
|
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"
|
|
3161
3440
|
}
|
|
3162
3441
|
),
|
|
3163
|
-
/* @__PURE__ */
|
|
3442
|
+
/* @__PURE__ */ jsx177(
|
|
3164
3443
|
"path",
|
|
3165
3444
|
{
|
|
3166
3445
|
fill: stroke || color || "currentColor",
|
|
3167
3446
|
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"
|
|
3168
3447
|
}
|
|
3169
3448
|
),
|
|
3170
|
-
/* @__PURE__ */
|
|
3449
|
+
/* @__PURE__ */ jsx177(
|
|
3171
3450
|
"path",
|
|
3172
3451
|
{
|
|
3173
3452
|
fill: stroke || color || "currentColor",
|
|
3174
3453
|
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"
|
|
3175
3454
|
}
|
|
3176
3455
|
),
|
|
3177
|
-
/* @__PURE__ */
|
|
3456
|
+
/* @__PURE__ */ jsx177(
|
|
3178
3457
|
"path",
|
|
3179
3458
|
{
|
|
3180
3459
|
fill: stroke || color || "currentColor",
|
|
3181
3460
|
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"
|
|
3182
3461
|
}
|
|
3183
3462
|
),
|
|
3184
|
-
/* @__PURE__ */
|
|
3463
|
+
/* @__PURE__ */ jsx177(
|
|
3185
3464
|
"path",
|
|
3186
3465
|
{
|
|
3187
3466
|
fill: stroke || color || "currentColor",
|
|
@@ -3193,9 +3472,9 @@ var IconStyle = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3193
3472
|
] }), Style_default = IconStyle;
|
|
3194
3473
|
|
|
3195
3474
|
// src/components/Styleoverall.tsx
|
|
3196
|
-
import { jsx as
|
|
3197
|
-
var IconStyleoverall = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3198
|
-
/* @__PURE__ */
|
|
3475
|
+
import { jsx as jsx178, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
3476
|
+
var IconStyleoverall = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs90("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3477
|
+
/* @__PURE__ */ jsx178(
|
|
3199
3478
|
"path",
|
|
3200
3479
|
{
|
|
3201
3480
|
fill: stroke || color || "currentColor",
|
|
@@ -3204,7 +3483,7 @@ var IconStyleoverall = ({ size, width, height, color, className, fill, stroke })
|
|
|
3204
3483
|
clipRule: "evenodd"
|
|
3205
3484
|
}
|
|
3206
3485
|
),
|
|
3207
|
-
/* @__PURE__ */
|
|
3486
|
+
/* @__PURE__ */ jsx178(
|
|
3208
3487
|
"path",
|
|
3209
3488
|
{
|
|
3210
3489
|
fill: stroke || color || "currentColor",
|
|
@@ -3213,7 +3492,7 @@ var IconStyleoverall = ({ size, width, height, color, className, fill, stroke })
|
|
|
3213
3492
|
clipRule: "evenodd"
|
|
3214
3493
|
}
|
|
3215
3494
|
),
|
|
3216
|
-
/* @__PURE__ */
|
|
3495
|
+
/* @__PURE__ */ jsx178(
|
|
3217
3496
|
"path",
|
|
3218
3497
|
{
|
|
3219
3498
|
fill: stroke || color || "currentColor",
|
|
@@ -3222,7 +3501,7 @@ var IconStyleoverall = ({ size, width, height, color, className, fill, stroke })
|
|
|
3222
3501
|
clipRule: "evenodd"
|
|
3223
3502
|
}
|
|
3224
3503
|
),
|
|
3225
|
-
/* @__PURE__ */
|
|
3504
|
+
/* @__PURE__ */ jsx178(
|
|
3226
3505
|
"path",
|
|
3227
3506
|
{
|
|
3228
3507
|
fill: stroke || color || "currentColor",
|
|
@@ -3234,8 +3513,8 @@ var IconStyleoverall = ({ size, width, height, color, className, fill, stroke })
|
|
|
3234
3513
|
] }), Styleoverall_default = IconStyleoverall;
|
|
3235
3514
|
|
|
3236
3515
|
// src/components/SwitchOffFilled.tsx
|
|
3237
|
-
import { jsx as
|
|
3238
|
-
var IconSwitchOffFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3516
|
+
import { jsx as jsx179 } from "react/jsx-runtime";
|
|
3517
|
+
var IconSwitchOffFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx179("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx179(
|
|
3239
3518
|
"path",
|
|
3240
3519
|
{
|
|
3241
3520
|
fill: fill || color || "currentColor",
|
|
@@ -3246,8 +3525,8 @@ var IconSwitchOffFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
3246
3525
|
) }), SwitchOffFilled_default = IconSwitchOffFilled;
|
|
3247
3526
|
|
|
3248
3527
|
// src/components/SwitchOnFilled.tsx
|
|
3249
|
-
import { jsx as
|
|
3250
|
-
var IconSwitchOnFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3528
|
+
import { jsx as jsx180 } from "react/jsx-runtime";
|
|
3529
|
+
var IconSwitchOnFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx180("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx180(
|
|
3251
3530
|
"path",
|
|
3252
3531
|
{
|
|
3253
3532
|
fill: fill || color || "currentColor",
|
|
@@ -3258,9 +3537,9 @@ var IconSwitchOnFilled = ({ size, width, height, color, className, fill, stroke
|
|
|
3258
3537
|
) }), SwitchOnFilled_default = IconSwitchOnFilled;
|
|
3259
3538
|
|
|
3260
3539
|
// src/components/Target.tsx
|
|
3261
|
-
import { jsx as
|
|
3262
|
-
var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3263
|
-
/* @__PURE__ */
|
|
3540
|
+
import { jsx as jsx181, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
3541
|
+
var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs91("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3542
|
+
/* @__PURE__ */ jsx181(
|
|
3264
3543
|
"path",
|
|
3265
3544
|
{
|
|
3266
3545
|
fill: stroke || color || "currentColor",
|
|
@@ -3269,7 +3548,7 @@ var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3269
3548
|
clipRule: "evenodd"
|
|
3270
3549
|
}
|
|
3271
3550
|
),
|
|
3272
|
-
/* @__PURE__ */
|
|
3551
|
+
/* @__PURE__ */ jsx181(
|
|
3273
3552
|
"path",
|
|
3274
3553
|
{
|
|
3275
3554
|
fill: stroke || color || "currentColor",
|
|
@@ -3281,44 +3560,44 @@ var IconTarget = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3281
3560
|
] }), Target_default = IconTarget;
|
|
3282
3561
|
|
|
3283
3562
|
// src/components/TextLogo.tsx
|
|
3284
|
-
import { jsx as
|
|
3285
|
-
var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3286
|
-
/* @__PURE__ */
|
|
3563
|
+
import { jsx as jsx182, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
3564
|
+
var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs92("svg", { fill: "none", viewBox: "0 0 124 40", className, width: width || size, height: height || size, children: [
|
|
3565
|
+
/* @__PURE__ */ jsx182(
|
|
3287
3566
|
"path",
|
|
3288
3567
|
{
|
|
3289
3568
|
fill: fill || color || "currentColor",
|
|
3290
3569
|
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"
|
|
3291
3570
|
}
|
|
3292
3571
|
),
|
|
3293
|
-
/* @__PURE__ */
|
|
3572
|
+
/* @__PURE__ */ jsx182(
|
|
3294
3573
|
"path",
|
|
3295
3574
|
{
|
|
3296
3575
|
fill: fill || color || "currentColor",
|
|
3297
3576
|
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"
|
|
3298
3577
|
}
|
|
3299
3578
|
),
|
|
3300
|
-
/* @__PURE__ */
|
|
3579
|
+
/* @__PURE__ */ jsx182(
|
|
3301
3580
|
"path",
|
|
3302
3581
|
{
|
|
3303
3582
|
fill: fill || color || "currentColor",
|
|
3304
3583
|
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"
|
|
3305
3584
|
}
|
|
3306
3585
|
),
|
|
3307
|
-
/* @__PURE__ */
|
|
3586
|
+
/* @__PURE__ */ jsx182(
|
|
3308
3587
|
"path",
|
|
3309
3588
|
{
|
|
3310
3589
|
fill: fill || color || "currentColor",
|
|
3311
3590
|
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"
|
|
3312
3591
|
}
|
|
3313
3592
|
),
|
|
3314
|
-
/* @__PURE__ */
|
|
3593
|
+
/* @__PURE__ */ jsx182(
|
|
3315
3594
|
"path",
|
|
3316
3595
|
{
|
|
3317
3596
|
fill: fill || color || "currentColor",
|
|
3318
3597
|
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"
|
|
3319
3598
|
}
|
|
3320
3599
|
),
|
|
3321
|
-
/* @__PURE__ */
|
|
3600
|
+
/* @__PURE__ */ jsx182(
|
|
3322
3601
|
"path",
|
|
3323
3602
|
{
|
|
3324
3603
|
fill: fill || color || "currentColor",
|
|
@@ -3327,9 +3606,21 @@ var IconTextLogo = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
3327
3606
|
)
|
|
3328
3607
|
] }), TextLogo_default = IconTextLogo;
|
|
3329
3608
|
|
|
3609
|
+
// src/components/TipsFilled.tsx
|
|
3610
|
+
import { jsx as jsx183 } from "react/jsx-runtime";
|
|
3611
|
+
var IconTipsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx183("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx183(
|
|
3612
|
+
"path",
|
|
3613
|
+
{
|
|
3614
|
+
fill: fill || color || "currentColor",
|
|
3615
|
+
d: "M7.5 17.25V21.75L9.75 24H14.25L16.5 21.75V17.25L18.3594 15.3906C20.0501 13.6999 21 11.4021 21 9.01103C21 4.04047 16.9706 0 12 0C7.02944 0 3 4.04047 3 9.01103C3 11.4021 3.94986 13.6999 5.64061 15.3906L7.5 17.25ZM10.5 14.811V9H13.5V14.811C16.0878 14.1449 18 11.7958 18 9C18 5.68629 15.3137 3 12 3C8.68629 3 6 5.68629 6 9C6 11.7958 7.91216 14.1449 10.5 14.811Z",
|
|
3616
|
+
fillRule: "evenodd",
|
|
3617
|
+
clipRule: "evenodd"
|
|
3618
|
+
}
|
|
3619
|
+
) }), TipsFilled_default = IconTipsFilled;
|
|
3620
|
+
|
|
3330
3621
|
// src/components/Tips.tsx
|
|
3331
|
-
import { jsx as
|
|
3332
|
-
var IconTips = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3622
|
+
import { jsx as jsx184 } from "react/jsx-runtime";
|
|
3623
|
+
var IconTips = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx184("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx184(
|
|
3333
3624
|
"path",
|
|
3334
3625
|
{
|
|
3335
3626
|
fill: stroke || color || "currentColor",
|
|
@@ -3340,16 +3631,16 @@ var IconTips = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
3340
3631
|
) }), Tips_default = IconTips;
|
|
3341
3632
|
|
|
3342
3633
|
// src/components/ToolsFilled.tsx
|
|
3343
|
-
import { jsx as
|
|
3344
|
-
var IconToolsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3345
|
-
/* @__PURE__ */
|
|
3634
|
+
import { jsx as jsx185, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
3635
|
+
var IconToolsFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs93("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3636
|
+
/* @__PURE__ */ jsx185(
|
|
3346
3637
|
"path",
|
|
3347
3638
|
{
|
|
3348
3639
|
fill: fill || color || "currentColor",
|
|
3349
3640
|
d: "M24 12L19.5 16.5L15 15L9 9L7.5 4.5L12 0L16.5 1.5L22.5 7.5L24 12Z"
|
|
3350
3641
|
}
|
|
3351
3642
|
),
|
|
3352
|
-
/* @__PURE__ */
|
|
3643
|
+
/* @__PURE__ */ jsx185(
|
|
3353
3644
|
"path",
|
|
3354
3645
|
{
|
|
3355
3646
|
fill: fill || color || "currentColor",
|
|
@@ -3359,8 +3650,8 @@ var IconToolsFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
3359
3650
|
] }), ToolsFilled_default = IconToolsFilled;
|
|
3360
3651
|
|
|
3361
3652
|
// src/components/Tools.tsx
|
|
3362
|
-
import { jsx as
|
|
3363
|
-
var IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3653
|
+
import { jsx as jsx186 } from "react/jsx-runtime";
|
|
3654
|
+
var IconTools = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx186("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx186(
|
|
3364
3655
|
"path",
|
|
3365
3656
|
{
|
|
3366
3657
|
stroke: stroke || color || "currentColor",
|
|
@@ -3370,8 +3661,8 @@ var IconTools = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3370
3661
|
) }), Tools_default = IconTools;
|
|
3371
3662
|
|
|
3372
3663
|
// src/components/Undo.tsx
|
|
3373
|
-
import { jsx as
|
|
3374
|
-
var IconUndo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3664
|
+
import { jsx as jsx187 } from "react/jsx-runtime";
|
|
3665
|
+
var IconUndo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx187("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx187(
|
|
3375
3666
|
"path",
|
|
3376
3667
|
{
|
|
3377
3668
|
fill: stroke || color || "currentColor",
|
|
@@ -3381,9 +3672,21 @@ var IconUndo = ({ size, width, height, color, className, fill, stroke }) => /* @
|
|
|
3381
3672
|
}
|
|
3382
3673
|
) }), Undo_default = IconUndo;
|
|
3383
3674
|
|
|
3675
|
+
// src/components/Unsatisfied.tsx
|
|
3676
|
+
import { jsx as jsx188 } from "react/jsx-runtime";
|
|
3677
|
+
var IconUnsatisfied = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx188("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx188(
|
|
3678
|
+
"path",
|
|
3679
|
+
{
|
|
3680
|
+
fill: stroke || color || "currentColor",
|
|
3681
|
+
d: "M6.675 16.5L9.75 24H12.75C14.4069 24 15.75 22.6569 15.75 21V16.5H24V12L21 3H0V16.5H6.675ZM6 14.25H2.25V5.25H6V14.25ZM8.25 5.25H19.3783L21.75 12.3651V14.25H13.5V21C13.5 21.4142 13.1642 21.75 12.75 21.75H11.2593L8.25 14.4103V5.25Z",
|
|
3682
|
+
fillRule: "evenodd",
|
|
3683
|
+
clipRule: "evenodd"
|
|
3684
|
+
}
|
|
3685
|
+
) }), Unsatisfied_default = IconUnsatisfied;
|
|
3686
|
+
|
|
3384
3687
|
// src/components/UpFilled.tsx
|
|
3385
|
-
import { jsx as
|
|
3386
|
-
var IconUpFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3688
|
+
import { jsx as jsx189 } from "react/jsx-runtime";
|
|
3689
|
+
var IconUpFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx189("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx189(
|
|
3387
3690
|
"path",
|
|
3388
3691
|
{
|
|
3389
3692
|
fill: fill || color || "currentColor",
|
|
@@ -3394,8 +3697,8 @@ var IconUpFilled = ({ size, width, height, color, className, fill, stroke }) =>
|
|
|
3394
3697
|
) }), UpFilled_default = IconUpFilled;
|
|
3395
3698
|
|
|
3396
3699
|
// src/components/UpleftFilled.tsx
|
|
3397
|
-
import { jsx as
|
|
3398
|
-
var IconUpleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3700
|
+
import { jsx as jsx190 } from "react/jsx-runtime";
|
|
3701
|
+
var IconUpleftFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx190("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx190(
|
|
3399
3702
|
"path",
|
|
3400
3703
|
{
|
|
3401
3704
|
fill: fill || color || "currentColor",
|
|
@@ -3406,8 +3709,8 @@ var IconUpleftFilled = ({ size, width, height, color, className, fill, stroke })
|
|
|
3406
3709
|
) }), UpleftFilled_default = IconUpleftFilled;
|
|
3407
3710
|
|
|
3408
3711
|
// src/components/Uploadedvideo.tsx
|
|
3409
|
-
import { jsx as
|
|
3410
|
-
var IconUploadedvideo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3712
|
+
import { jsx as jsx191 } from "react/jsx-runtime";
|
|
3713
|
+
var IconUploadedvideo = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx191("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx191(
|
|
3411
3714
|
"path",
|
|
3412
3715
|
{
|
|
3413
3716
|
fill: fill || color || "currentColor",
|
|
@@ -3418,8 +3721,8 @@ var IconUploadedvideo = ({ size, width, height, color, className, fill, stroke }
|
|
|
3418
3721
|
) }), Uploadedvideo_default = IconUploadedvideo;
|
|
3419
3722
|
|
|
3420
3723
|
// src/components/Uploadfiles.tsx
|
|
3421
|
-
import { jsx as
|
|
3422
|
-
var IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3724
|
+
import { jsx as jsx192 } from "react/jsx-runtime";
|
|
3725
|
+
var IconUploadfiles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx192("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx192(
|
|
3423
3726
|
"path",
|
|
3424
3727
|
{
|
|
3425
3728
|
fill: stroke || color || "currentColor",
|
|
@@ -3428,8 +3731,8 @@ var IconUploadfiles = ({ size, width, height, color, className, fill, stroke })
|
|
|
3428
3731
|
) }), Uploadfiles_default = IconUploadfiles;
|
|
3429
3732
|
|
|
3430
3733
|
// src/components/Uploadstory.tsx
|
|
3431
|
-
import { jsx as
|
|
3432
|
-
var IconUploadstory = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3734
|
+
import { jsx as jsx193 } from "react/jsx-runtime";
|
|
3735
|
+
var IconUploadstory = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx193("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx193(
|
|
3433
3736
|
"path",
|
|
3434
3737
|
{
|
|
3435
3738
|
fill: stroke || color || "currentColor",
|
|
@@ -3440,8 +3743,8 @@ var IconUploadstory = ({ size, width, height, color, className, fill, stroke })
|
|
|
3440
3743
|
) }), Uploadstory_default = IconUploadstory;
|
|
3441
3744
|
|
|
3442
3745
|
// src/components/UprightFilled.tsx
|
|
3443
|
-
import { jsx as
|
|
3444
|
-
var IconUprightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3746
|
+
import { jsx as jsx194 } from "react/jsx-runtime";
|
|
3747
|
+
var IconUprightFilled = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx194("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx194(
|
|
3445
3748
|
"path",
|
|
3446
3749
|
{
|
|
3447
3750
|
fill: fill || color || "currentColor",
|
|
@@ -3452,8 +3755,8 @@ var IconUprightFilled = ({ size, width, height, color, className, fill, stroke }
|
|
|
3452
3755
|
) }), UprightFilled_default = IconUprightFilled;
|
|
3453
3756
|
|
|
3454
3757
|
// src/components/Userfeedback.tsx
|
|
3455
|
-
import { jsx as
|
|
3456
|
-
var IconUserfeedback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3758
|
+
import { jsx as jsx195 } from "react/jsx-runtime";
|
|
3759
|
+
var IconUserfeedback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx195("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx195(
|
|
3457
3760
|
"path",
|
|
3458
3761
|
{
|
|
3459
3762
|
fill: stroke || color || "currentColor",
|
|
@@ -3464,17 +3767,17 @@ var IconUserfeedback = ({ size, width, height, color, className, fill, stroke })
|
|
|
3464
3767
|
) }), Userfeedback_default = IconUserfeedback;
|
|
3465
3768
|
|
|
3466
3769
|
// src/components/Userfollow.tsx
|
|
3467
|
-
import { jsx as
|
|
3468
|
-
var IconUserfollow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3469
|
-
/* @__PURE__ */
|
|
3770
|
+
import { jsx as jsx196, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
3771
|
+
var IconUserfollow = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs94("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3772
|
+
/* @__PURE__ */ jsx196(
|
|
3470
3773
|
"path",
|
|
3471
3774
|
{
|
|
3472
3775
|
fill: stroke || color || "currentColor",
|
|
3473
3776
|
d: "M15 15.25H6.5C5.25736 15.25 4.25 16.2574 4.25 17.5V19.75H12V22H2V17.5C2 15.0147 4.01472 13 6.5 13H15V15.25Z"
|
|
3474
3777
|
}
|
|
3475
3778
|
),
|
|
3476
|
-
/* @__PURE__ */
|
|
3477
|
-
/* @__PURE__ */
|
|
3779
|
+
/* @__PURE__ */ jsx196("path", { fill: stroke || color || "currentColor", d: "M19 17H22V19H19V22H17V19H14V17H17V14H19V17Z" }),
|
|
3780
|
+
/* @__PURE__ */ jsx196(
|
|
3478
3781
|
"path",
|
|
3479
3782
|
{
|
|
3480
3783
|
fill: stroke || color || "currentColor",
|
|
@@ -3486,8 +3789,8 @@ var IconUserfollow = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
3486
3789
|
] }), Userfollow_default = IconUserfollow;
|
|
3487
3790
|
|
|
3488
3791
|
// src/components/Userfollowback.tsx
|
|
3489
|
-
import { jsx as
|
|
3490
|
-
var IconUserfollowback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3792
|
+
import { jsx as jsx197 } from "react/jsx-runtime";
|
|
3793
|
+
var IconUserfollowback = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx197("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx197(
|
|
3491
3794
|
"path",
|
|
3492
3795
|
{
|
|
3493
3796
|
fill: stroke || color || "currentColor",
|
|
@@ -3496,8 +3799,8 @@ var IconUserfollowback = ({ size, width, height, color, className, fill, stroke
|
|
|
3496
3799
|
) }), Userfollowback_default = IconUserfollowback;
|
|
3497
3800
|
|
|
3498
3801
|
// src/components/Userfollowed.tsx
|
|
3499
|
-
import { jsx as
|
|
3500
|
-
var IconUserfollowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3802
|
+
import { jsx as jsx198 } from "react/jsx-runtime";
|
|
3803
|
+
var IconUserfollowed = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx198("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx198(
|
|
3501
3804
|
"path",
|
|
3502
3805
|
{
|
|
3503
3806
|
fill: stroke || color || "currentColor",
|
|
@@ -3506,16 +3809,16 @@ var IconUserfollowed = ({ size, width, height, color, className, fill, stroke })
|
|
|
3506
3809
|
) }), Userfollowed_default = IconUserfollowed;
|
|
3507
3810
|
|
|
3508
3811
|
// src/components/VideoGeneration.tsx
|
|
3509
|
-
import { jsx as
|
|
3510
|
-
var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3511
|
-
/* @__PURE__ */
|
|
3812
|
+
import { jsx as jsx199, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
3813
|
+
var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs95("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3814
|
+
/* @__PURE__ */ jsx199(
|
|
3512
3815
|
"path",
|
|
3513
3816
|
{
|
|
3514
3817
|
fill: stroke || color || "currentColor",
|
|
3515
3818
|
d: "M12 2.25C6.61522 2.25 2.25 6.61522 2.25 12C2.25 17.3848 6.61522 21.75 12 21.75C17.3848 21.75 21.75 17.3848 21.75 12H24C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0V2.25Z"
|
|
3516
3819
|
}
|
|
3517
3820
|
),
|
|
3518
|
-
/* @__PURE__ */
|
|
3821
|
+
/* @__PURE__ */ jsx199(
|
|
3519
3822
|
"path",
|
|
3520
3823
|
{
|
|
3521
3824
|
fill: stroke || color || "currentColor",
|
|
@@ -3524,7 +3827,7 @@ var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke
|
|
|
3524
3827
|
clipRule: "evenodd"
|
|
3525
3828
|
}
|
|
3526
3829
|
),
|
|
3527
|
-
/* @__PURE__ */
|
|
3830
|
+
/* @__PURE__ */ jsx199(
|
|
3528
3831
|
"path",
|
|
3529
3832
|
{
|
|
3530
3833
|
fill: stroke || color || "currentColor",
|
|
@@ -3534,10 +3837,10 @@ var IconVideoGeneration = ({ size, width, height, color, className, fill, stroke
|
|
|
3534
3837
|
] }), VideoGeneration_default = IconVideoGeneration;
|
|
3535
3838
|
|
|
3536
3839
|
// src/components/VideoLength.tsx
|
|
3537
|
-
import { jsx as
|
|
3538
|
-
var IconVideoLength = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3539
|
-
/* @__PURE__ */
|
|
3540
|
-
/* @__PURE__ */
|
|
3840
|
+
import { jsx as jsx200, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
3841
|
+
var IconVideoLength = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs96("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3842
|
+
/* @__PURE__ */ jsx200("path", { fill: stroke || color || "currentColor", d: "M10.875 9V15H13.125V9H10.875Z" }),
|
|
3843
|
+
/* @__PURE__ */ jsx200(
|
|
3541
3844
|
"path",
|
|
3542
3845
|
{
|
|
3543
3846
|
fill: stroke || color || "currentColor",
|
|
@@ -3549,9 +3852,9 @@ var IconVideoLength = ({ size, width, height, color, className, fill, stroke })
|
|
|
3549
3852
|
] }), VideoLength_default = IconVideoLength;
|
|
3550
3853
|
|
|
3551
3854
|
// src/components/Videogenerate.tsx
|
|
3552
|
-
import { jsx as
|
|
3553
|
-
var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3554
|
-
/* @__PURE__ */
|
|
3855
|
+
import { jsx as jsx201, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
3856
|
+
var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs97("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3857
|
+
/* @__PURE__ */ jsx201(
|
|
3555
3858
|
"path",
|
|
3556
3859
|
{
|
|
3557
3860
|
fill: stroke || color || "currentColor",
|
|
@@ -3560,7 +3863,7 @@ var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }
|
|
|
3560
3863
|
clipRule: "evenodd"
|
|
3561
3864
|
}
|
|
3562
3865
|
),
|
|
3563
|
-
/* @__PURE__ */
|
|
3866
|
+
/* @__PURE__ */ jsx201(
|
|
3564
3867
|
"path",
|
|
3565
3868
|
{
|
|
3566
3869
|
fill: stroke || color || "currentColor",
|
|
@@ -3572,8 +3875,8 @@ var IconVideogenerate = ({ size, width, height, color, className, fill, stroke }
|
|
|
3572
3875
|
] }), Videogenerate_default = IconVideogenerate;
|
|
3573
3876
|
|
|
3574
3877
|
// src/components/Visualstyles.tsx
|
|
3575
|
-
import { jsx as
|
|
3576
|
-
var IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3878
|
+
import { jsx as jsx202 } from "react/jsx-runtime";
|
|
3879
|
+
var IconVisualstyles = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx202("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx202(
|
|
3577
3880
|
"path",
|
|
3578
3881
|
{
|
|
3579
3882
|
fill: stroke || color || "currentColor",
|
|
@@ -3584,9 +3887,9 @@ var IconVisualstyles = ({ size, width, height, color, className, fill, stroke })
|
|
|
3584
3887
|
) }), Visualstyles_default = IconVisualstyles;
|
|
3585
3888
|
|
|
3586
3889
|
// src/components/Volume.tsx
|
|
3587
|
-
import { jsx as
|
|
3588
|
-
var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3589
|
-
/* @__PURE__ */
|
|
3890
|
+
import { jsx as jsx203, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
3891
|
+
var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs98("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3892
|
+
/* @__PURE__ */ jsx203(
|
|
3590
3893
|
"path",
|
|
3591
3894
|
{
|
|
3592
3895
|
fill: stroke || color || "currentColor",
|
|
@@ -3595,14 +3898,14 @@ var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3595
3898
|
clipRule: "evenodd"
|
|
3596
3899
|
}
|
|
3597
3900
|
),
|
|
3598
|
-
/* @__PURE__ */
|
|
3901
|
+
/* @__PURE__ */ jsx203(
|
|
3599
3902
|
"path",
|
|
3600
3903
|
{
|
|
3601
3904
|
fill: stroke || color || "currentColor",
|
|
3602
3905
|
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"
|
|
3603
3906
|
}
|
|
3604
3907
|
),
|
|
3605
|
-
/* @__PURE__ */
|
|
3908
|
+
/* @__PURE__ */ jsx203(
|
|
3606
3909
|
"path",
|
|
3607
3910
|
{
|
|
3608
3911
|
fill: stroke || color || "currentColor",
|
|
@@ -3612,8 +3915,8 @@ var IconVolume = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3612
3915
|
] }), Volume_default = IconVolume;
|
|
3613
3916
|
|
|
3614
3917
|
// src/components/Withdrawgame.tsx
|
|
3615
|
-
import { jsx as
|
|
3616
|
-
var IconWithdrawgame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3918
|
+
import { jsx as jsx204 } from "react/jsx-runtime";
|
|
3919
|
+
var IconWithdrawgame = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsx204("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: /* @__PURE__ */ jsx204(
|
|
3617
3920
|
"path",
|
|
3618
3921
|
{
|
|
3619
3922
|
fill: stroke || color || "currentColor",
|
|
@@ -3624,16 +3927,16 @@ var IconWithdrawgame = ({ size, width, height, color, className, fill, stroke })
|
|
|
3624
3927
|
) }), Withdrawgame_default = IconWithdrawgame;
|
|
3625
3928
|
|
|
3626
3929
|
// src/components/Zoomhandle.tsx
|
|
3627
|
-
import { jsx as
|
|
3628
|
-
var IconZoomhandle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3629
|
-
/* @__PURE__ */
|
|
3930
|
+
import { jsx as jsx205, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
3931
|
+
var IconZoomhandle = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs99("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3932
|
+
/* @__PURE__ */ jsx205(
|
|
3630
3933
|
"path",
|
|
3631
3934
|
{
|
|
3632
3935
|
fill: fill || color || "currentColor",
|
|
3633
3936
|
d: "M12 -2.62268e-07C15.3137 -1.17422e-07 18 2.68629 18 6L18 18C18 21.3137 15.3137 24 12 24C8.68629 24 6 21.3137 6 18L6 6C6 2.68629 8.68629 -4.07115e-07 12 -2.62268e-07Z"
|
|
3634
3937
|
}
|
|
3635
3938
|
),
|
|
3636
|
-
/* @__PURE__ */
|
|
3939
|
+
/* @__PURE__ */ jsx205(
|
|
3637
3940
|
"path",
|
|
3638
3941
|
{
|
|
3639
3942
|
fill: stroke || color || "currentColor",
|
|
@@ -3643,16 +3946,16 @@ var IconZoomhandle = ({ size, width, height, color, className, fill, stroke }) =
|
|
|
3643
3946
|
] }), Zoomhandle_default = IconZoomhandle;
|
|
3644
3947
|
|
|
3645
3948
|
// src/components/Zoomin.tsx
|
|
3646
|
-
import { jsx as
|
|
3647
|
-
var IconZoomin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3648
|
-
/* @__PURE__ */
|
|
3949
|
+
import { jsx as jsx206, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
3950
|
+
var IconZoomin = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs100("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3951
|
+
/* @__PURE__ */ jsx206(
|
|
3649
3952
|
"path",
|
|
3650
3953
|
{
|
|
3651
3954
|
fill: stroke || color || "currentColor",
|
|
3652
3955
|
d: "M11.625 11.625H15V9.375H11.625V6H9.375V9.375H6V11.625H9.375V15H11.625V11.625Z"
|
|
3653
3956
|
}
|
|
3654
3957
|
),
|
|
3655
|
-
/* @__PURE__ */
|
|
3958
|
+
/* @__PURE__ */ jsx206(
|
|
3656
3959
|
"path",
|
|
3657
3960
|
{
|
|
3658
3961
|
fill: stroke || color || "currentColor",
|
|
@@ -3664,10 +3967,10 @@ var IconZoomin = ({ size, width, height, color, className, fill, stroke }) => /*
|
|
|
3664
3967
|
] }), Zoomin_default = IconZoomin;
|
|
3665
3968
|
|
|
3666
3969
|
// src/components/Zoomout.tsx
|
|
3667
|
-
import { jsx as
|
|
3668
|
-
var IconZoomout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */
|
|
3669
|
-
/* @__PURE__ */
|
|
3670
|
-
/* @__PURE__ */
|
|
3970
|
+
import { jsx as jsx207, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
3971
|
+
var IconZoomout = ({ size, width, height, color, className, fill, stroke }) => /* @__PURE__ */ jsxs101("svg", { fill: "none", viewBox: "0 0 24 24", className, width: width || size, height: height || size, children: [
|
|
3972
|
+
/* @__PURE__ */ jsx207("path", { fill: stroke || color || "currentColor", d: "M15 11.625H6V9.375H15V11.625Z" }),
|
|
3973
|
+
/* @__PURE__ */ jsx207(
|
|
3671
3974
|
"path",
|
|
3672
3975
|
{
|
|
3673
3976
|
fill: stroke || color || "currentColor",
|
|
@@ -3693,14 +3996,15 @@ export {
|
|
|
3693
3996
|
Backtoprojects_default as IconBacktoprojects,
|
|
3694
3997
|
Backward_default as IconBackward,
|
|
3695
3998
|
BatchShots_default as IconBatchShots,
|
|
3999
|
+
Canvaposition_default as IconCanvaposition,
|
|
3696
4000
|
Canvasmode_default as IconCanvasmode,
|
|
3697
4001
|
Ccg_default as IconCcg,
|
|
3698
4002
|
CcgFilled_default as IconCcgFilled,
|
|
3699
4003
|
Ccggame_default as IconCcggame,
|
|
3700
4004
|
Ccglanguage_default as IconCcglanguage,
|
|
3701
|
-
Changeprofilephoto_default as IconChangeprofilephoto,
|
|
3702
4005
|
Chaptercollapse_default as IconChaptercollapse,
|
|
3703
4006
|
Chapterexpand_default as IconChapterexpand,
|
|
4007
|
+
Chathistory_default as IconChathistory,
|
|
3704
4008
|
Check_default as IconCheck,
|
|
3705
4009
|
CheckedFilled_default as IconCheckedFilled,
|
|
3706
4010
|
Close_default as IconClose,
|
|
@@ -3711,11 +4015,13 @@ export {
|
|
|
3711
4015
|
Cursor_default as IconCursor,
|
|
3712
4016
|
Delete_default as IconDelete,
|
|
3713
4017
|
DeleteSceneChoice_default as IconDeleteSceneChoice,
|
|
4018
|
+
Document_default as IconDocument,
|
|
3714
4019
|
DownFilled_default as IconDownFilled,
|
|
3715
4020
|
DownleftFilled_default as IconDownleftFilled,
|
|
3716
4021
|
Download_default as IconDownload,
|
|
3717
4022
|
DownrightFilled_default as IconDownrightFilled,
|
|
3718
4023
|
DraghandleFilled_default as IconDraghandleFilled,
|
|
4024
|
+
Edit_default as IconEdit,
|
|
3719
4025
|
Expandwindow_default as IconExpandwindow,
|
|
3720
4026
|
Favorite_default as IconFavorite,
|
|
3721
4027
|
FavoriteFilled_default as IconFavoriteFilled,
|
|
@@ -3746,6 +4052,9 @@ export {
|
|
|
3746
4052
|
Gamelanguage_default as IconGamelanguage,
|
|
3747
4053
|
Gamepreview_default as IconGamepreview,
|
|
3748
4054
|
Gameui_default as IconGameui,
|
|
4055
|
+
Gameuivariable_default as IconGameuivariable,
|
|
4056
|
+
Gameuivariable2_default as IconGameuivariable2,
|
|
4057
|
+
Generate_default as IconGenerate,
|
|
3749
4058
|
GenerateFilled_default as IconGenerateFilled,
|
|
3750
4059
|
GenerateFrameStart_default as IconGenerateFrameStart,
|
|
3751
4060
|
GenerateFrameStart2End_default as IconGenerateFrameStart2End,
|
|
@@ -3774,12 +4083,14 @@ export {
|
|
|
3774
4083
|
Loading_default as IconLoading,
|
|
3775
4084
|
Login_default as IconLogin,
|
|
3776
4085
|
Logout_default as IconLogout,
|
|
4086
|
+
Magic_default as IconMagic,
|
|
3777
4087
|
ModelDeepmindFilled_default as IconModelDeepmindFilled,
|
|
3778
4088
|
ModelGeminiFilled_default as IconModelGeminiFilled,
|
|
3779
4089
|
ModelNanobananaLogoNomoFilled_default as IconModelNanobananaLogoNomoFilled,
|
|
3780
4090
|
ModelOpenaiFilled_default as IconModelOpenaiFilled,
|
|
3781
4091
|
ModelSeedFilled_default as IconModelSeedFilled,
|
|
3782
4092
|
ModelSoraFilled_default as IconModelSoraFilled,
|
|
4093
|
+
ModelhappyhorseFilled_default as IconModelhappyhorseFilled,
|
|
3783
4094
|
ModelklingFilled_default as IconModelklingFilled,
|
|
3784
4095
|
Models_default as IconModels,
|
|
3785
4096
|
More_default as IconMore,
|
|
@@ -3792,9 +4103,11 @@ export {
|
|
|
3792
4103
|
MouseNumberchange_default as IconMouseNumberchange,
|
|
3793
4104
|
Musicassets_default as IconMusicassets,
|
|
3794
4105
|
Mute_default as IconMute,
|
|
4106
|
+
Newchat_default as IconNewchat,
|
|
3795
4107
|
Next_default as IconNext,
|
|
3796
4108
|
Nextscene_default as IconNextscene,
|
|
3797
4109
|
Niceofficial_default as IconNiceofficial,
|
|
4110
|
+
Notification_default as IconNotification,
|
|
3798
4111
|
Oneclickgenerate_default as IconOneclickgenerate,
|
|
3799
4112
|
Opendemo_default as IconOpendemo,
|
|
3800
4113
|
OppsFilled_default as IconOppsFilled,
|
|
@@ -3816,6 +4129,7 @@ export {
|
|
|
3816
4129
|
ProblemNoticeFilled_default as IconProblemNoticeFilled,
|
|
3817
4130
|
Publish_default as IconPublish,
|
|
3818
4131
|
QtEsave_default as IconQtEsave,
|
|
4132
|
+
Quote_default as IconQuote,
|
|
3819
4133
|
Ratio_default as IconRatio,
|
|
3820
4134
|
Ratio11_default as IconRatio11,
|
|
3821
4135
|
Ratio169_default as IconRatio169,
|
|
@@ -3825,13 +4139,17 @@ export {
|
|
|
3825
4139
|
Regenerate_default as IconRegenerate,
|
|
3826
4140
|
Resultsetting_default as IconResultsetting,
|
|
3827
4141
|
RightFilled_default as IconRightFilled,
|
|
4142
|
+
Satisfied_default as IconSatisfied,
|
|
3828
4143
|
SceneNext_default as IconSceneNext,
|
|
3829
4144
|
Scriptmode_default as IconScriptmode,
|
|
3830
4145
|
Scrolldown_default as IconScrolldown,
|
|
3831
4146
|
Sendrequest_default as IconSendrequest,
|
|
4147
|
+
Sendup_default as IconSendup,
|
|
4148
|
+
Sendup2_default as IconSendup2,
|
|
3832
4149
|
Share_default as IconShare,
|
|
3833
4150
|
ShareFilled_default as IconShareFilled,
|
|
3834
4151
|
Sidebar_default as IconSidebar,
|
|
4152
|
+
Singleunchecked_default as IconSingleunchecked,
|
|
3835
4153
|
SocialDiscord_default as IconSocialDiscord,
|
|
3836
4154
|
SocialX_default as IconSocialX,
|
|
3837
4155
|
SoundOff_default as IconSoundOff,
|
|
@@ -3845,9 +4163,11 @@ export {
|
|
|
3845
4163
|
Target_default as IconTarget,
|
|
3846
4164
|
TextLogo_default as IconTextLogo,
|
|
3847
4165
|
Tips_default as IconTips,
|
|
4166
|
+
TipsFilled_default as IconTipsFilled,
|
|
3848
4167
|
Tools_default as IconTools,
|
|
3849
4168
|
ToolsFilled_default as IconToolsFilled,
|
|
3850
4169
|
Undo_default as IconUndo,
|
|
4170
|
+
Unsatisfied_default as IconUnsatisfied,
|
|
3851
4171
|
UpFilled_default as IconUpFilled,
|
|
3852
4172
|
UpleftFilled_default as IconUpleftFilled,
|
|
3853
4173
|
Uploadedvideo_default as IconUploadedvideo,
|