@cypress-design/react-icon 0.2.0 → 0.4.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/CHANGELOG.md +60 -0
- package/Icon.stories.mdx +32 -2
- package/Icon.tsx +12 -44
- package/IconReact.cy.tsx +38 -0
- package/ReadMe.md +50 -7
- package/compileProperties.ts +24 -18
- package/dist/Icon.d.ts +2 -485
- package/dist/Icon.d.ts.map +1 -1
- package/dist/TreeShakableIcons.d.ts +37 -4
- package/dist/TreeShakableIcons.d.ts.map +1 -1
- package/dist/compileProperties.d.ts +3 -6
- package/dist/compileProperties.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +580 -182
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +616 -184
- package/dist/index.umd.js.map +1 -1
- package/generate-icons.js +19 -17
- package/index.ts +6 -5
- package/package.json +4 -3
- package/rollup.config.js +2 -2
- package/tsconfig.build.json +1 -1
- package/Icon.cy.tsx +0 -22
package/dist/index.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import * as iconsRegistry from '@cypress-design/icon-registry';
|
|
3
|
-
import { compileIcon } from '@cypress-design/icon-registry';
|
|
3
|
+
import { ICON_COLOR_PROP_NAMES, compileIcon } from '@cypress-design/icon-registry';
|
|
4
4
|
|
|
5
5
|
/******************************************************************************
|
|
6
6
|
Copyright (c) Microsoft Corporation.
|
|
@@ -40,14 +40,18 @@ function __rest(s, e) {
|
|
|
40
40
|
return t;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
var
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
43
|
+
var compileReactIconProperties = function (_a) {
|
|
44
|
+
var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size, attributes = __rest(_a, ["body", "compiledClasses", "size"]);
|
|
45
|
+
var filteredAttributes = Object.keys(attributes).reduce(function (newAttributes, attrName) {
|
|
46
|
+
if (!ICON_COLOR_PROP_NAMES.includes(attrName)) {
|
|
47
|
+
newAttributes[attrName] =
|
|
48
|
+
attributes[attrName];
|
|
49
|
+
}
|
|
50
|
+
return newAttributes;
|
|
51
|
+
}, {});
|
|
48
52
|
var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
|
|
49
53
|
__html: body
|
|
50
|
-
} },
|
|
54
|
+
} }, filteredAttributes);
|
|
51
55
|
if (attributes.className) {
|
|
52
56
|
compiledClasses.push(attributes.className);
|
|
53
57
|
}
|
|
@@ -57,18 +61,8 @@ var compileReactIconProperties$1 = function (_a) {
|
|
|
57
61
|
return componentProps;
|
|
58
62
|
};
|
|
59
63
|
|
|
60
|
-
var
|
|
61
|
-
|
|
62
|
-
var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
|
|
63
|
-
__html: body
|
|
64
|
-
} }, attributes);
|
|
65
|
-
if (attributes.className) {
|
|
66
|
-
compiledClasses.push(attributes.className);
|
|
67
|
-
}
|
|
68
|
-
if (compiledClasses.length) {
|
|
69
|
-
componentProps.className = compiledClasses.join(' ');
|
|
70
|
-
}
|
|
71
|
-
return componentProps;
|
|
64
|
+
var Icon = function (props) {
|
|
65
|
+
return React.createElement('svg', compileReactIconProperties(compileIcon(props)));
|
|
72
66
|
};
|
|
73
67
|
|
|
74
68
|
var IconActionAddLarge = function (props) {
|
|
@@ -78,7 +72,7 @@ var IconActionAddLarge = function (props) {
|
|
|
78
72
|
};
|
|
79
73
|
var body = iconBodies[size];
|
|
80
74
|
if (!body) {
|
|
81
|
-
throw Error("Icon \"action-add-large\" is not available in size "
|
|
75
|
+
throw Error("Icon \"action-add-large\" is not available in size " + size);
|
|
82
76
|
}
|
|
83
77
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
84
78
|
};
|
|
@@ -89,7 +83,7 @@ var IconActionAddMedium = function (props) {
|
|
|
89
83
|
};
|
|
90
84
|
var body = iconBodies[size];
|
|
91
85
|
if (!body) {
|
|
92
|
-
throw Error("Icon \"action-add-medium\" is not available in size "
|
|
86
|
+
throw Error("Icon \"action-add-medium\" is not available in size " + size);
|
|
93
87
|
}
|
|
94
88
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
95
89
|
};
|
|
@@ -100,7 +94,18 @@ var IconActionAddSmall = function (props) {
|
|
|
100
94
|
};
|
|
101
95
|
var body = iconBodies[size];
|
|
102
96
|
if (!body) {
|
|
103
|
-
throw Error("Icon \"action-add-small\" is not available in size "
|
|
97
|
+
throw Error("Icon \"action-add-small\" is not available in size " + size);
|
|
98
|
+
}
|
|
99
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
100
|
+
};
|
|
101
|
+
var IconActionAddXsmall = function (props) {
|
|
102
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
103
|
+
var iconBodies = {
|
|
104
|
+
"16": "<path d=\"M8 5v6m3-3H5\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
105
|
+
};
|
|
106
|
+
var body = iconBodies[size];
|
|
107
|
+
if (!body) {
|
|
108
|
+
throw Error("Icon \"action-add-xsmall\" is not available in size " + size);
|
|
104
109
|
}
|
|
105
110
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
106
111
|
};
|
|
@@ -111,7 +116,7 @@ var IconActionAdd = function (props) {
|
|
|
111
116
|
};
|
|
112
117
|
var body = iconBodies[size];
|
|
113
118
|
if (!body) {
|
|
114
|
-
throw Error("Icon \"action-add\" is not available in size "
|
|
119
|
+
throw Error("Icon \"action-add\" is not available in size " + size);
|
|
115
120
|
}
|
|
116
121
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
117
122
|
};
|
|
@@ -122,19 +127,62 @@ var IconActionDeleteCircle = function (props) {
|
|
|
122
127
|
};
|
|
123
128
|
var body = iconBodies[size];
|
|
124
129
|
if (!body) {
|
|
125
|
-
throw Error("Icon \"action-delete-circle\" is not available in size "
|
|
130
|
+
throw Error("Icon \"action-delete-circle\" is not available in size " + size);
|
|
131
|
+
}
|
|
132
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
133
|
+
};
|
|
134
|
+
var IconActionDeleteLarge = function (props) {
|
|
135
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
136
|
+
var iconBodies = {
|
|
137
|
+
"16": "<path d=\"M3 13 13 3M3 3l10 10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
138
|
+
};
|
|
139
|
+
var body = iconBodies[size];
|
|
140
|
+
if (!body) {
|
|
141
|
+
throw Error("Icon \"action-delete-large\" is not available in size " + size);
|
|
142
|
+
}
|
|
143
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
144
|
+
};
|
|
145
|
+
var IconActionDeleteMedium = function (props) {
|
|
146
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
147
|
+
var iconBodies = {
|
|
148
|
+
"16": "<path d=\"m4 12 8-8M4 4l8 8\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
149
|
+
};
|
|
150
|
+
var body = iconBodies[size];
|
|
151
|
+
if (!body) {
|
|
152
|
+
throw Error("Icon \"action-delete-medium\" is not available in size " + size);
|
|
153
|
+
}
|
|
154
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
155
|
+
};
|
|
156
|
+
var IconActionDeleteXlarge = function (props) {
|
|
157
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
158
|
+
var iconBodies = {
|
|
159
|
+
"16": "<path d=\"M2 14 14 2M2 2l12 12\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
160
|
+
};
|
|
161
|
+
var body = iconBodies[size];
|
|
162
|
+
if (!body) {
|
|
163
|
+
throw Error("Icon \"action-delete-xlarge\" is not available in size " + size);
|
|
126
164
|
}
|
|
127
165
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
128
166
|
};
|
|
129
167
|
var IconActionDelete = function (props) {
|
|
130
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12"
|
|
168
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
169
|
+
var iconBodies = {
|
|
170
|
+
"12": "<path d=\"M1 11 11 1M1 1l10 10\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
171
|
+
};
|
|
172
|
+
var body = iconBodies[size];
|
|
173
|
+
if (!body) {
|
|
174
|
+
throw Error("Icon \"action-delete\" is not available in size " + size);
|
|
175
|
+
}
|
|
176
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
177
|
+
};
|
|
178
|
+
var IconActionDisableCircleSolid = function (props) {
|
|
179
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
131
180
|
var iconBodies = {
|
|
132
|
-
"
|
|
133
|
-
"16": "<path d=\"M3 13 13 3M3 3l10 10\" class=\"icon-dark\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
181
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"8\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M4 8h8\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
134
182
|
};
|
|
135
183
|
var body = iconBodies[size];
|
|
136
184
|
if (!body) {
|
|
137
|
-
throw Error("Icon \"action-
|
|
185
|
+
throw Error("Icon \"action-disable-circle-solid\" is not available in size " + size);
|
|
138
186
|
}
|
|
139
187
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
140
188
|
};
|
|
@@ -145,7 +193,7 @@ var IconActionExport = function (props) {
|
|
|
145
193
|
};
|
|
146
194
|
var body = iconBodies[size];
|
|
147
195
|
if (!body) {
|
|
148
|
-
throw Error("Icon \"action-export\" is not available in size "
|
|
196
|
+
throw Error("Icon \"action-export\" is not available in size " + size);
|
|
149
197
|
}
|
|
150
198
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
151
199
|
};
|
|
@@ -156,7 +204,7 @@ var IconActionNext = function (props) {
|
|
|
156
204
|
};
|
|
157
205
|
var body = iconBodies[size];
|
|
158
206
|
if (!body) {
|
|
159
|
-
throw Error("Icon \"action-next\" is not available in size "
|
|
207
|
+
throw Error("Icon \"action-next\" is not available in size " + size);
|
|
160
208
|
}
|
|
161
209
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
162
210
|
};
|
|
@@ -167,7 +215,7 @@ var IconActionPlayLarge = function (props) {
|
|
|
167
215
|
};
|
|
168
216
|
var body = iconBodies[size];
|
|
169
217
|
if (!body) {
|
|
170
|
-
throw Error("Icon \"action-play-large\" is not available in size "
|
|
218
|
+
throw Error("Icon \"action-play-large\" is not available in size " + size);
|
|
171
219
|
}
|
|
172
220
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
173
221
|
};
|
|
@@ -178,7 +226,7 @@ var IconActionPlaySmall = function (props) {
|
|
|
178
226
|
};
|
|
179
227
|
var body = iconBodies[size];
|
|
180
228
|
if (!body) {
|
|
181
|
-
throw Error("Icon \"action-play-small\" is not available in size "
|
|
229
|
+
throw Error("Icon \"action-play-small\" is not available in size " + size);
|
|
182
230
|
}
|
|
183
231
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
184
232
|
};
|
|
@@ -189,7 +237,7 @@ var IconActionPower = function (props) {
|
|
|
189
237
|
};
|
|
190
238
|
var body = iconBodies[size];
|
|
191
239
|
if (!body) {
|
|
192
|
-
throw Error("Icon \"action-power\" is not available in size "
|
|
240
|
+
throw Error("Icon \"action-power\" is not available in size " + size);
|
|
193
241
|
}
|
|
194
242
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
195
243
|
};
|
|
@@ -200,7 +248,7 @@ var IconActionQuestionMarkCircle = function (props) {
|
|
|
200
248
|
};
|
|
201
249
|
var body = iconBodies[size];
|
|
202
250
|
if (!body) {
|
|
203
|
-
throw Error("Icon \"action-question-mark-circle\" is not available in size "
|
|
251
|
+
throw Error("Icon \"action-question-mark-circle\" is not available in size " + size);
|
|
204
252
|
}
|
|
205
253
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
206
254
|
};
|
|
@@ -211,7 +259,7 @@ var IconActionQuestionMarkDefault = function (props) {
|
|
|
211
259
|
};
|
|
212
260
|
var body = iconBodies[size];
|
|
213
261
|
if (!body) {
|
|
214
|
-
throw Error("Icon \"action-question-mark-default\" is not available in size "
|
|
262
|
+
throw Error("Icon \"action-question-mark-default\" is not available in size " + size);
|
|
215
263
|
}
|
|
216
264
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
217
265
|
};
|
|
@@ -222,7 +270,7 @@ var IconActionQuestionMarkOutline = function (props) {
|
|
|
222
270
|
};
|
|
223
271
|
var body = iconBodies[size];
|
|
224
272
|
if (!body) {
|
|
225
|
-
throw Error("Icon \"action-question-mark-outline\" is not available in size "
|
|
273
|
+
throw Error("Icon \"action-question-mark-outline\" is not available in size " + size);
|
|
226
274
|
}
|
|
227
275
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
228
276
|
};
|
|
@@ -233,7 +281,7 @@ var IconActionRecord = function (props) {
|
|
|
233
281
|
};
|
|
234
282
|
var body = iconBodies[size];
|
|
235
283
|
if (!body) {
|
|
236
|
-
throw Error("Icon \"action-record\" is not available in size "
|
|
284
|
+
throw Error("Icon \"action-record\" is not available in size " + size);
|
|
237
285
|
}
|
|
238
286
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
239
287
|
};
|
|
@@ -244,7 +292,7 @@ var IconActionRefresh = function (props) {
|
|
|
244
292
|
};
|
|
245
293
|
var body = iconBodies[size];
|
|
246
294
|
if (!body) {
|
|
247
|
-
throw Error("Icon \"action-refresh\" is not available in size "
|
|
295
|
+
throw Error("Icon \"action-refresh\" is not available in size " + size);
|
|
248
296
|
}
|
|
249
297
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
250
298
|
};
|
|
@@ -255,7 +303,7 @@ var IconActionRestart = function (props) {
|
|
|
255
303
|
};
|
|
256
304
|
var body = iconBodies[size];
|
|
257
305
|
if (!body) {
|
|
258
|
-
throw Error("Icon \"action-restart\" is not available in size "
|
|
306
|
+
throw Error("Icon \"action-restart\" is not available in size " + size);
|
|
259
307
|
}
|
|
260
308
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
261
309
|
};
|
|
@@ -266,7 +314,7 @@ var IconActionStop = function (props) {
|
|
|
266
314
|
};
|
|
267
315
|
var body = iconBodies[size];
|
|
268
316
|
if (!body) {
|
|
269
|
-
throw Error("Icon \"action-stop\" is not available in size "
|
|
317
|
+
throw Error("Icon \"action-stop\" is not available in size " + size);
|
|
270
318
|
}
|
|
271
319
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
272
320
|
};
|
|
@@ -277,7 +325,7 @@ var IconArrowCollapse = function (props) {
|
|
|
277
325
|
};
|
|
278
326
|
var body = iconBodies[size];
|
|
279
327
|
if (!body) {
|
|
280
|
-
throw Error("Icon \"arrow-collapse\" is not available in size "
|
|
328
|
+
throw Error("Icon \"arrow-collapse\" is not available in size " + size);
|
|
281
329
|
}
|
|
282
330
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
283
331
|
};
|
|
@@ -288,7 +336,7 @@ var IconArrowDown = function (props) {
|
|
|
288
336
|
};
|
|
289
337
|
var body = iconBodies[size];
|
|
290
338
|
if (!body) {
|
|
291
|
-
throw Error("Icon \"arrow-down\" is not available in size "
|
|
339
|
+
throw Error("Icon \"arrow-down\" is not available in size " + size);
|
|
292
340
|
}
|
|
293
341
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
294
342
|
};
|
|
@@ -299,7 +347,7 @@ var IconArrowExpand = function (props) {
|
|
|
299
347
|
};
|
|
300
348
|
var body = iconBodies[size];
|
|
301
349
|
if (!body) {
|
|
302
|
-
throw Error("Icon \"arrow-expand\" is not available in size "
|
|
350
|
+
throw Error("Icon \"arrow-expand\" is not available in size " + size);
|
|
303
351
|
}
|
|
304
352
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
305
353
|
};
|
|
@@ -310,7 +358,7 @@ var IconArrowLeft = function (props) {
|
|
|
310
358
|
};
|
|
311
359
|
var body = iconBodies[size];
|
|
312
360
|
if (!body) {
|
|
313
|
-
throw Error("Icon \"arrow-left\" is not available in size "
|
|
361
|
+
throw Error("Icon \"arrow-left\" is not available in size " + size);
|
|
314
362
|
}
|
|
315
363
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
316
364
|
};
|
|
@@ -321,51 +369,51 @@ var IconArrowOutlineDown = function (props) {
|
|
|
321
369
|
};
|
|
322
370
|
var body = iconBodies[size];
|
|
323
371
|
if (!body) {
|
|
324
|
-
throw Error("Icon \"arrow-outline-down\" is not available in size "
|
|
372
|
+
throw Error("Icon \"arrow-outline-down\" is not available in size " + size);
|
|
325
373
|
}
|
|
326
374
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
327
375
|
};
|
|
328
|
-
var
|
|
376
|
+
var IconArrowRight = function (props) {
|
|
329
377
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
330
378
|
var iconBodies = {
|
|
331
|
-
"16": "<path d=\"m9 12 4-4m0 0L9 4m4 4H3\" stroke=\"
|
|
379
|
+
"16": "<path d=\"m9 12 4-4m0 0L9 4m4 4H3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
332
380
|
};
|
|
333
381
|
var body = iconBodies[size];
|
|
334
382
|
if (!body) {
|
|
335
|
-
throw Error("Icon \"arrow-
|
|
383
|
+
throw Error("Icon \"arrow-right\" is not available in size " + size);
|
|
336
384
|
}
|
|
337
385
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
338
386
|
};
|
|
339
|
-
var
|
|
387
|
+
var IconArrowUp = function (props) {
|
|
340
388
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
341
389
|
var iconBodies = {
|
|
342
|
-
"16": "<path d=\"
|
|
390
|
+
"16": "<path d=\"M12 7 8 3m0 0L4 7m4-4v10\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
343
391
|
};
|
|
344
392
|
var body = iconBodies[size];
|
|
345
393
|
if (!body) {
|
|
346
|
-
throw Error("Icon \"arrow-
|
|
394
|
+
throw Error("Icon \"arrow-up\" is not available in size " + size);
|
|
347
395
|
}
|
|
348
396
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
349
397
|
};
|
|
350
|
-
var
|
|
398
|
+
var IconCheckmarkOutline = function (props) {
|
|
351
399
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
352
400
|
var iconBodies = {
|
|
353
|
-
"16": "<path d=\"M12 7
|
|
401
|
+
"16": "<path d=\"M12.95 12.95a7 7 0 1 1-9.9-9.9 7 7 0 0 1 9.9 9.9Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" class=\"icon-dark\"/><path d=\"m6 8 1.5 2L10 6\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
354
402
|
};
|
|
355
403
|
var body = iconBodies[size];
|
|
356
404
|
if (!body) {
|
|
357
|
-
throw Error("Icon \"
|
|
405
|
+
throw Error("Icon \"checkmark-outline\" is not available in size " + size);
|
|
358
406
|
}
|
|
359
407
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
360
408
|
};
|
|
361
|
-
var
|
|
409
|
+
var IconCheckmarkSmall = function (props) {
|
|
362
410
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
363
411
|
var iconBodies = {
|
|
364
|
-
"16": "<path d=\"
|
|
412
|
+
"16": "<path d=\"M5 8.5 7.5 11 11 5\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
365
413
|
};
|
|
366
414
|
var body = iconBodies[size];
|
|
367
415
|
if (!body) {
|
|
368
|
-
throw Error("Icon \"checkmark-
|
|
416
|
+
throw Error("Icon \"checkmark-small\" is not available in size " + size);
|
|
369
417
|
}
|
|
370
418
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
371
419
|
};
|
|
@@ -376,7 +424,7 @@ var IconCheckmarkSolid = function (props) {
|
|
|
376
424
|
};
|
|
377
425
|
var body = iconBodies[size];
|
|
378
426
|
if (!body) {
|
|
379
|
-
throw Error("Icon \"checkmark-solid\" is not available in size "
|
|
427
|
+
throw Error("Icon \"checkmark-solid\" is not available in size " + size);
|
|
380
428
|
}
|
|
381
429
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
382
430
|
};
|
|
@@ -387,7 +435,7 @@ var IconCheckmark = function (props) {
|
|
|
387
435
|
};
|
|
388
436
|
var body = iconBodies[size];
|
|
389
437
|
if (!body) {
|
|
390
|
-
throw Error("Icon \"checkmark\" is not available in size "
|
|
438
|
+
throw Error("Icon \"checkmark\" is not available in size " + size);
|
|
391
439
|
}
|
|
392
440
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
393
441
|
};
|
|
@@ -398,7 +446,7 @@ var IconChevronDownDouble = function (props) {
|
|
|
398
446
|
};
|
|
399
447
|
var body = iconBodies[size];
|
|
400
448
|
if (!body) {
|
|
401
|
-
throw Error("Icon \"chevron-down-double\" is not available in size "
|
|
449
|
+
throw Error("Icon \"chevron-down-double\" is not available in size " + size);
|
|
402
450
|
}
|
|
403
451
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
404
452
|
};
|
|
@@ -409,7 +457,7 @@ var IconChevronDownLarge = function (props) {
|
|
|
409
457
|
};
|
|
410
458
|
var body = iconBodies[size];
|
|
411
459
|
if (!body) {
|
|
412
|
-
throw Error("Icon \"chevron-down-large\" is not available in size "
|
|
460
|
+
throw Error("Icon \"chevron-down-large\" is not available in size " + size);
|
|
413
461
|
}
|
|
414
462
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
415
463
|
};
|
|
@@ -421,7 +469,7 @@ var IconChevronDownSmall = function (props) {
|
|
|
421
469
|
};
|
|
422
470
|
var body = iconBodies[size];
|
|
423
471
|
if (!body) {
|
|
424
|
-
throw Error("Icon \"chevron-down-small\" is not available in size "
|
|
472
|
+
throw Error("Icon \"chevron-down-small\" is not available in size " + size);
|
|
425
473
|
}
|
|
426
474
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
427
475
|
};
|
|
@@ -432,7 +480,7 @@ var IconChevronLeftDouble = function (props) {
|
|
|
432
480
|
};
|
|
433
481
|
var body = iconBodies[size];
|
|
434
482
|
if (!body) {
|
|
435
|
-
throw Error("Icon \"chevron-left-double\" is not available in size "
|
|
483
|
+
throw Error("Icon \"chevron-left-double\" is not available in size " + size);
|
|
436
484
|
}
|
|
437
485
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
438
486
|
};
|
|
@@ -443,7 +491,7 @@ var IconChevronLeftLarge = function (props) {
|
|
|
443
491
|
};
|
|
444
492
|
var body = iconBodies[size];
|
|
445
493
|
if (!body) {
|
|
446
|
-
throw Error("Icon \"chevron-left-large\" is not available in size "
|
|
494
|
+
throw Error("Icon \"chevron-left-large\" is not available in size " + size);
|
|
447
495
|
}
|
|
448
496
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
449
497
|
};
|
|
@@ -455,7 +503,7 @@ var IconChevronLeftSmall = function (props) {
|
|
|
455
503
|
};
|
|
456
504
|
var body = iconBodies[size];
|
|
457
505
|
if (!body) {
|
|
458
|
-
throw Error("Icon \"chevron-left-small\" is not available in size "
|
|
506
|
+
throw Error("Icon \"chevron-left-small\" is not available in size " + size);
|
|
459
507
|
}
|
|
460
508
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
461
509
|
};
|
|
@@ -466,7 +514,7 @@ var IconChevronRightDouble = function (props) {
|
|
|
466
514
|
};
|
|
467
515
|
var body = iconBodies[size];
|
|
468
516
|
if (!body) {
|
|
469
|
-
throw Error("Icon \"chevron-right-double\" is not available in size "
|
|
517
|
+
throw Error("Icon \"chevron-right-double\" is not available in size " + size);
|
|
470
518
|
}
|
|
471
519
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
472
520
|
};
|
|
@@ -477,7 +525,7 @@ var IconChevronRightLarge = function (props) {
|
|
|
477
525
|
};
|
|
478
526
|
var body = iconBodies[size];
|
|
479
527
|
if (!body) {
|
|
480
|
-
throw Error("Icon \"chevron-right-large\" is not available in size "
|
|
528
|
+
throw Error("Icon \"chevron-right-large\" is not available in size " + size);
|
|
481
529
|
}
|
|
482
530
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
483
531
|
};
|
|
@@ -489,18 +537,7 @@ var IconChevronRightSmall = function (props) {
|
|
|
489
537
|
};
|
|
490
538
|
var body = iconBodies[size];
|
|
491
539
|
if (!body) {
|
|
492
|
-
throw Error("Icon \"chevron-right-small\" is not available in size "
|
|
493
|
-
}
|
|
494
|
-
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
495
|
-
};
|
|
496
|
-
var IconChevronRight = function (props) {
|
|
497
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
498
|
-
var iconBodies = {
|
|
499
|
-
"16": "<path d=\"m6 12 4-4-4-4\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
500
|
-
};
|
|
501
|
-
var body = iconBodies[size];
|
|
502
|
-
if (!body) {
|
|
503
|
-
throw Error("Icon \"chevron-right\" is not available in size ".concat(size));
|
|
540
|
+
throw Error("Icon \"chevron-right-small\" is not available in size " + size);
|
|
504
541
|
}
|
|
505
542
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
506
543
|
};
|
|
@@ -511,7 +548,7 @@ var IconChevronUpDouble = function (props) {
|
|
|
511
548
|
};
|
|
512
549
|
var body = iconBodies[size];
|
|
513
550
|
if (!body) {
|
|
514
|
-
throw Error("Icon \"chevron-up-double\" is not available in size "
|
|
551
|
+
throw Error("Icon \"chevron-up-double\" is not available in size " + size);
|
|
515
552
|
}
|
|
516
553
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
517
554
|
};
|
|
@@ -522,7 +559,7 @@ var IconChevronUpLarge = function (props) {
|
|
|
522
559
|
};
|
|
523
560
|
var body = iconBodies[size];
|
|
524
561
|
if (!body) {
|
|
525
|
-
throw Error("Icon \"chevron-up-large\" is not available in size "
|
|
562
|
+
throw Error("Icon \"chevron-up-large\" is not available in size " + size);
|
|
526
563
|
}
|
|
527
564
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
528
565
|
};
|
|
@@ -534,7 +571,7 @@ var IconChevronUpSmall = function (props) {
|
|
|
534
571
|
};
|
|
535
572
|
var body = iconBodies[size];
|
|
536
573
|
if (!body) {
|
|
537
|
-
throw Error("Icon \"chevron-up-small\" is not available in size "
|
|
574
|
+
throw Error("Icon \"chevron-up-small\" is not available in size " + size);
|
|
538
575
|
}
|
|
539
576
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
540
577
|
};
|
|
@@ -545,7 +582,7 @@ var IconDeviceLaptop = function (props) {
|
|
|
545
582
|
};
|
|
546
583
|
var body = iconBodies[size];
|
|
547
584
|
if (!body) {
|
|
548
|
-
throw Error("Icon \"device-laptop\" is not available in size "
|
|
585
|
+
throw Error("Icon \"device-laptop\" is not available in size " + size);
|
|
549
586
|
}
|
|
550
587
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
551
588
|
};
|
|
@@ -556,7 +593,7 @@ var IconDocumentAdded = function (props) {
|
|
|
556
593
|
};
|
|
557
594
|
var body = iconBodies[size];
|
|
558
595
|
if (!body) {
|
|
559
|
-
throw Error("Icon \"document-added\" is not available in size "
|
|
596
|
+
throw Error("Icon \"document-added\" is not available in size " + size);
|
|
560
597
|
}
|
|
561
598
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
562
599
|
};
|
|
@@ -569,18 +606,19 @@ var IconDocumentBlank = function (props) {
|
|
|
569
606
|
};
|
|
570
607
|
var body = iconBodies[size];
|
|
571
608
|
if (!body) {
|
|
572
|
-
throw Error("Icon \"document-blank\" is not available in size "
|
|
609
|
+
throw Error("Icon \"document-blank\" is not available in size " + size);
|
|
573
610
|
}
|
|
574
611
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
575
612
|
};
|
|
576
613
|
var IconDocumentCode = function (props) {
|
|
577
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
614
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
578
615
|
var iconBodies = {
|
|
616
|
+
"24": "<path d=\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M9 14a1 1 0 1 0 0 2v-2Zm6 2a1 1 0 1 0 0-2v2Zm-6 3h1v-2H9v2Zm-1-2a1 1 0 1 0 0 2v-2Zm5-6h-1v2h1v-2Zm3 2a1 1 0 1 0 0-2v2Zm-6-2a1 1 0 1 0 0 2v-2Zm.01 2h1v-2h-1v2ZM9 8a1 1 0 0 0 0 2V8Zm3 2h1V8h-1v2Zm3-2h-1v2h1V8Zm.01 2a1 1 0 1 0 0-2v2ZM14 7a1 1 0 1 0 0-2v2Zm-2-2h-1v2h1V5ZM8 5a1 1 0 0 0 0 2V5Zm1 2h1V5H9v2Zm3 10h-1v2h1v-2Zm1.01 2a1 1 0 1 0 0-2v2ZM6 3h12V1H6v2Zm12 18H6v2h12v-2Zm1-17v16h2V4h-2ZM5 20V4H3v16h2Zm4-4h6v-2H9v2Zm0 1H8v2h1v-2Zm4-4h3v-2h-3v2Zm-3 0h.01v-2H10v2Zm-1-3h3V8H9v2Zm6 0h.01V8H15v2Zm-1-5h-2v2h2V5ZM8 7h1V5H8v2Zm4 12h1.01v-2H12v2Zm-6 2a1 1 0 0 1-1-1H3a3 3 0 0 0 3 3v-2Zm12 2a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2Zm0-20a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2ZM6 1a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V1Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
|
|
579
617
|
"48": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32 5.18V13h7.82a2 2 0 0 0-.406-.586l-6.828-6.828A1.999 1.999 0 0 0 32 5.18Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m20 21-3 3 3 3m8-6 3 3-3 3m-5.5 2.5 3-11M32 5.18a2 2 0 0 0-.828-.18H9a1 1 0 0 0-1 1v36a1 1 0 0 0 1 1h30a1 1 0 0 0 1-1V13.828a2 2 0 0 0-.18-.828M32 5.18c.216.098.415.235.586.406l6.828 6.828a2 2 0 0 1 .406.586M32 5.18V13h7.82\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M43 40a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\" class=\"icon-light-secondary\" fill=\"#A3E7CB\"/><path d=\"M37 38v2m0 2v-2m0 0h2-4m8 0a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\" stroke=\"#00814D\" class=\"icon-dark-secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
580
618
|
};
|
|
581
619
|
var body = iconBodies[size];
|
|
582
620
|
if (!body) {
|
|
583
|
-
throw Error("Icon \"document-code\" is not available in size "
|
|
621
|
+
throw Error("Icon \"document-code\" is not available in size " + size);
|
|
584
622
|
}
|
|
585
623
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
586
624
|
};
|
|
@@ -591,7 +629,7 @@ var IconDocumentDeleted = function (props) {
|
|
|
591
629
|
};
|
|
592
630
|
var body = iconBodies[size];
|
|
593
631
|
if (!body) {
|
|
594
|
-
throw Error("Icon \"document-deleted\" is not available in size "
|
|
632
|
+
throw Error("Icon \"document-deleted\" is not available in size " + size);
|
|
595
633
|
}
|
|
596
634
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
597
635
|
};
|
|
@@ -603,7 +641,7 @@ var IconDocumentDownload = function (props) {
|
|
|
603
641
|
};
|
|
604
642
|
var body = iconBodies[size];
|
|
605
643
|
if (!body) {
|
|
606
|
-
throw Error("Icon \"document-download\" is not available in size "
|
|
644
|
+
throw Error("Icon \"document-download\" is not available in size " + size);
|
|
607
645
|
}
|
|
608
646
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
609
647
|
};
|
|
@@ -615,7 +653,7 @@ var IconDocumentMinus = function (props) {
|
|
|
615
653
|
};
|
|
616
654
|
var body = iconBodies[size];
|
|
617
655
|
if (!body) {
|
|
618
|
-
throw Error("Icon \"document-minus\" is not available in size "
|
|
656
|
+
throw Error("Icon \"document-minus\" is not available in size " + size);
|
|
619
657
|
}
|
|
620
658
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
621
659
|
};
|
|
@@ -626,7 +664,7 @@ var IconDocumentModified = function (props) {
|
|
|
626
664
|
};
|
|
627
665
|
var body = iconBodies[size];
|
|
628
666
|
if (!body) {
|
|
629
|
-
throw Error("Icon \"document-modified\" is not available in size "
|
|
667
|
+
throw Error("Icon \"document-modified\" is not available in size " + size);
|
|
630
668
|
}
|
|
631
669
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
632
670
|
};
|
|
@@ -638,7 +676,7 @@ var IconDocumentPlusMinus = function (props) {
|
|
|
638
676
|
};
|
|
639
677
|
var body = iconBodies[size];
|
|
640
678
|
if (!body) {
|
|
641
|
-
throw Error("Icon \"document-plus-minus\" is not available in size "
|
|
679
|
+
throw Error("Icon \"document-plus-minus\" is not available in size " + size);
|
|
642
680
|
}
|
|
643
681
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
644
682
|
};
|
|
@@ -650,7 +688,7 @@ var IconDocumentPlus = function (props) {
|
|
|
650
688
|
};
|
|
651
689
|
var body = iconBodies[size];
|
|
652
690
|
if (!body) {
|
|
653
|
-
throw Error("Icon \"document-plus\" is not available in size "
|
|
691
|
+
throw Error("Icon \"document-plus\" is not available in size " + size);
|
|
654
692
|
}
|
|
655
693
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
656
694
|
};
|
|
@@ -661,7 +699,7 @@ var IconDocumentScript = function (props) {
|
|
|
661
699
|
};
|
|
662
700
|
var body = iconBodies[size];
|
|
663
701
|
if (!body) {
|
|
664
|
-
throw Error("Icon \"document-script\" is not available in size "
|
|
702
|
+
throw Error("Icon \"document-script\" is not available in size " + size);
|
|
665
703
|
}
|
|
666
704
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
667
705
|
};
|
|
@@ -672,7 +710,7 @@ var IconDocumentSheet = function (props) {
|
|
|
672
710
|
};
|
|
673
711
|
var body = iconBodies[size];
|
|
674
712
|
if (!body) {
|
|
675
|
-
throw Error("Icon \"document-sheet\" is not available in size "
|
|
713
|
+
throw Error("Icon \"document-sheet\" is not available in size " + size);
|
|
676
714
|
}
|
|
677
715
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
678
716
|
};
|
|
@@ -684,7 +722,7 @@ var IconDocumentStar = function (props) {
|
|
|
684
722
|
};
|
|
685
723
|
var body = iconBodies[size];
|
|
686
724
|
if (!body) {
|
|
687
|
-
throw Error("Icon \"document-star\" is not available in size "
|
|
725
|
+
throw Error("Icon \"document-star\" is not available in size " + size);
|
|
688
726
|
}
|
|
689
727
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
690
728
|
};
|
|
@@ -695,7 +733,7 @@ var IconDocumentText = function (props) {
|
|
|
695
733
|
};
|
|
696
734
|
var body = iconBodies[size];
|
|
697
735
|
if (!body) {
|
|
698
|
-
throw Error("Icon \"document-text\" is not available in size "
|
|
736
|
+
throw Error("Icon \"document-text\" is not available in size " + size);
|
|
699
737
|
}
|
|
700
738
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
701
739
|
};
|
|
@@ -706,7 +744,7 @@ var IconDotOutlineLarge = function (props) {
|
|
|
706
744
|
};
|
|
707
745
|
var body = iconBodies[size];
|
|
708
746
|
if (!body) {
|
|
709
|
-
throw Error("Icon \"dot-outline-large\" is not available in size "
|
|
747
|
+
throw Error("Icon \"dot-outline-large\" is not available in size " + size);
|
|
710
748
|
}
|
|
711
749
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
712
750
|
};
|
|
@@ -717,7 +755,7 @@ var IconDotOutlineSmall = function (props) {
|
|
|
717
755
|
};
|
|
718
756
|
var body = iconBodies[size];
|
|
719
757
|
if (!body) {
|
|
720
|
-
throw Error("Icon \"dot-outline-small\" is not available in size "
|
|
758
|
+
throw Error("Icon \"dot-outline-small\" is not available in size " + size);
|
|
721
759
|
}
|
|
722
760
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
723
761
|
};
|
|
@@ -728,7 +766,7 @@ var IconFileChangesAdded = function (props) {
|
|
|
728
766
|
};
|
|
729
767
|
var body = iconBodies[size];
|
|
730
768
|
if (!body) {
|
|
731
|
-
throw Error("Icon \"file-changes-added\" is not available in size "
|
|
769
|
+
throw Error("Icon \"file-changes-added\" is not available in size " + size);
|
|
732
770
|
}
|
|
733
771
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
734
772
|
};
|
|
@@ -739,7 +777,7 @@ var IconFileChangesError = function (props) {
|
|
|
739
777
|
};
|
|
740
778
|
var body = iconBodies[size];
|
|
741
779
|
if (!body) {
|
|
742
|
-
throw Error("Icon \"file-changes-error\" is not available in size "
|
|
780
|
+
throw Error("Icon \"file-changes-error\" is not available in size " + size);
|
|
743
781
|
}
|
|
744
782
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
745
783
|
};
|
|
@@ -750,7 +788,7 @@ var IconFileChangesSkipped = function (props) {
|
|
|
750
788
|
};
|
|
751
789
|
var body = iconBodies[size];
|
|
752
790
|
if (!body) {
|
|
753
|
-
throw Error("Icon \"file-changes-skipped\" is not available in size "
|
|
791
|
+
throw Error("Icon \"file-changes-skipped\" is not available in size " + size);
|
|
754
792
|
}
|
|
755
793
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
756
794
|
};
|
|
@@ -761,7 +799,7 @@ var IconFileChangesWarning = function (props) {
|
|
|
761
799
|
};
|
|
762
800
|
var body = iconBodies[size];
|
|
763
801
|
if (!body) {
|
|
764
|
-
throw Error("Icon \"file-changes-warning\" is not available in size "
|
|
802
|
+
throw Error("Icon \"file-changes-warning\" is not available in size " + size);
|
|
765
803
|
}
|
|
766
804
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
767
805
|
};
|
|
@@ -772,7 +810,7 @@ var IconGeneralClipboard = function (props) {
|
|
|
772
810
|
};
|
|
773
811
|
var body = iconBodies[size];
|
|
774
812
|
if (!body) {
|
|
775
|
-
throw Error("Icon \"general-clipboard\" is not available in size "
|
|
813
|
+
throw Error("Icon \"general-clipboard\" is not available in size " + size);
|
|
776
814
|
}
|
|
777
815
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
778
816
|
};
|
|
@@ -783,7 +821,7 @@ var IconGeneralCommandKey = function (props) {
|
|
|
783
821
|
};
|
|
784
822
|
var body = iconBodies[size];
|
|
785
823
|
if (!body) {
|
|
786
|
-
throw Error("Icon \"general-command-key\" is not available in size "
|
|
824
|
+
throw Error("Icon \"general-command-key\" is not available in size " + size);
|
|
787
825
|
}
|
|
788
826
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
789
827
|
};
|
|
@@ -794,7 +832,7 @@ var IconGeneralCrosshairs = function (props) {
|
|
|
794
832
|
};
|
|
795
833
|
var body = iconBodies[size];
|
|
796
834
|
if (!body) {
|
|
797
|
-
throw Error("Icon \"general-crosshairs\" is not available in size "
|
|
835
|
+
throw Error("Icon \"general-crosshairs\" is not available in size " + size);
|
|
798
836
|
}
|
|
799
837
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
800
838
|
};
|
|
@@ -805,7 +843,7 @@ var IconGeneralEarth = function (props) {
|
|
|
805
843
|
};
|
|
806
844
|
var body = iconBodies[size];
|
|
807
845
|
if (!body) {
|
|
808
|
-
throw Error("Icon \"general-earth\" is not available in size "
|
|
846
|
+
throw Error("Icon \"general-earth\" is not available in size " + size);
|
|
809
847
|
}
|
|
810
848
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
811
849
|
};
|
|
@@ -816,7 +854,7 @@ var IconGeneralEyeClosed = function (props) {
|
|
|
816
854
|
};
|
|
817
855
|
var body = iconBodies[size];
|
|
818
856
|
if (!body) {
|
|
819
|
-
throw Error("Icon \"general-eye-closed\" is not available in size "
|
|
857
|
+
throw Error("Icon \"general-eye-closed\" is not available in size " + size);
|
|
820
858
|
}
|
|
821
859
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
822
860
|
};
|
|
@@ -827,7 +865,7 @@ var IconGeneralEyeOpen = function (props) {
|
|
|
827
865
|
};
|
|
828
866
|
var body = iconBodies[size];
|
|
829
867
|
if (!body) {
|
|
830
|
-
throw Error("Icon \"general-eye-open\" is not available in size "
|
|
868
|
+
throw Error("Icon \"general-eye-open\" is not available in size " + size);
|
|
831
869
|
}
|
|
832
870
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
833
871
|
};
|
|
@@ -839,7 +877,7 @@ var IconGeneralGlobe = function (props) {
|
|
|
839
877
|
};
|
|
840
878
|
var body = iconBodies[size];
|
|
841
879
|
if (!body) {
|
|
842
|
-
throw Error("Icon \"general-globe\" is not available in size "
|
|
880
|
+
throw Error("Icon \"general-globe\" is not available in size " + size);
|
|
843
881
|
}
|
|
844
882
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
845
883
|
};
|
|
@@ -851,7 +889,7 @@ var IconGeneralGrid2X2 = function (props) {
|
|
|
851
889
|
};
|
|
852
890
|
var body = iconBodies[size];
|
|
853
891
|
if (!body) {
|
|
854
|
-
throw Error("Icon \"general-grid-2x2\" is not available in size "
|
|
892
|
+
throw Error("Icon \"general-grid-2x2\" is not available in size " + size);
|
|
855
893
|
}
|
|
856
894
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
857
895
|
};
|
|
@@ -862,7 +900,7 @@ var IconGeneralLifeRing = function (props) {
|
|
|
862
900
|
};
|
|
863
901
|
var body = iconBodies[size];
|
|
864
902
|
if (!body) {
|
|
865
|
-
throw Error("Icon \"general-life-ring\" is not available in size "
|
|
903
|
+
throw Error("Icon \"general-life-ring\" is not available in size " + size);
|
|
866
904
|
}
|
|
867
905
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
868
906
|
};
|
|
@@ -873,7 +911,7 @@ var IconGeneralOfficeBuilding = function (props) {
|
|
|
873
911
|
};
|
|
874
912
|
var body = iconBodies[size];
|
|
875
913
|
if (!body) {
|
|
876
|
-
throw Error("Icon \"general-office-building\" is not available in size "
|
|
914
|
+
throw Error("Icon \"general-office-building\" is not available in size " + size);
|
|
877
915
|
}
|
|
878
916
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
879
917
|
};
|
|
@@ -887,7 +925,7 @@ var IconGeneralPlaceholder = function (props) {
|
|
|
887
925
|
};
|
|
888
926
|
var body = iconBodies[size];
|
|
889
927
|
if (!body) {
|
|
890
|
-
throw Error("Icon \"general-placeholder\" is not available in size "
|
|
928
|
+
throw Error("Icon \"general-placeholder\" is not available in size " + size);
|
|
891
929
|
}
|
|
892
930
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
893
931
|
};
|
|
@@ -898,7 +936,7 @@ var IconLoading = function (props) {
|
|
|
898
936
|
};
|
|
899
937
|
var body = iconBodies[size];
|
|
900
938
|
if (!body) {
|
|
901
|
-
throw Error("Icon \"loading\" is not available in size "
|
|
939
|
+
throw Error("Icon \"loading\" is not available in size " + size);
|
|
902
940
|
}
|
|
903
941
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
904
942
|
};
|
|
@@ -909,7 +947,7 @@ var IconMenuDotsVertical = function (props) {
|
|
|
909
947
|
};
|
|
910
948
|
var body = iconBodies[size];
|
|
911
949
|
if (!body) {
|
|
912
|
-
throw Error("Icon \"menu-dots-vertical\" is not available in size "
|
|
950
|
+
throw Error("Icon \"menu-dots-vertical\" is not available in size " + size);
|
|
913
951
|
}
|
|
914
952
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
915
953
|
};
|
|
@@ -920,7 +958,7 @@ var IconMenuExpandLeft = function (props) {
|
|
|
920
958
|
};
|
|
921
959
|
var body = iconBodies[size];
|
|
922
960
|
if (!body) {
|
|
923
|
-
throw Error("Icon \"menu-expand-left\" is not available in size "
|
|
961
|
+
throw Error("Icon \"menu-expand-left\" is not available in size " + size);
|
|
924
962
|
}
|
|
925
963
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
926
964
|
};
|
|
@@ -931,7 +969,7 @@ var IconMenuExpandRight = function (props) {
|
|
|
931
969
|
};
|
|
932
970
|
var body = iconBodies[size];
|
|
933
971
|
if (!body) {
|
|
934
|
-
throw Error("Icon \"menu-expand-right\" is not available in size "
|
|
972
|
+
throw Error("Icon \"menu-expand-right\" is not available in size " + size);
|
|
935
973
|
}
|
|
936
974
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
937
975
|
};
|
|
@@ -942,7 +980,7 @@ var IconObjectBookCode = function (props) {
|
|
|
942
980
|
};
|
|
943
981
|
var body = iconBodies[size];
|
|
944
982
|
if (!body) {
|
|
945
|
-
throw Error("Icon \"object-book-code\" is not available in size "
|
|
983
|
+
throw Error("Icon \"object-book-code\" is not available in size " + size);
|
|
946
984
|
}
|
|
947
985
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
948
986
|
};
|
|
@@ -955,7 +993,7 @@ var IconObjectBook = function (props) {
|
|
|
955
993
|
};
|
|
956
994
|
var body = iconBodies[size];
|
|
957
995
|
if (!body) {
|
|
958
|
-
throw Error("Icon \"object-book\" is not available in size "
|
|
996
|
+
throw Error("Icon \"object-book\" is not available in size " + size);
|
|
959
997
|
}
|
|
960
998
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
961
999
|
};
|
|
@@ -967,7 +1005,7 @@ var IconObjectBookmark = function (props) {
|
|
|
967
1005
|
};
|
|
968
1006
|
var body = iconBodies[size];
|
|
969
1007
|
if (!body) {
|
|
970
|
-
throw Error("Icon \"object-bookmark\" is not available in size "
|
|
1008
|
+
throw Error("Icon \"object-bookmark\" is not available in size " + size);
|
|
971
1009
|
}
|
|
972
1010
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
973
1011
|
};
|
|
@@ -978,7 +1016,7 @@ var IconObjectBoxOpen = function (props) {
|
|
|
978
1016
|
};
|
|
979
1017
|
var body = iconBodies[size];
|
|
980
1018
|
if (!body) {
|
|
981
|
-
throw Error("Icon \"object-box-open\" is not available in size "
|
|
1019
|
+
throw Error("Icon \"object-box-open\" is not available in size " + size);
|
|
982
1020
|
}
|
|
983
1021
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
984
1022
|
};
|
|
@@ -990,7 +1028,18 @@ var IconObjectBox = function (props) {
|
|
|
990
1028
|
};
|
|
991
1029
|
var body = iconBodies[size];
|
|
992
1030
|
if (!body) {
|
|
993
|
-
throw Error("Icon \"object-box\" is not available in size "
|
|
1031
|
+
throw Error("Icon \"object-box\" is not available in size " + size);
|
|
1032
|
+
}
|
|
1033
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1034
|
+
};
|
|
1035
|
+
var IconObjectBriefcase = function (props) {
|
|
1036
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1037
|
+
var iconBodies = {
|
|
1038
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 14A1.5 1.5 0 0 1 1 12.5V7l7 3 7-3v5.5a1.5 1.5 0 0 1-1.5 1.5h-11Z\" fill=\"#F3F4FA\" class=\"icon-light\"/><path d=\"M9 9.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#F3F4FA\" class=\"icon-light\"/><path d=\"M11 4H5m6 0V2.5A1.5 1.5 0 0 0 9.5 1h-3A1.5 1.5 0 0 0 5 2.5V4m6 0h2.5A1.5 1.5 0 0 1 15 5.5V7M5 4H2.5A1.5 1.5 0 0 0 1 5.5V7m0 0v5.5A1.5 1.5 0 0 0 2.5 14h11a1.5 1.5 0 0 0 1.5-1.5V7M1 7l7 3 7-3M9 9.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>"
|
|
1039
|
+
};
|
|
1040
|
+
var body = iconBodies[size];
|
|
1041
|
+
if (!body) {
|
|
1042
|
+
throw Error("Icon \"object-briefcase\" is not available in size " + size);
|
|
994
1043
|
}
|
|
995
1044
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
996
1045
|
};
|
|
@@ -1001,7 +1050,7 @@ var IconObjectChainLink = function (props) {
|
|
|
1001
1050
|
};
|
|
1002
1051
|
var body = iconBodies[size];
|
|
1003
1052
|
if (!body) {
|
|
1004
|
-
throw Error("Icon \"object-chain-link\" is not available in size "
|
|
1053
|
+
throw Error("Icon \"object-chain-link\" is not available in size " + size);
|
|
1005
1054
|
}
|
|
1006
1055
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1007
1056
|
};
|
|
@@ -1012,7 +1061,7 @@ var IconObjectFolderDark = function (props) {
|
|
|
1012
1061
|
};
|
|
1013
1062
|
var body = iconBodies[size];
|
|
1014
1063
|
if (!body) {
|
|
1015
|
-
throw Error("Icon \"object-folder-dark\" is not available in size "
|
|
1064
|
+
throw Error("Icon \"object-folder-dark\" is not available in size " + size);
|
|
1016
1065
|
}
|
|
1017
1066
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1018
1067
|
};
|
|
@@ -1024,7 +1073,7 @@ var IconObjectFolderLight = function (props) {
|
|
|
1024
1073
|
};
|
|
1025
1074
|
var body = iconBodies[size];
|
|
1026
1075
|
if (!body) {
|
|
1027
|
-
throw Error("Icon \"object-folder-light\" is not available in size "
|
|
1076
|
+
throw Error("Icon \"object-folder-light\" is not available in size " + size);
|
|
1028
1077
|
}
|
|
1029
1078
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1030
1079
|
};
|
|
@@ -1036,7 +1085,7 @@ var IconObjectGear = function (props) {
|
|
|
1036
1085
|
};
|
|
1037
1086
|
var body = iconBodies[size];
|
|
1038
1087
|
if (!body) {
|
|
1039
|
-
throw Error("Icon \"object-gear\" is not available in size "
|
|
1088
|
+
throw Error("Icon \"object-gear\" is not available in size " + size);
|
|
1040
1089
|
}
|
|
1041
1090
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1042
1091
|
};
|
|
@@ -1047,7 +1096,7 @@ var IconObjectMagicWandDarkMode = function (props) {
|
|
|
1047
1096
|
};
|
|
1048
1097
|
var body = iconBodies[size];
|
|
1049
1098
|
if (!body) {
|
|
1050
|
-
throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size "
|
|
1099
|
+
throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size " + size);
|
|
1051
1100
|
}
|
|
1052
1101
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1053
1102
|
};
|
|
@@ -1058,7 +1107,7 @@ var IconObjectMagnifyingGlass = function (props) {
|
|
|
1058
1107
|
};
|
|
1059
1108
|
var body = iconBodies[size];
|
|
1060
1109
|
if (!body) {
|
|
1061
|
-
throw Error("Icon \"object-magnifying-glass\" is not available in size "
|
|
1110
|
+
throw Error("Icon \"object-magnifying-glass\" is not available in size " + size);
|
|
1062
1111
|
}
|
|
1063
1112
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1064
1113
|
};
|
|
@@ -1069,7 +1118,7 @@ var IconObjectOdometer = function (props) {
|
|
|
1069
1118
|
};
|
|
1070
1119
|
var body = iconBodies[size];
|
|
1071
1120
|
if (!body) {
|
|
1072
|
-
throw Error("Icon \"object-odometer\" is not available in size "
|
|
1121
|
+
throw Error("Icon \"object-odometer\" is not available in size " + size);
|
|
1073
1122
|
}
|
|
1074
1123
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1075
1124
|
};
|
|
@@ -1080,7 +1129,7 @@ var IconObjectPaperAirplane = function (props) {
|
|
|
1080
1129
|
};
|
|
1081
1130
|
var body = iconBodies[size];
|
|
1082
1131
|
if (!body) {
|
|
1083
|
-
throw Error("Icon \"object-paper-airplane\" is not available in size "
|
|
1132
|
+
throw Error("Icon \"object-paper-airplane\" is not available in size " + size);
|
|
1084
1133
|
}
|
|
1085
1134
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1086
1135
|
};
|
|
@@ -1091,7 +1140,7 @@ var IconObjectPinModern = function (props) {
|
|
|
1091
1140
|
};
|
|
1092
1141
|
var body = iconBodies[size];
|
|
1093
1142
|
if (!body) {
|
|
1094
|
-
throw Error("Icon \"object-pin-modern\" is not available in size "
|
|
1143
|
+
throw Error("Icon \"object-pin-modern\" is not available in size " + size);
|
|
1095
1144
|
}
|
|
1096
1145
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1097
1146
|
};
|
|
@@ -1102,18 +1151,30 @@ var IconObjectRuler = function (props) {
|
|
|
1102
1151
|
};
|
|
1103
1152
|
var body = iconBodies[size];
|
|
1104
1153
|
if (!body) {
|
|
1105
|
-
throw Error("Icon \"object-ruler\" is not available in size "
|
|
1154
|
+
throw Error("Icon \"object-ruler\" is not available in size " + size);
|
|
1106
1155
|
}
|
|
1107
1156
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1108
1157
|
};
|
|
1109
1158
|
var IconSecurityKey = function (props) {
|
|
1159
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1160
|
+
var iconBodies = {
|
|
1161
|
+
"16": "<path d=\"M1.861 7.354a2 2 0 0 1 .273-2.488l2.732-2.732a2 2 0 0 1 2.488-.273l2.502 1.593a2 2 0 0 1 .642 2.716L10 7l5 5v3h-3l-1-2.5H9L8 10H7l-.83.498a2 2 0 0 1-2.716-.642L1.861 7.354Z\" fill=\"#D0D2E0\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-light-fill icon-dark-stroke\"/><circle cx=\"5.752\" cy=\"5.752\" r=\"1.002\" fill=\"#1B1E2E\" class=\"icon-dark\"/>",
|
|
1162
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.038 2.475a3 3 0 0 0-3.757.394L2.87 6.28a3 3 0 0 0-.394 3.757L5.25 14.31a3 3 0 0 0 4.316.765L11 14l1.5 3.5 1.5-1 1.5 3.5 1.5-1s1 1.7 1.5 2c2.5 1.5 3.5-2 3.5-2l-8-8 1.075-1.433a3 3 0 0 0-.765-4.316l-4.272-2.776ZM8 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#D0D2E0\" class=\"icon-light-fill icon-dark-stroke\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>"
|
|
1163
|
+
};
|
|
1164
|
+
var body = iconBodies[size];
|
|
1165
|
+
if (!body) {
|
|
1166
|
+
throw Error("Icon \"security-key\" is not available in size " + size);
|
|
1167
|
+
}
|
|
1168
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1169
|
+
};
|
|
1170
|
+
var IconSecurityLockLocked = function (props) {
|
|
1110
1171
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1111
1172
|
var iconBodies = {
|
|
1112
|
-
"16": "<path d=\"
|
|
1173
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v5Z\" fill=\"var(--icon-light)\" class=\"icon-light\"/><path d=\"M5 6H4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-1M5 6V4a3 3 0 0 1 3-3v0a3 3 0 0 1 3 3v2M5 6h6m-3 4v1\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1113
1174
|
};
|
|
1114
1175
|
var body = iconBodies[size];
|
|
1115
1176
|
if (!body) {
|
|
1116
|
-
throw Error("Icon \"security-
|
|
1177
|
+
throw Error("Icon \"security-lock-locked\" is not available in size " + size);
|
|
1117
1178
|
}
|
|
1118
1179
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1119
1180
|
};
|
|
@@ -1124,7 +1185,295 @@ var IconShapeLightningBolt = function (props) {
|
|
|
1124
1185
|
};
|
|
1125
1186
|
var body = iconBodies[size];
|
|
1126
1187
|
if (!body) {
|
|
1127
|
-
throw Error("Icon \"shape-lightning-bolt\" is not available in size "
|
|
1188
|
+
throw Error("Icon \"shape-lightning-bolt\" is not available in size " + size);
|
|
1189
|
+
}
|
|
1190
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1191
|
+
};
|
|
1192
|
+
var IconStatusCancelledOutline = function (props) {
|
|
1193
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1194
|
+
var iconBodies = {
|
|
1195
|
+
"16": "<path d=\"M6 8h4m-2 6A6 6 0 1 1 8 2a6 6 0 0 1 0 12Z\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
1196
|
+
"24": "<path d=\"M8 12h8m-4 9a9 9 0 1 1 0-18 9 9 0 0 1 0 18Z\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1197
|
+
};
|
|
1198
|
+
var body = iconBodies[size];
|
|
1199
|
+
if (!body) {
|
|
1200
|
+
throw Error("Icon \"status-cancelled-outline\" is not available in size " + size);
|
|
1201
|
+
}
|
|
1202
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1203
|
+
};
|
|
1204
|
+
var IconStatusCancelledSimple = function (props) {
|
|
1205
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1206
|
+
var iconBodies = {
|
|
1207
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
|
|
1208
|
+
"8": "<path d=\"M1 4h6\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1209
|
+
};
|
|
1210
|
+
var body = iconBodies[size];
|
|
1211
|
+
if (!body) {
|
|
1212
|
+
throw Error("Icon \"status-cancelled-simple\" is not available in size " + size);
|
|
1213
|
+
}
|
|
1214
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1215
|
+
};
|
|
1216
|
+
var IconStatusCancelledSolid = function (props) {
|
|
1217
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1218
|
+
var iconBodies = {
|
|
1219
|
+
"12": "<path d=\"M2 6h8\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
1220
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8Zm4-1a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H5Z\" fill=\"#AFB3C7\"/>",
|
|
1221
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12Zm6-1a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z\" fill=\"#AFB3C7\"/>"
|
|
1222
|
+
};
|
|
1223
|
+
var body = iconBodies[size];
|
|
1224
|
+
if (!body) {
|
|
1225
|
+
throw Error("Icon \"status-cancelled-solid\" is not available in size " + size);
|
|
1226
|
+
}
|
|
1227
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1228
|
+
};
|
|
1229
|
+
var IconStatusErroredOutline = function (props) {
|
|
1230
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1231
|
+
var iconBodies = {
|
|
1232
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0Zm1 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>",
|
|
1233
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#DB7903\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Z\" fill=\"#E56F4A\"/><path d=\"M13 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#E56F4A\"/>"
|
|
1234
|
+
};
|
|
1235
|
+
var body = iconBodies[size];
|
|
1236
|
+
if (!body) {
|
|
1237
|
+
throw Error("Icon \"status-errored-outline\" is not available in size " + size);
|
|
1238
|
+
}
|
|
1239
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1240
|
+
};
|
|
1241
|
+
var IconStatusErroredSimple = function (props) {
|
|
1242
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1243
|
+
var iconBodies = {
|
|
1244
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#DB7903\"/>",
|
|
1245
|
+
"8": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-1Z\" fill=\"#DB7903\"/><path d=\"M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#DB7903\"/>"
|
|
1246
|
+
};
|
|
1247
|
+
var body = iconBodies[size];
|
|
1248
|
+
if (!body) {
|
|
1249
|
+
throw Error("Icon \"status-errored-simple\" is not available in size " + size);
|
|
1250
|
+
}
|
|
1251
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1252
|
+
};
|
|
1253
|
+
var IconStatusErroredSolid = function (props) {
|
|
1254
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1255
|
+
var iconBodies = {
|
|
1256
|
+
"12": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-1Z\" fill=\"#DB7903\"/><path d=\"M7 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#DB7903\"/>",
|
|
1257
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14ZM9 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>",
|
|
1258
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm1-14a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0V8Zm-1 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>"
|
|
1259
|
+
};
|
|
1260
|
+
var body = iconBodies[size];
|
|
1261
|
+
if (!body) {
|
|
1262
|
+
throw Error("Icon \"status-errored-solid\" is not available in size " + size);
|
|
1263
|
+
}
|
|
1264
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1265
|
+
};
|
|
1266
|
+
var IconStatusFailedOutline = function (props) {
|
|
1267
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1268
|
+
var iconBodies = {
|
|
1269
|
+
"16": "<path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293ZM13 8a5 5 0 0 1-5 5v2a7 7 0 0 0 7-7h-2Zm-5 5a5 5 0 0 1-5-5H1a7 7 0 0 0 7 7v-2ZM3 8a5 5 0 0 1 5-5V1a7 7 0 0 0-7 7h2Zm5-5a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7v2ZM5.293 6.707l2 2 1.414-1.414-2-2-1.414 1.414Zm2 2 2 2 1.414-1.414-2-2-1.414 1.414Zm2-3.414-2 2 1.414 1.414 2-2-1.414-1.414Zm-2 2-2 2 1.414 1.414 2-2-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1270
|
+
"24": "<path d=\"M9.707 8.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-7.414 4.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-4.586 3 3 1.414-1.414-3-3-1.414 1.414Zm3 3 3 3 1.414-1.414-3-3-1.414 1.414Zm3-4.414-3 3 1.414 1.414 3-3-1.414-1.414Zm-3 3-3 3 1.414 1.414 3-3-1.414-1.414ZM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10h-2Zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10v-2Zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12h2Zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10v2Z\" fill=\"#E45770\"/>"
|
|
1271
|
+
};
|
|
1272
|
+
var body = iconBodies[size];
|
|
1273
|
+
if (!body) {
|
|
1274
|
+
throw Error("Icon \"status-failed-outline\" is not available in size " + size);
|
|
1275
|
+
}
|
|
1276
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1277
|
+
};
|
|
1278
|
+
var IconStatusFailedSimple = function (props) {
|
|
1279
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1280
|
+
var iconBodies = {
|
|
1281
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#E45770\"/>",
|
|
1282
|
+
"8": "<path d=\"M2.707 1.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414L5.293 6.707Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM1.293 5.293a1 1 0 0 0 1.414 1.414L1.293 5.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1283
|
+
"12": "<path d=\"M3.707 2.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414L8.293 9.707Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414ZM2.293 8.293a1 1 0 0 0 1.414 1.414L2.293 8.293Zm0-4.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6-1.414-6 6 1.414 1.414 6-6-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1284
|
+
"16": "<path d=\"M4.707 3.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm6.586 9.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-8a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-9.414 6.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-6.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4 4 4 4 1.414-1.414-4-4-1.414 1.414Zm4-5.414-4 4 1.414 1.414 4-4-1.414-1.414Zm-4 4-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1285
|
+
"24": "<path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm10.586 13.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-12a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 17.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-10.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6 6 6 6 1.414-1.414-6-6-1.414 1.414Zm6-7.414-6 6 1.414 1.414 6-6-1.414-1.414Zm-6 6-6 6 1.414 1.414 6-6-1.414-1.414Z\" fill=\"#E45770\"/>"
|
|
1286
|
+
};
|
|
1287
|
+
var body = iconBodies[size];
|
|
1288
|
+
if (!body) {
|
|
1289
|
+
throw Error("Icon \"status-failed-simple\" is not available in size " + size);
|
|
1290
|
+
}
|
|
1291
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1292
|
+
};
|
|
1293
|
+
var IconStatusFailedSolid = function (props) {
|
|
1294
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1295
|
+
var iconBodies = {
|
|
1296
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#E45770\"/><path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#fff\"/>",
|
|
1297
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM9.707 8.293a1 1 0 0 0-1.414 1.414L10.586 12l-2.293 2.293a1 1 0 1 0 1.414 1.414L12 13.414l2.293 2.293a1 1 0 0 0 1.414-1.414L13.414 12l2.293-2.293a1 1 0 0 0-1.414-1.414L12 10.586 9.707 8.293Z\" fill=\"#E45770\"/>"
|
|
1298
|
+
};
|
|
1299
|
+
var body = iconBodies[size];
|
|
1300
|
+
if (!body) {
|
|
1301
|
+
throw Error("Icon \"status-failed-solid\" is not available in size " + size);
|
|
1302
|
+
}
|
|
1303
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1304
|
+
};
|
|
1305
|
+
var IconStatusPassedOutline = function (props) {
|
|
1306
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1307
|
+
var iconBodies = {
|
|
1308
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#1FA971\" stroke-width=\"2\"/><path d=\"m10 6-2.5 4L6 8.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1309
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm3.864 7.504a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z\" fill=\"#1FA971\"/>"
|
|
1310
|
+
};
|
|
1311
|
+
var body = iconBodies[size];
|
|
1312
|
+
if (!body) {
|
|
1313
|
+
throw Error("Icon \"status-passed-outline\" is not available in size " + size);
|
|
1314
|
+
}
|
|
1315
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1316
|
+
};
|
|
1317
|
+
var IconStatusPassedSimple = function (props) {
|
|
1318
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1319
|
+
var iconBodies = {
|
|
1320
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#1FA971\"/>",
|
|
1321
|
+
"8": "<path d=\"M6 2 3.5 6 2 4.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1322
|
+
"12": "<path d=\"M9 3 5 9 3 6.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1323
|
+
"16": "<path d=\"M4 8.667 7.333 12 12 4\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1324
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.504 8.136a1 1 0 0 1 .36 1.368l-3.5 6a1 1 0 0 1-1.571.203l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.583 1.583 2.846-4.88a1 1 0 0 1 1.368-.36Z\" fill=\"#1FA971\"/>"
|
|
1325
|
+
};
|
|
1326
|
+
var body = iconBodies[size];
|
|
1327
|
+
if (!body) {
|
|
1328
|
+
throw Error("Icon \"status-passed-simple\" is not available in size " + size);
|
|
1329
|
+
}
|
|
1330
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1331
|
+
};
|
|
1332
|
+
var IconStatusPassedSolid = function (props) {
|
|
1333
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1334
|
+
var iconBodies = {
|
|
1335
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#1FA971\"/><path d=\"m10 6-2.5 4L6 8.5\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1336
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm3.864-12.496a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z\" fill=\"#1FA971\"/>"
|
|
1337
|
+
};
|
|
1338
|
+
var body = iconBodies[size];
|
|
1339
|
+
if (!body) {
|
|
1340
|
+
throw Error("Icon \"status-passed-solid\" is not available in size " + size);
|
|
1341
|
+
}
|
|
1342
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1343
|
+
};
|
|
1344
|
+
var IconStatusPendingOutline = function (props) {
|
|
1345
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1346
|
+
var iconBodies = {
|
|
1347
|
+
"12": "<path d=\"M4.47 2.305a4 4 0 1 0 3.061 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
|
|
1348
|
+
"16": "<path d=\"M5.706 2.46a5.998 5.998 0 1 0 4.59 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
|
|
1349
|
+
"24": "<path d=\"M8.555 3.685a8.999 8.999 0 1 0 6.887 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>"
|
|
1350
|
+
};
|
|
1351
|
+
var body = iconBodies[size];
|
|
1352
|
+
if (!body) {
|
|
1353
|
+
throw Error("Icon \"status-pending-outline\" is not available in size " + size);
|
|
1354
|
+
}
|
|
1355
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1356
|
+
};
|
|
1357
|
+
var IconStatusPendingSimple = function (props) {
|
|
1358
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1359
|
+
var iconBodies = {
|
|
1360
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#BFC2D4\"/>",
|
|
1361
|
+
"8": "<g clip-path=\"url(#a)\"><path d=\"M2.852 1.228a3 3 0 1 0 2.296 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h8v8H0z\"/></clipPath></defs>"
|
|
1362
|
+
};
|
|
1363
|
+
var body = iconBodies[size];
|
|
1364
|
+
if (!body) {
|
|
1365
|
+
throw Error("Icon \"status-pending-simple\" is not available in size " + size);
|
|
1366
|
+
}
|
|
1367
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1368
|
+
};
|
|
1369
|
+
var IconStatusPlaceholderSimple = function (props) {
|
|
1370
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1371
|
+
var iconBodies = {
|
|
1372
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#D0D2E0\"/>",
|
|
1373
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" fill=\"#D0D2E0\"/>"
|
|
1374
|
+
};
|
|
1375
|
+
var body = iconBodies[size];
|
|
1376
|
+
if (!body) {
|
|
1377
|
+
throw Error("Icon \"status-placeholder-simple\" is not available in size " + size);
|
|
1378
|
+
}
|
|
1379
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1380
|
+
};
|
|
1381
|
+
var IconStatusPlaceholderSolid = function (props) {
|
|
1382
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1383
|
+
var iconBodies = {
|
|
1384
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"5\" fill=\"#D0D2E0\"/>",
|
|
1385
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#D0D2E0\"/>",
|
|
1386
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"10\" fill=\"#D0D2E0\"/>"
|
|
1387
|
+
};
|
|
1388
|
+
var body = iconBodies[size];
|
|
1389
|
+
if (!body) {
|
|
1390
|
+
throw Error("Icon \"status-placeholder-solid\" is not available in size " + size);
|
|
1391
|
+
}
|
|
1392
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1393
|
+
};
|
|
1394
|
+
var IconStatusQueuedOutline = function (props) {
|
|
1395
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1396
|
+
var iconBodies = {
|
|
1397
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"4\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1398
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1399
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\"/>"
|
|
1400
|
+
};
|
|
1401
|
+
var body = iconBodies[size];
|
|
1402
|
+
if (!body) {
|
|
1403
|
+
throw Error("Icon \"status-queued-outline\" is not available in size " + size);
|
|
1404
|
+
}
|
|
1405
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1406
|
+
};
|
|
1407
|
+
var IconStatusQueuedSimple = function (props) {
|
|
1408
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1409
|
+
var iconBodies = {
|
|
1410
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#E1E3ED\"/>",
|
|
1411
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1412
|
+
};
|
|
1413
|
+
var body = iconBodies[size];
|
|
1414
|
+
if (!body) {
|
|
1415
|
+
throw Error("Icon \"status-queued-simple\" is not available in size " + size);
|
|
1416
|
+
}
|
|
1417
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1418
|
+
};
|
|
1419
|
+
var IconStatusRunningOutline = function (props) {
|
|
1420
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1421
|
+
var iconBodies = {
|
|
1422
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"4\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 6a4 4 0 0 0-4-4\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1423
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 8a6 6 0 0 0-6-6\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1424
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\"/><path d=\"M12 2.999c4.893-.006 9.017 4.125 8.998 9.001\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1425
|
+
};
|
|
1426
|
+
var body = iconBodies[size];
|
|
1427
|
+
if (!body) {
|
|
1428
|
+
throw Error("Icon \"status-running-outline\" is not available in size " + size);
|
|
1429
|
+
}
|
|
1430
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1431
|
+
};
|
|
1432
|
+
var IconStatusRunningSimple = function (props) {
|
|
1433
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1434
|
+
var iconBodies = {
|
|
1435
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" fill=\"#C5C9FD\" stroke=\"#6470F3\"><animate attributeName=\"fill\" values=\"#C5C9FD;#6470F3;#C5C9FD\" dur=\"1.5s\" repeatCount=\"indefinite\"/></circle>",
|
|
1436
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 4a3 3 0 0 0-3-3\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1437
|
+
};
|
|
1438
|
+
var body = iconBodies[size];
|
|
1439
|
+
if (!body) {
|
|
1440
|
+
throw Error("Icon \"status-running-simple\" is not available in size " + size);
|
|
1441
|
+
}
|
|
1442
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1443
|
+
};
|
|
1444
|
+
var IconStatusSkippedOutline = function (props) {
|
|
1445
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1446
|
+
var iconBodies = {
|
|
1447
|
+
"12": "<path d=\"M3.172 8.828a4 4 0 0 0 5.656-5.656M3.172 8.828a4 4 0 0 1 5.656-5.656M3.172 8.828l5.656-5.656\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>",
|
|
1448
|
+
"16": "<path d=\"M3.757 12.243a6 6 0 1 0 8.486-8.486m-8.486 8.486a6 6 0 1 1 8.486-8.486m-8.486 8.486 8.486-8.486\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>",
|
|
1449
|
+
"24": "<path d=\"M5.636 18.364A9 9 0 0 0 18.364 5.636M5.636 18.364A9 9 0 0 1 18.364 5.636M5.636 18.364 18.364 5.636\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>"
|
|
1450
|
+
};
|
|
1451
|
+
var body = iconBodies[size];
|
|
1452
|
+
if (!body) {
|
|
1453
|
+
throw Error("Icon \"status-skipped-outline\" is not available in size " + size);
|
|
1454
|
+
}
|
|
1455
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1456
|
+
};
|
|
1457
|
+
var IconStatusSkippedSimple = function (props) {
|
|
1458
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1459
|
+
var iconBodies = {
|
|
1460
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
|
|
1461
|
+
"8": "<path d=\"M1.879 6.121A3 3 0 0 0 6.12 1.88M1.88 6.12A3 3 0 1 1 6.12 1.88M1.88 6.12 6.12 1.88\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>"
|
|
1462
|
+
};
|
|
1463
|
+
var body = iconBodies[size];
|
|
1464
|
+
if (!body) {
|
|
1465
|
+
throw Error("Icon \"status-skipped-simple\" is not available in size " + size);
|
|
1466
|
+
}
|
|
1467
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1468
|
+
};
|
|
1469
|
+
var IconTechnologyBranchHTall = function (props) {
|
|
1470
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1471
|
+
var iconBodies = {
|
|
1472
|
+
"16": "<path d=\"M3 13h3v-2H3v2Zm3 0h7v-2H6v2Zm4.386-8H13V3h-2.614v2Zm-3.45 7.351L9.45 5.65l-1.873-.702-2.513 6.702 1.872.702ZM14 4v2a2 2 0 0 0 2-2h-2Zm0 0h-2a2 2 0 0 0 2 2V4Zm0 0V2a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2Zm0 8v2a2 2 0 0 0 2-2h-2Zm0 0h-2a2 2 0 0 0 2 2v-2Zm0 0v-2a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2ZM2 12v2a2 2 0 0 0 2-2H2Zm0 0H0a2 2 0 0 0 2 2v-2Zm0 0v-2a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2Zm8.386-9a3 3 0 0 0-2.809 1.947l1.873.702A1 1 0 0 1 10.386 5V3Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1473
|
+
};
|
|
1474
|
+
var body = iconBodies[size];
|
|
1475
|
+
if (!body) {
|
|
1476
|
+
throw Error("Icon \"technology-branch-h-tall\" is not available in size " + size);
|
|
1128
1477
|
}
|
|
1129
1478
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1130
1479
|
};
|
|
@@ -1135,7 +1484,18 @@ var IconTechnologyBranchH = function (props) {
|
|
|
1135
1484
|
};
|
|
1136
1485
|
var body = iconBodies[size];
|
|
1137
1486
|
if (!body) {
|
|
1138
|
-
throw Error("Icon \"technology-branch-h\" is not available in size "
|
|
1487
|
+
throw Error("Icon \"technology-branch-h\" is not available in size " + size);
|
|
1488
|
+
}
|
|
1489
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1490
|
+
};
|
|
1491
|
+
var IconTechnologyBrowserTesting2 = function (props) {
|
|
1492
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1493
|
+
var iconBodies = {
|
|
1494
|
+
"48": "<path d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3Z\" fill=\"#E1E3ED\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3H8Z\" fill=\"#E1E3ED\" class=\"icon-light\"/><path d=\"M5 16H4a1 1 0 0 0 1 1v-1Zm38 0v1a1 1 0 0 0 1-1h-1Zm-24-5a1 1 0 1 0 0 2v-2Zm20 2a1 1 0 1 0 0-2v2ZM8 9h32V7H8v2Zm34 2v26h2V11h-2ZM6 37V11H4v26h2ZM5 17h38v-2H5v2Zm14-4h20v-2H19v2ZM8 39a2 2 0 0 1-2-2H4a4 4 0 0 0 4 4v-2Zm34-2a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4h-2ZM40 9a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4v2ZM8 7a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2V7Zm-4 4v5h2v-5H4Zm40 5v-5h-2v5h2Zm-4 23H24v2h16v-2Zm-16 0h-8v2h8v-2Zm-8 0H8v2h8v-2ZM10 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM16 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#9095AD\" class=\"icon-dark\"/><path d=\"M15 30h4v4h-4v-4Z\" fill=\"#9AA2FC\" class=\"icon-light-secondary\"/><path d=\"M33 25a1 1 0 1 0 0-2v2Zm-10-2a1 1 0 1 0 0 2v-2Zm10 10a1 1 0 1 0 0-2v2Zm-10-2a1 1 0 1 0 0 2v-2Zm-8.707-5.707a1 1 0 0 0 1.414 1.414l-1.414-1.414Zm5.414-2.586a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-4-1.414a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414ZM15 30v-1a1 1 0 0 0-1 1h1Zm4 0h1a1 1 0 0 0-1-1v1Zm0 4v1a1 1 0 0 0 1-1h-1Zm-4 0h-1a1 1 0 0 0 1 1v-1Zm18-11H23v2h10v-2Zm0 8H23v2h10v-2Zm-17.293-4.293 2-2-1.414-1.414-2 2 1.414 1.414Zm2-2 2-2-1.414-1.414-2 2 1.414 1.414Zm-3.414-2 2 2 1.414-1.414-2-2-1.414 1.414Zm2 2 2 2 1.414-1.414-2-2-1.414 1.414ZM15 31h4v-2h-4v2Zm3-1v4h2v-4h-2Zm1 3h-4v2h4v-2Zm-3 1v-4h-2v4h2Z\" fill=\"#4956E3\" class=\"icon-dark-secondary\"/>"
|
|
1495
|
+
};
|
|
1496
|
+
var body = iconBodies[size];
|
|
1497
|
+
if (!body) {
|
|
1498
|
+
throw Error("Icon \"technology-browser-testing-2\" is not available in size " + size);
|
|
1139
1499
|
}
|
|
1140
1500
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1141
1501
|
};
|
|
@@ -1147,7 +1507,7 @@ var IconTechnologyCodeEditor = function (props) {
|
|
|
1147
1507
|
};
|
|
1148
1508
|
var body = iconBodies[size];
|
|
1149
1509
|
if (!body) {
|
|
1150
|
-
throw Error("Icon \"technology-code-editor\" is not available in size "
|
|
1510
|
+
throw Error("Icon \"technology-code-editor\" is not available in size " + size);
|
|
1151
1511
|
}
|
|
1152
1512
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1153
1513
|
};
|
|
@@ -1158,7 +1518,7 @@ var IconTechnologyCommandLine = function (props) {
|
|
|
1158
1518
|
};
|
|
1159
1519
|
var body = iconBodies[size];
|
|
1160
1520
|
if (!body) {
|
|
1161
|
-
throw Error("Icon \"technology-command-line\" is not available in size "
|
|
1521
|
+
throw Error("Icon \"technology-command-line\" is not available in size " + size);
|
|
1162
1522
|
}
|
|
1163
1523
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1164
1524
|
};
|
|
@@ -1169,7 +1529,7 @@ var IconTechnologyCypress = function (props) {
|
|
|
1169
1529
|
};
|
|
1170
1530
|
var body = iconBodies[size];
|
|
1171
1531
|
if (!body) {
|
|
1172
|
-
throw Error("Icon \"technology-cypress\" is not available in size "
|
|
1532
|
+
throw Error("Icon \"technology-cypress\" is not available in size " + size);
|
|
1173
1533
|
}
|
|
1174
1534
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1175
1535
|
};
|
|
@@ -1180,7 +1540,7 @@ var IconTechnologyDashboardCheckmark = function (props) {
|
|
|
1180
1540
|
};
|
|
1181
1541
|
var body = iconBodies[size];
|
|
1182
1542
|
if (!body) {
|
|
1183
|
-
throw Error("Icon \"technology-dashboard-checkmark\" is not available in size "
|
|
1543
|
+
throw Error("Icon \"technology-dashboard-checkmark\" is not available in size " + size);
|
|
1184
1544
|
}
|
|
1185
1545
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1186
1546
|
};
|
|
@@ -1191,7 +1551,7 @@ var IconTechnologyDashboardFail = function (props) {
|
|
|
1191
1551
|
};
|
|
1192
1552
|
var body = iconBodies[size];
|
|
1193
1553
|
if (!body) {
|
|
1194
|
-
throw Error("Icon \"technology-dashboard-fail\" is not available in size "
|
|
1554
|
+
throw Error("Icon \"technology-dashboard-fail\" is not available in size " + size);
|
|
1195
1555
|
}
|
|
1196
1556
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1197
1557
|
};
|
|
@@ -1202,7 +1562,7 @@ var IconTechnologyDollar = function (props) {
|
|
|
1202
1562
|
};
|
|
1203
1563
|
var body = iconBodies[size];
|
|
1204
1564
|
if (!body) {
|
|
1205
|
-
throw Error("Icon \"technology-dollar\" is not available in size "
|
|
1565
|
+
throw Error("Icon \"technology-dollar\" is not available in size " + size);
|
|
1206
1566
|
}
|
|
1207
1567
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1208
1568
|
};
|
|
@@ -1213,7 +1573,7 @@ var IconTechnologyDragProject = function (props) {
|
|
|
1213
1573
|
};
|
|
1214
1574
|
var body = iconBodies[size];
|
|
1215
1575
|
if (!body) {
|
|
1216
|
-
throw Error("Icon \"technology-drag-project\" is not available in size "
|
|
1576
|
+
throw Error("Icon \"technology-drag-project\" is not available in size " + size);
|
|
1217
1577
|
}
|
|
1218
1578
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1219
1579
|
};
|
|
@@ -1224,18 +1584,31 @@ var IconTechnologyElementSelector = function (props) {
|
|
|
1224
1584
|
};
|
|
1225
1585
|
var body = iconBodies[size];
|
|
1226
1586
|
if (!body) {
|
|
1227
|
-
throw Error("Icon \"technology-element-selector\" is not available in size "
|
|
1587
|
+
throw Error("Icon \"technology-element-selector\" is not available in size " + size);
|
|
1588
|
+
}
|
|
1589
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1590
|
+
};
|
|
1591
|
+
var IconTechnologyImageScreenshot = function (props) {
|
|
1592
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1593
|
+
var iconBodies = {
|
|
1594
|
+
"16": "<path d=\"M1 14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2l-2.5-2.5L10 12 5.5 7.5 1 12v2ZM12 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m5.5 7.5.707-.707a1 1 0 0 0-1.414 0L5.5 7.5ZM10 12l-.707.707a1 1 0 0 0 1.414 0L10 12Zm2.5-2.5.707-.707a1 1 0 0 0-1.414 0l.707.707ZM14 0H2v2h12V0ZM2 14v-2H0v2h2Zm0-2V2H0v10h2Zm-.293.707 4.5-4.5-1.414-1.414-4.5 4.5 1.414 1.414Zm3.086-4.5 4.5 4.5 1.414-1.414-4.5-4.5-1.414 1.414Zm5.914 4.5 2.5-2.5-1.414-1.414-2.5 2.5 1.414 1.414ZM16 14v-2h-2v2h2Zm0-2V2h-2v10h2Zm-4.207-1.793 2.5 2.5 1.414-1.414-2.5-2.5-1.414 1.414ZM2 16h12v-2H2v2Zm9-11v2a2 2 0 0 0 2-2h-2Zm0 0H9a2 2 0 0 0 2 2V5Zm0 0V3a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2Zm3-3h2a2 2 0 0 0-2-2v2Zm0 12v2a2 2 0 0 0 2-2h-2ZM2 0a2 2 0 0 0-2 2h2V0ZM0 14a2 2 0 0 0 2 2v-2H0Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1595
|
+
};
|
|
1596
|
+
var body = iconBodies[size];
|
|
1597
|
+
if (!body) {
|
|
1598
|
+
throw Error("Icon \"technology-image-screenshot\" is not available in size " + size);
|
|
1228
1599
|
}
|
|
1229
1600
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1230
1601
|
};
|
|
1231
1602
|
var IconTechnologyInfinityLoop = function (props) {
|
|
1232
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["20"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1603
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "20", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1233
1604
|
var iconBodies = {
|
|
1234
|
-
"
|
|
1605
|
+
"16": "<path d=\"M7 5v1h2V5H7Zm2 6v-1H7v1h2ZM5 7a2 2 0 0 1-2-2H1a4 4 0 0 0 4 4V7ZM3 5a2 2 0 0 1 2-2V1a4 4 0 0 0-4 4h2Zm2-2a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4v2Zm8 8a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4h-2Zm-2 2a2 2 0 0 1-2-2H7a4 4 0 0 0 4 4v-2Zm0-4a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4v2Zm0-2H5v2h6V7Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
|
|
1606
|
+
"20": "<path class=\"icon-dark\" d=\"M11 13v-1H9v1h2ZM9 7v1h2V7H9ZM5.5 9A3.5 3.5 0 0 1 2 5.5H0A5.5 5.5 0 0 0 5.5 11V9ZM2 5.5A3.5 3.5 0 0 1 5.5 2V0A5.5 5.5 0 0 0 0 5.5h2ZM5.5 2A3.5 3.5 0 0 1 9 5.5h2A5.5 5.5 0 0 0 5.5 0v2ZM18 14.5a3.5 3.5 0 0 1-3.5 3.5v2a5.5 5.5 0 0 0 5.5-5.5h-2ZM14.5 18a3.5 3.5 0 0 1-3.5-3.5H9a5.5 5.5 0 0 0 5.5 5.5v-2Zm0-7a3.5 3.5 0 0 1 3.5 3.5h2A5.5 5.5 0 0 0 14.5 9v2Zm0-2h-9v2h9V9ZM11 14.5V13H9v1.5h2Zm-2-9V7h2V5.5H9Z\" fill=\"#1B1E2E\"/>",
|
|
1607
|
+
"24": "<path d=\"M13 15v-1h-2v1h2Zm-2-6v1h2V9h-2Zm-3.5 2A3.5 3.5 0 0 1 4 7.5H2A5.5 5.5 0 0 0 7.5 13v-2ZM4 7.5A3.5 3.5 0 0 1 7.5 4V2A5.5 5.5 0 0 0 2 7.5h2ZM7.5 4A3.5 3.5 0 0 1 11 7.5h2A5.5 5.5 0 0 0 7.5 2v2ZM20 16.5a3.5 3.5 0 0 1-3.5 3.5v2a5.5 5.5 0 0 0 5.5-5.5h-2ZM16.5 20a3.5 3.5 0 0 1-3.5-3.5h-2a5.5 5.5 0 0 0 5.5 5.5v-2Zm0-7a3.5 3.5 0 0 1 3.5 3.5h2a5.5 5.5 0 0 0-5.5-5.5v2Zm0-2h-9v2h9v-2ZM13 16.5V15h-2v1.5h2Zm-2-9V9h2V7.5h-2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1235
1608
|
};
|
|
1236
1609
|
var body = iconBodies[size];
|
|
1237
1610
|
if (!body) {
|
|
1238
|
-
throw Error("Icon \"technology-infinity-loop\" is not available in size "
|
|
1611
|
+
throw Error("Icon \"technology-infinity-loop\" is not available in size " + size);
|
|
1239
1612
|
}
|
|
1240
1613
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1241
1614
|
};
|
|
@@ -1246,7 +1619,7 @@ var IconTechnologyLockedProject = function (props) {
|
|
|
1246
1619
|
};
|
|
1247
1620
|
var body = iconBodies[size];
|
|
1248
1621
|
if (!body) {
|
|
1249
|
-
throw Error("Icon \"technology-locked-project\" is not available in size "
|
|
1622
|
+
throw Error("Icon \"technology-locked-project\" is not available in size " + size);
|
|
1250
1623
|
}
|
|
1251
1624
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1252
1625
|
};
|
|
@@ -1257,7 +1630,40 @@ var IconTechnologyOctothorpe = function (props) {
|
|
|
1257
1630
|
};
|
|
1258
1631
|
var body = iconBodies[size];
|
|
1259
1632
|
if (!body) {
|
|
1260
|
-
throw Error("Icon \"technology-octothorpe\" is not available in size "
|
|
1633
|
+
throw Error("Icon \"technology-octothorpe\" is not available in size " + size);
|
|
1634
|
+
}
|
|
1635
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1636
|
+
};
|
|
1637
|
+
var IconTechnologyPullRequest = function (props) {
|
|
1638
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1639
|
+
var iconBodies = {
|
|
1640
|
+
"16": "<path d=\"M2.5 12a1 1 0 1 0 2 0h-2Zm2-8a1 1 0 1 0-2 0h2Zm7 8a1 1 0 1 0 2 0h-2Zm-4-8-.707-.707a1 1 0 0 0 0 1.414L7.5 4ZM9 2.5h1a1 1 0 0 0-1.707-.707L9 2.5Zm0 3-.707.707A1 1 0 0 0 10 5.5H9ZM11.5 4v1-1Zm-7 8V4h-2v8h2Zm9 0V5h-2v7h2Zm-2-9h-4v2h4V3ZM8.207 4.707l1.5-1.5-1.414-1.414-1.5 1.5 1.414 1.414Zm-1.414 0 1.5 1.5 1.414-1.414-1.5-1.5-1.414 1.414ZM8 2.5v3h2v-3H8ZM13.5 5a2 2 0 0 0-2-2v2h2Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M5 4a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm9 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\" fill=\"#D0D2E0\" class=\"icon-light-fill icon-dark-stroke\" stroke=\"currentColor\"/>"
|
|
1641
|
+
};
|
|
1642
|
+
var body = iconBodies[size];
|
|
1643
|
+
if (!body) {
|
|
1644
|
+
throw Error("Icon \"technology-pull-request\" is not available in size " + size);
|
|
1645
|
+
}
|
|
1646
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1647
|
+
};
|
|
1648
|
+
var IconTechnologyServer = function (props) {
|
|
1649
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1650
|
+
var iconBodies = {
|
|
1651
|
+
"16": "<rect x=\"1\" y=\"2\" width=\"14\" height=\"6\" rx=\"2\" fill=\"#D0D2E0\" class=\"icon-dark-stroke icon-light-fill\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"1\" y=\"8\" width=\"14\" height=\"6\" rx=\"2\" fill=\"#D0D2E0\" class=\"icon-dark-stroke icon-light-fill\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM10 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM13 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" class=\"icon-dark\" fill=\"currentColor\"/>"
|
|
1652
|
+
};
|
|
1653
|
+
var body = iconBodies[size];
|
|
1654
|
+
if (!body) {
|
|
1655
|
+
throw Error("Icon \"technology-server\" is not available in size " + size);
|
|
1656
|
+
}
|
|
1657
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1658
|
+
};
|
|
1659
|
+
var IconTechnologyTerminalLog = function (props) {
|
|
1660
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1661
|
+
var iconBodies = {
|
|
1662
|
+
"16": "<path d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v1h14V3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 3a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v1h14V3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M1 4v9a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4M1 4V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1M1 4h14\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 7a.5.5 0 0 0 0 1V7Zm1 1H6V7h-.5v1Zm-1 1a.5.5 0 0 0 0 1V9ZM6 10h.5V9H6v1Zm-1.5 1a.5.5 0 0 0 0 1v-1Zm3 1H8v-1h-.5v1Zm0-3H7v1h.5V9ZM9 10a.5.5 0 0 0 0-1v1Zm0 1h-.5v1H9v-1Zm2 1a.5.5 0 0 0 0-1v1ZM7 7h-.5v1H7V7Zm1 1h.5V7H8v1Zm1.5-1H9v1h.5V7Zm2 1a.5.5 0 0 0 0-1v1Zm-7 0h1V7h-1v1Zm0 2H6V9H4.5v1Zm0 2h3v-1h-3v1Zm3-2H9V9H7.5v1ZM9 12h2v-1H9v1ZM7 8h1V7H7v1Zm2.5 0h2V7h-2v1Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
|
|
1663
|
+
};
|
|
1664
|
+
var body = iconBodies[size];
|
|
1665
|
+
if (!body) {
|
|
1666
|
+
throw Error("Icon \"technology-terminal-log\" is not available in size " + size);
|
|
1261
1667
|
}
|
|
1262
1668
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1263
1669
|
};
|
|
@@ -1268,7 +1674,7 @@ var IconTechnologyTerminal = function (props) {
|
|
|
1268
1674
|
};
|
|
1269
1675
|
var body = iconBodies[size];
|
|
1270
1676
|
if (!body) {
|
|
1271
|
-
throw Error("Icon \"technology-terminal\" is not available in size "
|
|
1677
|
+
throw Error("Icon \"technology-terminal\" is not available in size " + size);
|
|
1272
1678
|
}
|
|
1273
1679
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1274
1680
|
};
|
|
@@ -1280,7 +1686,7 @@ var IconTechnologyTestResults = function (props) {
|
|
|
1280
1686
|
};
|
|
1281
1687
|
var body = iconBodies[size];
|
|
1282
1688
|
if (!body) {
|
|
1283
|
-
throw Error("Icon \"technology-test-results\" is not available in size "
|
|
1689
|
+
throw Error("Icon \"technology-test-results\" is not available in size " + size);
|
|
1284
1690
|
}
|
|
1285
1691
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1286
1692
|
};
|
|
@@ -1291,7 +1697,7 @@ var IconTestingTypeComponentSolid = function (props) {
|
|
|
1291
1697
|
};
|
|
1292
1698
|
var body = iconBodies[size];
|
|
1293
1699
|
if (!body) {
|
|
1294
|
-
throw Error("Icon \"testing-type-component-solid\" is not available in size "
|
|
1700
|
+
throw Error("Icon \"testing-type-component-solid\" is not available in size " + size);
|
|
1295
1701
|
}
|
|
1296
1702
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1297
1703
|
};
|
|
@@ -1304,29 +1710,19 @@ var IconTestingTypeComponent = function (props) {
|
|
|
1304
1710
|
};
|
|
1305
1711
|
var body = iconBodies[size];
|
|
1306
1712
|
if (!body) {
|
|
1307
|
-
throw Error("Icon \"testing-type-component\" is not available in size "
|
|
1308
|
-
}
|
|
1309
|
-
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1310
|
-
};
|
|
1311
|
-
var IconTestingTypeE2ESolidSimple = function (props) {
|
|
1312
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1313
|
-
var iconBodies = {
|
|
1314
|
-
"24": "<path d=\"M4 3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M20 21a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2v8a2 2 0 0 1-2 2H6v2a2 2 0 0 0 2 2h12ZM6 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM12 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#00595D\" class=\"icon-dark\"/>"
|
|
1315
|
-
};
|
|
1316
|
-
var body = iconBodies[size];
|
|
1317
|
-
if (!body) {
|
|
1318
|
-
throw Error("Icon \"testing-type-e2e-solid-simple\" is not available in size ".concat(size));
|
|
1713
|
+
throw Error("Icon \"testing-type-component\" is not available in size " + size);
|
|
1319
1714
|
}
|
|
1320
1715
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1321
1716
|
};
|
|
1322
1717
|
var IconTestingTypeE2ESolid = function (props) {
|
|
1323
|
-
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1718
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24", "64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1324
1719
|
var iconBodies = {
|
|
1720
|
+
"24": "<path d=\"M4 3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M20 21a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2v8a2 2 0 0 1-2 2H6v2a2 2 0 0 0 2 2h12ZM6 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM12 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#00595D\" class=\"icon-dark\"/>",
|
|
1325
1721
|
"64": "<path d=\"M9 8a3 3 0 0 0-3 3v33a3 3 0 0 0 3 3h37a3 3 0 0 0 3-3V11a3 3 0 0 0-3-3H9Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M55 56a3 3 0 0 0 3-3V20a3 3 0 0 0-3-3h-6v27a3 3 0 0 1-3 3H15v6a3 3 0 0 0 3 3h37Z\" fill=\"#00595D\" class=\"icon-dark\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49 11a3 3 0 0 0-3-3H9a3 3 0 0 0-3 3v6h43v-6Zm-5 .5a1 1 0 1 1 0 2H25a1 1 0 1 1 0-2h19Zm-33 2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm4-2a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm4 2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\" fill=\"#00595D\" class=\"icon-dark\"/>"
|
|
1326
1722
|
};
|
|
1327
1723
|
var body = iconBodies[size];
|
|
1328
1724
|
if (!body) {
|
|
1329
|
-
throw Error("Icon \"testing-type-e2e-solid\" is not available in size "
|
|
1725
|
+
throw Error("Icon \"testing-type-e2e-solid\" is not available in size " + size);
|
|
1330
1726
|
}
|
|
1331
1727
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1332
1728
|
};
|
|
@@ -1339,40 +1735,40 @@ var IconTestingTypeE2E = function (props) {
|
|
|
1339
1735
|
};
|
|
1340
1736
|
var body = iconBodies[size];
|
|
1341
1737
|
if (!body) {
|
|
1342
|
-
throw Error("Icon \"testing-type-e2e\" is not available in size "
|
|
1738
|
+
throw Error("Icon \"testing-type-e2e\" is not available in size " + size);
|
|
1343
1739
|
}
|
|
1344
1740
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1345
1741
|
};
|
|
1346
|
-
var
|
|
1742
|
+
var IconTimeStopwatch = function (props) {
|
|
1347
1743
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1348
1744
|
var iconBodies = {
|
|
1349
|
-
"16": "<path d=\"
|
|
1745
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5 9.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM8 9.993a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M8 4V1m0 3c1.519 0 2.894.616 3.89 1.61M8 4a5.483 5.483 0 0 0-3.89 1.61M8 1h2M8 1H6m5.89 4.61a5.5 5.5 0 1 1-7.778 0m7.777 0L13 4.5M4.11 5.61 3 4.5m5 5 .357-.357M10 7.5 8.357 9.143m0 0a.498.498 0 0 1-.357.85.5.5 0 1 1 .357-.85Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1350
1746
|
};
|
|
1351
1747
|
var body = iconBodies[size];
|
|
1352
1748
|
if (!body) {
|
|
1353
|
-
throw Error("Icon \"
|
|
1749
|
+
throw Error("Icon \"time-stopwatch\" is not available in size " + size);
|
|
1354
1750
|
}
|
|
1355
1751
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1356
1752
|
};
|
|
1357
|
-
var
|
|
1753
|
+
var IconUserGeneralOutline = function (props) {
|
|
1358
1754
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1359
1755
|
var iconBodies = {
|
|
1360
|
-
"16": "<path d=\"M8
|
|
1756
|
+
"16": "<path d=\"M8 1a7 7 0 0 0-4.9 12 5.009 5.009 0 0 1 3.043-3.644 3 3 0 1 1 3.714 0A5.009 5.009 0 0 1 12.9 13 7 7 0 0 0 8 1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6.143 9.356C6.653 9.76 7.299 10 8 10c.701 0 1.346-.24 1.857-.644m-3.714 0a3 3 0 1 1 3.714 0m-3.714 0A5.009 5.009 0 0 0 3.1 13m6.757-3.643A5.009 5.009 0 0 1 12.9 13m0 0a7 7 0 1 0-9.8 0m9.8 0A6.977 6.977 0 0 1 8 15a6.977 6.977 0 0 1-4.9-2\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>"
|
|
1361
1757
|
};
|
|
1362
1758
|
var body = iconBodies[size];
|
|
1363
1759
|
if (!body) {
|
|
1364
|
-
throw Error("Icon \"user-general-
|
|
1760
|
+
throw Error("Icon \"user-general-outline\" is not available in size " + size);
|
|
1365
1761
|
}
|
|
1366
1762
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1367
1763
|
};
|
|
1368
|
-
var
|
|
1764
|
+
var IconUserGeneralSolid = function (props) {
|
|
1369
1765
|
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1370
1766
|
var iconBodies = {
|
|
1371
|
-
"16": "<path d=\"M8
|
|
1767
|
+
"16": "<path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M5 7a3 3 0 1 1 4.857 2.356A5.009 5.009 0 0 1 12.9 13 6.977 6.977 0 0 1 8 15a6.977 6.977 0 0 1-4.9-2 5.009 5.009 0 0 1 3.043-3.644A2.995 2.995 0 0 1 5 7Z\" fill=\"#9095AD\" class=\"icon-light\"/><path d=\"M6.143 9.356C6.653 9.76 7.299 10 8 10c.701 0 1.346-.24 1.857-.644m-3.714 0a3 3 0 1 1 3.714 0m-3.714 0A5.009 5.009 0 0 0 3.1 13 6.977 6.977 0 0 0 8 15a6.977 6.977 0 0 0 4.9-2 5.009 5.009 0 0 0-3.043-3.644\" stroke=\"#1B1E2E\" stroke-width=\"2\" class=\"icon-dark\"/>"
|
|
1372
1768
|
};
|
|
1373
1769
|
var body = iconBodies[size];
|
|
1374
1770
|
if (!body) {
|
|
1375
|
-
throw Error("Icon \"user-
|
|
1771
|
+
throw Error("Icon \"user-general-solid\" is not available in size " + size);
|
|
1376
1772
|
}
|
|
1377
1773
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1378
1774
|
};
|
|
@@ -1383,7 +1779,7 @@ var IconViewList = function (props) {
|
|
|
1383
1779
|
};
|
|
1384
1780
|
var body = iconBodies[size];
|
|
1385
1781
|
if (!body) {
|
|
1386
|
-
throw Error("Icon \"view-list\" is not available in size "
|
|
1782
|
+
throw Error("Icon \"view-list\" is not available in size " + size);
|
|
1387
1783
|
}
|
|
1388
1784
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1389
1785
|
};
|
|
@@ -1394,7 +1790,7 @@ var IconViewTreeAlt = function (props) {
|
|
|
1394
1790
|
};
|
|
1395
1791
|
var body = iconBodies[size];
|
|
1396
1792
|
if (!body) {
|
|
1397
|
-
throw Error("Icon \"view-tree-alt\" is not available in size "
|
|
1793
|
+
throw Error("Icon \"view-tree-alt\" is not available in size " + size);
|
|
1398
1794
|
}
|
|
1399
1795
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1400
1796
|
};
|
|
@@ -1405,7 +1801,7 @@ var IconWarningCircle = function (props) {
|
|
|
1405
1801
|
};
|
|
1406
1802
|
var body = iconBodies[size];
|
|
1407
1803
|
if (!body) {
|
|
1408
|
-
throw Error("Icon \"warning-circle\" is not available in size "
|
|
1804
|
+
throw Error("Icon \"warning-circle\" is not available in size " + size);
|
|
1409
1805
|
}
|
|
1410
1806
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1411
1807
|
};
|
|
@@ -1416,10 +1812,12 @@ var IconWarning = function (props) {
|
|
|
1416
1812
|
};
|
|
1417
1813
|
var body = iconBodies[size];
|
|
1418
1814
|
if (!body) {
|
|
1419
|
-
throw Error("Icon \"warning\" is not available in size "
|
|
1815
|
+
throw Error("Icon \"warning\" is not available in size " + size);
|
|
1420
1816
|
}
|
|
1421
1817
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1422
1818
|
};
|
|
1423
1819
|
|
|
1424
|
-
export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionDelete, IconActionDeleteCircle, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown,
|
|
1820
|
+
export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteXlarge, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown, IconArrowRight, IconArrowUp, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconDeviceLaptop, IconDocumentAdded, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderLight, IconObjectGear, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconSecurityKey, IconSecurityLockLocked, IconShapeLightningBolt, IconStatusCancelledOutline, IconStatusCancelledSimple, IconStatusCancelledSolid, IconStatusErroredOutline, IconStatusErroredSimple, IconStatusErroredSolid, IconStatusFailedOutline, IconStatusFailedSimple, IconStatusFailedSolid, IconStatusPassedOutline, IconStatusPassedSimple, IconStatusPassedSolid, IconStatusPendingOutline, IconStatusPendingSimple, IconStatusPlaceholderSimple, IconStatusPlaceholderSolid, IconStatusQueuedOutline, IconStatusQueuedSimple, IconStatusRunningOutline, IconStatusRunningSimple, IconStatusSkippedOutline, IconStatusSkippedSimple, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewTreeAlt, IconWarning, IconWarningCircle, compileReactIconProperties, Icon as default };
|
|
1821
|
+
/* <windicss-keep class=""> */
|
|
1822
|
+
|
|
1425
1823
|
//# sourceMappingURL=index.es.js.map
|