@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.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import * as iconsRegistry from '@cypress-design/icon-registry';
|
|
3
|
-
import { compileIcon } from '@cypress-design/icon-registry';
|
|
3
|
+
import { ICON_COLOR_PROP_NAMES, compileIcon } from '@cypress-design/icon-registry';
|
|
4
4
|
|
|
5
5
|
/******************************************************************************
|
|
6
6
|
Copyright (c) Microsoft Corporation.
|
|
@@ -40,20 +40,18 @@ function __rest(s, e) {
|
|
|
40
40
|
return t;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
var
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
if (key.endsWith('Color')) {
|
|
50
|
-
// @ts-ignore
|
|
51
|
-
delete attributes[key];
|
|
43
|
+
var compileReactIconProperties = function (_a) {
|
|
44
|
+
var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size, attributes = __rest(_a, ["body", "compiledClasses", "size"]);
|
|
45
|
+
var filteredAttributes = Object.keys(attributes).reduce(function (newAttributes, attrName) {
|
|
46
|
+
if (!ICON_COLOR_PROP_NAMES.includes(attrName)) {
|
|
47
|
+
newAttributes[attrName] =
|
|
48
|
+
attributes[attrName];
|
|
52
49
|
}
|
|
53
|
-
|
|
50
|
+
return newAttributes;
|
|
51
|
+
}, {});
|
|
54
52
|
var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
|
|
55
53
|
__html: body
|
|
56
|
-
} },
|
|
54
|
+
} }, filteredAttributes);
|
|
57
55
|
if (attributes.className) {
|
|
58
56
|
compiledClasses.push(attributes.className);
|
|
59
57
|
}
|
|
@@ -63,18 +61,8 @@ var compileReactIconProperties$1 = function (_a) {
|
|
|
63
61
|
return componentProps;
|
|
64
62
|
};
|
|
65
63
|
|
|
66
|
-
var
|
|
67
|
-
|
|
68
|
-
var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
|
|
69
|
-
__html: body
|
|
70
|
-
} }, attributes);
|
|
71
|
-
if (attributes.className) {
|
|
72
|
-
compiledClasses.push(attributes.className);
|
|
73
|
-
}
|
|
74
|
-
if (compiledClasses.length) {
|
|
75
|
-
componentProps.className = compiledClasses.join(' ');
|
|
76
|
-
}
|
|
77
|
-
return componentProps;
|
|
64
|
+
var Icon = function (props) {
|
|
65
|
+
return React.createElement('svg', compileReactIconProperties(compileIcon(props)));
|
|
78
66
|
};
|
|
79
67
|
|
|
80
68
|
var IconActionAddLarge = function (props) {
|
|
@@ -84,7 +72,7 @@ var IconActionAddLarge = function (props) {
|
|
|
84
72
|
};
|
|
85
73
|
var body = iconBodies[size];
|
|
86
74
|
if (!body) {
|
|
87
|
-
throw Error("Icon \"action-add-large\" is not available in size "
|
|
75
|
+
throw Error("Icon \"action-add-large\" is not available in size " + size);
|
|
88
76
|
}
|
|
89
77
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
90
78
|
};
|
|
@@ -95,7 +83,7 @@ var IconActionAddMedium = function (props) {
|
|
|
95
83
|
};
|
|
96
84
|
var body = iconBodies[size];
|
|
97
85
|
if (!body) {
|
|
98
|
-
throw Error("Icon \"action-add-medium\" is not available in size "
|
|
86
|
+
throw Error("Icon \"action-add-medium\" is not available in size " + size);
|
|
99
87
|
}
|
|
100
88
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
101
89
|
};
|
|
@@ -106,7 +94,7 @@ var IconActionAddSmall = function (props) {
|
|
|
106
94
|
};
|
|
107
95
|
var body = iconBodies[size];
|
|
108
96
|
if (!body) {
|
|
109
|
-
throw Error("Icon \"action-add-small\" is not available in size "
|
|
97
|
+
throw Error("Icon \"action-add-small\" is not available in size " + size);
|
|
110
98
|
}
|
|
111
99
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
112
100
|
};
|
|
@@ -117,7 +105,7 @@ var IconActionAddXsmall = function (props) {
|
|
|
117
105
|
};
|
|
118
106
|
var body = iconBodies[size];
|
|
119
107
|
if (!body) {
|
|
120
|
-
throw Error("Icon \"action-add-xsmall\" is not available in size "
|
|
108
|
+
throw Error("Icon \"action-add-xsmall\" is not available in size " + size);
|
|
121
109
|
}
|
|
122
110
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
123
111
|
};
|
|
@@ -128,7 +116,7 @@ var IconActionAdd = function (props) {
|
|
|
128
116
|
};
|
|
129
117
|
var body = iconBodies[size];
|
|
130
118
|
if (!body) {
|
|
131
|
-
throw Error("Icon \"action-add\" is not available in size "
|
|
119
|
+
throw Error("Icon \"action-add\" is not available in size " + size);
|
|
132
120
|
}
|
|
133
121
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
134
122
|
};
|
|
@@ -139,7 +127,7 @@ var IconActionDeleteCircle = function (props) {
|
|
|
139
127
|
};
|
|
140
128
|
var body = iconBodies[size];
|
|
141
129
|
if (!body) {
|
|
142
|
-
throw Error("Icon \"action-delete-circle\" is not available in size "
|
|
130
|
+
throw Error("Icon \"action-delete-circle\" is not available in size " + size);
|
|
143
131
|
}
|
|
144
132
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
145
133
|
};
|
|
@@ -150,7 +138,7 @@ var IconActionDeleteLarge = function (props) {
|
|
|
150
138
|
};
|
|
151
139
|
var body = iconBodies[size];
|
|
152
140
|
if (!body) {
|
|
153
|
-
throw Error("Icon \"action-delete-large\" is not available in size "
|
|
141
|
+
throw Error("Icon \"action-delete-large\" is not available in size " + size);
|
|
154
142
|
}
|
|
155
143
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
156
144
|
};
|
|
@@ -161,7 +149,7 @@ var IconActionDeleteMedium = function (props) {
|
|
|
161
149
|
};
|
|
162
150
|
var body = iconBodies[size];
|
|
163
151
|
if (!body) {
|
|
164
|
-
throw Error("Icon \"action-delete-medium\" is not available in size "
|
|
152
|
+
throw Error("Icon \"action-delete-medium\" is not available in size " + size);
|
|
165
153
|
}
|
|
166
154
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
167
155
|
};
|
|
@@ -172,7 +160,7 @@ var IconActionDeleteXlarge = function (props) {
|
|
|
172
160
|
};
|
|
173
161
|
var body = iconBodies[size];
|
|
174
162
|
if (!body) {
|
|
175
|
-
throw Error("Icon \"action-delete-xlarge\" is not available in size "
|
|
163
|
+
throw Error("Icon \"action-delete-xlarge\" is not available in size " + size);
|
|
176
164
|
}
|
|
177
165
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
178
166
|
};
|
|
@@ -183,7 +171,7 @@ var IconActionDelete = function (props) {
|
|
|
183
171
|
};
|
|
184
172
|
var body = iconBodies[size];
|
|
185
173
|
if (!body) {
|
|
186
|
-
throw Error("Icon \"action-delete\" is not available in size "
|
|
174
|
+
throw Error("Icon \"action-delete\" is not available in size " + size);
|
|
187
175
|
}
|
|
188
176
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
189
177
|
};
|
|
@@ -194,7 +182,7 @@ var IconActionDisableCircleSolid = function (props) {
|
|
|
194
182
|
};
|
|
195
183
|
var body = iconBodies[size];
|
|
196
184
|
if (!body) {
|
|
197
|
-
throw Error("Icon \"action-disable-circle-solid\" is not available in size "
|
|
185
|
+
throw Error("Icon \"action-disable-circle-solid\" is not available in size " + size);
|
|
198
186
|
}
|
|
199
187
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
200
188
|
};
|
|
@@ -205,7 +193,7 @@ var IconActionExport = function (props) {
|
|
|
205
193
|
};
|
|
206
194
|
var body = iconBodies[size];
|
|
207
195
|
if (!body) {
|
|
208
|
-
throw Error("Icon \"action-export\" is not available in size "
|
|
196
|
+
throw Error("Icon \"action-export\" is not available in size " + size);
|
|
209
197
|
}
|
|
210
198
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
211
199
|
};
|
|
@@ -216,7 +204,7 @@ var IconActionNext = function (props) {
|
|
|
216
204
|
};
|
|
217
205
|
var body = iconBodies[size];
|
|
218
206
|
if (!body) {
|
|
219
|
-
throw Error("Icon \"action-next\" is not available in size "
|
|
207
|
+
throw Error("Icon \"action-next\" is not available in size " + size);
|
|
220
208
|
}
|
|
221
209
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
222
210
|
};
|
|
@@ -227,7 +215,7 @@ var IconActionPlayLarge = function (props) {
|
|
|
227
215
|
};
|
|
228
216
|
var body = iconBodies[size];
|
|
229
217
|
if (!body) {
|
|
230
|
-
throw Error("Icon \"action-play-large\" is not available in size "
|
|
218
|
+
throw Error("Icon \"action-play-large\" is not available in size " + size);
|
|
231
219
|
}
|
|
232
220
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
233
221
|
};
|
|
@@ -238,7 +226,7 @@ var IconActionPlaySmall = function (props) {
|
|
|
238
226
|
};
|
|
239
227
|
var body = iconBodies[size];
|
|
240
228
|
if (!body) {
|
|
241
|
-
throw Error("Icon \"action-play-small\" is not available in size "
|
|
229
|
+
throw Error("Icon \"action-play-small\" is not available in size " + size);
|
|
242
230
|
}
|
|
243
231
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
244
232
|
};
|
|
@@ -249,7 +237,7 @@ var IconActionPower = function (props) {
|
|
|
249
237
|
};
|
|
250
238
|
var body = iconBodies[size];
|
|
251
239
|
if (!body) {
|
|
252
|
-
throw Error("Icon \"action-power\" is not available in size "
|
|
240
|
+
throw Error("Icon \"action-power\" is not available in size " + size);
|
|
253
241
|
}
|
|
254
242
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
255
243
|
};
|
|
@@ -260,7 +248,7 @@ var IconActionQuestionMarkCircle = function (props) {
|
|
|
260
248
|
};
|
|
261
249
|
var body = iconBodies[size];
|
|
262
250
|
if (!body) {
|
|
263
|
-
throw Error("Icon \"action-question-mark-circle\" is not available in size "
|
|
251
|
+
throw Error("Icon \"action-question-mark-circle\" is not available in size " + size);
|
|
264
252
|
}
|
|
265
253
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
266
254
|
};
|
|
@@ -271,7 +259,7 @@ var IconActionQuestionMarkDefault = function (props) {
|
|
|
271
259
|
};
|
|
272
260
|
var body = iconBodies[size];
|
|
273
261
|
if (!body) {
|
|
274
|
-
throw Error("Icon \"action-question-mark-default\" is not available in size "
|
|
262
|
+
throw Error("Icon \"action-question-mark-default\" is not available in size " + size);
|
|
275
263
|
}
|
|
276
264
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
277
265
|
};
|
|
@@ -282,7 +270,7 @@ var IconActionQuestionMarkOutline = function (props) {
|
|
|
282
270
|
};
|
|
283
271
|
var body = iconBodies[size];
|
|
284
272
|
if (!body) {
|
|
285
|
-
throw Error("Icon \"action-question-mark-outline\" is not available in size "
|
|
273
|
+
throw Error("Icon \"action-question-mark-outline\" is not available in size " + size);
|
|
286
274
|
}
|
|
287
275
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
288
276
|
};
|
|
@@ -293,7 +281,7 @@ var IconActionRecord = function (props) {
|
|
|
293
281
|
};
|
|
294
282
|
var body = iconBodies[size];
|
|
295
283
|
if (!body) {
|
|
296
|
-
throw Error("Icon \"action-record\" is not available in size "
|
|
284
|
+
throw Error("Icon \"action-record\" is not available in size " + size);
|
|
297
285
|
}
|
|
298
286
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
299
287
|
};
|
|
@@ -304,7 +292,7 @@ var IconActionRefresh = function (props) {
|
|
|
304
292
|
};
|
|
305
293
|
var body = iconBodies[size];
|
|
306
294
|
if (!body) {
|
|
307
|
-
throw Error("Icon \"action-refresh\" is not available in size "
|
|
295
|
+
throw Error("Icon \"action-refresh\" is not available in size " + size);
|
|
308
296
|
}
|
|
309
297
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
310
298
|
};
|
|
@@ -315,7 +303,7 @@ var IconActionRestart = function (props) {
|
|
|
315
303
|
};
|
|
316
304
|
var body = iconBodies[size];
|
|
317
305
|
if (!body) {
|
|
318
|
-
throw Error("Icon \"action-restart\" is not available in size "
|
|
306
|
+
throw Error("Icon \"action-restart\" is not available in size " + size);
|
|
319
307
|
}
|
|
320
308
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
321
309
|
};
|
|
@@ -326,7 +314,7 @@ var IconActionStop = function (props) {
|
|
|
326
314
|
};
|
|
327
315
|
var body = iconBodies[size];
|
|
328
316
|
if (!body) {
|
|
329
|
-
throw Error("Icon \"action-stop\" is not available in size "
|
|
317
|
+
throw Error("Icon \"action-stop\" is not available in size " + size);
|
|
330
318
|
}
|
|
331
319
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
332
320
|
};
|
|
@@ -337,7 +325,7 @@ var IconArrowCollapse = function (props) {
|
|
|
337
325
|
};
|
|
338
326
|
var body = iconBodies[size];
|
|
339
327
|
if (!body) {
|
|
340
|
-
throw Error("Icon \"arrow-collapse\" is not available in size "
|
|
328
|
+
throw Error("Icon \"arrow-collapse\" is not available in size " + size);
|
|
341
329
|
}
|
|
342
330
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
343
331
|
};
|
|
@@ -348,7 +336,7 @@ var IconArrowDown = function (props) {
|
|
|
348
336
|
};
|
|
349
337
|
var body = iconBodies[size];
|
|
350
338
|
if (!body) {
|
|
351
|
-
throw Error("Icon \"arrow-down\" is not available in size "
|
|
339
|
+
throw Error("Icon \"arrow-down\" is not available in size " + size);
|
|
352
340
|
}
|
|
353
341
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
354
342
|
};
|
|
@@ -359,7 +347,7 @@ var IconArrowExpand = function (props) {
|
|
|
359
347
|
};
|
|
360
348
|
var body = iconBodies[size];
|
|
361
349
|
if (!body) {
|
|
362
|
-
throw Error("Icon \"arrow-expand\" is not available in size "
|
|
350
|
+
throw Error("Icon \"arrow-expand\" is not available in size " + size);
|
|
363
351
|
}
|
|
364
352
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
365
353
|
};
|
|
@@ -370,7 +358,7 @@ var IconArrowLeft = function (props) {
|
|
|
370
358
|
};
|
|
371
359
|
var body = iconBodies[size];
|
|
372
360
|
if (!body) {
|
|
373
|
-
throw Error("Icon \"arrow-left\" is not available in size "
|
|
361
|
+
throw Error("Icon \"arrow-left\" is not available in size " + size);
|
|
374
362
|
}
|
|
375
363
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
376
364
|
};
|
|
@@ -381,7 +369,7 @@ var IconArrowOutlineDown = function (props) {
|
|
|
381
369
|
};
|
|
382
370
|
var body = iconBodies[size];
|
|
383
371
|
if (!body) {
|
|
384
|
-
throw Error("Icon \"arrow-outline-down\" is not available in size "
|
|
372
|
+
throw Error("Icon \"arrow-outline-down\" is not available in size " + size);
|
|
385
373
|
}
|
|
386
374
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
387
375
|
};
|
|
@@ -392,7 +380,7 @@ var IconArrowRight = function (props) {
|
|
|
392
380
|
};
|
|
393
381
|
var body = iconBodies[size];
|
|
394
382
|
if (!body) {
|
|
395
|
-
throw Error("Icon \"arrow-right\" is not available in size "
|
|
383
|
+
throw Error("Icon \"arrow-right\" is not available in size " + size);
|
|
396
384
|
}
|
|
397
385
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
398
386
|
};
|
|
@@ -403,7 +391,7 @@ var IconArrowUp = function (props) {
|
|
|
403
391
|
};
|
|
404
392
|
var body = iconBodies[size];
|
|
405
393
|
if (!body) {
|
|
406
|
-
throw Error("Icon \"arrow-up\" is not available in size "
|
|
394
|
+
throw Error("Icon \"arrow-up\" is not available in size " + size);
|
|
407
395
|
}
|
|
408
396
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
409
397
|
};
|
|
@@ -414,7 +402,7 @@ var IconCheckmarkOutline = function (props) {
|
|
|
414
402
|
};
|
|
415
403
|
var body = iconBodies[size];
|
|
416
404
|
if (!body) {
|
|
417
|
-
throw Error("Icon \"checkmark-outline\" is not available in size "
|
|
405
|
+
throw Error("Icon \"checkmark-outline\" is not available in size " + size);
|
|
418
406
|
}
|
|
419
407
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
420
408
|
};
|
|
@@ -425,7 +413,7 @@ var IconCheckmarkSmall = function (props) {
|
|
|
425
413
|
};
|
|
426
414
|
var body = iconBodies[size];
|
|
427
415
|
if (!body) {
|
|
428
|
-
throw Error("Icon \"checkmark-small\" is not available in size "
|
|
416
|
+
throw Error("Icon \"checkmark-small\" is not available in size " + size);
|
|
429
417
|
}
|
|
430
418
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
431
419
|
};
|
|
@@ -436,7 +424,7 @@ var IconCheckmarkSolid = function (props) {
|
|
|
436
424
|
};
|
|
437
425
|
var body = iconBodies[size];
|
|
438
426
|
if (!body) {
|
|
439
|
-
throw Error("Icon \"checkmark-solid\" is not available in size "
|
|
427
|
+
throw Error("Icon \"checkmark-solid\" is not available in size " + size);
|
|
440
428
|
}
|
|
441
429
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
442
430
|
};
|
|
@@ -447,7 +435,7 @@ var IconCheckmark = function (props) {
|
|
|
447
435
|
};
|
|
448
436
|
var body = iconBodies[size];
|
|
449
437
|
if (!body) {
|
|
450
|
-
throw Error("Icon \"checkmark\" is not available in size "
|
|
438
|
+
throw Error("Icon \"checkmark\" is not available in size " + size);
|
|
451
439
|
}
|
|
452
440
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
453
441
|
};
|
|
@@ -458,7 +446,7 @@ var IconChevronDownDouble = function (props) {
|
|
|
458
446
|
};
|
|
459
447
|
var body = iconBodies[size];
|
|
460
448
|
if (!body) {
|
|
461
|
-
throw Error("Icon \"chevron-down-double\" is not available in size "
|
|
449
|
+
throw Error("Icon \"chevron-down-double\" is not available in size " + size);
|
|
462
450
|
}
|
|
463
451
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
464
452
|
};
|
|
@@ -469,7 +457,7 @@ var IconChevronDownLarge = function (props) {
|
|
|
469
457
|
};
|
|
470
458
|
var body = iconBodies[size];
|
|
471
459
|
if (!body) {
|
|
472
|
-
throw Error("Icon \"chevron-down-large\" is not available in size "
|
|
460
|
+
throw Error("Icon \"chevron-down-large\" is not available in size " + size);
|
|
473
461
|
}
|
|
474
462
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
475
463
|
};
|
|
@@ -481,7 +469,7 @@ var IconChevronDownSmall = function (props) {
|
|
|
481
469
|
};
|
|
482
470
|
var body = iconBodies[size];
|
|
483
471
|
if (!body) {
|
|
484
|
-
throw Error("Icon \"chevron-down-small\" is not available in size "
|
|
472
|
+
throw Error("Icon \"chevron-down-small\" is not available in size " + size);
|
|
485
473
|
}
|
|
486
474
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
487
475
|
};
|
|
@@ -492,7 +480,7 @@ var IconChevronLeftDouble = function (props) {
|
|
|
492
480
|
};
|
|
493
481
|
var body = iconBodies[size];
|
|
494
482
|
if (!body) {
|
|
495
|
-
throw Error("Icon \"chevron-left-double\" is not available in size "
|
|
483
|
+
throw Error("Icon \"chevron-left-double\" is not available in size " + size);
|
|
496
484
|
}
|
|
497
485
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
498
486
|
};
|
|
@@ -503,7 +491,7 @@ var IconChevronLeftLarge = function (props) {
|
|
|
503
491
|
};
|
|
504
492
|
var body = iconBodies[size];
|
|
505
493
|
if (!body) {
|
|
506
|
-
throw Error("Icon \"chevron-left-large\" is not available in size "
|
|
494
|
+
throw Error("Icon \"chevron-left-large\" is not available in size " + size);
|
|
507
495
|
}
|
|
508
496
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
509
497
|
};
|
|
@@ -515,7 +503,7 @@ var IconChevronLeftSmall = function (props) {
|
|
|
515
503
|
};
|
|
516
504
|
var body = iconBodies[size];
|
|
517
505
|
if (!body) {
|
|
518
|
-
throw Error("Icon \"chevron-left-small\" is not available in size "
|
|
506
|
+
throw Error("Icon \"chevron-left-small\" is not available in size " + size);
|
|
519
507
|
}
|
|
520
508
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
521
509
|
};
|
|
@@ -526,7 +514,7 @@ var IconChevronRightDouble = function (props) {
|
|
|
526
514
|
};
|
|
527
515
|
var body = iconBodies[size];
|
|
528
516
|
if (!body) {
|
|
529
|
-
throw Error("Icon \"chevron-right-double\" is not available in size "
|
|
517
|
+
throw Error("Icon \"chevron-right-double\" is not available in size " + size);
|
|
530
518
|
}
|
|
531
519
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
532
520
|
};
|
|
@@ -537,7 +525,7 @@ var IconChevronRightLarge = function (props) {
|
|
|
537
525
|
};
|
|
538
526
|
var body = iconBodies[size];
|
|
539
527
|
if (!body) {
|
|
540
|
-
throw Error("Icon \"chevron-right-large\" is not available in size "
|
|
528
|
+
throw Error("Icon \"chevron-right-large\" is not available in size " + size);
|
|
541
529
|
}
|
|
542
530
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
543
531
|
};
|
|
@@ -549,7 +537,7 @@ var IconChevronRightSmall = function (props) {
|
|
|
549
537
|
};
|
|
550
538
|
var body = iconBodies[size];
|
|
551
539
|
if (!body) {
|
|
552
|
-
throw Error("Icon \"chevron-right-small\" is not available in size "
|
|
540
|
+
throw Error("Icon \"chevron-right-small\" is not available in size " + size);
|
|
553
541
|
}
|
|
554
542
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
555
543
|
};
|
|
@@ -560,7 +548,7 @@ var IconChevronUpDouble = function (props) {
|
|
|
560
548
|
};
|
|
561
549
|
var body = iconBodies[size];
|
|
562
550
|
if (!body) {
|
|
563
|
-
throw Error("Icon \"chevron-up-double\" is not available in size "
|
|
551
|
+
throw Error("Icon \"chevron-up-double\" is not available in size " + size);
|
|
564
552
|
}
|
|
565
553
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
566
554
|
};
|
|
@@ -571,7 +559,7 @@ var IconChevronUpLarge = function (props) {
|
|
|
571
559
|
};
|
|
572
560
|
var body = iconBodies[size];
|
|
573
561
|
if (!body) {
|
|
574
|
-
throw Error("Icon \"chevron-up-large\" is not available in size "
|
|
562
|
+
throw Error("Icon \"chevron-up-large\" is not available in size " + size);
|
|
575
563
|
}
|
|
576
564
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
577
565
|
};
|
|
@@ -583,7 +571,7 @@ var IconChevronUpSmall = function (props) {
|
|
|
583
571
|
};
|
|
584
572
|
var body = iconBodies[size];
|
|
585
573
|
if (!body) {
|
|
586
|
-
throw Error("Icon \"chevron-up-small\" is not available in size "
|
|
574
|
+
throw Error("Icon \"chevron-up-small\" is not available in size " + size);
|
|
587
575
|
}
|
|
588
576
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
589
577
|
};
|
|
@@ -594,7 +582,7 @@ var IconDeviceLaptop = function (props) {
|
|
|
594
582
|
};
|
|
595
583
|
var body = iconBodies[size];
|
|
596
584
|
if (!body) {
|
|
597
|
-
throw Error("Icon \"device-laptop\" is not available in size "
|
|
585
|
+
throw Error("Icon \"device-laptop\" is not available in size " + size);
|
|
598
586
|
}
|
|
599
587
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
600
588
|
};
|
|
@@ -605,7 +593,7 @@ var IconDocumentAdded = function (props) {
|
|
|
605
593
|
};
|
|
606
594
|
var body = iconBodies[size];
|
|
607
595
|
if (!body) {
|
|
608
|
-
throw Error("Icon \"document-added\" is not available in size "
|
|
596
|
+
throw Error("Icon \"document-added\" is not available in size " + size);
|
|
609
597
|
}
|
|
610
598
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
611
599
|
};
|
|
@@ -618,7 +606,7 @@ var IconDocumentBlank = function (props) {
|
|
|
618
606
|
};
|
|
619
607
|
var body = iconBodies[size];
|
|
620
608
|
if (!body) {
|
|
621
|
-
throw Error("Icon \"document-blank\" is not available in size "
|
|
609
|
+
throw Error("Icon \"document-blank\" is not available in size " + size);
|
|
622
610
|
}
|
|
623
611
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
624
612
|
};
|
|
@@ -630,7 +618,7 @@ var IconDocumentCode = function (props) {
|
|
|
630
618
|
};
|
|
631
619
|
var body = iconBodies[size];
|
|
632
620
|
if (!body) {
|
|
633
|
-
throw Error("Icon \"document-code\" is not available in size "
|
|
621
|
+
throw Error("Icon \"document-code\" is not available in size " + size);
|
|
634
622
|
}
|
|
635
623
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
636
624
|
};
|
|
@@ -641,7 +629,7 @@ var IconDocumentDeleted = function (props) {
|
|
|
641
629
|
};
|
|
642
630
|
var body = iconBodies[size];
|
|
643
631
|
if (!body) {
|
|
644
|
-
throw Error("Icon \"document-deleted\" is not available in size "
|
|
632
|
+
throw Error("Icon \"document-deleted\" is not available in size " + size);
|
|
645
633
|
}
|
|
646
634
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
647
635
|
};
|
|
@@ -653,7 +641,7 @@ var IconDocumentDownload = function (props) {
|
|
|
653
641
|
};
|
|
654
642
|
var body = iconBodies[size];
|
|
655
643
|
if (!body) {
|
|
656
|
-
throw Error("Icon \"document-download\" is not available in size "
|
|
644
|
+
throw Error("Icon \"document-download\" is not available in size " + size);
|
|
657
645
|
}
|
|
658
646
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
659
647
|
};
|
|
@@ -665,7 +653,7 @@ var IconDocumentMinus = function (props) {
|
|
|
665
653
|
};
|
|
666
654
|
var body = iconBodies[size];
|
|
667
655
|
if (!body) {
|
|
668
|
-
throw Error("Icon \"document-minus\" is not available in size "
|
|
656
|
+
throw Error("Icon \"document-minus\" is not available in size " + size);
|
|
669
657
|
}
|
|
670
658
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
671
659
|
};
|
|
@@ -676,7 +664,7 @@ var IconDocumentModified = function (props) {
|
|
|
676
664
|
};
|
|
677
665
|
var body = iconBodies[size];
|
|
678
666
|
if (!body) {
|
|
679
|
-
throw Error("Icon \"document-modified\" is not available in size "
|
|
667
|
+
throw Error("Icon \"document-modified\" is not available in size " + size);
|
|
680
668
|
}
|
|
681
669
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
682
670
|
};
|
|
@@ -688,7 +676,7 @@ var IconDocumentPlusMinus = function (props) {
|
|
|
688
676
|
};
|
|
689
677
|
var body = iconBodies[size];
|
|
690
678
|
if (!body) {
|
|
691
|
-
throw Error("Icon \"document-plus-minus\" is not available in size "
|
|
679
|
+
throw Error("Icon \"document-plus-minus\" is not available in size " + size);
|
|
692
680
|
}
|
|
693
681
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
694
682
|
};
|
|
@@ -700,7 +688,7 @@ var IconDocumentPlus = function (props) {
|
|
|
700
688
|
};
|
|
701
689
|
var body = iconBodies[size];
|
|
702
690
|
if (!body) {
|
|
703
|
-
throw Error("Icon \"document-plus\" is not available in size "
|
|
691
|
+
throw Error("Icon \"document-plus\" is not available in size " + size);
|
|
704
692
|
}
|
|
705
693
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
706
694
|
};
|
|
@@ -711,7 +699,7 @@ var IconDocumentScript = function (props) {
|
|
|
711
699
|
};
|
|
712
700
|
var body = iconBodies[size];
|
|
713
701
|
if (!body) {
|
|
714
|
-
throw Error("Icon \"document-script\" is not available in size "
|
|
702
|
+
throw Error("Icon \"document-script\" is not available in size " + size);
|
|
715
703
|
}
|
|
716
704
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
717
705
|
};
|
|
@@ -722,7 +710,7 @@ var IconDocumentSheet = function (props) {
|
|
|
722
710
|
};
|
|
723
711
|
var body = iconBodies[size];
|
|
724
712
|
if (!body) {
|
|
725
|
-
throw Error("Icon \"document-sheet\" is not available in size "
|
|
713
|
+
throw Error("Icon \"document-sheet\" is not available in size " + size);
|
|
726
714
|
}
|
|
727
715
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
728
716
|
};
|
|
@@ -734,7 +722,7 @@ var IconDocumentStar = function (props) {
|
|
|
734
722
|
};
|
|
735
723
|
var body = iconBodies[size];
|
|
736
724
|
if (!body) {
|
|
737
|
-
throw Error("Icon \"document-star\" is not available in size "
|
|
725
|
+
throw Error("Icon \"document-star\" is not available in size " + size);
|
|
738
726
|
}
|
|
739
727
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
740
728
|
};
|
|
@@ -745,7 +733,7 @@ var IconDocumentText = function (props) {
|
|
|
745
733
|
};
|
|
746
734
|
var body = iconBodies[size];
|
|
747
735
|
if (!body) {
|
|
748
|
-
throw Error("Icon \"document-text\" is not available in size "
|
|
736
|
+
throw Error("Icon \"document-text\" is not available in size " + size);
|
|
749
737
|
}
|
|
750
738
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
751
739
|
};
|
|
@@ -756,7 +744,7 @@ var IconDotOutlineLarge = function (props) {
|
|
|
756
744
|
};
|
|
757
745
|
var body = iconBodies[size];
|
|
758
746
|
if (!body) {
|
|
759
|
-
throw Error("Icon \"dot-outline-large\" is not available in size "
|
|
747
|
+
throw Error("Icon \"dot-outline-large\" is not available in size " + size);
|
|
760
748
|
}
|
|
761
749
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
762
750
|
};
|
|
@@ -767,7 +755,7 @@ var IconDotOutlineSmall = function (props) {
|
|
|
767
755
|
};
|
|
768
756
|
var body = iconBodies[size];
|
|
769
757
|
if (!body) {
|
|
770
|
-
throw Error("Icon \"dot-outline-small\" is not available in size "
|
|
758
|
+
throw Error("Icon \"dot-outline-small\" is not available in size " + size);
|
|
771
759
|
}
|
|
772
760
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
773
761
|
};
|
|
@@ -778,7 +766,7 @@ var IconFileChangesAdded = function (props) {
|
|
|
778
766
|
};
|
|
779
767
|
var body = iconBodies[size];
|
|
780
768
|
if (!body) {
|
|
781
|
-
throw Error("Icon \"file-changes-added\" is not available in size "
|
|
769
|
+
throw Error("Icon \"file-changes-added\" is not available in size " + size);
|
|
782
770
|
}
|
|
783
771
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
784
772
|
};
|
|
@@ -789,7 +777,7 @@ var IconFileChangesError = function (props) {
|
|
|
789
777
|
};
|
|
790
778
|
var body = iconBodies[size];
|
|
791
779
|
if (!body) {
|
|
792
|
-
throw Error("Icon \"file-changes-error\" is not available in size "
|
|
780
|
+
throw Error("Icon \"file-changes-error\" is not available in size " + size);
|
|
793
781
|
}
|
|
794
782
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
795
783
|
};
|
|
@@ -800,7 +788,7 @@ var IconFileChangesSkipped = function (props) {
|
|
|
800
788
|
};
|
|
801
789
|
var body = iconBodies[size];
|
|
802
790
|
if (!body) {
|
|
803
|
-
throw Error("Icon \"file-changes-skipped\" is not available in size "
|
|
791
|
+
throw Error("Icon \"file-changes-skipped\" is not available in size " + size);
|
|
804
792
|
}
|
|
805
793
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
806
794
|
};
|
|
@@ -811,7 +799,7 @@ var IconFileChangesWarning = function (props) {
|
|
|
811
799
|
};
|
|
812
800
|
var body = iconBodies[size];
|
|
813
801
|
if (!body) {
|
|
814
|
-
throw Error("Icon \"file-changes-warning\" is not available in size "
|
|
802
|
+
throw Error("Icon \"file-changes-warning\" is not available in size " + size);
|
|
815
803
|
}
|
|
816
804
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
817
805
|
};
|
|
@@ -822,7 +810,7 @@ var IconGeneralClipboard = function (props) {
|
|
|
822
810
|
};
|
|
823
811
|
var body = iconBodies[size];
|
|
824
812
|
if (!body) {
|
|
825
|
-
throw Error("Icon \"general-clipboard\" is not available in size "
|
|
813
|
+
throw Error("Icon \"general-clipboard\" is not available in size " + size);
|
|
826
814
|
}
|
|
827
815
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
828
816
|
};
|
|
@@ -833,7 +821,7 @@ var IconGeneralCommandKey = function (props) {
|
|
|
833
821
|
};
|
|
834
822
|
var body = iconBodies[size];
|
|
835
823
|
if (!body) {
|
|
836
|
-
throw Error("Icon \"general-command-key\" is not available in size "
|
|
824
|
+
throw Error("Icon \"general-command-key\" is not available in size " + size);
|
|
837
825
|
}
|
|
838
826
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
839
827
|
};
|
|
@@ -844,7 +832,7 @@ var IconGeneralCrosshairs = function (props) {
|
|
|
844
832
|
};
|
|
845
833
|
var body = iconBodies[size];
|
|
846
834
|
if (!body) {
|
|
847
|
-
throw Error("Icon \"general-crosshairs\" is not available in size "
|
|
835
|
+
throw Error("Icon \"general-crosshairs\" is not available in size " + size);
|
|
848
836
|
}
|
|
849
837
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
850
838
|
};
|
|
@@ -855,7 +843,7 @@ var IconGeneralEarth = function (props) {
|
|
|
855
843
|
};
|
|
856
844
|
var body = iconBodies[size];
|
|
857
845
|
if (!body) {
|
|
858
|
-
throw Error("Icon \"general-earth\" is not available in size "
|
|
846
|
+
throw Error("Icon \"general-earth\" is not available in size " + size);
|
|
859
847
|
}
|
|
860
848
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
861
849
|
};
|
|
@@ -866,7 +854,7 @@ var IconGeneralEyeClosed = function (props) {
|
|
|
866
854
|
};
|
|
867
855
|
var body = iconBodies[size];
|
|
868
856
|
if (!body) {
|
|
869
|
-
throw Error("Icon \"general-eye-closed\" is not available in size "
|
|
857
|
+
throw Error("Icon \"general-eye-closed\" is not available in size " + size);
|
|
870
858
|
}
|
|
871
859
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
872
860
|
};
|
|
@@ -877,7 +865,7 @@ var IconGeneralEyeOpen = function (props) {
|
|
|
877
865
|
};
|
|
878
866
|
var body = iconBodies[size];
|
|
879
867
|
if (!body) {
|
|
880
|
-
throw Error("Icon \"general-eye-open\" is not available in size "
|
|
868
|
+
throw Error("Icon \"general-eye-open\" is not available in size " + size);
|
|
881
869
|
}
|
|
882
870
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
883
871
|
};
|
|
@@ -889,7 +877,7 @@ var IconGeneralGlobe = function (props) {
|
|
|
889
877
|
};
|
|
890
878
|
var body = iconBodies[size];
|
|
891
879
|
if (!body) {
|
|
892
|
-
throw Error("Icon \"general-globe\" is not available in size "
|
|
880
|
+
throw Error("Icon \"general-globe\" is not available in size " + size);
|
|
893
881
|
}
|
|
894
882
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
895
883
|
};
|
|
@@ -901,7 +889,7 @@ var IconGeneralGrid2X2 = function (props) {
|
|
|
901
889
|
};
|
|
902
890
|
var body = iconBodies[size];
|
|
903
891
|
if (!body) {
|
|
904
|
-
throw Error("Icon \"general-grid-2x2\" is not available in size "
|
|
892
|
+
throw Error("Icon \"general-grid-2x2\" is not available in size " + size);
|
|
905
893
|
}
|
|
906
894
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
907
895
|
};
|
|
@@ -912,7 +900,7 @@ var IconGeneralLifeRing = function (props) {
|
|
|
912
900
|
};
|
|
913
901
|
var body = iconBodies[size];
|
|
914
902
|
if (!body) {
|
|
915
|
-
throw Error("Icon \"general-life-ring\" is not available in size "
|
|
903
|
+
throw Error("Icon \"general-life-ring\" is not available in size " + size);
|
|
916
904
|
}
|
|
917
905
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
918
906
|
};
|
|
@@ -923,7 +911,7 @@ var IconGeneralOfficeBuilding = function (props) {
|
|
|
923
911
|
};
|
|
924
912
|
var body = iconBodies[size];
|
|
925
913
|
if (!body) {
|
|
926
|
-
throw Error("Icon \"general-office-building\" is not available in size "
|
|
914
|
+
throw Error("Icon \"general-office-building\" is not available in size " + size);
|
|
927
915
|
}
|
|
928
916
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
929
917
|
};
|
|
@@ -937,7 +925,7 @@ var IconGeneralPlaceholder = function (props) {
|
|
|
937
925
|
};
|
|
938
926
|
var body = iconBodies[size];
|
|
939
927
|
if (!body) {
|
|
940
|
-
throw Error("Icon \"general-placeholder\" is not available in size "
|
|
928
|
+
throw Error("Icon \"general-placeholder\" is not available in size " + size);
|
|
941
929
|
}
|
|
942
930
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
943
931
|
};
|
|
@@ -948,7 +936,7 @@ var IconLoading = function (props) {
|
|
|
948
936
|
};
|
|
949
937
|
var body = iconBodies[size];
|
|
950
938
|
if (!body) {
|
|
951
|
-
throw Error("Icon \"loading\" is not available in size "
|
|
939
|
+
throw Error("Icon \"loading\" is not available in size " + size);
|
|
952
940
|
}
|
|
953
941
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
954
942
|
};
|
|
@@ -959,7 +947,7 @@ var IconMenuDotsVertical = function (props) {
|
|
|
959
947
|
};
|
|
960
948
|
var body = iconBodies[size];
|
|
961
949
|
if (!body) {
|
|
962
|
-
throw Error("Icon \"menu-dots-vertical\" is not available in size "
|
|
950
|
+
throw Error("Icon \"menu-dots-vertical\" is not available in size " + size);
|
|
963
951
|
}
|
|
964
952
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
965
953
|
};
|
|
@@ -970,7 +958,7 @@ var IconMenuExpandLeft = function (props) {
|
|
|
970
958
|
};
|
|
971
959
|
var body = iconBodies[size];
|
|
972
960
|
if (!body) {
|
|
973
|
-
throw Error("Icon \"menu-expand-left\" is not available in size "
|
|
961
|
+
throw Error("Icon \"menu-expand-left\" is not available in size " + size);
|
|
974
962
|
}
|
|
975
963
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
976
964
|
};
|
|
@@ -981,7 +969,7 @@ var IconMenuExpandRight = function (props) {
|
|
|
981
969
|
};
|
|
982
970
|
var body = iconBodies[size];
|
|
983
971
|
if (!body) {
|
|
984
|
-
throw Error("Icon \"menu-expand-right\" is not available in size "
|
|
972
|
+
throw Error("Icon \"menu-expand-right\" is not available in size " + size);
|
|
985
973
|
}
|
|
986
974
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
987
975
|
};
|
|
@@ -992,7 +980,7 @@ var IconObjectBookCode = function (props) {
|
|
|
992
980
|
};
|
|
993
981
|
var body = iconBodies[size];
|
|
994
982
|
if (!body) {
|
|
995
|
-
throw Error("Icon \"object-book-code\" is not available in size "
|
|
983
|
+
throw Error("Icon \"object-book-code\" is not available in size " + size);
|
|
996
984
|
}
|
|
997
985
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
998
986
|
};
|
|
@@ -1005,7 +993,7 @@ var IconObjectBook = function (props) {
|
|
|
1005
993
|
};
|
|
1006
994
|
var body = iconBodies[size];
|
|
1007
995
|
if (!body) {
|
|
1008
|
-
throw Error("Icon \"object-book\" is not available in size "
|
|
996
|
+
throw Error("Icon \"object-book\" is not available in size " + size);
|
|
1009
997
|
}
|
|
1010
998
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1011
999
|
};
|
|
@@ -1017,7 +1005,7 @@ var IconObjectBookmark = function (props) {
|
|
|
1017
1005
|
};
|
|
1018
1006
|
var body = iconBodies[size];
|
|
1019
1007
|
if (!body) {
|
|
1020
|
-
throw Error("Icon \"object-bookmark\" is not available in size "
|
|
1008
|
+
throw Error("Icon \"object-bookmark\" is not available in size " + size);
|
|
1021
1009
|
}
|
|
1022
1010
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1023
1011
|
};
|
|
@@ -1028,7 +1016,7 @@ var IconObjectBoxOpen = function (props) {
|
|
|
1028
1016
|
};
|
|
1029
1017
|
var body = iconBodies[size];
|
|
1030
1018
|
if (!body) {
|
|
1031
|
-
throw Error("Icon \"object-box-open\" is not available in size "
|
|
1019
|
+
throw Error("Icon \"object-box-open\" is not available in size " + size);
|
|
1032
1020
|
}
|
|
1033
1021
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1034
1022
|
};
|
|
@@ -1040,7 +1028,7 @@ var IconObjectBox = function (props) {
|
|
|
1040
1028
|
};
|
|
1041
1029
|
var body = iconBodies[size];
|
|
1042
1030
|
if (!body) {
|
|
1043
|
-
throw Error("Icon \"object-box\" is not available in size "
|
|
1031
|
+
throw Error("Icon \"object-box\" is not available in size " + size);
|
|
1044
1032
|
}
|
|
1045
1033
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1046
1034
|
};
|
|
@@ -1051,7 +1039,7 @@ var IconObjectBriefcase = function (props) {
|
|
|
1051
1039
|
};
|
|
1052
1040
|
var body = iconBodies[size];
|
|
1053
1041
|
if (!body) {
|
|
1054
|
-
throw Error("Icon \"object-briefcase\" is not available in size "
|
|
1042
|
+
throw Error("Icon \"object-briefcase\" is not available in size " + size);
|
|
1055
1043
|
}
|
|
1056
1044
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1057
1045
|
};
|
|
@@ -1062,7 +1050,7 @@ var IconObjectChainLink = function (props) {
|
|
|
1062
1050
|
};
|
|
1063
1051
|
var body = iconBodies[size];
|
|
1064
1052
|
if (!body) {
|
|
1065
|
-
throw Error("Icon \"object-chain-link\" is not available in size "
|
|
1053
|
+
throw Error("Icon \"object-chain-link\" is not available in size " + size);
|
|
1066
1054
|
}
|
|
1067
1055
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1068
1056
|
};
|
|
@@ -1073,7 +1061,7 @@ var IconObjectFolderDark = function (props) {
|
|
|
1073
1061
|
};
|
|
1074
1062
|
var body = iconBodies[size];
|
|
1075
1063
|
if (!body) {
|
|
1076
|
-
throw Error("Icon \"object-folder-dark\" is not available in size "
|
|
1064
|
+
throw Error("Icon \"object-folder-dark\" is not available in size " + size);
|
|
1077
1065
|
}
|
|
1078
1066
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1079
1067
|
};
|
|
@@ -1085,7 +1073,7 @@ var IconObjectFolderLight = function (props) {
|
|
|
1085
1073
|
};
|
|
1086
1074
|
var body = iconBodies[size];
|
|
1087
1075
|
if (!body) {
|
|
1088
|
-
throw Error("Icon \"object-folder-light\" is not available in size "
|
|
1076
|
+
throw Error("Icon \"object-folder-light\" is not available in size " + size);
|
|
1089
1077
|
}
|
|
1090
1078
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1091
1079
|
};
|
|
@@ -1097,7 +1085,7 @@ var IconObjectGear = function (props) {
|
|
|
1097
1085
|
};
|
|
1098
1086
|
var body = iconBodies[size];
|
|
1099
1087
|
if (!body) {
|
|
1100
|
-
throw Error("Icon \"object-gear\" is not available in size "
|
|
1088
|
+
throw Error("Icon \"object-gear\" is not available in size " + size);
|
|
1101
1089
|
}
|
|
1102
1090
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1103
1091
|
};
|
|
@@ -1108,7 +1096,7 @@ var IconObjectMagicWandDarkMode = function (props) {
|
|
|
1108
1096
|
};
|
|
1109
1097
|
var body = iconBodies[size];
|
|
1110
1098
|
if (!body) {
|
|
1111
|
-
throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size "
|
|
1099
|
+
throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size " + size);
|
|
1112
1100
|
}
|
|
1113
1101
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1114
1102
|
};
|
|
@@ -1119,7 +1107,7 @@ var IconObjectMagnifyingGlass = function (props) {
|
|
|
1119
1107
|
};
|
|
1120
1108
|
var body = iconBodies[size];
|
|
1121
1109
|
if (!body) {
|
|
1122
|
-
throw Error("Icon \"object-magnifying-glass\" is not available in size "
|
|
1110
|
+
throw Error("Icon \"object-magnifying-glass\" is not available in size " + size);
|
|
1123
1111
|
}
|
|
1124
1112
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1125
1113
|
};
|
|
@@ -1130,7 +1118,7 @@ var IconObjectOdometer = function (props) {
|
|
|
1130
1118
|
};
|
|
1131
1119
|
var body = iconBodies[size];
|
|
1132
1120
|
if (!body) {
|
|
1133
|
-
throw Error("Icon \"object-odometer\" is not available in size "
|
|
1121
|
+
throw Error("Icon \"object-odometer\" is not available in size " + size);
|
|
1134
1122
|
}
|
|
1135
1123
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1136
1124
|
};
|
|
@@ -1141,7 +1129,7 @@ var IconObjectPaperAirplane = function (props) {
|
|
|
1141
1129
|
};
|
|
1142
1130
|
var body = iconBodies[size];
|
|
1143
1131
|
if (!body) {
|
|
1144
|
-
throw Error("Icon \"object-paper-airplane\" is not available in size "
|
|
1132
|
+
throw Error("Icon \"object-paper-airplane\" is not available in size " + size);
|
|
1145
1133
|
}
|
|
1146
1134
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1147
1135
|
};
|
|
@@ -1152,7 +1140,7 @@ var IconObjectPinModern = function (props) {
|
|
|
1152
1140
|
};
|
|
1153
1141
|
var body = iconBodies[size];
|
|
1154
1142
|
if (!body) {
|
|
1155
|
-
throw Error("Icon \"object-pin-modern\" is not available in size "
|
|
1143
|
+
throw Error("Icon \"object-pin-modern\" is not available in size " + size);
|
|
1156
1144
|
}
|
|
1157
1145
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1158
1146
|
};
|
|
@@ -1163,7 +1151,7 @@ var IconObjectRuler = function (props) {
|
|
|
1163
1151
|
};
|
|
1164
1152
|
var body = iconBodies[size];
|
|
1165
1153
|
if (!body) {
|
|
1166
|
-
throw Error("Icon \"object-ruler\" is not available in size "
|
|
1154
|
+
throw Error("Icon \"object-ruler\" is not available in size " + size);
|
|
1167
1155
|
}
|
|
1168
1156
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1169
1157
|
};
|
|
@@ -1175,7 +1163,7 @@ var IconSecurityKey = function (props) {
|
|
|
1175
1163
|
};
|
|
1176
1164
|
var body = iconBodies[size];
|
|
1177
1165
|
if (!body) {
|
|
1178
|
-
throw Error("Icon \"security-key\" is not available in size "
|
|
1166
|
+
throw Error("Icon \"security-key\" is not available in size " + size);
|
|
1179
1167
|
}
|
|
1180
1168
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1181
1169
|
};
|
|
@@ -1186,7 +1174,7 @@ var IconSecurityLockLocked = function (props) {
|
|
|
1186
1174
|
};
|
|
1187
1175
|
var body = iconBodies[size];
|
|
1188
1176
|
if (!body) {
|
|
1189
|
-
throw Error("Icon \"security-lock-locked\" is not available in size "
|
|
1177
|
+
throw Error("Icon \"security-lock-locked\" is not available in size " + size);
|
|
1190
1178
|
}
|
|
1191
1179
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1192
1180
|
};
|
|
@@ -1197,7 +1185,284 @@ var IconShapeLightningBolt = function (props) {
|
|
|
1197
1185
|
};
|
|
1198
1186
|
var body = iconBodies[size];
|
|
1199
1187
|
if (!body) {
|
|
1200
|
-
throw Error("Icon \"shape-lightning-bolt\" is not available in size "
|
|
1188
|
+
throw Error("Icon \"shape-lightning-bolt\" is not available in size " + size);
|
|
1189
|
+
}
|
|
1190
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1191
|
+
};
|
|
1192
|
+
var IconStatusCancelledOutline = function (props) {
|
|
1193
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1194
|
+
var iconBodies = {
|
|
1195
|
+
"16": "<path d=\"M6 8h4m-2 6A6 6 0 1 1 8 2a6 6 0 0 1 0 12Z\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
1196
|
+
"24": "<path d=\"M8 12h8m-4 9a9 9 0 1 1 0-18 9 9 0 0 1 0 18Z\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1197
|
+
};
|
|
1198
|
+
var body = iconBodies[size];
|
|
1199
|
+
if (!body) {
|
|
1200
|
+
throw Error("Icon \"status-cancelled-outline\" is not available in size " + size);
|
|
1201
|
+
}
|
|
1202
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1203
|
+
};
|
|
1204
|
+
var IconStatusCancelledSimple = function (props) {
|
|
1205
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1206
|
+
var iconBodies = {
|
|
1207
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
|
|
1208
|
+
"8": "<path d=\"M1 4h6\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1209
|
+
};
|
|
1210
|
+
var body = iconBodies[size];
|
|
1211
|
+
if (!body) {
|
|
1212
|
+
throw Error("Icon \"status-cancelled-simple\" is not available in size " + size);
|
|
1213
|
+
}
|
|
1214
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1215
|
+
};
|
|
1216
|
+
var IconStatusCancelledSolid = function (props) {
|
|
1217
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1218
|
+
var iconBodies = {
|
|
1219
|
+
"12": "<path d=\"M2 6h8\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
1220
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8Zm4-1a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H5Z\" fill=\"#AFB3C7\"/>",
|
|
1221
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12Zm6-1a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z\" fill=\"#AFB3C7\"/>"
|
|
1222
|
+
};
|
|
1223
|
+
var body = iconBodies[size];
|
|
1224
|
+
if (!body) {
|
|
1225
|
+
throw Error("Icon \"status-cancelled-solid\" is not available in size " + size);
|
|
1226
|
+
}
|
|
1227
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1228
|
+
};
|
|
1229
|
+
var IconStatusErroredOutline = function (props) {
|
|
1230
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1231
|
+
var iconBodies = {
|
|
1232
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0Zm1 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>",
|
|
1233
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#DB7903\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Z\" fill=\"#E56F4A\"/><path d=\"M13 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#E56F4A\"/>"
|
|
1234
|
+
};
|
|
1235
|
+
var body = iconBodies[size];
|
|
1236
|
+
if (!body) {
|
|
1237
|
+
throw Error("Icon \"status-errored-outline\" is not available in size " + size);
|
|
1238
|
+
}
|
|
1239
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1240
|
+
};
|
|
1241
|
+
var IconStatusErroredSimple = function (props) {
|
|
1242
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1243
|
+
var iconBodies = {
|
|
1244
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#DB7903\"/>",
|
|
1245
|
+
"8": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-1Z\" fill=\"#DB7903\"/><path d=\"M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#DB7903\"/>"
|
|
1246
|
+
};
|
|
1247
|
+
var body = iconBodies[size];
|
|
1248
|
+
if (!body) {
|
|
1249
|
+
throw Error("Icon \"status-errored-simple\" is not available in size " + size);
|
|
1250
|
+
}
|
|
1251
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1252
|
+
};
|
|
1253
|
+
var IconStatusErroredSolid = function (props) {
|
|
1254
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1255
|
+
var iconBodies = {
|
|
1256
|
+
"12": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-1Z\" fill=\"#DB7903\"/><path d=\"M7 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#DB7903\"/>",
|
|
1257
|
+
"16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14ZM9 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>",
|
|
1258
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm1-14a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0V8Zm-1 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>"
|
|
1259
|
+
};
|
|
1260
|
+
var body = iconBodies[size];
|
|
1261
|
+
if (!body) {
|
|
1262
|
+
throw Error("Icon \"status-errored-solid\" is not available in size " + size);
|
|
1263
|
+
}
|
|
1264
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1265
|
+
};
|
|
1266
|
+
var IconStatusFailedOutline = function (props) {
|
|
1267
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1268
|
+
var iconBodies = {
|
|
1269
|
+
"16": "<path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293ZM13 8a5 5 0 0 1-5 5v2a7 7 0 0 0 7-7h-2Zm-5 5a5 5 0 0 1-5-5H1a7 7 0 0 0 7 7v-2ZM3 8a5 5 0 0 1 5-5V1a7 7 0 0 0-7 7h2Zm5-5a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7v2ZM5.293 6.707l2 2 1.414-1.414-2-2-1.414 1.414Zm2 2 2 2 1.414-1.414-2-2-1.414 1.414Zm2-3.414-2 2 1.414 1.414 2-2-1.414-1.414Zm-2 2-2 2 1.414 1.414 2-2-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1270
|
+
"24": "<path d=\"M9.707 8.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-7.414 4.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-4.586 3 3 1.414-1.414-3-3-1.414 1.414Zm3 3 3 3 1.414-1.414-3-3-1.414 1.414Zm3-4.414-3 3 1.414 1.414 3-3-1.414-1.414Zm-3 3-3 3 1.414 1.414 3-3-1.414-1.414ZM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10h-2Zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10v-2Zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12h2Zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10v2Z\" fill=\"#E45770\"/>"
|
|
1271
|
+
};
|
|
1272
|
+
var body = iconBodies[size];
|
|
1273
|
+
if (!body) {
|
|
1274
|
+
throw Error("Icon \"status-failed-outline\" is not available in size " + size);
|
|
1275
|
+
}
|
|
1276
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1277
|
+
};
|
|
1278
|
+
var IconStatusFailedSimple = function (props) {
|
|
1279
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1280
|
+
var iconBodies = {
|
|
1281
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#E45770\"/>",
|
|
1282
|
+
"8": "<path d=\"M2.707 1.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414L5.293 6.707Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM1.293 5.293a1 1 0 0 0 1.414 1.414L1.293 5.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1283
|
+
"12": "<path d=\"M3.707 2.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414L8.293 9.707Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414ZM2.293 8.293a1 1 0 0 0 1.414 1.414L2.293 8.293Zm0-4.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6-1.414-6 6 1.414 1.414 6-6-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1284
|
+
"16": "<path d=\"M4.707 3.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm6.586 9.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-8a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-9.414 6.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-6.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4 4 4 4 1.414-1.414-4-4-1.414 1.414Zm4-5.414-4 4 1.414 1.414 4-4-1.414-1.414Zm-4 4-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#E45770\"/>",
|
|
1285
|
+
"24": "<path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm10.586 13.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-12a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 17.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-10.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6 6 6 6 1.414-1.414-6-6-1.414 1.414Zm6-7.414-6 6 1.414 1.414 6-6-1.414-1.414Zm-6 6-6 6 1.414 1.414 6-6-1.414-1.414Z\" fill=\"#E45770\"/>"
|
|
1286
|
+
};
|
|
1287
|
+
var body = iconBodies[size];
|
|
1288
|
+
if (!body) {
|
|
1289
|
+
throw Error("Icon \"status-failed-simple\" is not available in size " + size);
|
|
1290
|
+
}
|
|
1291
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1292
|
+
};
|
|
1293
|
+
var IconStatusFailedSolid = function (props) {
|
|
1294
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1295
|
+
var iconBodies = {
|
|
1296
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#E45770\"/><path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#fff\"/>",
|
|
1297
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM9.707 8.293a1 1 0 0 0-1.414 1.414L10.586 12l-2.293 2.293a1 1 0 1 0 1.414 1.414L12 13.414l2.293 2.293a1 1 0 0 0 1.414-1.414L13.414 12l2.293-2.293a1 1 0 0 0-1.414-1.414L12 10.586 9.707 8.293Z\" fill=\"#E45770\"/>"
|
|
1298
|
+
};
|
|
1299
|
+
var body = iconBodies[size];
|
|
1300
|
+
if (!body) {
|
|
1301
|
+
throw Error("Icon \"status-failed-solid\" is not available in size " + size);
|
|
1302
|
+
}
|
|
1303
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1304
|
+
};
|
|
1305
|
+
var IconStatusPassedOutline = function (props) {
|
|
1306
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1307
|
+
var iconBodies = {
|
|
1308
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#1FA971\" stroke-width=\"2\"/><path d=\"m10 6-2.5 4L6 8.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1309
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm3.864 7.504a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z\" fill=\"#1FA971\"/>"
|
|
1310
|
+
};
|
|
1311
|
+
var body = iconBodies[size];
|
|
1312
|
+
if (!body) {
|
|
1313
|
+
throw Error("Icon \"status-passed-outline\" is not available in size " + size);
|
|
1314
|
+
}
|
|
1315
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1316
|
+
};
|
|
1317
|
+
var IconStatusPassedSimple = function (props) {
|
|
1318
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1319
|
+
var iconBodies = {
|
|
1320
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#1FA971\"/>",
|
|
1321
|
+
"8": "<path d=\"M6 2 3.5 6 2 4.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1322
|
+
"12": "<path d=\"M9 3 5 9 3 6.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1323
|
+
"16": "<path d=\"M4 8.667 7.333 12 12 4\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1324
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.504 8.136a1 1 0 0 1 .36 1.368l-3.5 6a1 1 0 0 1-1.571.203l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.583 1.583 2.846-4.88a1 1 0 0 1 1.368-.36Z\" fill=\"#1FA971\"/>"
|
|
1325
|
+
};
|
|
1326
|
+
var body = iconBodies[size];
|
|
1327
|
+
if (!body) {
|
|
1328
|
+
throw Error("Icon \"status-passed-simple\" is not available in size " + size);
|
|
1329
|
+
}
|
|
1330
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1331
|
+
};
|
|
1332
|
+
var IconStatusPassedSolid = function (props) {
|
|
1333
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1334
|
+
var iconBodies = {
|
|
1335
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#1FA971\"/><path d=\"m10 6-2.5 4L6 8.5\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1336
|
+
"24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm3.864-12.496a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z\" fill=\"#1FA971\"/>"
|
|
1337
|
+
};
|
|
1338
|
+
var body = iconBodies[size];
|
|
1339
|
+
if (!body) {
|
|
1340
|
+
throw Error("Icon \"status-passed-solid\" is not available in size " + size);
|
|
1341
|
+
}
|
|
1342
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1343
|
+
};
|
|
1344
|
+
var IconStatusPendingOutline = function (props) {
|
|
1345
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1346
|
+
var iconBodies = {
|
|
1347
|
+
"12": "<path d=\"M4.47 2.305a4 4 0 1 0 3.061 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
|
|
1348
|
+
"16": "<path d=\"M5.706 2.46a5.998 5.998 0 1 0 4.59 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
|
|
1349
|
+
"24": "<path d=\"M8.555 3.685a8.999 8.999 0 1 0 6.887 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>"
|
|
1350
|
+
};
|
|
1351
|
+
var body = iconBodies[size];
|
|
1352
|
+
if (!body) {
|
|
1353
|
+
throw Error("Icon \"status-pending-outline\" is not available in size " + size);
|
|
1354
|
+
}
|
|
1355
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1356
|
+
};
|
|
1357
|
+
var IconStatusPendingSimple = function (props) {
|
|
1358
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1359
|
+
var iconBodies = {
|
|
1360
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#BFC2D4\"/>",
|
|
1361
|
+
"8": "<g clip-path=\"url(#a)\"><path d=\"M2.852 1.228a3 3 0 1 0 2.296 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h8v8H0z\"/></clipPath></defs>"
|
|
1362
|
+
};
|
|
1363
|
+
var body = iconBodies[size];
|
|
1364
|
+
if (!body) {
|
|
1365
|
+
throw Error("Icon \"status-pending-simple\" is not available in size " + size);
|
|
1366
|
+
}
|
|
1367
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1368
|
+
};
|
|
1369
|
+
var IconStatusPlaceholderSimple = function (props) {
|
|
1370
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1371
|
+
var iconBodies = {
|
|
1372
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#D0D2E0\"/>",
|
|
1373
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" fill=\"#D0D2E0\"/>"
|
|
1374
|
+
};
|
|
1375
|
+
var body = iconBodies[size];
|
|
1376
|
+
if (!body) {
|
|
1377
|
+
throw Error("Icon \"status-placeholder-simple\" is not available in size " + size);
|
|
1378
|
+
}
|
|
1379
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1380
|
+
};
|
|
1381
|
+
var IconStatusPlaceholderSolid = function (props) {
|
|
1382
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1383
|
+
var iconBodies = {
|
|
1384
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"5\" fill=\"#D0D2E0\"/>",
|
|
1385
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#D0D2E0\"/>",
|
|
1386
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"10\" fill=\"#D0D2E0\"/>"
|
|
1387
|
+
};
|
|
1388
|
+
var body = iconBodies[size];
|
|
1389
|
+
if (!body) {
|
|
1390
|
+
throw Error("Icon \"status-placeholder-solid\" is not available in size " + size);
|
|
1391
|
+
}
|
|
1392
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1393
|
+
};
|
|
1394
|
+
var IconStatusQueuedOutline = function (props) {
|
|
1395
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1396
|
+
var iconBodies = {
|
|
1397
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"4\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1398
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1399
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\"/>"
|
|
1400
|
+
};
|
|
1401
|
+
var body = iconBodies[size];
|
|
1402
|
+
if (!body) {
|
|
1403
|
+
throw Error("Icon \"status-queued-outline\" is not available in size " + size);
|
|
1404
|
+
}
|
|
1405
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1406
|
+
};
|
|
1407
|
+
var IconStatusQueuedSimple = function (props) {
|
|
1408
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1409
|
+
var iconBodies = {
|
|
1410
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#E1E3ED\"/>",
|
|
1411
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1412
|
+
};
|
|
1413
|
+
var body = iconBodies[size];
|
|
1414
|
+
if (!body) {
|
|
1415
|
+
throw Error("Icon \"status-queued-simple\" is not available in size " + size);
|
|
1416
|
+
}
|
|
1417
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1418
|
+
};
|
|
1419
|
+
var IconStatusRunningOutline = function (props) {
|
|
1420
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1421
|
+
var iconBodies = {
|
|
1422
|
+
"12": "<circle cx=\"6\" cy=\"6\" r=\"4\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 6a4 4 0 0 0-4-4\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1423
|
+
"16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 8a6 6 0 0 0-6-6\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
1424
|
+
"24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\"/><path d=\"M12 2.999c4.893-.006 9.017 4.125 8.998 9.001\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
|
|
1425
|
+
};
|
|
1426
|
+
var body = iconBodies[size];
|
|
1427
|
+
if (!body) {
|
|
1428
|
+
throw Error("Icon \"status-running-outline\" is not available in size " + size);
|
|
1429
|
+
}
|
|
1430
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1431
|
+
};
|
|
1432
|
+
var IconStatusRunningSimple = function (props) {
|
|
1433
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1434
|
+
var iconBodies = {
|
|
1435
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" fill=\"#C5C9FD\" stroke=\"#6470F3\"><animate attributeName=\"fill\" values=\"#C5C9FD;#6470F3;#C5C9FD\" dur=\"1.5s\" repeatCount=\"indefinite\"/></circle>",
|
|
1436
|
+
"8": "<circle cx=\"4\" cy=\"4\" r=\"3\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 4a3 3 0 0 0-3-3\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
1437
|
+
};
|
|
1438
|
+
var body = iconBodies[size];
|
|
1439
|
+
if (!body) {
|
|
1440
|
+
throw Error("Icon \"status-running-simple\" is not available in size " + size);
|
|
1441
|
+
}
|
|
1442
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1443
|
+
};
|
|
1444
|
+
var IconStatusSkippedOutline = function (props) {
|
|
1445
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1446
|
+
var iconBodies = {
|
|
1447
|
+
"12": "<path d=\"M3.172 8.828a4 4 0 0 0 5.656-5.656M3.172 8.828a4 4 0 0 1 5.656-5.656M3.172 8.828l5.656-5.656\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>",
|
|
1448
|
+
"16": "<path d=\"M3.757 12.243a6 6 0 1 0 8.486-8.486m-8.486 8.486a6 6 0 1 1 8.486-8.486m-8.486 8.486 8.486-8.486\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>",
|
|
1449
|
+
"24": "<path d=\"M5.636 18.364A9 9 0 0 0 18.364 5.636M5.636 18.364A9 9 0 0 1 18.364 5.636M5.636 18.364 18.364 5.636\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>"
|
|
1450
|
+
};
|
|
1451
|
+
var body = iconBodies[size];
|
|
1452
|
+
if (!body) {
|
|
1453
|
+
throw Error("Icon \"status-skipped-outline\" is not available in size " + size);
|
|
1454
|
+
}
|
|
1455
|
+
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1456
|
+
};
|
|
1457
|
+
var IconStatusSkippedSimple = function (props) {
|
|
1458
|
+
var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1459
|
+
var iconBodies = {
|
|
1460
|
+
"4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
|
|
1461
|
+
"8": "<path d=\"M1.879 6.121A3 3 0 0 0 6.12 1.88M1.88 6.12A3 3 0 1 1 6.12 1.88M1.88 6.12 6.12 1.88\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>"
|
|
1462
|
+
};
|
|
1463
|
+
var body = iconBodies[size];
|
|
1464
|
+
if (!body) {
|
|
1465
|
+
throw Error("Icon \"status-skipped-simple\" is not available in size " + size);
|
|
1201
1466
|
}
|
|
1202
1467
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1203
1468
|
};
|
|
@@ -1208,7 +1473,7 @@ var IconTechnologyBranchHTall = function (props) {
|
|
|
1208
1473
|
};
|
|
1209
1474
|
var body = iconBodies[size];
|
|
1210
1475
|
if (!body) {
|
|
1211
|
-
throw Error("Icon \"technology-branch-h-tall\" is not available in size "
|
|
1476
|
+
throw Error("Icon \"technology-branch-h-tall\" is not available in size " + size);
|
|
1212
1477
|
}
|
|
1213
1478
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1214
1479
|
};
|
|
@@ -1219,7 +1484,7 @@ var IconTechnologyBranchH = function (props) {
|
|
|
1219
1484
|
};
|
|
1220
1485
|
var body = iconBodies[size];
|
|
1221
1486
|
if (!body) {
|
|
1222
|
-
throw Error("Icon \"technology-branch-h\" is not available in size "
|
|
1487
|
+
throw Error("Icon \"technology-branch-h\" is not available in size " + size);
|
|
1223
1488
|
}
|
|
1224
1489
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1225
1490
|
};
|
|
@@ -1230,7 +1495,7 @@ var IconTechnologyBrowserTesting2 = function (props) {
|
|
|
1230
1495
|
};
|
|
1231
1496
|
var body = iconBodies[size];
|
|
1232
1497
|
if (!body) {
|
|
1233
|
-
throw Error("Icon \"technology-browser-testing-2\" is not available in size "
|
|
1498
|
+
throw Error("Icon \"technology-browser-testing-2\" is not available in size " + size);
|
|
1234
1499
|
}
|
|
1235
1500
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1236
1501
|
};
|
|
@@ -1242,7 +1507,7 @@ var IconTechnologyCodeEditor = function (props) {
|
|
|
1242
1507
|
};
|
|
1243
1508
|
var body = iconBodies[size];
|
|
1244
1509
|
if (!body) {
|
|
1245
|
-
throw Error("Icon \"technology-code-editor\" is not available in size "
|
|
1510
|
+
throw Error("Icon \"technology-code-editor\" is not available in size " + size);
|
|
1246
1511
|
}
|
|
1247
1512
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1248
1513
|
};
|
|
@@ -1253,7 +1518,7 @@ var IconTechnologyCommandLine = function (props) {
|
|
|
1253
1518
|
};
|
|
1254
1519
|
var body = iconBodies[size];
|
|
1255
1520
|
if (!body) {
|
|
1256
|
-
throw Error("Icon \"technology-command-line\" is not available in size "
|
|
1521
|
+
throw Error("Icon \"technology-command-line\" is not available in size " + size);
|
|
1257
1522
|
}
|
|
1258
1523
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1259
1524
|
};
|
|
@@ -1264,7 +1529,7 @@ var IconTechnologyCypress = function (props) {
|
|
|
1264
1529
|
};
|
|
1265
1530
|
var body = iconBodies[size];
|
|
1266
1531
|
if (!body) {
|
|
1267
|
-
throw Error("Icon \"technology-cypress\" is not available in size "
|
|
1532
|
+
throw Error("Icon \"technology-cypress\" is not available in size " + size);
|
|
1268
1533
|
}
|
|
1269
1534
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1270
1535
|
};
|
|
@@ -1275,7 +1540,7 @@ var IconTechnologyDashboardCheckmark = function (props) {
|
|
|
1275
1540
|
};
|
|
1276
1541
|
var body = iconBodies[size];
|
|
1277
1542
|
if (!body) {
|
|
1278
|
-
throw Error("Icon \"technology-dashboard-checkmark\" is not available in size "
|
|
1543
|
+
throw Error("Icon \"technology-dashboard-checkmark\" is not available in size " + size);
|
|
1279
1544
|
}
|
|
1280
1545
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1281
1546
|
};
|
|
@@ -1286,7 +1551,7 @@ var IconTechnologyDashboardFail = function (props) {
|
|
|
1286
1551
|
};
|
|
1287
1552
|
var body = iconBodies[size];
|
|
1288
1553
|
if (!body) {
|
|
1289
|
-
throw Error("Icon \"technology-dashboard-fail\" is not available in size "
|
|
1554
|
+
throw Error("Icon \"technology-dashboard-fail\" is not available in size " + size);
|
|
1290
1555
|
}
|
|
1291
1556
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1292
1557
|
};
|
|
@@ -1297,7 +1562,7 @@ var IconTechnologyDollar = function (props) {
|
|
|
1297
1562
|
};
|
|
1298
1563
|
var body = iconBodies[size];
|
|
1299
1564
|
if (!body) {
|
|
1300
|
-
throw Error("Icon \"technology-dollar\" is not available in size "
|
|
1565
|
+
throw Error("Icon \"technology-dollar\" is not available in size " + size);
|
|
1301
1566
|
}
|
|
1302
1567
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1303
1568
|
};
|
|
@@ -1308,7 +1573,7 @@ var IconTechnologyDragProject = function (props) {
|
|
|
1308
1573
|
};
|
|
1309
1574
|
var body = iconBodies[size];
|
|
1310
1575
|
if (!body) {
|
|
1311
|
-
throw Error("Icon \"technology-drag-project\" is not available in size "
|
|
1576
|
+
throw Error("Icon \"technology-drag-project\" is not available in size " + size);
|
|
1312
1577
|
}
|
|
1313
1578
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1314
1579
|
};
|
|
@@ -1319,7 +1584,7 @@ var IconTechnologyElementSelector = function (props) {
|
|
|
1319
1584
|
};
|
|
1320
1585
|
var body = iconBodies[size];
|
|
1321
1586
|
if (!body) {
|
|
1322
|
-
throw Error("Icon \"technology-element-selector\" is not available in size "
|
|
1587
|
+
throw Error("Icon \"technology-element-selector\" is not available in size " + size);
|
|
1323
1588
|
}
|
|
1324
1589
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1325
1590
|
};
|
|
@@ -1330,7 +1595,7 @@ var IconTechnologyImageScreenshot = function (props) {
|
|
|
1330
1595
|
};
|
|
1331
1596
|
var body = iconBodies[size];
|
|
1332
1597
|
if (!body) {
|
|
1333
|
-
throw Error("Icon \"technology-image-screenshot\" is not available in size "
|
|
1598
|
+
throw Error("Icon \"technology-image-screenshot\" is not available in size " + size);
|
|
1334
1599
|
}
|
|
1335
1600
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1336
1601
|
};
|
|
@@ -1343,7 +1608,7 @@ var IconTechnologyInfinityLoop = function (props) {
|
|
|
1343
1608
|
};
|
|
1344
1609
|
var body = iconBodies[size];
|
|
1345
1610
|
if (!body) {
|
|
1346
|
-
throw Error("Icon \"technology-infinity-loop\" is not available in size "
|
|
1611
|
+
throw Error("Icon \"technology-infinity-loop\" is not available in size " + size);
|
|
1347
1612
|
}
|
|
1348
1613
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1349
1614
|
};
|
|
@@ -1354,7 +1619,7 @@ var IconTechnologyLockedProject = function (props) {
|
|
|
1354
1619
|
};
|
|
1355
1620
|
var body = iconBodies[size];
|
|
1356
1621
|
if (!body) {
|
|
1357
|
-
throw Error("Icon \"technology-locked-project\" is not available in size "
|
|
1622
|
+
throw Error("Icon \"technology-locked-project\" is not available in size " + size);
|
|
1358
1623
|
}
|
|
1359
1624
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1360
1625
|
};
|
|
@@ -1365,7 +1630,7 @@ var IconTechnologyOctothorpe = function (props) {
|
|
|
1365
1630
|
};
|
|
1366
1631
|
var body = iconBodies[size];
|
|
1367
1632
|
if (!body) {
|
|
1368
|
-
throw Error("Icon \"technology-octothorpe\" is not available in size "
|
|
1633
|
+
throw Error("Icon \"technology-octothorpe\" is not available in size " + size);
|
|
1369
1634
|
}
|
|
1370
1635
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1371
1636
|
};
|
|
@@ -1376,7 +1641,7 @@ var IconTechnologyPullRequest = function (props) {
|
|
|
1376
1641
|
};
|
|
1377
1642
|
var body = iconBodies[size];
|
|
1378
1643
|
if (!body) {
|
|
1379
|
-
throw Error("Icon \"technology-pull-request\" is not available in size "
|
|
1644
|
+
throw Error("Icon \"technology-pull-request\" is not available in size " + size);
|
|
1380
1645
|
}
|
|
1381
1646
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1382
1647
|
};
|
|
@@ -1387,7 +1652,7 @@ var IconTechnologyServer = function (props) {
|
|
|
1387
1652
|
};
|
|
1388
1653
|
var body = iconBodies[size];
|
|
1389
1654
|
if (!body) {
|
|
1390
|
-
throw Error("Icon \"technology-server\" is not available in size "
|
|
1655
|
+
throw Error("Icon \"technology-server\" is not available in size " + size);
|
|
1391
1656
|
}
|
|
1392
1657
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1393
1658
|
};
|
|
@@ -1398,7 +1663,7 @@ var IconTechnologyTerminalLog = function (props) {
|
|
|
1398
1663
|
};
|
|
1399
1664
|
var body = iconBodies[size];
|
|
1400
1665
|
if (!body) {
|
|
1401
|
-
throw Error("Icon \"technology-terminal-log\" is not available in size "
|
|
1666
|
+
throw Error("Icon \"technology-terminal-log\" is not available in size " + size);
|
|
1402
1667
|
}
|
|
1403
1668
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1404
1669
|
};
|
|
@@ -1409,7 +1674,7 @@ var IconTechnologyTerminal = function (props) {
|
|
|
1409
1674
|
};
|
|
1410
1675
|
var body = iconBodies[size];
|
|
1411
1676
|
if (!body) {
|
|
1412
|
-
throw Error("Icon \"technology-terminal\" is not available in size "
|
|
1677
|
+
throw Error("Icon \"technology-terminal\" is not available in size " + size);
|
|
1413
1678
|
}
|
|
1414
1679
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1415
1680
|
};
|
|
@@ -1421,7 +1686,7 @@ var IconTechnologyTestResults = function (props) {
|
|
|
1421
1686
|
};
|
|
1422
1687
|
var body = iconBodies[size];
|
|
1423
1688
|
if (!body) {
|
|
1424
|
-
throw Error("Icon \"technology-test-results\" is not available in size "
|
|
1689
|
+
throw Error("Icon \"technology-test-results\" is not available in size " + size);
|
|
1425
1690
|
}
|
|
1426
1691
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1427
1692
|
};
|
|
@@ -1432,7 +1697,7 @@ var IconTestingTypeComponentSolid = function (props) {
|
|
|
1432
1697
|
};
|
|
1433
1698
|
var body = iconBodies[size];
|
|
1434
1699
|
if (!body) {
|
|
1435
|
-
throw Error("Icon \"testing-type-component-solid\" is not available in size "
|
|
1700
|
+
throw Error("Icon \"testing-type-component-solid\" is not available in size " + size);
|
|
1436
1701
|
}
|
|
1437
1702
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1438
1703
|
};
|
|
@@ -1445,7 +1710,7 @@ var IconTestingTypeComponent = function (props) {
|
|
|
1445
1710
|
};
|
|
1446
1711
|
var body = iconBodies[size];
|
|
1447
1712
|
if (!body) {
|
|
1448
|
-
throw Error("Icon \"testing-type-component\" is not available in size "
|
|
1713
|
+
throw Error("Icon \"testing-type-component\" is not available in size " + size);
|
|
1449
1714
|
}
|
|
1450
1715
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1451
1716
|
};
|
|
@@ -1457,7 +1722,7 @@ var IconTestingTypeE2ESolid = function (props) {
|
|
|
1457
1722
|
};
|
|
1458
1723
|
var body = iconBodies[size];
|
|
1459
1724
|
if (!body) {
|
|
1460
|
-
throw Error("Icon \"testing-type-e2e-solid\" is not available in size "
|
|
1725
|
+
throw Error("Icon \"testing-type-e2e-solid\" is not available in size " + size);
|
|
1461
1726
|
}
|
|
1462
1727
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1463
1728
|
};
|
|
@@ -1470,7 +1735,7 @@ var IconTestingTypeE2E = function (props) {
|
|
|
1470
1735
|
};
|
|
1471
1736
|
var body = iconBodies[size];
|
|
1472
1737
|
if (!body) {
|
|
1473
|
-
throw Error("Icon \"testing-type-e2e\" is not available in size "
|
|
1738
|
+
throw Error("Icon \"testing-type-e2e\" is not available in size " + size);
|
|
1474
1739
|
}
|
|
1475
1740
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1476
1741
|
};
|
|
@@ -1481,7 +1746,7 @@ var IconTimeStopwatch = function (props) {
|
|
|
1481
1746
|
};
|
|
1482
1747
|
var body = iconBodies[size];
|
|
1483
1748
|
if (!body) {
|
|
1484
|
-
throw Error("Icon \"time-stopwatch\" is not available in size "
|
|
1749
|
+
throw Error("Icon \"time-stopwatch\" is not available in size " + size);
|
|
1485
1750
|
}
|
|
1486
1751
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1487
1752
|
};
|
|
@@ -1492,7 +1757,7 @@ var IconUserGeneralOutline = function (props) {
|
|
|
1492
1757
|
};
|
|
1493
1758
|
var body = iconBodies[size];
|
|
1494
1759
|
if (!body) {
|
|
1495
|
-
throw Error("Icon \"user-general-outline\" is not available in size "
|
|
1760
|
+
throw Error("Icon \"user-general-outline\" is not available in size " + size);
|
|
1496
1761
|
}
|
|
1497
1762
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1498
1763
|
};
|
|
@@ -1503,7 +1768,7 @@ var IconUserGeneralSolid = function (props) {
|
|
|
1503
1768
|
};
|
|
1504
1769
|
var body = iconBodies[size];
|
|
1505
1770
|
if (!body) {
|
|
1506
|
-
throw Error("Icon \"user-general-solid\" is not available in size "
|
|
1771
|
+
throw Error("Icon \"user-general-solid\" is not available in size " + size);
|
|
1507
1772
|
}
|
|
1508
1773
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1509
1774
|
};
|
|
@@ -1514,7 +1779,7 @@ var IconViewList = function (props) {
|
|
|
1514
1779
|
};
|
|
1515
1780
|
var body = iconBodies[size];
|
|
1516
1781
|
if (!body) {
|
|
1517
|
-
throw Error("Icon \"view-list\" is not available in size "
|
|
1782
|
+
throw Error("Icon \"view-list\" is not available in size " + size);
|
|
1518
1783
|
}
|
|
1519
1784
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1520
1785
|
};
|
|
@@ -1525,7 +1790,7 @@ var IconViewTreeAlt = function (props) {
|
|
|
1525
1790
|
};
|
|
1526
1791
|
var body = iconBodies[size];
|
|
1527
1792
|
if (!body) {
|
|
1528
|
-
throw Error("Icon \"view-tree-alt\" is not available in size "
|
|
1793
|
+
throw Error("Icon \"view-tree-alt\" is not available in size " + size);
|
|
1529
1794
|
}
|
|
1530
1795
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1531
1796
|
};
|
|
@@ -1536,7 +1801,7 @@ var IconWarningCircle = function (props) {
|
|
|
1536
1801
|
};
|
|
1537
1802
|
var body = iconBodies[size];
|
|
1538
1803
|
if (!body) {
|
|
1539
|
-
throw Error("Icon \"warning-circle\" is not available in size "
|
|
1804
|
+
throw Error("Icon \"warning-circle\" is not available in size " + size);
|
|
1540
1805
|
}
|
|
1541
1806
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1542
1807
|
};
|
|
@@ -1547,10 +1812,12 @@ var IconWarning = function (props) {
|
|
|
1547
1812
|
};
|
|
1548
1813
|
var body = iconBodies[size];
|
|
1549
1814
|
if (!body) {
|
|
1550
|
-
throw Error("Icon \"warning\" is not available in size "
|
|
1815
|
+
throw Error("Icon \"warning\" is not available in size " + size);
|
|
1551
1816
|
}
|
|
1552
1817
|
return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1553
1818
|
};
|
|
1554
1819
|
|
|
1555
|
-
export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteXlarge, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown, IconArrowRight, IconArrowUp, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconDeviceLaptop, IconDocumentAdded, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderLight, IconObjectGear, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconSecurityKey, IconSecurityLockLocked, IconShapeLightningBolt, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewTreeAlt, IconWarning, IconWarningCircle, Icon as default };
|
|
1820
|
+
export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteXlarge, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown, IconArrowRight, IconArrowUp, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconDeviceLaptop, IconDocumentAdded, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderLight, IconObjectGear, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconSecurityKey, IconSecurityLockLocked, IconShapeLightningBolt, IconStatusCancelledOutline, IconStatusCancelledSimple, IconStatusCancelledSolid, IconStatusErroredOutline, IconStatusErroredSimple, IconStatusErroredSolid, IconStatusFailedOutline, IconStatusFailedSimple, IconStatusFailedSolid, IconStatusPassedOutline, IconStatusPassedSimple, IconStatusPassedSolid, IconStatusPendingOutline, IconStatusPendingSimple, IconStatusPlaceholderSimple, IconStatusPlaceholderSolid, IconStatusQueuedOutline, IconStatusQueuedSimple, IconStatusRunningOutline, IconStatusRunningSimple, IconStatusSkippedOutline, IconStatusSkippedSimple, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewTreeAlt, IconWarning, IconWarningCircle, compileReactIconProperties, Icon as default };
|
|
1821
|
+
/* <windicss-keep class=""> */
|
|
1822
|
+
|
|
1556
1823
|
//# sourceMappingURL=index.es.js.map
|