@cypress-design/react-icon 0.3.0 → 0.4.2

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.
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import * as iconsRegistry from '@cypress-design/icon-registry';
3
- import { compileIcon } from '@cypress-design/icon-registry';
3
+ import { ICON_COLOR_PROP_NAMES, compileIcon } from '@cypress-design/icon-registry';
4
4
 
5
5
  /******************************************************************************
6
6
  Copyright (c) Microsoft Corporation.
@@ -40,20 +40,18 @@ function __rest(s, e) {
40
40
  return t;
41
41
  }
42
42
 
43
- var Icon = function (props) {
44
- return React.createElement('svg', compileReactIconProperties$1(compileIcon(props)));
45
- };
46
- var compileReactIconProperties$1 = function (_a) {
47
- var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size; _a.interactiveColorsOnGroup; var attributes = __rest(_a, ["body", "compiledClasses", "size", "interactiveColorsOnGroup"]);
48
- Object.keys(attributes).forEach(function (key) {
49
- if (key.endsWith('Color')) {
50
- // @ts-ignore
51
- delete attributes[key];
43
+ var compileReactIconProperties = function (_a) {
44
+ var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size, attributes = __rest(_a, ["body", "compiledClasses", "size"]);
45
+ var filteredAttributes = Object.keys(attributes).reduce(function (newAttributes, attrName) {
46
+ if (!ICON_COLOR_PROP_NAMES.includes(attrName)) {
47
+ newAttributes[attrName] =
48
+ attributes[attrName];
52
49
  }
53
- });
50
+ return newAttributes;
51
+ }, {});
54
52
  var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
55
53
  __html: body
56
- } }, attributes);
54
+ } }, filteredAttributes);
57
55
  if (attributes.className) {
58
56
  compiledClasses.push(attributes.className);
59
57
  }
@@ -63,50 +61,40 @@ var compileReactIconProperties$1 = function (_a) {
63
61
  return componentProps;
64
62
  };
65
63
 
66
- var compileReactIconProperties = function (_a) {
67
- var body = _a.body, compiledClasses = _a.compiledClasses, size = _a.size; _a.strokeColor; _a.fillColor; _a.secondaryStrokeColor; _a.secondaryFillColor; var attributes = __rest(_a, ["body", "compiledClasses", "size", "strokeColor", "fillColor", "secondaryStrokeColor", "secondaryFillColor"]);
68
- var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
69
- __html: body
70
- } }, attributes);
71
- if (attributes.className) {
72
- compiledClasses.push(attributes.className);
73
- }
74
- if (compiledClasses.length) {
75
- componentProps.className = compiledClasses.join(' ');
76
- }
77
- return componentProps;
64
+ var Icon = function (props) {
65
+ return React.createElement('svg', compileReactIconProperties(compileIcon(props)));
78
66
  };
79
67
 
80
68
  var IconActionAddLarge = function (props) {
81
69
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
82
70
  var iconBodies = {
83
- "16": "<path d=\"M2 8h6m6 0H8m0 0V2m0 6v6\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
71
+ "16": "<path d=\"M2 8h6m6 0H8m0 0V2m0 6v6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
84
72
  };
85
73
  var body = iconBodies[size];
86
74
  if (!body) {
87
- throw Error("Icon \"action-add-large\" is not available in size ".concat(size));
75
+ throw Error("Icon \"action-add-large\" is not available in size " + size);
88
76
  }
89
77
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
90
78
  };
91
79
  var IconActionAddMedium = function (props) {
92
80
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
93
81
  var iconBodies = {
94
- "16": "<path d=\"M8 3v10m5-5H3\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
82
+ "16": "<path d=\"M8 3v10m5-5H3\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
95
83
  };
96
84
  var body = iconBodies[size];
97
85
  if (!body) {
98
- throw Error("Icon \"action-add-medium\" is not available in size ".concat(size));
86
+ throw Error("Icon \"action-add-medium\" is not available in size " + size);
99
87
  }
100
88
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
101
89
  };
102
90
  var IconActionAddSmall = function (props) {
103
91
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
104
92
  var iconBodies = {
105
- "16": "<path d=\"M8 4v8m4-4H4\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
93
+ "16": "<path d=\"M8 4v8m4-4H4\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
106
94
  };
107
95
  var body = iconBodies[size];
108
96
  if (!body) {
109
- throw Error("Icon \"action-add-small\" is not available in size ".concat(size));
97
+ throw Error("Icon \"action-add-small\" is not available in size " + size);
110
98
  }
111
99
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
112
100
  };
@@ -117,18 +105,18 @@ var IconActionAddXsmall = function (props) {
117
105
  };
118
106
  var body = iconBodies[size];
119
107
  if (!body) {
120
- throw Error("Icon \"action-add-xsmall\" is not available in size ".concat(size));
108
+ throw Error("Icon \"action-add-xsmall\" is not available in size " + size);
121
109
  }
122
110
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
123
111
  };
124
112
  var IconActionAdd = function (props) {
125
113
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
126
114
  var iconBodies = {
127
- "8": "<path d=\"M4 1v6m3-3H1\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
115
+ "8": "<path d=\"M4 1v6m3-3H1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
128
116
  };
129
117
  var body = iconBodies[size];
130
118
  if (!body) {
131
- throw Error("Icon \"action-add\" is not available in size ".concat(size));
119
+ throw Error("Icon \"action-add\" is not available in size " + size);
132
120
  }
133
121
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
134
122
  };
@@ -139,7 +127,7 @@ var IconActionDeleteCircle = function (props) {
139
127
  };
140
128
  var body = iconBodies[size];
141
129
  if (!body) {
142
- throw Error("Icon \"action-delete-circle\" is not available in size ".concat(size));
130
+ throw Error("Icon \"action-delete-circle\" is not available in size " + size);
143
131
  }
144
132
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
145
133
  };
@@ -150,7 +138,7 @@ var IconActionDeleteLarge = function (props) {
150
138
  };
151
139
  var body = iconBodies[size];
152
140
  if (!body) {
153
- throw Error("Icon \"action-delete-large\" is not available in size ".concat(size));
141
+ throw Error("Icon \"action-delete-large\" is not available in size " + size);
154
142
  }
155
143
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
156
144
  };
@@ -161,7 +149,7 @@ var IconActionDeleteMedium = function (props) {
161
149
  };
162
150
  var body = iconBodies[size];
163
151
  if (!body) {
164
- throw Error("Icon \"action-delete-medium\" is not available in size ".concat(size));
152
+ throw Error("Icon \"action-delete-medium\" is not available in size " + size);
165
153
  }
166
154
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
167
155
  };
@@ -172,18 +160,18 @@ var IconActionDeleteXlarge = function (props) {
172
160
  };
173
161
  var body = iconBodies[size];
174
162
  if (!body) {
175
- throw Error("Icon \"action-delete-xlarge\" is not available in size ".concat(size));
163
+ throw Error("Icon \"action-delete-xlarge\" is not available in size " + size);
176
164
  }
177
165
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
178
166
  };
179
167
  var IconActionDelete = function (props) {
180
168
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
181
169
  var iconBodies = {
182
- "12": "<path d=\"M1 11 11 1M1 1l10 10\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
170
+ "12": "<path d=\"M1 11 11 1M1 1l10 10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
183
171
  };
184
172
  var body = iconBodies[size];
185
173
  if (!body) {
186
- throw Error("Icon \"action-delete\" is not available in size ".concat(size));
174
+ throw Error("Icon \"action-delete\" is not available in size " + size);
187
175
  }
188
176
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
189
177
  };
@@ -194,84 +182,84 @@ var IconActionDisableCircleSolid = function (props) {
194
182
  };
195
183
  var body = iconBodies[size];
196
184
  if (!body) {
197
- throw Error("Icon \"action-disable-circle-solid\" is not available in size ".concat(size));
185
+ throw Error("Icon \"action-disable-circle-solid\" is not available in size " + size);
198
186
  }
199
187
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
200
188
  };
201
189
  var IconActionExport = function (props) {
202
190
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
203
191
  var iconBodies = {
204
- "16": "<path d=\"M5 2H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-2m0-4V2m0 0H9m5 0L7 9\" class=\"icon-dark\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
192
+ "16": "<path d=\"M5 2H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-2m0-4V2m0 0H9m5 0L7 9\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
205
193
  };
206
194
  var body = iconBodies[size];
207
195
  if (!body) {
208
- throw Error("Icon \"action-export\" is not available in size ".concat(size));
196
+ throw Error("Icon \"action-export\" is not available in size " + size);
209
197
  }
210
198
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
211
199
  };
212
200
  var IconActionNext = function (props) {
213
201
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
214
202
  var iconBodies = {
215
- "16": "<path d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .858Z\" fill=\"#434861\" class=\"icon-light\"/><path d=\"M13 2.6v10.8M3.757 2.454l8.528 5.117a.5.5 0 0 1 0 .858l-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429Z\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
203
+ "16": "<path d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .858Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M13 2.6v10.8M3.757 2.454l8.528 5.117a.5.5 0 0 1 0 .858l-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429Z\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
216
204
  };
217
205
  var body = iconBodies[size];
218
206
  if (!body) {
219
- throw Error("Icon \"action-next\" is not available in size ".concat(size));
207
+ throw Error("Icon \"action-next\" is not available in size " + size);
220
208
  }
221
209
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
222
210
  };
223
211
  var IconActionPlayLarge = function (props) {
224
212
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
225
213
  var iconBodies = {
226
- "16": "<path d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .858Z\" fill=\"#D0D2E0\" stroke=\"#1B1E2E\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
214
+ "16": "<path d=\"m12.285 8.429-8.528 5.117a.5.5 0 0 1-.757-.43V2.884a.5.5 0 0 1 .757-.429l8.528 5.117a.5.5 0 0 1 0 .858Z\" fill=\"#D0D2E0\" stroke=\"currentColor\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
227
215
  };
228
216
  var body = iconBodies[size];
229
217
  if (!body) {
230
- throw Error("Icon \"action-play-large\" is not available in size ".concat(size));
218
+ throw Error("Icon \"action-play-large\" is not available in size " + size);
231
219
  }
232
220
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
233
221
  };
234
222
  var IconActionPlaySmall = function (props) {
235
223
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
236
224
  var iconBodies = {
237
- "16": "<path d=\"m11.322 8.424-6.557 4.098A.5.5 0 0 1 4 12.098V3.902a.5.5 0 0 1 .765-.424l6.557 4.098a.5.5 0 0 1 0 .848Z\" fill=\"#D0D2E0\" stroke=\"#1B1E2E\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
225
+ "16": "<path d=\"m11.322 8.424-6.557 4.098A.5.5 0 0 1 4 12.098V3.902a.5.5 0 0 1 .765-.424l6.557 4.098a.5.5 0 0 1 0 .848Z\" fill=\"#D0D2E0\" stroke=\"currentColor\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
238
226
  };
239
227
  var body = iconBodies[size];
240
228
  if (!body) {
241
- throw Error("Icon \"action-play-small\" is not available in size ".concat(size));
229
+ throw Error("Icon \"action-play-small\" is not available in size " + size);
242
230
  }
243
231
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
244
232
  };
245
233
  var IconActionPower = function (props) {
246
234
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
247
235
  var iconBodies = {
248
- "16": "<path d=\"M7 7a1 1 0 1 0 2 0H7Zm2-6a1 1 0 0 0-2 0h2ZM4.572 3.074a1 1 0 1 0-1.144-1.64l1.144 1.64Zm8-1.64a1 1 0 0 0-1.144 1.64l1.144-1.64ZM3.757 12.243a6 6 0 0 1 0-8.486L2.343 2.343a8 8 0 0 0 0 11.314l1.414-1.414Zm8.486-8.486a6 6 0 0 1 0 8.486l1.414 1.414a8 8 0 0 0 0-11.314l-1.414 1.414Zm0 8.486a6 6 0 0 1-8.486 0l-1.414 1.414a8 8 0 0 0 11.314 0l-1.414-1.414ZM9 7V1H7v6h2ZM3.757 3.757c.257-.256.53-.483.815-.683l-1.144-1.64c-.382.266-.745.57-1.085.91l1.414 1.413Zm7.67-.683c.287.2.56.427.816.683l1.414-1.414a8.04 8.04 0 0 0-1.085-.91l-1.144 1.641Z\" fill=\"#9095AD\" class=\"icon-dark\"/>"
236
+ "16": "<path d=\"M7 7a1 1 0 1 0 2 0H7Zm2-6a1 1 0 0 0-2 0h2ZM4.572 3.074a1 1 0 1 0-1.144-1.64l1.144 1.64Zm8-1.64a1 1 0 0 0-1.144 1.64l1.144-1.64ZM3.757 12.243a6 6 0 0 1 0-8.486L2.343 2.343a8 8 0 0 0 0 11.314l1.414-1.414Zm8.486-8.486a6 6 0 0 1 0 8.486l1.414 1.414a8 8 0 0 0 0-11.314l-1.414 1.414Zm0 8.486a6 6 0 0 1-8.486 0l-1.414 1.414a8 8 0 0 0 11.314 0l-1.414-1.414ZM9 7V1H7v6h2ZM3.757 3.757c.257-.256.53-.483.815-.683l-1.144-1.64c-.382.266-.745.57-1.085.91l1.414 1.413Zm7.67-.683c.287.2.56.427.816.683l1.414-1.414a8.04 8.04 0 0 0-1.085-.91l-1.144 1.641Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
249
237
  };
250
238
  var body = iconBodies[size];
251
239
  if (!body) {
252
- throw Error("Icon \"action-power\" is not available in size ".concat(size));
240
+ throw Error("Icon \"action-power\" is not available in size " + size);
253
241
  }
254
242
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
255
243
  };
256
244
  var IconActionQuestionMarkCircle = function (props) {
257
245
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
258
246
  var iconBodies = {
259
- "16": "<path d=\"M13.657 13.657A8 8 0 1 1 2.343 2.343a8 8 0 0 1 11.314 11.314Z\" fill=\"currentColor\" class=\"icon-light\"/><path fill-rule=\"evenodd\" style=\"transform:translate(5px,2.8px)\" clip-rule=\"evenodd\" d=\"m1.845 2.535-.001.001A1 1 0 0 1 .146 1.48L1 2c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.061A3.315 3.315 0 0 1 .87.707 3.452 3.452 0 0 1 3 0c1.099 0 1.911.432 2.414 1.113C5.879 1.743 6 2.478 6 3c0 .63-.173 1.147-.463 1.574-.272.402-.62.68-.871.873-.608.465-.655.516-.673.67a1 1 0 0 1-1.986-.234c.125-1.061.915-1.638 1.327-1.938l.117-.087c.229-.175.352-.29.43-.405C3.944 3.363 4 3.237 4 3c0-.259-.067-.525-.195-.7C3.714 2.179 3.526 2 3 2c-.437 0-.729.152-.913.294a1.316 1.316 0 0 0-.242.241ZM3 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#fff\" class=\"icon-dark\"/>"
247
+ "16": "<path d=\"M13.657 13.657A8 8 0 1 1 2.343 2.343a8 8 0 0 1 11.314 11.314Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" style=\"transform:translate(5px,2.8px)\" clip-rule=\"evenodd\" d=\"m1.845 2.535-.001.001A1 1 0 0 1 .146 1.48L1 2c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.061A3.315 3.315 0 0 1 .87.707 3.452 3.452 0 0 1 3 0c1.099 0 1.911.432 2.414 1.113C5.879 1.743 6 2.478 6 3c0 .63-.173 1.147-.463 1.574-.272.402-.62.68-.871.873-.608.465-.655.516-.673.67a1 1 0 0 1-1.986-.234c.125-1.061.915-1.638 1.327-1.938l.117-.087c.229-.175.352-.29.43-.405C3.944 3.363 4 3.237 4 3c0-.259-.067-.525-.195-.7C3.714 2.179 3.526 2 3 2c-.437 0-.729.152-.913.294a1.316 1.316 0 0 0-.242.241ZM3 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
260
248
  };
261
249
  var body = iconBodies[size];
262
250
  if (!body) {
263
- throw Error("Icon \"action-question-mark-circle\" is not available in size ".concat(size));
251
+ throw Error("Icon \"action-question-mark-circle\" is not available in size " + size);
264
252
  }
265
253
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
266
254
  };
267
255
  var IconActionQuestionMarkDefault = function (props) {
268
256
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
269
257
  var iconBodies = {
270
- "16": "<path class=\"icon-dark\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.33 4.85a1.142 1.142 0 0 1-.007.012l.001-.002.003-.004.001-.003v-.002h.001Zm-.868-.496a98.636 98.636 0 0 1-.868-.497l.001-.003.003-.004.005-.01.016-.025.046-.073a4.032 4.032 0 0 1 .77-.84A3.99 3.99 0 0 1 8 2c1.344 0 2.293.561 2.865 1.388.532.77.674 1.67.674 2.32 0 .76-.187 1.38-.51 1.893-.313.495-.718.834-1.045 1.083-.118.09-.219.164-.308.23-.19.14-.326.239-.457.368-.148.144-.21.256-.235.398a1 1 0 0 1-1.968-.36c.12-.653.447-1.118.803-1.467a7.31 7.31 0 0 1 .776-.628l.177-.132c.271-.207.446-.371.565-.559.106-.17.201-.413.201-.826 0-.409-.096-.861-.318-1.182C9.04 4.264 8.718 4 8 4a1.991 1.991 0 0 0-1.677.861 1 1 0 0 1-1.73-1.003l.869.496ZM8 12a1 1 0 0 1 1 1v.01a1 1 0 1 1-2 0V13a1 1 0 0 1 1-1Z\" fill=\"#1B1E2E\"/>"
258
+ "16": "<path class=\"icon-dark\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.33 4.85a1.142 1.142 0 0 1-.007.012l.001-.002.003-.004.001-.003v-.002h.001Zm-.868-.496a98.636 98.636 0 0 1-.868-.497l.001-.003.003-.004.005-.01.016-.025.046-.073a4.032 4.032 0 0 1 .77-.84A3.99 3.99 0 0 1 8 2c1.344 0 2.293.561 2.865 1.388.532.77.674 1.67.674 2.32 0 .76-.187 1.38-.51 1.893-.313.495-.718.834-1.045 1.083-.118.09-.219.164-.308.23-.19.14-.326.239-.457.368-.148.144-.21.256-.235.398a1 1 0 0 1-1.968-.36c.12-.653.447-1.118.803-1.467a7.31 7.31 0 0 1 .776-.628l.177-.132c.271-.207.446-.371.565-.559.106-.17.201-.413.201-.826 0-.409-.096-.861-.318-1.182C9.04 4.264 8.718 4 8 4a1.991 1.991 0 0 0-1.677.861 1 1 0 0 1-1.73-1.003l.869.496ZM8 12a1 1 0 0 1 1 1v.01a1 1 0 1 1-2 0V13a1 1 0 0 1 1-1Z\" fill=\"currentColor\"/>"
271
259
  };
272
260
  var body = iconBodies[size];
273
261
  if (!body) {
274
- throw Error("Icon \"action-question-mark-default\" is not available in size ".concat(size));
262
+ throw Error("Icon \"action-question-mark-default\" is not available in size " + size);
275
263
  }
276
264
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
277
265
  };
@@ -282,29 +270,29 @@ var IconActionQuestionMarkOutline = function (props) {
282
270
  };
283
271
  var body = iconBodies[size];
284
272
  if (!body) {
285
- throw Error("Icon \"action-question-mark-outline\" is not available in size ".concat(size));
273
+ throw Error("Icon \"action-question-mark-outline\" is not available in size " + size);
286
274
  }
287
275
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
288
276
  };
289
277
  var IconActionRecord = function (props) {
290
278
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
291
279
  var iconBodies = {
292
- "16": "<path d=\"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/><path d=\"M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0Zm-4 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" class=\"icon-dark\"/>"
280
+ "16": "<path d=\"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\" fill=\"currentColor\" class=\"icon-dark\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0Zm-4 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" stroke=\"currentColor\" stroke-width=\"2\" class=\"icon-dark\"/>"
293
281
  };
294
282
  var body = iconBodies[size];
295
283
  if (!body) {
296
- throw Error("Icon \"action-record\" is not available in size ".concat(size));
284
+ throw Error("Icon \"action-record\" is not available in size " + size);
297
285
  }
298
286
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
299
287
  };
300
288
  var IconActionRefresh = function (props) {
301
289
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
302
290
  var iconBodies = {
303
- "16": "<path d=\"m13 2.071-.707-.707A1 1 0 0 1 14 2.071h-1Zm0 2.572h1a1 1 0 0 1-1 1v-1Zm-2.571 0v1a1 1 0 0 1-.708-1.707l.708.707Zm1.17 4.321a1 1 0 0 1 1.84.786l-1.84-.786ZM14 2.071v2.572h-2V2.07h2ZM7 2a5 5 0 0 0-5 5H0a7 7 0 0 1 7-7v2Zm4.6 3.036A5.002 5.002 0 0 0 7 2V0a7.001 7.001 0 0 1 6.439 4.25l-1.84.786Zm1.4.607h-.48v-2H13v2Zm-.48 0h-2.091v-2h2.09v2ZM2 7c0 1.381.559 2.63 1.464 3.536L2.05 11.95A6.981 6.981 0 0 1 0 7h2Zm1.464 3.536A4.98 4.98 0 0 0 7 12v2a6.981 6.981 0 0 1-4.95-2.05l1.414-1.414ZM7 12a5.002 5.002 0 0 0 4.6-3.036l1.839.786A7.002 7.002 0 0 1 7 14v-2Zm2.721-8.064 2.572-2.572 1.414 1.415-2.571 2.571L9.72 3.936Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
291
+ "16": "<path d=\"m13 2.071-.707-.707A1 1 0 0 1 14 2.071h-1Zm0 2.572h1a1 1 0 0 1-1 1v-1Zm-2.571 0v1a1 1 0 0 1-.708-1.707l.708.707Zm1.17 4.321a1 1 0 0 1 1.84.786l-1.84-.786ZM14 2.071v2.572h-2V2.07h2ZM7 2a5 5 0 0 0-5 5H0a7 7 0 0 1 7-7v2Zm4.6 3.036A5.002 5.002 0 0 0 7 2V0a7.001 7.001 0 0 1 6.439 4.25l-1.84.786Zm1.4.607h-.48v-2H13v2Zm-.48 0h-2.091v-2h2.09v2ZM2 7c0 1.381.559 2.63 1.464 3.536L2.05 11.95A6.981 6.981 0 0 1 0 7h2Zm1.464 3.536A4.98 4.98 0 0 0 7 12v2a6.981 6.981 0 0 1-4.95-2.05l1.414-1.414ZM7 12a5.002 5.002 0 0 0 4.6-3.036l1.839.786A7.002 7.002 0 0 1 7 14v-2Zm2.721-8.064 2.572-2.572 1.414 1.415-2.571 2.571L9.72 3.936Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
304
292
  };
305
293
  var body = iconBodies[size];
306
294
  if (!body) {
307
- throw Error("Icon \"action-refresh\" is not available in size ".concat(size));
295
+ throw Error("Icon \"action-refresh\" is not available in size " + size);
308
296
  }
309
297
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
310
298
  };
@@ -315,7 +303,7 @@ var IconActionRestart = function (props) {
315
303
  };
316
304
  var body = iconBodies[size];
317
305
  if (!body) {
318
- throw Error("Icon \"action-restart\" is not available in size ".concat(size));
306
+ throw Error("Icon \"action-restart\" is not available in size " + size);
319
307
  }
320
308
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
321
309
  };
@@ -326,7 +314,7 @@ var IconActionStop = function (props) {
326
314
  };
327
315
  var body = iconBodies[size];
328
316
  if (!body) {
329
- throw Error("Icon \"action-stop\" is not available in size ".concat(size));
317
+ throw Error("Icon \"action-stop\" is not available in size " + size);
330
318
  }
331
319
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
332
320
  };
@@ -337,18 +325,18 @@ var IconArrowCollapse = function (props) {
337
325
  };
338
326
  var body = iconBodies[size];
339
327
  if (!body) {
340
- throw Error("Icon \"arrow-collapse\" is not available in size ".concat(size));
328
+ throw Error("Icon \"arrow-collapse\" is not available in size " + size);
341
329
  }
342
330
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
343
331
  };
344
332
  var IconArrowDown = function (props) {
345
333
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
346
334
  var iconBodies = {
347
- "16": "<path d=\"m4 9 4 4m0 0 4-4m-4 4V3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
335
+ "16": "<path d=\"m4 9 4 4m0 0 4-4m-4 4V3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
348
336
  };
349
337
  var body = iconBodies[size];
350
338
  if (!body) {
351
- throw Error("Icon \"arrow-down\" is not available in size ".concat(size));
339
+ throw Error("Icon \"arrow-down\" is not available in size " + size);
352
340
  }
353
341
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
354
342
  };
@@ -359,29 +347,29 @@ var IconArrowExpand = function (props) {
359
347
  };
360
348
  var body = iconBodies[size];
361
349
  if (!body) {
362
- throw Error("Icon \"arrow-expand\" is not available in size ".concat(size));
350
+ throw Error("Icon \"arrow-expand\" is not available in size " + size);
363
351
  }
364
352
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
365
353
  };
366
354
  var IconArrowLeft = function (props) {
367
355
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
368
356
  var iconBodies = {
369
- "16": "<path d=\"M7 4 3 8m0 0 4 4M3 8h10\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
357
+ "16": "<path d=\"M7 4 3 8m0 0 4 4M3 8h10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
370
358
  };
371
359
  var body = iconBodies[size];
372
360
  if (!body) {
373
- throw Error("Icon \"arrow-left\" is not available in size ".concat(size));
361
+ throw Error("Icon \"arrow-left\" is not available in size " + size);
374
362
  }
375
363
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
376
364
  };
377
365
  var IconArrowOutlineDown = function (props) {
378
366
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
379
367
  var iconBodies = {
380
- "16": "<path d=\"M15 8A7 7 0 1 0 1 8a7 7 0 0 0 14 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6.207 8.207a1 1 0 0 1-1.414-1.414l1.414 1.414ZM8 5l-.707-.707a1 1 0 0 1 1.414 0L8 5Zm3.207 1.793a1 1 0 0 1-1.414 1.414l1.414-1.414ZM9 11a1 1 0 1 1-2 0h2Zm5-3a6 6 0 0 0-6-6V0a8 8 0 0 1 8 8h-2ZM8 2a6 6 0 0 0-6 6H0a8 8 0 0 1 8-8v2ZM2 8a6 6 0 0 0 6 6v2a8 8 0 0 1-8-8h2Zm6 6a6 6 0 0 0 6-6h2a8 8 0 0 1-8 8v-2ZM4.793 6.793l2.5-2.5 1.414 1.414-2.5 2.5-1.414-1.414Zm3.914-2.5 2.5 2.5-1.414 1.414-2.5-2.5 1.414-1.414ZM9 5v6H7V5h2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
368
+ "16": "<path d=\"M15 8A7 7 0 1 0 1 8a7 7 0 0 0 14 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6.207 8.207a1 1 0 0 1-1.414-1.414l1.414 1.414ZM8 5l-.707-.707a1 1 0 0 1 1.414 0L8 5Zm3.207 1.793a1 1 0 0 1-1.414 1.414l1.414-1.414ZM9 11a1 1 0 1 1-2 0h2Zm5-3a6 6 0 0 0-6-6V0a8 8 0 0 1 8 8h-2ZM8 2a6 6 0 0 0-6 6H0a8 8 0 0 1 8-8v2ZM2 8a6 6 0 0 0 6 6v2a8 8 0 0 1-8-8h2Zm6 6a6 6 0 0 0 6-6h2a8 8 0 0 1-8 8v-2ZM4.793 6.793l2.5-2.5 1.414 1.414-2.5 2.5-1.414-1.414Zm3.914-2.5 2.5 2.5-1.414 1.414-2.5-2.5 1.414-1.414ZM9 5v6H7V5h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
381
369
  };
382
370
  var body = iconBodies[size];
383
371
  if (!body) {
384
- throw Error("Icon \"arrow-outline-down\" is not available in size ".concat(size));
372
+ throw Error("Icon \"arrow-outline-down\" is not available in size " + size);
385
373
  }
386
374
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
387
375
  };
@@ -392,29 +380,29 @@ var IconArrowRight = function (props) {
392
380
  };
393
381
  var body = iconBodies[size];
394
382
  if (!body) {
395
- throw Error("Icon \"arrow-right\" is not available in size ".concat(size));
383
+ throw Error("Icon \"arrow-right\" is not available in size " + size);
396
384
  }
397
385
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
398
386
  };
399
387
  var IconArrowUp = function (props) {
400
388
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
401
389
  var iconBodies = {
402
- "16": "<path d=\"M12 7 8 3m0 0L4 7m4-4v10\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
390
+ "16": "<path d=\"M12 7 8 3m0 0L4 7m4-4v10\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
403
391
  };
404
392
  var body = iconBodies[size];
405
393
  if (!body) {
406
- throw Error("Icon \"arrow-up\" is not available in size ".concat(size));
394
+ throw Error("Icon \"arrow-up\" is not available in size " + size);
407
395
  }
408
396
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
409
397
  };
410
398
  var IconCheckmarkOutline = function (props) {
411
399
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
412
400
  var iconBodies = {
413
- "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\"/>"
401
+ "16": "<path d=\"M12.95 12.95a7 7 0 1 1-9.9-9.9 7 7 0 0 1 9.9 9.9Z\" stroke=\"currentColor\" stroke-width=\"2\" class=\"icon-dark\"/><path d=\"m6 8 1.5 2L10 6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
414
402
  };
415
403
  var body = iconBodies[size];
416
404
  if (!body) {
417
- throw Error("Icon \"checkmark-outline\" is not available in size ".concat(size));
405
+ throw Error("Icon \"checkmark-outline\" is not available in size " + size);
418
406
  }
419
407
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
420
408
  };
@@ -425,18 +413,18 @@ var IconCheckmarkSmall = function (props) {
425
413
  };
426
414
  var body = iconBodies[size];
427
415
  if (!body) {
428
- throw Error("Icon \"checkmark-small\" is not available in size ".concat(size));
416
+ throw Error("Icon \"checkmark-small\" is not available in size " + size);
429
417
  }
430
418
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
431
419
  };
432
420
  var IconCheckmarkSolid = function (props) {
433
421
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
434
422
  var iconBodies = {
435
- "24": "<path d=\"M20.485 20.485c-4.686 4.687-12.284 4.687-16.97 0-4.687-4.686-4.687-12.284 0-16.97 4.686-4.687 12.284-4.687 16.97 0 4.687 4.686 4.687 12.284 0 16.97Z\" fill=\"#FFF\" class=\"icon-dark\"/><path d=\"M15.999 9 11 15l-2.999-3\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-light\"/><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"#000\" style=\"stroke:rgba(0,0,0,.1)\"/>"
423
+ "24": "<path d=\"M20.485 20.485c-4.686 4.687-12.284 4.687-16.97 0-4.687-4.686-4.687-12.284 0-16.97 4.686-4.687 12.284-4.687 16.97 0 4.687 4.686 4.687 12.284 0 16.97Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M15.999 9 11 15l-2.999-3\" stroke=\"#D0D2E0\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-light\"/><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"#000\" style=\"stroke:rgba(0,0,0,.1)\"/>"
436
424
  };
437
425
  var body = iconBodies[size];
438
426
  if (!body) {
439
- throw Error("Icon \"checkmark-solid\" is not available in size ".concat(size));
427
+ throw Error("Icon \"checkmark-solid\" is not available in size " + size);
440
428
  }
441
429
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
442
430
  };
@@ -447,178 +435,178 @@ var IconCheckmark = function (props) {
447
435
  };
448
436
  var body = iconBodies[size];
449
437
  if (!body) {
450
- throw Error("Icon \"checkmark\" is not available in size ".concat(size));
438
+ throw Error("Icon \"checkmark\" is not available in size " + size);
451
439
  }
452
440
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
453
441
  };
454
442
  var IconChevronDownDouble = function (props) {
455
443
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
456
444
  var iconBodies = {
457
- "16": "<path d=\"m5 9 3 3 3-3M5 4l3 3 3-3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
445
+ "16": "<path d=\"m5 9 3 3 3-3M5 4l3 3 3-3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
458
446
  };
459
447
  var body = iconBodies[size];
460
448
  if (!body) {
461
- throw Error("Icon \"chevron-down-double\" is not available in size ".concat(size));
449
+ throw Error("Icon \"chevron-down-double\" is not available in size " + size);
462
450
  }
463
451
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
464
452
  };
465
453
  var IconChevronDownLarge = function (props) {
466
454
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
467
455
  var iconBodies = {
468
- "16": "<path d=\"m2 5 6 6 6-6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
456
+ "16": "<path d=\"m2 5 6 6 6-6\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
469
457
  };
470
458
  var body = iconBodies[size];
471
459
  if (!body) {
472
- throw Error("Icon \"chevron-down-large\" is not available in size ".concat(size));
460
+ throw Error("Icon \"chevron-down-large\" is not available in size " + size);
473
461
  }
474
462
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
475
463
  };
476
464
  var IconChevronDownSmall = function (props) {
477
465
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
478
466
  var iconBodies = {
479
- "8": "<path d=\"m1 2.5 3 3 3-3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
467
+ "8": "<path d=\"m1 2.5 3 3 3-3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
480
468
  "16": "<path d=\"m4 6 4 4 4-4\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
481
469
  };
482
470
  var body = iconBodies[size];
483
471
  if (!body) {
484
- throw Error("Icon \"chevron-down-small\" is not available in size ".concat(size));
472
+ throw Error("Icon \"chevron-down-small\" is not available in size " + size);
485
473
  }
486
474
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
487
475
  };
488
476
  var IconChevronLeftDouble = function (props) {
489
477
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
490
478
  var iconBodies = {
491
- "16": "<path d=\"M7 11 4 8l3-3m5 6L9 8l3-3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
479
+ "16": "<path d=\"M7 11 4 8l3-3m5 6L9 8l3-3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
492
480
  };
493
481
  var body = iconBodies[size];
494
482
  if (!body) {
495
- throw Error("Icon \"chevron-left-double\" is not available in size ".concat(size));
483
+ throw Error("Icon \"chevron-left-double\" is not available in size " + size);
496
484
  }
497
485
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
498
486
  };
499
487
  var IconChevronLeftLarge = function (props) {
500
488
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
501
489
  var iconBodies = {
502
- "16": "<path d=\"M11 14 5 8l6-6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
490
+ "16": "<path d=\"M11 14 5 8l6-6\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
503
491
  };
504
492
  var body = iconBodies[size];
505
493
  if (!body) {
506
- throw Error("Icon \"chevron-left-large\" is not available in size ".concat(size));
494
+ throw Error("Icon \"chevron-left-large\" is not available in size " + size);
507
495
  }
508
496
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
509
497
  };
510
498
  var IconChevronLeftSmall = function (props) {
511
499
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
512
500
  var iconBodies = {
513
- "8": "<path d=\"m5.5 1-3 3 3 3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
514
- "16": "<path d=\"M10 4 6 8l4 4\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
501
+ "8": "<path d=\"m5.5 1-3 3 3 3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
502
+ "16": "<path d=\"M10 4 6 8l4 4\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
515
503
  };
516
504
  var body = iconBodies[size];
517
505
  if (!body) {
518
- throw Error("Icon \"chevron-left-small\" is not available in size ".concat(size));
506
+ throw Error("Icon \"chevron-left-small\" is not available in size " + size);
519
507
  }
520
508
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
521
509
  };
522
510
  var IconChevronRightDouble = function (props) {
523
511
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
524
512
  var iconBodies = {
525
- "16": "<path d=\"m9 11 3-3-3-3m-5 6 3-3-3-3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
513
+ "16": "<path d=\"m9 11 3-3-3-3m-5 6 3-3-3-3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
526
514
  };
527
515
  var body = iconBodies[size];
528
516
  if (!body) {
529
- throw Error("Icon \"chevron-right-double\" is not available in size ".concat(size));
517
+ throw Error("Icon \"chevron-right-double\" is not available in size " + size);
530
518
  }
531
519
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
532
520
  };
533
521
  var IconChevronRightLarge = function (props) {
534
522
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
535
523
  var iconBodies = {
536
- "16": "<path d=\"m5 14 6-6-6-6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
524
+ "16": "<path d=\"m5 14 6-6-6-6\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
537
525
  };
538
526
  var body = iconBodies[size];
539
527
  if (!body) {
540
- throw Error("Icon \"chevron-right-large\" is not available in size ".concat(size));
528
+ throw Error("Icon \"chevron-right-large\" is not available in size " + size);
541
529
  }
542
530
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
543
531
  };
544
532
  var IconChevronRightSmall = function (props) {
545
533
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
546
534
  var iconBodies = {
547
- "8": "<path d=\"m2.5 1 3 3-3 3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
548
- "16": "<path d=\"m6 12 4-4-4-4\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
535
+ "8": "<path d=\"m2.5 1 3 3-3 3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
536
+ "16": "<path d=\"m6 12 4-4-4-4\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
549
537
  };
550
538
  var body = iconBodies[size];
551
539
  if (!body) {
552
- throw Error("Icon \"chevron-right-small\" is not available in size ".concat(size));
540
+ throw Error("Icon \"chevron-right-small\" is not available in size " + size);
553
541
  }
554
542
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
555
543
  };
556
544
  var IconChevronUpDouble = function (props) {
557
545
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
558
546
  var iconBodies = {
559
- "16": "<path d=\"m5 7 3-3 3 3m-6 5 3-3 3 3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
547
+ "16": "<path d=\"m5 7 3-3 3 3m-6 5 3-3 3 3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
560
548
  };
561
549
  var body = iconBodies[size];
562
550
  if (!body) {
563
- throw Error("Icon \"chevron-up-double\" is not available in size ".concat(size));
551
+ throw Error("Icon \"chevron-up-double\" is not available in size " + size);
564
552
  }
565
553
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
566
554
  };
567
555
  var IconChevronUpLarge = function (props) {
568
556
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
569
557
  var iconBodies = {
570
- "16": "<path d=\"m2 11 6-6 6 6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
558
+ "16": "<path d=\"m2 11 6-6 6 6\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
571
559
  };
572
560
  var body = iconBodies[size];
573
561
  if (!body) {
574
- throw Error("Icon \"chevron-up-large\" is not available in size ".concat(size));
562
+ throw Error("Icon \"chevron-up-large\" is not available in size " + size);
575
563
  }
576
564
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
577
565
  };
578
566
  var IconChevronUpSmall = function (props) {
579
567
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
580
568
  var iconBodies = {
581
- "8": "<path d=\"m1 5.5 3-3 3 3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
569
+ "8": "<path d=\"m1 5.5 3-3 3 3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
582
570
  "16": "<path d=\"M12 10 8 6l-4 4\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
583
571
  };
584
572
  var body = iconBodies[size];
585
573
  if (!body) {
586
- throw Error("Icon \"chevron-up-small\" is not available in size ".concat(size));
574
+ throw Error("Icon \"chevron-up-small\" is not available in size " + size);
587
575
  }
588
576
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
589
577
  };
590
578
  var IconDeviceLaptop = function (props) {
591
579
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
592
580
  var iconBodies = {
593
- "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 17H2v.1A2.9 2.9 0 0 0 4.9 20h14.2a2.9 2.9 0 0 0 2.9-2.9V17H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M21 17H3m18 0h1v.1m-1-.1V6M3 17H2v.1m1-.1V6m2-2h14M5 4a2 2 0 0 0-2 2m2-2v0a2 2 0 0 0-2 2v0m16-2a2 2 0 0 1 2 2m-2-2v0a2 2 0 0 1 2 2v0m1 11.1a2.9 2.9 0 0 1-2.9 2.9m2.9-2.9v0a2.9 2.9 0 0 1-2.9 2.9v0m0 0H4.9m0 0A2.9 2.9 0 0 1 2 17.1M4.9 20v0A2.9 2.9 0 0 1 2 17.1v0\" class=\"icon-dark\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"7\" r=\"1\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
581
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 17H2v.1A2.9 2.9 0 0 0 4.9 20h14.2a2.9 2.9 0 0 0 2.9-2.9V17H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M21 17H3m18 0h1v.1m-1-.1V6M3 17H2v.1m1-.1V6m2-2h14M5 4a2 2 0 0 0-2 2m2-2v0a2 2 0 0 0-2 2v0m16-2a2 2 0 0 1 2 2m-2-2v0a2 2 0 0 1 2 2v0m1 11.1a2.9 2.9 0 0 1-2.9 2.9m2.9-2.9v0a2.9 2.9 0 0 1-2.9 2.9v0m0 0H4.9m0 0A2.9 2.9 0 0 1 2 17.1M4.9 20v0A2.9 2.9 0 0 1 2 17.1v0\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"7\" r=\"1\" fill=\"currentColor\" class=\"icon-dark\"/>"
594
582
  };
595
583
  var body = iconBodies[size];
596
584
  if (!body) {
597
- throw Error("Icon \"device-laptop\" is not available in size ".concat(size));
585
+ throw Error("Icon \"device-laptop\" is not available in size " + size);
598
586
  }
599
587
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
600
588
  };
601
589
  var IconDocumentAdded = function (props) {
602
590
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
603
591
  var iconBodies = {
604
- "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m6 10 .5-1m3.5 1-.5-1m-3 0L8 6l1.5 3m-3 0h3M14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
592
+ "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m6 10 .5-1m3.5 1-.5-1m-3 0L8 6l1.5 3m-3 0h3M14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
605
593
  };
606
594
  var body = iconBodies[size];
607
595
  if (!body) {
608
- throw Error("Icon \"document-added\" is not available in size ".concat(size));
596
+ throw Error("Icon \"document-added\" is not available in size " + size);
609
597
  }
610
598
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
611
599
  };
612
600
  var IconDocumentBlank = function (props) {
613
601
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
614
602
  var iconBodies = {
615
- "16": "<path d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M5 8h3M5 5h6m-6 6h5m3-10H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
616
- "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8m-6-6 6 6m-6-6v6h6\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
617
- "48": "<path d=\"M10 39V9a1 1 0 0 1 1-1h26a1 1 0 0 1 1 1v30a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 24h7m-7-6.857h14M17 30.857h11.667M37 8H11a1 1 0 0 0-1 1v30a1 1 0 0 0 1 1h26a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1Z\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
603
+ "16": "<path d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M5 8h3M5 5h6m-6 6h5m3-10H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
604
+ "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8m-6-6 6 6m-6-6v6h6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
605
+ "48": "<path d=\"M10 39V9a1 1 0 0 1 1-1h26a1 1 0 0 1 1 1v30a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 24h7m-7-6.857h14M17 30.857h11.667M37 8H11a1 1 0 0 0-1 1v30a1 1 0 0 0 1 1h26a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
618
606
  };
619
607
  var body = iconBodies[size];
620
608
  if (!body) {
621
- throw Error("Icon \"document-blank\" is not available in size ".concat(size));
609
+ throw Error("Icon \"document-blank\" is not available in size " + size);
622
610
  }
623
611
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
624
612
  };
@@ -626,148 +614,148 @@ var IconDocumentCode = function (props) {
626
614
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
627
615
  var iconBodies = {
628
616
  "24": "<path d=\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M9 14a1 1 0 1 0 0 2v-2Zm6 2a1 1 0 1 0 0-2v2Zm-6 3h1v-2H9v2Zm-1-2a1 1 0 1 0 0 2v-2Zm5-6h-1v2h1v-2Zm3 2a1 1 0 1 0 0-2v2Zm-6-2a1 1 0 1 0 0 2v-2Zm.01 2h1v-2h-1v2ZM9 8a1 1 0 0 0 0 2V8Zm3 2h1V8h-1v2Zm3-2h-1v2h1V8Zm.01 2a1 1 0 1 0 0-2v2ZM14 7a1 1 0 1 0 0-2v2Zm-2-2h-1v2h1V5ZM8 5a1 1 0 0 0 0 2V5Zm1 2h1V5H9v2Zm3 10h-1v2h1v-2Zm1.01 2a1 1 0 1 0 0-2v2ZM6 3h12V1H6v2Zm12 18H6v2h12v-2Zm1-17v16h2V4h-2ZM5 20V4H3v16h2Zm4-4h6v-2H9v2Zm0 1H8v2h1v-2Zm4-4h3v-2h-3v2Zm-3 0h.01v-2H10v2Zm-1-3h3V8H9v2Zm6 0h.01V8H15v2Zm-1-5h-2v2h2V5ZM8 7h1V5H8v2Zm4 12h1.01v-2H12v2Zm-6 2a1 1 0 0 1-1-1H3a3 3 0 0 0 3 3v-2Zm12 2a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2Zm0-20a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2ZM6 1a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V1Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
629
- "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\"/>"
617
+ "48": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32 5.18V13h7.82a2 2 0 0 0-.406-.586l-6.828-6.828A1.999 1.999 0 0 0 32 5.18Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m20 21-3 3 3 3m8-6 3 3-3 3m-5.5 2.5 3-11M32 5.18a2 2 0 0 0-.828-.18H9a1 1 0 0 0-1 1v36a1 1 0 0 0 1 1h30a1 1 0 0 0 1-1V13.828a2 2 0 0 0-.18-.828M32 5.18c.216.098.415.235.586.406l6.828 6.828a2 2 0 0 1 .406.586M32 5.18V13h7.82\" stroke=\"currentColor\" 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\"/>"
630
618
  };
631
619
  var body = iconBodies[size];
632
620
  if (!body) {
633
- throw Error("Icon \"document-code\" is not available in size ".concat(size));
621
+ throw Error("Icon \"document-code\" is not available in size " + size);
634
622
  }
635
623
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
636
624
  };
637
625
  var IconDocumentDeleted = function (props) {
638
626
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
639
627
  var iconBodies = {
640
- "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" stroke=\"#1B1E2E\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
628
+ "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" stroke=\"currentColor\" class=\"icon-dark-stroke icon-light-fill\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
641
629
  };
642
630
  var body = iconBodies[size];
643
631
  if (!body) {
644
- throw Error("Icon \"document-deleted\" is not available in size ".concat(size));
632
+ throw Error("Icon \"document-deleted\" is not available in size " + size);
645
633
  }
646
634
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
647
635
  };
648
636
  var IconDocumentDownload = function (props) {
649
637
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
650
638
  var iconBodies = {
651
- "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M8 5v6m0 0 2-2m-2 2L6 9m8-4.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
652
- "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M12 16V8m0 8 3-3m-3 3-3-3m11-3.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
639
+ "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M8 5v6m0 0 2-2m-2 2L6 9m8-4.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
640
+ "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M12 16V8m0 8 3-3m-3 3-3-3m11-3.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
653
641
  };
654
642
  var body = iconBodies[size];
655
643
  if (!body) {
656
- throw Error("Icon \"document-download\" is not available in size ".concat(size));
644
+ throw Error("Icon \"document-download\" is not available in size " + size);
657
645
  }
658
646
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
659
647
  };
660
648
  var IconDocumentMinus = function (props) {
661
649
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
662
650
  var iconBodies = {
663
- "16": "<path d=\"M4 15a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6 8h4m4-3.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
664
- "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M15 12H9m11-2.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
651
+ "16": "<path d=\"M4 15a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6 8h4m4-3.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
652
+ "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M15 12H9m11-2.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
665
653
  };
666
654
  var body = iconBodies[size];
667
655
  if (!body) {
668
- throw Error("Icon \"document-minus\" is not available in size ".concat(size));
656
+ throw Error("Icon \"document-minus\" is not available in size " + size);
669
657
  }
670
658
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
671
659
  };
672
660
  var IconDocumentModified = function (props) {
673
661
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
674
662
  var iconBodies = {
675
- "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m5 10 1-4 2 3 2-3 1 4m3-5.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
663
+ "16": "<path d=\"M2 13V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m5 10 1-4 2 3 2-3 1 4m3-5.172V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h6.172a2 2 0 0 1 1.414.586l1.828 1.828A2 2 0 0 1 14 4.828Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
676
664
  };
677
665
  var body = iconBodies[size];
678
666
  if (!body) {
679
- throw Error("Icon \"document-modified\" is not available in size ".concat(size));
667
+ throw Error("Icon \"document-modified\" is not available in size " + size);
680
668
  }
681
669
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
682
670
  };
683
671
  var IconDocumentPlusMinus = function (props) {
684
672
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
685
673
  var iconBodies = {
686
- "16": "<path d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6 6.5h4m-2 2v-4m-2 7h4M13 1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
687
- "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M12 13v-3m0-3v3m0 0h3m-3 0H9m0 7h6m5-7.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
674
+ "16": "<path d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6 6.5h4m-2 2v-4m-2 7h4M13 1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
675
+ "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M12 13v-3m0-3v3m0 0h3m-3 0H9m0 7h6m5-7.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
688
676
  };
689
677
  var body = iconBodies[size];
690
678
  if (!body) {
691
- throw Error("Icon \"document-plus-minus\" is not available in size ".concat(size));
679
+ throw Error("Icon \"document-plus-minus\" is not available in size " + size);
692
680
  }
693
681
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
694
682
  };
695
683
  var IconDocumentPlus = function (props) {
696
684
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
697
685
  var iconBodies = {
698
- "16": "<path d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6 8h4m-2 2V6m5-5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
699
- "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M12 15v-3m0-3v3m0 0h3m-3 0H9m11-2.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
686
+ "16": "<path d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6 8h4m-2 2V6m5-5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
687
+ "24": "<path d=\"M4 20V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M12 15v-3m0-3v3m0 0h3m-3 0H9m11-2.757V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
700
688
  };
701
689
  var body = iconBodies[size];
702
690
  if (!body) {
703
- throw Error("Icon \"document-plus\" is not available in size ".concat(size));
691
+ throw Error("Icon \"document-plus\" is not available in size " + size);
704
692
  }
705
693
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
706
694
  };
707
695
  var IconDocumentScript = function (props) {
708
696
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
709
697
  var iconBodies = {
710
- "24": "<path d=\"M4 1h13a3 3 0 0 1 3 3v15M4 1H3a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h1m0-4v4m7 1h5m-5 4h5m-5 4h5M4 5v15a3 3 0 0 0 3 3v0m13-4h1a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2H7m13-4H7v0a2.828 2.828 0 0 1 0 4v0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
698
+ "24": "<path d=\"M4 1h13a3 3 0 0 1 3 3v15M4 1H3a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h1m0-4v4m7 1h5m-5 4h5m-5 4h5M4 5v15a3 3 0 0 0 3 3v0m13-4h1a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2H7m13-4H7v0a2.828 2.828 0 0 1 0 4v0\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
711
699
  };
712
700
  var body = iconBodies[size];
713
701
  if (!body) {
714
- throw Error("Icon \"document-script\" is not available in size ".concat(size));
702
+ throw Error("Icon \"document-script\" is not available in size " + size);
715
703
  }
716
704
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
717
705
  };
718
706
  var IconDocumentSheet = function (props) {
719
707
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
720
708
  var iconBodies = {
721
- "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 1a1 1 0 0 0-.707.293l-6 6A1 1 0 0 0 3 8v12a3 3 0 0 0 3 3h1a1 1 0 0 0 0-2H6a1 1 0 0 1-1-1V9h5a1 1 0 0 0 1-1V3h7a1 1 0 0 1 1 1v5a1 1 0 0 0 2 0V4a3 3 0 0 0-3-3h-8ZM9 7H6.414L9 4.414V7Zm2 5a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1H11Zm1 4v-2h2v2h-2Zm4 0v-2h4v2h-4Zm0 4v-2h4v2h-4Zm-2-2v2h-2v-2h2Z\" class=\"icon-dark\" fill=\"#1B1E2E\"/>"
709
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 1a1 1 0 0 0-.707.293l-6 6A1 1 0 0 0 3 8v12a3 3 0 0 0 3 3h1a1 1 0 0 0 0-2H6a1 1 0 0 1-1-1V9h5a1 1 0 0 0 1-1V3h7a1 1 0 0 1 1 1v5a1 1 0 0 0 2 0V4a3 3 0 0 0-3-3h-8ZM9 7H6.414L9 4.414V7Zm2 5a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1H11Zm1 4v-2h2v2h-2Zm4 0v-2h4v2h-4Zm0 4v-2h4v2h-4Zm-2-2v2h-2v-2h2Z\" class=\"icon-dark\" fill=\"currentColor\"/>"
722
710
  };
723
711
  var body = iconBodies[size];
724
712
  if (!body) {
725
- throw Error("Icon \"document-sheet\" is not available in size ".concat(size));
713
+ throw Error("Icon \"document-sheet\" is not available in size " + size);
726
714
  }
727
715
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
728
716
  };
729
717
  var IconDocumentStar = function (props) {
730
718
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
731
719
  var iconBodies = {
732
- "16": "<path d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m8 5.75.001 2.248m0 0 2.139-.693M8 7.998 9.323 9.82M8 7.998 6.677 9.82m1.324-1.822-2.14-.693M13 1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
733
- "24": "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M12 8.844v3.16m0 0 3.002-.98m-3.002.98 1.855 2.55M12 12.003l-1.855 2.55M12 12.003l-3.002-.98M20 9.244V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
720
+ "16": "<path d=\"M3 15a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m8 5.75.001 2.248m0 0 2.139-.693M8 7.998 9.323 9.82M8 7.998 6.677 9.82m1.324-1.822-2.14-.693M13 1H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
721
+ "24": "<path d=\"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243V20a2 2 0 0 1-2 2H6Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M12 8.844v3.16m0 0 3.002-.98m-3.002.98 1.855 2.55M12 12.003l-1.855 2.55M12 12.003l-3.002-.98M20 9.244V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6.757a3 3 0 0 1 2.122.879L19.12 7.12A3 3 0 0 1 20 9.243Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
734
722
  };
735
723
  var body = iconBodies[size];
736
724
  if (!body) {
737
- throw Error("Icon \"document-star\" is not available in size ".concat(size));
725
+ throw Error("Icon \"document-star\" is not available in size " + size);
738
726
  }
739
727
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
740
728
  };
741
729
  var IconDocumentText = function (props) {
742
730
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
743
731
  var iconBodies = {
744
- "16": "<path d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1Z\" fill=\"#2E3247\" class=\"icon-light\"/><path d=\"M5 8h3M5 5h6m-6 6h5m3-10H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
732
+ "16": "<path d=\"M2 14V2a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M5 8h3M5 5h6m-6 6h5m3-10H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
745
733
  };
746
734
  var body = iconBodies[size];
747
735
  if (!body) {
748
- throw Error("Icon \"document-text\" is not available in size ".concat(size));
736
+ throw Error("Icon \"document-text\" is not available in size " + size);
749
737
  }
750
738
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
751
739
  };
752
740
  var IconDotOutlineLarge = function (props) {
753
741
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
754
742
  var iconBodies = {
755
- "8": "<circle cx=\"4\" cy=\"4\" r=\"3.5\" class=\"icon-light-fill icon-dark-stroke\" fill=\"#F3F4FA\" stroke=\"#D0D2E0\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
743
+ "8": "<circle cx=\"4\" cy=\"4\" r=\"3.5\" class=\"icon-light-fill icon-dark-stroke\" fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
756
744
  };
757
745
  var body = iconBodies[size];
758
746
  if (!body) {
759
- throw Error("Icon \"dot-outline-large\" is not available in size ".concat(size));
747
+ throw Error("Icon \"dot-outline-large\" is not available in size " + size);
760
748
  }
761
749
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
762
750
  };
763
751
  var IconDotOutlineSmall = function (props) {
764
752
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
765
753
  var iconBodies = {
766
- "8": "<circle cx=\"4\" cy=\"4\" r=\"2.5\" class=\"icon-light-fill icon-dark-stroke\" fill=\"#F3F4FA\" stroke=\"#D0D2E0\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
754
+ "8": "<circle cx=\"4\" cy=\"4\" r=\"2.5\" class=\"icon-light-fill icon-dark-stroke\" fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
767
755
  };
768
756
  var body = iconBodies[size];
769
757
  if (!body) {
770
- throw Error("Icon \"dot-outline-small\" is not available in size ".concat(size));
758
+ throw Error("Icon \"dot-outline-small\" is not available in size " + size);
771
759
  }
772
760
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
773
761
  };
@@ -778,7 +766,7 @@ var IconFileChangesAdded = function (props) {
778
766
  };
779
767
  var body = iconBodies[size];
780
768
  if (!body) {
781
- throw Error("Icon \"file-changes-added\" is not available in size ".concat(size));
769
+ throw Error("Icon \"file-changes-added\" is not available in size " + size);
782
770
  }
783
771
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
784
772
  };
@@ -789,7 +777,7 @@ var IconFileChangesError = function (props) {
789
777
  };
790
778
  var body = iconBodies[size];
791
779
  if (!body) {
792
- throw Error("Icon \"file-changes-error\" is not available in size ".concat(size));
780
+ throw Error("Icon \"file-changes-error\" is not available in size " + size);
793
781
  }
794
782
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
795
783
  };
@@ -800,7 +788,7 @@ var IconFileChangesSkipped = function (props) {
800
788
  };
801
789
  var body = iconBodies[size];
802
790
  if (!body) {
803
- throw Error("Icon \"file-changes-skipped\" is not available in size ".concat(size));
791
+ throw Error("Icon \"file-changes-skipped\" is not available in size " + size);
804
792
  }
805
793
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
806
794
  };
@@ -811,7 +799,7 @@ var IconFileChangesWarning = function (props) {
811
799
  };
812
800
  var body = iconBodies[size];
813
801
  if (!body) {
814
- throw Error("Icon \"file-changes-warning\" is not available in size ".concat(size));
802
+ throw Error("Icon \"file-changes-warning\" is not available in size " + size);
815
803
  }
816
804
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
817
805
  };
@@ -822,40 +810,40 @@ var IconGeneralClipboard = function (props) {
822
810
  };
823
811
  var body = iconBodies[size];
824
812
  if (!body) {
825
- throw Error("Icon \"general-clipboard\" is not available in size ".concat(size));
813
+ throw Error("Icon \"general-clipboard\" is not available in size " + size);
826
814
  }
827
815
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
828
816
  };
829
817
  var IconGeneralCommandKey = function (props) {
830
818
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
831
819
  var iconBodies = {
832
- "16": "<path d=\"M5 5v6m0-6h6M5 5V3a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h2Zm0 6h6m-6 0v2a2 2 0 0 1-2 2v0a2 2 0 0 1-2-2v0a2 2 0 0 1 2-2h2Zm6 0V5m0 6h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2v0a2 2 0 0 1-2-2v-2Zm0-6V3a2 2 0 0 1 2-2v0a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2h-2Z\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
820
+ "16": "<path d=\"M5 5v6m0-6h6M5 5V3a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0a2 2 0 0 0 2 2h2Zm0 6h6m-6 0v2a2 2 0 0 1-2 2v0a2 2 0 0 1-2-2v0a2 2 0 0 1 2-2h2Zm6 0V5m0 6h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2v0a2 2 0 0 1-2-2v-2Zm0-6V3a2 2 0 0 1 2-2v0a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2h-2Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
833
821
  };
834
822
  var body = iconBodies[size];
835
823
  if (!body) {
836
- throw Error("Icon \"general-command-key\" is not available in size ".concat(size));
824
+ throw Error("Icon \"general-command-key\" is not available in size " + size);
837
825
  }
838
826
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
839
827
  };
840
828
  var IconGeneralCrosshairs = function (props) {
841
829
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
842
830
  var iconBodies = {
843
- "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0a1 1 0 0 1 1 1v.07A7.004 7.004 0 0 1 14.93 7H15a1 1 0 1 1 0 2h-.07A7.004 7.004 0 0 1 9 14.93V15a1 1 0 1 1-2 0v-.07A7.004 7.004 0 0 1 1.07 9H1a1 1 0 0 1 0-2h.07A7.005 7.005 0 0 1 7 1.07V1a1 1 0 0 1 1-1ZM7 3.1A5.006 5.006 0 0 0 3.1 7H4a1 1 0 0 1 0 2h-.9A5.006 5.006 0 0 0 7 12.9V12a1 1 0 1 1 2 0v.9A5.006 5.006 0 0 0 12.9 9H12a1 1 0 1 1 0-2h.9A5.006 5.006 0 0 0 9 3.1V4a1 1 0 0 1-2 0v-.9Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/><path d=\"M9 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
831
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 0a1 1 0 0 1 1 1v.07A7.004 7.004 0 0 1 14.93 7H15a1 1 0 1 1 0 2h-.07A7.004 7.004 0 0 1 9 14.93V15a1 1 0 1 1-2 0v-.07A7.004 7.004 0 0 1 1.07 9H1a1 1 0 0 1 0-2h.07A7.005 7.005 0 0 1 7 1.07V1a1 1 0 0 1 1-1ZM7 3.1A5.006 5.006 0 0 0 3.1 7H4a1 1 0 0 1 0 2h-.9A5.006 5.006 0 0 0 7 12.9V12a1 1 0 1 1 2 0v.9A5.006 5.006 0 0 0 12.9 9H12a1 1 0 1 1 0-2h.9A5.006 5.006 0 0 0 9 3.1V4a1 1 0 0 1-2 0v-.9Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M9 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
844
832
  };
845
833
  var body = iconBodies[size];
846
834
  if (!body) {
847
- throw Error("Icon \"general-crosshairs\" is not available in size ".concat(size));
835
+ throw Error("Icon \"general-crosshairs\" is not available in size " + size);
848
836
  }
849
837
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
850
838
  };
851
839
  var IconGeneralEarth = function (props) {
852
840
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
853
841
  var iconBodies = {
854
- "16": "<path d=\"M6.825 6.844c.384.53-.018.801-.527 1.144-.464.312-1.018.685-1.145 1.371-.145.785.128 1.563 1.175 2.079.238.117.181 1.293.13 2.358-.018.372-.035.73-.039 1.025l.186.04c2.044-.856 3.464-2.082 4.192-3.72.422-1.157-.406-2.5-1.313-2.954-.453-1.937 1.625-1.484 2.188-1.343.167 0 .122-.193.054-.488-.11-.477-.28-1.222.29-1.84.424-.461.998-.993 1.204-1.18A6.983 6.983 0 0 0 8 1c-.816 0-1.6.14-2.327.396-1.27 3.39-.613 3.948.902 5.235l.25.213Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.605 14.861a7.114 7.114 0 0 1-.186-.04c.004-.295.021-.653.04-1.025.05-1.065.107-2.241-.13-2.358-1.048-.516-1.32-1.294-1.176-2.079.127-.686.68-1.059 1.145-1.371.51-.343.91-.613.527-1.144l-.25-.213C5.06 5.344 4.402 4.786 5.673 1.396A6.989 6.989 0 0 1 8 1c2.074 0 3.938.902 5.22 2.336-.206.188-.78.719-1.204 1.18-.57.618-.4 1.363-.29 1.84.068.295.113.488-.054.488-.563-.14-2.64-.594-2.188 1.343.907.454 1.735 1.797 1.313 2.954-.728 1.638-2.148 2.864-4.192 3.72Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M5.673 1.396a7.003 7.003 0 0 0 .746 13.425M5.673 1.396A6.989 6.989 0 0 1 8 1c2.074 0 3.938.902 5.22 2.336m-7.547-1.94c-1.27 3.39-.613 3.948.902 5.235l.25.213c.384.53-.018.801-.527 1.144-.464.312-1.018.685-1.145 1.371-.145.785.128 1.563 1.175 2.079.238.117.181 1.293.13 2.358-.018.372-.035.73-.039 1.025m6.8-11.485c-.205.188-.779.719-1.203 1.18-.57.618-.4 1.363-.29 1.84.068.295.113.488-.054.488-.563-.14-2.64-.594-2.188 1.343.907.454 1.735 1.797 1.313 2.954-.728 1.638-2.148 2.864-4.192 3.72M13.22 3.336A7 7 0 0 1 6.606 14.86m0 0a7.114 7.114 0 0 1-.187-.04\" class=\"icon-dark\" stroke=\"#1B1E2E\" stroke-width=\"2\"/>"
842
+ "16": "<path d=\"M6.825 6.844c.384.53-.018.801-.527 1.144-.464.312-1.018.685-1.145 1.371-.145.785.128 1.563 1.175 2.079.238.117.181 1.293.13 2.358-.018.372-.035.73-.039 1.025l.186.04c2.044-.856 3.464-2.082 4.192-3.72.422-1.157-.406-2.5-1.313-2.954-.453-1.937 1.625-1.484 2.188-1.343.167 0 .122-.193.054-.488-.11-.477-.28-1.222.29-1.84.424-.461.998-.993 1.204-1.18A6.983 6.983 0 0 0 8 1c-.816 0-1.6.14-2.327.396-1.27 3.39-.613 3.948.902 5.235l.25.213Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.605 14.861a7.114 7.114 0 0 1-.186-.04c.004-.295.021-.653.04-1.025.05-1.065.107-2.241-.13-2.358-1.048-.516-1.32-1.294-1.176-2.079.127-.686.68-1.059 1.145-1.371.51-.343.91-.613.527-1.144l-.25-.213C5.06 5.344 4.402 4.786 5.673 1.396A6.989 6.989 0 0 1 8 1c2.074 0 3.938.902 5.22 2.336-.206.188-.78.719-1.204 1.18-.57.618-.4 1.363-.29 1.84.068.295.113.488-.054.488-.563-.14-2.64-.594-2.188 1.343.907.454 1.735 1.797 1.313 2.954-.728 1.638-2.148 2.864-4.192 3.72Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M5.673 1.396a7.003 7.003 0 0 0 .746 13.425M5.673 1.396A6.989 6.989 0 0 1 8 1c2.074 0 3.938.902 5.22 2.336m-7.547-1.94c-1.27 3.39-.613 3.948.902 5.235l.25.213c.384.53-.018.801-.527 1.144-.464.312-1.018.685-1.145 1.371-.145.785.128 1.563 1.175 2.079.238.117.181 1.293.13 2.358-.018.372-.035.73-.039 1.025m6.8-11.485c-.205.188-.779.719-1.203 1.18-.57.618-.4 1.363-.29 1.84.068.295.113.488-.054.488-.563-.14-2.64-.594-2.188 1.343.907.454 1.735 1.797 1.313 2.954-.728 1.638-2.148 2.864-4.192 3.72M13.22 3.336A7 7 0 0 1 6.606 14.86m0 0a7.114 7.114 0 0 1-.187-.04\" class=\"icon-dark\" stroke=\"currentColor\" stroke-width=\"2\"/>"
855
843
  };
856
844
  var body = iconBodies[size];
857
845
  if (!body) {
858
- throw Error("Icon \"general-earth\" is not available in size ".concat(size));
846
+ throw Error("Icon \"general-earth\" is not available in size " + size);
859
847
  }
860
848
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
861
849
  };
@@ -866,111 +854,111 @@ var IconGeneralEyeClosed = function (props) {
866
854
  };
867
855
  var body = iconBodies[size];
868
856
  if (!body) {
869
- throw Error("Icon \"general-eye-closed\" is not available in size ".concat(size));
857
+ throw Error("Icon \"general-eye-closed\" is not available in size " + size);
870
858
  }
871
859
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
872
860
  };
873
861
  var IconGeneralEyeOpen = function (props) {
874
862
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
875
863
  var iconBodies = {
876
- "16": "<path d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m1 8-.928-.371a1 1 0 0 0 0 .742L1 8Zm14 0 .928.371a1 1 0 0 0 0-.742L15 8ZM1 8l.928.372v.002a.708.708 0 0 1 .013-.033 7.584 7.584 0 0 1 .32-.63c.239-.422.605-.984 1.107-1.542C4.372 5.053 5.872 4 8 4V2C5.128 2 3.128 3.447 1.882 4.831a10.867 10.867 0 0 0-1.69 2.528 6.554 6.554 0 0 0-.119.266v.002H.071c0 .001 0 .002.928.373Zm7-4c2.128 0 3.628 1.053 4.632 2.169A8.871 8.871 0 0 1 14 8.212l.059.13.012.028.002.004v-.001h-.001c0-.001 0-.002.928-.373l.928-.372v-.001l-.001-.002-.002-.006a1.499 1.499 0 0 1-.031-.073 9.567 9.567 0 0 0-.415-.82 10.868 10.868 0 0 0-1.36-1.895C12.871 3.447 10.871 2 8 2v2Zm7 4-.928-.372v-.002l-.001.004-.012.029a7.611 7.611 0 0 1-.32.63c-.239.422-.605.984-1.107 1.542C11.628 10.947 10.128 12 8 12v2c2.872 0 4.872-1.447 6.118-2.831a10.869 10.869 0 0 0 1.69-2.528 6.682 6.682 0 0 0 .117-.26l.002-.006v-.002h.001c0-.001 0-.002-.928-.373Zm-7 4c-2.128 0-3.628-1.053-4.632-2.169A8.868 8.868 0 0 1 2 7.788a4.57 4.57 0 0 1-.073-.162v.001h.001c0 .001 0 .002-.928.373l-.928.372v.001l.001.002a2.09 2.09 0 0 0 .033.079 9.584 9.584 0 0 0 .414.82c.293.515.74 1.203 1.362 1.895C3.128 12.553 5.128 14 8 14v-2Zm1-4a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3H9ZM8 9a1 1 0 0 1-1-1H5a3 3 0 0 0 3 3V9ZM7 8a1 1 0 0 1 1-1V5a3 3 0 0 0-3 3h2Zm1-1a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
864
+ "16": "<path d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m1 8-.928-.371a1 1 0 0 0 0 .742L1 8Zm14 0 .928.371a1 1 0 0 0 0-.742L15 8ZM1 8l.928.372v.002a.708.708 0 0 1 .013-.033 7.584 7.584 0 0 1 .32-.63c.239-.422.605-.984 1.107-1.542C4.372 5.053 5.872 4 8 4V2C5.128 2 3.128 3.447 1.882 4.831a10.867 10.867 0 0 0-1.69 2.528 6.554 6.554 0 0 0-.119.266v.002H.071c0 .001 0 .002.928.373Zm7-4c2.128 0 3.628 1.053 4.632 2.169A8.871 8.871 0 0 1 14 8.212l.059.13.012.028.002.004v-.001h-.001c0-.001 0-.002.928-.373l.928-.372v-.001l-.001-.002-.002-.006a1.499 1.499 0 0 1-.031-.073 9.567 9.567 0 0 0-.415-.82 10.868 10.868 0 0 0-1.36-1.895C12.871 3.447 10.871 2 8 2v2Zm7 4-.928-.372v-.002l-.001.004-.012.029a7.611 7.611 0 0 1-.32.63c-.239.422-.605.984-1.107 1.542C11.628 10.947 10.128 12 8 12v2c2.872 0 4.872-1.447 6.118-2.831a10.869 10.869 0 0 0 1.69-2.528 6.682 6.682 0 0 0 .117-.26l.002-.006v-.002h.001c0-.001 0-.002-.928-.373Zm-7 4c-2.128 0-3.628-1.053-4.632-2.169A8.868 8.868 0 0 1 2 7.788a4.57 4.57 0 0 1-.073-.162v.001h.001c0 .001 0 .002-.928.373l-.928.372v.001l.001.002a2.09 2.09 0 0 0 .033.079 9.584 9.584 0 0 0 .414.82c.293.515.74 1.203 1.362 1.895C3.128 12.553 5.128 14 8 14v-2Zm1-4a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3H9ZM8 9a1 1 0 0 1-1-1H5a3 3 0 0 0 3 3V9ZM7 8a1 1 0 0 1 1-1V5a3 3 0 0 0-3 3h2Zm1-1a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
877
865
  };
878
866
  var body = iconBodies[size];
879
867
  if (!body) {
880
- throw Error("Icon \"general-eye-open\" is not available in size ".concat(size));
868
+ throw Error("Icon \"general-eye-open\" is not available in size " + size);
881
869
  }
882
870
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
883
871
  };
884
872
  var IconGeneralGlobe = function (props) {
885
873
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
886
874
  var iconBodies = {
887
- "16": "<path d=\"M10.5 8c0-1.833-.252-3.502-.664-4.75C9.38 1.866 8.726 1 8 1s-1.38.866-1.836 2.25C5.752 4.498 5.5 6.167 5.5 8c0 .3.007.595.02.885C6.317 8.96 7.147 9 8 9s1.683-.04 2.48-.115c.013-.29.02-.585.02-.885Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M8 1a6.981 6.981 0 0 0-5.142 2.25A6.975 6.975 0 0 0 1 7.971c1.292.437 2.832.755 4.52.914C5.507 8.595 5.5 8.3 5.5 8c0-1.833.252-3.502.664-4.75C6.62 1.866 7.274 1 8 1Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M1 8c0 1.833.705 3.502 1.858 4.75A6.981 6.981 0 0 0 8 15c-.726 0-1.38-.866-1.836-2.25-.345-1.044-.577-2.382-.644-3.865-1.688-.16-3.228-.477-4.52-.914V8Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M6.164 12.75C6.62 14.134 7.274 15 8 15s1.38-.866 1.836-2.25c.345-1.044.577-2.382.644-3.865C9.683 8.96 8.853 9 8 9s-1.683-.04-2.48-.115c.067 1.483.3 2.821.644 3.865Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M8 15a6.981 6.981 0 0 0 5.142-2.25A6.975 6.975 0 0 0 15 8v-.029c-1.292.437-2.832.755-4.52.914-.067 1.483-.3 2.821-.644 3.865C9.38 14.134 8.726 15 8 15Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M13.142 3.25A6.981 6.981 0 0 0 8 1c.726 0 1.38.866 1.836 2.25.412 1.248.664 2.917.664 4.75 0 .3-.007.595-.02.885 1.688-.159 3.228-.477 4.52-.914a6.974 6.974 0 0 0-1.858-4.721Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"m13.142 3.25-.735.679.735-.679Zm-10.284 0 .735.679-.735-.679Zm0 9.5.735-.679-.735.679Zm10.284 0-.735-.679.735.679Zm-3.306-9.5-.95.313.95-.313Zm-3.672 0 .95.313-.95-.313Zm0 9.5-.95.313.95-.313Zm3.672 0 .95.313-.95-.313ZM15 7.971l1-.004-1 .004Zm-14 0-1-.004 1 .004ZM8 2c1.742 0 3.31.741 4.407 1.929l1.47-1.358A7.981 7.981 0 0 0 8 0v2ZM3.593 3.929A5.981 5.981 0 0 1 8 2V0a7.981 7.981 0 0 0-5.876 2.571L3.593 3.93ZM0 8c0 2.095.806 4.003 2.124 5.429l1.469-1.358A5.975 5.975 0 0 1 2 8H0Zm8 6a5.981 5.981 0 0 1-4.407-1.929l-1.47 1.358A7.981 7.981 0 0 0 8 16v-2Zm0 2a7.981 7.981 0 0 0 5.876-2.571l-1.469-1.358A5.981 5.981 0 0 1 8 14v2Zm6-8c0 1.572-.603 3-1.593 4.071l1.47 1.358A7.975 7.975 0 0 0 16 8h-2Zm-2.5 0c0-1.915-.262-3.693-.714-5.063l-1.9.626C9.259 4.69 9.5 6.248 9.5 8h2ZM8 2c-.067 0 .02-.041.238.23.21.263.44.704.649 1.333l1.899-.627c-.249-.753-.573-1.438-.986-1.954C9.395.475 8.793 0 8 0v2Zm-2.786.937C4.762 4.306 4.5 6.085 4.5 8h2c0-1.752.242-3.311.613-4.437l-1.899-.627Zm1.9.626c.207-.63.438-1.07.648-1.333C7.98 1.96 8.067 2 8 2V0c-.793 0-1.395.475-1.8.982-.413.516-.737 1.2-.986 1.954l1.9.627ZM8 14c.067 0-.02.041-.238-.23-.21-.263-.44-.704-.649-1.333l-1.899.626c.249.754.573 1.439.986 1.955.405.507 1.007.982 1.8.982v-2Zm0 2c.793 0 1.395-.475 1.8-.982.413-.516.737-1.2.986-1.955l-1.9-.627c-.207.63-.438 1.071-.648 1.334-.217.271-.305.23-.238.23v2Zm8-8v-.033l-2 .008V8h2Zm0-.033a7.975 7.975 0 0 0-2.124-5.396L12.407 3.93A5.975 5.975 0 0 1 14 7.975l2-.008ZM2.124 2.571A7.975 7.975 0 0 0 0 7.967l2 .008A5.975 5.975 0 0 1 3.593 3.93L2.123 2.57ZM0 7.967V8h2v-.025l-2-.008ZM4.5 8c0 .315.007.625.02.93l1.999-.09A18.68 18.68 0 0 1 6.5 8h-2Zm.926 1.88C6.255 9.96 7.116 10 8 10V8c-.822 0-1.62-.038-2.386-.11l-.188 1.99ZM8 10c.884 0 1.745-.041 2.574-.12l-.188-1.99C9.621 7.962 8.822 8 8 8v2Zm3.48-1.07c.013-.305.02-.615.02-.93h-2c0 .285-.006.565-.019.84l1.998.09Zm-.906.95c1.752-.165 3.37-.496 4.746-.961l-.64-1.895c-1.207.408-2.67.712-4.294.866l.188 1.99ZM9.481 8.84c-.063 1.413-.284 2.658-.594 3.597l1.899.626c.38-1.149.623-2.58.693-4.133l-1.998-.09Zm-3.867-.95c-1.625-.154-3.087-.458-4.294-.866L.68 8.919c1.377.465 2.994.796 4.746.962l.188-1.991ZM4.52 8.93c.07 1.553.314 2.985.693 4.133l1.9-.627c-.31-.938-.532-2.183-.595-3.596l-1.998.09ZM0 7.97 0 7.997l2 .004v-.029L0 7.97ZM16 7.997v-.029l-2 .004v.029l2-.004Z\" class=\"icon-dark\" fill=\"#1B1E2E\"/>",
888
- "48": "<path d=\"M31 24h12c0-4.976-1.913-9.506-5.044-12.893-2.187 1.12-4.967 1.978-8.105 2.458C30.577 16.56 31 20.146 31 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M29.85 13.565c3.139-.48 5.92-1.337 8.106-2.458A18.95 18.95 0 0 0 24 5c2.446 0 4.6 3.406 5.85 8.565Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M24 5c-2.446 0-4.6 3.406-5.85 8.565 1.842.283 3.809.435 5.85.435 2.041 0 4.008-.152 5.85-.435C28.6 8.405 26.447 5 24 5Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 24h14c0-3.854-.423-7.44-1.15-10.435-1.842.283-3.809.435-5.85.435-2.041 0-4.008-.152-5.85-.435C17.422 16.56 17 20.146 17 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M5 24h12c0-3.854.423-7.44 1.15-10.435-3.139-.48-5.92-1.337-8.106-2.458A18.933 18.933 0 0 0 5 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M18.15 13.565C19.4 8.405 21.553 5 24 5a18.95 18.95 0 0 0-13.956 6.107c2.186 1.12 4.967 1.978 8.105 2.458ZM18.15 34.435c-3.139.48-5.92 1.337-8.106 2.458A18.95 18.95 0 0 0 24 43c-2.446 0-4.6-3.406-5.85-8.565Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 24H5c0 4.976 1.913 9.506 5.044 12.893 2.186-1.12 4.967-1.978 8.105-2.458C17.423 31.44 17 27.854 17 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M31 24H17c0 3.854.423 7.44 1.15 10.435A38.768 38.768 0 0 1 24 34c2.041 0 4.008.153 5.85.435C30.578 31.44 31 27.854 31 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M18.15 34.435C19.4 39.595 21.553 43 24 43c2.446 0 4.6-3.406 5.85-8.565A38.768 38.768 0 0 0 24 34c-2.041 0-4.008.153-5.85.435Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M24 43a18.95 18.95 0 0 0 13.956-6.107c-2.187-1.12-4.967-1.978-8.105-2.458C28.599 39.595 26.446 43 24 43Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M43 24H31c0 3.854-.423 7.44-1.15 10.435 3.139.48 5.92 1.337 8.106 2.458A18.933 18.933 0 0 0 43 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M24 14v1-1Zm0 20v-1 1Zm19-11H5v2h38v-2Zm-12 2h12v-2H31v2Zm13-1a19.932 19.932 0 0 0-5.31-13.572l-1.468 1.358A17.932 17.932 0 0 1 42 24h2Zm-6.5-13.783c-2.071 1.062-4.745 1.892-7.8 2.36l.302 1.977c3.22-.494 6.108-1.377 8.41-2.557l-.912-1.78Zm-8.621 3.584C29.584 16.709 30 20.215 30 24h2c0-3.923-.43-7.59-1.177-10.67l-1.944.47ZM24 6c.723 0 1.61.51 2.542 1.904.912 1.363 1.727 3.381 2.337 5.897l1.944-.472c-.642-2.643-1.529-4.908-2.618-6.537C27.135 5.192 25.723 4 24 4v2Zm5.7 6.577A37.773 37.773 0 0 1 24 13v2c2.09 0 4.108-.156 6.002-.446l-.303-1.977ZM24 6a17.95 17.95 0 0 1 13.222 5.786l1.469-1.358A19.949 19.949 0 0 0 24 4v2Zm0-2c-1.723 0-3.136 1.193-4.205 2.792-1.089 1.63-1.976 3.894-2.618 6.537l1.944.472c.61-2.516 1.425-4.534 2.337-5.897C22.39 6.51 23.278 6 24 6V4Zm-6.002 10.554c1.894.29 3.911.446 6.002.446v-2c-1.992 0-3.908-.149-5.7-.423l-.302 1.977ZM18 24c0-3.785.416-7.29 1.121-10.2l-1.944-.47C16.43 16.41 16 20.076 16 24h2Zm-1 1h14v-2H17v2ZM5 25h12v-2H5v2Zm13.3-12.423c-3.055-.468-5.729-1.298-7.8-2.36l-.912 1.78c2.302 1.18 5.19 2.063 8.41 2.557l.303-1.977Zm-8.99-2.149A19.932 19.932 0 0 0 4 24h2c0-4.715 1.811-9.004 4.778-12.214L9.31 10.428Zm1.468 1.358A17.95 17.95 0 0 1 24 6V4a19.95 19.95 0 0 0-14.69 6.428l1.468 1.358ZM4 24a19.932 19.932 0 0 0 5.31 13.572l1.468-1.358A17.932 17.932 0 0 1 6 24H4Zm6.5 13.783c2.071-1.062 4.745-1.892 7.8-2.36l-.302-1.977c-3.22.494-6.108 1.377-8.41 2.557l.912 1.78Zm8.621-3.584C18.416 31.291 18 27.785 18 24h-2c0 3.923.43 7.59 1.177 10.67l1.944-.47ZM24 42c-.723 0-1.61-.51-2.542-1.904-.912-1.363-1.727-3.381-2.337-5.897l-1.944.471c.642 2.644 1.529 4.909 2.618 6.538C20.865 42.808 22.277 44 24 44v-2Zm-5.7-6.577A37.773 37.773 0 0 1 24 35v-2c-2.09 0-4.108.156-6.002.446l.303 1.977ZM24 42a17.949 17.949 0 0 1-13.222-5.786L9.31 37.572A19.949 19.949 0 0 0 24 44v-2Zm0-7c1.992 0 3.908.149 5.7.423l.302-1.977A39.778 39.778 0 0 0 24 33v2Zm6.823-.33C31.57 31.59 32 27.923 32 24h-2c0 3.785-.416 7.29-1.121 10.2l1.944.47Zm-1.944-.47c-.61 2.515-1.425 4.533-2.337 5.896C25.61 41.49 24.722 42 24 42v2c1.723 0 3.136-1.193 4.205-2.792 1.089-1.63 1.976-3.894 2.618-6.538l-1.944-.47ZM24 44a19.949 19.949 0 0 0 14.69-6.428l-1.468-1.358A17.949 17.949 0 0 1 24 42v2Zm14.412-7.997c-2.302-1.18-5.19-2.063-8.41-2.557l-.303 1.977c3.056.468 5.73 1.298 7.801 2.36l.912-1.78ZM42 24c0 4.715-1.811 9.004-4.778 12.214l1.469 1.358A19.932 19.932 0 0 0 44 24h-2Z\" class=\"icon-dark\" fill=\"#1B1E2E\"/>"
875
+ "16": "<path d=\"M10.5 8c0-1.833-.252-3.502-.664-4.75C9.38 1.866 8.726 1 8 1s-1.38.866-1.836 2.25C5.752 4.498 5.5 6.167 5.5 8c0 .3.007.595.02.885C6.317 8.96 7.147 9 8 9s1.683-.04 2.48-.115c.013-.29.02-.585.02-.885Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M8 1a6.981 6.981 0 0 0-5.142 2.25A6.975 6.975 0 0 0 1 7.971c1.292.437 2.832.755 4.52.914C5.507 8.595 5.5 8.3 5.5 8c0-1.833.252-3.502.664-4.75C6.62 1.866 7.274 1 8 1Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M1 8c0 1.833.705 3.502 1.858 4.75A6.981 6.981 0 0 0 8 15c-.726 0-1.38-.866-1.836-2.25-.345-1.044-.577-2.382-.644-3.865-1.688-.16-3.228-.477-4.52-.914V8Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M6.164 12.75C6.62 14.134 7.274 15 8 15s1.38-.866 1.836-2.25c.345-1.044.577-2.382.644-3.865C9.683 8.96 8.853 9 8 9s-1.683-.04-2.48-.115c.067 1.483.3 2.821.644 3.865Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M8 15a6.981 6.981 0 0 0 5.142-2.25A6.975 6.975 0 0 0 15 8v-.029c-1.292.437-2.832.755-4.52.914-.067 1.483-.3 2.821-.644 3.865C9.38 14.134 8.726 15 8 15Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M13.142 3.25A6.981 6.981 0 0 0 8 1c.726 0 1.38.866 1.836 2.25.412 1.248.664 2.917.664 4.75 0 .3-.007.595-.02.885 1.688-.159 3.228-.477 4.52-.914a6.974 6.974 0 0 0-1.858-4.721Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"m13.142 3.25-.735.679.735-.679Zm-10.284 0 .735.679-.735-.679Zm0 9.5.735-.679-.735.679Zm10.284 0-.735-.679.735.679Zm-3.306-9.5-.95.313.95-.313Zm-3.672 0 .95.313-.95-.313Zm0 9.5-.95.313.95-.313Zm3.672 0 .95.313-.95-.313ZM15 7.971l1-.004-1 .004Zm-14 0-1-.004 1 .004ZM8 2c1.742 0 3.31.741 4.407 1.929l1.47-1.358A7.981 7.981 0 0 0 8 0v2ZM3.593 3.929A5.981 5.981 0 0 1 8 2V0a7.981 7.981 0 0 0-5.876 2.571L3.593 3.93ZM0 8c0 2.095.806 4.003 2.124 5.429l1.469-1.358A5.975 5.975 0 0 1 2 8H0Zm8 6a5.981 5.981 0 0 1-4.407-1.929l-1.47 1.358A7.981 7.981 0 0 0 8 16v-2Zm0 2a7.981 7.981 0 0 0 5.876-2.571l-1.469-1.358A5.981 5.981 0 0 1 8 14v2Zm6-8c0 1.572-.603 3-1.593 4.071l1.47 1.358A7.975 7.975 0 0 0 16 8h-2Zm-2.5 0c0-1.915-.262-3.693-.714-5.063l-1.9.626C9.259 4.69 9.5 6.248 9.5 8h2ZM8 2c-.067 0 .02-.041.238.23.21.263.44.704.649 1.333l1.899-.627c-.249-.753-.573-1.438-.986-1.954C9.395.475 8.793 0 8 0v2Zm-2.786.937C4.762 4.306 4.5 6.085 4.5 8h2c0-1.752.242-3.311.613-4.437l-1.899-.627Zm1.9.626c.207-.63.438-1.07.648-1.333C7.98 1.96 8.067 2 8 2V0c-.793 0-1.395.475-1.8.982-.413.516-.737 1.2-.986 1.954l1.9.627ZM8 14c.067 0-.02.041-.238-.23-.21-.263-.44-.704-.649-1.333l-1.899.626c.249.754.573 1.439.986 1.955.405.507 1.007.982 1.8.982v-2Zm0 2c.793 0 1.395-.475 1.8-.982.413-.516.737-1.2.986-1.955l-1.9-.627c-.207.63-.438 1.071-.648 1.334-.217.271-.305.23-.238.23v2Zm8-8v-.033l-2 .008V8h2Zm0-.033a7.975 7.975 0 0 0-2.124-5.396L12.407 3.93A5.975 5.975 0 0 1 14 7.975l2-.008ZM2.124 2.571A7.975 7.975 0 0 0 0 7.967l2 .008A5.975 5.975 0 0 1 3.593 3.93L2.123 2.57ZM0 7.967V8h2v-.025l-2-.008ZM4.5 8c0 .315.007.625.02.93l1.999-.09A18.68 18.68 0 0 1 6.5 8h-2Zm.926 1.88C6.255 9.96 7.116 10 8 10V8c-.822 0-1.62-.038-2.386-.11l-.188 1.99ZM8 10c.884 0 1.745-.041 2.574-.12l-.188-1.99C9.621 7.962 8.822 8 8 8v2Zm3.48-1.07c.013-.305.02-.615.02-.93h-2c0 .285-.006.565-.019.84l1.998.09Zm-.906.95c1.752-.165 3.37-.496 4.746-.961l-.64-1.895c-1.207.408-2.67.712-4.294.866l.188 1.99ZM9.481 8.84c-.063 1.413-.284 2.658-.594 3.597l1.899.626c.38-1.149.623-2.58.693-4.133l-1.998-.09Zm-3.867-.95c-1.625-.154-3.087-.458-4.294-.866L.68 8.919c1.377.465 2.994.796 4.746.962l.188-1.991ZM4.52 8.93c.07 1.553.314 2.985.693 4.133l1.9-.627c-.31-.938-.532-2.183-.595-3.596l-1.998.09ZM0 7.97 0 7.997l2 .004v-.029L0 7.97ZM16 7.997v-.029l-2 .004v.029l2-.004Z\" class=\"icon-dark\" fill=\"currentColor\"/>",
876
+ "48": "<path d=\"M31 24h12c0-4.976-1.913-9.506-5.044-12.893-2.187 1.12-4.967 1.978-8.105 2.458C30.577 16.56 31 20.146 31 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M29.85 13.565c3.139-.48 5.92-1.337 8.106-2.458A18.95 18.95 0 0 0 24 5c2.446 0 4.6 3.406 5.85 8.565Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M24 5c-2.446 0-4.6 3.406-5.85 8.565 1.842.283 3.809.435 5.85.435 2.041 0 4.008-.152 5.85-.435C28.6 8.405 26.447 5 24 5Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 24h14c0-3.854-.423-7.44-1.15-10.435-1.842.283-3.809.435-5.85.435-2.041 0-4.008-.152-5.85-.435C17.422 16.56 17 20.146 17 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M5 24h12c0-3.854.423-7.44 1.15-10.435-3.139-.48-5.92-1.337-8.106-2.458A18.933 18.933 0 0 0 5 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M18.15 13.565C19.4 8.405 21.553 5 24 5a18.95 18.95 0 0 0-13.956 6.107c2.186 1.12 4.967 1.978 8.105 2.458ZM18.15 34.435c-3.139.48-5.92 1.337-8.106 2.458A18.95 18.95 0 0 0 24 43c-2.446 0-4.6-3.406-5.85-8.565Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M17 24H5c0 4.976 1.913 9.506 5.044 12.893 2.186-1.12 4.967-1.978 8.105-2.458C17.423 31.44 17 27.854 17 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M31 24H17c0 3.854.423 7.44 1.15 10.435A38.768 38.768 0 0 1 24 34c2.041 0 4.008.153 5.85.435C30.578 31.44 31 27.854 31 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M18.15 34.435C19.4 39.595 21.553 43 24 43c2.446 0 4.6-3.406 5.85-8.565A38.768 38.768 0 0 0 24 34c-2.041 0-4.008.153-5.85.435Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M24 43a18.95 18.95 0 0 0 13.956-6.107c-2.187-1.12-4.967-1.978-8.105-2.458C28.599 39.595 26.446 43 24 43Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M43 24H31c0 3.854-.423 7.44-1.15 10.435 3.139.48 5.92 1.337 8.106 2.458A18.933 18.933 0 0 0 43 24Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M24 14v1-1Zm0 20v-1 1Zm19-11H5v2h38v-2Zm-12 2h12v-2H31v2Zm13-1a19.932 19.932 0 0 0-5.31-13.572l-1.468 1.358A17.932 17.932 0 0 1 42 24h2Zm-6.5-13.783c-2.071 1.062-4.745 1.892-7.8 2.36l.302 1.977c3.22-.494 6.108-1.377 8.41-2.557l-.912-1.78Zm-8.621 3.584C29.584 16.709 30 20.215 30 24h2c0-3.923-.43-7.59-1.177-10.67l-1.944.47ZM24 6c.723 0 1.61.51 2.542 1.904.912 1.363 1.727 3.381 2.337 5.897l1.944-.472c-.642-2.643-1.529-4.908-2.618-6.537C27.135 5.192 25.723 4 24 4v2Zm5.7 6.577A37.773 37.773 0 0 1 24 13v2c2.09 0 4.108-.156 6.002-.446l-.303-1.977ZM24 6a17.95 17.95 0 0 1 13.222 5.786l1.469-1.358A19.949 19.949 0 0 0 24 4v2Zm0-2c-1.723 0-3.136 1.193-4.205 2.792-1.089 1.63-1.976 3.894-2.618 6.537l1.944.472c.61-2.516 1.425-4.534 2.337-5.897C22.39 6.51 23.278 6 24 6V4Zm-6.002 10.554c1.894.29 3.911.446 6.002.446v-2c-1.992 0-3.908-.149-5.7-.423l-.302 1.977ZM18 24c0-3.785.416-7.29 1.121-10.2l-1.944-.47C16.43 16.41 16 20.076 16 24h2Zm-1 1h14v-2H17v2ZM5 25h12v-2H5v2Zm13.3-12.423c-3.055-.468-5.729-1.298-7.8-2.36l-.912 1.78c2.302 1.18 5.19 2.063 8.41 2.557l.303-1.977Zm-8.99-2.149A19.932 19.932 0 0 0 4 24h2c0-4.715 1.811-9.004 4.778-12.214L9.31 10.428Zm1.468 1.358A17.95 17.95 0 0 1 24 6V4a19.95 19.95 0 0 0-14.69 6.428l1.468 1.358ZM4 24a19.932 19.932 0 0 0 5.31 13.572l1.468-1.358A17.932 17.932 0 0 1 6 24H4Zm6.5 13.783c2.071-1.062 4.745-1.892 7.8-2.36l-.302-1.977c-3.22.494-6.108 1.377-8.41 2.557l.912 1.78Zm8.621-3.584C18.416 31.291 18 27.785 18 24h-2c0 3.923.43 7.59 1.177 10.67l1.944-.47ZM24 42c-.723 0-1.61-.51-2.542-1.904-.912-1.363-1.727-3.381-2.337-5.897l-1.944.471c.642 2.644 1.529 4.909 2.618 6.538C20.865 42.808 22.277 44 24 44v-2Zm-5.7-6.577A37.773 37.773 0 0 1 24 35v-2c-2.09 0-4.108.156-6.002.446l.303 1.977ZM24 42a17.949 17.949 0 0 1-13.222-5.786L9.31 37.572A19.949 19.949 0 0 0 24 44v-2Zm0-7c1.992 0 3.908.149 5.7.423l.302-1.977A39.778 39.778 0 0 0 24 33v2Zm6.823-.33C31.57 31.59 32 27.923 32 24h-2c0 3.785-.416 7.29-1.121 10.2l1.944.47Zm-1.944-.47c-.61 2.515-1.425 4.533-2.337 5.896C25.61 41.49 24.722 42 24 42v2c1.723 0 3.136-1.193 4.205-2.792 1.089-1.63 1.976-3.894 2.618-6.538l-1.944-.47ZM24 44a19.949 19.949 0 0 0 14.69-6.428l-1.468-1.358A17.949 17.949 0 0 1 24 42v2Zm14.412-7.997c-2.302-1.18-5.19-2.063-8.41-2.557l-.303 1.977c3.056.468 5.73 1.298 7.801 2.36l.912-1.78ZM42 24c0 4.715-1.811 9.004-4.778 12.214l1.469 1.358A19.932 19.932 0 0 0 44 24h-2Z\" class=\"icon-dark\" fill=\"currentColor\"/>"
889
877
  };
890
878
  var body = iconBodies[size];
891
879
  if (!body) {
892
- throw Error("Icon \"general-globe\" is not available in size ".concat(size));
880
+ throw Error("Icon \"general-globe\" is not available in size " + size);
893
881
  }
894
882
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
895
883
  };
896
884
  var IconGeneralGrid2X2 = function (props) {
897
885
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
898
886
  var iconBodies = {
899
- "16": "<path d=\"M2 2h4v4H2V2ZM2 10h4v4H2v-4ZM10 2h4v4h-4V2ZM10 10h4v4h-4v-4Z\" fill=\"currentColor\" style=\"opacity:.35\" class=\"icon-light\"/><path d=\"M2 2h4v4H2V2ZM2 10h4v4H2v-4ZM10 2h4v4h-4V2ZM10 10h4v4h-4v-4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
900
- "24": "<path d=\"M3 3h7v7H3V3ZM3 14h7v7H3v-7ZM14 3h7v7h-7V3ZM14 14h7v7h-7v-7Z\" fill=\"currentColor\" style=\"opacity:.35\" class=\"icon-light\"/><path d=\"M3 3h7v7H3V3ZM3 14h7v7H3v-7ZM14 3h7v7h-7V3ZM14 14h7v7h-7v-7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
887
+ "16": "<path d=\"M2 2h4v4H2V2ZM2 10h4v4H2v-4ZM10 2h4v4h-4V2ZM10 10h4v4h-4v-4Z\" fill=\"#D0D2E0\" style=\"opacity:.35\" class=\"icon-light\"/><path d=\"M2 2h4v4H2V2ZM2 10h4v4H2v-4ZM10 2h4v4h-4V2ZM10 10h4v4h-4v-4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
888
+ "24": "<path d=\"M3 3h7v7H3V3ZM3 14h7v7H3v-7ZM14 3h7v7h-7V3ZM14 14h7v7h-7v-7Z\" fill=\"#D0D2E0\" style=\"opacity:.35\" class=\"icon-light\"/><path d=\"M3 3h7v7H3V3ZM3 14h7v7H3v-7ZM14 3h7v7h-7V3ZM14 14h7v7h-7v-7Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
901
889
  };
902
890
  var body = iconBodies[size];
903
891
  if (!body) {
904
- throw Error("Icon \"general-grid-2x2\" is not available in size ".concat(size));
892
+ throw Error("Icon \"general-grid-2x2\" is not available in size " + size);
905
893
  }
906
894
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
907
895
  };
908
896
  var IconGeneralLifeRing = function (props) {
909
897
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
910
898
  var iconBodies = {
911
- "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 1a7 7 0 0 1 7 7h-4a3 3 0 0 0-3-3V1ZM5 8H1a7 7 0 0 0 7 7v-4a3 3 0 0 1-3-3Z\" fill=\"#C5C9FD\" class=\"icon-light\"/><path d=\"M15 8a7 7 0 0 1-7 7m7-7a7 7 0 0 0-7-7m7 7h-4m-3 7a7 7 0 0 1-7-7m7 7v-4M1 8a7 7 0 0 1 7-7M1 8h4m3-7v4m3 3a3 3 0 0 1-3 3m3-3a3 3 0 0 0-3-3m0 6a3 3 0 0 1-3-3m0 0a3 3 0 0 1 3-3\" stroke=\"#4956E3\" class=\"icon-dark\" stroke-width=\"2\"/>"
899
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 1a7 7 0 0 1 7 7h-4a3 3 0 0 0-3-3V1ZM5 8H1a7 7 0 0 0 7 7v-4a3 3 0 0 1-3-3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M15 8a7 7 0 0 1-7 7m7-7a7 7 0 0 0-7-7m7 7h-4m-3 7a7 7 0 0 1-7-7m7 7v-4M1 8a7 7 0 0 1 7-7M1 8h4m3-7v4m3 3a3 3 0 0 1-3 3m3-3a3 3 0 0 0-3-3m0 6a3 3 0 0 1-3-3m0 0a3 3 0 0 1 3-3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\"/>"
912
900
  };
913
901
  var body = iconBodies[size];
914
902
  if (!body) {
915
- throw Error("Icon \"general-life-ring\" is not available in size ".concat(size));
903
+ throw Error("Icon \"general-life-ring\" is not available in size " + size);
916
904
  }
917
905
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
918
906
  };
919
907
  var IconGeneralOfficeBuilding = function (props) {
920
908
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
921
909
  var iconBodies = {
922
- "16": "<path d=\"M10 4v10h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-4Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M10 14H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v2m0 10V4m0 10h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-4\" stroke=\"#1B1E2E\" stroke-width=\"2\" class=\"icon-dark\"/><path d=\"M3 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM12 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM12 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM3 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM3 9.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM6 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM6 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM6 9.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
910
+ "16": "<path d=\"M10 4v10h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-4Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M10 14H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v2m0 10V4m0 10h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-4\" stroke=\"currentColor\" stroke-width=\"2\" class=\"icon-dark\"/><path d=\"M3 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM12 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM12 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM3 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM3 9.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM6 3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM6 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1ZM6 9.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
923
911
  };
924
912
  var body = iconBodies[size];
925
913
  if (!body) {
926
- throw Error("Icon \"general-office-building\" is not available in size ".concat(size));
914
+ throw Error("Icon \"general-office-building\" is not available in size " + size);
927
915
  }
928
916
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
929
917
  };
930
918
  var IconGeneralPlaceholder = function (props) {
931
919
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
932
920
  var iconBodies = {
933
- "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\"/>",
934
- "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\"/>",
935
- "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\"/>",
936
- "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\"/>"
921
+ "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=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\"/>",
922
+ "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=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\"/>",
923
+ "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=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\"/>",
924
+ "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=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\"/>"
937
925
  };
938
926
  var body = iconBodies[size];
939
927
  if (!body) {
940
- throw Error("Icon \"general-placeholder\" is not available in size ".concat(size));
928
+ throw Error("Icon \"general-placeholder\" is not available in size " + size);
941
929
  }
942
930
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
943
931
  };
944
932
  var IconLoading = function (props) {
945
933
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
946
934
  var iconBodies = {
947
- "16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" class=\"icon-light\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 8a6 6 0 0 0-6-6\" stroke=\"#6470F3\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
935
+ "16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#D0D2E0\" class=\"icon-light\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 8a6 6 0 0 0-6-6\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
948
936
  };
949
937
  var body = iconBodies[size];
950
938
  if (!body) {
951
- throw Error("Icon \"loading\" is not available in size ".concat(size));
939
+ throw Error("Icon \"loading\" is not available in size " + size);
952
940
  }
953
941
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
954
942
  };
955
943
  var IconMenuDotsVertical = function (props) {
956
944
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
957
945
  var iconBodies = {
958
- "16": "<path d=\"M10 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM10 14a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" class=\"icon-dark\" fill=\"#1B1E2E\"/>"
946
+ "16": "<path d=\"M10 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM10 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM10 14a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" class=\"icon-dark\" fill=\"currentColor\"/>"
959
947
  };
960
948
  var body = iconBodies[size];
961
949
  if (!body) {
962
- throw Error("Icon \"menu-dots-vertical\" is not available in size ".concat(size));
950
+ throw Error("Icon \"menu-dots-vertical\" is not available in size " + size);
963
951
  }
964
952
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
965
953
  };
966
954
  var IconMenuExpandLeft = function (props) {
967
955
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
968
956
  var iconBodies = {
969
- "16": "<path d=\"M14 3H8m6 5H2m0 0 2.5-2.5M2 8l2.5 2.5M14 13H8\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
957
+ "16": "<path d=\"M14 3H8m6 5H2m0 0 2.5-2.5M2 8l2.5 2.5M14 13H8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
970
958
  };
971
959
  var body = iconBodies[size];
972
960
  if (!body) {
973
- throw Error("Icon \"menu-expand-left\" is not available in size ".concat(size));
961
+ throw Error("Icon \"menu-expand-left\" is not available in size " + size);
974
962
  }
975
963
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
976
964
  };
@@ -981,77 +969,77 @@ var IconMenuExpandRight = function (props) {
981
969
  };
982
970
  var body = iconBodies[size];
983
971
  if (!body) {
984
- throw Error("Icon \"menu-expand-right\" is not available in size ".concat(size));
972
+ throw Error("Icon \"menu-expand-right\" is not available in size " + size);
985
973
  }
986
974
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
987
975
  };
988
976
  var IconObjectBookCode = function (props) {
989
977
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
990
978
  var iconBodies = {
991
- "48": "<path d=\"M40 5H10a2 2 0 0 0-2 2v28h32V5Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M40 43h-1M8 35v6a2 2 0 0 0 2 2v0m-2-8V7a2 2 0 0 1 2-2v0M8 35h2m0-30h30v30h-1M10 5v30m0 0v8m0-8h29m-29 8h29m0-8s-1 4 0 8M21 17l-3 3 3 3m8-6 3 3-3 3m-5.5 2.5 3-11\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 39h8v8l-4-1.714L14 47v-8Z\" fill=\"#69D3A7\" class=\"icon-light-secondary\"/><path d=\"M14 39v-1h-1v1h1Zm8 0h1v-1h-1v1Zm0 8-.394.92A1 1 0 0 0 23 47h-1Zm-8 0h-1a1 1 0 0 0 1.394.92L14 47Zm4-1.714.394-.92a1 1 0 0 0-.788 0l.394.92ZM14 40h8v-2h-8v2Zm7-1v8h2v-8h-2Zm-6 8v-8h-2v8h2Zm7.394-.92-4-1.713-.788 1.838 4 1.714.788-1.838Zm-4.788-1.713-4 1.714.788 1.838 4-1.714-.788-1.838Z\" class=\"icon-dark-secondary\" fill=\"#00814D\"/>"
979
+ "48": "<path d=\"M40 5H10a2 2 0 0 0-2 2v28h32V5Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M40 43h-1M8 35v6a2 2 0 0 0 2 2v0m-2-8V7a2 2 0 0 1 2-2v0M8 35h2m0-30h30v30h-1M10 5v30m0 0v8m0-8h29m-29 8h29m0-8s-1 4 0 8M21 17l-3 3 3 3m8-6 3 3-3 3m-5.5 2.5 3-11\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 39h8v8l-4-1.714L14 47v-8Z\" fill=\"#69D3A7\" class=\"icon-light-secondary\"/><path d=\"M14 39v-1h-1v1h1Zm8 0h1v-1h-1v1Zm0 8-.394.92A1 1 0 0 0 23 47h-1Zm-8 0h-1a1 1 0 0 0 1.394.92L14 47Zm4-1.714.394-.92a1 1 0 0 0-.788 0l.394.92ZM14 40h8v-2h-8v2Zm7-1v8h2v-8h-2Zm-6 8v-8h-2v8h2Zm7.394-.92-4-1.713-.788 1.838 4 1.714.788-1.838Zm-4.788-1.713-4 1.714.788 1.838 4-1.714-.788-1.838Z\" class=\"icon-dark-secondary\" fill=\"#00814D\"/>"
992
980
  };
993
981
  var body = iconBodies[size];
994
982
  if (!body) {
995
- throw Error("Icon \"object-book-code\" is not available in size ".concat(size));
983
+ throw Error("Icon \"object-book-code\" is not available in size " + size);
996
984
  }
997
985
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
998
986
  };
999
987
  var IconObjectBook = function (props) {
1000
988
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1001
989
  var iconBodies = {
1002
- "16": "<path d=\"M13 2H4a1 1 0 0 0-1 1v8h10V2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M13 11V2H4m9 9H4m9 0v3H4m-1-3v2a1 1 0 0 0 1 1v0m-1-3V3a1 1 0 0 1 1-1v0m-1 9h1m0-9v9m0 0v3m6-9H7\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1003
- "24": "<path d=\"M20 3H5a1 1 0 0 0-1 1v13h16V3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M20 17V3H5m15 14H5m15 0v4H5m-1-4v3a1 1 0 0 0 1 1v0m-1-4V4a1 1 0 0 1 1-1v0M4 17h1M5 3v14m0 0v4M16 7H9m0 3h6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1004
- "48": "<path d=\"M40 5H10a2 2 0 0 0-2 2v28h32V5Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M40 43h-1M8 35v6a2 2 0 0 0 2 2v0m-2-8V7a2 2 0 0 1 2-2v0M8 35h2m0-30h30v30h-1M10 5v30m0 0v8m0-8h29m-29 8h29M16 17h13m10 18s-1 4 0 8m-5-32H16v2h18v-2Z\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 39h8v8l-4-1.714L14 47v-8Z\" fill=\"#69D3A7\"/><path d=\"M14 39v-1h-1v1h1Zm8 0h1v-1h-1v1Zm0 8-.394.92A1 1 0 0 0 23 47h-1Zm-8 0h-1a1 1 0 0 0 1.394.92L14 47Zm4-1.714.394-.92a1 1 0 0 0-.788 0l.394.92ZM14 40h8v-2h-8v2Zm7-1v8h2v-8h-2Zm-6 8v-8h-2v8h2Zm7.394-.92-4-1.713-.788 1.838 4 1.714.788-1.838Zm-4.788-1.713-4 1.714.788 1.838 4-1.714-.788-1.838Z\" fill=\"#00814D\"/>"
990
+ "16": "<path d=\"M13 2H4a1 1 0 0 0-1 1v8h10V2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M13 11V2H4m9 9H4m9 0v3H4m-1-3v2a1 1 0 0 0 1 1v0m-1-3V3a1 1 0 0 1 1-1v0m-1 9h1m0-9v9m0 0v3m6-9H7\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
991
+ "24": "<path d=\"M20 3H5a1 1 0 0 0-1 1v13h16V3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M20 17V3H5m15 14H5m15 0v4H5m-1-4v3a1 1 0 0 0 1 1v0m-1-4V4a1 1 0 0 1 1-1v0M4 17h1M5 3v14m0 0v4M16 7H9m0 3h6\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
992
+ "48": "<path d=\"M40 5H10a2 2 0 0 0-2 2v28h32V5Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M40 43h-1M8 35v6a2 2 0 0 0 2 2v0m-2-8V7a2 2 0 0 1 2-2v0M8 35h2m0-30h30v30h-1M10 5v30m0 0v8m0-8h29m-29 8h29M16 17h13m10 18s-1 4 0 8m-5-32H16v2h18v-2Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 39h8v8l-4-1.714L14 47v-8Z\" fill=\"#69D3A7\"/><path d=\"M14 39v-1h-1v1h1Zm8 0h1v-1h-1v1Zm0 8-.394.92A1 1 0 0 0 23 47h-1Zm-8 0h-1a1 1 0 0 0 1.394.92L14 47Zm4-1.714.394-.92a1 1 0 0 0-.788 0l.394.92ZM14 40h8v-2h-8v2Zm7-1v8h2v-8h-2Zm-6 8v-8h-2v8h2Zm7.394-.92-4-1.713-.788 1.838 4 1.714.788-1.838Zm-4.788-1.713-4 1.714.788 1.838 4-1.714-.788-1.838Z\" fill=\"#00814D\"/>"
1005
993
  };
1006
994
  var body = iconBodies[size];
1007
995
  if (!body) {
1008
- throw Error("Icon \"object-book\" is not available in size ".concat(size));
996
+ throw Error("Icon \"object-book\" is not available in size " + size);
1009
997
  }
1010
998
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1011
999
  };
1012
1000
  var IconObjectBookmark = function (props) {
1013
1001
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1014
1002
  var iconBodies = {
1015
- "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 2a2 2 0 0 1 2 2v10l-5-2-5 2V4a2 2 0 0 1 2-2h6ZM8.388 6.515 8 5.049l-.388 1.466-1.514-.084 1.274.822-.548 1.414L8 7.709l1.176.958-.548-1.414 1.274-.822-1.514.084Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m13 14-.371.928A1 1 0 0 0 14 14h-1Zm-5-2 .371-.928a1 1 0 0 0-.742 0L8 12Zm-5 2H2a1 1 0 0 0 1.371.928L3 14Zm5-8.951.967-.256a1 1 0 0 0-1.934 0L8 5.049Zm.388 1.466-.967.255a1 1 0 0 0 1.022.743l-.055-.998Zm1.514-.084.542.84a1 1 0 0 0-.597-1.839l.055.999Zm-1.274.822-.542-.84a1 1 0 0 0-.39 1.2l.932-.36Zm.548 1.414-.632.775a1 1 0 0 0 1.564-1.137l-.932.362ZM8 7.709l.632-.776a1 1 0 0 0-1.264 0L8 7.71Zm-1.176.958-.932-.362a1 1 0 0 0 1.564 1.137l-.632-.775Zm.548-1.414.933.36a1 1 0 0 0-.39-1.2l-.543.84ZM6.098 6.43l.055-.999a1 1 0 0 0-.597 1.839l.542-.84Zm1.514.084-.055.998a1 1 0 0 0 1.022-.743l-.967-.255ZM12 4v10h2V4h-2Zm1.371 9.072-5-2-.742 1.857 5 2 .742-1.857Zm-5.742-2-5 2 .742 1.857 5-2-.742-1.857ZM5 3h6V1H5v2ZM4 14V4H2v10h2Zm3.033-8.696.388 1.466 1.934-.511-.388-1.466-1.934.511Zm1.41 2.21 1.515-.085-.111-1.997-1.515.084.111 1.997ZM9.36 5.59l-1.274.822L9.17 8.093l1.274-.822-1.084-1.68ZM7.695 7.614l.548 1.414 1.865-.723-.548-1.414-1.865.723Zm2.112.277-1.175-.958-1.264 1.55 1.176.959 1.263-1.55Zm-2.439-.958-1.175.958 1.263 1.55 1.176-.957-1.264-1.55Zm.389 2.095.548-1.414L6.44 6.89l-.548 1.414 1.865.723Zm.157-2.616L6.64 5.59 5.556 7.271l1.274.822 1.084-1.68ZM6.042 7.43l1.515.084.11-1.997-1.514-.084-.11 1.997ZM8.58 6.77l.388-1.466-1.934-.511-.388 1.466 1.934.511ZM5 1a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V1Zm9 3a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>",
1016
- "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 3a3 3 0 0 1 3 3v15l-8-3-8 3V6a3 3 0 0 1 3-3h10Zm-4.418 6.772L12 7.572l-.582 2.2-2.271-.126 1.912 1.233L10.237 13 12 11.563 13.763 13l-.822-2.121 1.912-1.233-2.271.126Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m20 21-.351.936A1 1 0 0 0 21 21h-1Zm-8-3 .351-.936a1 1 0 0 0-.702 0L12 18Zm-8 3H3a1 1 0 0 0 1.351.936L4 21Zm8-13.427.967-.256a1 1 0 0 0-1.934 0l.967.256Zm.582 2.199-.967.256a1 1 0 0 0 1.022.742l-.055-.998Zm2.271-.126.542.84a1 1 0 0 0-.597-1.839l.055.999Zm-1.912 1.233-.542-.84a1 1 0 0 0-.39 1.201l.932-.361ZM13.763 13l-.631.775a1 1 0 0 0 1.564-1.136l-.933.361ZM12 11.563l.632-.775a1 1 0 0 0-1.264 0l.632.775ZM10.237 13l-.933-.361a1 1 0 0 0 1.564 1.136L10.237 13Zm.822-2.121.932.361a1 1 0 0 0-.39-1.201l-.543.84ZM9.146 9.646l.055-.999a1 1 0 0 0-.597 1.84l.542-.841Zm2.271.126-.055.998a1 1 0 0 0 1.022-.742l-.967-.256ZM19 6v15h2V6h-2Zm1.351 14.064-8-3-.702 1.872 8 3 .702-1.872Zm-8.702-3-8 3 .702 1.872 8-3-.702-1.872ZM7 4h10V2H7v2ZM5 21V6H3v15h2Zm6.033-13.171.582 2.199 1.934-.512-.582-2.199-1.934.512Zm1.604 2.942 2.272-.127-.111-1.997-2.271.127.11 1.997Zm1.674-1.965L12.4 10.039l1.085 1.68 1.911-1.233-1.084-1.68ZM12.01 11.24l.822 2.121 1.865-.722-.822-2.121-1.865.722Zm2.386.985-1.763-1.437-1.264 1.55 1.764 1.437 1.263-1.55Zm-3.027-1.437-1.763 1.437 1.263 1.55 1.764-1.437-1.264-1.55Zm-.199 2.573.822-2.12-1.865-.723-.822 2.12 1.865.723Zm.431-3.322L9.69 8.806l-1.084 1.68 1.911 1.233 1.085-1.68Zm-2.509.605 2.272.127.11-1.997-2.27-.127-.112 1.997Zm3.294-.616.582-2.2-1.934-.51-.582 2.198 1.934.512ZM7 2a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2V2Zm14 4a4 4 0 0 0-4-4v2a2 2 0 0 1 2 2h2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
1003
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 2a2 2 0 0 1 2 2v10l-5-2-5 2V4a2 2 0 0 1 2-2h6ZM8.388 6.515 8 5.049l-.388 1.466-1.514-.084 1.274.822-.548 1.414L8 7.709l1.176.958-.548-1.414 1.274-.822-1.514.084Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m13 14-.371.928A1 1 0 0 0 14 14h-1Zm-5-2 .371-.928a1 1 0 0 0-.742 0L8 12Zm-5 2H2a1 1 0 0 0 1.371.928L3 14Zm5-8.951.967-.256a1 1 0 0 0-1.934 0L8 5.049Zm.388 1.466-.967.255a1 1 0 0 0 1.022.743l-.055-.998Zm1.514-.084.542.84a1 1 0 0 0-.597-1.839l.055.999Zm-1.274.822-.542-.84a1 1 0 0 0-.39 1.2l.932-.36Zm.548 1.414-.632.775a1 1 0 0 0 1.564-1.137l-.932.362ZM8 7.709l.632-.776a1 1 0 0 0-1.264 0L8 7.71Zm-1.176.958-.932-.362a1 1 0 0 0 1.564 1.137l-.632-.775Zm.548-1.414.933.36a1 1 0 0 0-.39-1.2l-.543.84ZM6.098 6.43l.055-.999a1 1 0 0 0-.597 1.839l.542-.84Zm1.514.084-.055.998a1 1 0 0 0 1.022-.743l-.967-.255ZM12 4v10h2V4h-2Zm1.371 9.072-5-2-.742 1.857 5 2 .742-1.857Zm-5.742-2-5 2 .742 1.857 5-2-.742-1.857ZM5 3h6V1H5v2ZM4 14V4H2v10h2Zm3.033-8.696.388 1.466 1.934-.511-.388-1.466-1.934.511Zm1.41 2.21 1.515-.085-.111-1.997-1.515.084.111 1.997ZM9.36 5.59l-1.274.822L9.17 8.093l1.274-.822-1.084-1.68ZM7.695 7.614l.548 1.414 1.865-.723-.548-1.414-1.865.723Zm2.112.277-1.175-.958-1.264 1.55 1.176.959 1.263-1.55Zm-2.439-.958-1.175.958 1.263 1.55 1.176-.957-1.264-1.55Zm.389 2.095.548-1.414L6.44 6.89l-.548 1.414 1.865.723Zm.157-2.616L6.64 5.59 5.556 7.271l1.274.822 1.084-1.68ZM6.042 7.43l1.515.084.11-1.997-1.514-.084-.11 1.997ZM8.58 6.77l.388-1.466-1.934-.511-.388 1.466 1.934.511ZM5 1a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V1Zm9 3a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1004
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 3a3 3 0 0 1 3 3v15l-8-3-8 3V6a3 3 0 0 1 3-3h10Zm-4.418 6.772L12 7.572l-.582 2.2-2.271-.126 1.912 1.233L10.237 13 12 11.563 13.763 13l-.822-2.121 1.912-1.233-2.271.126Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m20 21-.351.936A1 1 0 0 0 21 21h-1Zm-8-3 .351-.936a1 1 0 0 0-.702 0L12 18Zm-8 3H3a1 1 0 0 0 1.351.936L4 21Zm8-13.427.967-.256a1 1 0 0 0-1.934 0l.967.256Zm.582 2.199-.967.256a1 1 0 0 0 1.022.742l-.055-.998Zm2.271-.126.542.84a1 1 0 0 0-.597-1.839l.055.999Zm-1.912 1.233-.542-.84a1 1 0 0 0-.39 1.201l.932-.361ZM13.763 13l-.631.775a1 1 0 0 0 1.564-1.136l-.933.361ZM12 11.563l.632-.775a1 1 0 0 0-1.264 0l.632.775ZM10.237 13l-.933-.361a1 1 0 0 0 1.564 1.136L10.237 13Zm.822-2.121.932.361a1 1 0 0 0-.39-1.201l-.543.84ZM9.146 9.646l.055-.999a1 1 0 0 0-.597 1.84l.542-.841Zm2.271.126-.055.998a1 1 0 0 0 1.022-.742l-.967-.256ZM19 6v15h2V6h-2Zm1.351 14.064-8-3-.702 1.872 8 3 .702-1.872Zm-8.702-3-8 3 .702 1.872 8-3-.702-1.872ZM7 4h10V2H7v2ZM5 21V6H3v15h2Zm6.033-13.171.582 2.199 1.934-.512-.582-2.199-1.934.512Zm1.604 2.942 2.272-.127-.111-1.997-2.271.127.11 1.997Zm1.674-1.965L12.4 10.039l1.085 1.68 1.911-1.233-1.084-1.68ZM12.01 11.24l.822 2.121 1.865-.722-.822-2.121-1.865.722Zm2.386.985-1.763-1.437-1.264 1.55 1.764 1.437 1.263-1.55Zm-3.027-1.437-1.763 1.437 1.263 1.55 1.764-1.437-1.264-1.55Zm-.199 2.573.822-2.12-1.865-.723-.822 2.12 1.865.723Zm.431-3.322L9.69 8.806l-1.084 1.68 1.911 1.233 1.085-1.68Zm-2.509.605 2.272.127.11-1.997-2.27-.127-.112 1.997Zm3.294-.616.582-2.2-1.934-.51-.582 2.198 1.934.512ZM7 2a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2V2Zm14 4a4 4 0 0 0-4-4v2a2 2 0 0 1 2 2h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1017
1005
  };
1018
1006
  var body = iconBodies[size];
1019
1007
  if (!body) {
1020
- throw Error("Icon \"object-bookmark\" is not available in size ".concat(size));
1008
+ throw Error("Icon \"object-bookmark\" is not available in size " + size);
1021
1009
  }
1022
1010
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1023
1011
  };
1024
1012
  var IconObjectBoxOpen = function (props) {
1025
1013
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1026
1014
  var iconBodies = {
1027
- "48": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43 25.162 28.5 33 24 28.487V47l19-9.744V25.162Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M24 9 5 18.744l19 9.743 19-9.743L24 9Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M24 47 5 37.256V25.162M24 47l19-9.744V25.162M24 47V28.487M24 9 5 18.744M24 9l19 9.744M24 9l4-4 19 9.5-4 4.244M24 9l-4-4-19 9.5 4 4.244m0 0 19 9.743M5 18.744 1 23l4 2.162m38-6.418-19 9.743m19-9.743L47 23l-4 2.162m-19 3.325L19.5 33 5 25.162m19 3.325L28.5 33 43 25.162\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m18 7 1.131 2.869L22 11l-2.869 1.131L18 15l-1.131-2.869L14 11l2.869-1.131L18 7ZM27 1l.849 2.151L30 4l-2.151.849L27 7l-.849-2.151L24 4l2.151-.849L27 1ZM28 12l1.414 3.586L33 17l-3.586 1.414L28 22l-1.414-3.586L23 17l3.586-1.414L28 12Z\" fill=\"#1FA971\" stroke=\"#00814D\" class=\"icon-dark-secondary-stroke icon-light-secondary-fill\" stroke-width=\"2\" stroke-linejoin=\"round\"/>"
1015
+ "48": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43 25.162 28.5 33 24 28.487V47l19-9.744V25.162Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M24 9 5 18.744l19 9.743 19-9.743L24 9Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M24 47 5 37.256V25.162M24 47l19-9.744V25.162M24 47V28.487M24 9 5 18.744M24 9l19 9.744M24 9l4-4 19 9.5-4 4.244M24 9l-4-4-19 9.5 4 4.244m0 0 19 9.743M5 18.744 1 23l4 2.162m38-6.418-19 9.743m19-9.743L47 23l-4 2.162m-19 3.325L19.5 33 5 25.162m19 3.325L28.5 33 43 25.162\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m18 7 1.131 2.869L22 11l-2.869 1.131L18 15l-1.131-2.869L14 11l2.869-1.131L18 7ZM27 1l.849 2.151L30 4l-2.151.849L27 7l-.849-2.151L24 4l2.151-.849L27 1ZM28 12l1.414 3.586L33 17l-3.586 1.414L28 22l-1.414-3.586L23 17l3.586-1.414L28 12Z\" fill=\"#1FA971\" stroke=\"#00814D\" class=\"icon-dark-secondary-stroke icon-light-secondary-fill\" stroke-width=\"2\" stroke-linejoin=\"round\"/>"
1028
1016
  };
1029
1017
  var body = iconBodies[size];
1030
1018
  if (!body) {
1031
- throw Error("Icon \"object-box-open\" is not available in size ".concat(size));
1019
+ throw Error("Icon \"object-box-open\" is not available in size " + size);
1032
1020
  }
1033
1021
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1034
1022
  };
1035
1023
  var IconObjectBox = function (props) {
1036
1024
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1037
1025
  var iconBodies = {
1038
- "16": "<path d=\"M14.5 11.133V4.866a.701.701 0 0 0-.101-.362L8 8v7c.12 0 .242-.03.35-.09l5.779-3.156a.708.708 0 0 0 .371-.621Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M1.871 11.754 7.65 14.91c.11.06.23.09.351.09V8L1.601 4.504a.7.7 0 0 0-.101.362v6.267c0 .258.142.495.371.62Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M7.65 1.089 1.87 4.246a.716.716 0 0 0-.27.258L8 8l6.399-3.496a.717.717 0 0 0-.27-.258L8.35 1.089a.733.733 0 0 0-.702 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m8 8 6.399-3.496M8 8v7m0-7L1.601 4.504m12.798 0a.701.701 0 0 1 .101.362v6.267a.708.708 0 0 1-.371.62L8.35 14.91c-.11.06-.23.09-.351.09m6.399-10.496a.717.717 0 0 0-.27-.258L8.35 1.089a.733.733 0 0 0-.702 0L1.871 4.246a.716.716 0 0 0-.27.258M8 15a.732.732 0 0 1-.35-.09L1.87 11.754a.708.708 0 0 1-.371-.621V4.866a.7.7 0 0 1 .101-.362\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1039
- "24": "<path d=\"M21 16.412V7.588a1 1 0 0 0-.14-.51L12 12v9.856a1 1 0 0 0 .486-.126l8-4.444a1 1 0 0 0 .514-.874ZM3.514 17.286l8 4.444a1 1 0 0 0 .486.126V12L3.14 7.078a1 1 0 0 0-.14.51v8.824a1 1 0 0 0 .514.874Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m11.514 2.27-8 4.444a1 1 0 0 0-.374.364L12 12l8.86-4.922a1 1 0 0 0-.374-.364l-8-4.444a1 1 0 0 0-.972 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m12 12 8.86-4.922M12 12v9.856M12 12 3.14 7.078m17.72 0a1 1 0 0 1 .14.51v8.824a1 1 0 0 1-.514.874l-8 4.444a1 1 0 0 1-.486.126m8.86-14.778a1 1 0 0 0-.374-.364l-8-4.444a1 1 0 0 0-.972 0l-8 4.444a1 1 0 0 0-.374.364M12 21.856a1 1 0 0 1-.486-.126l-8-4.444A1 1 0 0 1 3 16.412V7.588a1 1 0 0 1 .14-.51\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" class=\"icon-dark\" stroke-linejoin=\"round\"/>"
1026
+ "16": "<path d=\"M14.5 11.133V4.866a.701.701 0 0 0-.101-.362L8 8v7c.12 0 .242-.03.35-.09l5.779-3.156a.708.708 0 0 0 .371-.621Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M1.871 11.754 7.65 14.91c.11.06.23.09.351.09V8L1.601 4.504a.7.7 0 0 0-.101.362v6.267c0 .258.142.495.371.62Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M7.65 1.089 1.87 4.246a.716.716 0 0 0-.27.258L8 8l6.399-3.496a.717.717 0 0 0-.27-.258L8.35 1.089a.733.733 0 0 0-.702 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m8 8 6.399-3.496M8 8v7m0-7L1.601 4.504m12.798 0a.701.701 0 0 1 .101.362v6.267a.708.708 0 0 1-.371.62L8.35 14.91c-.11.06-.23.09-.351.09m6.399-10.496a.717.717 0 0 0-.27-.258L8.35 1.089a.733.733 0 0 0-.702 0L1.871 4.246a.716.716 0 0 0-.27.258M8 15a.732.732 0 0 1-.35-.09L1.87 11.754a.708.708 0 0 1-.371-.621V4.866a.7.7 0 0 1 .101-.362\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1027
+ "24": "<path d=\"M21 16.412V7.588a1 1 0 0 0-.14-.51L12 12v9.856a1 1 0 0 0 .486-.126l8-4.444a1 1 0 0 0 .514-.874ZM3.514 17.286l8 4.444a1 1 0 0 0 .486.126V12L3.14 7.078a1 1 0 0 0-.14.51v8.824a1 1 0 0 0 .514.874Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m11.514 2.27-8 4.444a1 1 0 0 0-.374.364L12 12l8.86-4.922a1 1 0 0 0-.374-.364l-8-4.444a1 1 0 0 0-.972 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m12 12 8.86-4.922M12 12v9.856M12 12 3.14 7.078m17.72 0a1 1 0 0 1 .14.51v8.824a1 1 0 0 1-.514.874l-8 4.444a1 1 0 0 1-.486.126m8.86-14.778a1 1 0 0 0-.374-.364l-8-4.444a1 1 0 0 0-.972 0l-8 4.444a1 1 0 0 0-.374.364M12 21.856a1 1 0 0 1-.486-.126l-8-4.444A1 1 0 0 1 3 16.412V7.588a1 1 0 0 1 .14-.51\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" class=\"icon-dark\" stroke-linejoin=\"round\"/>"
1040
1028
  };
1041
1029
  var body = iconBodies[size];
1042
1030
  if (!body) {
1043
- throw Error("Icon \"object-box\" is not available in size ".concat(size));
1031
+ throw Error("Icon \"object-box\" is not available in size " + size);
1044
1032
  }
1045
1033
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1046
1034
  };
1047
1035
  var IconObjectBriefcase = function (props) {
1048
1036
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1049
1037
  var iconBodies = {
1050
- "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\"/>"
1038
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 14A1.5 1.5 0 0 1 1 12.5V7l7 3 7-3v5.5a1.5 1.5 0 0 1-1.5 1.5h-11Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M9 9.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#D0D2E0\" 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\"/>"
1051
1039
  };
1052
1040
  var body = iconBodies[size];
1053
1041
  if (!body) {
1054
- throw Error("Icon \"object-briefcase\" is not available in size ".concat(size));
1042
+ throw Error("Icon \"object-briefcase\" is not available in size " + size);
1055
1043
  }
1056
1044
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1057
1045
  };
@@ -1062,64 +1050,64 @@ var IconObjectChainLink = function (props) {
1062
1050
  };
1063
1051
  var body = iconBodies[size];
1064
1052
  if (!body) {
1065
- throw Error("Icon \"object-chain-link\" is not available in size ".concat(size));
1053
+ throw Error("Icon \"object-chain-link\" is not available in size " + size);
1066
1054
  }
1067
1055
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1068
1056
  };
1069
1057
  var IconObjectFolderDark = function (props) {
1070
1058
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1071
1059
  var iconBodies = {
1072
- "16": "<path d=\"M14 13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H9L7.293 4.707A1 1 0 0 1 6.586 5H1v7a1 1 0 0 0 1 1h12Z\" fill=\"#2E3247\" class=\"icon-light\"/><path d=\"M9 3 7.293 1.293A1 1 0 0 0 6.586 1H2a1 1 0 0 0-1 1v3m8-2h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V5m8-2L7.293 4.707A1 1 0 0 1 6.586 5H1\" stroke=\"#434861\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1060
+ "16": "<path d=\"M14 13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H9L7.293 4.707A1 1 0 0 1 6.586 5H1v7a1 1 0 0 0 1 1h12Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M9 3 7.293 1.293A1 1 0 0 0 6.586 1H2a1 1 0 0 0-1 1v3m8-2h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V5m8-2L7.293 4.707A1 1 0 0 1 6.586 5H1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1073
1061
  };
1074
1062
  var body = iconBodies[size];
1075
1063
  if (!body) {
1076
- throw Error("Icon \"object-folder-dark\" is not available in size ".concat(size));
1064
+ throw Error("Icon \"object-folder-dark\" is not available in size " + size);
1077
1065
  }
1078
1066
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1079
1067
  };
1080
1068
  var IconObjectFolderLight = function (props) {
1081
1069
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1082
1070
  var iconBodies = {
1083
- "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.293 2.293A1 1 0 0 0 6.586 2H2a1 1 0 0 0-1 1v3h5.586a1 1 0 0 0 .707-.293L9 4 7.293 2.293Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M9 4 7.293 2.293A1 1 0 0 0 6.586 2H2a1 1 0 0 0-1 1v3m8-2h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6m8-2L7.293 5.707A1 1 0 0 1 6.586 6H1\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
1084
- "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.293 4.293A1 1 0 0 0 9.586 4H4a1 1 0 0 0-1 1v3h6.586a1 1 0 0 0 .707-.293L12 6l-1.707-1.707Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m12 6-1.707-1.707A1 1 0 0 0 9.586 4H4a1 1 0 0 0-1 1v3m9-2h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V8m9-2-1.707 1.707A1 1 0 0 1 9.586 8H3\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1071
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.293 2.293A1 1 0 0 0 6.586 2H2a1 1 0 0 0-1 1v3h5.586a1 1 0 0 0 .707-.293L9 4 7.293 2.293Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M9 4 7.293 2.293A1 1 0 0 0 6.586 2H2a1 1 0 0 0-1 1v3m8-2h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6m8-2L7.293 5.707A1 1 0 0 1 6.586 6H1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
1072
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.293 4.293A1 1 0 0 0 9.586 4H4a1 1 0 0 0-1 1v3h6.586a1 1 0 0 0 .707-.293L12 6l-1.707-1.707Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m12 6-1.707-1.707A1 1 0 0 0 9.586 4H4a1 1 0 0 0-1 1v3m9-2h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V8m9-2-1.707 1.707A1 1 0 0 1 9.586 8H3\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1085
1073
  };
1086
1074
  var body = iconBodies[size];
1087
1075
  if (!body) {
1088
- throw Error("Icon \"object-folder-light\" is not available in size ".concat(size));
1076
+ throw Error("Icon \"object-folder-light\" is not available in size " + size);
1089
1077
  }
1090
1078
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1091
1079
  };
1092
1080
  var IconObjectGear = function (props) {
1093
1081
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1094
1082
  var iconBodies = {
1095
- "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5 1h3a.5.5 0 0 1 .5.5v1.375a5.495 5.495 0 0 1 1.437.831l1.192-.688a.5.5 0 0 1 .683.183l1.5 2.598a.5.5 0 0 1-.183.683l-1.191.688a5.541 5.541 0 0 1 0 1.66l1.191.688a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.192-.688c-.43.345-.914.627-1.437.831V14.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.375a5.498 5.498 0 0 1-1.437-.831l-1.192.688a.5.5 0 0 1-.683-.183l-1.5-2.598a.5.5 0 0 1 .183-.683l1.191-.688a5.544 5.544 0 0 1 0-1.66l-1.191-.688a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.192.688c.43-.345.914-.627 1.437-.831V1.5a.5.5 0 0 1 .5-.5ZM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m13.312 3.201-.866.5.866-.5Zm1.5 2.598.866-.5-.866.5Zm-12.124 7-.866.5.866-.5Zm-1.5-2.598.866-.5-.866.5Zm0-4.402.866.5-.866-.5Zm1.5-2.598.866.5-.866-.5Zm12.124 7 .866.5-.866-.5Zm-1.5 2.598-.866-.5.866.5ZM6 2.875l.364.931A1 1 0 0 0 7 2.875H6Zm-1.437.831-.5.866a1 1 0 0 0 1.125-.086l-.625-.78ZM3.37 3.018l-.5.866.5-.866ZM2.562 7.17l.989.15a1 1 0 0 0-.489-1.016l-.5.866Zm-1.191-.688.5-.866-.5.866ZM2.562 8.83l.5.866a1 1 0 0 0 .489-1.016l-.989.15Zm-1.191.688.5.866-.5-.866Zm3.192 2.776.625-.78a1 1 0 0 0-1.125-.086l.5.866Zm-1.192.688.5.866-.5-.866ZM6 13.125h1a1 1 0 0 0-.636-.931L6 13.125Zm4 0-.364-.931a1 1 0 0 0-.636.931h1Zm1.437-.831.5-.866a1 1 0 0 0-1.125.086l.625.78Zm1.192.688-.5.866.5-.866Zm.809-4.152-.989-.15a1 1 0 0 0 .489 1.016l.5-.866Zm1.191.688.5-.866-.5.866Zm0-3.036-.5-.866.5.866Zm-1.191.688-.5-.866a1 1 0 0 0-.489 1.016l.989-.15Zm-2-3.464-.626.78a1 1 0 0 0 1.125.086l-.5-.866Zm1.191-.688-.5-.866.5.866ZM10 2.875H9a1 1 0 0 0 .636.931L10 2.875ZM6.5 2h3V0h-3v2Zm3 12h-3v2h3v-2Zm2.946-10.299 1.5 2.598 1.732-1-1.5-2.598-1.732 1Zm-8.892 8.598-1.5-2.598-1.732 1 1.5 2.598 1.732-1Zm-1.5-6 1.5-2.598-1.732-1-1.5 2.598 1.732 1Zm11.892 3.402-1.5 2.598 1.732 1 1.5-2.598-1.732-1ZM7 2.875V1.5H5v1.375h2ZM5.188 4.486a4.494 4.494 0 0 1 1.176-.68l-.728-1.863a6.494 6.494 0 0 0-1.699.983l1.251 1.56Zm-2.317-.602 1.192.688 1-1.732-1.192-.688-1 1.732ZM3.5 8c0-.232.017-.46.051-.68l-1.978-.3c-.048.32-.073.648-.073.98h2Zm-.438-1.696-1.191-.688-1 1.732 1.191.688 1-1.732Zm.489 2.376A4.543 4.543 0 0 1 3.5 8h-2c0 .332.025.66.073.98l1.978-.3Zm-1.68 1.704 1.191-.688-1-1.732-1.191.688 1 1.732Zm2.192 1.044-1.192.688 1 1.732 1.192-.688-1-1.732Zm2.3.766a4.497 4.497 0 0 1-1.175-.68l-1.25 1.56c.508.408 1.08.741 1.698.982l.728-1.862ZM7 14.5v-1.375H5V14.5h2Zm2-1.375V14.5h2v-1.375H9Zm1.812-1.611a4.495 4.495 0 0 1-1.176.68l.728 1.862a6.495 6.495 0 0 0 1.699-.982l-1.251-1.56Zm2.317.602-1.192-.688-1 1.732 1.192.688 1-1.732ZM12.5 8c0 .232-.017.46-.051.68l1.978.3c.048-.32.073-.648.073-.98h-2Zm.438 1.696 1.191.688 1-1.732-1.191-.688-1 1.732Zm1.191-4.08-1.191.688 1 1.732 1.191-.688-1-1.732ZM12.45 7.32c.034.22.051.448.051.68h2c0-.332-.025-.66-.073-.98l-1.978.3Zm-.512-2.748 1.192-.688-1-1.732-1.192.688 1 1.732Zm-2.3-.766c.426.167.822.398 1.175.68l1.25-1.56a6.496 6.496 0 0 0-1.698-.983l-.728 1.863ZM9 1.5v1.375h2V1.5H9Zm3.446 10.799a.5.5 0 0 1 .683-.183l-1 1.732a1.5 1.5 0 0 0 2.05-.549l-1.733-1Zm3.232-1.598a1.5 1.5 0 0 0-.549-2.05l-1 1.733a.5.5 0 0 1-.183-.683l1.732 1Zm-12.124-7a.5.5 0 0 1-.683.183l1-1.732a1.5 1.5 0 0 0-2.05.549l1.733 1ZM.322 5.299a1.5 1.5 0 0 0 .549 2.05l1-1.733a.5.5 0 0 1 .183.683l-1.732-1Zm1.732 4.402a.5.5 0 0 1-.183.683l-1-1.732A1.5 1.5 0 0 0 .32 10.7l1.733-1Zm-.232 3.598a1.5 1.5 0 0 0 2.049.55l-1-1.733a.5.5 0 0 1 .683.183l-1.732 1Zm12.124-7a.5.5 0 0 1 .183-.683l1 1.732a1.5 1.5 0 0 0 .55-2.049l-1.733 1Zm.232-3.598a1.5 1.5 0 0 0-2.049-.55l1 1.733a.5.5 0 0 1-.683-.183l1.732-1ZM6.5 14a.5.5 0 0 1 .5.5H5A1.5 1.5 0 0 0 6.5 16v-2Zm3 2a1.5 1.5 0 0 0 1.5-1.5H9a.5.5 0 0 1 .5-.5v2Zm0-14a.5.5 0 0 1-.5-.5h2A1.5 1.5 0 0 0 9.5 0v2Zm-3-2A1.5 1.5 0 0 0 5 1.5h2a.5.5 0 0 1-.5.5V0ZM9 8a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3H9ZM8 9a1 1 0 0 1-1-1H5a3 3 0 0 0 3 3V9ZM7 8a1 1 0 0 1 1-1V5a3 3 0 0 0-3 3h2Zm1-1a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>",
1096
- "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.794 3.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v1.417c0 .221.146.414.355.489.804.287 1.54.717 2.177 1.259a.524.524 0 0 0 .6.062l1.23-.71a.5.5 0 0 1 .683.184l1.5 2.598a.5.5 0 0 1-.184.683l-1.227.709a.524.524 0 0 0-.247.55 7.043 7.043 0 0 1 0 2.518c-.04.217.055.44.247.55l1.227.709a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.229-.71a.524.524 0 0 0-.6.063 6.993 6.993 0 0 1-2.177 1.26.525.525 0 0 0-.355.488V20.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.417a.525.525 0 0 0-.354-.489 6.993 6.993 0 0 1-2.178-1.259.524.524 0 0 0-.6-.063l-1.229.71a.5.5 0 0 1-.683-.183l-1.5-2.598a.5.5 0 0 1 .183-.683l1.228-.709a.524.524 0 0 0 .246-.55 7.042 7.042 0 0 1 0-2.518.524.524 0 0 0-.246-.55l-1.228-.709a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.229.71c.191.11.432.08.6-.063a6.992 6.992 0 0 1 2.178-1.26.525.525 0 0 0 .354-.488V3.5Zm2 11.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\" fill=\"#D0D2E0\" class=\"icon-dark-stroke icon-light-fill\" stroke=\"#1B1E2E\" stroke-width=\"2\"/>"
1083
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5 1h3a.5.5 0 0 1 .5.5v1.375a5.495 5.495 0 0 1 1.437.831l1.192-.688a.5.5 0 0 1 .683.183l1.5 2.598a.5.5 0 0 1-.183.683l-1.191.688a5.541 5.541 0 0 1 0 1.66l1.191.688a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.192-.688c-.43.345-.914.627-1.437.831V14.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.375a5.498 5.498 0 0 1-1.437-.831l-1.192.688a.5.5 0 0 1-.683-.183l-1.5-2.598a.5.5 0 0 1 .183-.683l1.191-.688a5.544 5.544 0 0 1 0-1.66l-1.191-.688a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.192.688c.43-.345.914-.627 1.437-.831V1.5a.5.5 0 0 1 .5-.5ZM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m13.312 3.201-.866.5.866-.5Zm1.5 2.598.866-.5-.866.5Zm-12.124 7-.866.5.866-.5Zm-1.5-2.598.866-.5-.866.5Zm0-4.402.866.5-.866-.5Zm1.5-2.598.866.5-.866-.5Zm12.124 7 .866.5-.866-.5Zm-1.5 2.598-.866-.5.866.5ZM6 2.875l.364.931A1 1 0 0 0 7 2.875H6Zm-1.437.831-.5.866a1 1 0 0 0 1.125-.086l-.625-.78ZM3.37 3.018l-.5.866.5-.866ZM2.562 7.17l.989.15a1 1 0 0 0-.489-1.016l-.5.866Zm-1.191-.688.5-.866-.5.866ZM2.562 8.83l.5.866a1 1 0 0 0 .489-1.016l-.989.15Zm-1.191.688.5.866-.5-.866Zm3.192 2.776.625-.78a1 1 0 0 0-1.125-.086l.5.866Zm-1.192.688.5.866-.5-.866ZM6 13.125h1a1 1 0 0 0-.636-.931L6 13.125Zm4 0-.364-.931a1 1 0 0 0-.636.931h1Zm1.437-.831.5-.866a1 1 0 0 0-1.125.086l.625.78Zm1.192.688-.5.866.5-.866Zm.809-4.152-.989-.15a1 1 0 0 0 .489 1.016l.5-.866Zm1.191.688.5-.866-.5.866Zm0-3.036-.5-.866.5.866Zm-1.191.688-.5-.866a1 1 0 0 0-.489 1.016l.989-.15Zm-2-3.464-.626.78a1 1 0 0 0 1.125.086l-.5-.866Zm1.191-.688-.5-.866.5.866ZM10 2.875H9a1 1 0 0 0 .636.931L10 2.875ZM6.5 2h3V0h-3v2Zm3 12h-3v2h3v-2Zm2.946-10.299 1.5 2.598 1.732-1-1.5-2.598-1.732 1Zm-8.892 8.598-1.5-2.598-1.732 1 1.5 2.598 1.732-1Zm-1.5-6 1.5-2.598-1.732-1-1.5 2.598 1.732 1Zm11.892 3.402-1.5 2.598 1.732 1 1.5-2.598-1.732-1ZM7 2.875V1.5H5v1.375h2ZM5.188 4.486a4.494 4.494 0 0 1 1.176-.68l-.728-1.863a6.494 6.494 0 0 0-1.699.983l1.251 1.56Zm-2.317-.602 1.192.688 1-1.732-1.192-.688-1 1.732ZM3.5 8c0-.232.017-.46.051-.68l-1.978-.3c-.048.32-.073.648-.073.98h2Zm-.438-1.696-1.191-.688-1 1.732 1.191.688 1-1.732Zm.489 2.376A4.543 4.543 0 0 1 3.5 8h-2c0 .332.025.66.073.98l1.978-.3Zm-1.68 1.704 1.191-.688-1-1.732-1.191.688 1 1.732Zm2.192 1.044-1.192.688 1 1.732 1.192-.688-1-1.732Zm2.3.766a4.497 4.497 0 0 1-1.175-.68l-1.25 1.56c.508.408 1.08.741 1.698.982l.728-1.862ZM7 14.5v-1.375H5V14.5h2Zm2-1.375V14.5h2v-1.375H9Zm1.812-1.611a4.495 4.495 0 0 1-1.176.68l.728 1.862a6.495 6.495 0 0 0 1.699-.982l-1.251-1.56Zm2.317.602-1.192-.688-1 1.732 1.192.688 1-1.732ZM12.5 8c0 .232-.017.46-.051.68l1.978.3c.048-.32.073-.648.073-.98h-2Zm.438 1.696 1.191.688 1-1.732-1.191-.688-1 1.732Zm1.191-4.08-1.191.688 1 1.732 1.191-.688-1-1.732ZM12.45 7.32c.034.22.051.448.051.68h2c0-.332-.025-.66-.073-.98l-1.978.3Zm-.512-2.748 1.192-.688-1-1.732-1.192.688 1 1.732Zm-2.3-.766c.426.167.822.398 1.175.68l1.25-1.56a6.496 6.496 0 0 0-1.698-.983l-.728 1.863ZM9 1.5v1.375h2V1.5H9Zm3.446 10.799a.5.5 0 0 1 .683-.183l-1 1.732a1.5 1.5 0 0 0 2.05-.549l-1.733-1Zm3.232-1.598a1.5 1.5 0 0 0-.549-2.05l-1 1.733a.5.5 0 0 1-.183-.683l1.732 1Zm-12.124-7a.5.5 0 0 1-.683.183l1-1.732a1.5 1.5 0 0 0-2.05.549l1.733 1ZM.322 5.299a1.5 1.5 0 0 0 .549 2.05l1-1.733a.5.5 0 0 1 .183.683l-1.732-1Zm1.732 4.402a.5.5 0 0 1-.183.683l-1-1.732A1.5 1.5 0 0 0 .32 10.7l1.733-1Zm-.232 3.598a1.5 1.5 0 0 0 2.049.55l-1-1.733a.5.5 0 0 1 .683.183l-1.732 1Zm12.124-7a.5.5 0 0 1 .183-.683l1 1.732a1.5 1.5 0 0 0 .55-2.049l-1.733 1Zm.232-3.598a1.5 1.5 0 0 0-2.049-.55l1 1.733a.5.5 0 0 1-.683-.183l1.732-1ZM6.5 14a.5.5 0 0 1 .5.5H5A1.5 1.5 0 0 0 6.5 16v-2Zm3 2a1.5 1.5 0 0 0 1.5-1.5H9a.5.5 0 0 1 .5-.5v2Zm0-14a.5.5 0 0 1-.5-.5h2A1.5 1.5 0 0 0 9.5 0v2Zm-3-2A1.5 1.5 0 0 0 5 1.5h2a.5.5 0 0 1-.5.5V0ZM9 8a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3H9ZM8 9a1 1 0 0 1-1-1H5a3 3 0 0 0 3 3V9ZM7 8a1 1 0 0 1 1-1V5a3 3 0 0 0-3 3h2Zm1-1a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1084
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.794 3.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v1.417c0 .221.146.414.355.489.804.287 1.54.717 2.177 1.259a.524.524 0 0 0 .6.062l1.23-.71a.5.5 0 0 1 .683.184l1.5 2.598a.5.5 0 0 1-.184.683l-1.227.709a.524.524 0 0 0-.247.55 7.043 7.043 0 0 1 0 2.518c-.04.217.055.44.247.55l1.227.709a.5.5 0 0 1 .183.683l-1.5 2.598a.5.5 0 0 1-.683.183l-1.229-.71a.524.524 0 0 0-.6.063 6.993 6.993 0 0 1-2.177 1.26.525.525 0 0 0-.355.488V20.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1.417a.525.525 0 0 0-.354-.489 6.993 6.993 0 0 1-2.178-1.259.524.524 0 0 0-.6-.063l-1.229.71a.5.5 0 0 1-.683-.183l-1.5-2.598a.5.5 0 0 1 .183-.683l1.228-.709a.524.524 0 0 0 .246-.55 7.042 7.042 0 0 1 0-2.518.524.524 0 0 0-.246-.55l-1.228-.709a.5.5 0 0 1-.183-.683l1.5-2.598a.5.5 0 0 1 .683-.183l1.229.71c.191.11.432.08.6-.063a6.992 6.992 0 0 1 2.178-1.26.525.525 0 0 0 .354-.488V3.5Zm2 11.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\" fill=\"#D0D2E0\" class=\"icon-dark-stroke icon-light-fill\" stroke=\"currentColor\" stroke-width=\"2\"/>"
1097
1085
  };
1098
1086
  var body = iconBodies[size];
1099
1087
  if (!body) {
1100
- throw Error("Icon \"object-gear\" is not available in size ".concat(size));
1088
+ throw Error("Icon \"object-gear\" is not available in size " + size);
1101
1089
  }
1102
1090
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1103
1091
  };
1104
1092
  var IconObjectMagicWandDarkMode = function (props) {
1105
1093
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1106
1094
  var iconBodies = {
1107
- "16": "<path d=\"m5.5 3.5-2 2L6 8l2-2-2.5-2.5Z\" fill=\"#AFB3C7\" class=\"icon-light\"/><path d=\"m5.5 3.5.707-.707a1 1 0 0 0-1.414 0L5.5 3.5Zm8 8 .707.707a1 1 0 0 0 0-1.414l-.707.707Zm-2 2-.707.707a1 1 0 0 0 1.414 0L11.5 13.5Zm-8-8-.707-.707a1 1 0 0 0 0 1.414L3.5 5.5Zm9.293 5.293-2 2 1.414 1.414 2-2-1.414-1.414ZM4.207 6.207l2-2-1.414-1.414-2 2 1.414 1.414Zm8 6.586-5.5-5.5-1.414 1.414 5.5 5.5 1.414-1.414Zm-5.5-5.5-2.5-2.5-1.414 1.414 2.5 2.5 1.414-1.414ZM4.793 4.207l2.5 2.5 1.414-1.414-2.5-2.5-1.414 1.414Zm2.5 2.5 5.5 5.5 1.414-1.414-5.5-5.5-1.414 1.414Zm-.586 2 2-2-1.414-1.414-2 2 1.414 1.414Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M5.5 1.5v-1m-5 5h1m1.172-2.828-.708-.708m0 7.072.708-.708m5.656-5.656.708-.708\" stroke=\"#AFB3C7\" class=\"icon-light\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1095
+ "16": "<path d=\"m5.5 3.5-2 2L6 8l2-2-2.5-2.5Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m5.5 3.5.707-.707a1 1 0 0 0-1.414 0L5.5 3.5Zm8 8 .707.707a1 1 0 0 0 0-1.414l-.707.707Zm-2 2-.707.707a1 1 0 0 0 1.414 0L11.5 13.5Zm-8-8-.707-.707a1 1 0 0 0 0 1.414L3.5 5.5Zm9.293 5.293-2 2 1.414 1.414 2-2-1.414-1.414ZM4.207 6.207l2-2-1.414-1.414-2 2 1.414 1.414Zm8 6.586-5.5-5.5-1.414 1.414 5.5 5.5 1.414-1.414Zm-5.5-5.5-2.5-2.5-1.414 1.414 2.5 2.5 1.414-1.414ZM4.793 4.207l2.5 2.5 1.414-1.414-2.5-2.5-1.414 1.414Zm2.5 2.5 5.5 5.5 1.414-1.414-5.5-5.5-1.414 1.414Zm-.586 2 2-2-1.414-1.414-2 2 1.414 1.414Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M5.5 1.5v-1m-5 5h1m1.172-2.828-.708-.708m0 7.072.708-.708m5.656-5.656.708-.708\" stroke=\"#D0D2E0\" class=\"icon-light\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1108
1096
  };
1109
1097
  var body = iconBodies[size];
1110
1098
  if (!body) {
1111
- throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size ".concat(size));
1099
+ throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size " + size);
1112
1100
  }
1113
1101
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1114
1102
  };
1115
1103
  var IconObjectMagnifyingGlass = function (props) {
1116
1104
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1117
1105
  var iconBodies = {
1118
- "16": "<path d=\"M12 7c0 1.38-.56 2.63-1.464 3.536A5 5 0 1 1 12 7Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M10.536 10.536a5 5 0 1 0-7.071-7.071 5 5 0 0 0 7.07 7.07Zm0 0L14 14\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1106
+ "16": "<path d=\"M12 7c0 1.38-.56 2.63-1.464 3.536A5 5 0 1 1 12 7Z\" class=\"icon-light\" fill=\"#D0D2E0\"/><path d=\"M10.536 10.536a5 5 0 1 0-7.071-7.071 5 5 0 0 0 7.07 7.07Zm0 0L14 14\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1119
1107
  };
1120
1108
  var body = iconBodies[size];
1121
1109
  if (!body) {
1122
- throw Error("Icon \"object-magnifying-glass\" is not available in size ".concat(size));
1110
+ throw Error("Icon \"object-magnifying-glass\" is not available in size " + size);
1123
1111
  }
1124
1112
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1125
1113
  };
@@ -1130,74 +1118,351 @@ var IconObjectOdometer = function (props) {
1130
1118
  };
1131
1119
  var body = iconBodies[size];
1132
1120
  if (!body) {
1133
- throw Error("Icon \"object-odometer\" is not available in size ".concat(size));
1121
+ throw Error("Icon \"object-odometer\" is not available in size " + size);
1134
1122
  }
1135
1123
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1136
1124
  };
1137
1125
  var IconObjectPaperAirplane = function (props) {
1138
1126
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1139
1127
  var iconBodies = {
1140
- "16": "<path d=\"M15 8 1 1l2 7-2 7 14-7Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m3 8-2 7 14-7L1 1l2 7Zm0 0h3\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1128
+ "16": "<path d=\"M15 8 1 1l2 7-2 7 14-7Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m3 8-2 7 14-7L1 1l2 7Zm0 0h3\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1141
1129
  };
1142
1130
  var body = iconBodies[size];
1143
1131
  if (!body) {
1144
- throw Error("Icon \"object-paper-airplane\" is not available in size ".concat(size));
1132
+ throw Error("Icon \"object-paper-airplane\" is not available in size " + size);
1145
1133
  }
1146
1134
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1147
1135
  };
1148
1136
  var IconObjectPinModern = function (props) {
1149
1137
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1150
1138
  var iconBodies = {
1151
- "16": "<path d=\"M12 6a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\" fill=\"#E1E3ED\" class=\"icon-light\"/><path d=\"M7 14a1 1 0 1 0 2 0H7Zm0-4v4h2v-4H7Zm4-4a3 3 0 0 1-3 3v2a5 5 0 0 0 5-5h-2ZM8 9a3 3 0 0 1-3-3H3a5 5 0 0 0 5 5V9ZM5 6a3 3 0 0 1 3-3V1a5 5 0 0 0-5 5h2Zm3-3a3 3 0 0 1 3 3h2a5 5 0 0 0-5-5v2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1139
+ "16": "<path d=\"M12 6a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M7 14a1 1 0 1 0 2 0H7Zm0-4v4h2v-4H7Zm4-4a3 3 0 0 1-3 3v2a5 5 0 0 0 5-5h-2ZM8 9a3 3 0 0 1-3-3H3a5 5 0 0 0 5 5V9ZM5 6a3 3 0 0 1 3-3V1a5 5 0 0 0-5 5h2Zm3-3a3 3 0 0 1 3 3h2a5 5 0 0 0-5-5v2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1152
1140
  };
1153
1141
  var body = iconBodies[size];
1154
1142
  if (!body) {
1155
- throw Error("Icon \"object-pin-modern\" is not available in size ".concat(size));
1143
+ throw Error("Icon \"object-pin-modern\" is not available in size " + size);
1156
1144
  }
1157
1145
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1158
1146
  };
1159
1147
  var IconObjectRuler = function (props) {
1160
1148
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1161
1149
  var iconBodies = {
1162
- "16": "<path d=\"M5 11a.5.5 0 0 0-1 0h1Zm-1 1a.5.5 0 0 0 1 0H4Zm4-1a.5.5 0 0 0-1 0h1Zm-1 1a.5.5 0 0 0 1 0H7Zm3 0a.5.5 0 0 0 1 0h-1Zm2-1a.5.5 0 0 0 0-1v1Zm-1-4a.5.5 0 0 0 0 1V7Zm1 1a.5.5 0 0 0 0-1v1Zm-1-4a.5.5 0 0 0 0 1V4Zm1 1a.5.5 0 0 0 0-1v1Zm-1 5a.5.5 0 0 0 0 1v-1Zm0 1a.5.5 0 0 0-1 0h1Zm-7 0v1h1v-1H4Zm3 0v1h1v-1H7Zm4-3h1V7h-1v1Zm0-3h1V4h-1v1Zm0 6h1v-1h-1v1Zm-1 0v1h1v-1h-1Z\" fill=\"#747994\" class=\"icon-light\"/><path d=\"M15 15V1h-5v9H1v5h14Zm0 0v-4\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1150
+ "16": "<path d=\"M5 11a.5.5 0 0 0-1 0h1Zm-1 1a.5.5 0 0 0 1 0H4Zm4-1a.5.5 0 0 0-1 0h1Zm-1 1a.5.5 0 0 0 1 0H7Zm3 0a.5.5 0 0 0 1 0h-1Zm2-1a.5.5 0 0 0 0-1v1Zm-1-4a.5.5 0 0 0 0 1V7Zm1 1a.5.5 0 0 0 0-1v1Zm-1-4a.5.5 0 0 0 0 1V4Zm1 1a.5.5 0 0 0 0-1v1Zm-1 5a.5.5 0 0 0 0 1v-1Zm0 1a.5.5 0 0 0-1 0h1Zm-7 0v1h1v-1H4Zm3 0v1h1v-1H7Zm4-3h1V7h-1v1Zm0-3h1V4h-1v1Zm0 6h1v-1h-1v1Zm-1 0v1h1v-1h-1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M15 15V1h-5v9H1v5h14Zm0 0v-4\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1163
1151
  };
1164
1152
  var body = iconBodies[size];
1165
1153
  if (!body) {
1166
- throw Error("Icon \"object-ruler\" is not available in size ".concat(size));
1154
+ throw Error("Icon \"object-ruler\" is not available in size " + size);
1167
1155
  }
1168
1156
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1169
1157
  };
1170
1158
  var IconSecurityKey = function (props) {
1171
1159
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1172
1160
  var iconBodies = {
1173
- "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\"/>",
1161
+ "16": "<path d=\"M1.861 7.354a2 2 0 0 1 .273-2.488l2.732-2.732a2 2 0 0 1 2.488-.273l2.502 1.593a2 2 0 0 1 .642 2.716L10 7l5 5v3h-3l-1-2.5H9L8 10H7l-.83.498a2 2 0 0 1-2.716-.642L1.861 7.354Z\" fill=\"#D0D2E0\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-light-fill icon-dark-stroke\"/><circle cx=\"5.752\" cy=\"5.752\" r=\"1.002\" fill=\"currentColor\" class=\"icon-dark\"/>",
1174
1162
  "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.038 2.475a3 3 0 0 0-3.757.394L2.87 6.28a3 3 0 0 0-.394 3.757L5.25 14.31a3 3 0 0 0 4.316.765L11 14l1.5 3.5 1.5-1 1.5 3.5 1.5-1s1 1.7 1.5 2c2.5 1.5 3.5-2 3.5-2l-8-8 1.075-1.433a3 3 0 0 0-.765-4.316l-4.272-2.776ZM8 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#D0D2E0\" class=\"icon-light-fill icon-dark-stroke\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>"
1175
1163
  };
1176
1164
  var body = iconBodies[size];
1177
1165
  if (!body) {
1178
- throw Error("Icon \"security-key\" is not available in size ".concat(size));
1166
+ throw Error("Icon \"security-key\" is not available in size " + size);
1179
1167
  }
1180
1168
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1181
1169
  };
1182
1170
  var IconSecurityLockLocked = function (props) {
1183
1171
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1184
1172
  var iconBodies = {
1185
- "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\"/>"
1173
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v5Z\" fill=\"#D0D2E0\" 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\"/>"
1186
1174
  };
1187
1175
  var body = iconBodies[size];
1188
1176
  if (!body) {
1189
- throw Error("Icon \"security-lock-locked\" is not available in size ".concat(size));
1177
+ throw Error("Icon \"security-lock-locked\" is not available in size " + size);
1190
1178
  }
1191
1179
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1192
1180
  };
1193
1181
  var IconShapeLightningBolt = function (props) {
1194
1182
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1195
1183
  var iconBodies = {
1196
- "16": "<path d=\"M7 1v5h5.5L7 15v-5H1.5L7 1Z\" fill=\"#D0D2E0\" class=\"icon-light icon-dark-stroke\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1184
+ "16": "<path d=\"M7 1v5h5.5L7 15v-5H1.5L7 1Z\" fill=\"#D0D2E0\" class=\"icon-light icon-dark-stroke\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1185
+ };
1186
+ var body = iconBodies[size];
1187
+ if (!body) {
1188
+ throw Error("Icon \"shape-lightning-bolt\" is not available in size " + size);
1189
+ }
1190
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1191
+ };
1192
+ var IconStatusCancelledOutline = function (props) {
1193
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1194
+ var iconBodies = {
1195
+ "16": "<path d=\"M6 8h4m-2 6A6 6 0 1 1 8 2a6 6 0 0 1 0 12Z\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
1196
+ "24": "<path d=\"M8 12h8m-4 9a9 9 0 1 1 0-18 9 9 0 0 1 0 18Z\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
1197
+ };
1198
+ var body = iconBodies[size];
1199
+ if (!body) {
1200
+ throw Error("Icon \"status-cancelled-outline\" is not available in size " + size);
1201
+ }
1202
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1203
+ };
1204
+ var IconStatusCancelledSimple = function (props) {
1205
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1206
+ var iconBodies = {
1207
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
1208
+ "8": "<path d=\"M1 4h6\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
1209
+ };
1210
+ var body = iconBodies[size];
1211
+ if (!body) {
1212
+ throw Error("Icon \"status-cancelled-simple\" is not available in size " + size);
1213
+ }
1214
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1215
+ };
1216
+ var IconStatusCancelledSolid = function (props) {
1217
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1218
+ var iconBodies = {
1219
+ "12": "<path d=\"M2 6h8\" stroke=\"#AFB3C7\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
1220
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8Zm4-1a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H5Z\" fill=\"#AFB3C7\"/>",
1221
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12Zm6-1a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z\" fill=\"#AFB3C7\"/>"
1222
+ };
1223
+ var body = iconBodies[size];
1224
+ if (!body) {
1225
+ throw Error("Icon \"status-cancelled-solid\" is not available in size " + size);
1226
+ }
1227
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1228
+ };
1229
+ var IconStatusErroredOutline = function (props) {
1230
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1231
+ var iconBodies = {
1232
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0Zm1 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>",
1233
+ "24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#DB7903\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Z\" fill=\"#E56F4A\"/><path d=\"M13 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#E56F4A\"/>"
1234
+ };
1235
+ var body = iconBodies[size];
1236
+ if (!body) {
1237
+ throw Error("Icon \"status-errored-outline\" is not available in size " + size);
1238
+ }
1239
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1240
+ };
1241
+ var IconStatusErroredSimple = function (props) {
1242
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1243
+ var iconBodies = {
1244
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#DB7903\"/>",
1245
+ "8": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-1Z\" fill=\"#DB7903\"/><path d=\"M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#DB7903\"/>"
1246
+ };
1247
+ var body = iconBodies[size];
1248
+ if (!body) {
1249
+ throw Error("Icon \"status-errored-simple\" is not available in size " + size);
1250
+ }
1251
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1252
+ };
1253
+ var IconStatusErroredSolid = function (props) {
1254
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1255
+ var iconBodies = {
1256
+ "12": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-1Z\" fill=\"#DB7903\"/><path d=\"M7 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#DB7903\"/>",
1257
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14ZM9 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>",
1258
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm1-14a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0V8Zm-1 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#DB7903\"/>"
1259
+ };
1260
+ var body = iconBodies[size];
1261
+ if (!body) {
1262
+ throw Error("Icon \"status-errored-solid\" is not available in size " + size);
1263
+ }
1264
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1265
+ };
1266
+ var IconStatusFailedOutline = function (props) {
1267
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1268
+ var iconBodies = {
1269
+ "16": "<path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293ZM13 8a5 5 0 0 1-5 5v2a7 7 0 0 0 7-7h-2Zm-5 5a5 5 0 0 1-5-5H1a7 7 0 0 0 7 7v-2ZM3 8a5 5 0 0 1 5-5V1a7 7 0 0 0-7 7h2Zm5-5a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7v2ZM5.293 6.707l2 2 1.414-1.414-2-2-1.414 1.414Zm2 2 2 2 1.414-1.414-2-2-1.414 1.414Zm2-3.414-2 2 1.414 1.414 2-2-1.414-1.414Zm-2 2-2 2 1.414 1.414 2-2-1.414-1.414Z\" fill=\"#E45770\"/>",
1270
+ "24": "<path d=\"M9.707 8.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-7.414 4.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-4.586 3 3 1.414-1.414-3-3-1.414 1.414Zm3 3 3 3 1.414-1.414-3-3-1.414 1.414Zm3-4.414-3 3 1.414 1.414 3-3-1.414-1.414Zm-3 3-3 3 1.414 1.414 3-3-1.414-1.414ZM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10h-2Zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10v-2Zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12h2Zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10v2Z\" fill=\"#E45770\"/>"
1271
+ };
1272
+ var body = iconBodies[size];
1273
+ if (!body) {
1274
+ throw Error("Icon \"status-failed-outline\" is not available in size " + size);
1275
+ }
1276
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1277
+ };
1278
+ var IconStatusFailedSimple = function (props) {
1279
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1280
+ var iconBodies = {
1281
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#E45770\"/>",
1282
+ "8": "<path d=\"M2.707 1.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414L5.293 6.707Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM1.293 5.293a1 1 0 0 0 1.414 1.414L1.293 5.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#E45770\"/>",
1283
+ "12": "<path d=\"M3.707 2.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414L8.293 9.707Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414ZM2.293 8.293a1 1 0 0 0 1.414 1.414L2.293 8.293Zm0-4.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6-1.414-6 6 1.414 1.414 6-6-1.414-1.414Z\" fill=\"#E45770\"/>",
1284
+ "16": "<path d=\"M4.707 3.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm6.586 9.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-8a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-9.414 6.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-6.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4 4 4 4 1.414-1.414-4-4-1.414 1.414Zm4-5.414-4 4 1.414 1.414 4-4-1.414-1.414Zm-4 4-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#E45770\"/>",
1285
+ "24": "<path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm10.586 13.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-12a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 17.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-10.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6 6 6 6 1.414-1.414-6-6-1.414 1.414Zm6-7.414-6 6 1.414 1.414 6-6-1.414-1.414Zm-6 6-6 6 1.414 1.414 6-6-1.414-1.414Z\" fill=\"#E45770\"/>"
1286
+ };
1287
+ var body = iconBodies[size];
1288
+ if (!body) {
1289
+ throw Error("Icon \"status-failed-simple\" is not available in size " + size);
1290
+ }
1291
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1292
+ };
1293
+ var IconStatusFailedSolid = function (props) {
1294
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1295
+ var iconBodies = {
1296
+ "16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#E45770\"/><path d=\"M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z\" fill=\"#fff\"/>",
1297
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM9.707 8.293a1 1 0 0 0-1.414 1.414L10.586 12l-2.293 2.293a1 1 0 1 0 1.414 1.414L12 13.414l2.293 2.293a1 1 0 0 0 1.414-1.414L13.414 12l2.293-2.293a1 1 0 0 0-1.414-1.414L12 10.586 9.707 8.293Z\" fill=\"#E45770\"/>"
1298
+ };
1299
+ var body = iconBodies[size];
1300
+ if (!body) {
1301
+ throw Error("Icon \"status-failed-solid\" is not available in size " + size);
1302
+ }
1303
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1304
+ };
1305
+ var IconStatusPassedOutline = function (props) {
1306
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1307
+ var iconBodies = {
1308
+ "16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#1FA971\" stroke-width=\"2\"/><path d=\"m10 6-2.5 4L6 8.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1309
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm3.864 7.504a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z\" fill=\"#1FA971\"/>"
1310
+ };
1311
+ var body = iconBodies[size];
1312
+ if (!body) {
1313
+ throw Error("Icon \"status-passed-outline\" is not available in size " + size);
1314
+ }
1315
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1316
+ };
1317
+ var IconStatusPassedSimple = function (props) {
1318
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8", "12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1319
+ var iconBodies = {
1320
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#1FA971\"/>",
1321
+ "8": "<path d=\"M6 2 3.5 6 2 4.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1322
+ "12": "<path d=\"M9 3 5 9 3 6.5\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1323
+ "16": "<path d=\"M4 8.667 7.333 12 12 4\" stroke=\"#1FA971\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1324
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.504 8.136a1 1 0 0 1 .36 1.368l-3.5 6a1 1 0 0 1-1.571.203l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.583 1.583 2.846-4.88a1 1 0 0 1 1.368-.36Z\" fill=\"#1FA971\"/>"
1325
+ };
1326
+ var body = iconBodies[size];
1327
+ if (!body) {
1328
+ throw Error("Icon \"status-passed-simple\" is not available in size " + size);
1329
+ }
1330
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1331
+ };
1332
+ var IconStatusPassedSolid = function (props) {
1333
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1334
+ var iconBodies = {
1335
+ "16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#1FA971\"/><path d=\"m10 6-2.5 4L6 8.5\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1336
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm3.864-12.496a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z\" fill=\"#1FA971\"/>"
1337
+ };
1338
+ var body = iconBodies[size];
1339
+ if (!body) {
1340
+ throw Error("Icon \"status-passed-solid\" is not available in size " + size);
1341
+ }
1342
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1343
+ };
1344
+ var IconStatusPendingOutline = function (props) {
1345
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1346
+ var iconBodies = {
1347
+ "12": "<path d=\"M4.47 2.305a4 4 0 1 0 3.061 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
1348
+ "16": "<path d=\"M5.706 2.46a5.998 5.998 0 1 0 4.59 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>",
1349
+ "24": "<path d=\"M8.555 3.685a8.999 8.999 0 1 0 6.887 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/>"
1350
+ };
1351
+ var body = iconBodies[size];
1352
+ if (!body) {
1353
+ throw Error("Icon \"status-pending-outline\" is not available in size " + size);
1354
+ }
1355
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1356
+ };
1357
+ var IconStatusPendingSimple = function (props) {
1358
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1359
+ var iconBodies = {
1360
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#BFC2D4\"/>",
1361
+ "8": "<g clip-path=\"url(#a)\"><path d=\"M2.852 1.228a3 3 0 1 0 2.296 0\" stroke=\"#BFC2D4\" stroke-width=\"2\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h8v8H0z\"/></clipPath></defs>"
1362
+ };
1363
+ var body = iconBodies[size];
1364
+ if (!body) {
1365
+ throw Error("Icon \"status-pending-simple\" is not available in size " + size);
1366
+ }
1367
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1368
+ };
1369
+ var IconStatusPlaceholderSimple = function (props) {
1370
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1371
+ var iconBodies = {
1372
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"#D0D2E0\"/>",
1373
+ "8": "<circle cx=\"4\" cy=\"4\" r=\"3\" fill=\"#D0D2E0\"/>"
1374
+ };
1375
+ var body = iconBodies[size];
1376
+ if (!body) {
1377
+ throw Error("Icon \"status-placeholder-simple\" is not available in size " + size);
1378
+ }
1379
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1380
+ };
1381
+ var IconStatusPlaceholderSolid = function (props) {
1382
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1383
+ var iconBodies = {
1384
+ "12": "<circle cx=\"6\" cy=\"6\" r=\"5\" fill=\"#D0D2E0\"/>",
1385
+ "16": "<circle cx=\"8\" cy=\"8\" r=\"7\" fill=\"#D0D2E0\"/>",
1386
+ "24": "<circle cx=\"12\" cy=\"12\" r=\"10\" fill=\"#D0D2E0\"/>"
1197
1387
  };
1198
1388
  var body = iconBodies[size];
1199
1389
  if (!body) {
1200
- throw Error("Icon \"shape-lightning-bolt\" is not available in size ".concat(size));
1390
+ throw Error("Icon \"status-placeholder-solid\" is not available in size " + size);
1391
+ }
1392
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1393
+ };
1394
+ var IconStatusQueuedOutline = function (props) {
1395
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1396
+ var iconBodies = {
1397
+ "12": "<circle cx=\"6\" cy=\"6\" r=\"4\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1398
+ "16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1399
+ "24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\"/>"
1400
+ };
1401
+ var body = iconBodies[size];
1402
+ if (!body) {
1403
+ throw Error("Icon \"status-queued-outline\" is not available in size " + size);
1404
+ }
1405
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1406
+ };
1407
+ var IconStatusQueuedSimple = function (props) {
1408
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1409
+ var iconBodies = {
1410
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#E1E3ED\"/>",
1411
+ "8": "<circle cx=\"4\" cy=\"4\" r=\"3\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1412
+ };
1413
+ var body = iconBodies[size];
1414
+ if (!body) {
1415
+ throw Error("Icon \"status-queued-simple\" is not available in size " + size);
1416
+ }
1417
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1418
+ };
1419
+ var IconStatusRunningOutline = function (props) {
1420
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1421
+ var iconBodies = {
1422
+ "12": "<circle cx=\"6\" cy=\"6\" r=\"4\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 6a4 4 0 0 0-4-4\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1423
+ "16": "<circle cx=\"8\" cy=\"8\" r=\"6\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 8a6 6 0 0 0-6-6\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
1424
+ "24": "<circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"#E1E3ED\" stroke-width=\"2\"/><path d=\"M12 2.999c4.893-.006 9.017 4.125 8.998 9.001\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\"/>"
1425
+ };
1426
+ var body = iconBodies[size];
1427
+ if (!body) {
1428
+ throw Error("Icon \"status-running-outline\" is not available in size " + size);
1429
+ }
1430
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1431
+ };
1432
+ var IconStatusRunningSimple = function (props) {
1433
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1434
+ var iconBodies = {
1435
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" fill=\"#C5C9FD\" stroke=\"#6470F3\"><animate attributeName=\"fill\" values=\"#C5C9FD;#6470F3;#C5C9FD\" dur=\"1.5s\" repeatCount=\"indefinite\"/></circle>",
1436
+ "8": "<circle cx=\"4\" cy=\"4\" r=\"3\" stroke=\"#E1E3ED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 4a3 3 0 0 0-3-3\" stroke=\"#6470F3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1437
+ };
1438
+ var body = iconBodies[size];
1439
+ if (!body) {
1440
+ throw Error("Icon \"status-running-simple\" is not available in size " + size);
1441
+ }
1442
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1443
+ };
1444
+ var IconStatusSkippedOutline = function (props) {
1445
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1446
+ var iconBodies = {
1447
+ "12": "<path d=\"M3.172 8.828a4 4 0 0 0 5.656-5.656M3.172 8.828a4 4 0 0 1 5.656-5.656M3.172 8.828l5.656-5.656\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>",
1448
+ "16": "<path d=\"M3.757 12.243a6 6 0 1 0 8.486-8.486m-8.486 8.486a6 6 0 1 1 8.486-8.486m-8.486 8.486 8.486-8.486\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>",
1449
+ "24": "<path d=\"M5.636 18.364A9 9 0 0 0 18.364 5.636M5.636 18.364A9 9 0 0 1 18.364 5.636M5.636 18.364 18.364 5.636\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>"
1450
+ };
1451
+ var body = iconBodies[size];
1452
+ if (!body) {
1453
+ throw Error("Icon \"status-skipped-outline\" is not available in size " + size);
1454
+ }
1455
+ return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1456
+ };
1457
+ var IconStatusSkippedSimple = function (props) {
1458
+ var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["4", "8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1459
+ var iconBodies = {
1460
+ "4": "<circle cx=\"2\" cy=\"2\" r=\"1.5\" stroke=\"#AFB3C7\"/>",
1461
+ "8": "<path d=\"M1.879 6.121A3 3 0 0 0 6.12 1.88M1.88 6.12A3 3 0 1 1 6.12 1.88M1.88 6.12 6.12 1.88\" stroke=\"#AFB3C7\" stroke-width=\"2\"/>"
1462
+ };
1463
+ var body = iconBodies[size];
1464
+ if (!body) {
1465
+ throw Error("Icon \"status-skipped-simple\" is not available in size " + size);
1201
1466
  }
1202
1467
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1203
1468
  };
@@ -1208,29 +1473,29 @@ var IconTechnologyBranchHTall = function (props) {
1208
1473
  };
1209
1474
  var body = iconBodies[size];
1210
1475
  if (!body) {
1211
- throw Error("Icon \"technology-branch-h-tall\" is not available in size ".concat(size));
1476
+ throw Error("Icon \"technology-branch-h-tall\" is not available in size " + size);
1212
1477
  }
1213
1478
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1214
1479
  };
1215
1480
  var IconTechnologyBranchH = function (props) {
1216
1481
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1217
1482
  var iconBodies = {
1218
- "16": "<path d=\"M3 12h3v-2H3v2Zm3 0h7v-2H6v2Zm4.236-6H13V4h-2.764v2Zm-3.342 5.447 2.448-4.894-1.79-.895-2.446 4.895 1.788.894ZM14 5v2a2 2 0 0 0 2-2h-2Zm0 0h-2a2 2 0 0 0 2 2V5Zm0 0V3a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2Zm0 6v2a2 2 0 0 0 2-2h-2Zm0 0h-2a2 2 0 0 0 2 2v-2Zm0 0V9a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2ZM2 11v2a2 2 0 0 0 2-2H2Zm0 0H0a2 2 0 0 0 2 2v-2Zm0 0V9a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2Zm8.236-7a3 3 0 0 0-2.683 1.658l1.789.895A1 1 0 0 1 10.236 6V4Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
1483
+ "16": "<path d=\"M3 12h3v-2H3v2Zm3 0h7v-2H6v2Zm4.236-6H13V4h-2.764v2Zm-3.342 5.447 2.448-4.894-1.79-.895-2.446 4.895 1.788.894ZM14 5v2a2 2 0 0 0 2-2h-2Zm0 0h-2a2 2 0 0 0 2 2V5Zm0 0V3a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2Zm0 6v2a2 2 0 0 0 2-2h-2Zm0 0h-2a2 2 0 0 0 2 2v-2Zm0 0V9a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2ZM2 11v2a2 2 0 0 0 2-2H2Zm0 0H0a2 2 0 0 0 2 2v-2Zm0 0V9a2 2 0 0 0-2 2h2Zm0 0h2a2 2 0 0 0-2-2v2Zm8.236-7a3 3 0 0 0-2.683 1.658l1.789.895A1 1 0 0 1 10.236 6V4Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1219
1484
  };
1220
1485
  var body = iconBodies[size];
1221
1486
  if (!body) {
1222
- throw Error("Icon \"technology-branch-h\" is not available in size ".concat(size));
1487
+ throw Error("Icon \"technology-branch-h\" is not available in size " + size);
1223
1488
  }
1224
1489
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1225
1490
  };
1226
1491
  var IconTechnologyBrowserTesting2 = function (props) {
1227
1492
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1228
1493
  var iconBodies = {
1229
- "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\"/>"
1494
+ "48": "<path d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3Z\" fill=\"#D0D2E0\" 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=\"#D0D2E0\" 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=\"currentColor\" 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\"/>"
1230
1495
  };
1231
1496
  var body = iconBodies[size];
1232
1497
  if (!body) {
1233
- throw Error("Icon \"technology-browser-testing-2\" is not available in size ".concat(size));
1498
+ throw Error("Icon \"technology-browser-testing-2\" is not available in size " + size);
1234
1499
  }
1235
1500
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1236
1501
  };
@@ -1238,11 +1503,11 @@ var IconTechnologyCodeEditor = function (props) {
1238
1503
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1239
1504
  var iconBodies = {
1240
1505
  "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 4h14m-5 4 1.5 1.5L10 11M6 8 4.5 9.5 6 11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
1241
- "24": "<path d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2h18V6Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2h18V6Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M3 8v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8M3 8V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2M3 8h18m-7 4 2 2-2 2m-4-4-2 1.929 2 1.928\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1506
+ "24": "<path d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2h18V6Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2h18V6Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M3 8v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8M3 8V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2M3 8h18m-7 4 2 2-2 2m-4-4-2 1.929 2 1.928\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1242
1507
  };
1243
1508
  var body = iconBodies[size];
1244
1509
  if (!body) {
1245
- throw Error("Icon \"technology-code-editor\" is not available in size ".concat(size));
1510
+ throw Error("Icon \"technology-code-editor\" is not available in size " + size);
1246
1511
  }
1247
1512
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1248
1513
  };
@@ -1253,73 +1518,73 @@ var IconTechnologyCommandLine = function (props) {
1253
1518
  };
1254
1519
  var body = iconBodies[size];
1255
1520
  if (!body) {
1256
- throw Error("Icon \"technology-command-line\" is not available in size ".concat(size));
1521
+ throw Error("Icon \"technology-command-line\" is not available in size " + size);
1257
1522
  }
1258
1523
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1259
1524
  };
1260
1525
  var IconTechnologyCypress = function (props) {
1261
1526
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1262
1527
  var iconBodies = {
1263
- "16": "<path class=\"icon-dark\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.872 8.854A2.49 2.49 0 0 1 7.1 9.857c-.43.334-.972.533-1.561.533-1.394 0-2.524-1.113-2.524-2.487s1.13-2.487 2.524-2.487a2.538 2.538 0 0 1 1.705.654c.27.243.485.544.627.882l-1.339.464c-.169-.385-.532-.652-.953-.652-.582 0-1.054.51-1.054 1.139s.472 1.139 1.054 1.139c.421 0 .784-.267.953-.652l1.339.464Z\" fill=\"#1B1E2E\"/><path class=\"icon-dark\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.872 8.854A2.49 2.49 0 0 1 7.1 9.857c-.43.334-.972.533-1.561.533-1.394 0-2.524-1.113-2.524-2.487s1.13-2.487 2.524-2.487a2.538 2.538 0 0 1 1.705.654c.27.243.485.544.627.882l-1.339.464c-.169-.385-.532-.652-.953-.652-.582 0-1.054.51-1.054 1.139s.472 1.139 1.054 1.139c.421 0 .784-.267.953-.652l1.339.464Z\" fill=\"#1B1E2E\"/><path class=\"icon-dark\" d=\"M2 8a6 6 0 1 1 9.122 5.125l-.996 2.59A8 8 0 0 0 16 8a8 8 0 1 0-7.64 7.991.93.93 0 0 0 .817-.61l3.806-9.88h-1.458L10.39 8.717 9.23 5.5H7.687l1.93 4.975-1.364 3.519A6.001 6.001 0 0 1 2 8Z\" fill=\"#1B1E2E\"/>"
1528
+ "16": "<path class=\"icon-dark\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.872 8.854A2.49 2.49 0 0 1 7.1 9.857c-.43.334-.972.533-1.561.533-1.394 0-2.524-1.113-2.524-2.487s1.13-2.487 2.524-2.487a2.538 2.538 0 0 1 1.705.654c.27.243.485.544.627.882l-1.339.464c-.169-.385-.532-.652-.953-.652-.582 0-1.054.51-1.054 1.139s.472 1.139 1.054 1.139c.421 0 .784-.267.953-.652l1.339.464Z\" fill=\"currentColor\"/><path class=\"icon-dark\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.872 8.854A2.49 2.49 0 0 1 7.1 9.857c-.43.334-.972.533-1.561.533-1.394 0-2.524-1.113-2.524-2.487s1.13-2.487 2.524-2.487a2.538 2.538 0 0 1 1.705.654c.27.243.485.544.627.882l-1.339.464c-.169-.385-.532-.652-.953-.652-.582 0-1.054.51-1.054 1.139s.472 1.139 1.054 1.139c.421 0 .784-.267.953-.652l1.339.464Z\" fill=\"currentColor\"/><path class=\"icon-dark\" d=\"M2 8a6 6 0 1 1 9.122 5.125l-.996 2.59A8 8 0 0 0 16 8a8 8 0 1 0-7.64 7.991.93.93 0 0 0 .817-.61l3.806-9.88h-1.458L10.39 8.717 9.23 5.5H7.687l1.93 4.975-1.364 3.519A6.001 6.001 0 0 1 2 8Z\" fill=\"currentColor\"/>"
1264
1529
  };
1265
1530
  var body = iconBodies[size];
1266
1531
  if (!body) {
1267
- throw Error("Icon \"technology-cypress\" is not available in size ".concat(size));
1532
+ throw Error("Icon \"technology-cypress\" is not available in size " + size);
1268
1533
  }
1269
1534
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1270
1535
  };
1271
1536
  var IconTechnologyDashboardCheckmark = function (props) {
1272
1537
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1273
1538
  var iconBodies = {
1274
- "48": "<path d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3Z\" fill=\"#D0D2E0\" 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=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m19 30-5-2-5 3v5h29a1 1 0 0 0 1-1V23l-5 1-5 3-5-2-5 5Z\" fill=\"#D0D2E0\" 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-2v2ZM14 28l.371-.928a1 1 0 0 0-.886.07L14 28Zm5 2-.371.928a1 1 0 0 0 1.078-.22L19 30Zm5-5 .371-.928a1 1 0 0 0-1.078.22L24 25Zm5 2-.371.928a1 1 0 0 0 .886-.07L29 27ZM9 31l-.514-.858A1 1 0 0 0 8 31h1Zm25-7-.196-.98a1 1 0 0 0-.319.122L34 24ZM9 36H8a1 1 0 0 0 1 1v-1ZM8 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-6 3H10v2h28v-2Zm-24.371 9.928 5 2 .742-1.857-5-2-.742 1.857Zm6.078 1.78 5-5-1.414-1.415-5 5 1.414 1.414Zm3.922-4.78 5 2 .742-1.857-5-2-.742 1.857ZM40 35V23h-2v12h2Zm0-12v-2h-2v2h2Zm0 16H24v2h16v-2Zm-16 0h-8v2h8v-2Zm-8 0H8v2h8v-2Zm-6.486-7.142 5-3-1.028-1.716-5 3 1.028 1.716Zm20-4 5-3-1.029-1.716-5 3 1.03 1.716Zm4.682-2.877 5-1-.392-1.962-5 1 .392 1.962ZM38 35H9v2h29v-2Zm-28 1V21H8v15h2Zm-2-5v5h2v-5H8Zm30-10h2a2 2 0 0 0-2-2v2Zm0 14v2a2 2 0 0 0 2-2h-2ZM10 19a2 2 0 0 0-2 2h2v-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=\"#1B1E2E\" class=\"icon-dark\"/><path d=\"M37 37a6 6 0 1 0-12 0 6 6 0 0 0 12 0Z\" fill=\"#69D3A7\"/><path d=\"M28.293 38.207a1 1 0 0 1 1.414-1.414l-1.414 1.414ZM30.5 39l.814.581a1 1 0 0 1-1.521.126L30.5 39Zm1.686-4.081a1 1 0 1 1 1.628 1.162l-1.628-1.162ZM36 37a5 5 0 0 0-5-5v-2a7 7 0 0 1 7 7h-2Zm-5-5a5 5 0 0 0-5 5h-2a7 7 0 0 1 7-7v2Zm-5 5a5 5 0 0 0 5 5v2a7 7 0 0 1-7-7h2Zm5 5a5 5 0 0 0 5-5h2a7 7 0 0 1-7 7v-2Zm-1.293-5.207 1.5 1.5-1.414 1.414-1.5-1.5 1.414-1.414Zm-.02 1.626 2.5-3.5 1.627 1.162-2.5 3.5-1.628-1.162Z\" fill=\"#00814D\"/>"
1539
+ "48": "<path d=\"M40 8H8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3Z\" fill=\"#D0D2E0\" 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=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m19 30-5-2-5 3v5h29a1 1 0 0 0 1-1V23l-5 1-5 3-5-2-5 5Z\" fill=\"#D0D2E0\" 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-2v2ZM14 28l.371-.928a1 1 0 0 0-.886.07L14 28Zm5 2-.371.928a1 1 0 0 0 1.078-.22L19 30Zm5-5 .371-.928a1 1 0 0 0-1.078.22L24 25Zm5 2-.371.928a1 1 0 0 0 .886-.07L29 27ZM9 31l-.514-.858A1 1 0 0 0 8 31h1Zm25-7-.196-.98a1 1 0 0 0-.319.122L34 24ZM9 36H8a1 1 0 0 0 1 1v-1ZM8 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-6 3H10v2h28v-2Zm-24.371 9.928 5 2 .742-1.857-5-2-.742 1.857Zm6.078 1.78 5-5-1.414-1.415-5 5 1.414 1.414Zm3.922-4.78 5 2 .742-1.857-5-2-.742 1.857ZM40 35V23h-2v12h2Zm0-12v-2h-2v2h2Zm0 16H24v2h16v-2Zm-16 0h-8v2h8v-2Zm-8 0H8v2h8v-2Zm-6.486-7.142 5-3-1.028-1.716-5 3 1.028 1.716Zm20-4 5-3-1.029-1.716-5 3 1.03 1.716Zm4.682-2.877 5-1-.392-1.962-5 1 .392 1.962ZM38 35H9v2h29v-2Zm-28 1V21H8v15h2Zm-2-5v5h2v-5H8Zm30-10h2a2 2 0 0 0-2-2v2Zm0 14v2a2 2 0 0 0 2-2h-2ZM10 19a2 2 0 0 0-2 2h2v-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=\"currentColor\" class=\"icon-dark\"/><path d=\"M37 37a6 6 0 1 0-12 0 6 6 0 0 0 12 0Z\" fill=\"#69D3A7\"/><path d=\"M28.293 38.207a1 1 0 0 1 1.414-1.414l-1.414 1.414ZM30.5 39l.814.581a1 1 0 0 1-1.521.126L30.5 39Zm1.686-4.081a1 1 0 1 1 1.628 1.162l-1.628-1.162ZM36 37a5 5 0 0 0-5-5v-2a7 7 0 0 1 7 7h-2Zm-5-5a5 5 0 0 0-5 5h-2a7 7 0 0 1 7-7v2Zm-5 5a5 5 0 0 0 5 5v2a7 7 0 0 1-7-7h2Zm5 5a5 5 0 0 0 5-5h2a7 7 0 0 1-7 7v-2Zm-1.293-5.207 1.5 1.5-1.414 1.414-1.5-1.5 1.414-1.414Zm-.02 1.626 2.5-3.5 1.627 1.162-2.5 3.5-1.628-1.162Z\" fill=\"#00814D\"/>"
1275
1540
  };
1276
1541
  var body = iconBodies[size];
1277
1542
  if (!body) {
1278
- throw Error("Icon \"technology-dashboard-checkmark\" is not available in size ".concat(size));
1543
+ throw Error("Icon \"technology-dashboard-checkmark\" is not available in size " + size);
1279
1544
  }
1280
1545
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1281
1546
  };
1282
1547
  var IconTechnologyDashboardFail = function (props) {
1283
1548
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1284
1549
  var iconBodies = {
1285
- "48": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3H8Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m19 30-5-2-5 3v5h29a1 1 0 0 0 1-1V23l-5 1-5 3-5-2-5 5Z\" fill=\"#D0D2E0\" 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-2v2ZM14 28l.371-.928a1 1 0 0 0-.886.07L14 28Zm5 2-.371.928a1 1 0 0 0 1.078-.22L19 30Zm5-5 .371-.928a1 1 0 0 0-1.078.22L24 25Zm5 2-.371.928a1 1 0 0 0 .886-.07L29 27ZM9 31l-.514-.858A1 1 0 0 0 8 31h1Zm25-7-.196-.98a1 1 0 0 0-.319.122L34 24ZM9 36H8a1 1 0 0 0 1 1v-1ZM8 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-6 3H10v2h28v-2Zm-24.371 9.928 5 2 .742-1.857-5-2-.742 1.857Zm6.078 1.78 5-5-1.414-1.415-5 5 1.414 1.414Zm3.922-4.78 5 2 .742-1.857-5-2-.742 1.857ZM40 35V23h-2v12h2Zm0-12v-2h-2v2h2Zm0 16H24v2h16v-2Zm-16 0h-8v2h8v-2Zm-8 0H8v2h8v-2Zm-6.486-7.142 5-3-1.028-1.716-5 3 1.028 1.716Zm20-4 5-3-1.029-1.716-5 3 1.03 1.716Zm4.682-2.877 5-1-.392-1.962-5 1 .392 1.962ZM38 35H9v2h29v-2Zm-28 1V21H8v15h2Zm-2-5v5h2v-5H8Zm30-10h2a2 2 0 0 0-2-2v2Zm0 14v2a2 2 0 0 0 2-2h-2ZM10 19a2 2 0 0 0-2 2h2v-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=\"#1B1E2E\" class=\"icon-dark\"/><path d=\"M35.243 41.243a6 6 0 1 1-8.486-8.485 6 6 0 0 1 8.486 8.485Z\" fill=\"#F8C4CD\" class=\"icon-light-secondary\"/><path d=\"m32.5 35.5-3 3m3 0-3-3m5.743 5.743a6 6 0 1 1-8.486-8.485 6 6 0 0 1 8.486 8.485Z\" stroke=\"#C62B49\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark-secondary\"/>"
1550
+ "48": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 8a3 3 0 0 0-3 3v5h38v-5a3 3 0 0 0-3-3H8Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m19 30-5-2-5 3v5h29a1 1 0 0 0 1-1V23l-5 1-5 3-5-2-5 5Z\" fill=\"#D0D2E0\" 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-2v2ZM14 28l.371-.928a1 1 0 0 0-.886.07L14 28Zm5 2-.371.928a1 1 0 0 0 1.078-.22L19 30Zm5-5 .371-.928a1 1 0 0 0-1.078.22L24 25Zm5 2-.371.928a1 1 0 0 0 .886-.07L29 27ZM9 31l-.514-.858A1 1 0 0 0 8 31h1Zm25-7-.196-.98a1 1 0 0 0-.319.122L34 24ZM9 36H8a1 1 0 0 0 1 1v-1ZM8 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-6 3H10v2h28v-2Zm-24.371 9.928 5 2 .742-1.857-5-2-.742 1.857Zm6.078 1.78 5-5-1.414-1.415-5 5 1.414 1.414Zm3.922-4.78 5 2 .742-1.857-5-2-.742 1.857ZM40 35V23h-2v12h2Zm0-12v-2h-2v2h2Zm0 16H24v2h16v-2Zm-16 0h-8v2h8v-2Zm-8 0H8v2h8v-2Zm-6.486-7.142 5-3-1.028-1.716-5 3 1.028 1.716Zm20-4 5-3-1.029-1.716-5 3 1.03 1.716Zm4.682-2.877 5-1-.392-1.962-5 1 .392 1.962ZM38 35H9v2h29v-2Zm-28 1V21H8v15h2Zm-2-5v5h2v-5H8Zm30-10h2a2 2 0 0 0-2-2v2Zm0 14v2a2 2 0 0 0 2-2h-2ZM10 19a2 2 0 0 0-2 2h2v-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=\"currentColor\" class=\"icon-dark\"/><path d=\"M35.243 41.243a6 6 0 1 1-8.486-8.485 6 6 0 0 1 8.486 8.485Z\" fill=\"#F8C4CD\" class=\"icon-light-secondary\"/><path d=\"m32.5 35.5-3 3m3 0-3-3m5.743 5.743a6 6 0 1 1-8.486-8.485 6 6 0 0 1 8.486 8.485Z\" stroke=\"#C62B49\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark-secondary\"/>"
1286
1551
  };
1287
1552
  var body = iconBodies[size];
1288
1553
  if (!body) {
1289
- throw Error("Icon \"technology-dashboard-fail\" is not available in size ".concat(size));
1554
+ throw Error("Icon \"technology-dashboard-fail\" is not available in size " + size);
1290
1555
  }
1291
1556
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1292
1557
  };
1293
1558
  var IconTechnologyDollar = function (props) {
1294
1559
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1295
1560
  var iconBodies = {
1296
- "16": "<path class=\"icon-dark\" d=\"M5 3h3a1 1 0 0 1 1 1v.5M5 3H2a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3m0-5V1m0 2v5m0 5h3a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H5m0 5H2a1 1 0 0 1-1-1v-.5M5 13v2m0-2V8\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1561
+ "16": "<path class=\"icon-dark\" d=\"M5 3h3a1 1 0 0 1 1 1v.5M5 3H2a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3m0-5V1m0 2v5m0 5h3a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H5m0 5H2a1 1 0 0 1-1-1v-.5M5 13v2m0-2V8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1297
1562
  };
1298
1563
  var body = iconBodies[size];
1299
1564
  if (!body) {
1300
- throw Error("Icon \"technology-dollar\" is not available in size ".concat(size));
1565
+ throw Error("Icon \"technology-dollar\" is not available in size " + size);
1301
1566
  }
1302
1567
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1303
1568
  };
1304
1569
  var IconTechnologyDragProject = function (props) {
1305
1570
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1306
1571
  var iconBodies = {
1307
- "48": "<path d=\"M38.5 15v-1m-29 24h-2a3 3 0 0 1-3-3v-1m34-24V9a3 3 0 0 0-3-3h-1m-30 4V9a3 3 0 0 1 3-3h1m-4 24v-2.5m0-4v-3m0-4V14m8-8H16m4 0h3m4 0h3.5\" stroke=\"rgba(0,0,0,0.2)\" class=\"icon-dark-secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M26.086 15.586A2 2 0 0 0 24.672 15H13.5a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L28.5 18l-2.414-2.414Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path class=\"icon-dark\" d=\"M12.5 21h-1 1Zm13.586-.586.707.707-.707-.707ZM24.672 15v-1 1Zm1.414.586.707-.707-.707.707ZM13.5 15v1-1Zm10.707 13.707a.999.999 0 1 0-1.414-1.414l1.414 1.414ZM21 30.5l-.707-.707a.999.999 0 0 0 0 1.414L21 30.5Zm1.793 3.207a.999.999 0 1 0 1.414-1.414l-1.414 1.414Zm9.414-6.414a.999.999 0 1 0-1.414 1.414l1.414-1.414ZM34 30.5l.707.707a.999.999 0 0 0 0-1.414L34 30.5Zm-3.207 1.793a.999.999 0 1 0 1.414 1.414l-1.414-1.414Zm-5.269 2.49a1 1 0 1 0 1.952.434l-1.952-.434Zm3.952-8.566a1 1 0 1 0-1.952-.434l1.952.434ZM41.5 20v19h2V20h-2Zm-1 20h-26v2h26v-2Zm-27-24h11.172v-2H13.5v2Zm11.879.293 2.414 2.414 1.414-1.414-2.414-2.414-1.414 1.414ZM28.5 19h12v-2h-12v2Zm-.707-1.707-2.414 2.414 1.414 1.414 2.414-2.414-1.414-1.414ZM13.5 39V21h-2v18h2Zm0-18v-5h-2v5h2Zm11.172-1H12.5v2h12.172v-2Zm.707-.293a1 1 0 0 1-.707.293v2a3 3 0 0 0 2.121-.879l-1.414-1.414ZM24.672 16a1 1 0 0 1 .707.293l1.414-1.414A3 3 0 0 0 24.672 14v2ZM14.5 40a1 1 0 0 1-1-1h-2a3 3 0 0 0 3 3v-2Zm27-1a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm2-19a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2Zm-30-6a2 2 0 0 0-2 2h2v-2Zm9.293 13.293-2.5 2.5 1.414 1.414 2.5-2.5-1.414-1.414Zm-2.5 3.914 2.5 2.5 1.414-1.414-2.5-2.5-1.414 1.414Zm10.5-2.5 2.5 2.5 1.414-1.414-2.5-2.5-1.414 1.414Zm2.5 1.086-2.5 2.5 1.414 1.414 2.5-2.5-1.414-1.414Zm-5.817 5.424 2-9-1.952-.434-2 9 1.952.434Z\" fill=\"#00814D\"/>"
1572
+ "48": "<path d=\"M38.5 15v-1m-29 24h-2a3 3 0 0 1-3-3v-1m34-24V9a3 3 0 0 0-3-3h-1m-30 4V9a3 3 0 0 1 3-3h1m-4 24v-2.5m0-4v-3m0-4V14m8-8H16m4 0h3m4 0h3.5\" stroke=\"rgba(0,0,0,0.2)\" class=\"icon-dark-secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M26.086 15.586A2 2 0 0 0 24.672 15H13.5a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L28.5 18l-2.414-2.414Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path class=\"icon-dark\" d=\"M12.5 21h-1 1Zm13.586-.586.707.707-.707-.707ZM24.672 15v-1 1Zm1.414.586.707-.707-.707.707ZM13.5 15v1-1Zm10.707 13.707a.999.999 0 1 0-1.414-1.414l1.414 1.414ZM21 30.5l-.707-.707a.999.999 0 0 0 0 1.414L21 30.5Zm1.793 3.207a.999.999 0 1 0 1.414-1.414l-1.414 1.414Zm9.414-6.414a.999.999 0 1 0-1.414 1.414l1.414-1.414ZM34 30.5l.707.707a.999.999 0 0 0 0-1.414L34 30.5Zm-3.207 1.793a.999.999 0 1 0 1.414 1.414l-1.414-1.414Zm-5.269 2.49a1 1 0 1 0 1.952.434l-1.952-.434Zm3.952-8.566a1 1 0 1 0-1.952-.434l1.952.434ZM41.5 20v19h2V20h-2Zm-1 20h-26v2h26v-2Zm-27-24h11.172v-2H13.5v2Zm11.879.293 2.414 2.414 1.414-1.414-2.414-2.414-1.414 1.414ZM28.5 19h12v-2h-12v2Zm-.707-1.707-2.414 2.414 1.414 1.414 2.414-2.414-1.414-1.414ZM13.5 39V21h-2v18h2Zm0-18v-5h-2v5h2Zm11.172-1H12.5v2h12.172v-2Zm.707-.293a1 1 0 0 1-.707.293v2a3 3 0 0 0 2.121-.879l-1.414-1.414ZM24.672 16a1 1 0 0 1 .707.293l1.414-1.414A3 3 0 0 0 24.672 14v2ZM14.5 40a1 1 0 0 1-1-1h-2a3 3 0 0 0 3 3v-2Zm27-1a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm2-19a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2Zm-30-6a2 2 0 0 0-2 2h2v-2Zm9.293 13.293-2.5 2.5 1.414 1.414 2.5-2.5-1.414-1.414Zm-2.5 3.914 2.5 2.5 1.414-1.414-2.5-2.5-1.414 1.414Zm10.5-2.5 2.5 2.5 1.414-1.414-2.5-2.5-1.414 1.414Zm2.5 1.086-2.5 2.5 1.414 1.414 2.5-2.5-1.414-1.414Zm-5.817 5.424 2-9-1.952-.434-2 9 1.952.434Z\" fill=\"currentColor\"/>"
1308
1573
  };
1309
1574
  var body = iconBodies[size];
1310
1575
  if (!body) {
1311
- throw Error("Icon \"technology-drag-project\" is not available in size ".concat(size));
1576
+ throw Error("Icon \"technology-drag-project\" is not available in size " + size);
1312
1577
  }
1313
1578
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1314
1579
  };
1315
1580
  var IconTechnologyElementSelector = function (props) {
1316
1581
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1317
1582
  var iconBodies = {
1318
- "16": "<path d=\"M14 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1\" stroke=\"#4956E3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/><path d=\"m10 11 3 3 1-1-3-3 1.5-1.5L7 7l1.5 5.5L10 11Z\" fill=\"#4956E3\" stroke=\"#4956E3\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1583
+ "16": "<path d=\"M14 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/><path d=\"m10 11 3 3 1-1-3-3 1.5-1.5L7 7l1.5 5.5L10 11Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1319
1584
  };
1320
1585
  var body = iconBodies[size];
1321
1586
  if (!body) {
1322
- throw Error("Icon \"technology-element-selector\" is not available in size ".concat(size));
1587
+ throw Error("Icon \"technology-element-selector\" is not available in size " + size);
1323
1588
  }
1324
1589
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1325
1590
  };
@@ -1330,7 +1595,7 @@ var IconTechnologyImageScreenshot = function (props) {
1330
1595
  };
1331
1596
  var body = iconBodies[size];
1332
1597
  if (!body) {
1333
- throw Error("Icon \"technology-image-screenshot\" is not available in size ".concat(size));
1598
+ throw Error("Icon \"technology-image-screenshot\" is not available in size " + size);
1334
1599
  }
1335
1600
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1336
1601
  };
@@ -1338,34 +1603,34 @@ var IconTechnologyInfinityLoop = function (props) {
1338
1603
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "20", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1339
1604
  var iconBodies = {
1340
1605
  "16": "<path d=\"M7 5v1h2V5H7Zm2 6v-1H7v1h2ZM5 7a2 2 0 0 1-2-2H1a4 4 0 0 0 4 4V7ZM3 5a2 2 0 0 1 2-2V1a4 4 0 0 0-4 4h2Zm2-2a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4v2Zm8 8a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4h-2Zm-2 2a2 2 0 0 1-2-2H7a4 4 0 0 0 4 4v-2Zm0-4a2 2 0 0 1 2 2h2a4 4 0 0 0-4-4v2Zm0-2H5v2h6V7Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1341
- "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\"/>",
1606
+ "20": "<path class=\"icon-dark\" d=\"M11 13v-1H9v1h2ZM9 7v1h2V7H9ZM5.5 9A3.5 3.5 0 0 1 2 5.5H0A5.5 5.5 0 0 0 5.5 11V9ZM2 5.5A3.5 3.5 0 0 1 5.5 2V0A5.5 5.5 0 0 0 0 5.5h2ZM5.5 2A3.5 3.5 0 0 1 9 5.5h2A5.5 5.5 0 0 0 5.5 0v2ZM18 14.5a3.5 3.5 0 0 1-3.5 3.5v2a5.5 5.5 0 0 0 5.5-5.5h-2ZM14.5 18a3.5 3.5 0 0 1-3.5-3.5H9a5.5 5.5 0 0 0 5.5 5.5v-2Zm0-7a3.5 3.5 0 0 1 3.5 3.5h2A5.5 5.5 0 0 0 14.5 9v2Zm0-2h-9v2h9V9ZM11 14.5V13H9v1.5h2Zm-2-9V7h2V5.5H9Z\" fill=\"currentColor\"/>",
1342
1607
  "24": "<path d=\"M13 15v-1h-2v1h2Zm-2-6v1h2V9h-2Zm-3.5 2A3.5 3.5 0 0 1 4 7.5H2A5.5 5.5 0 0 0 7.5 13v-2ZM4 7.5A3.5 3.5 0 0 1 7.5 4V2A5.5 5.5 0 0 0 2 7.5h2ZM7.5 4A3.5 3.5 0 0 1 11 7.5h2A5.5 5.5 0 0 0 7.5 2v2ZM20 16.5a3.5 3.5 0 0 1-3.5 3.5v2a5.5 5.5 0 0 0 5.5-5.5h-2ZM16.5 20a3.5 3.5 0 0 1-3.5-3.5h-2a5.5 5.5 0 0 0 5.5 5.5v-2Zm0-7a3.5 3.5 0 0 1 3.5 3.5h2a5.5 5.5 0 0 0-5.5-5.5v2Zm0-2h-9v2h9v-2ZM13 16.5V15h-2v1.5h2Zm-2-9V9h2V7.5h-2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1343
1608
  };
1344
1609
  var body = iconBodies[size];
1345
1610
  if (!body) {
1346
- throw Error("Icon \"technology-infinity-loop\" is not available in size ".concat(size));
1611
+ throw Error("Icon \"technology-infinity-loop\" is not available in size " + size);
1347
1612
  }
1348
1613
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1349
1614
  };
1350
1615
  var IconTechnologyLockedProject = function (props) {
1351
1616
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1352
1617
  var iconBodies = {
1353
- "48": "<path d=\"M18.586 8.586A2 2 0 0 0 17.172 8H6a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L21 11l-2.414-2.414Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m18.586 13.414.707.707-.707-.707ZM17.172 8v1-1Zm1.414.586.707-.707-.707.707ZM5 38H4h1ZM6 8V7v1Zm36 5v25h2V13h-2Zm-1 26H7v2h34v-2ZM6 9h11.172V7H6v2Zm11.879.293 2.414 2.414 1.414-1.414-2.414-2.414-1.414 1.414ZM21 12h20v-2H21v2Zm-.707-1.707-2.414 2.414 1.414 1.414 2.414-2.414-1.414-1.414ZM6 38V14H4v24h2Zm0-24V9H4v5h2Zm11.172-1H5v2h12.172v-2Zm.707-.293a1 1 0 0 1-.707.293v2a3 3 0 0 0 2.12-.879l-1.413-1.414ZM17.172 9a1 1 0 0 1 .707.293l1.414-1.414A3 3 0 0 0 17.172 7v2ZM7 39a1 1 0 0 1-1-1H4a3 3 0 0 0 3 3v-2Zm35-1a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm2-25a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2ZM6 7a2 2 0 0 0-2 2h2V7Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25 41a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2v5Z\" fill=\"#69D3A7\" class=\"icon-light-secondary\"/><path d=\"M28 34h-1a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-1m-6 0v-2a3 3 0 0 1 3-3v0a3 3 0 0 1 3 3v2m-6 0h6m-3 4v1\" stroke=\"#00814D\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark-secondary\"/>"
1618
+ "48": "<path d=\"M18.586 8.586A2 2 0 0 0 17.172 8H6a1 1 0 0 0-1 1v5h12.172a2 2 0 0 0 1.414-.586L21 11l-2.414-2.414Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m18.586 13.414.707.707-.707-.707ZM17.172 8v1-1Zm1.414.586.707-.707-.707.707ZM5 38H4h1ZM6 8V7v1Zm36 5v25h2V13h-2Zm-1 26H7v2h34v-2ZM6 9h11.172V7H6v2Zm11.879.293 2.414 2.414 1.414-1.414-2.414-2.414-1.414 1.414ZM21 12h20v-2H21v2Zm-.707-1.707-2.414 2.414 1.414 1.414 2.414-2.414-1.414-1.414ZM6 38V14H4v24h2Zm0-24V9H4v5h2Zm11.172-1H5v2h12.172v-2Zm.707-.293a1 1 0 0 1-.707.293v2a3 3 0 0 0 2.12-.879l-1.413-1.414ZM17.172 9a1 1 0 0 1 .707.293l1.414-1.414A3 3 0 0 0 17.172 7v2ZM7 39a1 1 0 0 1-1-1H4a3 3 0 0 0 3 3v-2Zm35-1a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm2-25a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2ZM6 7a2 2 0 0 0-2 2h2V7Z\" fill=\"currentColor\" class=\"icon-dark\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25 41a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2v5Z\" fill=\"#69D3A7\" class=\"icon-light-secondary\"/><path d=\"M28 34h-1a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-1m-6 0v-2a3 3 0 0 1 3-3v0a3 3 0 0 1 3 3v2m-6 0h6m-3 4v1\" stroke=\"#00814D\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark-secondary\"/>"
1354
1619
  };
1355
1620
  var body = iconBodies[size];
1356
1621
  if (!body) {
1357
- throw Error("Icon \"technology-locked-project\" is not available in size ".concat(size));
1622
+ throw Error("Icon \"technology-locked-project\" is not available in size " + size);
1358
1623
  }
1359
1624
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1360
1625
  };
1361
1626
  var IconTechnologyOctothorpe = function (props) {
1362
1627
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1363
1628
  var iconBodies = {
1364
- "16": "<path class=\"icon-dark\" d=\"M7 2 4 14m5 0 3-12m2 4H3m10 4H2\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1629
+ "16": "<path class=\"icon-dark\" d=\"M7 2 4 14m5 0 3-12m2 4H3m10 4H2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
1365
1630
  };
1366
1631
  var body = iconBodies[size];
1367
1632
  if (!body) {
1368
- throw Error("Icon \"technology-octothorpe\" is not available in size ".concat(size));
1633
+ throw Error("Icon \"technology-octothorpe\" is not available in size " + size);
1369
1634
  }
1370
1635
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1371
1636
  };
@@ -1376,7 +1641,7 @@ var IconTechnologyPullRequest = function (props) {
1376
1641
  };
1377
1642
  var body = iconBodies[size];
1378
1643
  if (!body) {
1379
- throw Error("Icon \"technology-pull-request\" is not available in size ".concat(size));
1644
+ throw Error("Icon \"technology-pull-request\" is not available in size " + size);
1380
1645
  }
1381
1646
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1382
1647
  };
@@ -1387,7 +1652,7 @@ var IconTechnologyServer = function (props) {
1387
1652
  };
1388
1653
  var body = iconBodies[size];
1389
1654
  if (!body) {
1390
- throw Error("Icon \"technology-server\" is not available in size ".concat(size));
1655
+ throw Error("Icon \"technology-server\" is not available in size " + size);
1391
1656
  }
1392
1657
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1393
1658
  };
@@ -1398,7 +1663,7 @@ var IconTechnologyTerminalLog = function (props) {
1398
1663
  };
1399
1664
  var body = iconBodies[size];
1400
1665
  if (!body) {
1401
- throw Error("Icon \"technology-terminal-log\" is not available in size ".concat(size));
1666
+ throw Error("Icon \"technology-terminal-log\" is not available in size " + size);
1402
1667
  }
1403
1668
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1404
1669
  };
@@ -1409,68 +1674,68 @@ var IconTechnologyTerminal = function (props) {
1409
1674
  };
1410
1675
  var body = iconBodies[size];
1411
1676
  if (!body) {
1412
- throw Error("Icon \"technology-terminal\" is not available in size ".concat(size));
1677
+ throw Error("Icon \"technology-terminal\" is not available in size " + size);
1413
1678
  }
1414
1679
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1415
1680
  };
1416
1681
  var IconTechnologyTestResults = function (props) {
1417
1682
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1418
1683
  var iconBodies = {
1419
- "16": "<path d=\"M1 10h3v3H1v-3Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/><path d=\"M15 5.5a1 1 0 1 0 0-2v2Zm-8-2a1 1 0 0 0 0 2v-2Zm8 9a1 1 0 1 0 0-2v2Zm-8-2a1 1 0 1 0 0 2v-2ZM.293 5.293a1 1 0 0 0 1.414 1.414L.293 5.293Zm4.414-1.586a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-3-1.414A1 1 0 0 0 .293 3.707l1.414-1.414Zm1.586 4.414a1 1 0 0 0 1.414-1.414L3.293 6.707ZM1 10V9a1 1 0 0 0-1 1h1Zm3 0h1a1 1 0 0 0-1-1v1Zm0 3v1a1 1 0 0 0 1-1H4Zm-3 0H0a1 1 0 0 0 1 1v-1Zm14-9.5H7v2h8v-2Zm0 7H7v2h8v-2ZM1.707 6.707l1.5-1.5-1.414-1.414-1.5 1.5 1.414 1.414Zm1.5-1.5 1.5-1.5-1.414-1.414-1.5 1.5 1.414 1.414Zm-2.914-1.5 1.5 1.5 1.414-1.414-1.5-1.5L.293 3.707Zm1.5 1.5 1.5 1.5 1.414-1.414-1.5-1.5-1.414 1.414ZM1 11h3V9H1v2Zm2-1v3h2v-3H3Zm1 2H1v2h3v-2Zm-2 1v-3H0v3h2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>",
1420
- "24": "<path d=\"M3 15h4v4H3v-4Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M21 8a1 1 0 1 0 0-2v2ZM11 6a1 1 0 1 0 0 2V6Zm10 12a1 1 0 1 0 0-2v2Zm-10-2a1 1 0 1 0 0 2v-2ZM2.293 8.293a1 1 0 0 0 1.414 1.414L2.293 8.293Zm5.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.414L6.293 9.707ZM3 15v-1a1 1 0 0 0-1 1h1Zm4 0h1a1 1 0 0 0-1-1v1Zm0 4v1a1 1 0 0 0 1-1H7Zm-4 0H2a1 1 0 0 0 1 1v-1ZM21 6H11v2h10V6Zm0 10H11v2h10v-2ZM3.707 9.707l2-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.414ZM3 16h4v-2H3v2Zm3-1v4h2v-4H6Zm1 3H3v2h4v-2Zm-3 1v-4H2v4h2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
1684
+ "16": "<path d=\"M1 10h3v3H1v-3Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M15 5.5a1 1 0 1 0 0-2v2Zm-8-2a1 1 0 0 0 0 2v-2Zm8 9a1 1 0 1 0 0-2v2Zm-8-2a1 1 0 1 0 0 2v-2ZM.293 5.293a1 1 0 0 0 1.414 1.414L.293 5.293Zm4.414-1.586a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-3-1.414A1 1 0 0 0 .293 3.707l1.414-1.414Zm1.586 4.414a1 1 0 0 0 1.414-1.414L3.293 6.707ZM1 10V9a1 1 0 0 0-1 1h1Zm3 0h1a1 1 0 0 0-1-1v1Zm0 3v1a1 1 0 0 0 1-1H4Zm-3 0H0a1 1 0 0 0 1 1v-1Zm14-9.5H7v2h8v-2Zm0 7H7v2h8v-2ZM1.707 6.707l1.5-1.5-1.414-1.414-1.5 1.5 1.414 1.414Zm1.5-1.5 1.5-1.5-1.414-1.414-1.5 1.5 1.414 1.414Zm-2.914-1.5 1.5 1.5 1.414-1.414-1.5-1.5L.293 3.707Zm1.5 1.5 1.5 1.5 1.414-1.414-1.5-1.5-1.414 1.414ZM1 11h3V9H1v2Zm2-1v3h2v-3H3Zm1 2H1v2h3v-2Zm-2 1v-3H0v3h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1685
+ "24": "<path d=\"M3 15h4v4H3v-4Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M21 8a1 1 0 1 0 0-2v2ZM11 6a1 1 0 1 0 0 2V6Zm10 12a1 1 0 1 0 0-2v2Zm-10-2a1 1 0 1 0 0 2v-2ZM2.293 8.293a1 1 0 0 0 1.414 1.414L2.293 8.293Zm5.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.414L6.293 9.707ZM3 15v-1a1 1 0 0 0-1 1h1Zm4 0h1a1 1 0 0 0-1-1v1Zm0 4v1a1 1 0 0 0 1-1H7Zm-4 0H2a1 1 0 0 0 1 1v-1ZM21 6H11v2h10V6Zm0 10H11v2h10v-2ZM3.707 9.707l2-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.414ZM3 16h4v-2H3v2Zm3-1v4h2v-4H6Zm1 3H3v2h4v-2Zm-3 1v-4H2v4h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1421
1686
  };
1422
1687
  var body = iconBodies[size];
1423
1688
  if (!body) {
1424
- throw Error("Icon \"technology-test-results\" is not available in size ".concat(size));
1689
+ throw Error("Icon \"technology-test-results\" is not available in size " + size);
1425
1690
  }
1426
1691
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1427
1692
  };
1428
1693
  var IconTestingTypeComponentSolid = function (props) {
1429
1694
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1430
1695
  var iconBodies = {
1431
- "64": "<path d=\"M36 4h21a3 3 0 0 1 3 3v21H36V4ZM32 56H11a3 3 0 0 1-3-3V32h24v24Z\" fill=\"#00595D\" class=\"icon-dark\"/><path d=\"M36 28h-2a2 2 0 0 0 2 2v-2ZM8 32v-2a2 2 0 0 0-2 2h2Zm24 24v2a2 2 0 0 0 2-2h-2Zm4-52V2h-2v2h2Zm24 24v2h2v-2h-2Zm-28 4h2a2 2 0 0 0-2-2v2Zm0 22H11v4h21v-4Zm-22-1V32H6v21h4ZM36 6h21V2H36v4Zm22 1v21h4V7h-4Zm2 19H36v4h24v-4Zm-22 2V4h-4v24h4Zm-8 4v24h4V32h-4Zm2-2H8v4h24v-4ZM57 6a1 1 0 0 1 1 1h4a5 5 0 0 0-5-5v4ZM11 54a1 1 0 0 1-1-1H6a5 5 0 0 0 5 5v-4Z\" class=\"icon-light\"/><path d=\"M11 8h21v24h24v21a3 3 0 0 1-3 3H32V32H8V11a3 3 0 0 1 3-3Z\" fill=\"#69D3A7\" class=\"icon-light\"/>"
1696
+ "64": "<path d=\"M36 4h21a3 3 0 0 1 3 3v21H36V4ZM32 56H11a3 3 0 0 1-3-3V32h24v24Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M36 28h-2a2 2 0 0 0 2 2v-2ZM8 32v-2a2 2 0 0 0-2 2h2Zm24 24v2a2 2 0 0 0 2-2h-2Zm4-52V2h-2v2h2Zm24 24v2h2v-2h-2Zm-28 4h2a2 2 0 0 0-2-2v2Zm0 22H11v4h21v-4Zm-22-1V32H6v21h4ZM36 6h21V2H36v4Zm22 1v21h4V7h-4Zm2 19H36v4h24v-4Zm-22 2V4h-4v24h4Zm-8 4v24h4V32h-4Zm2-2H8v4h24v-4ZM57 6a1 1 0 0 1 1 1h4a5 5 0 0 0-5-5v4ZM11 54a1 1 0 0 1-1-1H6a5 5 0 0 0 5 5v-4Z\" class=\"icon-light\"/><path d=\"M11 8h21v24h24v21a3 3 0 0 1-3 3H32V32H8V11a3 3 0 0 1 3-3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/>"
1432
1697
  };
1433
1698
  var body = iconBodies[size];
1434
1699
  if (!body) {
1435
- throw Error("Icon \"testing-type-component-solid\" is not available in size ".concat(size));
1700
+ throw Error("Icon \"testing-type-component-solid\" is not available in size " + size);
1436
1701
  }
1437
1702
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1438
1703
  };
1439
1704
  var IconTestingTypeComponent = function (props) {
1440
1705
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1441
1706
  var iconBodies = {
1442
- "16": "<path d=\"M2 10h4v4H2v-4ZM10 2h4v4h-4V2Z\" fill=\"#fff\" fill-opacity=\".5\" class=\"icon-dark\"/><path d=\"M2 6V5a1 1 0 0 0-1 1h1Zm4 0h1V5H6v1Zm-4 8H1a1 1 0 0 0 1 1v-1Zm8-12V1H9v1h1Zm4 0h1a1 1 0 0 0-1-1v1Zm0 4v1h1V6h-1Zm-4 0H9v1h1V6Zm0 4h1V9h-1v1Zm0 4v1a1 1 0 0 0 1-1h-1ZM2 7h4V5H2v2Zm3-1v4h2V6H5Zm1 3H2v2h4V9Zm-3 1V6H1v4h2Zm2 0v4h2v-4H5Zm1 3H2v2h4v-2Zm-3 1v-4H1v4h2Zm7-11h4V1h-4v2Zm3-1v4h2V2h-2Zm1 3h-4v2h4V5Zm-3 1V2H9v4h2Zm-5 5h4V9H6v2Zm3-1v4h2v-4H9Zm1 3H6v2h4v-2Z\" fill=\"#fff\" class=\"icon-dark\"/>",
1443
- "24": "<path d=\"M3 14h7v7H4a1 1 0 0 1-1-1v-6ZM14 3h6a1 1 0 0 1 1 1v6h-7V3Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M10 7h1V6h-1v1Zm4-4V2h-1v1h1Zm7 7v1h1v-1h-1Zm-7 0h-1v1h1v-1Zm3 4h1v-1h-1v1ZM4 8h6V6H4v2Zm5-1v7h2V7H9Zm1 6H3v2h7v-2Zm-6 1V8H2v6h2Zm5 0v7h2v-7H9Zm1 6H4v2h6v-2Zm-6 0v-6H2v6h2ZM14 4h6V2h-6v2Zm6 0v6h2V4h-2Zm1 5h-7v2h7V9Zm-6 1V3h-2v7h2Zm-5 5h7v-2h-7v2Zm6-1v6h2v-6h-2Zm0 6h-6v2h6v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm4-16h2a2 2 0 0 0-2-2v2ZM4 20H2a2 2 0 0 0 2 2v-2ZM4 6a2 2 0 0 0-2 2h2V6Z\" fill=\"#007780\" class=\"icon-dark\"/>",
1444
- "64": "<path d=\"M36 5h21.5A1.5 1.5 0 0 1 59 6.5V28H36V5ZM32 32H9v21.5a1.5 1.5 0 0 0 1.5 1.5H32V32Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M32 9h1V8h-1v1Zm4-4V4h-1v1h1Zm23 23v1h1v-1h-1Zm-23 0h-1v1h1v-1Zm19 4h1v-1h-1v1ZM10.5 10H32V8H10.5v2ZM31 9v23h2V9h-2Zm1 22H9v2h23v-2Zm-22 1V10.5H8V32h2Zm21 0v23h2V32h-2Zm1 22H10.5v2H32v-2Zm-22-.5V32H8v21.5h2ZM36 6h21.5V4H36v2Zm22 .5V28h2V6.5h-2ZM59 27H36v2h23v-2Zm-22 1V5h-2v23h2Zm-5 5h23v-2H32v2Zm22-1v21.5h2V32h-2Zm-.5 22H32v2h21.5v-2Zm.5-.5a.5.5 0 0 1-.5.5v2a2.5 2.5 0 0 0 2.5-2.5h-2ZM57.5 6a.5.5 0 0 1 .5.5h2A2.5 2.5 0 0 0 57.5 4v2Zm-47 48a.5.5 0 0 1-.5-.5H8a2.5 2.5 0 0 0 2.5 2.5v-2Zm0-46A2.5 2.5 0 0 0 8 10.5h2a.5.5 0 0 1 .5-.5V8Z\" fill=\"#007780\" class=\"icon-dark\"/>"
1707
+ "16": "<path d=\"M2 10h4v4H2v-4ZM10 2h4v4h-4V2Z\" fill=\"currentColor\" fill-opacity=\".5\" class=\"icon-dark\"/><path d=\"M2 6V5a1 1 0 0 0-1 1h1Zm4 0h1V5H6v1Zm-4 8H1a1 1 0 0 0 1 1v-1Zm8-12V1H9v1h1Zm4 0h1a1 1 0 0 0-1-1v1Zm0 4v1h1V6h-1Zm-4 0H9v1h1V6Zm0 4h1V9h-1v1Zm0 4v1a1 1 0 0 0 1-1h-1ZM2 7h4V5H2v2Zm3-1v4h2V6H5Zm1 3H2v2h4V9Zm-3 1V6H1v4h2Zm2 0v4h2v-4H5Zm1 3H2v2h4v-2Zm-3 1v-4H1v4h2Zm7-11h4V1h-4v2Zm3-1v4h2V2h-2Zm1 3h-4v2h4V5Zm-3 1V2H9v4h2Zm-5 5h4V9H6v2Zm3-1v4h2v-4H9Zm1 3H6v2h4v-2Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1708
+ "24": "<path d=\"M3 14h7v7H4a1 1 0 0 1-1-1v-6ZM14 3h6a1 1 0 0 1 1 1v6h-7V3Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M10 7h1V6h-1v1Zm4-4V2h-1v1h1Zm7 7v1h1v-1h-1Zm-7 0h-1v1h1v-1Zm3 4h1v-1h-1v1ZM4 8h6V6H4v2Zm5-1v7h2V7H9Zm1 6H3v2h7v-2Zm-6 1V8H2v6h2Zm5 0v7h2v-7H9Zm1 6H4v2h6v-2Zm-6 0v-6H2v6h2ZM14 4h6V2h-6v2Zm6 0v6h2V4h-2Zm1 5h-7v2h7V9Zm-6 1V3h-2v7h2Zm-5 5h7v-2h-7v2Zm6-1v6h2v-6h-2Zm0 6h-6v2h6v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm4-16h2a2 2 0 0 0-2-2v2ZM4 20H2a2 2 0 0 0 2 2v-2ZM4 6a2 2 0 0 0-2 2h2V6Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1709
+ "64": "<path d=\"M36 5h21.5A1.5 1.5 0 0 1 59 6.5V28H36V5ZM32 32H9v21.5a1.5 1.5 0 0 0 1.5 1.5H32V32Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M32 9h1V8h-1v1Zm4-4V4h-1v1h1Zm23 23v1h1v-1h-1Zm-23 0h-1v1h1v-1Zm19 4h1v-1h-1v1ZM10.5 10H32V8H10.5v2ZM31 9v23h2V9h-2Zm1 22H9v2h23v-2Zm-22 1V10.5H8V32h2Zm21 0v23h2V32h-2Zm1 22H10.5v2H32v-2Zm-22-.5V32H8v21.5h2ZM36 6h21.5V4H36v2Zm22 .5V28h2V6.5h-2ZM59 27H36v2h23v-2Zm-22 1V5h-2v23h2Zm-5 5h23v-2H32v2Zm22-1v21.5h2V32h-2Zm-.5 22H32v2h21.5v-2Zm.5-.5a.5.5 0 0 1-.5.5v2a2.5 2.5 0 0 0 2.5-2.5h-2ZM57.5 6a.5.5 0 0 1 .5.5h2A2.5 2.5 0 0 0 57.5 4v2Zm-47 48a.5.5 0 0 1-.5-.5H8a2.5 2.5 0 0 0 2.5 2.5v-2Zm0-46A2.5 2.5 0 0 0 8 10.5h2a.5.5 0 0 1 .5-.5V8Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1445
1710
  };
1446
1711
  var body = iconBodies[size];
1447
1712
  if (!body) {
1448
- throw Error("Icon \"testing-type-component\" is not available in size ".concat(size));
1713
+ throw Error("Icon \"testing-type-component\" is not available in size " + size);
1449
1714
  }
1450
1715
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1451
1716
  };
1452
1717
  var IconTestingTypeE2ESolid = function (props) {
1453
1718
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24", "64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1454
1719
  var iconBodies = {
1455
- "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\"/>",
1456
- "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\"/>"
1720
+ "24": "<path d=\"M4 3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Z\" fill=\"#D0D2E0\" 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=\"currentColor\" class=\"icon-dark\"/>",
1721
+ "64": "<path d=\"M9 8a3 3 0 0 0-3 3v33a3 3 0 0 0 3 3h37a3 3 0 0 0 3-3V11a3 3 0 0 0-3-3H9Z\" fill=\"#D0D2E0\" 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=\"currentColor\" 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=\"currentColor\" class=\"icon-dark\"/>"
1457
1722
  };
1458
1723
  var body = iconBodies[size];
1459
1724
  if (!body) {
1460
- throw Error("Icon \"testing-type-e2e-solid\" is not available in size ".concat(size));
1725
+ throw Error("Icon \"testing-type-e2e-solid\" is not available in size " + size);
1461
1726
  }
1462
1727
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1463
1728
  };
1464
1729
  var IconTestingTypeE2E = function (props) {
1465
1730
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1466
1731
  var iconBodies = {
1467
- "16": "<path d=\"M15 14V5h-3v6H4v3h11Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M15 5h1a1 1 0 0 0-1-1v1ZM4 14H3a1 1 0 0 0 1 1v-1Zm11 0v1a1 1 0 0 0 1-1h-1ZM1 2V1a1 1 0 0 0-1 1h1Zm11 0h1a1 1 0 0 0-1-1v1ZM1 11H0a1 1 0 0 0 1 1v-1Zm11 0v1a1 1 0 0 0 1-1h-1Zm2-6v9h2V5h-2Zm1 8H4v2h11v-2ZM1 3h11V1H1v2Zm11 7H4v2h8v-2Zm-8 0H1v2h3v-2Zm1 4v-3H3v3h2Zm7-8h3V4h-3v2Zm-1-4v3h2V2h-2Zm0 3v6h2V5h-2Zm-9 6V2H0v9h2ZM4 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM6 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM8 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z\" fill=\"#007780\" class=\"icon-dark\"/>",
1468
- "24": "<path d=\"M20 20a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1h-3v7a1 1 0 0 1-1 1H7v3a1 1 0 0 0 1 1h12Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M6 6a1 1 0 0 0 0 2V6Zm.01 2a1 1 0 0 0 0-2v2ZM9 6a1 1 0 0 0 0 2V6Zm.01 2a1 1 0 0 0 0-2v2ZM12 6a1 1 0 1 0 0 2V6Zm.01 2a1 1 0 1 0 0-2v2ZM20 9v10h2V9h-2Zm0 10H8v2h12v-2ZM4 5h12V3H4v2Zm12 10H7v2h9v-2Zm-9 0H4v2h3v-2Zm1 4v-3H6v3h2Zm9-10h3V7h-3v2Zm-1-4v3h2V5h-2Zm0 3v7h2V8h-2ZM4 15V5H2v10h2Zm2-7h.01V6H6v2Zm3 0h.01V6H9v2Zm3 0h.01V6H12v2Zm4 9a2 2 0 0 0 2-2h-2v2ZM4 15H2a2 2 0 0 0 2 2v-2ZM16 5h2a2 2 0 0 0-2-2v2ZM4 3a2 2 0 0 0-2 2h2V3Zm16 16v2a2 2 0 0 0 2-2h-2ZM8 19H6a2 2 0 0 0 2 2v-2ZM22 9a2 2 0 0 0-2-2v2h2Z\" fill=\"#007780\" class=\"icon-dark\"/>",
1469
- "64": "<path d=\"M55.5 55a1.5 1.5 0 0 0 1.5-1.5v-34a1.5 1.5 0 0 0-1.5-1.5H48v26.5a1.5 1.5 0 0 1-1.5 1.5H16v7.5a1.5 1.5 0 0 0 1.5 1.5h38ZM48 10.5A1.5 1.5 0 0 0 46.5 9h-38A1.5 1.5 0 0 0 7 10.5V18h41v-7.5Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M7 18v26.5A1.5 1.5 0 0 0 8.5 46H16M7 18v-7.5A1.5 1.5 0 0 1 8.5 9h38a1.5 1.5 0 0 1 1.5 1.5V18M7 18h41M16 46h30.5a1.5 1.5 0 0 0 1.5-1.5V18M16 46v7.5a1.5 1.5 0 0 0 1.5 1.5h38a1.5 1.5 0 0 0 1.5-1.5v-34a1.5 1.5 0 0 0-1.5-1.5H48m-5-4.5H25m-13.001 0h.014m3.987 0h.013m3.987 0h.013\" stroke=\"#007780\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1732
+ "16": "<path d=\"M15 14V5h-3v6H4v3h11Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M15 5h1a1 1 0 0 0-1-1v1ZM4 14H3a1 1 0 0 0 1 1v-1Zm11 0v1a1 1 0 0 0 1-1h-1ZM1 2V1a1 1 0 0 0-1 1h1Zm11 0h1a1 1 0 0 0-1-1v1ZM1 11H0a1 1 0 0 0 1 1v-1Zm11 0v1a1 1 0 0 0 1-1h-1Zm2-6v9h2V5h-2Zm1 8H4v2h11v-2ZM1 3h11V1H1v2Zm11 7H4v2h8v-2Zm-8 0H1v2h3v-2Zm1 4v-3H3v3h2Zm7-8h3V4h-3v2Zm-1-4v3h2V2h-2Zm0 3v6h2V5h-2Zm-9 6V2H0v9h2ZM4 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM6 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM8 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1733
+ "24": "<path d=\"M20 20a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1h-3v7a1 1 0 0 1-1 1H7v3a1 1 0 0 0 1 1h12Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6 6a1 1 0 0 0 0 2V6Zm.01 2a1 1 0 0 0 0-2v2ZM9 6a1 1 0 0 0 0 2V6Zm.01 2a1 1 0 0 0 0-2v2ZM12 6a1 1 0 1 0 0 2V6Zm.01 2a1 1 0 1 0 0-2v2ZM20 9v10h2V9h-2Zm0 10H8v2h12v-2ZM4 5h12V3H4v2Zm12 10H7v2h9v-2Zm-9 0H4v2h3v-2Zm1 4v-3H6v3h2Zm9-10h3V7h-3v2Zm-1-4v3h2V5h-2Zm0 3v7h2V8h-2ZM4 15V5H2v10h2Zm2-7h.01V6H6v2Zm3 0h.01V6H9v2Zm3 0h.01V6H12v2Zm4 9a2 2 0 0 0 2-2h-2v2ZM4 15H2a2 2 0 0 0 2 2v-2ZM16 5h2a2 2 0 0 0-2-2v2ZM4 3a2 2 0 0 0-2 2h2V3Zm16 16v2a2 2 0 0 0 2-2h-2ZM8 19H6a2 2 0 0 0 2 2v-2ZM22 9a2 2 0 0 0-2-2v2h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>",
1734
+ "64": "<path d=\"M55.5 55a1.5 1.5 0 0 0 1.5-1.5v-34a1.5 1.5 0 0 0-1.5-1.5H48v26.5a1.5 1.5 0 0 1-1.5 1.5H16v7.5a1.5 1.5 0 0 0 1.5 1.5h38ZM48 10.5A1.5 1.5 0 0 0 46.5 9h-38A1.5 1.5 0 0 0 7 10.5V18h41v-7.5Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M7 18v26.5A1.5 1.5 0 0 0 8.5 46H16M7 18v-7.5A1.5 1.5 0 0 1 8.5 9h38a1.5 1.5 0 0 1 1.5 1.5V18M7 18h41M16 46h30.5a1.5 1.5 0 0 0 1.5-1.5V18M16 46v7.5a1.5 1.5 0 0 0 1.5 1.5h38a1.5 1.5 0 0 0 1.5-1.5v-34a1.5 1.5 0 0 0-1.5-1.5H48m-5-4.5H25m-13.001 0h.014m3.987 0h.013m3.987 0h.013\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1470
1735
  };
1471
1736
  var body = iconBodies[size];
1472
1737
  if (!body) {
1473
- throw Error("Icon \"testing-type-e2e\" is not available in size ".concat(size));
1738
+ throw Error("Icon \"testing-type-e2e\" is not available in size " + size);
1474
1739
  }
1475
1740
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1476
1741
  };
@@ -1481,62 +1746,62 @@ var IconTimeStopwatch = function (props) {
1481
1746
  };
1482
1747
  var body = iconBodies[size];
1483
1748
  if (!body) {
1484
- throw Error("Icon \"time-stopwatch\" is not available in size ".concat(size));
1749
+ throw Error("Icon \"time-stopwatch\" is not available in size " + size);
1485
1750
  }
1486
1751
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1487
1752
  };
1488
1753
  var IconUserGeneralOutline = function (props) {
1489
1754
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1490
1755
  var iconBodies = {
1491
- "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\"/>"
1756
+ "16": "<path d=\"M8 1a7 7 0 0 0-4.9 12 5.009 5.009 0 0 1 3.043-3.644 3 3 0 1 1 3.714 0A5.009 5.009 0 0 1 12.9 13 7 7 0 0 0 8 1Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M6.143 9.356C6.653 9.76 7.299 10 8 10c.701 0 1.346-.24 1.857-.644m-3.714 0a3 3 0 1 1 3.714 0m-3.714 0A5.009 5.009 0 0 0 3.1 13m6.757-3.643A5.009 5.009 0 0 1 12.9 13m0 0a7 7 0 1 0-9.8 0m9.8 0A6.977 6.977 0 0 1 8 15a6.977 6.977 0 0 1-4.9-2\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\"/>"
1492
1757
  };
1493
1758
  var body = iconBodies[size];
1494
1759
  if (!body) {
1495
- throw Error("Icon \"user-general-outline\" is not available in size ".concat(size));
1760
+ throw Error("Icon \"user-general-outline\" is not available in size " + size);
1496
1761
  }
1497
1762
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1498
1763
  };
1499
1764
  var IconUserGeneralSolid = function (props) {
1500
1765
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1501
1766
  var iconBodies = {
1502
- "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\"/>"
1767
+ "16": "<path d=\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M5 7a3 3 0 1 1 4.857 2.356A5.009 5.009 0 0 1 12.9 13 6.977 6.977 0 0 1 8 15a6.977 6.977 0 0 1-4.9-2 5.009 5.009 0 0 1 3.043-3.644A2.995 2.995 0 0 1 5 7Z\" fill=\"#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 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=\"currentColor\" stroke-width=\"2\" class=\"icon-dark\"/>"
1503
1768
  };
1504
1769
  var body = iconBodies[size];
1505
1770
  if (!body) {
1506
- throw Error("Icon \"user-general-solid\" is not available in size ".concat(size));
1771
+ throw Error("Icon \"user-general-solid\" is not available in size " + size);
1507
1772
  }
1508
1773
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1509
1774
  };
1510
1775
  var IconViewList = function (props) {
1511
1776
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1512
1777
  var iconBodies = {
1513
- "16": "<path d=\"M1 7h2v2H1V7ZM1 1h2v2H1V1Z\" fill=\"#1B1E2E\" fill-opacity=\".4\" class=\"icon-dark\"/><path d=\"M15 3a1 1 0 1 0 0-2v2ZM6 1a1 1 0 0 0 0 2V1Zm9 8a1 1 0 1 0 0-2v2ZM6 7a1 1 0 1 0 0 2V7ZM1 3H0a1 1 0 0 0 1 1V3Zm2-2h1a1 1 0 0 0-1-1v1ZM1 1V0a1 1 0 0 0-1 1h1Zm2 2v1a1 1 0 0 0 1-1H3ZM1 7V6a1 1 0 0 0-1 1h1Zm2 0h1a1 1 0 0 0-1-1v1Zm0 2v1a1 1 0 0 0 1-1H3ZM1 9H0a1 1 0 0 0 1 1V9Zm14-8H6v2h9V1Zm0 6H6v2h9V7ZM1 8h2V6H1v2Zm1-1v2h2V7H2Zm1 1H1v2h2V8ZM2 9V7H0v2h2ZM1 2h2V0H1v2Zm3 1V1H2v2h2ZM3 2H1v2h2V2ZM2 3V1H0v2h2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
1778
+ "16": "<path d=\"M1 7h2v2H1V7ZM1 1h2v2H1V1Z\" fill=\"currentColor\" fill-opacity=\".4\" class=\"icon-dark\"/><path d=\"M15 3a1 1 0 1 0 0-2v2ZM6 1a1 1 0 0 0 0 2V1Zm9 8a1 1 0 1 0 0-2v2ZM6 7a1 1 0 1 0 0 2V7ZM1 3H0a1 1 0 0 0 1 1V3Zm2-2h1a1 1 0 0 0-1-1v1ZM1 1V0a1 1 0 0 0-1 1h1Zm2 2v1a1 1 0 0 0 1-1H3ZM1 7V6a1 1 0 0 0-1 1h1Zm2 0h1a1 1 0 0 0-1-1v1Zm0 2v1a1 1 0 0 0 1-1H3ZM1 9H0a1 1 0 0 0 1 1V9Zm14-8H6v2h9V1Zm0 6H6v2h9V7ZM1 8h2V6H1v2Zm1-1v2h2V7H2Zm1 1H1v2h2V8ZM2 9V7H0v2h2ZM1 2h2V0H1v2Zm3 1V1H2v2h2ZM3 2H1v2h2V2ZM2 3V1H0v2h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1514
1779
  };
1515
1780
  var body = iconBodies[size];
1516
1781
  if (!body) {
1517
- throw Error("Icon \"view-list\" is not available in size ".concat(size));
1782
+ throw Error("Icon \"view-list\" is not available in size " + size);
1518
1783
  }
1519
1784
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1520
1785
  };
1521
1786
  var IconViewTreeAlt = function (props) {
1522
1787
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1523
1788
  var iconBodies = {
1524
- "16": "<path d=\"M13 1.999h2v2h-2v-2ZM13 7.999h2v2h-2v-2Z\" fill=\"#1B1E2E\" class=\"icon-dark\"/><path d=\"M4 2.999v6h6m-6-6H1m3 0h6m3 1h2v-2h-2v2Zm0 6h2v-2h-2v2Z\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1789
+ "16": "<path d=\"M13 1.999h2v2h-2v-2ZM13 7.999h2v2h-2v-2Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"M4 2.999v6h6m-6-6H1m3 0h6m3 1h2v-2h-2v2Zm0 6h2v-2h-2v2Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1525
1790
  };
1526
1791
  var body = iconBodies[size];
1527
1792
  if (!body) {
1528
- throw Error("Icon \"view-tree-alt\" is not available in size ".concat(size));
1793
+ throw Error("Icon \"view-tree-alt\" is not available in size " + size);
1529
1794
  }
1530
1795
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1531
1796
  };
1532
1797
  var IconWarningCircle = function (props) {
1533
1798
  var _a = iconsRegistry.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1534
1799
  var iconBodies = {
1535
- "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\" class=\"icon-dark\"/>"
1800
+ "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=\"currentColor\" class=\"icon-dark\"/>"
1536
1801
  };
1537
1802
  var body = iconBodies[size];
1538
1803
  if (!body) {
1539
- throw Error("Icon \"warning-circle\" is not available in size ".concat(size));
1804
+ throw Error("Icon \"warning-circle\" is not available in size " + size);
1540
1805
  }
1541
1806
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1542
1807
  };
@@ -1547,10 +1812,12 @@ var IconWarning = function (props) {
1547
1812
  };
1548
1813
  var body = iconBodies[size];
1549
1814
  if (!body) {
1550
- throw Error("Icon \"warning\" is not available in size ".concat(size));
1815
+ throw Error("Icon \"warning\" is not available in size " + size);
1551
1816
  }
1552
1817
  return React.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1553
1818
  };
1554
1819
 
1555
- export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteXlarge, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown, IconArrowRight, IconArrowUp, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconDeviceLaptop, IconDocumentAdded, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderLight, IconObjectGear, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconSecurityKey, IconSecurityLockLocked, IconShapeLightningBolt, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewTreeAlt, IconWarning, IconWarningCircle, Icon as default };
1556
- //# sourceMappingURL=index.es.js.map
1820
+ export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteXlarge, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOutlineDown, IconArrowRight, IconArrowUp, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconDeviceLaptop, IconDocumentAdded, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderLight, IconObjectGear, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconSecurityKey, IconSecurityLockLocked, IconShapeLightningBolt, IconStatusCancelledOutline, IconStatusCancelledSimple, IconStatusCancelledSolid, IconStatusErroredOutline, IconStatusErroredSimple, IconStatusErroredSolid, IconStatusFailedOutline, IconStatusFailedSimple, IconStatusFailedSolid, IconStatusPassedOutline, IconStatusPassedSimple, IconStatusPassedSolid, IconStatusPendingOutline, IconStatusPendingSimple, IconStatusPlaceholderSimple, IconStatusPlaceholderSolid, IconStatusQueuedOutline, IconStatusQueuedSimple, IconStatusRunningOutline, IconStatusRunningSimple, IconStatusSkippedOutline, IconStatusSkippedSimple, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewTreeAlt, IconWarning, IconWarningCircle, compileReactIconProperties, Icon as default };
1821
+
1822
+ /* <windicss-keep class=""> */
1823
+ //# sourceMappingURL=index.es.mjs.map