@cypress-design/react-icon 0.3.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 +15 -0
- package/Icon.tsx +2 -37
- package/compileProperties.ts +16 -10
- package/dist/Icon.d.ts +2 -482
- package/dist/Icon.d.ts.map +1 -1
- package/dist/TreeShakableIcons.d.ts +22 -0
- 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 +423 -156
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +444 -154
- package/dist/index.umd.js.map +1 -1
- package/generate-icons.js +5 -3
- package/index.ts +1 -0
- package/package.json +5 -4
package/dist/index.umd.js
CHANGED
|
@@ -64,20 +64,18 @@ function __rest(s, e) {
|
|
|
64
64
|
return t;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
var
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
if (key.endsWith('Color')) {
|
|
74
|
-
// @ts-ignore
|
|
75
|
-
delete attributes[key];
|
|
67
|
+
var compileReactIconProperties = function (_a) {
|
|
68
|
+
var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size, attributes = __rest(_a, ["body", "compiledClasses", "size"]);
|
|
69
|
+
var filteredAttributes = Object.keys(attributes).reduce(function (newAttributes, attrName) {
|
|
70
|
+
if (!iconsRegistry.ICON_COLOR_PROP_NAMES.includes(attrName)) {
|
|
71
|
+
newAttributes[attrName] =
|
|
72
|
+
attributes[attrName];
|
|
76
73
|
}
|
|
77
|
-
|
|
74
|
+
return newAttributes;
|
|
75
|
+
}, {});
|
|
78
76
|
var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
|
|
79
77
|
__html: body
|
|
80
|
-
} },
|
|
78
|
+
} }, filteredAttributes);
|
|
81
79
|
if (attributes.className) {
|
|
82
80
|
compiledClasses.push(attributes.className);
|
|
83
81
|
}
|
|
@@ -87,18 +85,8 @@ var compileReactIconProperties$1 = function (_a) {
|
|
|
87
85
|
return componentProps;
|
|
88
86
|
};
|
|
89
87
|
|
|
90
|
-
var
|
|
91
|
-
|
|
92
|
-
var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
|
|
93
|
-
__html: body
|
|
94
|
-
} }, attributes);
|
|
95
|
-
if (attributes.className) {
|
|
96
|
-
compiledClasses.push(attributes.className);
|
|
97
|
-
}
|
|
98
|
-
if (compiledClasses.length) {
|
|
99
|
-
componentProps.className = compiledClasses.join(' ');
|
|
100
|
-
}
|
|
101
|
-
return componentProps;
|
|
88
|
+
var Icon = function (props) {
|
|
89
|
+
return React__namespace.createElement('svg', compileReactIconProperties(iconsRegistry.compileIcon(props)));
|
|
102
90
|
};
|
|
103
91
|
|
|
104
92
|
var IconActionAddLarge = function (props) {
|
|
@@ -108,7 +96,7 @@ var IconActionAddLarge = function (props) {
|
|
|
108
96
|
};
|
|
109
97
|
var body = iconBodies[size];
|
|
110
98
|
if (!body) {
|
|
111
|
-
throw Error("Icon \"action-add-large\" is not available in size "
|
|
99
|
+
throw Error("Icon \"action-add-large\" is not available in size " + size);
|
|
112
100
|
}
|
|
113
101
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
114
102
|
};
|
|
@@ -119,7 +107,7 @@ var IconActionAddMedium = function (props) {
|
|
|
119
107
|
};
|
|
120
108
|
var body = iconBodies[size];
|
|
121
109
|
if (!body) {
|
|
122
|
-
throw Error("Icon \"action-add-medium\" is not available in size "
|
|
110
|
+
throw Error("Icon \"action-add-medium\" is not available in size " + size);
|
|
123
111
|
}
|
|
124
112
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
125
113
|
};
|
|
@@ -130,7 +118,7 @@ var IconActionAddSmall = function (props) {
|
|
|
130
118
|
};
|
|
131
119
|
var body = iconBodies[size];
|
|
132
120
|
if (!body) {
|
|
133
|
-
throw Error("Icon \"action-add-small\" is not available in size "
|
|
121
|
+
throw Error("Icon \"action-add-small\" is not available in size " + size);
|
|
134
122
|
}
|
|
135
123
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
136
124
|
};
|
|
@@ -141,7 +129,7 @@ var IconActionAddXsmall = function (props) {
|
|
|
141
129
|
};
|
|
142
130
|
var body = iconBodies[size];
|
|
143
131
|
if (!body) {
|
|
144
|
-
throw Error("Icon \"action-add-xsmall\" is not available in size "
|
|
132
|
+
throw Error("Icon \"action-add-xsmall\" is not available in size " + size);
|
|
145
133
|
}
|
|
146
134
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
147
135
|
};
|
|
@@ -152,7 +140,7 @@ var IconActionAdd = function (props) {
|
|
|
152
140
|
};
|
|
153
141
|
var body = iconBodies[size];
|
|
154
142
|
if (!body) {
|
|
155
|
-
throw Error("Icon \"action-add\" is not available in size "
|
|
143
|
+
throw Error("Icon \"action-add\" is not available in size " + size);
|
|
156
144
|
}
|
|
157
145
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
158
146
|
};
|
|
@@ -163,7 +151,7 @@ var IconActionDeleteCircle = function (props) {
|
|
|
163
151
|
};
|
|
164
152
|
var body = iconBodies[size];
|
|
165
153
|
if (!body) {
|
|
166
|
-
throw Error("Icon \"action-delete-circle\" is not available in size "
|
|
154
|
+
throw Error("Icon \"action-delete-circle\" is not available in size " + size);
|
|
167
155
|
}
|
|
168
156
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
169
157
|
};
|
|
@@ -174,7 +162,7 @@ var IconActionDeleteLarge = function (props) {
|
|
|
174
162
|
};
|
|
175
163
|
var body = iconBodies[size];
|
|
176
164
|
if (!body) {
|
|
177
|
-
throw Error("Icon \"action-delete-large\" is not available in size "
|
|
165
|
+
throw Error("Icon \"action-delete-large\" is not available in size " + size);
|
|
178
166
|
}
|
|
179
167
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
180
168
|
};
|
|
@@ -185,7 +173,7 @@ var IconActionDeleteMedium = function (props) {
|
|
|
185
173
|
};
|
|
186
174
|
var body = iconBodies[size];
|
|
187
175
|
if (!body) {
|
|
188
|
-
throw Error("Icon \"action-delete-medium\" is not available in size "
|
|
176
|
+
throw Error("Icon \"action-delete-medium\" is not available in size " + size);
|
|
189
177
|
}
|
|
190
178
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
191
179
|
};
|
|
@@ -196,7 +184,7 @@ var IconActionDeleteXlarge = function (props) {
|
|
|
196
184
|
};
|
|
197
185
|
var body = iconBodies[size];
|
|
198
186
|
if (!body) {
|
|
199
|
-
throw Error("Icon \"action-delete-xlarge\" is not available in size "
|
|
187
|
+
throw Error("Icon \"action-delete-xlarge\" is not available in size " + size);
|
|
200
188
|
}
|
|
201
189
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
202
190
|
};
|
|
@@ -207,7 +195,7 @@ var IconActionDelete = function (props) {
|
|
|
207
195
|
};
|
|
208
196
|
var body = iconBodies[size];
|
|
209
197
|
if (!body) {
|
|
210
|
-
throw Error("Icon \"action-delete\" is not available in size "
|
|
198
|
+
throw Error("Icon \"action-delete\" is not available in size " + size);
|
|
211
199
|
}
|
|
212
200
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
213
201
|
};
|
|
@@ -218,7 +206,7 @@ var IconActionDisableCircleSolid = function (props) {
|
|
|
218
206
|
};
|
|
219
207
|
var body = iconBodies[size];
|
|
220
208
|
if (!body) {
|
|
221
|
-
throw Error("Icon \"action-disable-circle-solid\" is not available in size "
|
|
209
|
+
throw Error("Icon \"action-disable-circle-solid\" is not available in size " + size);
|
|
222
210
|
}
|
|
223
211
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
224
212
|
};
|
|
@@ -229,7 +217,7 @@ var IconActionExport = function (props) {
|
|
|
229
217
|
};
|
|
230
218
|
var body = iconBodies[size];
|
|
231
219
|
if (!body) {
|
|
232
|
-
throw Error("Icon \"action-export\" is not available in size "
|
|
220
|
+
throw Error("Icon \"action-export\" is not available in size " + size);
|
|
233
221
|
}
|
|
234
222
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
235
223
|
};
|
|
@@ -240,7 +228,7 @@ var IconActionNext = function (props) {
|
|
|
240
228
|
};
|
|
241
229
|
var body = iconBodies[size];
|
|
242
230
|
if (!body) {
|
|
243
|
-
throw Error("Icon \"action-next\" is not available in size "
|
|
231
|
+
throw Error("Icon \"action-next\" is not available in size " + size);
|
|
244
232
|
}
|
|
245
233
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
246
234
|
};
|
|
@@ -251,7 +239,7 @@ var IconActionPlayLarge = function (props) {
|
|
|
251
239
|
};
|
|
252
240
|
var body = iconBodies[size];
|
|
253
241
|
if (!body) {
|
|
254
|
-
throw Error("Icon \"action-play-large\" is not available in size "
|
|
242
|
+
throw Error("Icon \"action-play-large\" is not available in size " + size);
|
|
255
243
|
}
|
|
256
244
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
257
245
|
};
|
|
@@ -262,7 +250,7 @@ var IconActionPlaySmall = function (props) {
|
|
|
262
250
|
};
|
|
263
251
|
var body = iconBodies[size];
|
|
264
252
|
if (!body) {
|
|
265
|
-
throw Error("Icon \"action-play-small\" is not available in size "
|
|
253
|
+
throw Error("Icon \"action-play-small\" is not available in size " + size);
|
|
266
254
|
}
|
|
267
255
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
268
256
|
};
|
|
@@ -273,7 +261,7 @@ var IconActionPower = function (props) {
|
|
|
273
261
|
};
|
|
274
262
|
var body = iconBodies[size];
|
|
275
263
|
if (!body) {
|
|
276
|
-
throw Error("Icon \"action-power\" is not available in size "
|
|
264
|
+
throw Error("Icon \"action-power\" is not available in size " + size);
|
|
277
265
|
}
|
|
278
266
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
279
267
|
};
|
|
@@ -284,7 +272,7 @@ var IconActionQuestionMarkCircle = function (props) {
|
|
|
284
272
|
};
|
|
285
273
|
var body = iconBodies[size];
|
|
286
274
|
if (!body) {
|
|
287
|
-
throw Error("Icon \"action-question-mark-circle\" is not available in size "
|
|
275
|
+
throw Error("Icon \"action-question-mark-circle\" is not available in size " + size);
|
|
288
276
|
}
|
|
289
277
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
290
278
|
};
|
|
@@ -295,7 +283,7 @@ var IconActionQuestionMarkDefault = function (props) {
|
|
|
295
283
|
};
|
|
296
284
|
var body = iconBodies[size];
|
|
297
285
|
if (!body) {
|
|
298
|
-
throw Error("Icon \"action-question-mark-default\" is not available in size "
|
|
286
|
+
throw Error("Icon \"action-question-mark-default\" is not available in size " + size);
|
|
299
287
|
}
|
|
300
288
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
301
289
|
};
|
|
@@ -306,7 +294,7 @@ var IconActionQuestionMarkOutline = function (props) {
|
|
|
306
294
|
};
|
|
307
295
|
var body = iconBodies[size];
|
|
308
296
|
if (!body) {
|
|
309
|
-
throw Error("Icon \"action-question-mark-outline\" is not available in size "
|
|
297
|
+
throw Error("Icon \"action-question-mark-outline\" is not available in size " + size);
|
|
310
298
|
}
|
|
311
299
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
312
300
|
};
|
|
@@ -317,7 +305,7 @@ var IconActionRecord = function (props) {
|
|
|
317
305
|
};
|
|
318
306
|
var body = iconBodies[size];
|
|
319
307
|
if (!body) {
|
|
320
|
-
throw Error("Icon \"action-record\" is not available in size "
|
|
308
|
+
throw Error("Icon \"action-record\" is not available in size " + size);
|
|
321
309
|
}
|
|
322
310
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
323
311
|
};
|
|
@@ -328,7 +316,7 @@ var IconActionRefresh = function (props) {
|
|
|
328
316
|
};
|
|
329
317
|
var body = iconBodies[size];
|
|
330
318
|
if (!body) {
|
|
331
|
-
throw Error("Icon \"action-refresh\" is not available in size "
|
|
319
|
+
throw Error("Icon \"action-refresh\" is not available in size " + size);
|
|
332
320
|
}
|
|
333
321
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
334
322
|
};
|
|
@@ -339,7 +327,7 @@ var IconActionRestart = function (props) {
|
|
|
339
327
|
};
|
|
340
328
|
var body = iconBodies[size];
|
|
341
329
|
if (!body) {
|
|
342
|
-
throw Error("Icon \"action-restart\" is not available in size "
|
|
330
|
+
throw Error("Icon \"action-restart\" is not available in size " + size);
|
|
343
331
|
}
|
|
344
332
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
345
333
|
};
|
|
@@ -350,7 +338,7 @@ var IconActionStop = function (props) {
|
|
|
350
338
|
};
|
|
351
339
|
var body = iconBodies[size];
|
|
352
340
|
if (!body) {
|
|
353
|
-
throw Error("Icon \"action-stop\" is not available in size "
|
|
341
|
+
throw Error("Icon \"action-stop\" is not available in size " + size);
|
|
354
342
|
}
|
|
355
343
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
356
344
|
};
|
|
@@ -361,7 +349,7 @@ var IconArrowCollapse = function (props) {
|
|
|
361
349
|
};
|
|
362
350
|
var body = iconBodies[size];
|
|
363
351
|
if (!body) {
|
|
364
|
-
throw Error("Icon \"arrow-collapse\" is not available in size "
|
|
352
|
+
throw Error("Icon \"arrow-collapse\" is not available in size " + size);
|
|
365
353
|
}
|
|
366
354
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
367
355
|
};
|
|
@@ -372,7 +360,7 @@ var IconArrowDown = function (props) {
|
|
|
372
360
|
};
|
|
373
361
|
var body = iconBodies[size];
|
|
374
362
|
if (!body) {
|
|
375
|
-
throw Error("Icon \"arrow-down\" is not available in size "
|
|
363
|
+
throw Error("Icon \"arrow-down\" is not available in size " + size);
|
|
376
364
|
}
|
|
377
365
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
378
366
|
};
|
|
@@ -383,7 +371,7 @@ var IconArrowExpand = function (props) {
|
|
|
383
371
|
};
|
|
384
372
|
var body = iconBodies[size];
|
|
385
373
|
if (!body) {
|
|
386
|
-
throw Error("Icon \"arrow-expand\" is not available in size "
|
|
374
|
+
throw Error("Icon \"arrow-expand\" is not available in size " + size);
|
|
387
375
|
}
|
|
388
376
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
389
377
|
};
|
|
@@ -394,7 +382,7 @@ var IconArrowLeft = function (props) {
|
|
|
394
382
|
};
|
|
395
383
|
var body = iconBodies[size];
|
|
396
384
|
if (!body) {
|
|
397
|
-
throw Error("Icon \"arrow-left\" is not available in size "
|
|
385
|
+
throw Error("Icon \"arrow-left\" is not available in size " + size);
|
|
398
386
|
}
|
|
399
387
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
400
388
|
};
|
|
@@ -405,7 +393,7 @@ var IconArrowOutlineDown = function (props) {
|
|
|
405
393
|
};
|
|
406
394
|
var body = iconBodies[size];
|
|
407
395
|
if (!body) {
|
|
408
|
-
throw Error("Icon \"arrow-outline-down\" is not available in size "
|
|
396
|
+
throw Error("Icon \"arrow-outline-down\" is not available in size " + size);
|
|
409
397
|
}
|
|
410
398
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
411
399
|
};
|
|
@@ -416,7 +404,7 @@ var IconArrowRight = function (props) {
|
|
|
416
404
|
};
|
|
417
405
|
var body = iconBodies[size];
|
|
418
406
|
if (!body) {
|
|
419
|
-
throw Error("Icon \"arrow-right\" is not available in size "
|
|
407
|
+
throw Error("Icon \"arrow-right\" is not available in size " + size);
|
|
420
408
|
}
|
|
421
409
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
422
410
|
};
|
|
@@ -427,7 +415,7 @@ var IconArrowUp = function (props) {
|
|
|
427
415
|
};
|
|
428
416
|
var body = iconBodies[size];
|
|
429
417
|
if (!body) {
|
|
430
|
-
throw Error("Icon \"arrow-up\" is not available in size "
|
|
418
|
+
throw Error("Icon \"arrow-up\" is not available in size " + size);
|
|
431
419
|
}
|
|
432
420
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
433
421
|
};
|
|
@@ -438,7 +426,7 @@ var IconCheckmarkOutline = function (props) {
|
|
|
438
426
|
};
|
|
439
427
|
var body = iconBodies[size];
|
|
440
428
|
if (!body) {
|
|
441
|
-
throw Error("Icon \"checkmark-outline\" is not available in size "
|
|
429
|
+
throw Error("Icon \"checkmark-outline\" is not available in size " + size);
|
|
442
430
|
}
|
|
443
431
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
444
432
|
};
|
|
@@ -449,7 +437,7 @@ var IconCheckmarkSmall = function (props) {
|
|
|
449
437
|
};
|
|
450
438
|
var body = iconBodies[size];
|
|
451
439
|
if (!body) {
|
|
452
|
-
throw Error("Icon \"checkmark-small\" is not available in size "
|
|
440
|
+
throw Error("Icon \"checkmark-small\" is not available in size " + size);
|
|
453
441
|
}
|
|
454
442
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
455
443
|
};
|
|
@@ -460,7 +448,7 @@ var IconCheckmarkSolid = function (props) {
|
|
|
460
448
|
};
|
|
461
449
|
var body = iconBodies[size];
|
|
462
450
|
if (!body) {
|
|
463
|
-
throw Error("Icon \"checkmark-solid\" is not available in size "
|
|
451
|
+
throw Error("Icon \"checkmark-solid\" is not available in size " + size);
|
|
464
452
|
}
|
|
465
453
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
466
454
|
};
|
|
@@ -471,7 +459,7 @@ var IconCheckmark = function (props) {
|
|
|
471
459
|
};
|
|
472
460
|
var body = iconBodies[size];
|
|
473
461
|
if (!body) {
|
|
474
|
-
throw Error("Icon \"checkmark\" is not available in size "
|
|
462
|
+
throw Error("Icon \"checkmark\" is not available in size " + size);
|
|
475
463
|
}
|
|
476
464
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
477
465
|
};
|
|
@@ -482,7 +470,7 @@ var IconChevronDownDouble = function (props) {
|
|
|
482
470
|
};
|
|
483
471
|
var body = iconBodies[size];
|
|
484
472
|
if (!body) {
|
|
485
|
-
throw Error("Icon \"chevron-down-double\" is not available in size "
|
|
473
|
+
throw Error("Icon \"chevron-down-double\" is not available in size " + size);
|
|
486
474
|
}
|
|
487
475
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
488
476
|
};
|
|
@@ -493,7 +481,7 @@ var IconChevronDownLarge = function (props) {
|
|
|
493
481
|
};
|
|
494
482
|
var body = iconBodies[size];
|
|
495
483
|
if (!body) {
|
|
496
|
-
throw Error("Icon \"chevron-down-large\" is not available in size "
|
|
484
|
+
throw Error("Icon \"chevron-down-large\" is not available in size " + size);
|
|
497
485
|
}
|
|
498
486
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
499
487
|
};
|
|
@@ -505,7 +493,7 @@ var IconChevronDownSmall = function (props) {
|
|
|
505
493
|
};
|
|
506
494
|
var body = iconBodies[size];
|
|
507
495
|
if (!body) {
|
|
508
|
-
throw Error("Icon \"chevron-down-small\" is not available in size "
|
|
496
|
+
throw Error("Icon \"chevron-down-small\" is not available in size " + size);
|
|
509
497
|
}
|
|
510
498
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
511
499
|
};
|
|
@@ -516,7 +504,7 @@ var IconChevronLeftDouble = function (props) {
|
|
|
516
504
|
};
|
|
517
505
|
var body = iconBodies[size];
|
|
518
506
|
if (!body) {
|
|
519
|
-
throw Error("Icon \"chevron-left-double\" is not available in size "
|
|
507
|
+
throw Error("Icon \"chevron-left-double\" is not available in size " + size);
|
|
520
508
|
}
|
|
521
509
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
522
510
|
};
|
|
@@ -527,7 +515,7 @@ var IconChevronLeftLarge = function (props) {
|
|
|
527
515
|
};
|
|
528
516
|
var body = iconBodies[size];
|
|
529
517
|
if (!body) {
|
|
530
|
-
throw Error("Icon \"chevron-left-large\" is not available in size "
|
|
518
|
+
throw Error("Icon \"chevron-left-large\" is not available in size " + size);
|
|
531
519
|
}
|
|
532
520
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
533
521
|
};
|
|
@@ -539,7 +527,7 @@ var IconChevronLeftSmall = function (props) {
|
|
|
539
527
|
};
|
|
540
528
|
var body = iconBodies[size];
|
|
541
529
|
if (!body) {
|
|
542
|
-
throw Error("Icon \"chevron-left-small\" is not available in size "
|
|
530
|
+
throw Error("Icon \"chevron-left-small\" is not available in size " + size);
|
|
543
531
|
}
|
|
544
532
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
545
533
|
};
|
|
@@ -550,7 +538,7 @@ var IconChevronRightDouble = function (props) {
|
|
|
550
538
|
};
|
|
551
539
|
var body = iconBodies[size];
|
|
552
540
|
if (!body) {
|
|
553
|
-
throw Error("Icon \"chevron-right-double\" is not available in size "
|
|
541
|
+
throw Error("Icon \"chevron-right-double\" is not available in size " + size);
|
|
554
542
|
}
|
|
555
543
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
556
544
|
};
|
|
@@ -561,7 +549,7 @@ var IconChevronRightLarge = function (props) {
|
|
|
561
549
|
};
|
|
562
550
|
var body = iconBodies[size];
|
|
563
551
|
if (!body) {
|
|
564
|
-
throw Error("Icon \"chevron-right-large\" is not available in size "
|
|
552
|
+
throw Error("Icon \"chevron-right-large\" is not available in size " + size);
|
|
565
553
|
}
|
|
566
554
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
567
555
|
};
|
|
@@ -573,7 +561,7 @@ var IconChevronRightSmall = function (props) {
|
|
|
573
561
|
};
|
|
574
562
|
var body = iconBodies[size];
|
|
575
563
|
if (!body) {
|
|
576
|
-
throw Error("Icon \"chevron-right-small\" is not available in size "
|
|
564
|
+
throw Error("Icon \"chevron-right-small\" is not available in size " + size);
|
|
577
565
|
}
|
|
578
566
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
579
567
|
};
|
|
@@ -584,7 +572,7 @@ var IconChevronUpDouble = function (props) {
|
|
|
584
572
|
};
|
|
585
573
|
var body = iconBodies[size];
|
|
586
574
|
if (!body) {
|
|
587
|
-
throw Error("Icon \"chevron-up-double\" is not available in size "
|
|
575
|
+
throw Error("Icon \"chevron-up-double\" is not available in size " + size);
|
|
588
576
|
}
|
|
589
577
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
590
578
|
};
|
|
@@ -595,7 +583,7 @@ var IconChevronUpLarge = function (props) {
|
|
|
595
583
|
};
|
|
596
584
|
var body = iconBodies[size];
|
|
597
585
|
if (!body) {
|
|
598
|
-
throw Error("Icon \"chevron-up-large\" is not available in size "
|
|
586
|
+
throw Error("Icon \"chevron-up-large\" is not available in size " + size);
|
|
599
587
|
}
|
|
600
588
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
601
589
|
};
|
|
@@ -607,7 +595,7 @@ var IconChevronUpSmall = function (props) {
|
|
|
607
595
|
};
|
|
608
596
|
var body = iconBodies[size];
|
|
609
597
|
if (!body) {
|
|
610
|
-
throw Error("Icon \"chevron-up-small\" is not available in size "
|
|
598
|
+
throw Error("Icon \"chevron-up-small\" is not available in size " + size);
|
|
611
599
|
}
|
|
612
600
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
613
601
|
};
|
|
@@ -618,7 +606,7 @@ var IconDeviceLaptop = function (props) {
|
|
|
618
606
|
};
|
|
619
607
|
var body = iconBodies[size];
|
|
620
608
|
if (!body) {
|
|
621
|
-
throw Error("Icon \"device-laptop\" is not available in size "
|
|
609
|
+
throw Error("Icon \"device-laptop\" is not available in size " + size);
|
|
622
610
|
}
|
|
623
611
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
624
612
|
};
|
|
@@ -629,7 +617,7 @@ var IconDocumentAdded = function (props) {
|
|
|
629
617
|
};
|
|
630
618
|
var body = iconBodies[size];
|
|
631
619
|
if (!body) {
|
|
632
|
-
throw Error("Icon \"document-added\" is not available in size "
|
|
620
|
+
throw Error("Icon \"document-added\" is not available in size " + size);
|
|
633
621
|
}
|
|
634
622
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
635
623
|
};
|
|
@@ -642,7 +630,7 @@ var IconDocumentBlank = function (props) {
|
|
|
642
630
|
};
|
|
643
631
|
var body = iconBodies[size];
|
|
644
632
|
if (!body) {
|
|
645
|
-
throw Error("Icon \"document-blank\" is not available in size "
|
|
633
|
+
throw Error("Icon \"document-blank\" is not available in size " + size);
|
|
646
634
|
}
|
|
647
635
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
648
636
|
};
|
|
@@ -654,7 +642,7 @@ var IconDocumentCode = function (props) {
|
|
|
654
642
|
};
|
|
655
643
|
var body = iconBodies[size];
|
|
656
644
|
if (!body) {
|
|
657
|
-
throw Error("Icon \"document-code\" is not available in size "
|
|
645
|
+
throw Error("Icon \"document-code\" is not available in size " + size);
|
|
658
646
|
}
|
|
659
647
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
660
648
|
};
|
|
@@ -665,7 +653,7 @@ var IconDocumentDeleted = function (props) {
|
|
|
665
653
|
};
|
|
666
654
|
var body = iconBodies[size];
|
|
667
655
|
if (!body) {
|
|
668
|
-
throw Error("Icon \"document-deleted\" is not available in size "
|
|
656
|
+
throw Error("Icon \"document-deleted\" is not available in size " + size);
|
|
669
657
|
}
|
|
670
658
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
671
659
|
};
|
|
@@ -677,7 +665,7 @@ var IconDocumentDownload = function (props) {
|
|
|
677
665
|
};
|
|
678
666
|
var body = iconBodies[size];
|
|
679
667
|
if (!body) {
|
|
680
|
-
throw Error("Icon \"document-download\" is not available in size "
|
|
668
|
+
throw Error("Icon \"document-download\" is not available in size " + size);
|
|
681
669
|
}
|
|
682
670
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
683
671
|
};
|
|
@@ -689,7 +677,7 @@ var IconDocumentMinus = function (props) {
|
|
|
689
677
|
};
|
|
690
678
|
var body = iconBodies[size];
|
|
691
679
|
if (!body) {
|
|
692
|
-
throw Error("Icon \"document-minus\" is not available in size "
|
|
680
|
+
throw Error("Icon \"document-minus\" is not available in size " + size);
|
|
693
681
|
}
|
|
694
682
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
695
683
|
};
|
|
@@ -700,7 +688,7 @@ var IconDocumentModified = function (props) {
|
|
|
700
688
|
};
|
|
701
689
|
var body = iconBodies[size];
|
|
702
690
|
if (!body) {
|
|
703
|
-
throw Error("Icon \"document-modified\" is not available in size "
|
|
691
|
+
throw Error("Icon \"document-modified\" is not available in size " + size);
|
|
704
692
|
}
|
|
705
693
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
706
694
|
};
|
|
@@ -712,7 +700,7 @@ var IconDocumentPlusMinus = function (props) {
|
|
|
712
700
|
};
|
|
713
701
|
var body = iconBodies[size];
|
|
714
702
|
if (!body) {
|
|
715
|
-
throw Error("Icon \"document-plus-minus\" is not available in size "
|
|
703
|
+
throw Error("Icon \"document-plus-minus\" is not available in size " + size);
|
|
716
704
|
}
|
|
717
705
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
718
706
|
};
|
|
@@ -724,7 +712,7 @@ var IconDocumentPlus = function (props) {
|
|
|
724
712
|
};
|
|
725
713
|
var body = iconBodies[size];
|
|
726
714
|
if (!body) {
|
|
727
|
-
throw Error("Icon \"document-plus\" is not available in size "
|
|
715
|
+
throw Error("Icon \"document-plus\" is not available in size " + size);
|
|
728
716
|
}
|
|
729
717
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
730
718
|
};
|
|
@@ -735,7 +723,7 @@ var IconDocumentScript = function (props) {
|
|
|
735
723
|
};
|
|
736
724
|
var body = iconBodies[size];
|
|
737
725
|
if (!body) {
|
|
738
|
-
throw Error("Icon \"document-script\" is not available in size "
|
|
726
|
+
throw Error("Icon \"document-script\" is not available in size " + size);
|
|
739
727
|
}
|
|
740
728
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
741
729
|
};
|
|
@@ -746,7 +734,7 @@ var IconDocumentSheet = function (props) {
|
|
|
746
734
|
};
|
|
747
735
|
var body = iconBodies[size];
|
|
748
736
|
if (!body) {
|
|
749
|
-
throw Error("Icon \"document-sheet\" is not available in size "
|
|
737
|
+
throw Error("Icon \"document-sheet\" is not available in size " + size);
|
|
750
738
|
}
|
|
751
739
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
752
740
|
};
|
|
@@ -758,7 +746,7 @@ var IconDocumentStar = function (props) {
|
|
|
758
746
|
};
|
|
759
747
|
var body = iconBodies[size];
|
|
760
748
|
if (!body) {
|
|
761
|
-
throw Error("Icon \"document-star\" is not available in size "
|
|
749
|
+
throw Error("Icon \"document-star\" is not available in size " + size);
|
|
762
750
|
}
|
|
763
751
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
764
752
|
};
|
|
@@ -769,7 +757,7 @@ var IconDocumentText = function (props) {
|
|
|
769
757
|
};
|
|
770
758
|
var body = iconBodies[size];
|
|
771
759
|
if (!body) {
|
|
772
|
-
throw Error("Icon \"document-text\" is not available in size "
|
|
760
|
+
throw Error("Icon \"document-text\" is not available in size " + size);
|
|
773
761
|
}
|
|
774
762
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
775
763
|
};
|
|
@@ -780,7 +768,7 @@ var IconDotOutlineLarge = function (props) {
|
|
|
780
768
|
};
|
|
781
769
|
var body = iconBodies[size];
|
|
782
770
|
if (!body) {
|
|
783
|
-
throw Error("Icon \"dot-outline-large\" is not available in size "
|
|
771
|
+
throw Error("Icon \"dot-outline-large\" is not available in size " + size);
|
|
784
772
|
}
|
|
785
773
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
786
774
|
};
|
|
@@ -791,7 +779,7 @@ var IconDotOutlineSmall = function (props) {
|
|
|
791
779
|
};
|
|
792
780
|
var body = iconBodies[size];
|
|
793
781
|
if (!body) {
|
|
794
|
-
throw Error("Icon \"dot-outline-small\" is not available in size "
|
|
782
|
+
throw Error("Icon \"dot-outline-small\" is not available in size " + size);
|
|
795
783
|
}
|
|
796
784
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
797
785
|
};
|
|
@@ -802,7 +790,7 @@ var IconFileChangesAdded = function (props) {
|
|
|
802
790
|
};
|
|
803
791
|
var body = iconBodies[size];
|
|
804
792
|
if (!body) {
|
|
805
|
-
throw Error("Icon \"file-changes-added\" is not available in size "
|
|
793
|
+
throw Error("Icon \"file-changes-added\" is not available in size " + size);
|
|
806
794
|
}
|
|
807
795
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
808
796
|
};
|
|
@@ -813,7 +801,7 @@ var IconFileChangesError = function (props) {
|
|
|
813
801
|
};
|
|
814
802
|
var body = iconBodies[size];
|
|
815
803
|
if (!body) {
|
|
816
|
-
throw Error("Icon \"file-changes-error\" is not available in size "
|
|
804
|
+
throw Error("Icon \"file-changes-error\" is not available in size " + size);
|
|
817
805
|
}
|
|
818
806
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
819
807
|
};
|
|
@@ -824,7 +812,7 @@ var IconFileChangesSkipped = function (props) {
|
|
|
824
812
|
};
|
|
825
813
|
var body = iconBodies[size];
|
|
826
814
|
if (!body) {
|
|
827
|
-
throw Error("Icon \"file-changes-skipped\" is not available in size "
|
|
815
|
+
throw Error("Icon \"file-changes-skipped\" is not available in size " + size);
|
|
828
816
|
}
|
|
829
817
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
830
818
|
};
|
|
@@ -835,7 +823,7 @@ var IconFileChangesWarning = function (props) {
|
|
|
835
823
|
};
|
|
836
824
|
var body = iconBodies[size];
|
|
837
825
|
if (!body) {
|
|
838
|
-
throw Error("Icon \"file-changes-warning\" is not available in size "
|
|
826
|
+
throw Error("Icon \"file-changes-warning\" is not available in size " + size);
|
|
839
827
|
}
|
|
840
828
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
841
829
|
};
|
|
@@ -846,7 +834,7 @@ var IconGeneralClipboard = function (props) {
|
|
|
846
834
|
};
|
|
847
835
|
var body = iconBodies[size];
|
|
848
836
|
if (!body) {
|
|
849
|
-
throw Error("Icon \"general-clipboard\" is not available in size "
|
|
837
|
+
throw Error("Icon \"general-clipboard\" is not available in size " + size);
|
|
850
838
|
}
|
|
851
839
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
852
840
|
};
|
|
@@ -857,7 +845,7 @@ var IconGeneralCommandKey = function (props) {
|
|
|
857
845
|
};
|
|
858
846
|
var body = iconBodies[size];
|
|
859
847
|
if (!body) {
|
|
860
|
-
throw Error("Icon \"general-command-key\" is not available in size "
|
|
848
|
+
throw Error("Icon \"general-command-key\" is not available in size " + size);
|
|
861
849
|
}
|
|
862
850
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
863
851
|
};
|
|
@@ -868,7 +856,7 @@ var IconGeneralCrosshairs = function (props) {
|
|
|
868
856
|
};
|
|
869
857
|
var body = iconBodies[size];
|
|
870
858
|
if (!body) {
|
|
871
|
-
throw Error("Icon \"general-crosshairs\" is not available in size "
|
|
859
|
+
throw Error("Icon \"general-crosshairs\" is not available in size " + size);
|
|
872
860
|
}
|
|
873
861
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
874
862
|
};
|
|
@@ -879,7 +867,7 @@ var IconGeneralEarth = function (props) {
|
|
|
879
867
|
};
|
|
880
868
|
var body = iconBodies[size];
|
|
881
869
|
if (!body) {
|
|
882
|
-
throw Error("Icon \"general-earth\" is not available in size "
|
|
870
|
+
throw Error("Icon \"general-earth\" is not available in size " + size);
|
|
883
871
|
}
|
|
884
872
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
885
873
|
};
|
|
@@ -890,7 +878,7 @@ var IconGeneralEyeClosed = function (props) {
|
|
|
890
878
|
};
|
|
891
879
|
var body = iconBodies[size];
|
|
892
880
|
if (!body) {
|
|
893
|
-
throw Error("Icon \"general-eye-closed\" is not available in size "
|
|
881
|
+
throw Error("Icon \"general-eye-closed\" is not available in size " + size);
|
|
894
882
|
}
|
|
895
883
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
896
884
|
};
|
|
@@ -901,7 +889,7 @@ var IconGeneralEyeOpen = function (props) {
|
|
|
901
889
|
};
|
|
902
890
|
var body = iconBodies[size];
|
|
903
891
|
if (!body) {
|
|
904
|
-
throw Error("Icon \"general-eye-open\" is not available in size "
|
|
892
|
+
throw Error("Icon \"general-eye-open\" is not available in size " + size);
|
|
905
893
|
}
|
|
906
894
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
907
895
|
};
|
|
@@ -913,7 +901,7 @@ var IconGeneralGlobe = function (props) {
|
|
|
913
901
|
};
|
|
914
902
|
var body = iconBodies[size];
|
|
915
903
|
if (!body) {
|
|
916
|
-
throw Error("Icon \"general-globe\" is not available in size "
|
|
904
|
+
throw Error("Icon \"general-globe\" is not available in size " + size);
|
|
917
905
|
}
|
|
918
906
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
919
907
|
};
|
|
@@ -925,7 +913,7 @@ var IconGeneralGrid2X2 = function (props) {
|
|
|
925
913
|
};
|
|
926
914
|
var body = iconBodies[size];
|
|
927
915
|
if (!body) {
|
|
928
|
-
throw Error("Icon \"general-grid-2x2\" is not available in size "
|
|
916
|
+
throw Error("Icon \"general-grid-2x2\" is not available in size " + size);
|
|
929
917
|
}
|
|
930
918
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
931
919
|
};
|
|
@@ -936,7 +924,7 @@ var IconGeneralLifeRing = function (props) {
|
|
|
936
924
|
};
|
|
937
925
|
var body = iconBodies[size];
|
|
938
926
|
if (!body) {
|
|
939
|
-
throw Error("Icon \"general-life-ring\" is not available in size "
|
|
927
|
+
throw Error("Icon \"general-life-ring\" is not available in size " + size);
|
|
940
928
|
}
|
|
941
929
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
942
930
|
};
|
|
@@ -947,7 +935,7 @@ var IconGeneralOfficeBuilding = function (props) {
|
|
|
947
935
|
};
|
|
948
936
|
var body = iconBodies[size];
|
|
949
937
|
if (!body) {
|
|
950
|
-
throw Error("Icon \"general-office-building\" is not available in size "
|
|
938
|
+
throw Error("Icon \"general-office-building\" is not available in size " + size);
|
|
951
939
|
}
|
|
952
940
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
953
941
|
};
|
|
@@ -961,7 +949,7 @@ var IconGeneralPlaceholder = function (props) {
|
|
|
961
949
|
};
|
|
962
950
|
var body = iconBodies[size];
|
|
963
951
|
if (!body) {
|
|
964
|
-
throw Error("Icon \"general-placeholder\" is not available in size "
|
|
952
|
+
throw Error("Icon \"general-placeholder\" is not available in size " + size);
|
|
965
953
|
}
|
|
966
954
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
967
955
|
};
|
|
@@ -972,7 +960,7 @@ var IconLoading = function (props) {
|
|
|
972
960
|
};
|
|
973
961
|
var body = iconBodies[size];
|
|
974
962
|
if (!body) {
|
|
975
|
-
throw Error("Icon \"loading\" is not available in size "
|
|
963
|
+
throw Error("Icon \"loading\" is not available in size " + size);
|
|
976
964
|
}
|
|
977
965
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
978
966
|
};
|
|
@@ -983,7 +971,7 @@ var IconMenuDotsVertical = function (props) {
|
|
|
983
971
|
};
|
|
984
972
|
var body = iconBodies[size];
|
|
985
973
|
if (!body) {
|
|
986
|
-
throw Error("Icon \"menu-dots-vertical\" is not available in size "
|
|
974
|
+
throw Error("Icon \"menu-dots-vertical\" is not available in size " + size);
|
|
987
975
|
}
|
|
988
976
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
989
977
|
};
|
|
@@ -994,7 +982,7 @@ var IconMenuExpandLeft = function (props) {
|
|
|
994
982
|
};
|
|
995
983
|
var body = iconBodies[size];
|
|
996
984
|
if (!body) {
|
|
997
|
-
throw Error("Icon \"menu-expand-left\" is not available in size "
|
|
985
|
+
throw Error("Icon \"menu-expand-left\" is not available in size " + size);
|
|
998
986
|
}
|
|
999
987
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1000
988
|
};
|
|
@@ -1005,7 +993,7 @@ var IconMenuExpandRight = function (props) {
|
|
|
1005
993
|
};
|
|
1006
994
|
var body = iconBodies[size];
|
|
1007
995
|
if (!body) {
|
|
1008
|
-
throw Error("Icon \"menu-expand-right\" is not available in size "
|
|
996
|
+
throw Error("Icon \"menu-expand-right\" is not available in size " + size);
|
|
1009
997
|
}
|
|
1010
998
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1011
999
|
};
|
|
@@ -1016,7 +1004,7 @@ var IconObjectBookCode = function (props) {
|
|
|
1016
1004
|
};
|
|
1017
1005
|
var body = iconBodies[size];
|
|
1018
1006
|
if (!body) {
|
|
1019
|
-
throw Error("Icon \"object-book-code\" is not available in size "
|
|
1007
|
+
throw Error("Icon \"object-book-code\" is not available in size " + size);
|
|
1020
1008
|
}
|
|
1021
1009
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1022
1010
|
};
|
|
@@ -1029,7 +1017,7 @@ var IconObjectBook = function (props) {
|
|
|
1029
1017
|
};
|
|
1030
1018
|
var body = iconBodies[size];
|
|
1031
1019
|
if (!body) {
|
|
1032
|
-
throw Error("Icon \"object-book\" is not available in size "
|
|
1020
|
+
throw Error("Icon \"object-book\" is not available in size " + size);
|
|
1033
1021
|
}
|
|
1034
1022
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1035
1023
|
};
|
|
@@ -1041,7 +1029,7 @@ var IconObjectBookmark = function (props) {
|
|
|
1041
1029
|
};
|
|
1042
1030
|
var body = iconBodies[size];
|
|
1043
1031
|
if (!body) {
|
|
1044
|
-
throw Error("Icon \"object-bookmark\" is not available in size "
|
|
1032
|
+
throw Error("Icon \"object-bookmark\" is not available in size " + size);
|
|
1045
1033
|
}
|
|
1046
1034
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1047
1035
|
};
|
|
@@ -1052,7 +1040,7 @@ var IconObjectBoxOpen = function (props) {
|
|
|
1052
1040
|
};
|
|
1053
1041
|
var body = iconBodies[size];
|
|
1054
1042
|
if (!body) {
|
|
1055
|
-
throw Error("Icon \"object-box-open\" is not available in size "
|
|
1043
|
+
throw Error("Icon \"object-box-open\" is not available in size " + size);
|
|
1056
1044
|
}
|
|
1057
1045
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1058
1046
|
};
|
|
@@ -1064,7 +1052,7 @@ var IconObjectBox = function (props) {
|
|
|
1064
1052
|
};
|
|
1065
1053
|
var body = iconBodies[size];
|
|
1066
1054
|
if (!body) {
|
|
1067
|
-
throw Error("Icon \"object-box\" is not available in size "
|
|
1055
|
+
throw Error("Icon \"object-box\" is not available in size " + size);
|
|
1068
1056
|
}
|
|
1069
1057
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1070
1058
|
};
|
|
@@ -1075,7 +1063,7 @@ var IconObjectBriefcase = function (props) {
|
|
|
1075
1063
|
};
|
|
1076
1064
|
var body = iconBodies[size];
|
|
1077
1065
|
if (!body) {
|
|
1078
|
-
throw Error("Icon \"object-briefcase\" is not available in size "
|
|
1066
|
+
throw Error("Icon \"object-briefcase\" is not available in size " + size);
|
|
1079
1067
|
}
|
|
1080
1068
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1081
1069
|
};
|
|
@@ -1086,7 +1074,7 @@ var IconObjectChainLink = function (props) {
|
|
|
1086
1074
|
};
|
|
1087
1075
|
var body = iconBodies[size];
|
|
1088
1076
|
if (!body) {
|
|
1089
|
-
throw Error("Icon \"object-chain-link\" is not available in size "
|
|
1077
|
+
throw Error("Icon \"object-chain-link\" is not available in size " + size);
|
|
1090
1078
|
}
|
|
1091
1079
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1092
1080
|
};
|
|
@@ -1097,7 +1085,7 @@ var IconObjectFolderDark = function (props) {
|
|
|
1097
1085
|
};
|
|
1098
1086
|
var body = iconBodies[size];
|
|
1099
1087
|
if (!body) {
|
|
1100
|
-
throw Error("Icon \"object-folder-dark\" is not available in size "
|
|
1088
|
+
throw Error("Icon \"object-folder-dark\" is not available in size " + size);
|
|
1101
1089
|
}
|
|
1102
1090
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1103
1091
|
};
|
|
@@ -1109,7 +1097,7 @@ var IconObjectFolderLight = function (props) {
|
|
|
1109
1097
|
};
|
|
1110
1098
|
var body = iconBodies[size];
|
|
1111
1099
|
if (!body) {
|
|
1112
|
-
throw Error("Icon \"object-folder-light\" is not available in size "
|
|
1100
|
+
throw Error("Icon \"object-folder-light\" is not available in size " + size);
|
|
1113
1101
|
}
|
|
1114
1102
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1115
1103
|
};
|
|
@@ -1121,7 +1109,7 @@ var IconObjectGear = function (props) {
|
|
|
1121
1109
|
};
|
|
1122
1110
|
var body = iconBodies[size];
|
|
1123
1111
|
if (!body) {
|
|
1124
|
-
throw Error("Icon \"object-gear\" is not available in size "
|
|
1112
|
+
throw Error("Icon \"object-gear\" is not available in size " + size);
|
|
1125
1113
|
}
|
|
1126
1114
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1127
1115
|
};
|
|
@@ -1132,7 +1120,7 @@ var IconObjectMagicWandDarkMode = function (props) {
|
|
|
1132
1120
|
};
|
|
1133
1121
|
var body = iconBodies[size];
|
|
1134
1122
|
if (!body) {
|
|
1135
|
-
throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size "
|
|
1123
|
+
throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size " + size);
|
|
1136
1124
|
}
|
|
1137
1125
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1138
1126
|
};
|
|
@@ -1143,7 +1131,7 @@ var IconObjectMagnifyingGlass = function (props) {
|
|
|
1143
1131
|
};
|
|
1144
1132
|
var body = iconBodies[size];
|
|
1145
1133
|
if (!body) {
|
|
1146
|
-
throw Error("Icon \"object-magnifying-glass\" is not available in size "
|
|
1134
|
+
throw Error("Icon \"object-magnifying-glass\" is not available in size " + size);
|
|
1147
1135
|
}
|
|
1148
1136
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1149
1137
|
};
|
|
@@ -1154,7 +1142,7 @@ var IconObjectOdometer = function (props) {
|
|
|
1154
1142
|
};
|
|
1155
1143
|
var body = iconBodies[size];
|
|
1156
1144
|
if (!body) {
|
|
1157
|
-
throw Error("Icon \"object-odometer\" is not available in size "
|
|
1145
|
+
throw Error("Icon \"object-odometer\" is not available in size " + size);
|
|
1158
1146
|
}
|
|
1159
1147
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1160
1148
|
};
|
|
@@ -1165,7 +1153,7 @@ var IconObjectPaperAirplane = function (props) {
|
|
|
1165
1153
|
};
|
|
1166
1154
|
var body = iconBodies[size];
|
|
1167
1155
|
if (!body) {
|
|
1168
|
-
throw Error("Icon \"object-paper-airplane\" is not available in size "
|
|
1156
|
+
throw Error("Icon \"object-paper-airplane\" is not available in size " + size);
|
|
1169
1157
|
}
|
|
1170
1158
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1171
1159
|
};
|
|
@@ -1176,7 +1164,7 @@ var IconObjectPinModern = function (props) {
|
|
|
1176
1164
|
};
|
|
1177
1165
|
var body = iconBodies[size];
|
|
1178
1166
|
if (!body) {
|
|
1179
|
-
throw Error("Icon \"object-pin-modern\" is not available in size "
|
|
1167
|
+
throw Error("Icon \"object-pin-modern\" is not available in size " + size);
|
|
1180
1168
|
}
|
|
1181
1169
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1182
1170
|
};
|
|
@@ -1187,7 +1175,7 @@ var IconObjectRuler = function (props) {
|
|
|
1187
1175
|
};
|
|
1188
1176
|
var body = iconBodies[size];
|
|
1189
1177
|
if (!body) {
|
|
1190
|
-
throw Error("Icon \"object-ruler\" is not available in size "
|
|
1178
|
+
throw Error("Icon \"object-ruler\" is not available in size " + size);
|
|
1191
1179
|
}
|
|
1192
1180
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1193
1181
|
};
|
|
@@ -1199,7 +1187,7 @@ var IconSecurityKey = function (props) {
|
|
|
1199
1187
|
};
|
|
1200
1188
|
var body = iconBodies[size];
|
|
1201
1189
|
if (!body) {
|
|
1202
|
-
throw Error("Icon \"security-key\" is not available in size "
|
|
1190
|
+
throw Error("Icon \"security-key\" is not available in size " + size);
|
|
1203
1191
|
}
|
|
1204
1192
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1205
1193
|
};
|
|
@@ -1210,7 +1198,7 @@ var IconSecurityLockLocked = function (props) {
|
|
|
1210
1198
|
};
|
|
1211
1199
|
var body = iconBodies[size];
|
|
1212
1200
|
if (!body) {
|
|
1213
|
-
throw Error("Icon \"security-lock-locked\" is not available in size "
|
|
1201
|
+
throw Error("Icon \"security-lock-locked\" is not available in size " + size);
|
|
1214
1202
|
}
|
|
1215
1203
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1216
1204
|
};
|
|
@@ -1221,7 +1209,284 @@ var IconShapeLightningBolt = function (props) {
|
|
|
1221
1209
|
};
|
|
1222
1210
|
var body = iconBodies[size];
|
|
1223
1211
|
if (!body) {
|
|
1224
|
-
throw Error("Icon \"shape-lightning-bolt\" is not available in size "
|
|
1212
|
+
throw Error("Icon \"shape-lightning-bolt\" is not available in size " + size);
|
|
1213
|
+
}
|
|
1214
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1215
|
+
};
|
|
1216
|
+
var IconStatusCancelledOutline = function (props) {
|
|
1217
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1218
|
+
var iconBodies = {
|
|
1219
|
+
"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\"/>",
|
|
1220
|
+
"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\"/>"
|
|
1221
|
+
};
|
|
1222
|
+
var body = iconBodies[size];
|
|
1223
|
+
if (!body) {
|
|
1224
|
+
throw Error("Icon \"status-cancelled-outline\" is not available in size " + size);
|
|
1225
|
+
}
|
|
1226
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1227
|
+
};
|
|
1228
|
+
var IconStatusCancelledSimple = function (props) {
|
|
1229
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1230
|
+
var iconBodies = {
|
|
1231
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
|
|
1232
|
+
"8": "<path d=\"M1 4h6\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1233
|
+
};
|
|
1234
|
+
var body = iconBodies[size];
|
|
1235
|
+
if (!body) {
|
|
1236
|
+
throw Error("Icon \"status-cancelled-simple\" is not available in size " + size);
|
|
1237
|
+
}
|
|
1238
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1239
|
+
};
|
|
1240
|
+
var IconStatusCancelledSolid = function (props) {
|
|
1241
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1242
|
+
var iconBodies = {
|
|
1243
|
+
"12": "<path d=\"M2 6h8\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
1244
|
+
"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\"/>",
|
|
1245
|
+
"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\"/>"
|
|
1246
|
+
};
|
|
1247
|
+
var body = iconBodies[size];
|
|
1248
|
+
if (!body) {
|
|
1249
|
+
throw Error("Icon \"status-cancelled-solid\" is not available in size " + size);
|
|
1250
|
+
}
|
|
1251
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1252
|
+
};
|
|
1253
|
+
var IconStatusErroredOutline = function (props) {
|
|
1254
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1255
|
+
var iconBodies = {
|
|
1256
|
+
"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\"/>",
|
|
1257
|
+
"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\"/>"
|
|
1258
|
+
};
|
|
1259
|
+
var body = iconBodies[size];
|
|
1260
|
+
if (!body) {
|
|
1261
|
+
throw Error("Icon \"status-errored-outline\" is not available in size " + size);
|
|
1262
|
+
}
|
|
1263
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1264
|
+
};
|
|
1265
|
+
var IconStatusErroredSimple = function (props) {
|
|
1266
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1267
|
+
var iconBodies = {
|
|
1268
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#DB7903\"/>",
|
|
1269
|
+
"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\"/>"
|
|
1270
|
+
};
|
|
1271
|
+
var body = iconBodies[size];
|
|
1272
|
+
if (!body) {
|
|
1273
|
+
throw Error("Icon \"status-errored-simple\" is not available in size " + size);
|
|
1274
|
+
}
|
|
1275
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1276
|
+
};
|
|
1277
|
+
var IconStatusErroredSolid = function (props) {
|
|
1278
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1279
|
+
var iconBodies = {
|
|
1280
|
+
"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\"/>",
|
|
1281
|
+
"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\"/>",
|
|
1282
|
+
"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\"/>"
|
|
1283
|
+
};
|
|
1284
|
+
var body = iconBodies[size];
|
|
1285
|
+
if (!body) {
|
|
1286
|
+
throw Error("Icon \"status-errored-solid\" is not available in size " + size);
|
|
1287
|
+
}
|
|
1288
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1289
|
+
};
|
|
1290
|
+
var IconStatusFailedOutline = function (props) {
|
|
1291
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1292
|
+
var iconBodies = {
|
|
1293
|
+
"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\"/>",
|
|
1294
|
+
"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\"/>"
|
|
1295
|
+
};
|
|
1296
|
+
var body = iconBodies[size];
|
|
1297
|
+
if (!body) {
|
|
1298
|
+
throw Error("Icon \"status-failed-outline\" is not available in size " + size);
|
|
1299
|
+
}
|
|
1300
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1301
|
+
};
|
|
1302
|
+
var IconStatusFailedSimple = function (props) {
|
|
1303
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1304
|
+
var iconBodies = {
|
|
1305
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#E45770\"/>",
|
|
1306
|
+
"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\"/>",
|
|
1307
|
+
"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\"/>",
|
|
1308
|
+
"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\"/>",
|
|
1309
|
+
"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\"/>"
|
|
1310
|
+
};
|
|
1311
|
+
var body = iconBodies[size];
|
|
1312
|
+
if (!body) {
|
|
1313
|
+
throw Error("Icon \"status-failed-simple\" is not available in size " + size);
|
|
1314
|
+
}
|
|
1315
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1316
|
+
};
|
|
1317
|
+
var IconStatusFailedSolid = function (props) {
|
|
1318
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1319
|
+
var iconBodies = {
|
|
1320
|
+
"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\"/>",
|
|
1321
|
+
"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\"/>"
|
|
1322
|
+
};
|
|
1323
|
+
var body = iconBodies[size];
|
|
1324
|
+
if (!body) {
|
|
1325
|
+
throw Error("Icon \"status-failed-solid\" is not available in size " + size);
|
|
1326
|
+
}
|
|
1327
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1328
|
+
};
|
|
1329
|
+
var IconStatusPassedOutline = function (props) {
|
|
1330
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1331
|
+
var iconBodies = {
|
|
1332
|
+
"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\"/>",
|
|
1333
|
+
"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\"/>"
|
|
1334
|
+
};
|
|
1335
|
+
var body = iconBodies[size];
|
|
1336
|
+
if (!body) {
|
|
1337
|
+
throw Error("Icon \"status-passed-outline\" is not available in size " + size);
|
|
1338
|
+
}
|
|
1339
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1340
|
+
};
|
|
1341
|
+
var IconStatusPassedSimple = function (props) {
|
|
1342
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1343
|
+
var iconBodies = {
|
|
1344
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#1FA971\"/>",
|
|
1345
|
+
"8": "<path d=\"M6 2 3.5 6 2 4.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1346
|
+
"12": "<path d=\"M9 3 5 9 3 6.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1347
|
+
"16": "<path d=\"M4 8.667 7.333 12 12 4\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1348
|
+
"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\"/>"
|
|
1349
|
+
};
|
|
1350
|
+
var body = iconBodies[size];
|
|
1351
|
+
if (!body) {
|
|
1352
|
+
throw Error("Icon \"status-passed-simple\" is not available in size " + size);
|
|
1353
|
+
}
|
|
1354
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1355
|
+
};
|
|
1356
|
+
var IconStatusPassedSolid = function (props) {
|
|
1357
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1358
|
+
var iconBodies = {
|
|
1359
|
+
"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\"/>",
|
|
1360
|
+
"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\"/>"
|
|
1361
|
+
};
|
|
1362
|
+
var body = iconBodies[size];
|
|
1363
|
+
if (!body) {
|
|
1364
|
+
throw Error("Icon \"status-passed-solid\" is not available in size " + size);
|
|
1365
|
+
}
|
|
1366
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1367
|
+
};
|
|
1368
|
+
var IconStatusPendingOutline = function (props) {
|
|
1369
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1370
|
+
var iconBodies = {
|
|
1371
|
+
"12": "<path d=\"M4.47 2.305a4 4 0 1 0 3.061 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
|
|
1372
|
+
"16": "<path d=\"M5.706 2.46a5.998 5.998 0 1 0 4.59 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
|
|
1373
|
+
"24": "<path d=\"M8.555 3.685a8.999 8.999 0 1 0 6.887 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>"
|
|
1374
|
+
};
|
|
1375
|
+
var body = iconBodies[size];
|
|
1376
|
+
if (!body) {
|
|
1377
|
+
throw Error("Icon \"status-pending-outline\" is not available in size " + size);
|
|
1378
|
+
}
|
|
1379
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1380
|
+
};
|
|
1381
|
+
var IconStatusPendingSimple = function (props) {
|
|
1382
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1383
|
+
var iconBodies = {
|
|
1384
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#BFC2D4\"/>",
|
|
1385
|
+
"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>"
|
|
1386
|
+
};
|
|
1387
|
+
var body = iconBodies[size];
|
|
1388
|
+
if (!body) {
|
|
1389
|
+
throw Error("Icon \"status-pending-simple\" is not available in size " + size);
|
|
1390
|
+
}
|
|
1391
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1392
|
+
};
|
|
1393
|
+
var IconStatusPlaceholderSimple = function (props) {
|
|
1394
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1395
|
+
var iconBodies = {
|
|
1396
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#D0D2E0\"/>",
|
|
1397
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" fill=\"#D0D2E0\"/>"
|
|
1398
|
+
};
|
|
1399
|
+
var body = iconBodies[size];
|
|
1400
|
+
if (!body) {
|
|
1401
|
+
throw Error("Icon \"status-placeholder-simple\" is not available in size " + size);
|
|
1402
|
+
}
|
|
1403
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1404
|
+
};
|
|
1405
|
+
var IconStatusPlaceholderSolid = function (props) {
|
|
1406
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1407
|
+
var iconBodies = {
|
|
1408
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"5\" fill=\"#D0D2E0\"/>",
|
|
1409
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#D0D2E0\"/>",
|
|
1410
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"10\" fill=\"#D0D2E0\"/>"
|
|
1411
|
+
};
|
|
1412
|
+
var body = iconBodies[size];
|
|
1413
|
+
if (!body) {
|
|
1414
|
+
throw Error("Icon \"status-placeholder-solid\" is not available in size " + size);
|
|
1415
|
+
}
|
|
1416
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1417
|
+
};
|
|
1418
|
+
var IconStatusQueuedOutline = function (props) {
|
|
1419
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1420
|
+
var iconBodies = {
|
|
1421
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"4\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1422
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1423
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\"/>"
|
|
1424
|
+
};
|
|
1425
|
+
var body = iconBodies[size];
|
|
1426
|
+
if (!body) {
|
|
1427
|
+
throw Error("Icon \"status-queued-outline\" is not available in size " + size);
|
|
1428
|
+
}
|
|
1429
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1430
|
+
};
|
|
1431
|
+
var IconStatusQueuedSimple = function (props) {
|
|
1432
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1433
|
+
var iconBodies = {
|
|
1434
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#E1E3ED\"/>",
|
|
1435
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1436
|
+
};
|
|
1437
|
+
var body = iconBodies[size];
|
|
1438
|
+
if (!body) {
|
|
1439
|
+
throw Error("Icon \"status-queued-simple\" is not available in size " + size);
|
|
1440
|
+
}
|
|
1441
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1442
|
+
};
|
|
1443
|
+
var IconStatusRunningOutline = function (props) {
|
|
1444
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1445
|
+
var iconBodies = {
|
|
1446
|
+
"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\"/>",
|
|
1447
|
+
"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\"/>",
|
|
1448
|
+
"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\"/>"
|
|
1449
|
+
};
|
|
1450
|
+
var body = iconBodies[size];
|
|
1451
|
+
if (!body) {
|
|
1452
|
+
throw Error("Icon \"status-running-outline\" is not available in size " + size);
|
|
1453
|
+
}
|
|
1454
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1455
|
+
};
|
|
1456
|
+
var IconStatusRunningSimple = function (props) {
|
|
1457
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1458
|
+
var iconBodies = {
|
|
1459
|
+
"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>",
|
|
1460
|
+
"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\"/>"
|
|
1461
|
+
};
|
|
1462
|
+
var body = iconBodies[size];
|
|
1463
|
+
if (!body) {
|
|
1464
|
+
throw Error("Icon \"status-running-simple\" is not available in size " + size);
|
|
1465
|
+
}
|
|
1466
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1467
|
+
};
|
|
1468
|
+
var IconStatusSkippedOutline = function (props) {
|
|
1469
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1470
|
+
var iconBodies = {
|
|
1471
|
+
"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\"/>",
|
|
1472
|
+
"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\"/>",
|
|
1473
|
+
"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\"/>"
|
|
1474
|
+
};
|
|
1475
|
+
var body = iconBodies[size];
|
|
1476
|
+
if (!body) {
|
|
1477
|
+
throw Error("Icon \"status-skipped-outline\" is not available in size " + size);
|
|
1478
|
+
}
|
|
1479
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1480
|
+
};
|
|
1481
|
+
var IconStatusSkippedSimple = function (props) {
|
|
1482
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1483
|
+
var iconBodies = {
|
|
1484
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
|
|
1485
|
+
"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\"/>"
|
|
1486
|
+
};
|
|
1487
|
+
var body = iconBodies[size];
|
|
1488
|
+
if (!body) {
|
|
1489
|
+
throw Error("Icon \"status-skipped-simple\" is not available in size " + size);
|
|
1225
1490
|
}
|
|
1226
1491
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1227
1492
|
};
|
|
@@ -1232,7 +1497,7 @@ var IconTechnologyBranchHTall = function (props) {
|
|
|
1232
1497
|
};
|
|
1233
1498
|
var body = iconBodies[size];
|
|
1234
1499
|
if (!body) {
|
|
1235
|
-
throw Error("Icon \"technology-branch-h-tall\" is not available in size "
|
|
1500
|
+
throw Error("Icon \"technology-branch-h-tall\" is not available in size " + size);
|
|
1236
1501
|
}
|
|
1237
1502
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1238
1503
|
};
|
|
@@ -1243,7 +1508,7 @@ var IconTechnologyBranchH = function (props) {
|
|
|
1243
1508
|
};
|
|
1244
1509
|
var body = iconBodies[size];
|
|
1245
1510
|
if (!body) {
|
|
1246
|
-
throw Error("Icon \"technology-branch-h\" is not available in size "
|
|
1511
|
+
throw Error("Icon \"technology-branch-h\" is not available in size " + size);
|
|
1247
1512
|
}
|
|
1248
1513
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1249
1514
|
};
|
|
@@ -1254,7 +1519,7 @@ var IconTechnologyBrowserTesting2 = function (props) {
|
|
|
1254
1519
|
};
|
|
1255
1520
|
var body = iconBodies[size];
|
|
1256
1521
|
if (!body) {
|
|
1257
|
-
throw Error("Icon \"technology-browser-testing-2\" is not available in size "
|
|
1522
|
+
throw Error("Icon \"technology-browser-testing-2\" is not available in size " + size);
|
|
1258
1523
|
}
|
|
1259
1524
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1260
1525
|
};
|
|
@@ -1266,7 +1531,7 @@ var IconTechnologyCodeEditor = function (props) {
|
|
|
1266
1531
|
};
|
|
1267
1532
|
var body = iconBodies[size];
|
|
1268
1533
|
if (!body) {
|
|
1269
|
-
throw Error("Icon \"technology-code-editor\" is not available in size "
|
|
1534
|
+
throw Error("Icon \"technology-code-editor\" is not available in size " + size);
|
|
1270
1535
|
}
|
|
1271
1536
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1272
1537
|
};
|
|
@@ -1277,7 +1542,7 @@ var IconTechnologyCommandLine = function (props) {
|
|
|
1277
1542
|
};
|
|
1278
1543
|
var body = iconBodies[size];
|
|
1279
1544
|
if (!body) {
|
|
1280
|
-
throw Error("Icon \"technology-command-line\" is not available in size "
|
|
1545
|
+
throw Error("Icon \"technology-command-line\" is not available in size " + size);
|
|
1281
1546
|
}
|
|
1282
1547
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1283
1548
|
};
|
|
@@ -1288,7 +1553,7 @@ var IconTechnologyCypress = function (props) {
|
|
|
1288
1553
|
};
|
|
1289
1554
|
var body = iconBodies[size];
|
|
1290
1555
|
if (!body) {
|
|
1291
|
-
throw Error("Icon \"technology-cypress\" is not available in size "
|
|
1556
|
+
throw Error("Icon \"technology-cypress\" is not available in size " + size);
|
|
1292
1557
|
}
|
|
1293
1558
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1294
1559
|
};
|
|
@@ -1299,7 +1564,7 @@ var IconTechnologyDashboardCheckmark = function (props) {
|
|
|
1299
1564
|
};
|
|
1300
1565
|
var body = iconBodies[size];
|
|
1301
1566
|
if (!body) {
|
|
1302
|
-
throw Error("Icon \"technology-dashboard-checkmark\" is not available in size "
|
|
1567
|
+
throw Error("Icon \"technology-dashboard-checkmark\" is not available in size " + size);
|
|
1303
1568
|
}
|
|
1304
1569
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1305
1570
|
};
|
|
@@ -1310,7 +1575,7 @@ var IconTechnologyDashboardFail = function (props) {
|
|
|
1310
1575
|
};
|
|
1311
1576
|
var body = iconBodies[size];
|
|
1312
1577
|
if (!body) {
|
|
1313
|
-
throw Error("Icon \"technology-dashboard-fail\" is not available in size "
|
|
1578
|
+
throw Error("Icon \"technology-dashboard-fail\" is not available in size " + size);
|
|
1314
1579
|
}
|
|
1315
1580
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1316
1581
|
};
|
|
@@ -1321,7 +1586,7 @@ var IconTechnologyDollar = function (props) {
|
|
|
1321
1586
|
};
|
|
1322
1587
|
var body = iconBodies[size];
|
|
1323
1588
|
if (!body) {
|
|
1324
|
-
throw Error("Icon \"technology-dollar\" is not available in size "
|
|
1589
|
+
throw Error("Icon \"technology-dollar\" is not available in size " + size);
|
|
1325
1590
|
}
|
|
1326
1591
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1327
1592
|
};
|
|
@@ -1332,7 +1597,7 @@ var IconTechnologyDragProject = function (props) {
|
|
|
1332
1597
|
};
|
|
1333
1598
|
var body = iconBodies[size];
|
|
1334
1599
|
if (!body) {
|
|
1335
|
-
throw Error("Icon \"technology-drag-project\" is not available in size "
|
|
1600
|
+
throw Error("Icon \"technology-drag-project\" is not available in size " + size);
|
|
1336
1601
|
}
|
|
1337
1602
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1338
1603
|
};
|
|
@@ -1343,7 +1608,7 @@ var IconTechnologyElementSelector = function (props) {
|
|
|
1343
1608
|
};
|
|
1344
1609
|
var body = iconBodies[size];
|
|
1345
1610
|
if (!body) {
|
|
1346
|
-
throw Error("Icon \"technology-element-selector\" is not available in size "
|
|
1611
|
+
throw Error("Icon \"technology-element-selector\" is not available in size " + size);
|
|
1347
1612
|
}
|
|
1348
1613
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1349
1614
|
};
|
|
@@ -1354,7 +1619,7 @@ var IconTechnologyImageScreenshot = function (props) {
|
|
|
1354
1619
|
};
|
|
1355
1620
|
var body = iconBodies[size];
|
|
1356
1621
|
if (!body) {
|
|
1357
|
-
throw Error("Icon \"technology-image-screenshot\" is not available in size "
|
|
1622
|
+
throw Error("Icon \"technology-image-screenshot\" is not available in size " + size);
|
|
1358
1623
|
}
|
|
1359
1624
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1360
1625
|
};
|
|
@@ -1367,7 +1632,7 @@ var IconTechnologyInfinityLoop = function (props) {
|
|
|
1367
1632
|
};
|
|
1368
1633
|
var body = iconBodies[size];
|
|
1369
1634
|
if (!body) {
|
|
1370
|
-
throw Error("Icon \"technology-infinity-loop\" is not available in size "
|
|
1635
|
+
throw Error("Icon \"technology-infinity-loop\" is not available in size " + size);
|
|
1371
1636
|
}
|
|
1372
1637
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1373
1638
|
};
|
|
@@ -1378,7 +1643,7 @@ var IconTechnologyLockedProject = function (props) {
|
|
|
1378
1643
|
};
|
|
1379
1644
|
var body = iconBodies[size];
|
|
1380
1645
|
if (!body) {
|
|
1381
|
-
throw Error("Icon \"technology-locked-project\" is not available in size "
|
|
1646
|
+
throw Error("Icon \"technology-locked-project\" is not available in size " + size);
|
|
1382
1647
|
}
|
|
1383
1648
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1384
1649
|
};
|
|
@@ -1389,7 +1654,7 @@ var IconTechnologyOctothorpe = function (props) {
|
|
|
1389
1654
|
};
|
|
1390
1655
|
var body = iconBodies[size];
|
|
1391
1656
|
if (!body) {
|
|
1392
|
-
throw Error("Icon \"technology-octothorpe\" is not available in size "
|
|
1657
|
+
throw Error("Icon \"technology-octothorpe\" is not available in size " + size);
|
|
1393
1658
|
}
|
|
1394
1659
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1395
1660
|
};
|
|
@@ -1400,7 +1665,7 @@ var IconTechnologyPullRequest = function (props) {
|
|
|
1400
1665
|
};
|
|
1401
1666
|
var body = iconBodies[size];
|
|
1402
1667
|
if (!body) {
|
|
1403
|
-
throw Error("Icon \"technology-pull-request\" is not available in size "
|
|
1668
|
+
throw Error("Icon \"technology-pull-request\" is not available in size " + size);
|
|
1404
1669
|
}
|
|
1405
1670
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1406
1671
|
};
|
|
@@ -1411,7 +1676,7 @@ var IconTechnologyServer = function (props) {
|
|
|
1411
1676
|
};
|
|
1412
1677
|
var body = iconBodies[size];
|
|
1413
1678
|
if (!body) {
|
|
1414
|
-
throw Error("Icon \"technology-server\" is not available in size "
|
|
1679
|
+
throw Error("Icon \"technology-server\" is not available in size " + size);
|
|
1415
1680
|
}
|
|
1416
1681
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1417
1682
|
};
|
|
@@ -1422,7 +1687,7 @@ var IconTechnologyTerminalLog = function (props) {
|
|
|
1422
1687
|
};
|
|
1423
1688
|
var body = iconBodies[size];
|
|
1424
1689
|
if (!body) {
|
|
1425
|
-
throw Error("Icon \"technology-terminal-log\" is not available in size "
|
|
1690
|
+
throw Error("Icon \"technology-terminal-log\" is not available in size " + size);
|
|
1426
1691
|
}
|
|
1427
1692
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1428
1693
|
};
|
|
@@ -1433,7 +1698,7 @@ var IconTechnologyTerminal = function (props) {
|
|
|
1433
1698
|
};
|
|
1434
1699
|
var body = iconBodies[size];
|
|
1435
1700
|
if (!body) {
|
|
1436
|
-
throw Error("Icon \"technology-terminal\" is not available in size "
|
|
1701
|
+
throw Error("Icon \"technology-terminal\" is not available in size " + size);
|
|
1437
1702
|
}
|
|
1438
1703
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1439
1704
|
};
|
|
@@ -1445,7 +1710,7 @@ var IconTechnologyTestResults = function (props) {
|
|
|
1445
1710
|
};
|
|
1446
1711
|
var body = iconBodies[size];
|
|
1447
1712
|
if (!body) {
|
|
1448
|
-
throw Error("Icon \"technology-test-results\" is not available in size "
|
|
1713
|
+
throw Error("Icon \"technology-test-results\" is not available in size " + size);
|
|
1449
1714
|
}
|
|
1450
1715
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1451
1716
|
};
|
|
@@ -1456,7 +1721,7 @@ var IconTestingTypeComponentSolid = function (props) {
|
|
|
1456
1721
|
};
|
|
1457
1722
|
var body = iconBodies[size];
|
|
1458
1723
|
if (!body) {
|
|
1459
|
-
throw Error("Icon \"testing-type-component-solid\" is not available in size "
|
|
1724
|
+
throw Error("Icon \"testing-type-component-solid\" is not available in size " + size);
|
|
1460
1725
|
}
|
|
1461
1726
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1462
1727
|
};
|
|
@@ -1469,7 +1734,7 @@ var IconTestingTypeComponent = function (props) {
|
|
|
1469
1734
|
};
|
|
1470
1735
|
var body = iconBodies[size];
|
|
1471
1736
|
if (!body) {
|
|
1472
|
-
throw Error("Icon \"testing-type-component\" is not available in size "
|
|
1737
|
+
throw Error("Icon \"testing-type-component\" is not available in size " + size);
|
|
1473
1738
|
}
|
|
1474
1739
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1475
1740
|
};
|
|
@@ -1481,7 +1746,7 @@ var IconTestingTypeE2ESolid = function (props) {
|
|
|
1481
1746
|
};
|
|
1482
1747
|
var body = iconBodies[size];
|
|
1483
1748
|
if (!body) {
|
|
1484
|
-
throw Error("Icon \"testing-type-e2e-solid\" is not available in size "
|
|
1749
|
+
throw Error("Icon \"testing-type-e2e-solid\" is not available in size " + size);
|
|
1485
1750
|
}
|
|
1486
1751
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1487
1752
|
};
|
|
@@ -1494,7 +1759,7 @@ var IconTestingTypeE2E = function (props) {
|
|
|
1494
1759
|
};
|
|
1495
1760
|
var body = iconBodies[size];
|
|
1496
1761
|
if (!body) {
|
|
1497
|
-
throw Error("Icon \"testing-type-e2e\" is not available in size "
|
|
1762
|
+
throw Error("Icon \"testing-type-e2e\" is not available in size " + size);
|
|
1498
1763
|
}
|
|
1499
1764
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1500
1765
|
};
|
|
@@ -1505,7 +1770,7 @@ var IconTimeStopwatch = function (props) {
|
|
|
1505
1770
|
};
|
|
1506
1771
|
var body = iconBodies[size];
|
|
1507
1772
|
if (!body) {
|
|
1508
|
-
throw Error("Icon \"time-stopwatch\" is not available in size "
|
|
1773
|
+
throw Error("Icon \"time-stopwatch\" is not available in size " + size);
|
|
1509
1774
|
}
|
|
1510
1775
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1511
1776
|
};
|
|
@@ -1516,7 +1781,7 @@ var IconUserGeneralOutline = function (props) {
|
|
|
1516
1781
|
};
|
|
1517
1782
|
var body = iconBodies[size];
|
|
1518
1783
|
if (!body) {
|
|
1519
|
-
throw Error("Icon \"user-general-outline\" is not available in size "
|
|
1784
|
+
throw Error("Icon \"user-general-outline\" is not available in size " + size);
|
|
1520
1785
|
}
|
|
1521
1786
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1522
1787
|
};
|
|
@@ -1527,7 +1792,7 @@ var IconUserGeneralSolid = function (props) {
|
|
|
1527
1792
|
};
|
|
1528
1793
|
var body = iconBodies[size];
|
|
1529
1794
|
if (!body) {
|
|
1530
|
-
throw Error("Icon \"user-general-solid\" is not available in size "
|
|
1795
|
+
throw Error("Icon \"user-general-solid\" is not available in size " + size);
|
|
1531
1796
|
}
|
|
1532
1797
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1533
1798
|
};
|
|
@@ -1538,7 +1803,7 @@ var IconViewList = function (props) {
|
|
|
1538
1803
|
};
|
|
1539
1804
|
var body = iconBodies[size];
|
|
1540
1805
|
if (!body) {
|
|
1541
|
-
throw Error("Icon \"view-list\" is not available in size "
|
|
1806
|
+
throw Error("Icon \"view-list\" is not available in size " + size);
|
|
1542
1807
|
}
|
|
1543
1808
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1544
1809
|
};
|
|
@@ -1549,7 +1814,7 @@ var IconViewTreeAlt = function (props) {
|
|
|
1549
1814
|
};
|
|
1550
1815
|
var body = iconBodies[size];
|
|
1551
1816
|
if (!body) {
|
|
1552
|
-
throw Error("Icon \"view-tree-alt\" is not available in size "
|
|
1817
|
+
throw Error("Icon \"view-tree-alt\" is not available in size " + size);
|
|
1553
1818
|
}
|
|
1554
1819
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1555
1820
|
};
|
|
@@ -1560,7 +1825,7 @@ var IconWarningCircle = function (props) {
|
|
|
1560
1825
|
};
|
|
1561
1826
|
var body = iconBodies[size];
|
|
1562
1827
|
if (!body) {
|
|
1563
|
-
throw Error("Icon \"warning-circle\" is not available in size "
|
|
1828
|
+
throw Error("Icon \"warning-circle\" is not available in size " + size);
|
|
1564
1829
|
}
|
|
1565
1830
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1566
1831
|
};
|
|
@@ -1571,7 +1836,7 @@ var IconWarning = function (props) {
|
|
|
1571
1836
|
};
|
|
1572
1837
|
var body = iconBodies[size];
|
|
1573
1838
|
if (!body) {
|
|
1574
|
-
throw Error("Icon \"warning\" is not available in size "
|
|
1839
|
+
throw Error("Icon \"warning\" is not available in size " + size);
|
|
1575
1840
|
}
|
|
1576
1841
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1577
1842
|
};
|
|
@@ -1676,6 +1941,28 @@ exports.IconObjectRuler = IconObjectRuler;
|
|
|
1676
1941
|
exports.IconSecurityKey = IconSecurityKey;
|
|
1677
1942
|
exports.IconSecurityLockLocked = IconSecurityLockLocked;
|
|
1678
1943
|
exports.IconShapeLightningBolt = IconShapeLightningBolt;
|
|
1944
|
+
exports.IconStatusCancelledOutline = IconStatusCancelledOutline;
|
|
1945
|
+
exports.IconStatusCancelledSimple = IconStatusCancelledSimple;
|
|
1946
|
+
exports.IconStatusCancelledSolid = IconStatusCancelledSolid;
|
|
1947
|
+
exports.IconStatusErroredOutline = IconStatusErroredOutline;
|
|
1948
|
+
exports.IconStatusErroredSimple = IconStatusErroredSimple;
|
|
1949
|
+
exports.IconStatusErroredSolid = IconStatusErroredSolid;
|
|
1950
|
+
exports.IconStatusFailedOutline = IconStatusFailedOutline;
|
|
1951
|
+
exports.IconStatusFailedSimple = IconStatusFailedSimple;
|
|
1952
|
+
exports.IconStatusFailedSolid = IconStatusFailedSolid;
|
|
1953
|
+
exports.IconStatusPassedOutline = IconStatusPassedOutline;
|
|
1954
|
+
exports.IconStatusPassedSimple = IconStatusPassedSimple;
|
|
1955
|
+
exports.IconStatusPassedSolid = IconStatusPassedSolid;
|
|
1956
|
+
exports.IconStatusPendingOutline = IconStatusPendingOutline;
|
|
1957
|
+
exports.IconStatusPendingSimple = IconStatusPendingSimple;
|
|
1958
|
+
exports.IconStatusPlaceholderSimple = IconStatusPlaceholderSimple;
|
|
1959
|
+
exports.IconStatusPlaceholderSolid = IconStatusPlaceholderSolid;
|
|
1960
|
+
exports.IconStatusQueuedOutline = IconStatusQueuedOutline;
|
|
1961
|
+
exports.IconStatusQueuedSimple = IconStatusQueuedSimple;
|
|
1962
|
+
exports.IconStatusRunningOutline = IconStatusRunningOutline;
|
|
1963
|
+
exports.IconStatusRunningSimple = IconStatusRunningSimple;
|
|
1964
|
+
exports.IconStatusSkippedOutline = IconStatusSkippedOutline;
|
|
1965
|
+
exports.IconStatusSkippedSimple = IconStatusSkippedSimple;
|
|
1679
1966
|
exports.IconTechnologyBranchH = IconTechnologyBranchH;
|
|
1680
1967
|
exports.IconTechnologyBranchHTall = IconTechnologyBranchHTall;
|
|
1681
1968
|
exports.IconTechnologyBrowserTesting2 = IconTechnologyBrowserTesting2;
|
|
@@ -1707,5 +1994,8 @@ exports.IconViewList = IconViewList;
|
|
|
1707
1994
|
exports.IconViewTreeAlt = IconViewTreeAlt;
|
|
1708
1995
|
exports.IconWarning = IconWarning;
|
|
1709
1996
|
exports.IconWarningCircle = IconWarningCircle;
|
|
1997
|
+
exports.compileReactIconProperties = compileReactIconProperties;
|
|
1710
1998
|
exports["default"] = Icon;
|
|
1999
|
+
/* <windicss-keep class=""> */
|
|
2000
|
+
|
|
1711
2001
|
//# sourceMappingURL=index.umd.js.map
|