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