@cypress-design/react-icon 0.1.0 → 0.3.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 +56 -0
- package/Icon.stories.mdx +32 -2
- package/Icon.tsx +27 -24
- package/IconReact.cy.tsx +38 -0
- package/ReadMe.md +50 -7
- package/compileProperties.ts +12 -12
- package/dist/Icon.d.ts +2 -5
- package/dist/Icon.d.ts.map +1 -1
- package/dist/TreeShakableIcons.d.ts +15 -4
- package/dist/TreeShakableIcons.d.ts.map +1 -1
- package/dist/compileProperties.d.ts.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +185 -56
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +199 -59
- package/dist/index.umd.js.map +1 -1
- package/generate-icons.js +16 -16
- package/index.ts +6 -2
- package/package.json +3 -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
|
@@ -68,7 +68,13 @@ var Icon = function (props) {
|
|
|
68
68
|
return React__namespace.createElement('svg', compileReactIconProperties$1(iconsRegistry.compileIcon(props)));
|
|
69
69
|
};
|
|
70
70
|
var compileReactIconProperties$1 = function (_a) {
|
|
71
|
-
var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size; _a.
|
|
71
|
+
var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size; _a.interactiveColorsOnGroup; var attributes = __rest(_a, ["body", "compiledClasses", "size", "interactiveColorsOnGroup"]);
|
|
72
|
+
Object.keys(attributes).forEach(function (key) {
|
|
73
|
+
if (key.endsWith('Color')) {
|
|
74
|
+
// @ts-ignore
|
|
75
|
+
delete attributes[key];
|
|
76
|
+
}
|
|
77
|
+
});
|
|
72
78
|
var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
|
|
73
79
|
__html: body
|
|
74
80
|
} }, attributes);
|
|
@@ -128,6 +134,17 @@ var IconActionAddSmall = function (props) {
|
|
|
128
134
|
}
|
|
129
135
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
130
136
|
};
|
|
137
|
+
var IconActionAddXsmall = function (props) {
|
|
138
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
139
|
+
var iconBodies = {
|
|
140
|
+
"16": "<path d=\"M8 5v6m3-3H5\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
141
|
+
};
|
|
142
|
+
var body = iconBodies[size];
|
|
143
|
+
if (!body) {
|
|
144
|
+
throw Error("Icon \"action-add-xsmall\" is not available in size ".concat(size));
|
|
145
|
+
}
|
|
146
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
147
|
+
};
|
|
131
148
|
var IconActionAdd = function (props) {
|
|
132
149
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
133
150
|
var iconBodies = {
|
|
@@ -150,11 +167,43 @@ var IconActionDeleteCircle = function (props) {
|
|
|
150
167
|
}
|
|
151
168
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
152
169
|
};
|
|
170
|
+
var IconActionDeleteLarge = function (props) {
|
|
171
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
172
|
+
var iconBodies = {
|
|
173
|
+
"16": "<path d=\"M3 13 13 3M3 3l10 10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
174
|
+
};
|
|
175
|
+
var body = iconBodies[size];
|
|
176
|
+
if (!body) {
|
|
177
|
+
throw Error("Icon \"action-delete-large\" is not available in size ".concat(size));
|
|
178
|
+
}
|
|
179
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
180
|
+
};
|
|
181
|
+
var IconActionDeleteMedium = function (props) {
|
|
182
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
183
|
+
var iconBodies = {
|
|
184
|
+
"16": "<path d=\"m4 12 8-8M4 4l8 8\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
185
|
+
};
|
|
186
|
+
var body = iconBodies[size];
|
|
187
|
+
if (!body) {
|
|
188
|
+
throw Error("Icon \"action-delete-medium\" is not available in size ".concat(size));
|
|
189
|
+
}
|
|
190
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
191
|
+
};
|
|
192
|
+
var IconActionDeleteXlarge = function (props) {
|
|
193
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
194
|
+
var iconBodies = {
|
|
195
|
+
"16": "<path d=\"M2 14 14 2M2 2l12 12\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
196
|
+
};
|
|
197
|
+
var body = iconBodies[size];
|
|
198
|
+
if (!body) {
|
|
199
|
+
throw Error("Icon \"action-delete-xlarge\" is not available in size ".concat(size));
|
|
200
|
+
}
|
|
201
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
202
|
+
};
|
|
153
203
|
var IconActionDelete = function (props) {
|
|
154
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12"
|
|
204
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
155
205
|
var iconBodies = {
|
|
156
|
-
"12": "<path d=\"M1 11 11 1M1 1l10 10\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
157
|
-
"16": "<path d=\"M3 13 13 3M3 3l10 10\" class=\"icon-dark\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
|
|
206
|
+
"12": "<path d=\"M1 11 11 1M1 1l10 10\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
158
207
|
};
|
|
159
208
|
var body = iconBodies[size];
|
|
160
209
|
if (!body) {
|
|
@@ -162,6 +211,17 @@ var IconActionDelete = function (props) {
|
|
|
162
211
|
}
|
|
163
212
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
164
213
|
};
|
|
214
|
+
var IconActionDisableCircleSolid = function (props) {
|
|
215
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
216
|
+
var iconBodies = {
|
|
217
|
+
"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\"/>"
|
|
218
|
+
};
|
|
219
|
+
var body = iconBodies[size];
|
|
220
|
+
if (!body) {
|
|
221
|
+
throw Error("Icon \"action-disable-circle-solid\" is not available in size ".concat(size));
|
|
222
|
+
}
|
|
223
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
224
|
+
};
|
|
165
225
|
var IconActionExport = function (props) {
|
|
166
226
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
167
227
|
var iconBodies = {
|
|
@@ -349,17 +409,6 @@ var IconArrowOutlineDown = function (props) {
|
|
|
349
409
|
}
|
|
350
410
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
351
411
|
};
|
|
352
|
-
var IconArrowOutlineRight = function (props) {
|
|
353
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
354
|
-
var iconBodies = {
|
|
355
|
-
"16": "<path d=\"m9 12 4-4m0 0L9 4m4 4H3\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
|
|
356
|
-
};
|
|
357
|
-
var body = iconBodies[size];
|
|
358
|
-
if (!body) {
|
|
359
|
-
throw Error("Icon \"arrow-outline-right\" is not available in size ".concat(size));
|
|
360
|
-
}
|
|
361
|
-
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
362
|
-
};
|
|
363
412
|
var IconArrowRight = function (props) {
|
|
364
413
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
365
414
|
var iconBodies = {
|
|
@@ -393,6 +442,17 @@ var IconCheckmarkOutline = function (props) {
|
|
|
393
442
|
}
|
|
394
443
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
395
444
|
};
|
|
445
|
+
var IconCheckmarkSmall = function (props) {
|
|
446
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
447
|
+
var iconBodies = {
|
|
448
|
+
"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\"/>"
|
|
449
|
+
};
|
|
450
|
+
var body = iconBodies[size];
|
|
451
|
+
if (!body) {
|
|
452
|
+
throw Error("Icon \"checkmark-small\" is not available in size ".concat(size));
|
|
453
|
+
}
|
|
454
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
455
|
+
};
|
|
396
456
|
var IconCheckmarkSolid = function (props) {
|
|
397
457
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
398
458
|
var iconBodies = {
|
|
@@ -517,17 +577,6 @@ var IconChevronRightSmall = function (props) {
|
|
|
517
577
|
}
|
|
518
578
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
519
579
|
};
|
|
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));
|
|
528
|
-
}
|
|
529
|
-
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
530
|
-
};
|
|
531
580
|
var IconChevronUpDouble = function (props) {
|
|
532
581
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
533
582
|
var iconBodies = {
|
|
@@ -598,8 +647,9 @@ var IconDocumentBlank = function (props) {
|
|
|
598
647
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
599
648
|
};
|
|
600
649
|
var IconDocumentCode = function (props) {
|
|
601
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
650
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
602
651
|
var iconBodies = {
|
|
652
|
+
"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
653
|
"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
654
|
};
|
|
605
655
|
var body = iconBodies[size];
|
|
@@ -902,13 +952,11 @@ var IconGeneralOfficeBuilding = function (props) {
|
|
|
902
952
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
903
953
|
};
|
|
904
954
|
var IconGeneralPlaceholder = function (props) {
|
|
905
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24", "
|
|
955
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
906
956
|
var iconBodies = {
|
|
907
957
|
"12": "<path d=\"M9.55 2.45c1.933 1.934 1.933 5.166 0 7.1-1.934 1.933-5.166 1.933-7.1 0-1.933-1.934-1.933-5.166 0-7.1 1.934-1.933 5.166-1.933 7.1 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m6 6 3.55-3.55M6 6 2.45 2.45M6 6l3.55 3.55M6 6 2.45 9.55m7.1-7.1c1.933 1.934 1.933 5.166 0 7.1m0-7.1C7.616.517 4.384.517 2.45 2.45m0 0c-1.933 1.934-1.933 5.166 0 7.1m7.1 0c-1.934 1.933-5.166 1.933-7.1 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
|
|
908
958
|
"16": "<path d=\"M12.97 3.03c2.707 2.708 2.707 7.232 0 9.94-2.708 2.707-7.232 2.707-9.94 0-2.707-2.708-2.707-7.232 0-9.94 2.708-2.707 7.232-2.707 9.94 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m8 8 4.97-4.97M8 8 3.03 3.03M8 8l4.97 4.97M8 8l-4.97 4.97m9.94-9.94c2.707 2.708 2.707 7.232 0 9.94m0-9.94C10.261.324 5.737.324 3.03 3.03m0 0c-2.707 2.708-2.707 7.232 0 9.94m9.94 0c-2.708 2.707-7.232 2.707-9.94 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
|
|
909
959
|
"24": "<path d=\"M19.1 4.9c3.867 3.869 3.867 10.332 0 14.2-3.869 3.867-10.331 3.867-14.2 0-3.867-3.869-3.867-10.331 0-14.2 3.869-3.867 10.332-3.867 14.2 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m12 12 7.1-7.1M12 12 4.9 4.9M12 12l7.1 7.1M12 12l-7.1 7.1M19.1 4.9c3.867 3.869 3.867 10.332 0 14.2m0-14.2C15.23 1.034 8.768 1.034 4.9 4.9m0 0c-3.867 3.869-3.867 10.332 0 14.2m14.2 0c-3.869 3.867-10.331 3.867-14.2 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
|
|
910
|
-
"32": "<path d=\"M25.229 6.771c5.028 5.028 5.028 13.43 0 18.458-5.028 5.028-13.43 5.028-18.458 0-5.028-5.028-5.028-13.43 0-18.458 5.028-5.028 13.43-5.028 18.458 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m16 16 9.229-9.229M16 16 6.771 6.771M16 16l9.229 9.229M16 16l-9.229 9.229M25.229 6.771c5.028 5.028 5.028 13.43 0 18.458m0-18.458c-5.028-5.028-13.43-5.028-18.458 0m0 0c-5.028 5.028-5.028 13.43 0 18.458m18.458 0c-5.028 5.028-13.43 5.028-18.458 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
|
|
911
|
-
"40": "<path d=\"M32.069 7.931c6.575 6.576 6.575 17.563 0 24.138-6.576 6.575-17.563 6.575-24.138 0-6.575-6.576-6.575-17.563 0-24.138 6.576-6.575 17.563-6.575 24.138 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M20 20 32.069 7.931M20 20 7.931 7.931M20 20l12.069 12.069M20 20 7.931 32.069M32.07 7.93c6.575 6.576 6.575 17.563 0 24.138m0-24.138c-6.576-6.575-17.563-6.575-24.138 0m0 0c-6.575 6.576-6.575 17.563 0 24.138m24.138 0c-6.576 6.575-17.563 6.575-24.138 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
|
|
912
960
|
"48": "<path d=\"M38.198 9.802c7.736 7.735 7.736 20.66 0 28.396-7.735 7.736-20.66 7.736-28.396 0-7.736-7.735-7.736-20.66 0-28.396 7.735-7.736 20.66-7.736 28.396 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M24 24 38.198 9.802M24 24 9.802 9.802M24 24l14.198 14.198M24 24 9.802 38.198M38.198 9.802c7.736 7.735 7.736 20.66 0 28.396m0-28.396c-7.735-7.736-20.66-7.736-28.396 0m0 0c-7.736 7.735-7.736 20.66 0 28.396m28.396 0c-7.735 7.736-20.66 7.736-28.396 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>"
|
|
913
961
|
};
|
|
914
962
|
var body = iconBodies[size];
|
|
@@ -1020,6 +1068,17 @@ var IconObjectBox = function (props) {
|
|
|
1020
1068
|
}
|
|
1021
1069
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1022
1070
|
};
|
|
1071
|
+
var IconObjectBriefcase = function (props) {
|
|
1072
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1073
|
+
var iconBodies = {
|
|
1074
|
+
"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\"/>"
|
|
1075
|
+
};
|
|
1076
|
+
var body = iconBodies[size];
|
|
1077
|
+
if (!body) {
|
|
1078
|
+
throw Error("Icon \"object-briefcase\" is not available in size ".concat(size));
|
|
1079
|
+
}
|
|
1080
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1081
|
+
};
|
|
1023
1082
|
var IconObjectChainLink = function (props) {
|
|
1024
1083
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1025
1084
|
var iconBodies = {
|
|
@@ -1133,9 +1192,10 @@ var IconObjectRuler = function (props) {
|
|
|
1133
1192
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1134
1193
|
};
|
|
1135
1194
|
var IconSecurityKey = function (props) {
|
|
1136
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1195
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1137
1196
|
var iconBodies = {
|
|
1138
|
-
"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\"/>"
|
|
1197
|
+
"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\"/>",
|
|
1198
|
+
"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\"/>"
|
|
1139
1199
|
};
|
|
1140
1200
|
var body = iconBodies[size];
|
|
1141
1201
|
if (!body) {
|
|
@@ -1143,6 +1203,17 @@ var IconSecurityKey = function (props) {
|
|
|
1143
1203
|
}
|
|
1144
1204
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1145
1205
|
};
|
|
1206
|
+
var IconSecurityLockLocked = function (props) {
|
|
1207
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1208
|
+
var iconBodies = {
|
|
1209
|
+
"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\"/>"
|
|
1210
|
+
};
|
|
1211
|
+
var body = iconBodies[size];
|
|
1212
|
+
if (!body) {
|
|
1213
|
+
throw Error("Icon \"security-lock-locked\" is not available in size ".concat(size));
|
|
1214
|
+
}
|
|
1215
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1216
|
+
};
|
|
1146
1217
|
var IconShapeLightningBolt = function (props) {
|
|
1147
1218
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1148
1219
|
var iconBodies = {
|
|
@@ -1154,6 +1225,17 @@ var IconShapeLightningBolt = function (props) {
|
|
|
1154
1225
|
}
|
|
1155
1226
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1156
1227
|
};
|
|
1228
|
+
var IconTechnologyBranchHTall = function (props) {
|
|
1229
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1230
|
+
var iconBodies = {
|
|
1231
|
+
"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\"/>"
|
|
1232
|
+
};
|
|
1233
|
+
var body = iconBodies[size];
|
|
1234
|
+
if (!body) {
|
|
1235
|
+
throw Error("Icon \"technology-branch-h-tall\" is not available in size ".concat(size));
|
|
1236
|
+
}
|
|
1237
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1238
|
+
};
|
|
1157
1239
|
var IconTechnologyBranchH = function (props) {
|
|
1158
1240
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1159
1241
|
var iconBodies = {
|
|
@@ -1165,6 +1247,17 @@ var IconTechnologyBranchH = function (props) {
|
|
|
1165
1247
|
}
|
|
1166
1248
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1167
1249
|
};
|
|
1250
|
+
var IconTechnologyBrowserTesting2 = function (props) {
|
|
1251
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1252
|
+
var iconBodies = {
|
|
1253
|
+
"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\"/>"
|
|
1254
|
+
};
|
|
1255
|
+
var body = iconBodies[size];
|
|
1256
|
+
if (!body) {
|
|
1257
|
+
throw Error("Icon \"technology-browser-testing-2\" is not available in size ".concat(size));
|
|
1258
|
+
}
|
|
1259
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1260
|
+
};
|
|
1168
1261
|
var IconTechnologyCodeEditor = function (props) {
|
|
1169
1262
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1170
1263
|
var iconBodies = {
|
|
@@ -1254,10 +1347,23 @@ var IconTechnologyElementSelector = function (props) {
|
|
|
1254
1347
|
}
|
|
1255
1348
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1256
1349
|
};
|
|
1350
|
+
var IconTechnologyImageScreenshot = function (props) {
|
|
1351
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1352
|
+
var iconBodies = {
|
|
1353
|
+
"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\"/>"
|
|
1354
|
+
};
|
|
1355
|
+
var body = iconBodies[size];
|
|
1356
|
+
if (!body) {
|
|
1357
|
+
throw Error("Icon \"technology-image-screenshot\" is not available in size ".concat(size));
|
|
1358
|
+
}
|
|
1359
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1360
|
+
};
|
|
1257
1361
|
var IconTechnologyInfinityLoop = function (props) {
|
|
1258
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["20"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1362
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "20", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1259
1363
|
var iconBodies = {
|
|
1260
|
-
"
|
|
1364
|
+
"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\"/>",
|
|
1365
|
+
"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\"/>",
|
|
1366
|
+
"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\"/>"
|
|
1261
1367
|
};
|
|
1262
1368
|
var body = iconBodies[size];
|
|
1263
1369
|
if (!body) {
|
|
@@ -1287,6 +1393,39 @@ var IconTechnologyOctothorpe = function (props) {
|
|
|
1287
1393
|
}
|
|
1288
1394
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1289
1395
|
};
|
|
1396
|
+
var IconTechnologyPullRequest = function (props) {
|
|
1397
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1398
|
+
var iconBodies = {
|
|
1399
|
+
"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\"/>"
|
|
1400
|
+
};
|
|
1401
|
+
var body = iconBodies[size];
|
|
1402
|
+
if (!body) {
|
|
1403
|
+
throw Error("Icon \"technology-pull-request\" is not available in size ".concat(size));
|
|
1404
|
+
}
|
|
1405
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1406
|
+
};
|
|
1407
|
+
var IconTechnologyServer = function (props) {
|
|
1408
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1409
|
+
var iconBodies = {
|
|
1410
|
+
"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\"/>"
|
|
1411
|
+
};
|
|
1412
|
+
var body = iconBodies[size];
|
|
1413
|
+
if (!body) {
|
|
1414
|
+
throw Error("Icon \"technology-server\" is not available in size ".concat(size));
|
|
1415
|
+
}
|
|
1416
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1417
|
+
};
|
|
1418
|
+
var IconTechnologyTerminalLog = function (props) {
|
|
1419
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1420
|
+
var iconBodies = {
|
|
1421
|
+
"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\"/>"
|
|
1422
|
+
};
|
|
1423
|
+
var body = iconBodies[size];
|
|
1424
|
+
if (!body) {
|
|
1425
|
+
throw Error("Icon \"technology-terminal-log\" is not available in size ".concat(size));
|
|
1426
|
+
}
|
|
1427
|
+
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1428
|
+
};
|
|
1290
1429
|
var IconTechnologyTerminal = function (props) {
|
|
1291
1430
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1292
1431
|
var iconBodies = {
|
|
@@ -1334,20 +1473,10 @@ var IconTestingTypeComponent = function (props) {
|
|
|
1334
1473
|
}
|
|
1335
1474
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1336
1475
|
};
|
|
1337
|
-
var IconTestingTypeE2ESolidSimple = function (props) {
|
|
1338
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1339
|
-
var iconBodies = {
|
|
1340
|
-
"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\"/>"
|
|
1341
|
-
};
|
|
1342
|
-
var body = iconBodies[size];
|
|
1343
|
-
if (!body) {
|
|
1344
|
-
throw Error("Icon \"testing-type-e2e-solid-simple\" is not available in size ".concat(size));
|
|
1345
|
-
}
|
|
1346
|
-
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1347
|
-
};
|
|
1348
1476
|
var IconTestingTypeE2ESolid = function (props) {
|
|
1349
|
-
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1477
|
+
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24", "64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1350
1478
|
var iconBodies = {
|
|
1479
|
+
"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\"/>",
|
|
1351
1480
|
"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\"/>"
|
|
1352
1481
|
};
|
|
1353
1482
|
var body = iconBodies[size];
|
|
@@ -1369,36 +1498,36 @@ var IconTestingTypeE2E = function (props) {
|
|
|
1369
1498
|
}
|
|
1370
1499
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1371
1500
|
};
|
|
1372
|
-
var
|
|
1501
|
+
var IconTimeStopwatch = function (props) {
|
|
1373
1502
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1374
1503
|
var iconBodies = {
|
|
1375
|
-
"16": "<path d=\"
|
|
1504
|
+
"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\"/>"
|
|
1376
1505
|
};
|
|
1377
1506
|
var body = iconBodies[size];
|
|
1378
1507
|
if (!body) {
|
|
1379
|
-
throw Error("Icon \"
|
|
1508
|
+
throw Error("Icon \"time-stopwatch\" is not available in size ".concat(size));
|
|
1380
1509
|
}
|
|
1381
1510
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1382
1511
|
};
|
|
1383
|
-
var
|
|
1512
|
+
var IconUserGeneralOutline = function (props) {
|
|
1384
1513
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1385
1514
|
var iconBodies = {
|
|
1386
|
-
"16": "<path d=\"M8
|
|
1515
|
+
"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\"/>"
|
|
1387
1516
|
};
|
|
1388
1517
|
var body = iconBodies[size];
|
|
1389
1518
|
if (!body) {
|
|
1390
|
-
throw Error("Icon \"user-general-
|
|
1519
|
+
throw Error("Icon \"user-general-outline\" is not available in size ".concat(size));
|
|
1391
1520
|
}
|
|
1392
1521
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1393
1522
|
};
|
|
1394
|
-
var
|
|
1523
|
+
var IconUserGeneralSolid = function (props) {
|
|
1395
1524
|
var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
|
|
1396
1525
|
var iconBodies = {
|
|
1397
|
-
"16": "<path d=\"M8
|
|
1526
|
+
"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\"/>"
|
|
1398
1527
|
};
|
|
1399
1528
|
var body = iconBodies[size];
|
|
1400
1529
|
if (!body) {
|
|
1401
|
-
throw Error("Icon \"user-
|
|
1530
|
+
throw Error("Icon \"user-general-solid\" is not available in size ".concat(size));
|
|
1402
1531
|
}
|
|
1403
1532
|
return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
|
|
1404
1533
|
};
|
|
@@ -1451,8 +1580,13 @@ exports.IconActionAdd = IconActionAdd;
|
|
|
1451
1580
|
exports.IconActionAddLarge = IconActionAddLarge;
|
|
1452
1581
|
exports.IconActionAddMedium = IconActionAddMedium;
|
|
1453
1582
|
exports.IconActionAddSmall = IconActionAddSmall;
|
|
1583
|
+
exports.IconActionAddXsmall = IconActionAddXsmall;
|
|
1454
1584
|
exports.IconActionDelete = IconActionDelete;
|
|
1455
1585
|
exports.IconActionDeleteCircle = IconActionDeleteCircle;
|
|
1586
|
+
exports.IconActionDeleteLarge = IconActionDeleteLarge;
|
|
1587
|
+
exports.IconActionDeleteMedium = IconActionDeleteMedium;
|
|
1588
|
+
exports.IconActionDeleteXlarge = IconActionDeleteXlarge;
|
|
1589
|
+
exports.IconActionDisableCircleSolid = IconActionDisableCircleSolid;
|
|
1456
1590
|
exports.IconActionExport = IconActionExport;
|
|
1457
1591
|
exports.IconActionNext = IconActionNext;
|
|
1458
1592
|
exports.IconActionPlayLarge = IconActionPlayLarge;
|
|
@@ -1470,11 +1604,11 @@ exports.IconArrowDown = IconArrowDown;
|
|
|
1470
1604
|
exports.IconArrowExpand = IconArrowExpand;
|
|
1471
1605
|
exports.IconArrowLeft = IconArrowLeft;
|
|
1472
1606
|
exports.IconArrowOutlineDown = IconArrowOutlineDown;
|
|
1473
|
-
exports.IconArrowOutlineRight = IconArrowOutlineRight;
|
|
1474
1607
|
exports.IconArrowRight = IconArrowRight;
|
|
1475
1608
|
exports.IconArrowUp = IconArrowUp;
|
|
1476
1609
|
exports.IconCheckmark = IconCheckmark;
|
|
1477
1610
|
exports.IconCheckmarkOutline = IconCheckmarkOutline;
|
|
1611
|
+
exports.IconCheckmarkSmall = IconCheckmarkSmall;
|
|
1478
1612
|
exports.IconCheckmarkSolid = IconCheckmarkSolid;
|
|
1479
1613
|
exports.IconChevronDownDouble = IconChevronDownDouble;
|
|
1480
1614
|
exports.IconChevronDownLarge = IconChevronDownLarge;
|
|
@@ -1482,7 +1616,6 @@ exports.IconChevronDownSmall = IconChevronDownSmall;
|
|
|
1482
1616
|
exports.IconChevronLeftDouble = IconChevronLeftDouble;
|
|
1483
1617
|
exports.IconChevronLeftLarge = IconChevronLeftLarge;
|
|
1484
1618
|
exports.IconChevronLeftSmall = IconChevronLeftSmall;
|
|
1485
|
-
exports.IconChevronRight = IconChevronRight;
|
|
1486
1619
|
exports.IconChevronRightDouble = IconChevronRightDouble;
|
|
1487
1620
|
exports.IconChevronRightLarge = IconChevronRightLarge;
|
|
1488
1621
|
exports.IconChevronRightSmall = IconChevronRightSmall;
|
|
@@ -1529,6 +1662,7 @@ exports.IconObjectBookCode = IconObjectBookCode;
|
|
|
1529
1662
|
exports.IconObjectBookmark = IconObjectBookmark;
|
|
1530
1663
|
exports.IconObjectBox = IconObjectBox;
|
|
1531
1664
|
exports.IconObjectBoxOpen = IconObjectBoxOpen;
|
|
1665
|
+
exports.IconObjectBriefcase = IconObjectBriefcase;
|
|
1532
1666
|
exports.IconObjectChainLink = IconObjectChainLink;
|
|
1533
1667
|
exports.IconObjectFolderDark = IconObjectFolderDark;
|
|
1534
1668
|
exports.IconObjectFolderLight = IconObjectFolderLight;
|
|
@@ -1540,8 +1674,11 @@ exports.IconObjectPaperAirplane = IconObjectPaperAirplane;
|
|
|
1540
1674
|
exports.IconObjectPinModern = IconObjectPinModern;
|
|
1541
1675
|
exports.IconObjectRuler = IconObjectRuler;
|
|
1542
1676
|
exports.IconSecurityKey = IconSecurityKey;
|
|
1677
|
+
exports.IconSecurityLockLocked = IconSecurityLockLocked;
|
|
1543
1678
|
exports.IconShapeLightningBolt = IconShapeLightningBolt;
|
|
1544
1679
|
exports.IconTechnologyBranchH = IconTechnologyBranchH;
|
|
1680
|
+
exports.IconTechnologyBranchHTall = IconTechnologyBranchHTall;
|
|
1681
|
+
exports.IconTechnologyBrowserTesting2 = IconTechnologyBrowserTesting2;
|
|
1545
1682
|
exports.IconTechnologyCodeEditor = IconTechnologyCodeEditor;
|
|
1546
1683
|
exports.IconTechnologyCommandLine = IconTechnologyCommandLine;
|
|
1547
1684
|
exports.IconTechnologyCypress = IconTechnologyCypress;
|
|
@@ -1550,19 +1687,22 @@ exports.IconTechnologyDashboardFail = IconTechnologyDashboardFail;
|
|
|
1550
1687
|
exports.IconTechnologyDollar = IconTechnologyDollar;
|
|
1551
1688
|
exports.IconTechnologyDragProject = IconTechnologyDragProject;
|
|
1552
1689
|
exports.IconTechnologyElementSelector = IconTechnologyElementSelector;
|
|
1690
|
+
exports.IconTechnologyImageScreenshot = IconTechnologyImageScreenshot;
|
|
1553
1691
|
exports.IconTechnologyInfinityLoop = IconTechnologyInfinityLoop;
|
|
1554
1692
|
exports.IconTechnologyLockedProject = IconTechnologyLockedProject;
|
|
1555
1693
|
exports.IconTechnologyOctothorpe = IconTechnologyOctothorpe;
|
|
1694
|
+
exports.IconTechnologyPullRequest = IconTechnologyPullRequest;
|
|
1695
|
+
exports.IconTechnologyServer = IconTechnologyServer;
|
|
1556
1696
|
exports.IconTechnologyTerminal = IconTechnologyTerminal;
|
|
1697
|
+
exports.IconTechnologyTerminalLog = IconTechnologyTerminalLog;
|
|
1557
1698
|
exports.IconTechnologyTestResults = IconTechnologyTestResults;
|
|
1558
1699
|
exports.IconTestingTypeComponent = IconTestingTypeComponent;
|
|
1559
1700
|
exports.IconTestingTypeComponentSolid = IconTestingTypeComponentSolid;
|
|
1560
1701
|
exports.IconTestingTypeE2E = IconTestingTypeE2E;
|
|
1561
1702
|
exports.IconTestingTypeE2ESolid = IconTestingTypeE2ESolid;
|
|
1562
|
-
exports.
|
|
1703
|
+
exports.IconTimeStopwatch = IconTimeStopwatch;
|
|
1563
1704
|
exports.IconUserGeneralOutline = IconUserGeneralOutline;
|
|
1564
1705
|
exports.IconUserGeneralSolid = IconUserGeneralSolid;
|
|
1565
|
-
exports.IconUserOutline = IconUserOutline;
|
|
1566
1706
|
exports.IconViewList = IconViewList;
|
|
1567
1707
|
exports.IconViewTreeAlt = IconViewTreeAlt;
|
|
1568
1708
|
exports.IconWarning = IconWarning;
|