@emberkit/icons 0.2.0 → 0.2.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +199 -0
- package/dist/index.d.ts +326 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +816 -578
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
function createSvgIcon(def) {
|
|
2
2
|
return (props) => ({
|
|
3
|
-
type:
|
|
3
|
+
type: "svg",
|
|
4
4
|
props: {
|
|
5
5
|
viewBox: def.viewBox,
|
|
6
|
-
fill: def.fill ??
|
|
7
|
-
stroke: def.stroke !== false ? (props.color ??
|
|
6
|
+
fill: def.fill ?? "none",
|
|
7
|
+
stroke: def.stroke !== false ? (props.color ?? "currentColor") : undefined,
|
|
8
8
|
strokeWidth: def.stroke !== false ? 2 : undefined,
|
|
9
|
-
strokeLinecap: def.stroke !== false ?
|
|
10
|
-
strokeLinejoin: def.stroke !== false ?
|
|
9
|
+
strokeLinecap: def.stroke !== false ? "round" : undefined,
|
|
10
|
+
strokeLinejoin: def.stroke !== false ? "round" : undefined,
|
|
11
11
|
width: props.size ?? 24,
|
|
12
12
|
height: props.size ?? 24,
|
|
13
13
|
className: props.className,
|
|
@@ -16,1356 +16,1572 @@ function createSvgIcon(def) {
|
|
|
16
16
|
});
|
|
17
17
|
}
|
|
18
18
|
export const IconMenu = createSvgIcon({
|
|
19
|
-
viewBox:
|
|
19
|
+
viewBox: "0 0 24 24",
|
|
20
20
|
children: [
|
|
21
|
-
{ type:
|
|
22
|
-
{ type:
|
|
23
|
-
{ type:
|
|
21
|
+
{ type: "path", props: { d: "M3 12h18" } },
|
|
22
|
+
{ type: "path", props: { d: "M3 6h18" } },
|
|
23
|
+
{ type: "path", props: { d: "M3 18h18" } },
|
|
24
24
|
],
|
|
25
25
|
});
|
|
26
26
|
export const IconX = createSvgIcon({
|
|
27
|
-
viewBox:
|
|
27
|
+
viewBox: "0 0 24 24",
|
|
28
28
|
children: [
|
|
29
|
-
{ type:
|
|
30
|
-
{ type:
|
|
29
|
+
{ type: "path", props: { d: "M18 6L6 18" } },
|
|
30
|
+
{ type: "path", props: { d: "M6 6l12 12" } },
|
|
31
31
|
],
|
|
32
32
|
});
|
|
33
33
|
export const IconSearch = createSvgIcon({
|
|
34
|
-
viewBox:
|
|
34
|
+
viewBox: "0 0 24 24",
|
|
35
35
|
children: [
|
|
36
|
-
{ type:
|
|
37
|
-
{ type:
|
|
36
|
+
{ type: "circle", props: { cx: 11, cy: 11, r: 8 } },
|
|
37
|
+
{ type: "path", props: { d: "m21 21-4.35-4.35" } },
|
|
38
38
|
],
|
|
39
39
|
});
|
|
40
40
|
export const IconGithub = createSvgIcon({
|
|
41
|
-
viewBox:
|
|
42
|
-
fill:
|
|
41
|
+
viewBox: "0 0 24 24",
|
|
42
|
+
fill: "currentColor",
|
|
43
43
|
stroke: false,
|
|
44
44
|
children: {
|
|
45
|
-
type:
|
|
45
|
+
type: "path",
|
|
46
46
|
props: {
|
|
47
|
-
d:
|
|
47
|
+
d: "M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z",
|
|
48
48
|
},
|
|
49
49
|
},
|
|
50
50
|
});
|
|
51
51
|
export const IconChevronDown = createSvgIcon({
|
|
52
|
-
viewBox:
|
|
53
|
-
children: { type:
|
|
52
|
+
viewBox: "0 0 24 24",
|
|
53
|
+
children: { type: "path", props: { d: "M6 9l6 6 6-6" } },
|
|
54
54
|
});
|
|
55
55
|
export const IconChevronRight = createSvgIcon({
|
|
56
|
-
viewBox:
|
|
57
|
-
children: { type:
|
|
56
|
+
viewBox: "0 0 24 24",
|
|
57
|
+
children: { type: "path", props: { d: "M9 18l6-6-6-6" } },
|
|
58
58
|
});
|
|
59
59
|
export const IconChevronLeft = createSvgIcon({
|
|
60
|
-
viewBox:
|
|
61
|
-
children: { type:
|
|
60
|
+
viewBox: "0 0 24 24",
|
|
61
|
+
children: { type: "path", props: { d: "M15 18l-6-6 6-6" } },
|
|
62
62
|
});
|
|
63
63
|
export const IconArrowRight = createSvgIcon({
|
|
64
|
-
viewBox:
|
|
65
|
-
children: { type:
|
|
64
|
+
viewBox: "0 0 24 24",
|
|
65
|
+
children: { type: "path", props: { d: "M5 12h14M12 5l7 7-7 7" } },
|
|
66
66
|
});
|
|
67
67
|
export const IconArrowUp = createSvgIcon({
|
|
68
|
-
viewBox:
|
|
69
|
-
children: { type:
|
|
68
|
+
viewBox: "0 0 24 24",
|
|
69
|
+
children: { type: "path", props: { d: "M12 19V5M5 12l7-7 7 7" } },
|
|
70
70
|
});
|
|
71
71
|
export const IconArrowDown = createSvgIcon({
|
|
72
|
-
viewBox:
|
|
73
|
-
children: { type:
|
|
72
|
+
viewBox: "0 0 24 24",
|
|
73
|
+
children: { type: "path", props: { d: "M12 5v14M19 12l-7 7-7-7" } },
|
|
74
74
|
});
|
|
75
75
|
export const IconPlay = createSvgIcon({
|
|
76
|
-
viewBox:
|
|
77
|
-
children: { type:
|
|
76
|
+
viewBox: "0 0 24 24",
|
|
77
|
+
children: { type: "path", props: { d: "M5 3l14 9-14 9V3z" } },
|
|
78
78
|
});
|
|
79
79
|
export const IconPause = createSvgIcon({
|
|
80
|
-
viewBox:
|
|
80
|
+
viewBox: "0 0 24 24",
|
|
81
81
|
children: [
|
|
82
|
-
{ type:
|
|
83
|
-
{ type:
|
|
82
|
+
{ type: "rect", props: { x: 6, y: 4, width: 4, height: 16 } },
|
|
83
|
+
{ type: "rect", props: { x: 14, y: 4, width: 4, height: 16 } },
|
|
84
84
|
],
|
|
85
85
|
});
|
|
86
86
|
export const IconCode = createSvgIcon({
|
|
87
|
-
viewBox:
|
|
87
|
+
viewBox: "0 0 24 24",
|
|
88
88
|
children: [
|
|
89
|
-
{ type:
|
|
90
|
-
{ type:
|
|
89
|
+
{ type: "polyline", props: { points: "16 18 22 12 16 6" } },
|
|
90
|
+
{ type: "polyline", props: { points: "8 6 2 12 8 18" } },
|
|
91
91
|
],
|
|
92
92
|
});
|
|
93
93
|
export const IconBook = createSvgIcon({
|
|
94
|
-
viewBox:
|
|
94
|
+
viewBox: "0 0 24 24",
|
|
95
95
|
children: [
|
|
96
|
-
{ type:
|
|
97
|
-
{
|
|
96
|
+
{ type: "path", props: { d: "M4 19.5A2.5 2.5 0 0 1 6.5 17H20" } },
|
|
97
|
+
{
|
|
98
|
+
type: "path",
|
|
99
|
+
props: {
|
|
100
|
+
d: "M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z",
|
|
101
|
+
},
|
|
102
|
+
},
|
|
98
103
|
],
|
|
99
104
|
});
|
|
100
105
|
export const IconZap = createSvgIcon({
|
|
101
|
-
viewBox:
|
|
102
|
-
children: { type:
|
|
106
|
+
viewBox: "0 0 24 24",
|
|
107
|
+
children: { type: "path", props: { d: "M13 2L3 14h9l-1 8 10-12h-9l1-8z" } },
|
|
103
108
|
});
|
|
104
109
|
export const IconPackage = createSvgIcon({
|
|
105
|
-
viewBox:
|
|
110
|
+
viewBox: "0 0 24 24",
|
|
106
111
|
children: [
|
|
107
|
-
{ type:
|
|
108
|
-
{
|
|
109
|
-
|
|
110
|
-
|
|
112
|
+
{ type: "path", props: { d: "M16.5 9.4l-9-5.19" } },
|
|
113
|
+
{
|
|
114
|
+
type: "path",
|
|
115
|
+
props: {
|
|
116
|
+
d: "M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
{ type: "polyline", props: { points: "3.27 6.96 12 12.01 20.73 6.96" } },
|
|
120
|
+
{ type: "line", props: { x1: 12, y1: 22.08, x2: 12, y2: 12 } },
|
|
111
121
|
],
|
|
112
122
|
});
|
|
113
123
|
export const IconTarget = createSvgIcon({
|
|
114
|
-
viewBox:
|
|
124
|
+
viewBox: "0 0 24 24",
|
|
115
125
|
children: [
|
|
116
|
-
{ type:
|
|
117
|
-
{ type:
|
|
118
|
-
{ type:
|
|
126
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
127
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 6 } },
|
|
128
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 2 } },
|
|
119
129
|
],
|
|
120
130
|
});
|
|
121
131
|
export const IconType = createSvgIcon({
|
|
122
|
-
viewBox:
|
|
132
|
+
viewBox: "0 0 24 24",
|
|
123
133
|
children: [
|
|
124
|
-
{ type:
|
|
125
|
-
{ type:
|
|
126
|
-
{ type:
|
|
134
|
+
{ type: "polyline", props: { points: "4 7 4 4 20 4 20 7" } },
|
|
135
|
+
{ type: "line", props: { x1: 9, y1: 20, x2: 15, y2: 20 } },
|
|
136
|
+
{ type: "line", props: { x1: 12, y1: 4, x2: 12, y2: 20 } },
|
|
127
137
|
],
|
|
128
138
|
});
|
|
129
139
|
export const IconSun = createSvgIcon({
|
|
130
|
-
viewBox:
|
|
140
|
+
viewBox: "0 0 24 24",
|
|
131
141
|
children: [
|
|
132
|
-
{ type:
|
|
133
|
-
{ type:
|
|
134
|
-
{ type:
|
|
135
|
-
{ type:
|
|
136
|
-
{
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
{ type:
|
|
142
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 5 } },
|
|
143
|
+
{ type: "line", props: { x1: 12, y1: 1, x2: 12, y2: 3 } },
|
|
144
|
+
{ type: "line", props: { x1: 12, y1: 21, x2: 12, y2: 23 } },
|
|
145
|
+
{ type: "line", props: { x1: "4.22", y1: "4.22", x2: "5.64", y2: "5.64" } },
|
|
146
|
+
{
|
|
147
|
+
type: "line",
|
|
148
|
+
props: { x1: "18.36", y1: "18.36", x2: "19.78", y2: "19.78" },
|
|
149
|
+
},
|
|
150
|
+
{ type: "line", props: { x1: 1, y1: 12, x2: 3, y2: 12 } },
|
|
151
|
+
{ type: "line", props: { x1: 21, y1: 12, x2: 23, y2: 12 } },
|
|
152
|
+
{
|
|
153
|
+
type: "line",
|
|
154
|
+
props: { x1: "4.22", y1: "19.78", x2: "5.64", y2: "18.36" },
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: "line",
|
|
158
|
+
props: { x1: "18.36", y1: "5.64", x2: "19.78", y2: "4.22" },
|
|
159
|
+
},
|
|
141
160
|
],
|
|
142
161
|
});
|
|
143
162
|
export const IconMoon = createSvgIcon({
|
|
144
|
-
viewBox:
|
|
145
|
-
children: {
|
|
163
|
+
viewBox: "0 0 24 24",
|
|
164
|
+
children: {
|
|
165
|
+
type: "path",
|
|
166
|
+
props: { d: "M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" },
|
|
167
|
+
},
|
|
146
168
|
});
|
|
147
169
|
export const IconCopy = createSvgIcon({
|
|
148
|
-
viewBox:
|
|
170
|
+
viewBox: "0 0 24 24",
|
|
149
171
|
children: [
|
|
150
|
-
{
|
|
151
|
-
|
|
172
|
+
{
|
|
173
|
+
type: "rect",
|
|
174
|
+
props: { x: 9, y: 9, width: 13, height: 13, rx: 2, ry: 2 },
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
type: "path",
|
|
178
|
+
props: { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" },
|
|
179
|
+
},
|
|
152
180
|
],
|
|
153
181
|
});
|
|
154
182
|
export const IconCheck = createSvgIcon({
|
|
155
|
-
viewBox:
|
|
156
|
-
children: { type:
|
|
183
|
+
viewBox: "0 0 24 24",
|
|
184
|
+
children: { type: "polyline", props: { points: "20 6 9 17 4 12" } },
|
|
157
185
|
});
|
|
158
186
|
export const IconAlertCircle = createSvgIcon({
|
|
159
|
-
viewBox:
|
|
187
|
+
viewBox: "0 0 24 24",
|
|
160
188
|
children: [
|
|
161
|
-
{ type:
|
|
162
|
-
{ type:
|
|
163
|
-
{ type:
|
|
189
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
190
|
+
{ type: "line", props: { x1: 12, y1: 8, x2: 12, y2: 12 } },
|
|
191
|
+
{ type: "line", props: { x1: 12, y1: 16, x2: 12.01, y2: 16 } },
|
|
164
192
|
],
|
|
165
193
|
});
|
|
166
194
|
export const IconExternalLink = createSvgIcon({
|
|
167
|
-
viewBox:
|
|
195
|
+
viewBox: "0 0 24 24",
|
|
168
196
|
children: [
|
|
169
|
-
{
|
|
170
|
-
|
|
171
|
-
|
|
197
|
+
{
|
|
198
|
+
type: "path",
|
|
199
|
+
props: { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" },
|
|
200
|
+
},
|
|
201
|
+
{ type: "polyline", props: { points: "15 3 21 3 21 9" } },
|
|
202
|
+
{ type: "line", props: { x1: 10, y1: 14, x2: 21, y2: 3 } },
|
|
172
203
|
],
|
|
173
204
|
});
|
|
174
205
|
export const IconPlus = createSvgIcon({
|
|
175
|
-
viewBox:
|
|
206
|
+
viewBox: "0 0 24 24",
|
|
176
207
|
children: [
|
|
177
|
-
{ type:
|
|
178
|
-
{ type:
|
|
208
|
+
{ type: "line", props: { x1: 12, y1: 5, x2: 12, y2: 19 } },
|
|
209
|
+
{ type: "line", props: { x1: 5, y1: 12, x2: 19, y2: 12 } },
|
|
179
210
|
],
|
|
180
211
|
});
|
|
181
212
|
export const IconMinus = createSvgIcon({
|
|
182
|
-
viewBox:
|
|
183
|
-
children: { type:
|
|
213
|
+
viewBox: "0 0 24 24",
|
|
214
|
+
children: { type: "line", props: { x1: 5, y1: 12, x2: 19, y2: 12 } },
|
|
184
215
|
});
|
|
185
216
|
export const IconTerminal = createSvgIcon({
|
|
186
|
-
viewBox:
|
|
217
|
+
viewBox: "0 0 24 24",
|
|
187
218
|
children: [
|
|
188
|
-
{ type:
|
|
189
|
-
{ type:
|
|
219
|
+
{ type: "polyline", props: { points: "4 17 10 11 4 5" } },
|
|
220
|
+
{ type: "line", props: { x1: 12, y1: 19, x2: 20, y2: 19 } },
|
|
190
221
|
],
|
|
191
222
|
});
|
|
192
223
|
export const IconLayers = createSvgIcon({
|
|
193
|
-
viewBox:
|
|
224
|
+
viewBox: "0 0 24 24",
|
|
194
225
|
children: [
|
|
195
|
-
{ type:
|
|
196
|
-
{ type:
|
|
197
|
-
{ type:
|
|
226
|
+
{ type: "polygon", props: { points: "12 2 2 7 12 12 22 7 12 2" } },
|
|
227
|
+
{ type: "polyline", props: { points: "2 17 12 22 22 17" } },
|
|
228
|
+
{ type: "polyline", props: { points: "2 12 12 17 22 12" } },
|
|
198
229
|
],
|
|
199
230
|
});
|
|
200
231
|
export const IconGrid = createSvgIcon({
|
|
201
|
-
viewBox:
|
|
232
|
+
viewBox: "0 0 24 24",
|
|
202
233
|
children: [
|
|
203
|
-
{ type:
|
|
204
|
-
{ type:
|
|
205
|
-
{ type:
|
|
206
|
-
{ type:
|
|
234
|
+
{ type: "rect", props: { x: 3, y: 3, width: 7, height: 7 } },
|
|
235
|
+
{ type: "rect", props: { x: 14, y: 3, width: 7, height: 7 } },
|
|
236
|
+
{ type: "rect", props: { x: 14, y: 14, width: 7, height: 7 } },
|
|
237
|
+
{ type: "rect", props: { x: 3, y: 14, width: 7, height: 7 } },
|
|
207
238
|
],
|
|
208
239
|
});
|
|
209
240
|
export const IconSettings = createSvgIcon({
|
|
210
|
-
viewBox:
|
|
241
|
+
viewBox: "0 0 24 24",
|
|
211
242
|
children: [
|
|
212
|
-
{ type:
|
|
213
|
-
{
|
|
243
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 3 } },
|
|
244
|
+
{
|
|
245
|
+
type: "path",
|
|
246
|
+
props: {
|
|
247
|
+
d: "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z",
|
|
248
|
+
},
|
|
249
|
+
},
|
|
214
250
|
],
|
|
215
251
|
});
|
|
216
252
|
export const IconGlobe = createSvgIcon({
|
|
217
|
-
viewBox:
|
|
253
|
+
viewBox: "0 0 24 24",
|
|
218
254
|
children: [
|
|
219
|
-
{ type:
|
|
220
|
-
{ type:
|
|
221
|
-
{
|
|
255
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
256
|
+
{ type: "line", props: { x1: 2, y1: 12, x2: 22, y2: 12 } },
|
|
257
|
+
{
|
|
258
|
+
type: "path",
|
|
259
|
+
props: {
|
|
260
|
+
d: "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z",
|
|
261
|
+
},
|
|
262
|
+
},
|
|
222
263
|
],
|
|
223
264
|
});
|
|
224
265
|
export const IconImage = createSvgIcon({
|
|
225
|
-
viewBox:
|
|
266
|
+
viewBox: "0 0 24 24",
|
|
226
267
|
children: [
|
|
227
|
-
{
|
|
228
|
-
|
|
229
|
-
|
|
268
|
+
{
|
|
269
|
+
type: "rect",
|
|
270
|
+
props: { x: 3, y: 3, width: 18, height: 18, rx: 2, ry: 2 },
|
|
271
|
+
},
|
|
272
|
+
{ type: "circle", props: { cx: 8.5, cy: 8.5, r: 1.5 } },
|
|
273
|
+
{ type: "polyline", props: { points: "21 15 16 10 5 21" } },
|
|
230
274
|
],
|
|
231
275
|
});
|
|
232
276
|
export const IconFile = createSvgIcon({
|
|
233
|
-
viewBox:
|
|
277
|
+
viewBox: "0 0 24 24",
|
|
234
278
|
children: [
|
|
235
|
-
{
|
|
236
|
-
|
|
279
|
+
{
|
|
280
|
+
type: "path",
|
|
281
|
+
props: {
|
|
282
|
+
d: "M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z",
|
|
283
|
+
},
|
|
284
|
+
},
|
|
285
|
+
{ type: "polyline", props: { points: "13 2 13 9 20 9" } },
|
|
237
286
|
],
|
|
238
287
|
});
|
|
239
288
|
export const IconFolder = createSvgIcon({
|
|
240
|
-
viewBox:
|
|
241
|
-
children: {
|
|
289
|
+
viewBox: "0 0 24 24",
|
|
290
|
+
children: {
|
|
291
|
+
type: "path",
|
|
292
|
+
props: {
|
|
293
|
+
d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z",
|
|
294
|
+
},
|
|
295
|
+
},
|
|
242
296
|
});
|
|
243
297
|
export const IconEdit = createSvgIcon({
|
|
244
|
-
viewBox:
|
|
298
|
+
viewBox: "0 0 24 24",
|
|
245
299
|
children: [
|
|
246
|
-
{
|
|
247
|
-
|
|
300
|
+
{
|
|
301
|
+
type: "path",
|
|
302
|
+
props: {
|
|
303
|
+
d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
type: "path",
|
|
308
|
+
props: { d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" },
|
|
309
|
+
},
|
|
248
310
|
],
|
|
249
311
|
});
|
|
250
312
|
export const IconTrash = createSvgIcon({
|
|
251
|
-
viewBox:
|
|
313
|
+
viewBox: "0 0 24 24",
|
|
252
314
|
children: [
|
|
253
|
-
{ type:
|
|
254
|
-
{
|
|
315
|
+
{ type: "polyline", props: { points: "3 6 5 6 21 6" } },
|
|
316
|
+
{
|
|
317
|
+
type: "path",
|
|
318
|
+
props: {
|
|
319
|
+
d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",
|
|
320
|
+
},
|
|
321
|
+
},
|
|
255
322
|
],
|
|
256
323
|
});
|
|
257
324
|
export const IconHeart = createSvgIcon({
|
|
258
|
-
viewBox:
|
|
259
|
-
children: {
|
|
325
|
+
viewBox: "0 0 24 24",
|
|
326
|
+
children: {
|
|
327
|
+
type: "path",
|
|
328
|
+
props: {
|
|
329
|
+
d: "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z",
|
|
330
|
+
},
|
|
331
|
+
},
|
|
260
332
|
});
|
|
261
333
|
export const IconStar = createSvgIcon({
|
|
262
|
-
viewBox:
|
|
263
|
-
children: {
|
|
334
|
+
viewBox: "0 0 24 24",
|
|
335
|
+
children: {
|
|
336
|
+
type: "polygon",
|
|
337
|
+
props: {
|
|
338
|
+
points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2",
|
|
339
|
+
},
|
|
340
|
+
},
|
|
264
341
|
});
|
|
265
342
|
export const IconHome = createSvgIcon({
|
|
266
|
-
viewBox:
|
|
343
|
+
viewBox: "0 0 24 24",
|
|
267
344
|
children: [
|
|
268
|
-
{
|
|
269
|
-
|
|
345
|
+
{
|
|
346
|
+
type: "path",
|
|
347
|
+
props: { d: "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" },
|
|
348
|
+
},
|
|
349
|
+
{ type: "polyline", props: { points: "9 22 9 12 15 12 15 22" } },
|
|
270
350
|
],
|
|
271
351
|
});
|
|
272
352
|
export const IconUser = createSvgIcon({
|
|
273
|
-
viewBox:
|
|
353
|
+
viewBox: "0 0 24 24",
|
|
274
354
|
children: [
|
|
275
|
-
{ type:
|
|
276
|
-
{ type:
|
|
355
|
+
{ type: "path", props: { d: "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" } },
|
|
356
|
+
{ type: "circle", props: { cx: 12, cy: 7, r: 4 } },
|
|
277
357
|
],
|
|
278
358
|
});
|
|
279
359
|
export const IconUsers = createSvgIcon({
|
|
280
|
-
viewBox:
|
|
360
|
+
viewBox: "0 0 24 24",
|
|
281
361
|
children: [
|
|
282
|
-
{ type:
|
|
283
|
-
{ type:
|
|
284
|
-
{ type:
|
|
285
|
-
{ type:
|
|
362
|
+
{ type: "path", props: { d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" } },
|
|
363
|
+
{ type: "circle", props: { cx: 9, cy: 7, r: 4 } },
|
|
364
|
+
{ type: "path", props: { d: "M23 21v-2a4 4 0 0 0-3-3.87" } },
|
|
365
|
+
{ type: "path", props: { d: "M16 3.13a4 4 0 0 1 0 7.75" } },
|
|
286
366
|
],
|
|
287
367
|
});
|
|
288
368
|
export const IconLock = createSvgIcon({
|
|
289
|
-
viewBox:
|
|
369
|
+
viewBox: "0 0 24 24",
|
|
290
370
|
children: [
|
|
291
|
-
{
|
|
292
|
-
|
|
371
|
+
{
|
|
372
|
+
type: "rect",
|
|
373
|
+
props: { x: 3, y: 11, width: 18, height: 11, rx: 2, ry: 2 },
|
|
374
|
+
},
|
|
375
|
+
{ type: "path", props: { d: "M7 11V7a5 5 0 0 1 10 0v4" } },
|
|
293
376
|
],
|
|
294
377
|
});
|
|
295
378
|
export const IconMail = createSvgIcon({
|
|
296
|
-
viewBox:
|
|
379
|
+
viewBox: "0 0 24 24",
|
|
297
380
|
children: [
|
|
298
|
-
{
|
|
299
|
-
|
|
381
|
+
{
|
|
382
|
+
type: "path",
|
|
383
|
+
props: {
|
|
384
|
+
d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z",
|
|
385
|
+
},
|
|
386
|
+
},
|
|
387
|
+
{ type: "polyline", props: { points: "22,6 12,13 2,6" } },
|
|
300
388
|
],
|
|
301
389
|
});
|
|
302
390
|
export const IconCalendar = createSvgIcon({
|
|
303
|
-
viewBox:
|
|
391
|
+
viewBox: "0 0 24 24",
|
|
304
392
|
children: [
|
|
305
|
-
{
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
393
|
+
{
|
|
394
|
+
type: "rect",
|
|
395
|
+
props: { x: 3, y: 4, width: 18, height: 18, rx: 2, ry: 2 },
|
|
396
|
+
},
|
|
397
|
+
{ type: "line", props: { x1: 16, y1: 2, x2: 16, y2: 6 } },
|
|
398
|
+
{ type: "line", props: { x1: 8, y1: 2, x2: 8, y2: 6 } },
|
|
399
|
+
{ type: "line", props: { x1: 3, y1: 10, x2: 21, y2: 10 } },
|
|
309
400
|
],
|
|
310
401
|
});
|
|
311
402
|
export const IconClock = createSvgIcon({
|
|
312
|
-
viewBox:
|
|
403
|
+
viewBox: "0 0 24 24",
|
|
313
404
|
children: [
|
|
314
|
-
{ type:
|
|
315
|
-
{ type:
|
|
405
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
406
|
+
{ type: "polyline", props: { points: "12 6 12 12 16 14" } },
|
|
316
407
|
],
|
|
317
408
|
});
|
|
318
409
|
export const IconMapPin = createSvgIcon({
|
|
319
|
-
viewBox:
|
|
410
|
+
viewBox: "0 0 24 24",
|
|
320
411
|
children: [
|
|
321
|
-
{
|
|
322
|
-
|
|
412
|
+
{
|
|
413
|
+
type: "path",
|
|
414
|
+
props: { d: "M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" },
|
|
415
|
+
},
|
|
416
|
+
{ type: "circle", props: { cx: 12, cy: 10, r: 3 } },
|
|
323
417
|
],
|
|
324
418
|
});
|
|
325
419
|
export const IconLink = createSvgIcon({
|
|
326
|
-
viewBox:
|
|
420
|
+
viewBox: "0 0 24 24",
|
|
327
421
|
children: [
|
|
328
|
-
{
|
|
329
|
-
|
|
422
|
+
{
|
|
423
|
+
type: "path",
|
|
424
|
+
props: {
|
|
425
|
+
d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",
|
|
426
|
+
},
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
type: "path",
|
|
430
|
+
props: {
|
|
431
|
+
d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",
|
|
432
|
+
},
|
|
433
|
+
},
|
|
330
434
|
],
|
|
331
435
|
});
|
|
332
436
|
export const IconRefresh = createSvgIcon({
|
|
333
|
-
viewBox:
|
|
437
|
+
viewBox: "0 0 24 24",
|
|
334
438
|
children: [
|
|
335
|
-
{ type:
|
|
336
|
-
{ type:
|
|
439
|
+
{ type: "polyline", props: { points: "23 4 23 10 17 10" } },
|
|
440
|
+
{ type: "path", props: { d: "M20.49 15a9 9 0 1 1-2.12-9.36L23 10" } },
|
|
337
441
|
],
|
|
338
442
|
});
|
|
339
443
|
export const IconShield = createSvgIcon({
|
|
340
|
-
viewBox:
|
|
341
|
-
children: {
|
|
444
|
+
viewBox: "0 0 24 24",
|
|
445
|
+
children: {
|
|
446
|
+
type: "path",
|
|
447
|
+
props: { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" },
|
|
448
|
+
},
|
|
342
449
|
});
|
|
343
450
|
export const IconCloud = createSvgIcon({
|
|
344
|
-
viewBox:
|
|
451
|
+
viewBox: "0 0 24 24",
|
|
345
452
|
children: [
|
|
346
|
-
{
|
|
453
|
+
{
|
|
454
|
+
type: "path",
|
|
455
|
+
props: { d: "M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" },
|
|
456
|
+
},
|
|
347
457
|
],
|
|
348
458
|
});
|
|
349
459
|
export const IconDownload = createSvgIcon({
|
|
350
|
-
viewBox:
|
|
460
|
+
viewBox: "0 0 24 24",
|
|
351
461
|
children: [
|
|
352
|
-
{ type:
|
|
353
|
-
{ type:
|
|
354
|
-
{ type:
|
|
462
|
+
{ type: "path", props: { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" } },
|
|
463
|
+
{ type: "polyline", props: { points: "7 10 12 15 17 10" } },
|
|
464
|
+
{ type: "line", props: { x1: 12, y1: 15, x2: 12, y2: 3 } },
|
|
355
465
|
],
|
|
356
466
|
});
|
|
357
467
|
export const IconUpload = createSvgIcon({
|
|
358
|
-
viewBox:
|
|
468
|
+
viewBox: "0 0 24 24",
|
|
359
469
|
children: [
|
|
360
|
-
{ type:
|
|
361
|
-
{ type:
|
|
362
|
-
{ type:
|
|
470
|
+
{ type: "path", props: { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" } },
|
|
471
|
+
{ type: "polyline", props: { points: "17 8 12 3 7 8" } },
|
|
472
|
+
{ type: "line", props: { x1: 12, y1: 3, x2: 12, y2: 15 } },
|
|
363
473
|
],
|
|
364
474
|
});
|
|
365
475
|
export const IconAlertTriangle = createSvgIcon({
|
|
366
|
-
viewBox:
|
|
476
|
+
viewBox: "0 0 24 24",
|
|
367
477
|
children: [
|
|
368
|
-
{
|
|
369
|
-
|
|
370
|
-
|
|
478
|
+
{
|
|
479
|
+
type: "path",
|
|
480
|
+
props: {
|
|
481
|
+
d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z",
|
|
482
|
+
},
|
|
483
|
+
},
|
|
484
|
+
{ type: "line", props: { x1: 12, y1: 9, x2: 12, y2: 13 } },
|
|
485
|
+
{ type: "line", props: { x1: 12, y1: 17, x2: 12.01, y2: 17 } },
|
|
371
486
|
],
|
|
372
487
|
});
|
|
373
488
|
export const IconInfo = createSvgIcon({
|
|
374
|
-
viewBox:
|
|
489
|
+
viewBox: "0 0 24 24",
|
|
375
490
|
children: [
|
|
376
|
-
{ type:
|
|
377
|
-
{ type:
|
|
378
|
-
{ type:
|
|
491
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
492
|
+
{ type: "line", props: { x1: 12, y1: 16, x2: 12, y2: 12 } },
|
|
493
|
+
{ type: "line", props: { x1: 12, y1: 8, x2: 12.01, y2: 8 } },
|
|
379
494
|
],
|
|
380
495
|
});
|
|
381
496
|
export const IconFilter = createSvgIcon({
|
|
382
|
-
viewBox:
|
|
497
|
+
viewBox: "0 0 24 24",
|
|
383
498
|
children: [
|
|
384
|
-
{
|
|
499
|
+
{
|
|
500
|
+
type: "polygon",
|
|
501
|
+
props: { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" },
|
|
502
|
+
},
|
|
385
503
|
],
|
|
386
504
|
});
|
|
387
505
|
export const IconShare = createSvgIcon({
|
|
388
|
-
viewBox:
|
|
506
|
+
viewBox: "0 0 24 24",
|
|
389
507
|
children: [
|
|
390
|
-
{ type:
|
|
391
|
-
{ type:
|
|
392
|
-
{ type:
|
|
393
|
-
{ type:
|
|
394
|
-
{ type:
|
|
508
|
+
{ type: "circle", props: { cx: 18, cy: 5, r: 3 } },
|
|
509
|
+
{ type: "circle", props: { cx: 6, cy: 12, r: 3 } },
|
|
510
|
+
{ type: "circle", props: { cx: 18, cy: 19, r: 3 } },
|
|
511
|
+
{ type: "line", props: { x1: 8.59, y1: 13.51, x2: 15.42, y2: 17.49 } },
|
|
512
|
+
{ type: "line", props: { x1: 15.41, y1: 6.51, x2: 8.59, y2: 10.49 } },
|
|
395
513
|
],
|
|
396
514
|
});
|
|
397
515
|
export const IconBookmark = createSvgIcon({
|
|
398
|
-
viewBox:
|
|
516
|
+
viewBox: "0 0 24 24",
|
|
399
517
|
children: [
|
|
400
|
-
{
|
|
518
|
+
{
|
|
519
|
+
type: "path",
|
|
520
|
+
props: { d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" },
|
|
521
|
+
},
|
|
401
522
|
],
|
|
402
523
|
});
|
|
403
524
|
export const IconTag = createSvgIcon({
|
|
404
|
-
viewBox:
|
|
525
|
+
viewBox: "0 0 24 24",
|
|
405
526
|
children: [
|
|
406
|
-
{
|
|
407
|
-
|
|
527
|
+
{
|
|
528
|
+
type: "path",
|
|
529
|
+
props: {
|
|
530
|
+
d: "M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z",
|
|
531
|
+
},
|
|
532
|
+
},
|
|
533
|
+
{ type: "line", props: { x1: 7, y1: 7, x2: 7.01, y2: 7 } },
|
|
408
534
|
],
|
|
409
535
|
});
|
|
410
536
|
export const IconBell = createSvgIcon({
|
|
411
|
-
viewBox:
|
|
537
|
+
viewBox: "0 0 24 24",
|
|
412
538
|
children: [
|
|
413
|
-
{
|
|
414
|
-
|
|
539
|
+
{
|
|
540
|
+
type: "path",
|
|
541
|
+
props: { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" },
|
|
542
|
+
},
|
|
543
|
+
{ type: "path", props: { d: "M13.73 21a2 2 0 0 1-3.46 0" } },
|
|
415
544
|
],
|
|
416
545
|
});
|
|
417
546
|
export const IconMessageCircle = createSvgIcon({
|
|
418
|
-
viewBox:
|
|
547
|
+
viewBox: "0 0 24 24",
|
|
419
548
|
children: [
|
|
420
|
-
{
|
|
549
|
+
{
|
|
550
|
+
type: "path",
|
|
551
|
+
props: {
|
|
552
|
+
d: "M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z",
|
|
553
|
+
},
|
|
554
|
+
},
|
|
421
555
|
],
|
|
422
556
|
});
|
|
423
557
|
export const IconPhone = createSvgIcon({
|
|
424
|
-
viewBox:
|
|
558
|
+
viewBox: "0 0 24 24",
|
|
425
559
|
children: [
|
|
426
|
-
{
|
|
560
|
+
{
|
|
561
|
+
type: "path",
|
|
562
|
+
props: {
|
|
563
|
+
d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",
|
|
564
|
+
},
|
|
565
|
+
},
|
|
427
566
|
],
|
|
428
567
|
});
|
|
429
568
|
export const IconVideo = createSvgIcon({
|
|
430
|
-
viewBox:
|
|
569
|
+
viewBox: "0 0 24 24",
|
|
431
570
|
children: [
|
|
432
|
-
{ type:
|
|
433
|
-
{
|
|
571
|
+
{ type: "polygon", props: { points: "23 7 16 12 23 17 23 7" } },
|
|
572
|
+
{
|
|
573
|
+
type: "rect",
|
|
574
|
+
props: { x: 1, y: 5, width: 15, height: 14, rx: 2, ry: 2 },
|
|
575
|
+
},
|
|
434
576
|
],
|
|
435
577
|
});
|
|
436
578
|
export const IconMic = createSvgIcon({
|
|
437
|
-
viewBox:
|
|
579
|
+
viewBox: "0 0 24 24",
|
|
438
580
|
children: [
|
|
439
|
-
{
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
581
|
+
{
|
|
582
|
+
type: "path",
|
|
583
|
+
props: { d: "M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z" },
|
|
584
|
+
},
|
|
585
|
+
{ type: "path", props: { d: "M19 10v2a7 7 0 0 1-14 0v-2" } },
|
|
586
|
+
{ type: "line", props: { x1: 12, y1: 19, x2: 12, y2: 23 } },
|
|
587
|
+
{ type: "line", props: { x1: 8, y1: 23, x2: 16, y2: 23 } },
|
|
443
588
|
],
|
|
444
589
|
});
|
|
445
590
|
export const IconVolume = createSvgIcon({
|
|
446
|
-
viewBox:
|
|
591
|
+
viewBox: "0 0 24 24",
|
|
447
592
|
children: [
|
|
448
|
-
{ type:
|
|
449
|
-
{
|
|
593
|
+
{ type: "polygon", props: { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" } },
|
|
594
|
+
{
|
|
595
|
+
type: "path",
|
|
596
|
+
props: {
|
|
597
|
+
d: "M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07",
|
|
598
|
+
},
|
|
599
|
+
},
|
|
450
600
|
],
|
|
451
601
|
});
|
|
452
602
|
export const IconVolumeX = createSvgIcon({
|
|
453
|
-
viewBox:
|
|
603
|
+
viewBox: "0 0 24 24",
|
|
454
604
|
children: [
|
|
455
|
-
{ type:
|
|
456
|
-
{ type:
|
|
457
|
-
{ type:
|
|
605
|
+
{ type: "polygon", props: { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" } },
|
|
606
|
+
{ type: "line", props: { x1: 23, y1: 9, x2: 17, y2: 15 } },
|
|
607
|
+
{ type: "line", props: { x1: 17, y1: 9, x2: 23, y2: 15 } },
|
|
458
608
|
],
|
|
459
609
|
});
|
|
460
610
|
export const IconPower = createSvgIcon({
|
|
461
|
-
viewBox:
|
|
611
|
+
viewBox: "0 0 24 24",
|
|
462
612
|
children: [
|
|
463
|
-
{ type:
|
|
464
|
-
{ type:
|
|
613
|
+
{ type: "path", props: { d: "M18.36 6.64a9 9 0 1 1-12.73 0" } },
|
|
614
|
+
{ type: "line", props: { x1: 12, y1: 2, x2: 12, y2: 12 } },
|
|
465
615
|
],
|
|
466
616
|
});
|
|
467
617
|
export const IconLogOut = createSvgIcon({
|
|
468
|
-
viewBox:
|
|
618
|
+
viewBox: "0 0 24 24",
|
|
469
619
|
children: [
|
|
470
|
-
{ type:
|
|
471
|
-
{ type:
|
|
472
|
-
{ type:
|
|
620
|
+
{ type: "path", props: { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" } },
|
|
621
|
+
{ type: "polyline", props: { points: "16 17 21 12 16 7" } },
|
|
622
|
+
{ type: "line", props: { x1: 21, y1: 12, x2: 9, y2: 12 } },
|
|
473
623
|
],
|
|
474
624
|
});
|
|
475
625
|
export const IconLogIn = createSvgIcon({
|
|
476
|
-
viewBox:
|
|
626
|
+
viewBox: "0 0 24 24",
|
|
477
627
|
children: [
|
|
478
|
-
{ type:
|
|
479
|
-
{ type:
|
|
480
|
-
{ type:
|
|
628
|
+
{ type: "path", props: { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" } },
|
|
629
|
+
{ type: "polyline", props: { points: "10 17 15 12 10 7" } },
|
|
630
|
+
{ type: "line", props: { x1: 15, y1: 12, x2: 3, y2: 12 } },
|
|
481
631
|
],
|
|
482
632
|
});
|
|
483
633
|
export const IconLoader = createSvgIcon({
|
|
484
|
-
viewBox:
|
|
634
|
+
viewBox: "0 0 24 24",
|
|
485
635
|
children: [
|
|
486
|
-
{ type:
|
|
487
|
-
{ type:
|
|
488
|
-
{ type:
|
|
489
|
-
{ type:
|
|
490
|
-
{ type:
|
|
491
|
-
{ type:
|
|
492
|
-
{ type:
|
|
493
|
-
{ type:
|
|
636
|
+
{ type: "line", props: { x1: 12, y1: 2, x2: 12, y2: 6 } },
|
|
637
|
+
{ type: "line", props: { x1: 12, y1: 18, x2: 12, y2: 22 } },
|
|
638
|
+
{ type: "line", props: { x1: 4.93, y1: 4.93, x2: 7.76, y2: 7.76 } },
|
|
639
|
+
{ type: "line", props: { x1: 16.24, y1: 16.24, x2: 19.07, y2: 19.07 } },
|
|
640
|
+
{ type: "line", props: { x1: 2, y1: 12, x2: 6, y2: 12 } },
|
|
641
|
+
{ type: "line", props: { x1: 18, y1: 12, x2: 22, y2: 12 } },
|
|
642
|
+
{ type: "line", props: { x1: 4.93, y1: 19.07, x2: 7.76, y2: 16.24 } },
|
|
643
|
+
{ type: "line", props: { x1: 16.24, y1: 7.76, x2: 19.07, y2: 4.93 } },
|
|
494
644
|
],
|
|
495
645
|
});
|
|
496
646
|
export const IconDatabase = createSvgIcon({
|
|
497
|
-
viewBox:
|
|
647
|
+
viewBox: "0 0 24 24",
|
|
498
648
|
children: [
|
|
499
|
-
{ type:
|
|
500
|
-
{ type:
|
|
501
|
-
{ type:
|
|
649
|
+
{ type: "ellipse", props: { cx: 12, cy: 5, rx: 9, ry: 3 } },
|
|
650
|
+
{ type: "path", props: { d: "M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" } },
|
|
651
|
+
{ type: "path", props: { d: "M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" } },
|
|
502
652
|
],
|
|
503
653
|
});
|
|
504
654
|
export const IconServer = createSvgIcon({
|
|
505
|
-
viewBox:
|
|
655
|
+
viewBox: "0 0 24 24",
|
|
506
656
|
children: [
|
|
507
|
-
{ type:
|
|
508
|
-
{
|
|
509
|
-
|
|
510
|
-
|
|
657
|
+
{ type: "rect", props: { x: 2, y: 2, width: 20, height: 8, rx: 2, ry: 2 } },
|
|
658
|
+
{
|
|
659
|
+
type: "rect",
|
|
660
|
+
props: { x: 2, y: 14, width: 20, height: 8, rx: 2, ry: 2 },
|
|
661
|
+
},
|
|
662
|
+
{ type: "line", props: { x1: 6, y1: 6, x2: 6.01, y2: 6 } },
|
|
663
|
+
{ type: "line", props: { x1: 6, y1: 18, x2: 6.01, y2: 18 } },
|
|
511
664
|
],
|
|
512
665
|
});
|
|
513
666
|
export const IconWifi = createSvgIcon({
|
|
514
|
-
viewBox:
|
|
667
|
+
viewBox: "0 0 24 24",
|
|
515
668
|
children: [
|
|
516
|
-
{ type:
|
|
517
|
-
{ type:
|
|
518
|
-
{ type:
|
|
519
|
-
{ type:
|
|
669
|
+
{ type: "path", props: { d: "M5 12.55a11 11 0 0 1 14.08 0" } },
|
|
670
|
+
{ type: "path", props: { d: "M1.42 9a16 16 0 0 1 21.16 0" } },
|
|
671
|
+
{ type: "path", props: { d: "M8.53 16.11a6 6 0 0 1 6.95 0" } },
|
|
672
|
+
{ type: "line", props: { x1: 12, y1: 20, x2: 12.01, y2: 20 } },
|
|
520
673
|
],
|
|
521
674
|
});
|
|
522
675
|
export const IconBattery = createSvgIcon({
|
|
523
|
-
viewBox:
|
|
676
|
+
viewBox: "0 0 24 24",
|
|
524
677
|
children: [
|
|
525
|
-
{
|
|
526
|
-
|
|
678
|
+
{
|
|
679
|
+
type: "rect",
|
|
680
|
+
props: { x: 1, y: 6, width: 18, height: 12, rx: 2, ry: 2 },
|
|
681
|
+
},
|
|
682
|
+
{ type: "line", props: { x1: 23, y1: 13, x2: 23, y2: 11 } },
|
|
527
683
|
],
|
|
528
684
|
});
|
|
529
685
|
export const IconFlag = createSvgIcon({
|
|
530
|
-
viewBox:
|
|
686
|
+
viewBox: "0 0 24 24",
|
|
531
687
|
children: [
|
|
532
|
-
{
|
|
533
|
-
|
|
688
|
+
{
|
|
689
|
+
type: "path",
|
|
690
|
+
props: { d: "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" },
|
|
691
|
+
},
|
|
692
|
+
{ type: "line", props: { x1: 4, y1: 22, x2: 4, y2: 15 } },
|
|
534
693
|
],
|
|
535
694
|
});
|
|
536
695
|
export const IconEye = createSvgIcon({
|
|
537
|
-
viewBox:
|
|
696
|
+
viewBox: "0 0 24 24",
|
|
538
697
|
children: [
|
|
539
|
-
{
|
|
540
|
-
|
|
698
|
+
{
|
|
699
|
+
type: "path",
|
|
700
|
+
props: { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" },
|
|
701
|
+
},
|
|
702
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 3 } },
|
|
541
703
|
],
|
|
542
704
|
});
|
|
543
705
|
export const IconEyeOff = createSvgIcon({
|
|
544
|
-
viewBox:
|
|
706
|
+
viewBox: "0 0 24 24",
|
|
545
707
|
children: [
|
|
546
|
-
{
|
|
547
|
-
|
|
708
|
+
{
|
|
709
|
+
type: "path",
|
|
710
|
+
props: {
|
|
711
|
+
d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24",
|
|
712
|
+
},
|
|
713
|
+
},
|
|
714
|
+
{ type: "line", props: { x1: 1, y1: 1, x2: 23, y2: 23 } },
|
|
548
715
|
],
|
|
549
716
|
});
|
|
550
717
|
export const IconThumbsUp = createSvgIcon({
|
|
551
|
-
viewBox:
|
|
718
|
+
viewBox: "0 0 24 24",
|
|
552
719
|
children: [
|
|
553
|
-
{
|
|
720
|
+
{
|
|
721
|
+
type: "path",
|
|
722
|
+
props: {
|
|
723
|
+
d: "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3",
|
|
724
|
+
},
|
|
725
|
+
},
|
|
554
726
|
],
|
|
555
727
|
});
|
|
556
728
|
export const IconThumbsDown = createSvgIcon({
|
|
557
|
-
viewBox:
|
|
729
|
+
viewBox: "0 0 24 24",
|
|
558
730
|
children: [
|
|
559
|
-
{
|
|
731
|
+
{
|
|
732
|
+
type: "path",
|
|
733
|
+
props: {
|
|
734
|
+
d: "M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17",
|
|
735
|
+
},
|
|
736
|
+
},
|
|
560
737
|
],
|
|
561
738
|
});
|
|
562
739
|
export const IconClipboard = createSvgIcon({
|
|
563
|
-
viewBox:
|
|
740
|
+
viewBox: "0 0 24 24",
|
|
564
741
|
children: [
|
|
565
|
-
{
|
|
566
|
-
|
|
742
|
+
{
|
|
743
|
+
type: "path",
|
|
744
|
+
props: {
|
|
745
|
+
d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",
|
|
746
|
+
},
|
|
747
|
+
},
|
|
748
|
+
{ type: "rect", props: { x: 8, y: 2, width: 8, height: 4, rx: 1, ry: 1 } },
|
|
567
749
|
],
|
|
568
750
|
});
|
|
569
751
|
export const IconMaximize = createSvgIcon({
|
|
570
|
-
viewBox:
|
|
752
|
+
viewBox: "0 0 24 24",
|
|
571
753
|
children: [
|
|
572
|
-
{
|
|
754
|
+
{
|
|
755
|
+
type: "path",
|
|
756
|
+
props: {
|
|
757
|
+
d: "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3",
|
|
758
|
+
},
|
|
759
|
+
},
|
|
573
760
|
],
|
|
574
761
|
});
|
|
575
762
|
export const IconMinimize = createSvgIcon({
|
|
576
|
-
viewBox:
|
|
763
|
+
viewBox: "0 0 24 24",
|
|
577
764
|
children: [
|
|
578
|
-
{
|
|
765
|
+
{
|
|
766
|
+
type: "path",
|
|
767
|
+
props: {
|
|
768
|
+
d: "M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3",
|
|
769
|
+
},
|
|
770
|
+
},
|
|
579
771
|
],
|
|
580
772
|
});
|
|
581
773
|
export const IconMoreHorizontal = createSvgIcon({
|
|
582
|
-
viewBox:
|
|
774
|
+
viewBox: "0 0 24 24",
|
|
583
775
|
children: [
|
|
584
|
-
{ type:
|
|
585
|
-
{ type:
|
|
586
|
-
{ type:
|
|
776
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 1 } },
|
|
777
|
+
{ type: "circle", props: { cx: 19, cy: 12, r: 1 } },
|
|
778
|
+
{ type: "circle", props: { cx: 5, cy: 12, r: 1 } },
|
|
587
779
|
],
|
|
588
780
|
});
|
|
589
781
|
export const IconMoreVertical = createSvgIcon({
|
|
590
|
-
viewBox:
|
|
782
|
+
viewBox: "0 0 24 24",
|
|
591
783
|
children: [
|
|
592
|
-
{ type:
|
|
593
|
-
{ type:
|
|
594
|
-
{ type:
|
|
784
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 1 } },
|
|
785
|
+
{ type: "circle", props: { cx: 12, cy: 5, r: 1 } },
|
|
786
|
+
{ type: "circle", props: { cx: 12, cy: 19, r: 1 } },
|
|
595
787
|
],
|
|
596
788
|
});
|
|
597
789
|
export const IconPieChart = createSvgIcon({
|
|
598
|
-
viewBox:
|
|
790
|
+
viewBox: "0 0 24 24",
|
|
599
791
|
children: [
|
|
600
|
-
{ type:
|
|
601
|
-
{ type:
|
|
792
|
+
{ type: "path", props: { d: "M21.21 15.89A10 10 0 1 1 8 2.83" } },
|
|
793
|
+
{ type: "path", props: { d: "M22 12A10 10 0 0 0 12 2v10z" } },
|
|
602
794
|
],
|
|
603
795
|
});
|
|
604
796
|
export const IconBarChart = createSvgIcon({
|
|
605
|
-
viewBox:
|
|
797
|
+
viewBox: "0 0 24 24",
|
|
606
798
|
children: [
|
|
607
|
-
{ type:
|
|
608
|
-
{ type:
|
|
609
|
-
{ type:
|
|
799
|
+
{ type: "line", props: { x1: 12, y1: 20, x2: 12, y2: 10 } },
|
|
800
|
+
{ type: "line", props: { x1: 18, y1: 20, x2: 18, y2: 4 } },
|
|
801
|
+
{ type: "line", props: { x1: 6, y1: 20, x2: 6, y2: 16 } },
|
|
610
802
|
],
|
|
611
803
|
});
|
|
612
804
|
export const IconActivity = createSvgIcon({
|
|
613
|
-
viewBox:
|
|
805
|
+
viewBox: "0 0 24 24",
|
|
614
806
|
children: [
|
|
615
|
-
{ type:
|
|
807
|
+
{ type: "polyline", props: { points: "22 12 18 12 15 21 9 3 6 12 2 12" } },
|
|
616
808
|
],
|
|
617
809
|
});
|
|
618
810
|
export const IconAward = createSvgIcon({
|
|
619
|
-
viewBox:
|
|
811
|
+
viewBox: "0 0 24 24",
|
|
620
812
|
children: [
|
|
621
|
-
{ type:
|
|
622
|
-
{
|
|
813
|
+
{ type: "circle", props: { cx: 12, cy: 8, r: 7 } },
|
|
814
|
+
{
|
|
815
|
+
type: "polyline",
|
|
816
|
+
props: { points: "8.21 13.89 7 23 12 20 17 23 15.79 13.88" },
|
|
817
|
+
},
|
|
623
818
|
],
|
|
624
819
|
});
|
|
625
820
|
export const IconCompass = createSvgIcon({
|
|
626
|
-
viewBox:
|
|
821
|
+
viewBox: "0 0 24 24",
|
|
627
822
|
children: [
|
|
628
|
-
{ type:
|
|
629
|
-
{
|
|
823
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
824
|
+
{
|
|
825
|
+
type: "polygon",
|
|
826
|
+
props: {
|
|
827
|
+
points: "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76",
|
|
828
|
+
},
|
|
829
|
+
},
|
|
630
830
|
],
|
|
631
831
|
});
|
|
632
832
|
export const IconHash = createSvgIcon({
|
|
633
|
-
viewBox:
|
|
833
|
+
viewBox: "0 0 24 24",
|
|
634
834
|
children: [
|
|
635
|
-
{ type:
|
|
636
|
-
{ type:
|
|
637
|
-
{ type:
|
|
638
|
-
{ type:
|
|
835
|
+
{ type: "line", props: { x1: 4, y1: 9, x2: 20, y2: 9 } },
|
|
836
|
+
{ type: "line", props: { x1: 4, y1: 15, x2: 20, y2: 15 } },
|
|
837
|
+
{ type: "line", props: { x1: 10, y1: 3, x2: 8, y2: 21 } },
|
|
838
|
+
{ type: "line", props: { x1: 16, y1: 3, x2: 14, y2: 21 } },
|
|
639
839
|
],
|
|
640
840
|
});
|
|
641
841
|
export const IconAtSign = createSvgIcon({
|
|
642
|
-
viewBox:
|
|
842
|
+
viewBox: "0 0 24 24",
|
|
643
843
|
children: [
|
|
644
|
-
{ type:
|
|
645
|
-
{
|
|
844
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 4 } },
|
|
845
|
+
{
|
|
846
|
+
type: "path",
|
|
847
|
+
props: { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" },
|
|
848
|
+
},
|
|
646
849
|
],
|
|
647
850
|
});
|
|
648
851
|
export const IconSend = createSvgIcon({
|
|
649
|
-
viewBox:
|
|
852
|
+
viewBox: "0 0 24 24",
|
|
650
853
|
children: [
|
|
651
|
-
{ type:
|
|
652
|
-
{ type:
|
|
854
|
+
{ type: "line", props: { x1: 22, y1: 2, x2: 11, y2: 13 } },
|
|
855
|
+
{ type: "polygon", props: { points: "22 2 15 22 11 13 2 9 22 2" } },
|
|
653
856
|
],
|
|
654
857
|
});
|
|
655
858
|
export const IconInbox = createSvgIcon({
|
|
656
|
-
viewBox:
|
|
859
|
+
viewBox: "0 0 24 24",
|
|
657
860
|
children: [
|
|
658
|
-
{
|
|
659
|
-
|
|
861
|
+
{
|
|
862
|
+
type: "polyline",
|
|
863
|
+
props: { points: "22 12 16 12 14 15 10 15 8 12 2 12" },
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
type: "path",
|
|
867
|
+
props: {
|
|
868
|
+
d: "M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",
|
|
869
|
+
},
|
|
870
|
+
},
|
|
660
871
|
],
|
|
661
872
|
});
|
|
662
873
|
export const IconArchive = createSvgIcon({
|
|
663
|
-
viewBox:
|
|
874
|
+
viewBox: "0 0 24 24",
|
|
664
875
|
children: [
|
|
665
|
-
{ type:
|
|
666
|
-
{ type:
|
|
667
|
-
{ type:
|
|
876
|
+
{ type: "polyline", props: { points: "21 8 21 21 3 21 3 8" } },
|
|
877
|
+
{ type: "rect", props: { x: 1, y: 3, width: 22, height: 5 } },
|
|
878
|
+
{ type: "line", props: { x1: 10, y1: 12, x2: 14, y2: 12 } },
|
|
668
879
|
],
|
|
669
880
|
});
|
|
670
881
|
export const IconTrash2 = createSvgIcon({
|
|
671
|
-
viewBox:
|
|
882
|
+
viewBox: "0 0 24 24",
|
|
672
883
|
children: [
|
|
673
|
-
{ type:
|
|
674
|
-
{
|
|
675
|
-
|
|
676
|
-
|
|
884
|
+
{ type: "polyline", props: { points: "3 6 5 6 21 6" } },
|
|
885
|
+
{
|
|
886
|
+
type: "path",
|
|
887
|
+
props: {
|
|
888
|
+
d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",
|
|
889
|
+
},
|
|
890
|
+
},
|
|
891
|
+
{ type: "line", props: { x1: 10, y1: 11, x2: 10, y2: 17 } },
|
|
892
|
+
{ type: "line", props: { x1: 14, y1: 11, x2: 14, y2: 17 } },
|
|
677
893
|
],
|
|
678
894
|
});
|
|
679
895
|
export const IconScissors = createSvgIcon({
|
|
680
|
-
viewBox:
|
|
896
|
+
viewBox: "0 0 24 24",
|
|
681
897
|
children: [
|
|
682
|
-
{ type:
|
|
683
|
-
{ type:
|
|
684
|
-
{ type:
|
|
685
|
-
{ type:
|
|
686
|
-
{ type:
|
|
898
|
+
{ type: "circle", props: { cx: 6, cy: 6, r: 3 } },
|
|
899
|
+
{ type: "circle", props: { cx: 6, cy: 18, r: 3 } },
|
|
900
|
+
{ type: "line", props: { x1: 20, y1: 4, x2: 8.12, y2: 15.88 } },
|
|
901
|
+
{ type: "line", props: { x1: 14.47, y1: 14.48, x2: 20, y2: 20 } },
|
|
902
|
+
{ type: "line", props: { x1: 8.12, y1: 8.12, x2: 12, y2: 12 } },
|
|
687
903
|
],
|
|
688
904
|
});
|
|
689
905
|
export const IconCheckCircle = createSvgIcon({
|
|
690
|
-
viewBox:
|
|
906
|
+
viewBox: "0 0 24 24",
|
|
691
907
|
children: [
|
|
692
|
-
{ type:
|
|
693
|
-
{ type:
|
|
908
|
+
{ type: "path", props: { d: "M22 11.08V12a10 10 0 1 1-5.93-9.14" } },
|
|
909
|
+
{ type: "polyline", props: { points: "22 4 12 14.01 9 11.01" } },
|
|
694
910
|
],
|
|
695
911
|
});
|
|
696
912
|
export const IconXCircle = createSvgIcon({
|
|
697
|
-
viewBox:
|
|
913
|
+
viewBox: "0 0 24 24",
|
|
698
914
|
children: [
|
|
699
|
-
{ type:
|
|
700
|
-
{ type:
|
|
701
|
-
{ type:
|
|
915
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
916
|
+
{ type: "line", props: { x1: 15, y1: 9, x2: 9, y2: 15 } },
|
|
917
|
+
{ type: "line", props: { x1: 9, y1: 9, x2: 15, y2: 15 } },
|
|
702
918
|
],
|
|
703
919
|
});
|
|
704
920
|
export const IconHelpCircle = createSvgIcon({
|
|
705
|
-
viewBox:
|
|
921
|
+
viewBox: "0 0 24 24",
|
|
706
922
|
children: [
|
|
707
|
-
{ type:
|
|
708
|
-
{ type:
|
|
709
|
-
{ type:
|
|
923
|
+
{ type: "circle", props: { cx: 12, cy: 12, r: 10 } },
|
|
924
|
+
{ type: "path", props: { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" } },
|
|
925
|
+
{ type: "line", props: { x1: 12, y1: 17, x2: 12.01, y2: 17 } },
|
|
710
926
|
],
|
|
711
927
|
});
|
|
712
928
|
export const IconXTwitter = createSvgIcon({
|
|
713
|
-
viewBox:
|
|
714
|
-
fill:
|
|
929
|
+
viewBox: "0 0 24 24",
|
|
930
|
+
fill: "currentColor",
|
|
715
931
|
stroke: false,
|
|
716
932
|
children: {
|
|
717
|
-
type:
|
|
933
|
+
type: "path",
|
|
718
934
|
props: {
|
|
719
|
-
d:
|
|
935
|
+
d: "M14.234 10.162 22.977 0h-2.072l-7.591 8.824L7.251 0H.258l9.168 13.343L.258 24H2.33l8.016-9.318L16.749 24h6.993zm-2.837 3.299-.929-1.329L3.076 1.56h3.182l5.965 8.532.929 1.329 7.754 11.09h-3.182z",
|
|
720
936
|
},
|
|
721
937
|
},
|
|
722
938
|
});
|
|
723
939
|
export const IconLinkedIn = createSvgIcon({
|
|
724
|
-
viewBox:
|
|
725
|
-
fill:
|
|
940
|
+
viewBox: "0 0 24 24",
|
|
941
|
+
fill: "currentColor",
|
|
726
942
|
stroke: false,
|
|
727
943
|
children: {
|
|
728
|
-
type:
|
|
944
|
+
type: "path",
|
|
729
945
|
props: {
|
|
730
|
-
d:
|
|
946
|
+
d: "M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z",
|
|
731
947
|
},
|
|
732
948
|
},
|
|
733
949
|
});
|
|
734
950
|
export const IconFacebook = createSvgIcon({
|
|
735
|
-
viewBox:
|
|
736
|
-
fill:
|
|
951
|
+
viewBox: "0 0 24 24",
|
|
952
|
+
fill: "currentColor",
|
|
737
953
|
stroke: false,
|
|
738
954
|
children: {
|
|
739
|
-
type:
|
|
955
|
+
type: "path",
|
|
740
956
|
props: {
|
|
741
|
-
d:
|
|
957
|
+
d: "M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z",
|
|
742
958
|
},
|
|
743
959
|
},
|
|
744
960
|
});
|
|
745
961
|
export const IconInstagram = createSvgIcon({
|
|
746
|
-
viewBox:
|
|
747
|
-
fill:
|
|
962
|
+
viewBox: "0 0 24 24",
|
|
963
|
+
fill: "currentColor",
|
|
748
964
|
stroke: false,
|
|
749
965
|
children: {
|
|
750
|
-
type:
|
|
966
|
+
type: "path",
|
|
751
967
|
props: {
|
|
752
|
-
d:
|
|
968
|
+
d: "M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z",
|
|
753
969
|
},
|
|
754
970
|
},
|
|
755
971
|
});
|
|
756
972
|
export const IconYoutube = createSvgIcon({
|
|
757
|
-
viewBox:
|
|
758
|
-
fill:
|
|
973
|
+
viewBox: "0 0 24 24",
|
|
974
|
+
fill: "currentColor",
|
|
759
975
|
stroke: false,
|
|
760
976
|
children: {
|
|
761
|
-
type:
|
|
977
|
+
type: "path",
|
|
762
978
|
props: {
|
|
763
|
-
d:
|
|
979
|
+
d: "M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z",
|
|
764
980
|
},
|
|
765
981
|
},
|
|
766
982
|
});
|
|
767
983
|
export const IconDiscord = createSvgIcon({
|
|
768
|
-
viewBox:
|
|
769
|
-
fill:
|
|
984
|
+
viewBox: "0 0 24 24",
|
|
985
|
+
fill: "currentColor",
|
|
770
986
|
stroke: false,
|
|
771
987
|
children: {
|
|
772
|
-
type:
|
|
988
|
+
type: "path",
|
|
773
989
|
props: {
|
|
774
|
-
d:
|
|
990
|
+
d: "M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z",
|
|
775
991
|
},
|
|
776
992
|
},
|
|
777
993
|
});
|
|
778
994
|
export const IconReddit = createSvgIcon({
|
|
779
|
-
viewBox:
|
|
780
|
-
fill:
|
|
995
|
+
viewBox: "0 0 24 24",
|
|
996
|
+
fill: "currentColor",
|
|
781
997
|
stroke: false,
|
|
782
998
|
children: {
|
|
783
|
-
type:
|
|
999
|
+
type: "path",
|
|
784
1000
|
props: {
|
|
785
|
-
d:
|
|
1001
|
+
d: "M12 0C5.373 0 0 5.373 0 12c0 3.314 1.343 6.314 3.515 8.485l-2.286 2.286C.775 23.225 1.097 24 1.738 24H12c6.627 0 12-5.373 12-12S18.627 0 12 0Zm4.388 3.199c1.104 0 1.999.895 1.999 1.999 0 1.105-.895 2-1.999 2-.946 0-1.739-.657-1.947-1.539v.002c-1.147.162-2.032 1.15-2.032 2.341v.007c1.776.067 3.4.567 4.686 1.363.473-.363 1.064-.58 1.707-.58 1.547 0 2.802 1.254 2.802 2.802 0 1.117-.655 2.081-1.601 2.531-.088 3.256-3.637 5.876-7.997 5.876-4.361 0-7.905-2.617-7.998-5.87-.954-.447-1.614-1.415-1.614-2.538 0-1.548 1.255-2.802 2.803-2.802.645 0 1.239.218 1.712.585 1.275-.79 2.881-1.291 4.64-1.365v-.01c0-1.663 1.263-3.034 2.88-3.207.188-.911.993-1.595 1.959-1.595Zm-8.085 8.376c-.784 0-1.459.78-1.506 1.797-.047 1.016.64 1.429 1.426 1.429.786 0 1.371-.369 1.418-1.385.047-1.017-.553-1.841-1.338-1.841Zm7.406 0c-.786 0-1.385.824-1.338 1.841.047 1.017.634 1.385 1.418 1.385.785 0 1.473-.413 1.426-1.429-.046-1.017-.721-1.797-1.506-1.797Zm-3.703 4.013c-.974 0-1.907.048-2.77.135-.147.015-.241.168-.183.305.483 1.154 1.622 1.964 2.953 1.964 1.33 0 2.47-.81 2.953-1.964.057-.137-.037-.29-.184-.305-.863-.087-1.795-.135-2.769-.135Z",
|
|
786
1002
|
},
|
|
787
1003
|
},
|
|
788
1004
|
});
|
|
789
1005
|
export const IconTwitch = createSvgIcon({
|
|
790
|
-
viewBox:
|
|
791
|
-
fill:
|
|
1006
|
+
viewBox: "0 0 24 24",
|
|
1007
|
+
fill: "currentColor",
|
|
792
1008
|
stroke: false,
|
|
793
1009
|
children: {
|
|
794
|
-
type:
|
|
1010
|
+
type: "path",
|
|
795
1011
|
props: {
|
|
796
|
-
d:
|
|
1012
|
+
d: "M11.571 4.714h1.715v5.143H11.57zm4.715 0H18v5.143h-1.714zM6 0L1.714 4.286v15.428h5.143V24l4.286-4.286h3.428L22.286 12V0zm14.571 11.143l-3.428 3.428h-3.429l-3 3v-3H6.857V1.714h13.714Z",
|
|
797
1013
|
},
|
|
798
1014
|
},
|
|
799
1015
|
});
|
|
800
1016
|
export const IconSlack = createSvgIcon({
|
|
801
|
-
viewBox:
|
|
802
|
-
fill:
|
|
1017
|
+
viewBox: "0 0 24 24",
|
|
1018
|
+
fill: "currentColor",
|
|
803
1019
|
stroke: false,
|
|
804
1020
|
children: {
|
|
805
|
-
type:
|
|
1021
|
+
type: "path",
|
|
806
1022
|
props: {
|
|
807
|
-
d:
|
|
1023
|
+
d: "M5.042 15.165a2.53 2.53 0 0 1-2.52 2.523A2.53 2.53 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52zm1.271 0a2.527 2.527 0 0 1 2.521-2.52a2.527 2.527 0 0 1 2.521 2.52v6.313A2.53 2.53 0 0 1 8.834 24a2.53 2.53 0 0 1-2.521-2.522zM8.834 5.042a2.53 2.53 0 0 1-2.521-2.52A2.53 2.53 0 0 1 8.834 0a2.53 2.53 0 0 1 2.521 2.522v2.52zm0 1.271a2.53 2.53 0 0 1 2.521 2.521a2.53 2.53 0 0 1-2.521 2.521H2.522A2.53 2.53 0 0 1 0 8.834a2.53 2.53 0 0 1 2.522-2.521zm10.122 2.521a2.53 2.53 0 0 1 2.522-2.521A2.53 2.53 0 0 1 24 8.834a2.53 2.53 0 0 1-2.522 2.521h-2.522zm-1.268 0a2.53 2.53 0 0 1-2.523 2.521a2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.53 2.53 0 0 1 2.523 2.522zm-2.523 10.122a2.53 2.53 0 0 1 2.523 2.522A2.53 2.53 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522zm0-1.268a2.527 2.527 0 0 1-2.52-2.523a2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.53 2.53 0 0 1-2.522 2.523z",
|
|
808
1024
|
},
|
|
809
1025
|
},
|
|
810
1026
|
});
|
|
811
1027
|
export const IconTikTok = createSvgIcon({
|
|
812
|
-
viewBox:
|
|
813
|
-
fill:
|
|
1028
|
+
viewBox: "0 0 24 24",
|
|
1029
|
+
fill: "currentColor",
|
|
814
1030
|
stroke: false,
|
|
815
1031
|
children: {
|
|
816
|
-
type:
|
|
1032
|
+
type: "path",
|
|
817
1033
|
props: {
|
|
818
|
-
d:
|
|
1034
|
+
d: "M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z",
|
|
819
1035
|
},
|
|
820
1036
|
},
|
|
821
1037
|
});
|
|
822
1038
|
export const IconWhatsApp = createSvgIcon({
|
|
823
|
-
viewBox:
|
|
824
|
-
fill:
|
|
1039
|
+
viewBox: "0 0 24 24",
|
|
1040
|
+
fill: "currentColor",
|
|
825
1041
|
stroke: false,
|
|
826
1042
|
children: {
|
|
827
|
-
type:
|
|
1043
|
+
type: "path",
|
|
828
1044
|
props: {
|
|
829
|
-
d:
|
|
1045
|
+
d: "M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z",
|
|
830
1046
|
},
|
|
831
1047
|
},
|
|
832
1048
|
});
|
|
833
1049
|
export const IconDribbble = createSvgIcon({
|
|
834
|
-
viewBox:
|
|
835
|
-
fill:
|
|
1050
|
+
viewBox: "0 0 24 24",
|
|
1051
|
+
fill: "currentColor",
|
|
836
1052
|
stroke: false,
|
|
837
1053
|
children: {
|
|
838
|
-
type:
|
|
1054
|
+
type: "path",
|
|
839
1055
|
props: {
|
|
840
|
-
d:
|
|
1056
|
+
d: "M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308 2.3-1.555 3.936-4.02 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4 1.73 1.358 3.92 2.166 6.29 2.166 1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248-1.698-3.018-3.53-5.558-3.8-5.928-2.868 1.35-5.01 3.99-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702-1.81-1.61-4.19-2.586-6.795-2.586-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z",
|
|
841
1057
|
},
|
|
842
1058
|
},
|
|
843
1059
|
});
|
|
844
1060
|
export const IconBehance = createSvgIcon({
|
|
845
|
-
viewBox:
|
|
846
|
-
fill:
|
|
1061
|
+
viewBox: "0 0 24 24",
|
|
1062
|
+
fill: "currentColor",
|
|
847
1063
|
stroke: false,
|
|
848
1064
|
children: {
|
|
849
|
-
type:
|
|
1065
|
+
type: "path",
|
|
850
1066
|
props: {
|
|
851
|
-
d:
|
|
1067
|
+
d: "M16.969 16.927a2.561 2.561 0 0 0 1.901.677 2.501 2.501 0 0 0 1.531-.475c.362-.235.636-.584.779-.99h2.585a5.091 5.091 0 0 1-1.9 2.896 5.292 5.292 0 0 1-3.091.88 5.839 5.839 0 0 1-2.284-.433 4.871 4.871 0 0 1-1.723-1.211 5.657 5.657 0 0 1-1.08-1.874 7.057 7.057 0 0 1-.383-2.393c-.005-.8.129-1.595.396-2.349a5.313 5.313 0 0 1 5.088-3.604 4.87 4.87 0 0 1 2.376.563c.661.362 1.231.87 1.668 1.485a6.2 6.2 0 0 1 .943 2.133c.194.821.263 1.666.205 2.508h-7.699c-.063.79.184 1.574.688 2.187ZM6.947 4.084a8.065 8.065 0 0 1 1.928.198 4.29 4.29 0 0 1 1.49.638c.418.303.748.711.958 1.182.241.579.357 1.203.341 1.83a3.506 3.506 0 0 1-.506 1.961 3.726 3.726 0 0 1-1.503 1.287 3.588 3.588 0 0 1 2.027 1.437c.464.747.697 1.615.67 2.494a4.593 4.593 0 0 1-.423 2.032 3.945 3.945 0 0 1-1.163 1.413 5.114 5.114 0 0 1-1.683.807 7.135 7.135 0 0 1-1.928.259H0V4.084h6.947Zm-.235 12.9c.308.004.616-.029.916-.099a2.18 2.18 0 0 0 .766-.332c.228-.158.411-.371.534-.619.142-.317.208-.663.191-1.009a2.08 2.08 0 0 0-.642-1.715 2.618 2.618 0 0 0-1.696-.505h-3.54v4.279h3.471Zm13.635-5.967a2.13 2.13 0 0 0-1.654-.619 2.336 2.336 0 0 0-1.163.259 2.474 2.474 0 0 0-.738.62 2.359 2.359 0 0 0-.396.792c-.074.239-.12.485-.137.734h4.769a3.239 3.239 0 0 0-.679-1.785l-.002-.001Zm-13.813-.648a2.254 2.254 0 0 0 1.423-.433c.399-.355.607-.88.56-1.413a1.916 1.916 0 0 0-.178-.891 1.298 1.298 0 0 0-.495-.533 1.851 1.851 0 0 0-.711-.274 3.966 3.966 0 0 0-.835-.073H3.241v3.631h3.293v-.014ZM21.62 5.122h-5.976v1.527h5.976V5.122Z",
|
|
852
1068
|
},
|
|
853
1069
|
},
|
|
854
1070
|
});
|
|
855
1071
|
export const IconPinterest = createSvgIcon({
|
|
856
|
-
viewBox:
|
|
857
|
-
fill:
|
|
1072
|
+
viewBox: "0 0 24 24",
|
|
1073
|
+
fill: "currentColor",
|
|
858
1074
|
stroke: false,
|
|
859
1075
|
children: {
|
|
860
|
-
type:
|
|
1076
|
+
type: "path",
|
|
861
1077
|
props: {
|
|
862
|
-
d:
|
|
1078
|
+
d: "M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z",
|
|
863
1079
|
},
|
|
864
1080
|
},
|
|
865
1081
|
});
|
|
866
1082
|
export const IconAstro = createSvgIcon({
|
|
867
|
-
viewBox:
|
|
868
|
-
fill:
|
|
1083
|
+
viewBox: "0 0 24 24",
|
|
1084
|
+
fill: "currentColor",
|
|
869
1085
|
stroke: false,
|
|
870
1086
|
children: {
|
|
871
|
-
type:
|
|
1087
|
+
type: "path",
|
|
872
1088
|
props: {
|
|
873
|
-
d:
|
|
1089
|
+
d: "M8.358 20.162c-1.186-1.07-1.532-3.316-1.038-4.944.856 1.026 2.043 1.352 3.272 1.535 1.897.283 3.76.177 5.522-.678.202-.098.388-.229.608-.36.166.473.209.95.151 1.437-.14 1.185-.738 2.1-1.688 2.794-.38.277-.782.525-1.175.787-1.205.804-1.531 1.747-1.078 3.119l.044.148a3.158 3.158 0 0 1-1.407-1.188 3.31 3.31 0 0 1-.544-1.815c-.004-.32-.004-.642-.048-.958-.106-.769-.472-1.113-1.161-1.133-.707-.02-1.267.411-1.415 1.09-.012.053-.028.104-.045.165h.002zm-5.961-4.445s3.24-1.575 6.49-1.575l2.451-7.565c.092-.366.36-.614.662-.614.302 0 .57.248.662.614l2.45 7.565c3.85 0 6.491 1.575 6.491 1.575L16.088.727C15.93.285 15.663 0 15.303 0H8.697c-.36 0-.615.285-.784.727l-5.516 14.99z",
|
|
874
1090
|
},
|
|
875
1091
|
},
|
|
876
1092
|
});
|
|
877
1093
|
export const IconVue = createSvgIcon({
|
|
878
|
-
viewBox:
|
|
879
|
-
fill:
|
|
1094
|
+
viewBox: "0 0 24 24",
|
|
1095
|
+
fill: "currentColor",
|
|
880
1096
|
stroke: false,
|
|
881
1097
|
children: {
|
|
882
|
-
type:
|
|
1098
|
+
type: "path",
|
|
883
1099
|
props: {
|
|
884
|
-
d:
|
|
1100
|
+
d: "M24,1.61H14.06L12,5.16,9.94,1.61H0L12,22.39ZM12,14.08,5.16,2.23H9.59L12,6.41l2.41-4.18h4.43Z",
|
|
885
1101
|
},
|
|
886
1102
|
},
|
|
887
1103
|
});
|
|
888
1104
|
export const IconAngular = createSvgIcon({
|
|
889
|
-
viewBox:
|
|
890
|
-
fill:
|
|
1105
|
+
viewBox: "0 0 24 24",
|
|
1106
|
+
fill: "currentColor",
|
|
891
1107
|
stroke: false,
|
|
892
1108
|
children: {
|
|
893
|
-
type:
|
|
1109
|
+
type: "path",
|
|
894
1110
|
props: {
|
|
895
|
-
d:
|
|
1111
|
+
d: "M16.712 17.711H7.288l-1.204 2.916L12 24l5.916-3.373-1.204-2.916ZM14.692 0l7.832 16.855.814-12.856L14.692 0ZM9.308 0 .662 3.999l.814 12.856L9.308 0Zm-.405 13.93h6.198L12 6.396 8.903 13.93Z",
|
|
896
1112
|
},
|
|
897
1113
|
},
|
|
898
1114
|
});
|
|
899
1115
|
export const IconReact = createSvgIcon({
|
|
900
|
-
viewBox:
|
|
901
|
-
fill:
|
|
1116
|
+
viewBox: "0 0 24 24",
|
|
1117
|
+
fill: "currentColor",
|
|
902
1118
|
stroke: false,
|
|
903
1119
|
children: {
|
|
904
|
-
type:
|
|
1120
|
+
type: "path",
|
|
905
1121
|
props: {
|
|
906
|
-
d:
|
|
1122
|
+
d: "M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z",
|
|
907
1123
|
},
|
|
908
1124
|
},
|
|
909
1125
|
});
|
|
910
1126
|
export const IconSvelte = createSvgIcon({
|
|
911
|
-
viewBox:
|
|
912
|
-
fill:
|
|
1127
|
+
viewBox: "0 0 24 24",
|
|
1128
|
+
fill: "currentColor",
|
|
913
1129
|
stroke: false,
|
|
914
1130
|
children: {
|
|
915
|
-
type:
|
|
1131
|
+
type: "path",
|
|
916
1132
|
props: {
|
|
917
|
-
d:
|
|
1133
|
+
d: "M23.485 1.455a1.75 1.75 0 0 0-2.475 0l-3.07 3.07c-.684-.44-1.454-.744-2.28-.876l-.478-1.587a1.75 1.75 0 0 0-3.324.228L11.22 5.89a10.29 10.29 0 0 0-3.15 0L6.91 4.286a1.75 1.75 0 0 0-3.324-.228l-.478 1.587c-.826.132-1.596.436-2.28.876L-.233 1.455a1.75 1.75 0 0 0-2.475 0L-.233 1.455c-.68.68-1.033 1.585-1.033 2.54v5.565c0 2.07 1.198 3.97 3.076 4.864l-.002.001-.732.627a1.75 1.75 0 0 0-.004 2.665l3.07 3.07a1.75 1.75 0 0 0 2.475 0l3.07-3.07c.684.44 1.454.744 2.28.876l.478 1.587a1.75 1.75 0 0 0 3.324-.228l.805-2.605a10.29 10.29 0 0 0 3.15 0l.805 2.605a1.75 1.75 0 0 0 3.324.228l.478-1.587c.826-.132 1.596-.436 2.28-.876l3.07 3.07a1.75 1.75 0 0 0 2.475 0l3.07-3.07a1.75 1.75 0 0 0 .004-2.665l-.732-.627c1.878-.894 3.076-2.794 3.076-4.864V4c0-.955-.353-1.86-1.033-2.54l-.13-.13zM12 15.5a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z",
|
|
918
1134
|
},
|
|
919
1135
|
},
|
|
920
1136
|
});
|
|
921
1137
|
export const IconNodeJs = createSvgIcon({
|
|
922
|
-
viewBox:
|
|
923
|
-
fill:
|
|
1138
|
+
viewBox: "0 0 24 24",
|
|
1139
|
+
fill: "currentColor",
|
|
924
1140
|
stroke: false,
|
|
925
1141
|
children: {
|
|
926
|
-
type:
|
|
1142
|
+
type: "path",
|
|
927
1143
|
props: {
|
|
928
|
-
d:
|
|
1144
|
+
d: "M11.998,24c-0.321,0-0.641-0.084-0.922-0.247l-2.936-1.737c-0.438-0.245-0.224-0.332-0.08-0.383 c0.585-0.203,0.703-0.25,1.328-0.604c0.065-0.037,0.151-0.023,0.218,0.017l2.256,1.339c0.082,0.045,0.197,0.045,0.272,0l8.795-5.076 c0.082-0.047,0.134-0.141,0.134-0.238V6.921c0-0.099-0.053-0.192-0.137-0.242l-8.791-5.072c-0.081-0.047-0.189-0.047-0.271,0 L3.075,6.68C2.99,6.729,2.936,6.825,2.936,6.921v10.15c0,0.097,0.054,0.189,0.139,0.235l2.409,1.392 c1.307,0.654,2.108-0.116,2.108-0.89V7.787c0-0.142,0.114-0.253,0.256-0.253h1.115c0.139,0,0.255,0.112,0.255,0.253v10.021 c0,1.745-0.95,2.745-2.604,2.745c-0.508,0-0.909,0-2.026-0.551L2.28,18.675c-0.57-0.329-0.922-0.945-0.922-1.604V6.921 c0-0.659,0.353-1.275,0.922-1.603l8.795-5.082c0.557-0.315,1.296-0.315,1.848,0l8.794,5.082c0.57,0.329,0.924,0.944,0.924,1.603 v10.15c0,0.659-0.354,1.273-0.924,1.604l-8.794,5.078C12.643,23.916,12.324,24,11.998,24z M19.099,13.993 c0-1.9-1.284-2.406-3.987-2.763c-2.731-0.361-3.009-0.548-3.009-1.187c0-0.528,0.235-1.233,2.258-1.233 c1.807,0,2.473,0.389,2.747,1.607c0.024,0.115,0.129,0.199,0.247,0.199h1.141c0.071,0,0.138-0.031,0.186-0.081 c0.048-0.054,0.074-0.123,0.067-0.196c-0.177-2.098-1.571-3.076-4.388-3.076c-2.508,0-4.004,1.058-4.004,2.833 c0,1.925,1.488,2.457,3.895,2.695c2.88,0.282,3.103,0.703,3.103,1.269c0,0.983-0.789,1.402-2.642,1.402 c-2.327,0-2.839-0.584-3.011-1.742c-0.02-0.124-0.126-0.215-0.253-0.215h-1.137c-0.141,0-0.254,0.112-0.254,0.253 c0,1.482,0.806,3.248,4.655,3.248C17.501,17.007,19.099,15.91,19.099,13.993z",
|
|
929
1145
|
},
|
|
930
1146
|
},
|
|
931
1147
|
});
|
|
932
1148
|
export const IconNpm = createSvgIcon({
|
|
933
|
-
viewBox:
|
|
934
|
-
fill:
|
|
1149
|
+
viewBox: "0 0 24 24",
|
|
1150
|
+
fill: "currentColor",
|
|
935
1151
|
stroke: false,
|
|
936
1152
|
children: {
|
|
937
|
-
type:
|
|
1153
|
+
type: "path",
|
|
938
1154
|
props: {
|
|
939
|
-
d:
|
|
1155
|
+
d: "M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z",
|
|
940
1156
|
},
|
|
941
1157
|
},
|
|
942
1158
|
});
|
|
943
1159
|
export const IconYarn = createSvgIcon({
|
|
944
|
-
viewBox:
|
|
945
|
-
fill:
|
|
1160
|
+
viewBox: "0 0 24 24",
|
|
1161
|
+
fill: "currentColor",
|
|
946
1162
|
stroke: false,
|
|
947
1163
|
children: {
|
|
948
|
-
type:
|
|
1164
|
+
type: "path",
|
|
949
1165
|
props: {
|
|
950
|
-
d:
|
|
1166
|
+
d: "M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0zm.768 4.105c.183 0 .363.053.525.157.125.083.287.185.755 1.154.31-.088.468-.042.551-.019.204.056.366.19.463.375.477.917.542 2.553.334 3.605-.241 1.232-.755 2.029-1.131 2.576.324.329.778.899 1.117 1.825.278.774.31 1.478.273 2.015a5.51 5.51 0 0 0 .602-.329c.593-.366 1.487-.917 2.553-.931.714-.009 1.269.445 1.353 1.103a1.23 1.23 0 0 1-.945 1.362c-.649.158-.95.278-1.821.843-1.232.797-2.539 1.242-3.012 1.39a1.686 1.686 0 0 1-.704.343c-.737.181-3.266.315-3.466.315h-.046c-.783 0-1.214-.241-1.45-.491-.658.329-1.51.19-2.122-.134a1.078 1.078 0 0 1-.58-1.153 1.243 1.243 0 0 1-.153-.195c-.162-.25-.528-.936-.454-1.946.056-.723.556-1.367.88-1.71a5.522 5.522 0 0 1 .408-2.256c.306-.727.885-1.348 1.32-1.737-.32-.537-.644-1.367-.329-2.21.227-.602.412-.936.82-1.08h-.005c.199-.074.389-.153.486-.259a3.418 3.418 0 0 1 2.298-1.103c.037-.093.079-.185.125-.283.31-.658.639-1.029 1.024-1.168a.94.94 0 0 1 .328-.06zm.006.7c-.507.016-1.001 1.519-1.001 1.519s-1.27-.204-2.266.871c-.199.218-.468.334-.746.44-.079.028-.176.023-.417.672-.371.991.625 2.094.625 2.094s-1.186.839-1.626 1.881c-.486 1.144-.338 2.261-.338 2.261s-.843.732-.899 1.487c-.051.663.139 1.2.343 1.515.227.343.51.176.51.176s-.561.653-.037.931c.477.25 1.283.394 1.71-.037.31-.31.371-1.001.486-1.283.028-.065.12.111.209.199.097.093.264.195.264.195s-.755.324-.445 1.066c.102.246.468.403 1.066.398.222-.005 2.664-.139 3.313-.296.375-.088.505-.283.505-.283s1.566-.431 2.998-1.357c.917-.598 1.293-.76 2.034-.936.612-.148.57-1.098-.241-1.084-.839.009-1.575.44-2.196.825-1.163.718-1.742.672-1.742.672l-.018-.032c-.079-.13.371-1.293-.134-2.678-.547-1.515-1.413-1.881-1.344-1.997.297-.5 1.038-1.297 1.334-2.78.176-.899.13-2.377-.269-3.151-.074-.144-.732.241-.732.241s-.616-1.371-.788-1.483a.271.271 0 0 0-.157-.046z",
|
|
951
1167
|
},
|
|
952
1168
|
},
|
|
953
1169
|
});
|
|
954
1170
|
export const IconPnpm = createSvgIcon({
|
|
955
|
-
viewBox:
|
|
956
|
-
fill:
|
|
1171
|
+
viewBox: "0 0 24 24",
|
|
1172
|
+
fill: "currentColor",
|
|
957
1173
|
stroke: false,
|
|
958
1174
|
children: {
|
|
959
|
-
type:
|
|
1175
|
+
type: "path",
|
|
960
1176
|
props: {
|
|
961
|
-
d:
|
|
1177
|
+
d: "M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM2 2h3.5v3.5H2zm8.25 0h3.498v3.5H10.25zm8.25 0H22v3.5h-3.5zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zm2 2H22v3.5h-3.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z",
|
|
962
1178
|
},
|
|
963
1179
|
},
|
|
964
1180
|
});
|
|
965
1181
|
export const IconVite = createSvgIcon({
|
|
966
|
-
viewBox:
|
|
967
|
-
fill:
|
|
1182
|
+
viewBox: "0 0 24 24",
|
|
1183
|
+
fill: "currentColor",
|
|
968
1184
|
stroke: false,
|
|
969
1185
|
children: {
|
|
970
|
-
type:
|
|
1186
|
+
type: "path",
|
|
971
1187
|
props: {
|
|
972
|
-
d:
|
|
1188
|
+
d: "M13.056 23.238a.57.57 0 0 1-1.02-.355v-5.202c0-.63-.512-1.143-1.144-1.143H5.148a.57.57 0 0 1-.464-.903l3.777-5.29c.54-.753 0-1.804-.93-1.804H.57a.574.574 0 0 1-.543-.746.6.6 0 0 1 .08-.157L5.008.78a.57.57 0 0 1 .467-.24h14.589a.57.57 0 0 1 .466.903l-3.778 5.29c-.54.755 0 1.806.93 1.806h5.745c.238 0 .424.138.513.322a.56.56 0 0 1-.063.603z",
|
|
973
1189
|
},
|
|
974
1190
|
},
|
|
975
1191
|
});
|
|
976
1192
|
export const IconNextJs = createSvgIcon({
|
|
977
|
-
viewBox:
|
|
978
|
-
fill:
|
|
1193
|
+
viewBox: "0 0 24 24",
|
|
1194
|
+
fill: "currentColor",
|
|
979
1195
|
stroke: false,
|
|
980
1196
|
children: {
|
|
981
|
-
type:
|
|
1197
|
+
type: "path",
|
|
982
1198
|
props: {
|
|
983
|
-
d:
|
|
1199
|
+
d: "M18.665 21.978C16.758 23.255 14.465 24 12 24 5.377 24 0 18.623 0 12S5.377 0 12 0s12 5.377 12 12c0 3.583-1.574 6.801-4.067 9.001L9.219 7.2H7.2v9.596h1.615V9.251l9.85 12.727Zm-3.332-8.533 1.6 2.061V7.2h-1.6v6.245Z",
|
|
984
1200
|
},
|
|
985
1201
|
},
|
|
986
1202
|
});
|
|
987
1203
|
export const IconRemix = createSvgIcon({
|
|
988
|
-
viewBox:
|
|
989
|
-
fill:
|
|
1204
|
+
viewBox: "0 0 24 24",
|
|
1205
|
+
fill: "currentColor",
|
|
990
1206
|
stroke: false,
|
|
991
1207
|
children: {
|
|
992
|
-
type:
|
|
1208
|
+
type: "path",
|
|
993
1209
|
props: {
|
|
994
|
-
d:
|
|
1210
|
+
d: "M21.511 18.508c.216 2.773.216 4.073.216 5.492H15.31c0-.309.006-.592.011-.878.018-.892.036-1.821-.109-3.698-.19-2.747-1.374-3.358-3.55-3.358H1.574v-5h10.396c2.748 0 4.122-.835 4.122-3.049 0-1.946-1.374-3.125-4.122-3.125H1.573V0h11.541c6.221 0 9.313 2.938 9.313 7.632 0 3.511-2.176 5.8-5.114 6.182 2.48.497 3.93 1.909 4.198 4.694ZM1.573 24v-3.727h6.784c1.133 0 1.379.84 1.379 1.342V24Z",
|
|
995
1211
|
},
|
|
996
1212
|
},
|
|
997
1213
|
});
|
|
998
1214
|
export const IconNuxt = createSvgIcon({
|
|
999
|
-
viewBox:
|
|
1000
|
-
fill:
|
|
1215
|
+
viewBox: "0 0 24 24",
|
|
1216
|
+
fill: "currentColor",
|
|
1001
1217
|
stroke: false,
|
|
1002
1218
|
children: {
|
|
1003
|
-
type:
|
|
1219
|
+
type: "path",
|
|
1004
1220
|
props: {
|
|
1005
|
-
d:
|
|
1221
|
+
d: "M13.4642 19.8295h8.9218c.2834 0 .5618-.0723.8072-.2098a1.5899 1.5899 0 0 0 .5908-.5732 1.5293 1.5293 0 0 0 .216-.783 1.529 1.529 0 0 0-.2167-.7828L17.7916 7.4142a1.5904 1.5904 0 0 0-.5907-.573 1.6524 1.6524 0 0 0-.807-.2099c-.2833 0-.5616.0724-.807.2098a1.5904 1.5904 0 0 0-.5907.5731L13.4642 9.99l-2.9954-5.0366a1.5913 1.5913 0 0 0-.591-.573 1.6533 1.6533 0 0 0-.8071-.2098c-.2834 0-.5617.0723-.8072.2097a1.5913 1.5913 0 0 0-.591.573L.2168 17.4808A1.5292 1.5292 0 0 0 0 18.2635c-.0001.2749.0744.545.216.783a1.59 1.59 0 0 0 .5908.5732c.2454.1375.5238.2098.8072.2098h5.6003c2.219 0 3.8554-.9454 4.9813-2.7899l2.7337-4.5922L16.3935 9.99l4.3944 7.382h-5.8586ZM7.123 17.3694l-3.9083-.0009 5.8586-9.8421 2.9232 4.921-1.9572 3.2892c-.7478 1.1967-1.5972 1.6328-2.9163 1.6328z",
|
|
1006
1222
|
},
|
|
1007
1223
|
},
|
|
1008
1224
|
});
|
|
1009
1225
|
export const IconSolid = createSvgIcon({
|
|
1010
|
-
viewBox:
|
|
1011
|
-
fill:
|
|
1226
|
+
viewBox: "0 0 24 24",
|
|
1227
|
+
fill: "currentColor",
|
|
1012
1228
|
stroke: false,
|
|
1013
1229
|
children: {
|
|
1014
|
-
type:
|
|
1230
|
+
type: "path",
|
|
1015
1231
|
props: {
|
|
1016
|
-
d:
|
|
1232
|
+
d: "M11.558.788A9.082 9.082 0 0 0 9.776.99l-.453.15c-.906.303-1.656.755-2.1 1.348l-.301.452-2.035 3.528c.426-.387.974-.698 1.643-.894h.001l.613-.154h.001a8.82 8.82 0 0 1 1.777-.206c2.916-.053 6.033 1.148 8.423 2.36 2.317 1.175 3.888 2.32 3.987 2.39L24 5.518c-.082-.06-1.66-1.21-3.991-2.386-2.393-1.206-5.521-2.396-8.45-2.343zM8.924 5.366a8.634 8.634 0 0 0-1.745.203l-.606.151c-1.278.376-2.095 1.16-2.43 2.108-.334.948-.188 2.065.487 3.116.33.43.747.813 1.216 1.147L12.328 10h.001a6.943 6.943 0 0 1 6.013 1.013l2.844-.963c-.17-.124-1.663-1.2-3.91-2.34-2.379-1.206-5.479-2.396-8.352-2.344zm5.435 4.497a6.791 6.791 0 0 0-1.984.283L2.94 13.189 0 18.334l9.276-2.992a6.945 6.945 0 0 1 7.408 2.314v.001c.695.903.89 1.906.66 2.808l2.572-4.63c.595-1.041.45-2.225-.302-3.429a6.792 6.792 0 0 0-5.255-2.543zm-3.031 5.341a6.787 6.787 0 0 0-2.006.283L.008 18.492c.175.131 2.02 1.498 4.687 2.768 2.797 1.332 6.37 2.467 9.468 1.712l.454-.152h.002c1.278-.376 2.134-1.162 2.487-2.09.353-.93.207-2.004-.541-2.978a6.791 6.791 0 0 0-5.237-2.548z",
|
|
1017
1233
|
},
|
|
1018
1234
|
},
|
|
1019
1235
|
});
|
|
1020
1236
|
export const IconElectron = createSvgIcon({
|
|
1021
|
-
viewBox:
|
|
1022
|
-
fill:
|
|
1237
|
+
viewBox: "0 0 24 24",
|
|
1238
|
+
fill: "currentColor",
|
|
1023
1239
|
stroke: false,
|
|
1024
1240
|
children: {
|
|
1025
|
-
type:
|
|
1241
|
+
type: "path",
|
|
1026
1242
|
props: {
|
|
1027
|
-
d:
|
|
1243
|
+
d: "M12.0111 0c-.85 0-1.5392.6891-1.5392 1.5392 0 .8501.6891 1.5393 1.5392 1.5393.595 0 1.11-.338 1.3662-.832 2.2208 1.2675 3.847 5.4728 3.847 10.3623 0 2.0715-.2891 4.056-.825 5.7685a.3215.3215 0 0 0 .2107.403.322.322 0 0 0 .4033-.2111c.5558-1.7763.8542-3.8251.8542-5.9604 0-5.1927-1.7717-9.686-4.3206-11.0027.001-.0223.0035-.0443.0035-.0669 0-.85-.6891-1.5392-1.5393-1.5392zm0 .6432a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792zm-5.486 4.3052c-2.067.0074-3.6473.6646-4.3885 1.9485-.7375 1.2774-.5267 2.971.5113 4.7813a.3217.3217 0 0 0 .558-.32C2.271 9.7274 2.089 8.266 2.6938 7.2185c.821-1.422 3.033-1.9552 5.9321-1.4271a.3216.3216 0 0 0 .1153-.6329c-.784-.1428-1.5271-.2125-2.216-.21zm11.0522.0176a.3216.3216 0 0 0-.0084.6432c1.8337.0239 3.1556.5956 3.7502 1.6256.8192 1.419.1798 3.5947-1.7182 5.837a.322.322 0 0 0 .0377.4535.3215.3215 0 0 0 .4532-.0377c2.0535-2.426 2.7708-4.8661 1.7845-6.5744-.7257-1.257-2.26-1.9207-4.299-1.9472zm-2.6984.2924a.3225.3225 0 0 0-.0647.0072c-1.8568.3979-3.8333 1.1755-5.7314 2.2714-4.5699 2.6384-7.5924 6.4948-7.3601 9.3717-.4726.2628-.7928.7664-.7928 1.3455 0 .85.6892 1.5392 1.5393 1.5392.85 0 1.5392-.6891 1.5392-1.5392 0-.8501-.6891-1.5393-1.5392-1.5393-.038 0-.0754.003-.1128.0057-.1002-2.5597 2.7434-6.1412 7.048-8.6265 1.8413-1.063 3.7551-1.8163 5.5445-2.1997a.3217.3217 0 0 0-.07-.636zm-2.8787 6.2364a1.1192 1.1192 0 0 0-.2243.0255c-.6012.1301-.983.7225-.8533 1.3238.1302.6012.7226.9832 1.3238.8533.6012-.1302.9832-.7226.8533-1.3238-.1139-.526-.5816-.8844-1.0995-.8788zM4.532 13.341a.321.321 0 0 0-.2318.0835.3214.3214 0 0 0-.0214.4542c1.2682 1.3936 2.9157 2.701 4.7946 3.7857 4.4146 2.5489 9.1056 3.2849 11.5608 1.8392a1.53 1.53 0 0 0 .8966.2899c.8501 0 1.5392-.6891 1.5392-1.5392 0-.8501-.689-1.5393-1.5392-1.5393-.85 0-1.5392.6892-1.5392 1.5393 0 .276.0737.5344.201.7584-2.2448 1.214-6.631.5002-10.7976-1.9054-1.8228-1.0524-3.418-2.3181-4.6404-3.6614a.3206.3206 0 0 0-.2226-.1049zm-2.0628 4.0172a.896.896 0 1 1 0 1.792.896.896 0 1 1 0-1.792zm19.0616 0a.896.896 0 1 1 0 1.792.891.891 0 0 1-.5864-.2194c-.0025-.004-.0039-.0083-.0066-.0123a.3195.3195 0 0 0-.0957-.0914.896.896 0 0 1 .6887-1.4689zm-14.0045 1.368a.3215.3215 0 0 0-.3207.4296C8.2793 22.154 10.036 24 12.0111 24c1.4406 0 2.7735-.9822 3.8128-2.711a.3215.3215 0 0 0-.11-.4413.3219.3219 0 0 0-.4415.11c-.934 1.5537-2.0812 2.399-3.2613 2.399-1.6407 0-3.2075-1.6465-4.2-4.4179a.3216.3216 0 0 0-.2848-.2126z",
|
|
1028
1244
|
},
|
|
1029
1245
|
},
|
|
1030
1246
|
});
|
|
1031
1247
|
export const IconTailwind = createSvgIcon({
|
|
1032
|
-
viewBox:
|
|
1033
|
-
fill:
|
|
1248
|
+
viewBox: "0 0 24 24",
|
|
1249
|
+
fill: "currentColor",
|
|
1034
1250
|
stroke: false,
|
|
1035
1251
|
children: {
|
|
1036
|
-
type:
|
|
1252
|
+
type: "path",
|
|
1037
1253
|
props: {
|
|
1038
|
-
d:
|
|
1254
|
+
d: "M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z",
|
|
1039
1255
|
},
|
|
1040
1256
|
},
|
|
1041
1257
|
});
|
|
1042
1258
|
export const IconWebpack = createSvgIcon({
|
|
1043
|
-
viewBox:
|
|
1044
|
-
fill:
|
|
1259
|
+
viewBox: "0 0 24 24",
|
|
1260
|
+
fill: "currentColor",
|
|
1045
1261
|
stroke: false,
|
|
1046
1262
|
children: {
|
|
1047
|
-
type:
|
|
1263
|
+
type: "path",
|
|
1048
1264
|
props: {
|
|
1049
|
-
d:
|
|
1265
|
+
d: "M22.1987 18.498l-9.7699 5.5022v-4.2855l6.0872-3.3338 3.6826 2.117zm.6683-.6026V6.3884l-3.5752 2.0544v7.396zm-21.0657.6026l9.7699 5.5022v-4.2855L5.484 16.3809l-3.6826 2.117zm-.6683-.6026V6.3884l3.5751 2.0544v7.396zm.4183-12.2515l10.0199-5.644v4.1434L5.152 7.6586l-.0489.028zm20.8975 0l-10.02-5.644v4.1434l6.4192 3.5154.0489.028 3.5518-2.0427zm-10.8775 13.096l-6.0056-3.2873V8.9384l6.0054 3.4525v6.349zm.8575 0l6.0053-3.2873V8.9384l-6.0053 3.4525zM5.9724 8.1845l6.0287-3.3015L18.03 8.1845l-6.0288 3.4665z",
|
|
1050
1266
|
},
|
|
1051
1267
|
},
|
|
1052
1268
|
});
|
|
1053
1269
|
export const IconRollup = createSvgIcon({
|
|
1054
|
-
viewBox:
|
|
1055
|
-
fill:
|
|
1270
|
+
viewBox: "0 0 24 24",
|
|
1271
|
+
fill: "currentColor",
|
|
1056
1272
|
stroke: false,
|
|
1057
1273
|
children: {
|
|
1058
|
-
type:
|
|
1274
|
+
type: "path",
|
|
1059
1275
|
props: {
|
|
1060
|
-
d:
|
|
1276
|
+
d: "M3.42.0002a.37.37 0 00-.369.37V19.885c.577-1.488 1.557-3.6168 3.1378-6.5297C11.8885 2.876 12.6355 1.8191 15.6043 1.8191c1.56 0 3.1338.704 4.1518 1.9549A7.9616 7.9616 0 0013.1014.0002zM16.1393 2.544c-1.19.01-2.257.466-2.6979 1.498-.967 2.2558 1.624 4.7667 2.7569 4.5677 1.4419-.255-.255-3.5628-.255-3.5628 2.2049 4.1558 1.6969 2.8838-2.2899 6.6996C9.6666 15.5623 5.596 23.6188 5.002 23.9568a.477.477 0 01-.08.043H20.558a.373.373 0 00.33-.538l-4.0878-8.0915a.37.37 0 01.144-.488 7.9596 7.9596 0 004.0048-6.9126c0-1.4249-.373-2.7608-1.03-3.9198-.9269-.9519-2.4298-1.5159-3.7787-1.5059z",
|
|
1061
1277
|
},
|
|
1062
1278
|
},
|
|
1063
1279
|
});
|
|
1064
1280
|
export const IconEsbuild = createSvgIcon({
|
|
1065
|
-
viewBox:
|
|
1066
|
-
fill:
|
|
1281
|
+
viewBox: "0 0 24 24",
|
|
1282
|
+
fill: "currentColor",
|
|
1067
1283
|
stroke: false,
|
|
1068
1284
|
children: {
|
|
1069
|
-
type:
|
|
1285
|
+
type: "path",
|
|
1070
1286
|
props: {
|
|
1071
|
-
d:
|
|
1287
|
+
d: "M12 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0zM6.718 5.282L13.436 12l-6.718 6.718-2.036-2.036L9.364 12 4.682 7.318zm7.2 0L20.636 12l-6.718 6.718-2.036-2.036L16.564 12l-4.682-4.682z",
|
|
1072
1288
|
},
|
|
1073
1289
|
},
|
|
1074
1290
|
});
|
|
1075
1291
|
export const IconTypeScript = createSvgIcon({
|
|
1076
|
-
viewBox:
|
|
1077
|
-
fill:
|
|
1292
|
+
viewBox: "0 0 24 24",
|
|
1293
|
+
fill: "currentColor",
|
|
1078
1294
|
stroke: false,
|
|
1079
1295
|
children: {
|
|
1080
|
-
type:
|
|
1296
|
+
type: "path",
|
|
1081
1297
|
props: {
|
|
1082
|
-
d:
|
|
1298
|
+
d: "M1.125 0C.502 0 0 .502 0 1.125v21.75C0 23.498.502 24 1.125 24h21.75c.623 0 1.125-.502 1.125-1.125V1.125C24 .502 23.498 0 22.875 0zm17.363 9.75c.612 0 1.154.037 1.627.111a6.38 6.38 0 0 1 1.306.34v2.458a3.95 3.95 0 0 0-.643-.361 5.093 5.093 0 0 0-.717-.26 5.453 5.453 0 0 0-1.426-.2c-.3 0-.573.028-.819.086a2.1 2.1 0 0 0-.623.242c-.17.104-.3.229-.393.374a.888.888 0 0 0-.14.49c0 .196.053.373.156.529.104.156.252.304.443.444s.423.276.696.41c.273.135.582.274.926.416.47.197.892.407 1.266.628.374.222.695.473.963.753.268.279.472.598.614.957.142.359.214.776.214 1.253 0 .657-.125 1.21-.373 1.656a3.033 3.033 0 0 1-1.012 1.085 4.38 4.38 0 0 1-1.487.596c-.566.12-1.163.18-1.79.18a9.916 9.916 0 0 1-1.84-.164 5.544 5.544 0 0 1-1.512-.493v-2.63a5.033 5.033 0 0 0 3.237 1.2c.333 0 .624-.03.872-.09.249-.06.456-.144.623-.25.166-.108.29-.234.373-.38a1.023 1.023 0 0 0-.074-1.089 2.12 2.12 0 0 0-.537-.5 5.597 5.597 0 0 0-.807-.444 27.72 27.72 0 0 0-1.007-.436c-.918-.383-1.602-.852-2.053-1.405-.45-.553-.676-1.222-.676-2.005 0-.614.123-1.141.369-1.582.246-.441.58-.804 1.004-1.089a4.494 4.494 0 0 1 1.47-.629 7.536 7.536 0 0 1 1.77-.201zm-15.113.188h9.563v2.166H9.506v9.646H6.789v-9.646H3.375z",
|
|
1083
1299
|
},
|
|
1084
1300
|
},
|
|
1085
1301
|
});
|
|
1086
1302
|
export const IconJavaScript = createSvgIcon({
|
|
1087
|
-
viewBox:
|
|
1088
|
-
fill:
|
|
1303
|
+
viewBox: "0 0 24 24",
|
|
1304
|
+
fill: "currentColor",
|
|
1089
1305
|
stroke: false,
|
|
1090
1306
|
children: {
|
|
1091
|
-
type:
|
|
1307
|
+
type: "path",
|
|
1092
1308
|
props: {
|
|
1093
|
-
d:
|
|
1309
|
+
d: "M0 0h24v24H0V0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65l.046.067zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179l.004-.056z",
|
|
1094
1310
|
},
|
|
1095
1311
|
},
|
|
1096
1312
|
});
|
|
1097
1313
|
export const IconBun = createSvgIcon({
|
|
1098
|
-
viewBox:
|
|
1099
|
-
fill:
|
|
1314
|
+
viewBox: "0 0 24 24",
|
|
1315
|
+
fill: "currentColor",
|
|
1100
1316
|
stroke: false,
|
|
1101
1317
|
children: {
|
|
1102
|
-
type:
|
|
1318
|
+
type: "path",
|
|
1103
1319
|
props: {
|
|
1104
|
-
d:
|
|
1320
|
+
d: "M12 22.596c6.628 0 12-4.338 12-9.688 0-3.318-2.057-6.248-5.219-7.986-1.286-.715-2.297-1.357-3.139-1.89C14.058 2.025 13.08 1.404 12 1.404c-1.097 0-2.334.785-3.966 1.821a49.92 49.92 0 0 1-2.816 1.697C2.057 6.66 0 9.59 0 12.908c0 5.35 5.372 9.687 12 9.687v.001ZM10.599 4.715c.334-.759.503-1.58.498-2.409 0-.145.202-.187.23-.029.658 2.783-.902 4.162-2.057 4.624-.124.048-.199-.121-.103-.209a5.763 5.763 0 0 0 1.432-1.977Zm2.058-.102a5.82 5.82 0 0 0-.782-2.306v-.016c-.069-.123.086-.263.185-.172 1.962 2.111 1.307 4.067.556 5.051-.082.103-.23-.003-.189-.126a5.85 5.85 0 0 0 .23-2.431Zm1.776-.561a5.727 5.727 0 0 0-1.612-1.806v-.014c-.112-.085-.024-.274.114-.218 2.595 1.087 2.774 3.18 2.459 4.407a.116.116 0 0 1-.049.071.11.11 0 0 1-.153-.026.122.122 0 0 1-.022-.083 5.891 5.891 0 0 0-.737-2.331Zm-5.087.561c-.617.546-1.282.76-2.063 1-.117 0-.195-.078-.156-.181 1.752-.909 2.376-1.649 2.999-2.778 0 0 .155-.118.188.085 0 .304-.349 1.329-.968 1.874Zm4.945 11.237a2.957 2.957 0 0 1-.937 1.553c-.346.346-.8.565-1.286.62a2.178 2.178 0 0 1-1.327-.62 2.955 2.955 0 0 1-.925-1.553.244.244 0 0 1 .064-.198.234.234 0 0 1 .193-.069h3.965a.226.226 0 0 1 .19.07c.05.053.073.125.063.197Zm-5.458-2.176a1.862 1.862 0 0 1-2.384-.245 1.98 1.98 0 0 1-.233-2.447c.207-.319.503-.566.848-.713a1.84 1.84 0 0 1 1.092-.11c.366.075.703.261.967.531a1.98 1.98 0 0 1 .408 2.114 1.931 1.931 0 0 1-.698.869v.001Zm8.495.005a1.86 1.86 0 0 1-2.381-.253 1.964 1.964 0 0 1-.547-1.366c0-.384.11-.76.32-1.079.207-.319.503-.567.849-.713a1.844 1.844 0 0 1 1.093-.108c.367.076.704.262.968.534a1.98 1.98 0 0 1 .4 2.117 1.932 1.932 0 0 1-.702.868Z",
|
|
1105
1321
|
},
|
|
1106
1322
|
},
|
|
1107
1323
|
});
|
|
1108
1324
|
export const IconDeno = createSvgIcon({
|
|
1109
|
-
viewBox:
|
|
1110
|
-
fill:
|
|
1325
|
+
viewBox: "0 0 24 24",
|
|
1326
|
+
fill: "currentColor",
|
|
1111
1327
|
stroke: false,
|
|
1112
1328
|
children: {
|
|
1113
|
-
type:
|
|
1329
|
+
type: "path",
|
|
1114
1330
|
props: {
|
|
1115
|
-
d:
|
|
1331
|
+
d: "M1.105 18.02A11.9 11.9 0 0 1 0 12.985q0-.698.078-1.376a12 12 0 0 1 .231-1.34A12 12 0 0 1 4.025 4.02a12 12 0 0 1 5.46-2.771 12 12 0 0 1 3.428-.23c1.452.112 2.825.477 4.077 1.05a12 12 0 0 1 2.78 1.774 12.02 12.02 0 0 1 4.053 7.078A12 12 0 0 1 24 12.985q0 .454-.036.914a12 12 0 0 1-.728 3.305 12 12 0 0 1-2.38 3.875c-1.33 1.357-3.02 1.962-4.43 1.936a4.4 4.4 0 0 1-2.724-1.024c-.99-.853-1.391-1.83-1.53-2.919a5 5 0 0 1 .128-1.518c.105-.38.37-1.116.76-1.437-.455-.197-1.04-.624-1.226-.829-.045-.05-.04-.13 0-.183a.155.155 0 0 1 .177-.053c.392.134.869.267 1.372.35.66.111 1.484.25 2.317.292 2.03.1 4.153-.813 4.812-2.627s.403-3.609-1.96-4.685-3.454-2.356-5.363-3.128c-1.247-.505-2.636-.205-4.06.582-3.838 2.121-7.277 8.822-5.69 15.032a.191.191 0 0 1-.315.19 12 12 0 0 1-1.25-1.634 12 12 0 0 1-.769-1.404M11.57 6.087c.649-.051 1.214.501 1.31 1.236.13.979-.228 1.99-1.41 2.013-1.01.02-1.315-.997-1.248-1.614.066-.616.574-1.575 1.35-1.635",
|
|
1116
1332
|
},
|
|
1117
1333
|
},
|
|
1118
1334
|
});
|
|
1119
1335
|
export const IconDocker = createSvgIcon({
|
|
1120
|
-
viewBox:
|
|
1121
|
-
fill:
|
|
1336
|
+
viewBox: "0 0 24 24",
|
|
1337
|
+
fill: "currentColor",
|
|
1122
1338
|
stroke: false,
|
|
1123
1339
|
children: {
|
|
1124
|
-
type:
|
|
1340
|
+
type: "path",
|
|
1125
1341
|
props: {
|
|
1126
|
-
d:
|
|
1342
|
+
d: "M13.983 11.078h2.119a.186.186 0 00.186-.185V9.006a.186.186 0 00-.186-.186h-2.119a.185.185 0 00-.185.185v1.888c0 .102.083.185.185.185m-2.954-5.43h2.118a.186.186 0 00.186-.186V3.574a.186.186 0 00-.186-.185h-2.118a.185.185 0 00-.185.185v1.888c0 .102.082.185.185.185m0 2.716h2.118a.187.187 0 00.186-.186V6.29a.186.186 0 00-.186-.185h-2.118a.185.185 0 00-.185.185v1.887c0 .102.082.185.185.186m-2.93 0h2.12a.186.186 0 00.184-.186V6.29a.185.185 0 00-.185-.185H8.1a.185.185 0 00-.185.185v1.887c0 .102.083.185.185.186m-2.964 0h2.119a.186.186 0 00.185-.186V6.29a.185.185 0 00-.185-.185H5.136a.186.186 0 00-.186.185v1.887c0 .102.084.185.186.186m5.893 2.715h2.118a.186.186 0 00.186-.185V9.006a.186.186 0 00-.186-.186h-2.118a.185.185 0 00-.185.185v1.888c0 .102.082.185.185.185m-2.93 0h2.12a.185.185 0 00.184-.185V9.006a.185.185 0 00-.184-.186h-2.12a.185.185 0 00-.184.185v1.888c0 .102.083.185.185.185m-2.964 0h2.119a.185.185 0 00.185-.185V9.006a.185.185 0 00-.184-.186h-2.12a.186.186 0 00-.186.186v1.887c0 .102.084.185.186.185m-2.92 0h2.12a.185.185 0 00.184-.185V9.006a.185.185 0 00-.184-.186h-2.12a.185.185 0 00-.184.185v1.888c0 .102.082.185.185.185M23.763 9.89c-.065-.051-.672-.51-1.954-.51-.338.001-.676.03-1.01.087-.248-1.7-1.653-2.53-1.716-2.566l-.344-.199-.226.327c-.284.438-.49.922-.612 1.43-.23.97-.09 1.882.403 2.661-.595.332-1.55.413-1.744.42H.751a.751.751 0 00-.75.748 11.376 11.376 0 00.692 4.062c.545 1.428 1.355 2.48 2.41 3.124 1.18.723 3.1 1.137 5.275 1.137.983.003 1.963-.086 2.93-.266a12.248 12.248 0 003.823-1.389c.98-.567 1.86-1.288 2.61-2.136 1.252-1.418 1.998-2.997 2.553-4.4h.221c1.372 0 2.215-.549 2.68-1.009.309-.293.55-.65.707-1.046l.098-.288Z",
|
|
1127
1343
|
},
|
|
1128
1344
|
},
|
|
1129
1345
|
});
|
|
1130
1346
|
export const IconKubernetes = createSvgIcon({
|
|
1131
|
-
viewBox:
|
|
1132
|
-
fill:
|
|
1347
|
+
viewBox: "0 0 24 24",
|
|
1348
|
+
fill: "currentColor",
|
|
1133
1349
|
stroke: false,
|
|
1134
1350
|
children: {
|
|
1135
|
-
type:
|
|
1351
|
+
type: "path",
|
|
1136
1352
|
props: {
|
|
1137
|
-
d:
|
|
1353
|
+
d: "M10.204 14.35l.007.01-.999 2.413a5.171 5.171 0 0 1-2.075-2.597l2.578-.437.004.005a.44.44 0 0 1 .484.606zm-.833-2.129a.44.44 0 0 0 .173-.756l.002-.011L7.585 9.7a5.143 5.143 0 0 0-.73 3.255l2.514-.725.002-.009zm1.145-1.98a.44.44 0 0 0 .699-.337l.01-.005.15-2.62a5.144 5.144 0 0 0-3.01 1.442l2.147 1.523.004-.002zm.76 2.75l.723.349.722-.347.18-.78-.5-.623h-.804l-.5.623.179.779zm1.5-3.095a.44.44 0 0 0 .7.336l.008.003 2.134-1.513a5.188 5.188 0 0 0-2.992-1.442l.148 2.615.002.001zm10.876 5.97l-5.773 7.181a1.6 1.6 0 0 1-1.248.594l-9.261.003a1.6 1.6 0 0 1-1.247-.596l-5.776-7.18a1.583 1.583 0 0 1-.307-1.34L2.1 5.573c.108-.47.425-.864.863-1.073L11.305.513a1.606 1.606 0 0 1 1.385 0l8.345 3.985c.438.209.755.604.863 1.073l2.062 8.955c.108.47-.005.963-.308 1.34zm-3.289-2.057c-.042-.01-.103-.026-.145-.034-.174-.033-.315-.025-.479-.038-.35-.037-.638-.067-.895-.148-.105-.04-.18-.165-.216-.216l-.201-.059a6.45 6.45 0 0 0-.105-2.332 6.465 6.465 0 0 0-.936-2.163c.052-.047.15-.133.177-.159.008-.09.001-.183.094-.282.197-.185.444-.338.743-.522.142-.084.273-.137.415-.242.032-.024.076-.062.11-.089.24-.191.295-.52.123-.736-.172-.216-.506-.236-.745-.045-.034.027-.08.062-.111.088-.134.116-.217.23-.33.35-.246.25-.45.458-.673.609-.097.056-.239.037-.303.033l-.19.135a6.545 6.545 0 0 0-4.146-2.003l-.012-.223c-.065-.062-.143-.115-.163-.25-.022-.268.015-.557.057-.905.023-.163.061-.298.068-.475.001-.04-.001-.099-.001-.142 0-.306-.224-.555-.5-.555-.275 0-.499.249-.499.555l.001.014c0 .041-.002.092 0 .128.006.177.044.312.067.475.042.348.078.637.056.906a.545.545 0 0 1-.162.258l-.012.211a6.424 6.424 0 0 0-4.166 2.003 8.373 8.373 0 0 1-.18-.128c-.09.012-.18.04-.297-.029-.223-.15-.427-.358-.673-.608-.113-.12-.195-.234-.329-.349-.03-.026-.077-.062-.111-.088a.594.594 0 0 0-.348-.132.481.481 0 0 0-.398.176c-.172.216-.117.546.123.737l.007.005.104.083c.142.105.272.159.414.242.299.185.546.338.743.522.076.082.09.226.1.288l.16.143a6.462 6.462 0 0 0-1.02 4.506l-.208.06c-.055.072-.133.184-.215.217-.257.081-.546.11-.895.147-.164.014-.305.006-.48.039-.037.007-.09.02-.133.03l-.004.002-.007.002c-.295.071-.484.342-.423.608.061.267.349.429.645.365l.007-.001.01-.003.129-.029c.17-.046.294-.113.448-.172.33-.118.604-.217.87-.256.112-.009.23.069.288.101l.217-.037a6.5 6.5 0 0 0 2.88 3.596l-.09.218c.033.084.069.199.044.282-.097.252-.263.517-.452.813-.091.136-.185.242-.268.399-.02.037-.045.095-.064.134-.128.275-.034.591.213.71.248.12.556-.007.69-.282v-.002c.02-.039.046-.09.062-.127.07-.162.094-.301.144-.458.132-.332.205-.68.387-.897.05-.06.13-.082.215-.105l.113-.205a6.453 6.453 0 0 0 4.609.012l.106.192c.086.028.18.042.256.155.136.232.229.507.342.84.05.156.074.295.145.457.016.037.043.09.062.129.133.276.442.402.69.282.247-.118.341-.435.213-.71-.02-.039-.045-.096-.065-.134-.083-.156-.177-.261-.268-.398-.19-.296-.346-.541-.443-.793-.04-.13.007-.21.038-.294-.018-.022-.059-.144-.083-.202a6.499 6.499 0 0 0 2.88-3.622c.064.01.176.03.213.038.075-.05.144-.114.28-.104.266.039.54.138.87.256.154.06.277.128.448.173.036.01.088.019.13.028l.009.003.007.001c.297.064.584-.098.645-.365.06-.266-.128-.537-.423-.608zM16.4 9.701l-1.95 1.746v.005a.44.44 0 0 0 .173.757l.003.01 2.526.728a5.199 5.199 0 0 0-.108-1.674A5.208 5.208 0 0 0 16.4 9.7zm-4.013 5.325a.437.437 0 0 0-.404-.232.44.44 0 0 0-.372.233h-.002l-1.268 2.292a5.164 5.164 0 0 0 3.326.003l-1.27-2.296h-.01zm1.888-1.293a.44.44 0 0 0-.27.036.44.44 0 0 0-.214.572l-.003.004 1.01 2.438a5.15 5.15 0 0 0 2.081-2.615l-2.6-.44-.004.005z",
|
|
1138
1354
|
},
|
|
1139
1355
|
},
|
|
1140
1356
|
});
|
|
1141
1357
|
export const IconGit = createSvgIcon({
|
|
1142
|
-
viewBox:
|
|
1143
|
-
fill:
|
|
1358
|
+
viewBox: "0 0 24 24",
|
|
1359
|
+
fill: "currentColor",
|
|
1144
1360
|
stroke: false,
|
|
1145
1361
|
children: {
|
|
1146
|
-
type:
|
|
1362
|
+
type: "path",
|
|
1147
1363
|
props: {
|
|
1148
|
-
d:
|
|
1364
|
+
d: "M23.546 10.93L13.067.452c-.604-.603-1.582-.603-2.188 0L8.708 2.627l2.76 2.76c.645-.215 1.379-.07 1.889.441.516.515.658 1.258.438 1.9l2.658 2.66c.645-.223 1.387-.078 1.9.435.721.72.721 1.884 0 2.604-.719.719-1.881.719-2.6 0-.539-.541-.674-1.337-.404-1.996L12.86 8.955v6.525c.176.086.342.203.488.348.713.721.713 1.883 0 2.6-.719.721-1.889.721-2.609 0-.719-.719-.719-1.879 0-2.598.182-.18.387-.316.605-.406V8.835c-.217-.091-.424-.222-.6-.401-.545-.545-.676-1.342-.396-2.009L7.636 3.7.45 10.881c-.6.605-.6 1.584 0 2.189l10.48 10.477c.604.604 1.582.604 2.186 0l10.43-10.43c.605-.603.605-1.582 0-2.187",
|
|
1149
1365
|
},
|
|
1150
1366
|
},
|
|
1151
1367
|
});
|
|
1152
1368
|
export const IconGitHub = createSvgIcon({
|
|
1153
|
-
viewBox:
|
|
1154
|
-
fill:
|
|
1369
|
+
viewBox: "0 0 24 24",
|
|
1370
|
+
fill: "currentColor",
|
|
1155
1371
|
stroke: false,
|
|
1156
1372
|
children: {
|
|
1157
|
-
type:
|
|
1373
|
+
type: "path",
|
|
1158
1374
|
props: {
|
|
1159
|
-
d:
|
|
1375
|
+
d: "M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12",
|
|
1160
1376
|
},
|
|
1161
1377
|
},
|
|
1162
1378
|
});
|
|
1163
1379
|
export const IconGitLab = createSvgIcon({
|
|
1164
|
-
viewBox:
|
|
1165
|
-
fill:
|
|
1380
|
+
viewBox: "0 0 24 24",
|
|
1381
|
+
fill: "currentColor",
|
|
1166
1382
|
stroke: false,
|
|
1167
1383
|
children: {
|
|
1168
|
-
type:
|
|
1384
|
+
type: "path",
|
|
1169
1385
|
props: {
|
|
1170
|
-
d:
|
|
1386
|
+
d: "m23.6004 9.5927-.0337-.0862L20.3.9814a.851.851 0 0 0-.3362-.405.8748.8748 0 0 0-.9997.0539.8748.8748 0 0 0-.29.4399l-2.2055 6.748H7.5375l-2.2057-6.748a.8573.8573 0 0 0-.29-.4412.8748.8748 0 0 0-.9997-.0537.8585.8585 0 0 0-.3362.4049L.4332 9.5015l-.0325.0862a6.0657 6.0657 0 0 0 2.0119 7.0105l.0113.0087.03.0213 4.976 3.7264 2.462 1.8633 1.4995 1.1321a1.0085 1.0085 0 0 0 1.2197 0l1.4995-1.1321 2.4619-1.8633 5.006-3.7489.0125-.01a6.0682 6.0682 0 0 0 2.0094-7.003z",
|
|
1171
1387
|
},
|
|
1172
1388
|
},
|
|
1173
1389
|
});
|
|
1174
1390
|
export const IconBitbucket = createSvgIcon({
|
|
1175
|
-
viewBox:
|
|
1176
|
-
fill:
|
|
1391
|
+
viewBox: "0 0 24 24",
|
|
1392
|
+
fill: "currentColor",
|
|
1177
1393
|
stroke: false,
|
|
1178
1394
|
children: {
|
|
1179
|
-
type:
|
|
1395
|
+
type: "path",
|
|
1180
1396
|
props: {
|
|
1181
|
-
d:
|
|
1397
|
+
d: "M.778 1.213a.768.768 0 00-.768.892l3.263 19.81c.084.5.515.868 1.022.873H19.95a.772.772 0 00.77-.646l3.27-20.03a.768.768 0 00-.768-.891zM14.52 15.53H9.522L8.17 8.466h7.561z",
|
|
1182
1398
|
},
|
|
1183
1399
|
},
|
|
1184
1400
|
});
|
|
1185
1401
|
export const IconFigma = createSvgIcon({
|
|
1186
|
-
viewBox:
|
|
1187
|
-
fill:
|
|
1402
|
+
viewBox: "0 0 24 24",
|
|
1403
|
+
fill: "currentColor",
|
|
1188
1404
|
stroke: false,
|
|
1189
1405
|
children: {
|
|
1190
|
-
type:
|
|
1406
|
+
type: "path",
|
|
1191
1407
|
props: {
|
|
1192
|
-
d:
|
|
1408
|
+
d: "M15.852 8.981h-4.588V0h4.588c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.491-4.49 4.491zM12.735 7.51h3.117c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019h-3.117V7.51zm0 1.471H8.148c-2.476 0-4.49-2.014-4.49-4.49S5.672 0 8.148 0h4.588v8.981zm-4.587-7.51c-1.665 0-3.019 1.355-3.019 3.019s1.354 3.02 3.019 3.02h3.117V1.471H8.148zm4.587 15.019H8.148c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h4.588v8.98zM8.148 8.981c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h3.117V8.981H8.148zM8.172 24c-2.489 0-4.515-2.014-4.515-4.49s2.014-4.49 4.49-4.49h4.588v4.441c0 2.503-2.047 4.539-4.563 4.539zm-.024-7.51a3.023 3.023 0 0 0-3.019 3.019c0 1.665 1.365 3.019 3.044 3.019 1.705 0 3.093-1.376 3.093-3.068v-2.97H8.148zm7.704 0h-.098c-2.476 0-4.49-2.014-4.49-4.49s2.014-4.49 4.49-4.49h.098c2.476 0 4.49 2.014 4.49 4.49s-2.014 4.49-4.49 4.49zm-.097-7.509c-1.665 0-3.019 1.355-3.019 3.019s1.355 3.019 3.019 3.019h.098c1.665 0 3.019-1.355 3.019-3.019s-1.355-3.019-3.019-3.019h-.098z",
|
|
1193
1409
|
},
|
|
1194
1410
|
},
|
|
1195
1411
|
});
|
|
1196
1412
|
export const IconVSCode = createSvgIcon({
|
|
1197
|
-
viewBox:
|
|
1198
|
-
fill:
|
|
1413
|
+
viewBox: "0 0 24 24",
|
|
1414
|
+
fill: "currentColor",
|
|
1199
1415
|
stroke: false,
|
|
1200
1416
|
children: {
|
|
1201
|
-
type:
|
|
1417
|
+
type: "path",
|
|
1202
1418
|
props: {
|
|
1203
|
-
d:
|
|
1419
|
+
d: "M23.15 2.587L18.21.21a1.49 1.49 0 0 0-1.705.29l-9.46 8.63l-4.12-3.128a1 1 0 0 0-1.276.057L.327 7.261A1 1 0 0 0 .326 8.74L3.899 12L.326 15.26a1 1 0 0 0 .001 1.479L1.65 17.94a1 1 0 0 0 1.276.057l4.12-3.128l9.46 8.63a1.49 1.49 0 0 0 1.704.29l4.942-2.377A1.5 1.5 0 0 0 24 20.06V3.939a1.5 1.5 0 0 0-.85-1.352m-5.146 14.861L10.826 12l7.178-5.448z",
|
|
1204
1420
|
},
|
|
1205
1421
|
},
|
|
1206
1422
|
});
|
|
1207
1423
|
export const IconVim = createSvgIcon({
|
|
1208
|
-
viewBox:
|
|
1209
|
-
fill:
|
|
1424
|
+
viewBox: "0 0 24 24",
|
|
1425
|
+
fill: "currentColor",
|
|
1210
1426
|
stroke: false,
|
|
1211
1427
|
children: {
|
|
1212
|
-
type:
|
|
1428
|
+
type: "path",
|
|
1213
1429
|
props: {
|
|
1214
|
-
d:
|
|
1430
|
+
d: "M24 11.986h-.027l-4.318-4.318 4.303-4.414V1.461l-.649-.648h-8.198l-.66.605v1.045L12.015.027V0L12 .014 11.986 0v.027l-1.29 1.291-.538-.539H2.035l-.638.692v1.885l.616.616h.72v5.31L.027 11.987H0L.014 12 0 12.014h.027l2.706 2.706v6.467l.907.523h2.322l1.857-1.904 4.166 4.166V24l.015-.014.014.014v-.028l2.51-2.509h.485c.111 0 .211-.07.25-.179l.146-.426c.028-.084.012-.172-.037-.239l1.462-1.462-.612 1.962c-.043.141.036.289.177.332.025.008.052.012.078.012h1.824c.106-.001.201-.064.243-.163l.165-.394c.025-.065.024-.138-.004-.203-.027-.065-.08-.116-.146-.142-.029-.012-.062-.019-.097-.02h-.075l.84-2.644h1.232l-1.016 3.221c-.043.141.036.289.176.332.025.008.052.012.079.012h2.002c.11 0 .207-.066.248-.17l.164-.428c.051-.138-.021-.29-.158-.341-.029-.011-.06-.017-.091-.017h-.145l1.131-3.673c.027-.082.012-.173-.039-.24l-.375-.504-.003-.005c-.051-.064-.127-.102-.209-.102h-1.436c-.071 0-.141.03-.19.081l-.4.439h-.624l-.042-.046 4.445-4.445H24L23.986 12l.014-.014zM9.838 21.139l1.579-4.509h-.501l.297-.304h1.659l-1.563 4.555h.623l-.079.258H9.838zm3.695-7.516l.15.151-.269.922-.225.226h-.969l-.181-.181.311-.871.288-.247h.895zM5.59 20.829H3.877l-.262-.15V3.091H2.379l-.1-.1V1.815l.143-.154h7.371l.213.214v1.108l-.142.173H8.785v8.688l8.807-8.688h-2.086l-.175-.188V1.805l.121-.111h7.49l.132.133v1.07L12.979 13.25h-.373c-.015-.001-.028 0-.042.001l-.02.003c-.045.01-.086.03-.119.06l-.343.295-.004.003c-.033.031-.059.069-.073.111l-.296.83-6.119 6.276zm14.768-3.952l.474-.519h1.334l.309.415-1.265 4.107h.493l-.08.209H19.84l1.124-3.564h-2.015l-1.077 3.391h.424l-.073.174h-1.605l1.107-3.548h-2.096l-1.062 3.339h.436l-.072.209H13.27l1.514-4.46H14.198l.091-.271h1.65l.519.537h.906l.491-.554h1.061l.489.535h.953z",
|
|
1215
1431
|
},
|
|
1216
1432
|
},
|
|
1217
1433
|
});
|
|
1218
1434
|
export const IconIntelliJ = createSvgIcon({
|
|
1219
|
-
viewBox:
|
|
1220
|
-
fill:
|
|
1435
|
+
viewBox: "0 0 24 24",
|
|
1436
|
+
fill: "currentColor",
|
|
1221
1437
|
stroke: false,
|
|
1222
1438
|
children: {
|
|
1223
|
-
type:
|
|
1439
|
+
type: "path",
|
|
1224
1440
|
props: {
|
|
1225
|
-
d:
|
|
1441
|
+
d: "M0 0v24h24V0zm3.723 3.111h5v1.834h-1.39v6.277h1.39v1.834h-5v-1.834h1.444V4.945H3.723zm11.055 0H17v6.5c0 .612-.055 1.111-.222 1.556-.167.444-.39.777-.723 1.11-.277.279-.666.557-1.11.668a3.933 3.933 0 0 1-1.445.278c-.778 0-1.444-.167-1.944-.445a4.81 4.81 0 0 1-1.279-1.056l1.39-1.555c.277.334.555.555.833.722.277.167.611.278.945.278.389 0 .721-.111 1-.389.221-.278.333-.667.333-1.278zM2.222 19.5h9V21h-9z",
|
|
1226
1442
|
},
|
|
1227
1443
|
},
|
|
1228
1444
|
});
|
|
1229
1445
|
export const IconChrome = createSvgIcon({
|
|
1230
|
-
viewBox:
|
|
1231
|
-
fill:
|
|
1446
|
+
viewBox: "0 0 24 24",
|
|
1447
|
+
fill: "currentColor",
|
|
1232
1448
|
stroke: false,
|
|
1233
1449
|
children: {
|
|
1234
|
-
type:
|
|
1450
|
+
type: "path",
|
|
1235
1451
|
props: {
|
|
1236
|
-
d:
|
|
1452
|
+
d: "M12 0C8.21 0 4.831 1.757 2.632 4.501l3.953 6.848A5.454 5.454 0 0 1 12 6.545h10.691A12 12 0 0 0 12 0zM1.931 5.47A11.943 11.943 0 0 0 0 12c0 6.012 4.42 10.991 10.189 11.864l3.953-6.847a5.45 5.45 0 0 1-6.865-2.29zm13.342 2.166a5.446 5.446 0 0 1 1.45 7.09l.002.001h-.002l-5.344 9.257c.206.01.413.016.621.016 6.627 0 12-5.373 12-12 0-1.54-.29-3.011-.818-4.364zM12 16.364a4.364 4.364 0 1 1 0-8.728 4.364 4.364 0 0 1 0 8.728Z",
|
|
1237
1453
|
},
|
|
1238
1454
|
},
|
|
1239
1455
|
});
|
|
1240
1456
|
export const IconFirefox = createSvgIcon({
|
|
1241
|
-
viewBox:
|
|
1242
|
-
fill:
|
|
1457
|
+
viewBox: "0 0 24 24",
|
|
1458
|
+
fill: "currentColor",
|
|
1243
1459
|
stroke: false,
|
|
1244
1460
|
children: {
|
|
1245
|
-
type:
|
|
1461
|
+
type: "path",
|
|
1246
1462
|
props: {
|
|
1247
|
-
d:
|
|
1463
|
+
d: "M8.824 7.287c.008 0 .004 0 0 0zm-2.8-1.4c.006 0 .003 0 0 0zm16.754 2.161c-.505-1.215-1.53-2.528-2.333-2.943.654 1.283 1.033 2.57 1.177 3.53l.002.02c-1.314-3.278-3.544-4.6-5.366-7.477-.091-.147-.184-.292-.273-.446a3.545 3.545 0 01-.13-.24 2.118 2.118 0 01-.172-.46.03.03 0 00-.027-.03.038.038 0 00-.021 0l-.006.001a.037.037 0 00-.01.005L15.624 0c-2.585 1.515-3.657 4.168-3.932 5.856a6.197 6.197 0 00-2.305.587.297.297 0 00-.147.37c.057.162.24.24.396.17a5.622 5.622 0 012.008-.523l.067-.005a5.847 5.847 0 011.957.222l.095.03a5.816 5.816 0 01.616.228c.08.036.16.073.238.112l.107.055a5.835 5.835 0 01.368.211 5.953 5.953 0 012.034 2.104c-.62-.437-1.733-.868-2.803-.681 4.183 2.09 3.06 9.292-2.737 9.02a5.164 5.164 0 01-1.513-.292 4.42 4.42 0 01-.538-.232c-1.42-.735-2.593-2.121-2.74-3.806 0 0 .537-2 3.845-2 .357 0 1.38-.998 1.398-1.287-.005-.095-2.029-.9-2.817-1.677-.422-.416-.622-.616-.8-.767a3.47 3.47 0 00-.301-.227 5.388 5.388 0 01-.032-2.842c-1.195.544-2.124 1.403-2.8 2.163h-.006c-.46-.584-.428-2.51-.402-2.913-.006-.025-.343.176-.389.206-.406.29-.787.616-1.136.974-.397.403-.76.839-1.085 1.303a9.816 9.816 0 00-1.562 3.52c-.003.013-.11.487-.19 1.073-.013.09-.026.181-.037.272a7.8 7.8 0 00-.069.667l-.002.034-.023.387-.001.06C.386 18.795 5.593 24 12.016 24c5.752 0 10.527-4.176 11.463-9.661.02-.149.035-.298.052-.448.232-1.994-.025-4.09-.753-5.844z",
|
|
1248
1464
|
},
|
|
1249
1465
|
},
|
|
1250
1466
|
});
|
|
1251
1467
|
export const IconWindows = createSvgIcon({
|
|
1252
|
-
viewBox:
|
|
1253
|
-
fill:
|
|
1468
|
+
viewBox: "0 0 24 24",
|
|
1469
|
+
fill: "currentColor",
|
|
1254
1470
|
stroke: false,
|
|
1255
1471
|
children: {
|
|
1256
|
-
type:
|
|
1472
|
+
type: "path",
|
|
1257
1473
|
props: {
|
|
1258
|
-
d:
|
|
1474
|
+
d: "M0 3.449L9.75 2.1v9.451H0m10.949-9.602L24 0v11.4H10.949M0 12.6h9.75v9.451L0 20.699M10.949 12.6H24V24l-12.9-1.801",
|
|
1259
1475
|
},
|
|
1260
1476
|
},
|
|
1261
1477
|
});
|
|
1262
1478
|
export const IconApple = createSvgIcon({
|
|
1263
|
-
viewBox:
|
|
1264
|
-
fill:
|
|
1479
|
+
viewBox: "0 0 24 24",
|
|
1480
|
+
fill: "currentColor",
|
|
1265
1481
|
stroke: false,
|
|
1266
1482
|
children: {
|
|
1267
|
-
type:
|
|
1483
|
+
type: "path",
|
|
1268
1484
|
props: {
|
|
1269
|
-
d:
|
|
1485
|
+
d: "M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701",
|
|
1270
1486
|
},
|
|
1271
1487
|
},
|
|
1272
1488
|
});
|
|
1273
1489
|
export const IconLinux = createSvgIcon({
|
|
1274
|
-
viewBox:
|
|
1275
|
-
fill:
|
|
1490
|
+
viewBox: "0 0 24 24",
|
|
1491
|
+
fill: "currentColor",
|
|
1276
1492
|
stroke: false,
|
|
1277
1493
|
children: {
|
|
1278
|
-
type:
|
|
1494
|
+
type: "path",
|
|
1279
1495
|
props: {
|
|
1280
|
-
d:
|
|
1496
|
+
d: "M12.504 0c-.155 0-.315.008-.48.021-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a.424.424 0 00-.11.135c-.26.268-.45.6-.663.839-.199.199-.485.267-.797.4-.313.136-.658.269-.864.68-.09.189-.136.394-.132.602 0 .199.027.4.055.536.058.399.116.728.04.97-.249.68-.28 1.145-.106 1.484.174.334.535.47.94.601.81.2 1.91.135 2.774.6.926.466 1.866.67 2.616.47.526-.116.97-.464 1.208-.946.587-.003 1.23-.269 2.26-.334.699-.058 1.574.267 2.577.2.025.134.063.198.114.333l.003.003c.391.778 1.113 1.132 1.884 1.071.771-.06 1.592-.536 2.257-1.306.631-.765 1.683-1.084 2.378-1.503.348-.199.629-.469.649-.853.023-.4-.2-.811-.714-1.376v-.097l-.003-.003c-.17-.2-.25-.535-.338-.926-.085-.401-.182-.786-.492-1.046h-.003c-.059-.054-.123-.067-.188-.135a.357.357 0 00-.19-.064c.431-1.278.264-2.55-.173-3.694-.533-1.41-1.465-2.638-2.175-3.483-.796-1.005-1.576-1.957-1.56-3.368.026-2.152.236-6.133-3.544-6.139zm.529 3.405h.013c.213 0 .396.062.584.198.19.135.33.332.438.533.105.259.158.459.166.724 0-.02.006-.04.006-.06v.105a.086.086 0 01-.004-.021l-.004-.024a1.807 1.807 0 01-.15.706.953.953 0 01-.213.335.71.71 0 00-.088-.042c-.104-.045-.198-.064-.284-.133a1.312 1.312 0 00-.22-.066c.05-.06.146-.133.183-.198.053-.128.082-.264.088-.402v-.02a1.21 1.21 0 00-.061-.4c-.045-.134-.101-.2-.183-.333-.084-.066-.167-.132-.267-.132h-.016c-.093 0-.176.03-.262.132a.8.8 0 00-.205.334 1.18 1.18 0 00-.09.4v.019c.002.089.008.179.02.267-.193-.067-.438-.135-.607-.202a1.635 1.635 0 01-.018-.2v-.02a1.772 1.772 0 01.15-.768c.082-.22.232-.406.43-.533a.985.985 0 01.594-.2zm-2.962.059h.036c.142 0 .27.048.399.135.146.129.264.288.344.465.09.199.14.4.153.667v.004c.007.134.006.2-.002.266v.08c-.03.007-.056.018-.083.024-.152.055-.274.135-.393.2.012-.09.013-.18.003-.267v-.015c-.012-.133-.04-.2-.082-.333a.613.613 0 00-.166-.267.248.248 0 00-.183-.064h-.021c-.071.006-.13.04-.186.132a.552.552 0 00-.12.27.944.944 0 00-.023.33v.015c.012.135.037.2.08.334.046.134.098.2.166.268.01.009.02.018.034.024-.07.057-.117.07-.176.136a.304.304 0 01-.131.068 2.62 2.62 0 01-.275-.402 1.772 1.772 0 01-.155-.667 1.759 1.759 0 01.08-.668 1.43 1.43 0 01.283-.535c.128-.133.26-.2.418-.2zm1.37 1.706c.332 0 .733.065 1.216.399.293.2.523.269 1.052.468h.003c.255.136.405.266.478.399v-.131a.571.571 0 01.016.47c-.123.31-.516.643-1.063.842v.002c-.268.135-.501.333-.775.465-.276.135-.588.292-1.012.267a1.139 1.139 0 01-.448-.067 3.566 3.566 0 01-.322-.198c-.195-.135-.363-.332-.612-.465v-.005h-.005c-.4-.246-.616-.512-.686-.71-.07-.268-.005-.47.193-.6.224-.135.38-.271.483-.336.104-.074.143-.102.176-.131h.002v-.003c.169-.202.436-.47.839-.601.139-.036.294-.065.466-.065zm2.8 2.142c.358 1.417 1.196 3.475 1.735 4.473.286.534.855 1.659 1.102 3.024.156-.005.33.018.513.064.646-1.671-.546-3.467-1.089-3.966-.22-.2-.232-.335-.123-.335.59.534 1.365 1.572 1.646 2.757.13.535.16 1.104.021 1.67.067.028.135.06.205.067 1.032.534 1.413.938 1.23 1.537v-.043c-.06-.003-.12 0-.18 0h-.016c.151-.467-.182-.825-1.065-1.224-.915-.4-1.646-.336-1.77.465-.008.043-.013.066-.018.135-.068.023-.139.053-.209.064-.43.268-.662.669-.793 1.187-.13.533-.17 1.156-.205 1.869v.003c-.02.334-.17.838-.319 1.35-1.5 1.072-3.58 1.538-5.348.334a2.645 2.645 0 00-.402-.533 1.45 1.45 0 00-.275-.333c.182 0 .338-.03.465-.067a.615.615 0 00.314-.334c.108-.267 0-.697-.345-1.163-.345-.467-.931-.995-1.788-1.521-.63-.4-.986-.87-1.15-1.396-.165-.534-.143-1.085-.015-1.645.245-1.07.873-2.11 1.274-2.763.107-.065.037.135-.408.974-.396.751-1.14 2.497-.122 3.854a8.123 8.123 0 01.647-2.876c.564-1.278 1.743-3.504 1.836-5.268.048.036.217.135.289.202.218.133.38.333.59.465.21.201.477.335.876.335.039.003.075.006.11.006.412 0 .73-.134.997-.268.29-.134.52-.334.74-.4h.005c.467-.135.835-.402 1.044-.7zm2.185 8.958c.037.6.343 1.245.882 1.377.588.134 1.434-.333 1.791-.765l.211-.01c.315-.007.577.01.847.268l.003.003c.208.199.305.53.391.876.085.4.154.78.409 1.066.486.527.645.906.636 1.14l.003-.007v.018l-.003-.012c-.015.262-.185.396-.498.595-.63.401-1.746.712-2.457 1.57-.618.737-1.37 1.14-2.036 1.191-.664.053-1.237-.2-1.574-.898l-.005-.003c-.21-.4-.12-1.025.056-1.69.176-.668.428-1.344.463-1.897.037-.714.076-1.335.195-1.814.12-.465.308-.797.641-.984l.045-.022zm-10.814.049h.01c.053 0 .105.005.157.014.376.055.706.333 1.023.752l.91 1.664.003.003c.243.533.754 1.064 1.189 1.637.434.598.77 1.131.729 1.57v.006c-.057.744-.48 1.148-1.125 1.294-.645.135-1.52.002-2.395-.464-.968-.536-2.118-.469-2.857-.602-.369-.066-.61-.2-.723-.4-.11-.2-.113-.602.123-1.23v-.004l.002-.003c.117-.334.03-.752-.027-1.118-.055-.401-.083-.71.043-.94.16-.334.396-.4.69-.533.294-.135.64-.202.915-.47h.002v-.002c.256-.268.445-.601.668-.838.19-.201.38-.336.663-.336zm7.159-9.074c-.435.201-.945.535-1.488.535-.542 0-.97-.267-1.28-.466-.154-.134-.28-.268-.373-.335-.164-.134-.144-.333-.074-.333.109.016.129.134.199.2.096.066.215.2.36.333.292.2.68.467 1.167.467.485 0 1.053-.267 1.398-.466.195-.135.445-.334.648-.467.156-.136.149-.267.279-.267.128.016.034.134-.147.332a8.097 8.097 0 01-.69.468zm-1.082-1.583V5.64c-.006-.02.013-.042.029-.05.074-.043.18-.027.26.004.063 0 .16.067.15.135-.006.049-.085.066-.135.066-.055 0-.092-.043-.141-.068-.052-.018-.146-.008-.163-.065zm-.551 0c-.02.058-.113.049-.166.066-.047.025-.086.068-.14.068-.05 0-.13-.02-.136-.068-.01-.066.088-.133.15-.133.08-.031.184-.047.259-.005.019.009.036.03.03.05v.02h.003z",
|
|
1281
1497
|
},
|
|
1282
1498
|
},
|
|
1283
1499
|
});
|
|
1284
1500
|
export const IconAndroid = createSvgIcon({
|
|
1285
|
-
viewBox:
|
|
1286
|
-
fill:
|
|
1501
|
+
viewBox: "0 0 24 24",
|
|
1502
|
+
fill: "currentColor",
|
|
1287
1503
|
stroke: false,
|
|
1288
1504
|
children: {
|
|
1289
|
-
type:
|
|
1505
|
+
type: "path",
|
|
1290
1506
|
props: {
|
|
1291
|
-
d:
|
|
1507
|
+
d: "M18.4395 5.5586c-.675 1.1664-1.352 2.3318-2.0274 3.498-.0366-.0155-.0742-.0286-.1113-.043-1.8249-.6957-3.484-.8-4.42-.787-1.8551.0185-3.3544.4643-4.2597.8203-.084-.1494-1.7526-3.021-2.0215-3.4864a1.1451 1.1451 0 0 0-.1406-.1914c-.3312-.364-.9054-.4859-1.379-.203-.475.282-.7136.9361-.3886 1.5019 1.9466 3.3696-.0966-.2158 1.9473 3.3593.0172.031-.4946.2642-1.3926 1.0177C2.8987 12.176.452 14.772 0 18.9902h24c-.119-1.1108-.3686-2.099-.7461-3.0683-.7438-1.9118-1.8435-3.2928-2.7402-4.1836a12.1048 12.1048 0 0 0-2.1309-1.6875c.6594-1.122 1.312-2.2559 1.9649-3.3848.2077-.3615.1886-.7956-.0079-1.1191a1.1001 1.1001 0 0 0-.8515-.5332c-.5225-.0536-.9392.3128-1.0488.5449zm-.0391 8.461c.3944.5926.324 1.3306-.1563 1.6503-.4799.3197-1.188.0985-1.582-.4941-.3944-.5927-.324-1.3307.1563-1.6504.4727-.315 1.1812-.1086 1.582.4941zM7.207 13.5273c.4803.3197.5506 1.0577.1563 1.6504-.394.5926-1.1038.8138-1.584.4941-.48-.3197-.5503-1.0577-.1563-1.6504.4008-.6021 1.1087-.8106 1.584-.4941z",
|
|
1292
1508
|
},
|
|
1293
1509
|
},
|
|
1294
1510
|
});
|
|
1295
1511
|
export const IconHeroku = createSvgIcon({
|
|
1296
|
-
viewBox:
|
|
1297
|
-
fill:
|
|
1512
|
+
viewBox: "0 0 24 24",
|
|
1513
|
+
fill: "currentColor",
|
|
1298
1514
|
stroke: false,
|
|
1299
1515
|
children: {
|
|
1300
|
-
type:
|
|
1516
|
+
type: "path",
|
|
1301
1517
|
props: {
|
|
1302
|
-
d:
|
|
1518
|
+
d: "M18.238 4.505c-.282-.204-.616-.303-.975-.303H6.737c-.359 0-.693.1-1.007.315-.619.417-.975 1.089-.975 1.858v1.67c0 .078.063.141.141.141h1.809a.141.141 0 0 0 .141-.141V6.258c0-.33.184-.637.494-.801.095-.051.201-.076.308-.076h9.545c.111 0 .219.026.319.078.303.16.485.459.485.785v9.537c0 .33-.182.637-.485.799a1.028 1.028 0 0 1-.319.076H8.559a.141.141 0 0 0-.141.141v1.644c0 .078.063.141.141.141h8.704c.365 0 .705-.101 1.002-.303.623-.42.978-1.091.978-1.86V6.363c0-.77-.355-1.443-.996-1.858z",
|
|
1303
1519
|
},
|
|
1304
1520
|
},
|
|
1305
1521
|
});
|
|
1306
1522
|
export const IconVercel = createSvgIcon({
|
|
1307
|
-
viewBox:
|
|
1308
|
-
fill:
|
|
1523
|
+
viewBox: "0 0 24 24",
|
|
1524
|
+
fill: "currentColor",
|
|
1309
1525
|
stroke: false,
|
|
1310
1526
|
children: {
|
|
1311
|
-
type:
|
|
1527
|
+
type: "path",
|
|
1312
1528
|
props: {
|
|
1313
|
-
d:
|
|
1529
|
+
d: "m12 1.608 12 20.784H0Z",
|
|
1314
1530
|
},
|
|
1315
1531
|
},
|
|
1316
1532
|
});
|
|
1317
1533
|
export const IconNetlify = createSvgIcon({
|
|
1318
|
-
viewBox:
|
|
1319
|
-
fill:
|
|
1534
|
+
viewBox: "0 0 24 24",
|
|
1535
|
+
fill: "currentColor",
|
|
1320
1536
|
stroke: false,
|
|
1321
1537
|
children: {
|
|
1322
|
-
type:
|
|
1538
|
+
type: "path",
|
|
1323
1539
|
props: {
|
|
1324
|
-
d:
|
|
1540
|
+
d: "M6.49 19.04h-.23L5.13 17.9v-.23l1.73-1.71h1.2l.15.15v1.2L6.5 19.04ZM5.13 6.31V6.1l1.13-1.13h.23L8.2 6.68v1.2l-.15.15h-1.2L5.13 6.31Zm9.96 9.09h-1.65l-.14-.13v-3.83c0-.68-.27-1.2-1.1-1.23-.42 0-.9 0-1.43.02l-.07.08v4.96l-.14.14H8.9l-.13-.14V8.73l.13-.14h3.7a2.6 2.6 0 0 1 2.61 2.6v4.08l-.13.14Zm-8.37-2.44H.14L0 12.82v-1.64l.14-.14h6.58l.14.14v1.64l-.14.14Zm17.14 0h-6.58l-.14-.14v-1.64l.14-.14h6.58l.14.14v1.64l-.14.14ZM11.05 6.55V1.64l.14-.14h1.65l.14.14v4.9l-.14.14h-1.65l-.14-.13Zm0 15.81v-4.9l.14-.14h1.65l.14.13v4.91l-.14.14h-1.65l-.14-.14Z",
|
|
1325
1541
|
},
|
|
1326
1542
|
},
|
|
1327
1543
|
});
|
|
1328
1544
|
export const IconCloudflare = createSvgIcon({
|
|
1329
|
-
viewBox:
|
|
1330
|
-
fill:
|
|
1545
|
+
viewBox: "0 0 24 24",
|
|
1546
|
+
fill: "currentColor",
|
|
1331
1547
|
stroke: false,
|
|
1332
1548
|
children: {
|
|
1333
|
-
type:
|
|
1549
|
+
type: "path",
|
|
1334
1550
|
props: {
|
|
1335
|
-
d:
|
|
1551
|
+
d: "M16.5088 16.8447c.1475-.5068.0908-.9707-.1553-1.3154-.2246-.3164-.6045-.499-1.0615-.5205l-8.6592-.1123a.1559.1559 0 0 1-.1333-.0713c-.0283-.042-.0351-.0986-.021-.1553.0278-.084.1123-.1484.2036-.1562l8.7359-.1123c1.0351-.0489 2.1601-.8868 2.5537-1.9136l.499-1.3013c.0215-.0561.0293-.1128.0147-.168-.5625-2.5463-2.835-4.4453-5.5499-4.4453-2.5039 0-4.6284 1.6177-5.3876 3.8614-.4927-.3658-1.1187-.5625-1.794-.499-1.2026.119-2.1665 1.083-2.2861 2.2856-.0283.31-.0069.6128.0635.894C1.5683 13.171 0 14.7754 0 16.752c0 .1748.0142.3515.0352.5273.0141.083.0844.1475.1689.1475h15.9814c.0909 0 .1758-.0645.2032-.1553l.12-.4268zm2.7568-5.5634c-.0771 0-.1611 0-.2383.0112-.0566 0-.1054.0415-.127.0976l-.3378 1.1744c-.1475.5068-.0918.9707.1543 1.3164.2256.3164.6055.498 1.0625.5195l1.8437.1133c.0557 0 .1055.0263.1329.0703.0283.043.0351.1074.0214.1562-.0283.084-.1132.1485-.204.1553l-1.921.1123c-1.041.0488-2.1582.8867-2.5527 1.914l-.1406.3585c-.0283.0713.0215.1416.0986.1416h6.5977c.0771 0 .1474-.0489.169-.126.1122-.4082.1757-.837.1757-1.2803 0-2.6025-2.125-4.727-4.7344-4.727",
|
|
1336
1552
|
},
|
|
1337
1553
|
},
|
|
1338
1554
|
});
|
|
1339
1555
|
export const IconAWS = createSvgIcon({
|
|
1340
|
-
viewBox:
|
|
1341
|
-
fill:
|
|
1556
|
+
viewBox: "0 0 24 24",
|
|
1557
|
+
fill: "currentColor",
|
|
1342
1558
|
stroke: false,
|
|
1343
1559
|
children: {
|
|
1344
|
-
type:
|
|
1560
|
+
type: "path",
|
|
1345
1561
|
props: {
|
|
1346
|
-
d:
|
|
1562
|
+
d: "M6.763 10.036q.002.446.088.71c.064.176.144.368.256.576c.04.063.056.127.056.183q.002.12-.152.24l-.503.335a.4.4 0 0 1-.208.072q-.12-.002-.239-.112a2.5 2.5 0 0 1-.287-.375a6 6 0 0 1-.248-.471q-.934 1.101-2.347 1.101c-.67 0-1.205-.191-1.596-.574q-.588-.575-.59-1.533c0-.678.239-1.23.726-1.644c.487-.415 1.133-.623 1.955-.623c.272 0 .551.024.846.064c.296.04.6.104.918.176v-.583q-.001-.909-.375-1.277c-.255-.248-.686-.367-1.3-.367c-.28 0-.568.031-.863.103q-.443.106-.862.272a2 2 0 0 1-.28.104a.5.5 0 0 1-.127.023q-.168.002-.168-.247v-.391c0-.128.016-.224.056-.28a.6.6 0 0 1 .224-.167a4.6 4.6 0 0 1 1.005-.36a4.8 4.8 0 0 1 1.246-.151c.95 0 1.644.216 2.091.647q.66.645.662 1.963v2.586zm-3.24 1.214c.263 0 .534-.048.822-.144a1.8 1.8 0 0 0 .758-.51a1.3 1.3 0 0 0 .272-.512c.047-.191.08-.423.08-.694v-.335a7 7 0 0 0-.735-.136a6 6 0 0 0-.75-.048c-.535 0-.926.104-1.19.32c-.263.215-.39.518-.39.917c0 .375.095.655.295.846c.191.2.47.296.838.296m6.41.862c-.144 0-.24-.024-.304-.08c-.064-.048-.12-.16-.168-.311L7.586 5.55a1.4 1.4 0 0 1-.072-.32c0-.128.064-.2.191-.2h.783q.227-.001.31.08c.065.048.113.16.16.312l1.342 5.284l1.245-5.284q.058-.24.151-.312a.55.55 0 0 1 .32-.08h.638c.152 0 .256.025.32.08c.063.048.12.16.151.312l1.261 5.348l1.381-5.348q.074-.24.16-.312a.52.52 0 0 1 .311-.08h.743c.127 0 .2.065.2.2c0 .04-.009.08-.017.128a1 1 0 0 1-.056.2l-1.923 6.17q-.072.24-.168.311a.5.5 0 0 1-.303.08h-.687c-.151 0-.255-.024-.32-.08c-.063-.056-.119-.16-.15-.32l-1.238-5.148l-1.23 5.14c-.04.16-.087.264-.15.32c-.065.056-.177.08-.32.08zm10.256.215c-.415 0-.83-.048-1.229-.143c-.399-.096-.71-.2-.918-.32c-.128-.071-.215-.151-.247-.223a.6.6 0 0 1-.048-.224v-.407c0-.167.064-.247.183-.247q.072 0 .144.024c.048.016.12.048.2.08q.408.181.878.279c.319.064.63.096.95.096c.502 0 .894-.088 1.165-.264a.86.86 0 0 0 .415-.758a.78.78 0 0 0-.215-.559c-.144-.151-.416-.287-.807-.415l-1.157-.36c-.583-.183-1.014-.454-1.277-.813a1.9 1.9 0 0 1-.4-1.158q0-.502.216-.886c.144-.255.335-.479.575-.654c.24-.184.51-.32.83-.415c.32-.096.655-.136 1.006-.136c.175 0 .359.008.535.032c.183.024.35.056.518.088q.24.058.455.127q.216.072.336.144a.7.7 0 0 1 .24.2a.43.43 0 0 1 .071.263v.375q-.002.254-.184.256a.8.8 0 0 1-.303-.096a3.65 3.65 0 0 0-1.532-.311c-.455 0-.815.071-1.062.223s-.375.383-.375.71c0 .224.08.416.24.567c.159.152.454.304.877.44l1.134.358c.574.184.99.44 1.237.767s.367.702.367 1.117c0 .343-.072.655-.207.926a2.2 2.2 0 0 1-.583.703c-.248.2-.543.343-.886.447c-.36.111-.734.167-1.142.167m1.509 3.88c-2.626 1.94-6.442 2.969-9.722 2.969c-4.598 0-8.74-1.7-11.87-4.526c-.247-.223-.024-.527.272-.351c3.384 1.963 7.559 3.153 11.877 3.153c2.914 0 6.114-.607 9.06-1.852c.439-.2.814.287.383.607m1.094-1.246c-.336-.43-2.22-.207-3.074-.103c-.255.032-.295-.192-.063-.36c1.5-1.053 3.967-.75 4.254-.399c.287.36-.08 2.826-1.485 4.007c-.215.184-.423.088-.327-.151c.32-.79 1.03-2.57.695-2.994",
|
|
1347
1563
|
},
|
|
1348
1564
|
},
|
|
1349
1565
|
});
|
|
1350
1566
|
export const IconGCP = createSvgIcon({
|
|
1351
|
-
viewBox:
|
|
1352
|
-
fill:
|
|
1567
|
+
viewBox: "0 0 24 24",
|
|
1568
|
+
fill: "currentColor",
|
|
1353
1569
|
stroke: false,
|
|
1354
1570
|
children: {
|
|
1355
|
-
type:
|
|
1571
|
+
type: "path",
|
|
1356
1572
|
props: {
|
|
1357
|
-
d:
|
|
1573
|
+
d: "M12.19 2.38a9.344 9.344 0 0 0-9.234 6.893c.053-.02-.055.013 0 0-3.875 2.551-3.922 8.11-.247 10.941l.006-.007-.007.03a6.717 6.717 0 0 0 4.077 1.356h5.173l.03.03h5.192c6.687.053 9.376-8.605 3.835-12.35a9.365 9.365 0 0 0-2.821-4.552l-.043.043.006-.05A9.344 9.344 0 0 0 12.19 2.38zm-.358 4.146c1.244-.04 2.518.368 3.486 1.15a5.186 5.186 0 0 1 1.862 4.078v.518c3.53-.07 3.53 5.262 0 5.193h-5.193l-.008.009v-.04H6.785a2.59 2.59 0 0 1-1.067-.23h.001a2.597 2.597 0 1 1 3.437-3.437l3.013-3.012A6.747 6.747 0 0 0 8.11 8.24c.018-.01.04-.026.054-.023a5.186 5.186 0 0 1 3.67-1.69z",
|
|
1358
1574
|
},
|
|
1359
1575
|
},
|
|
1360
1576
|
});
|
|
1361
1577
|
export const IconAzure = createSvgIcon({
|
|
1362
|
-
viewBox:
|
|
1363
|
-
fill:
|
|
1578
|
+
viewBox: "0 0 24 24",
|
|
1579
|
+
fill: "currentColor",
|
|
1364
1580
|
stroke: false,
|
|
1365
1581
|
children: {
|
|
1366
|
-
type:
|
|
1582
|
+
type: "path",
|
|
1367
1583
|
props: {
|
|
1368
|
-
d:
|
|
1584
|
+
d: "M22.379 23.343a1.62 1.62 0 0 0 1.536-2.14v.002L17.35 1.76A1.62 1.62 0 0 0 15.816.657H8.184A1.62 1.62 0 0 0 6.65 1.76L.086 21.204a1.62 1.62 0 0 0 1.536 2.139h4.741a1.62 1.62 0 0 0 1.535-1.103l.977-2.892l4.947 3.675c.28.208.618.32.966.32m-3.084-12.531l3.624 10.739a.54.54 0 0 1-.51.713v-.001h-.03a.54.54 0 0 1-.322-.106l-9.287-6.9h4.853m6.313 7.006c.116-.326.13-.694.007-1.058L9.79 1.76l-.007-.02h6.034a.54.54 0 0 1 .512.366l6.562 19.445a.54.54 0 0 1-.338.684",
|
|
1369
1585
|
},
|
|
1370
1586
|
},
|
|
1371
1587
|
});
|
|
@@ -1529,15 +1745,37 @@ export default {
|
|
|
1529
1745
|
Azure: IconAzure,
|
|
1530
1746
|
};
|
|
1531
1747
|
export const IconEmberKit = createSvgIcon({
|
|
1532
|
-
viewBox:
|
|
1533
|
-
fill:
|
|
1748
|
+
viewBox: "0 0 32 32",
|
|
1749
|
+
fill: "currentColor",
|
|
1534
1750
|
stroke: false,
|
|
1535
1751
|
children: [
|
|
1536
1752
|
{
|
|
1537
|
-
type:
|
|
1753
|
+
type: "path",
|
|
1538
1754
|
props: {
|
|
1539
|
-
d:
|
|
1755
|
+
d: "M16 2C16 2 25 8 25 17C25 22.5 22 28 18.5 31C17 32 15 32 13.5 31C9.8 27.5 6 21 6 15.5C6 8.5 10.5 3 12 2C13.5 1 14.5 1.5 15 2.5C15.5 3.5 15 5 14 6C13 7 10 10.5 10 14.5C10 18 12.5 21.5 14.5 23.5C15.5 24.5 16.5 24.5 17.5 23.5C19.5 21.5 22 18 22 14.5C22 10.5 19 7 18 6C17 5 16.5 3.5 17 2.5C17.5 1.5 18.5 1 20 2C21.5 3 26 8.5 26 15.5C26 22 22.5 28.5 18.5 31.5",
|
|
1540
1756
|
},
|
|
1541
1757
|
},
|
|
1758
|
+
{
|
|
1759
|
+
type: "path",
|
|
1760
|
+
props: {
|
|
1761
|
+
d: "M16 6C16 6 21 10.5 21 15.5C21 19 19 22.5 17 24.5C16.5 25 15.5 25 15 24.5C13 22.5 11 19 11 15.5C11 10.5 16 6 16 6Z",
|
|
1762
|
+
},
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
type: "circle",
|
|
1766
|
+
props: { cx: "12", cy: "4", r: "1.2" },
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
type: "circle",
|
|
1770
|
+
props: { cx: "20", cy: "4", r: "1.2" },
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
type: "circle",
|
|
1774
|
+
props: { cx: "8", cy: "9", r: "0.8" },
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
type: "circle",
|
|
1778
|
+
props: { cx: "24", cy: "9", r: "0.8" },
|
|
1779
|
+
},
|
|
1542
1780
|
],
|
|
1543
1781
|
});
|