@cypress-design/react-icon 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1571 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var React = require('react');
6
+ var iconsRegistry = require('@cypress-design/icon-registry');
7
+
8
+ function _interopNamespace(e) {
9
+ if (e && e.__esModule) return e;
10
+ var n = Object.create(null);
11
+ if (e) {
12
+ Object.keys(e).forEach(function (k) {
13
+ if (k !== 'default') {
14
+ var d = Object.getOwnPropertyDescriptor(e, k);
15
+ Object.defineProperty(n, k, d.get ? d : {
16
+ enumerable: true,
17
+ get: function () { return e[k]; }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n["default"] = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+ var iconsRegistry__namespace = /*#__PURE__*/_interopNamespace(iconsRegistry);
28
+
29
+ /******************************************************************************
30
+ Copyright (c) Microsoft Corporation.
31
+
32
+ Permission to use, copy, modify, and/or distribute this software for any
33
+ purpose with or without fee is hereby granted.
34
+
35
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
36
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
37
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
38
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
39
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
40
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
41
+ PERFORMANCE OF THIS SOFTWARE.
42
+ ***************************************************************************** */
43
+
44
+ var __assign = function() {
45
+ __assign = Object.assign || function __assign(t) {
46
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
47
+ s = arguments[i];
48
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
49
+ }
50
+ return t;
51
+ };
52
+ return __assign.apply(this, arguments);
53
+ };
54
+
55
+ function __rest(s, e) {
56
+ var t = {};
57
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
58
+ t[p] = s[p];
59
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
60
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
61
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
62
+ t[p[i]] = s[p[i]];
63
+ }
64
+ return t;
65
+ }
66
+
67
+ var Icon = function (props) {
68
+ return React__namespace.createElement('svg', compileReactIconProperties$1(iconsRegistry.compileIcon(props)));
69
+ };
70
+ var compileReactIconProperties$1 = function (_a) {
71
+ 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"]);
72
+ var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
73
+ __html: body
74
+ } }, attributes);
75
+ if (attributes.className) {
76
+ compiledClasses.push(attributes.className);
77
+ }
78
+ if (compiledClasses.length) {
79
+ componentProps.className = compiledClasses.join(' ');
80
+ }
81
+ return componentProps;
82
+ };
83
+
84
+ var compileReactIconProperties = function (_a) {
85
+ 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"]);
86
+ var componentProps = __assign({ width: size, height: size, fill: 'none', dangerouslySetInnerHTML: {
87
+ __html: body
88
+ } }, attributes);
89
+ if (attributes.className) {
90
+ compiledClasses.push(attributes.className);
91
+ }
92
+ if (compiledClasses.length) {
93
+ componentProps.className = compiledClasses.join(' ');
94
+ }
95
+ return componentProps;
96
+ };
97
+
98
+ var IconActionAddLarge = function (props) {
99
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
100
+ var iconBodies = {
101
+ "16": "<path d=\"M2 8h6m6 0H8m0 0V2m0 6v6\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
102
+ };
103
+ var body = iconBodies[size];
104
+ if (!body) {
105
+ throw Error("Icon \"action-add-large\" is not available in size ".concat(size));
106
+ }
107
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
108
+ };
109
+ var IconActionAddMedium = function (props) {
110
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
111
+ var iconBodies = {
112
+ "16": "<path d=\"M8 3v10m5-5H3\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
113
+ };
114
+ var body = iconBodies[size];
115
+ if (!body) {
116
+ throw Error("Icon \"action-add-medium\" is not available in size ".concat(size));
117
+ }
118
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
119
+ };
120
+ var IconActionAddSmall = function (props) {
121
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
122
+ var iconBodies = {
123
+ "16": "<path d=\"M8 4v8m4-4H4\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
124
+ };
125
+ var body = iconBodies[size];
126
+ if (!body) {
127
+ throw Error("Icon \"action-add-small\" is not available in size ".concat(size));
128
+ }
129
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
130
+ };
131
+ var IconActionAdd = function (props) {
132
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
133
+ var iconBodies = {
134
+ "8": "<path d=\"M4 1v6m3-3H1\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
135
+ };
136
+ var body = iconBodies[size];
137
+ if (!body) {
138
+ throw Error("Icon \"action-add\" is not available in size ".concat(size));
139
+ }
140
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
141
+ };
142
+ var IconActionDeleteCircle = function (props) {
143
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
144
+ var iconBodies = {
145
+ "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 0ZM6.707 5.293a1 1 0 0 0-1.414 1.414L6.586 8 5.293 9.293a1 1 0 0 0 1.414 1.414L8 9.414l1.293 1.293a1 1 0 0 0 1.414-1.414L9.414 8l1.293-1.293a1 1 0 0 0-1.414-1.414L8 6.586 6.707 5.293Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
146
+ };
147
+ var body = iconBodies[size];
148
+ if (!body) {
149
+ throw Error("Icon \"action-delete-circle\" is not available in size ".concat(size));
150
+ }
151
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
152
+ };
153
+ var IconActionDelete = function (props) {
154
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
155
+ var iconBodies = {
156
+ "12": "<path d=\"M1 11 11 1M1 1l10 10\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>",
157
+ "16": "<path d=\"M3 13 13 3M3 3l10 10\" class=\"icon-dark\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
158
+ };
159
+ var body = iconBodies[size];
160
+ if (!body) {
161
+ throw Error("Icon \"action-delete\" is not available in size ".concat(size));
162
+ }
163
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
164
+ };
165
+ var IconActionExport = function (props) {
166
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
167
+ var iconBodies = {
168
+ "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\"/>"
169
+ };
170
+ var body = iconBodies[size];
171
+ if (!body) {
172
+ throw Error("Icon \"action-export\" is not available in size ".concat(size));
173
+ }
174
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
175
+ };
176
+ var IconActionNext = function (props) {
177
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
178
+ var iconBodies = {
179
+ "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\"/>"
180
+ };
181
+ var body = iconBodies[size];
182
+ if (!body) {
183
+ throw Error("Icon \"action-next\" is not available in size ".concat(size));
184
+ }
185
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
186
+ };
187
+ var IconActionPlayLarge = function (props) {
188
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
189
+ var iconBodies = {
190
+ "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\"/>"
191
+ };
192
+ var body = iconBodies[size];
193
+ if (!body) {
194
+ throw Error("Icon \"action-play-large\" is not available in size ".concat(size));
195
+ }
196
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
197
+ };
198
+ var IconActionPlaySmall = function (props) {
199
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
200
+ var iconBodies = {
201
+ "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\"/>"
202
+ };
203
+ var body = iconBodies[size];
204
+ if (!body) {
205
+ throw Error("Icon \"action-play-small\" is not available in size ".concat(size));
206
+ }
207
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
208
+ };
209
+ var IconActionPower = function (props) {
210
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
211
+ var iconBodies = {
212
+ "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\"/>"
213
+ };
214
+ var body = iconBodies[size];
215
+ if (!body) {
216
+ throw Error("Icon \"action-power\" is not available in size ".concat(size));
217
+ }
218
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
219
+ };
220
+ var IconActionQuestionMarkCircle = function (props) {
221
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
222
+ var iconBodies = {
223
+ "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\"/>"
224
+ };
225
+ var body = iconBodies[size];
226
+ if (!body) {
227
+ throw Error("Icon \"action-question-mark-circle\" is not available in size ".concat(size));
228
+ }
229
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
230
+ };
231
+ var IconActionQuestionMarkDefault = function (props) {
232
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
233
+ var iconBodies = {
234
+ "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\"/>"
235
+ };
236
+ var body = iconBodies[size];
237
+ if (!body) {
238
+ throw Error("Icon \"action-question-mark-default\" is not available in size ".concat(size));
239
+ }
240
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
241
+ };
242
+ var IconActionQuestionMarkOutline = function (props) {
243
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
244
+ var iconBodies = {
245
+ "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\" class=\"icon-dark\" stroke-width=\"2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m6.845 5.535-.001.001A1 1 0 0 1 5.146 4.48L6 5c-.854-.52-.854-.52-.853-.521v-.001l.001-.002.003-.004.005-.009.015-.023.042-.061a3.315 3.315 0 0 1 .657-.672A3.452 3.452 0 0 1 8 3c1.099 0 1.911.432 2.414 1.113.465.63.586 1.365.586 1.887 0 .63-.173 1.147-.463 1.574-.272.402-.62.68-.871.873-.608.465-.655.516-.673.67a1 1 0 1 1-1.986-.234c.125-1.061.915-1.638 1.327-1.938l.117-.087c.229-.175.352-.29.43-.405C8.944 6.363 9 6.237 9 6c0-.259-.067-.525-.195-.7C8.714 5.179 8.526 5 8 5c-.437 0-.729.152-.913.294a1.316 1.316 0 0 0-.242.241ZM8 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
246
+ };
247
+ var body = iconBodies[size];
248
+ if (!body) {
249
+ throw Error("Icon \"action-question-mark-outline\" is not available in size ".concat(size));
250
+ }
251
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
252
+ };
253
+ var IconActionRecord = function (props) {
254
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
255
+ var iconBodies = {
256
+ "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\"/>"
257
+ };
258
+ var body = iconBodies[size];
259
+ if (!body) {
260
+ throw Error("Icon \"action-record\" is not available in size ".concat(size));
261
+ }
262
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
263
+ };
264
+ var IconActionRefresh = function (props) {
265
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
266
+ var iconBodies = {
267
+ "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\"/>"
268
+ };
269
+ var body = iconBodies[size];
270
+ if (!body) {
271
+ throw Error("Icon \"action-refresh\" is not available in size ".concat(size));
272
+ }
273
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
274
+ };
275
+ var IconActionRestart = function (props) {
276
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
277
+ var iconBodies = {
278
+ "16": "<path d=\"M13 8a5 5 0 1 1-5-5h3m0 0L9 5m2-2L9 1\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
279
+ };
280
+ var body = iconBodies[size];
281
+ if (!body) {
282
+ throw Error("Icon \"action-restart\" is not available in size ".concat(size));
283
+ }
284
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
285
+ };
286
+ var IconActionStop = function (props) {
287
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
288
+ var iconBodies = {
289
+ "16": "<path d=\"M4 11.5v-7a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
290
+ };
291
+ var body = iconBodies[size];
292
+ if (!body) {
293
+ throw Error("Icon \"action-stop\" is not available in size ".concat(size));
294
+ }
295
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
296
+ };
297
+ var IconArrowCollapse = function (props) {
298
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
299
+ var iconBodies = {
300
+ "16": "<path d=\"M10.5 3 8 5.5 5.5 3m0 10L8 10.5l2.5 2.5\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
301
+ };
302
+ var body = iconBodies[size];
303
+ if (!body) {
304
+ throw Error("Icon \"arrow-collapse\" is not available in size ".concat(size));
305
+ }
306
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
307
+ };
308
+ var IconArrowDown = function (props) {
309
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
310
+ var iconBodies = {
311
+ "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\"/>"
312
+ };
313
+ var body = iconBodies[size];
314
+ if (!body) {
315
+ throw Error("Icon \"arrow-down\" is not available in size ".concat(size));
316
+ }
317
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
318
+ };
319
+ var IconArrowExpand = function (props) {
320
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
321
+ var iconBodies = {
322
+ "16": "<path d=\"M10.5 5.5 8 3 5.5 5.5m5 5L8 13l-2.5-2.5\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
323
+ };
324
+ var body = iconBodies[size];
325
+ if (!body) {
326
+ throw Error("Icon \"arrow-expand\" is not available in size ".concat(size));
327
+ }
328
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
329
+ };
330
+ var IconArrowLeft = function (props) {
331
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
332
+ var iconBodies = {
333
+ "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\"/>"
334
+ };
335
+ var body = iconBodies[size];
336
+ if (!body) {
337
+ throw Error("Icon \"arrow-left\" is not available in size ".concat(size));
338
+ }
339
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
340
+ };
341
+ var IconArrowOutlineDown = function (props) {
342
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
343
+ var iconBodies = {
344
+ "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\"/>"
345
+ };
346
+ var body = iconBodies[size];
347
+ if (!body) {
348
+ throw Error("Icon \"arrow-outline-down\" is not available in size ".concat(size));
349
+ }
350
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
351
+ };
352
+ var IconArrowOutlineRight = function (props) {
353
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
354
+ var iconBodies = {
355
+ "16": "<path d=\"m9 12 4-4m0 0L9 4m4 4H3\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
356
+ };
357
+ var body = iconBodies[size];
358
+ if (!body) {
359
+ throw Error("Icon \"arrow-outline-right\" is not available in size ".concat(size));
360
+ }
361
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
362
+ };
363
+ var IconArrowRight = function (props) {
364
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
365
+ var iconBodies = {
366
+ "16": "<path d=\"m9 12 4-4m0 0L9 4m4 4H3\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
367
+ };
368
+ var body = iconBodies[size];
369
+ if (!body) {
370
+ throw Error("Icon \"arrow-right\" is not available in size ".concat(size));
371
+ }
372
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
373
+ };
374
+ var IconArrowUp = function (props) {
375
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
376
+ var iconBodies = {
377
+ "16": "<path d=\"M12 7 8 3m0 0L4 7m4-4v10\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
378
+ };
379
+ var body = iconBodies[size];
380
+ if (!body) {
381
+ throw Error("Icon \"arrow-up\" is not available in size ".concat(size));
382
+ }
383
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
384
+ };
385
+ var IconCheckmarkOutline = function (props) {
386
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
387
+ var iconBodies = {
388
+ "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\"/>"
389
+ };
390
+ var body = iconBodies[size];
391
+ if (!body) {
392
+ throw Error("Icon \"checkmark-outline\" is not available in size ".concat(size));
393
+ }
394
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
395
+ };
396
+ var IconCheckmarkSolid = function (props) {
397
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
398
+ var iconBodies = {
399
+ "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)\"/>"
400
+ };
401
+ var body = iconBodies[size];
402
+ if (!body) {
403
+ throw Error("Icon \"checkmark-solid\" is not available in size ".concat(size));
404
+ }
405
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
406
+ };
407
+ var IconCheckmark = function (props) {
408
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
409
+ var iconBodies = {
410
+ "16": "<path d=\"M4 8.5 7 12l5-8\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
411
+ };
412
+ var body = iconBodies[size];
413
+ if (!body) {
414
+ throw Error("Icon \"checkmark\" is not available in size ".concat(size));
415
+ }
416
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
417
+ };
418
+ var IconChevronDownDouble = function (props) {
419
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
420
+ var iconBodies = {
421
+ "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\"/>"
422
+ };
423
+ var body = iconBodies[size];
424
+ if (!body) {
425
+ throw Error("Icon \"chevron-down-double\" is not available in size ".concat(size));
426
+ }
427
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
428
+ };
429
+ var IconChevronDownLarge = function (props) {
430
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
431
+ var iconBodies = {
432
+ "16": "<path d=\"m2 5 6 6 6-6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
433
+ };
434
+ var body = iconBodies[size];
435
+ if (!body) {
436
+ throw Error("Icon \"chevron-down-large\" is not available in size ".concat(size));
437
+ }
438
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
439
+ };
440
+ var IconChevronDownSmall = function (props) {
441
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
442
+ var iconBodies = {
443
+ "8": "<path d=\"m1 2.5 3 3 3-3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
444
+ "16": "<path d=\"m4 6 4 4 4-4\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
445
+ };
446
+ var body = iconBodies[size];
447
+ if (!body) {
448
+ throw Error("Icon \"chevron-down-small\" is not available in size ".concat(size));
449
+ }
450
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
451
+ };
452
+ var IconChevronLeftDouble = function (props) {
453
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
454
+ var iconBodies = {
455
+ "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\"/>"
456
+ };
457
+ var body = iconBodies[size];
458
+ if (!body) {
459
+ throw Error("Icon \"chevron-left-double\" is not available in size ".concat(size));
460
+ }
461
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
462
+ };
463
+ var IconChevronLeftLarge = function (props) {
464
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
465
+ var iconBodies = {
466
+ "16": "<path d=\"M11 14 5 8l6-6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
467
+ };
468
+ var body = iconBodies[size];
469
+ if (!body) {
470
+ throw Error("Icon \"chevron-left-large\" is not available in size ".concat(size));
471
+ }
472
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
473
+ };
474
+ var IconChevronLeftSmall = function (props) {
475
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
476
+ var iconBodies = {
477
+ "8": "<path d=\"m5.5 1-3 3 3 3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
478
+ "16": "<path d=\"M10 4 6 8l4 4\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
479
+ };
480
+ var body = iconBodies[size];
481
+ if (!body) {
482
+ throw Error("Icon \"chevron-left-small\" is not available in size ".concat(size));
483
+ }
484
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
485
+ };
486
+ var IconChevronRightDouble = function (props) {
487
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
488
+ var iconBodies = {
489
+ "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\"/>"
490
+ };
491
+ var body = iconBodies[size];
492
+ if (!body) {
493
+ throw Error("Icon \"chevron-right-double\" is not available in size ".concat(size));
494
+ }
495
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
496
+ };
497
+ var IconChevronRightLarge = function (props) {
498
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
499
+ var iconBodies = {
500
+ "16": "<path d=\"m5 14 6-6-6-6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
501
+ };
502
+ var body = iconBodies[size];
503
+ if (!body) {
504
+ throw Error("Icon \"chevron-right-large\" is not available in size ".concat(size));
505
+ }
506
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
507
+ };
508
+ var IconChevronRightSmall = function (props) {
509
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
510
+ var iconBodies = {
511
+ "8": "<path d=\"m2.5 1 3 3-3 3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
512
+ "16": "<path d=\"m6 12 4-4-4-4\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
513
+ };
514
+ var body = iconBodies[size];
515
+ if (!body) {
516
+ throw Error("Icon \"chevron-right-small\" is not available in size ".concat(size));
517
+ }
518
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
519
+ };
520
+ var IconChevronRight = function (props) {
521
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
522
+ var iconBodies = {
523
+ "16": "<path d=\"m6 12 4-4-4-4\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
524
+ };
525
+ var body = iconBodies[size];
526
+ if (!body) {
527
+ throw Error("Icon \"chevron-right\" is not available in size ".concat(size));
528
+ }
529
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
530
+ };
531
+ var IconChevronUpDouble = function (props) {
532
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
533
+ var iconBodies = {
534
+ "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\"/>"
535
+ };
536
+ var body = iconBodies[size];
537
+ if (!body) {
538
+ throw Error("Icon \"chevron-up-double\" is not available in size ".concat(size));
539
+ }
540
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
541
+ };
542
+ var IconChevronUpLarge = function (props) {
543
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
544
+ var iconBodies = {
545
+ "16": "<path d=\"m2 11 6-6 6 6\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
546
+ };
547
+ var body = iconBodies[size];
548
+ if (!body) {
549
+ throw Error("Icon \"chevron-up-large\" is not available in size ".concat(size));
550
+ }
551
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
552
+ };
553
+ var IconChevronUpSmall = function (props) {
554
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8", "16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
555
+ var iconBodies = {
556
+ "8": "<path d=\"m1 5.5 3-3 3 3\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
557
+ "16": "<path d=\"M12 10 8 6l-4 4\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
558
+ };
559
+ var body = iconBodies[size];
560
+ if (!body) {
561
+ throw Error("Icon \"chevron-up-small\" is not available in size ".concat(size));
562
+ }
563
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
564
+ };
565
+ var IconDeviceLaptop = function (props) {
566
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
567
+ var iconBodies = {
568
+ "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\"/>"
569
+ };
570
+ var body = iconBodies[size];
571
+ if (!body) {
572
+ throw Error("Icon \"device-laptop\" is not available in size ".concat(size));
573
+ }
574
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
575
+ };
576
+ var IconDocumentAdded = function (props) {
577
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
578
+ var iconBodies = {
579
+ "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\"/>"
580
+ };
581
+ var body = iconBodies[size];
582
+ if (!body) {
583
+ throw Error("Icon \"document-added\" is not available in size ".concat(size));
584
+ }
585
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
586
+ };
587
+ var IconDocumentBlank = function (props) {
588
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
589
+ var iconBodies = {
590
+ "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\"/>",
591
+ "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\"/>",
592
+ "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\"/>"
593
+ };
594
+ var body = iconBodies[size];
595
+ if (!body) {
596
+ throw Error("Icon \"document-blank\" is not available in size ".concat(size));
597
+ }
598
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
599
+ };
600
+ var IconDocumentCode = function (props) {
601
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
602
+ var iconBodies = {
603
+ "48": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32 5.18V13h7.82a2 2 0 0 0-.406-.586l-6.828-6.828A1.999 1.999 0 0 0 32 5.18Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m20 21-3 3 3 3m8-6 3 3-3 3m-5.5 2.5 3-11M32 5.18a2 2 0 0 0-.828-.18H9a1 1 0 0 0-1 1v36a1 1 0 0 0 1 1h30a1 1 0 0 0 1-1V13.828a2 2 0 0 0-.18-.828M32 5.18c.216.098.415.235.586.406l6.828 6.828a2 2 0 0 1 .406.586M32 5.18V13h7.82\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M43 40a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\" class=\"icon-light-secondary\" fill=\"#A3E7CB\"/><path d=\"M37 38v2m0 2v-2m0 0h2-4m8 0a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\" stroke=\"#00814D\" class=\"icon-dark-secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
604
+ };
605
+ var body = iconBodies[size];
606
+ if (!body) {
607
+ throw Error("Icon \"document-code\" is not available in size ".concat(size));
608
+ }
609
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
610
+ };
611
+ var IconDocumentDeleted = function (props) {
612
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
613
+ var iconBodies = {
614
+ "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\"/>"
615
+ };
616
+ var body = iconBodies[size];
617
+ if (!body) {
618
+ throw Error("Icon \"document-deleted\" is not available in size ".concat(size));
619
+ }
620
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
621
+ };
622
+ var IconDocumentDownload = function (props) {
623
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
624
+ var iconBodies = {
625
+ "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\"/>",
626
+ "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\"/>"
627
+ };
628
+ var body = iconBodies[size];
629
+ if (!body) {
630
+ throw Error("Icon \"document-download\" is not available in size ".concat(size));
631
+ }
632
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
633
+ };
634
+ var IconDocumentMinus = function (props) {
635
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
636
+ var iconBodies = {
637
+ "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\"/>",
638
+ "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\"/>"
639
+ };
640
+ var body = iconBodies[size];
641
+ if (!body) {
642
+ throw Error("Icon \"document-minus\" is not available in size ".concat(size));
643
+ }
644
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
645
+ };
646
+ var IconDocumentModified = function (props) {
647
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
648
+ var iconBodies = {
649
+ "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\"/>"
650
+ };
651
+ var body = iconBodies[size];
652
+ if (!body) {
653
+ throw Error("Icon \"document-modified\" is not available in size ".concat(size));
654
+ }
655
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
656
+ };
657
+ var IconDocumentPlusMinus = function (props) {
658
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
659
+ var iconBodies = {
660
+ "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\"/>",
661
+ "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\"/>"
662
+ };
663
+ var body = iconBodies[size];
664
+ if (!body) {
665
+ throw Error("Icon \"document-plus-minus\" is not available in size ".concat(size));
666
+ }
667
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
668
+ };
669
+ var IconDocumentPlus = function (props) {
670
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
671
+ var iconBodies = {
672
+ "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\"/>",
673
+ "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\"/>"
674
+ };
675
+ var body = iconBodies[size];
676
+ if (!body) {
677
+ throw Error("Icon \"document-plus\" is not available in size ".concat(size));
678
+ }
679
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
680
+ };
681
+ var IconDocumentScript = function (props) {
682
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
683
+ var iconBodies = {
684
+ "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\"/>"
685
+ };
686
+ var body = iconBodies[size];
687
+ if (!body) {
688
+ throw Error("Icon \"document-script\" is not available in size ".concat(size));
689
+ }
690
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
691
+ };
692
+ var IconDocumentSheet = function (props) {
693
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
694
+ var iconBodies = {
695
+ "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\"/>"
696
+ };
697
+ var body = iconBodies[size];
698
+ if (!body) {
699
+ throw Error("Icon \"document-sheet\" is not available in size ".concat(size));
700
+ }
701
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
702
+ };
703
+ var IconDocumentStar = function (props) {
704
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
705
+ var iconBodies = {
706
+ "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\"/>",
707
+ "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\"/>"
708
+ };
709
+ var body = iconBodies[size];
710
+ if (!body) {
711
+ throw Error("Icon \"document-star\" is not available in size ".concat(size));
712
+ }
713
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
714
+ };
715
+ var IconDocumentText = function (props) {
716
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
717
+ var iconBodies = {
718
+ "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\"/>"
719
+ };
720
+ var body = iconBodies[size];
721
+ if (!body) {
722
+ throw Error("Icon \"document-text\" is not available in size ".concat(size));
723
+ }
724
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
725
+ };
726
+ var IconDotOutlineLarge = function (props) {
727
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
728
+ var iconBodies = {
729
+ "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\"/>"
730
+ };
731
+ var body = iconBodies[size];
732
+ if (!body) {
733
+ throw Error("Icon \"dot-outline-large\" is not available in size ".concat(size));
734
+ }
735
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
736
+ };
737
+ var IconDotOutlineSmall = function (props) {
738
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
739
+ var iconBodies = {
740
+ "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\"/>"
741
+ };
742
+ var body = iconBodies[size];
743
+ if (!body) {
744
+ throw Error("Icon \"dot-outline-small\" is not available in size ".concat(size));
745
+ }
746
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
747
+ };
748
+ var IconFileChangesAdded = function (props) {
749
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
750
+ var iconBodies = {
751
+ "24": "<path d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12Z\" fill=\"#C2F1DE\"/><path d=\"M15.999 9 11 15l-2.999-3\" stroke=\"#00814D\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
752
+ };
753
+ var body = iconBodies[size];
754
+ if (!body) {
755
+ throw Error("Icon \"file-changes-added\" is not available in size ".concat(size));
756
+ }
757
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
758
+ };
759
+ var IconFileChangesError = function (props) {
760
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
761
+ var iconBodies = {
762
+ "24": "<path d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12Z\" fill=\"#FAD9DF\"/><path d=\"m15 9-3 3M9 9l3 3m0 0-3 3m3-3 3 3\" stroke=\"#C62B49\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
763
+ };
764
+ var body = iconBodies[size];
765
+ if (!body) {
766
+ throw Error("Icon \"file-changes-error\" is not available in size ".concat(size));
767
+ }
768
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
769
+ };
770
+ var IconFileChangesSkipped = function (props) {
771
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
772
+ var iconBodies = {
773
+ "24": "<path d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12Z\" fill=\"#E1E3ED\"/><path d=\"M8.464 15.536a5 5 0 1 0 7.072-7.072m-7.072 7.072a5 5 0 1 1 7.072-7.072m-7.072 7.072 7.072-7.072\" stroke=\"#9095AD\" stroke-width=\"2\"/>"
774
+ };
775
+ var body = iconBodies[size];
776
+ if (!body) {
777
+ throw Error("Icon \"file-changes-skipped\" is not available in size ".concat(size));
778
+ }
779
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
780
+ };
781
+ var IconFileChangesWarning = function (props) {
782
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
783
+ var iconBodies = {
784
+ "24": "<path d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12Z\" fill=\"#F3ECB3\"/><path d=\"M12 7v7m0 2.99V17\" stroke=\"#BD5800\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
785
+ };
786
+ var body = iconBodies[size];
787
+ if (!body) {
788
+ throw Error("Icon \"file-changes-warning\" is not available in size ".concat(size));
789
+ }
790
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
791
+ };
792
+ var IconGeneralClipboard = function (props) {
793
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
794
+ var iconBodies = {
795
+ "16": "<path d=\"M3.5 2.585A1.5 1.5 0 0 0 2.5 4v9.5A1.5 1.5 0 0 0 4 15h8a1.5 1.5 0 0 0 1.5-1.5V4a1.5 1.5 0 0 0-1-1.415M7 4h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1Z\" stroke=\"currentColor\" class=\"icon-dark\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
796
+ };
797
+ var body = iconBodies[size];
798
+ if (!body) {
799
+ throw Error("Icon \"general-clipboard\" is not available in size ".concat(size));
800
+ }
801
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
802
+ };
803
+ var IconGeneralCommandKey = function (props) {
804
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
805
+ var iconBodies = {
806
+ "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\"/>"
807
+ };
808
+ var body = iconBodies[size];
809
+ if (!body) {
810
+ throw Error("Icon \"general-command-key\" is not available in size ".concat(size));
811
+ }
812
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
813
+ };
814
+ var IconGeneralCrosshairs = function (props) {
815
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
816
+ var iconBodies = {
817
+ "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\"/>"
818
+ };
819
+ var body = iconBodies[size];
820
+ if (!body) {
821
+ throw Error("Icon \"general-crosshairs\" is not available in size ".concat(size));
822
+ }
823
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
824
+ };
825
+ var IconGeneralEarth = function (props) {
826
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
827
+ var iconBodies = {
828
+ "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\"/>"
829
+ };
830
+ var body = iconBodies[size];
831
+ if (!body) {
832
+ throw Error("Icon \"general-earth\" is not available in size ".concat(size));
833
+ }
834
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
835
+ };
836
+ var IconGeneralEyeClosed = function (props) {
837
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
838
+ var iconBodies = {
839
+ "16": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.704 2.468A7.843 7.843 0 0 0 8 2C5.128 2 3.128 3.447 1.882 4.831a10.868 10.868 0 0 0-1.69 2.528 6.552 6.552 0 0 0-.11.242l-.006.018-.003.006v.002H.071a1.002 1.002 0 0 0 0 .744v.002l.001.002.003.006.007.018a4.2 4.2 0 0 0 .108.242 10.869 10.869 0 0 0 1.748 2.591l1.416-1.416A8.874 8.874 0 0 1 2.105 8a8.868 8.868 0 0 1 1.264-1.831C4.371 5.053 5.871 4 8 4c.379 0 .737.033 1.077.094l1.627-1.626ZM8.166 5.005a3 3 0 0 0-3.162 3.162l3.162-3.162Zm-.334 5.99 3.162-3.162a3 3 0 0 1-3.162 3.162Zm-.91.91c.34.062.698.095 1.077.095 2.128 0 3.628-1.053 4.632-2.169A8.87 8.87 0 0 0 13.895 8a8.872 8.872 0 0 0-1.25-1.816l1.416-1.416c.02.02.038.042.057.063a10.869 10.869 0 0 1 1.69 2.528 6.627 6.627 0 0 1 .11.242l.006.018.003.006.001.003L15 8l.928.372-.001.003-.003.006-.007.018a3.777 3.777 0 0 1-.108.242 10.87 10.87 0 0 1-1.69 2.528C12.871 12.554 10.871 14 8 14a7.843 7.843 0 0 1-2.703-.468l1.626-1.627Zm9.005-3.533L15 8l.928-.372c.095.238.095.506 0 .744Zm-15.857 0L1 8l-.928.371ZM1 8l-.928-.372L1 8Z\" fill=\"currentColor\" class=\"icon-dark\"/><path d=\"m2.5 13.5 11-11\" stroke=\"currentcolor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>"
840
+ };
841
+ var body = iconBodies[size];
842
+ if (!body) {
843
+ throw Error("Icon \"general-eye-closed\" is not available in size ".concat(size));
844
+ }
845
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
846
+ };
847
+ var IconGeneralEyeOpen = function (props) {
848
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
849
+ var iconBodies = {
850
+ "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\"/>"
851
+ };
852
+ var body = iconBodies[size];
853
+ if (!body) {
854
+ throw Error("Icon \"general-eye-open\" is not available in size ".concat(size));
855
+ }
856
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
857
+ };
858
+ var IconGeneralGlobe = function (props) {
859
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
860
+ var iconBodies = {
861
+ "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\"/>",
862
+ "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\"/>"
863
+ };
864
+ var body = iconBodies[size];
865
+ if (!body) {
866
+ throw Error("Icon \"general-globe\" is not available in size ".concat(size));
867
+ }
868
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
869
+ };
870
+ var IconGeneralGrid2X2 = function (props) {
871
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
872
+ var iconBodies = {
873
+ "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\"/>",
874
+ "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\"/>"
875
+ };
876
+ var body = iconBodies[size];
877
+ if (!body) {
878
+ throw Error("Icon \"general-grid-2x2\" is not available in size ".concat(size));
879
+ }
880
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
881
+ };
882
+ var IconGeneralLifeRing = function (props) {
883
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
884
+ var iconBodies = {
885
+ "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\"/>"
886
+ };
887
+ var body = iconBodies[size];
888
+ if (!body) {
889
+ throw Error("Icon \"general-life-ring\" is not available in size ".concat(size));
890
+ }
891
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
892
+ };
893
+ var IconGeneralOfficeBuilding = function (props) {
894
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
895
+ var iconBodies = {
896
+ "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\"/>"
897
+ };
898
+ var body = iconBodies[size];
899
+ if (!body) {
900
+ throw Error("Icon \"general-office-building\" is not available in size ".concat(size));
901
+ }
902
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
903
+ };
904
+ var IconGeneralPlaceholder = function (props) {
905
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["12", "16", "24", "32", "40", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
906
+ var iconBodies = {
907
+ "12": "<path d=\"M9.55 2.45c1.933 1.934 1.933 5.166 0 7.1-1.934 1.933-5.166 1.933-7.1 0-1.933-1.934-1.933-5.166 0-7.1 1.934-1.933 5.166-1.933 7.1 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m6 6 3.55-3.55M6 6 2.45 2.45M6 6l3.55 3.55M6 6 2.45 9.55m7.1-7.1c1.933 1.934 1.933 5.166 0 7.1m0-7.1C7.616.517 4.384.517 2.45 2.45m0 0c-1.933 1.934-1.933 5.166 0 7.1m7.1 0c-1.934 1.933-5.166 1.933-7.1 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
908
+ "16": "<path d=\"M12.97 3.03c2.707 2.708 2.707 7.232 0 9.94-2.708 2.707-7.232 2.707-9.94 0-2.707-2.708-2.707-7.232 0-9.94 2.708-2.707 7.232-2.707 9.94 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m8 8 4.97-4.97M8 8 3.03 3.03M8 8l4.97 4.97M8 8l-4.97 4.97m9.94-9.94c2.707 2.708 2.707 7.232 0 9.94m0-9.94C10.261.324 5.737.324 3.03 3.03m0 0c-2.707 2.708-2.707 7.232 0 9.94m9.94 0c-2.708 2.707-7.232 2.707-9.94 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
909
+ "24": "<path d=\"M19.1 4.9c3.867 3.869 3.867 10.332 0 14.2-3.869 3.867-10.331 3.867-14.2 0-3.867-3.869-3.867-10.331 0-14.2 3.869-3.867 10.332-3.867 14.2 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m12 12 7.1-7.1M12 12 4.9 4.9M12 12l7.1 7.1M12 12l-7.1 7.1M19.1 4.9c3.867 3.869 3.867 10.332 0 14.2m0-14.2C15.23 1.034 8.768 1.034 4.9 4.9m0 0c-3.867 3.869-3.867 10.332 0 14.2m14.2 0c-3.869 3.867-10.331 3.867-14.2 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
910
+ "32": "<path d=\"M25.229 6.771c5.028 5.028 5.028 13.43 0 18.458-5.028 5.028-13.43 5.028-18.458 0-5.028-5.028-5.028-13.43 0-18.458 5.028-5.028 13.43-5.028 18.458 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m16 16 9.229-9.229M16 16 6.771 6.771M16 16l9.229 9.229M16 16l-9.229 9.229M25.229 6.771c5.028 5.028 5.028 13.43 0 18.458m0-18.458c-5.028-5.028-13.43-5.028-18.458 0m0 0c-5.028 5.028-5.028 13.43 0 18.458m18.458 0c-5.028 5.028-13.43 5.028-18.458 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
911
+ "40": "<path d=\"M32.069 7.931c6.575 6.576 6.575 17.563 0 24.138-6.576 6.575-17.563 6.575-24.138 0-6.575-6.576-6.575-17.563 0-24.138 6.576-6.575 17.563-6.575 24.138 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M20 20 32.069 7.931M20 20 7.931 7.931M20 20l12.069 12.069M20 20 7.931 32.069M32.07 7.93c6.575 6.576 6.575 17.563 0 24.138m0-24.138c-6.576-6.575-17.563-6.575-24.138 0m0 0c-6.575 6.576-6.575 17.563 0 24.138m24.138 0c-6.576 6.575-17.563 6.575-24.138 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>",
912
+ "48": "<path d=\"M38.198 9.802c7.736 7.735 7.736 20.66 0 28.396-7.735 7.736-20.66 7.736-28.396 0-7.736-7.735-7.736-20.66 0-28.396 7.735-7.736 20.66-7.736 28.396 0Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"M24 24 38.198 9.802M24 24 9.802 9.802M24 24l14.198 14.198M24 24 9.802 38.198M38.198 9.802c7.736 7.735 7.736 20.66 0 28.396m0-28.396c-7.735-7.736-20.66-7.736-28.396 0m0 0c-7.736 7.735-7.736 20.66 0 28.396m28.396 0c-7.735 7.736-20.66 7.736-28.396 0\" stroke=\"#1B1E2E\" class=\"icon-dark\" stroke-width=\"2\"/>"
913
+ };
914
+ var body = iconBodies[size];
915
+ if (!body) {
916
+ throw Error("Icon \"general-placeholder\" is not available in size ".concat(size));
917
+ }
918
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
919
+ };
920
+ var IconLoading = function (props) {
921
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
922
+ var iconBodies = {
923
+ "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\"/>"
924
+ };
925
+ var body = iconBodies[size];
926
+ if (!body) {
927
+ throw Error("Icon \"loading\" is not available in size ".concat(size));
928
+ }
929
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
930
+ };
931
+ var IconMenuDotsVertical = function (props) {
932
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
933
+ var iconBodies = {
934
+ "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\"/>"
935
+ };
936
+ var body = iconBodies[size];
937
+ if (!body) {
938
+ throw Error("Icon \"menu-dots-vertical\" is not available in size ".concat(size));
939
+ }
940
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
941
+ };
942
+ var IconMenuExpandLeft = function (props) {
943
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
944
+ var iconBodies = {
945
+ "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\"/>"
946
+ };
947
+ var body = iconBodies[size];
948
+ if (!body) {
949
+ throw Error("Icon \"menu-expand-left\" is not available in size ".concat(size));
950
+ }
951
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
952
+ };
953
+ var IconMenuExpandRight = function (props) {
954
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
955
+ var iconBodies = {
956
+ "16": "<path d=\"M2 3h6M2 8h12m0 0-2.5-2.5M14 8l-2.5 2.5M2 13h6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
957
+ };
958
+ var body = iconBodies[size];
959
+ if (!body) {
960
+ throw Error("Icon \"menu-expand-right\" is not available in size ".concat(size));
961
+ }
962
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
963
+ };
964
+ var IconObjectBookCode = function (props) {
965
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
966
+ var iconBodies = {
967
+ "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\"/>"
968
+ };
969
+ var body = iconBodies[size];
970
+ if (!body) {
971
+ throw Error("Icon \"object-book-code\" is not available in size ".concat(size));
972
+ }
973
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
974
+ };
975
+ var IconObjectBook = function (props) {
976
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
977
+ var iconBodies = {
978
+ "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\"/>",
979
+ "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\"/>",
980
+ "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\"/>"
981
+ };
982
+ var body = iconBodies[size];
983
+ if (!body) {
984
+ throw Error("Icon \"object-book\" is not available in size ".concat(size));
985
+ }
986
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
987
+ };
988
+ var IconObjectBookmark = function (props) {
989
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
990
+ var iconBodies = {
991
+ "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\"/>",
992
+ "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\"/>"
993
+ };
994
+ var body = iconBodies[size];
995
+ if (!body) {
996
+ throw Error("Icon \"object-bookmark\" is not available in size ".concat(size));
997
+ }
998
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
999
+ };
1000
+ var IconObjectBoxOpen = function (props) {
1001
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1002
+ var iconBodies = {
1003
+ "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\"/>"
1004
+ };
1005
+ var body = iconBodies[size];
1006
+ if (!body) {
1007
+ throw Error("Icon \"object-box-open\" is not available in size ".concat(size));
1008
+ }
1009
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1010
+ };
1011
+ var IconObjectBox = function (props) {
1012
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1013
+ var iconBodies = {
1014
+ "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\"/>",
1015
+ "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\"/>"
1016
+ };
1017
+ var body = iconBodies[size];
1018
+ if (!body) {
1019
+ throw Error("Icon \"object-box\" is not available in size ".concat(size));
1020
+ }
1021
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1022
+ };
1023
+ var IconObjectChainLink = function (props) {
1024
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1025
+ var iconBodies = {
1026
+ "16": "<path d=\"M10 3a1 1 0 1 0 0 2V3Zm0 8a1 1 0 1 0 0 2v-2ZM6 5a1 1 0 0 0 0-2v2Zm0 8a1 1 0 1 0 0-2v2ZM5 7a1 1 0 0 0 0 2V7Zm6 2a1 1 0 1 0 0-2v2Zm-1-4h1V3h-1v2Zm1 6h-1v2h1v-2ZM5 5h1V3H5v2Zm1 6H5v2h1v-2ZM5 9h6V7H5v2ZM2 8a3 3 0 0 1 3-3V3a5 5 0 0 0-5 5h2ZM0 8a5 5 0 0 0 5 5v-2a3 3 0 0 1-3-3H0Zm14 0a3 3 0 0 1-3 3v2a5 5 0 0 0 5-5h-2Zm2 0a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3h2Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1027
+ };
1028
+ var body = iconBodies[size];
1029
+ if (!body) {
1030
+ throw Error("Icon \"object-chain-link\" is not available in size ".concat(size));
1031
+ }
1032
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1033
+ };
1034
+ var IconObjectFolderDark = function (props) {
1035
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1036
+ var iconBodies = {
1037
+ "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\"/>"
1038
+ };
1039
+ var body = iconBodies[size];
1040
+ if (!body) {
1041
+ throw Error("Icon \"object-folder-dark\" is not available in size ".concat(size));
1042
+ }
1043
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1044
+ };
1045
+ var IconObjectFolderLight = function (props) {
1046
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1047
+ var iconBodies = {
1048
+ "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\"/>",
1049
+ "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\"/>"
1050
+ };
1051
+ var body = iconBodies[size];
1052
+ if (!body) {
1053
+ throw Error("Icon \"object-folder-light\" is not available in size ".concat(size));
1054
+ }
1055
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1056
+ };
1057
+ var IconObjectGear = function (props) {
1058
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1059
+ var iconBodies = {
1060
+ "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\"/>",
1061
+ "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\"/>"
1062
+ };
1063
+ var body = iconBodies[size];
1064
+ if (!body) {
1065
+ throw Error("Icon \"object-gear\" is not available in size ".concat(size));
1066
+ }
1067
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1068
+ };
1069
+ var IconObjectMagicWandDarkMode = function (props) {
1070
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1071
+ var iconBodies = {
1072
+ "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\"/>"
1073
+ };
1074
+ var body = iconBodies[size];
1075
+ if (!body) {
1076
+ throw Error("Icon \"object-magic-wand-dark-mode\" is not available in size ".concat(size));
1077
+ }
1078
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1079
+ };
1080
+ var IconObjectMagnifyingGlass = function (props) {
1081
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1082
+ var iconBodies = {
1083
+ "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\"/>"
1084
+ };
1085
+ var body = iconBodies[size];
1086
+ if (!body) {
1087
+ throw Error("Icon \"object-magnifying-glass\" is not available in size ".concat(size));
1088
+ }
1089
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1090
+ };
1091
+ var IconObjectOdometer = function (props) {
1092
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1093
+ var iconBodies = {
1094
+ "24": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 13C2 7.477 6.477 3 12 3s10 4.477 10 10a9.985 9.985 0 0 1-4 8H6a9.985 9.985 0 0 1-4-8Zm10 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" fill=\"#D0D2E0\" class=\"icon-light\"/><path d=\"m6 21-.6.8a1 1 0 0 0 .6.2v-1Zm12 0v1a1 1 0 0 0 .6-.2L18 21Zm-6.707-8.707a1 1 0 0 0 1.414 1.414l-1.414-1.415Zm6.414-3.586a1 1 0 0 0-1.414-1.414l1.414 1.414ZM3 13a9 9 0 0 1 9-9V2C5.925 2 1 6.925 1 13h2Zm9-9a9 9 0 0 1 9 9h2c0-6.075-4.925-11-11-11v2ZM6.6 20.2A8.985 8.985 0 0 1 3 13H1c0 3.6 1.73 6.795 4.4 8.8l1.2-1.6ZM21 13a8.985 8.985 0 0 1-3.6 7.2l1.2 1.6c2.67-2.005 4.4-5.2 4.4-8.8h-2Zm-9 0v2a2 2 0 0 0 2-2h-2Zm0 0h-2a2 2 0 0 0 2 2v-2Zm0 0v-2a2 2 0 0 0-2 2h2Zm-6 9h12v-2H6v2Zm8-9c0-.552-.225-1.054-.586-1.415L12 13h2Zm-.586-1.415A1.997 1.997 0 0 0 12 11v2l1.414-1.415Zm-.707 2.122.707-.707L12 11.585l-.707.707 1.414 1.415Zm.707-.707 4.293-4.293-1.414-1.414L12 11.585 13.414 13Z\" fill=\"currentColor\" class=\"icon-dark\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.68 8.094A8.048 8.048 0 0 1 7.094 6.68l.663.663a1 1 0 0 1-1.414 1.414l-.663-.663ZM4.062 14a8.079 8.079 0 0 1 0-2H5a1 1 0 1 1 0 2h-.938Zm15.876-2a8.07 8.07 0 0 1 0 2H19a1 1 0 1 1 0-2h.938ZM13 5.062V6a1 1 0 1 1-2 0v-.938a8.079 8.079 0 0 1 2 0Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1095
+ };
1096
+ var body = iconBodies[size];
1097
+ if (!body) {
1098
+ throw Error("Icon \"object-odometer\" is not available in size ".concat(size));
1099
+ }
1100
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1101
+ };
1102
+ var IconObjectPaperAirplane = function (props) {
1103
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1104
+ var iconBodies = {
1105
+ "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\"/>"
1106
+ };
1107
+ var body = iconBodies[size];
1108
+ if (!body) {
1109
+ throw Error("Icon \"object-paper-airplane\" is not available in size ".concat(size));
1110
+ }
1111
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1112
+ };
1113
+ var IconObjectPinModern = function (props) {
1114
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1115
+ var iconBodies = {
1116
+ "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\"/>"
1117
+ };
1118
+ var body = iconBodies[size];
1119
+ if (!body) {
1120
+ throw Error("Icon \"object-pin-modern\" is not available in size ".concat(size));
1121
+ }
1122
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1123
+ };
1124
+ var IconObjectRuler = function (props) {
1125
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1126
+ var iconBodies = {
1127
+ "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\"/>"
1128
+ };
1129
+ var body = iconBodies[size];
1130
+ if (!body) {
1131
+ throw Error("Icon \"object-ruler\" is not available in size ".concat(size));
1132
+ }
1133
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1134
+ };
1135
+ var IconSecurityKey = function (props) {
1136
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1137
+ var iconBodies = {
1138
+ "16": "<path d=\"M1.861 7.354a2 2 0 0 1 .273-2.488l2.732-2.732a2 2 0 0 1 2.488-.273l2.502 1.593a2 2 0 0 1 .642 2.716L10 7l5 5v3h-3l-1-2.5H9L8 10H7l-.83.498a2 2 0 0 1-2.716-.642L1.861 7.354Z\" fill=\"#D0D2E0\" stroke=\"#1B1E2E\" stroke-width=\"2\" stroke-linejoin=\"round\" class=\"icon-light-fill icon-dark-stroke\"/><circle cx=\"5.752\" cy=\"5.752\" r=\"1.002\" fill=\"#1B1E2E\" class=\"icon-dark\"/>"
1139
+ };
1140
+ var body = iconBodies[size];
1141
+ if (!body) {
1142
+ throw Error("Icon \"security-key\" is not available in size ".concat(size));
1143
+ }
1144
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1145
+ };
1146
+ var IconShapeLightningBolt = function (props) {
1147
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1148
+ var iconBodies = {
1149
+ "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\"/>"
1150
+ };
1151
+ var body = iconBodies[size];
1152
+ if (!body) {
1153
+ throw Error("Icon \"shape-lightning-bolt\" is not available in size ".concat(size));
1154
+ }
1155
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1156
+ };
1157
+ var IconTechnologyBranchH = function (props) {
1158
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1159
+ var iconBodies = {
1160
+ "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\"/>"
1161
+ };
1162
+ var body = iconBodies[size];
1163
+ if (!body) {
1164
+ throw Error("Icon \"technology-branch-h\" is not available in size ".concat(size));
1165
+ }
1166
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1167
+ };
1168
+ var IconTechnologyCodeEditor = function (props) {
1169
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1170
+ var iconBodies = {
1171
+ "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\"/>",
1172
+ "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\"/>"
1173
+ };
1174
+ var body = iconBodies[size];
1175
+ if (!body) {
1176
+ throw Error("Icon \"technology-code-editor\" is not available in size ".concat(size));
1177
+ }
1178
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1179
+ };
1180
+ var IconTechnologyCommandLine = function (props) {
1181
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1182
+ var iconBodies = {
1183
+ "16": "<path d=\"m3 6 3.5 3.5L3 13m6 0h4\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1184
+ };
1185
+ var body = iconBodies[size];
1186
+ if (!body) {
1187
+ throw Error("Icon \"technology-command-line\" is not available in size ".concat(size));
1188
+ }
1189
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1190
+ };
1191
+ var IconTechnologyCypress = function (props) {
1192
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1193
+ var iconBodies = {
1194
+ "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\"/>"
1195
+ };
1196
+ var body = iconBodies[size];
1197
+ if (!body) {
1198
+ throw Error("Icon \"technology-cypress\" is not available in size ".concat(size));
1199
+ }
1200
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1201
+ };
1202
+ var IconTechnologyDashboardCheckmark = function (props) {
1203
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1204
+ var iconBodies = {
1205
+ "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\"/>"
1206
+ };
1207
+ var body = iconBodies[size];
1208
+ if (!body) {
1209
+ throw Error("Icon \"technology-dashboard-checkmark\" is not available in size ".concat(size));
1210
+ }
1211
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1212
+ };
1213
+ var IconTechnologyDashboardFail = function (props) {
1214
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1215
+ var iconBodies = {
1216
+ "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\"/>"
1217
+ };
1218
+ var body = iconBodies[size];
1219
+ if (!body) {
1220
+ throw Error("Icon \"technology-dashboard-fail\" is not available in size ".concat(size));
1221
+ }
1222
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1223
+ };
1224
+ var IconTechnologyDollar = function (props) {
1225
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1226
+ var iconBodies = {
1227
+ "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\"/>"
1228
+ };
1229
+ var body = iconBodies[size];
1230
+ if (!body) {
1231
+ throw Error("Icon \"technology-dollar\" is not available in size ".concat(size));
1232
+ }
1233
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1234
+ };
1235
+ var IconTechnologyDragProject = function (props) {
1236
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1237
+ var iconBodies = {
1238
+ "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\"/>"
1239
+ };
1240
+ var body = iconBodies[size];
1241
+ if (!body) {
1242
+ throw Error("Icon \"technology-drag-project\" is not available in size ".concat(size));
1243
+ }
1244
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1245
+ };
1246
+ var IconTechnologyElementSelector = function (props) {
1247
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1248
+ var iconBodies = {
1249
+ "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\"/>"
1250
+ };
1251
+ var body = iconBodies[size];
1252
+ if (!body) {
1253
+ throw Error("Icon \"technology-element-selector\" is not available in size ".concat(size));
1254
+ }
1255
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1256
+ };
1257
+ var IconTechnologyInfinityLoop = function (props) {
1258
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["20"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1259
+ var iconBodies = {
1260
+ "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\"/>"
1261
+ };
1262
+ var body = iconBodies[size];
1263
+ if (!body) {
1264
+ throw Error("Icon \"technology-infinity-loop\" is not available in size ".concat(size));
1265
+ }
1266
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1267
+ };
1268
+ var IconTechnologyLockedProject = function (props) {
1269
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["48"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1270
+ var iconBodies = {
1271
+ "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\"/>"
1272
+ };
1273
+ var body = iconBodies[size];
1274
+ if (!body) {
1275
+ throw Error("Icon \"technology-locked-project\" is not available in size ".concat(size));
1276
+ }
1277
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1278
+ };
1279
+ var IconTechnologyOctothorpe = function (props) {
1280
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1281
+ var iconBodies = {
1282
+ "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\"/>"
1283
+ };
1284
+ var body = iconBodies[size];
1285
+ if (!body) {
1286
+ throw Error("Icon \"technology-octothorpe\" is not available in size ".concat(size));
1287
+ }
1288
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1289
+ };
1290
+ var IconTechnologyTerminal = function (props) {
1291
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1292
+ var iconBodies = {
1293
+ "16": "<path opacity=\".7\" 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 4h14M5 8l1.5 1.5L5 11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon-dark\"/>"
1294
+ };
1295
+ var body = iconBodies[size];
1296
+ if (!body) {
1297
+ throw Error("Icon \"technology-terminal\" is not available in size ".concat(size));
1298
+ }
1299
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1300
+ };
1301
+ var IconTechnologyTestResults = function (props) {
1302
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1303
+ var iconBodies = {
1304
+ "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\"/>",
1305
+ "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\"/>"
1306
+ };
1307
+ var body = iconBodies[size];
1308
+ if (!body) {
1309
+ throw Error("Icon \"technology-test-results\" is not available in size ".concat(size));
1310
+ }
1311
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1312
+ };
1313
+ var IconTestingTypeComponentSolid = function (props) {
1314
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1315
+ var iconBodies = {
1316
+ "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\"/>"
1317
+ };
1318
+ var body = iconBodies[size];
1319
+ if (!body) {
1320
+ throw Error("Icon \"testing-type-component-solid\" is not available in size ".concat(size));
1321
+ }
1322
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1323
+ };
1324
+ var IconTestingTypeComponent = function (props) {
1325
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1326
+ var iconBodies = {
1327
+ "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\"/>",
1328
+ "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\"/>",
1329
+ "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\"/>"
1330
+ };
1331
+ var body = iconBodies[size];
1332
+ if (!body) {
1333
+ throw Error("Icon \"testing-type-component\" is not available in size ".concat(size));
1334
+ }
1335
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1336
+ };
1337
+ var IconTestingTypeE2ESolidSimple = function (props) {
1338
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["24"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1339
+ var iconBodies = {
1340
+ "24": "<path d=\"M4 3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M20 21a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2v8a2 2 0 0 1-2 2H6v2a2 2 0 0 0 2 2h12ZM6 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM12 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"#00595D\" class=\"icon-dark\"/>"
1341
+ };
1342
+ var body = iconBodies[size];
1343
+ if (!body) {
1344
+ throw Error("Icon \"testing-type-e2e-solid-simple\" is not available in size ".concat(size));
1345
+ }
1346
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1347
+ };
1348
+ var IconTestingTypeE2ESolid = function (props) {
1349
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1350
+ var iconBodies = {
1351
+ "64": "<path d=\"M9 8a3 3 0 0 0-3 3v33a3 3 0 0 0 3 3h37a3 3 0 0 0 3-3V11a3 3 0 0 0-3-3H9Z\" fill=\"#69D3A7\" class=\"icon-light\"/><path d=\"M55 56a3 3 0 0 0 3-3V20a3 3 0 0 0-3-3h-6v27a3 3 0 0 1-3 3H15v6a3 3 0 0 0 3 3h37Z\" fill=\"#00595D\" class=\"icon-dark\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49 11a3 3 0 0 0-3-3H9a3 3 0 0 0-3 3v6h43v-6Zm-5 .5a1 1 0 1 1 0 2H25a1 1 0 1 1 0-2h19Zm-33 2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm4-2a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm4 2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\" fill=\"#00595D\" class=\"icon-dark\"/>"
1352
+ };
1353
+ var body = iconBodies[size];
1354
+ if (!body) {
1355
+ throw Error("Icon \"testing-type-e2e-solid\" is not available in size ".concat(size));
1356
+ }
1357
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1358
+ };
1359
+ var IconTestingTypeE2E = function (props) {
1360
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16", "24", "64"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1361
+ var iconBodies = {
1362
+ "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\"/>",
1363
+ "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\"/>",
1364
+ "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\"/>"
1365
+ };
1366
+ var body = iconBodies[size];
1367
+ if (!body) {
1368
+ throw Error("Icon \"testing-type-e2e\" is not available in size ".concat(size));
1369
+ }
1370
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1371
+ };
1372
+ var IconUserGeneralOutline = function (props) {
1373
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1374
+ var iconBodies = {
1375
+ "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\"/>"
1376
+ };
1377
+ var body = iconBodies[size];
1378
+ if (!body) {
1379
+ throw Error("Icon \"user-general-outline\" is not available in size ".concat(size));
1380
+ }
1381
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1382
+ };
1383
+ var IconUserGeneralSolid = function (props) {
1384
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1385
+ var iconBodies = {
1386
+ "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\"/>"
1387
+ };
1388
+ var body = iconBodies[size];
1389
+ if (!body) {
1390
+ throw Error("Icon \"user-general-solid\" is not available in size ".concat(size));
1391
+ }
1392
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1393
+ };
1394
+ var IconUserOutline = function (props) {
1395
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1396
+ var iconBodies = {
1397
+ "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\" stroke-width=\"2\" class=\"icon-dark\"/>"
1398
+ };
1399
+ var body = iconBodies[size];
1400
+ if (!body) {
1401
+ throw Error("Icon \"user-outline\" is not available in size ".concat(size));
1402
+ }
1403
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1404
+ };
1405
+ var IconViewList = function (props) {
1406
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1407
+ var iconBodies = {
1408
+ "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\"/>"
1409
+ };
1410
+ var body = iconBodies[size];
1411
+ if (!body) {
1412
+ throw Error("Icon \"view-list\" is not available in size ".concat(size));
1413
+ }
1414
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1415
+ };
1416
+ var IconViewTreeAlt = function (props) {
1417
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1418
+ var iconBodies = {
1419
+ "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\"/>"
1420
+ };
1421
+ var body = iconBodies[size];
1422
+ if (!body) {
1423
+ throw Error("Icon \"view-tree-alt\" is not available in size ".concat(size));
1424
+ }
1425
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1426
+ };
1427
+ var IconWarningCircle = function (props) {
1428
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["16"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1429
+ var iconBodies = {
1430
+ "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\"/>"
1431
+ };
1432
+ var body = iconBodies[size];
1433
+ if (!body) {
1434
+ throw Error("Icon \"warning-circle\" is not available in size ".concat(size));
1435
+ }
1436
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1437
+ };
1438
+ var IconWarning = function (props) {
1439
+ var _a = iconsRegistry__namespace.getComponentAttributes(__assign(__assign({}, props), { availableSizes: ["8"] })), size = _a.sizeWithDefault, compiledClasses = _a.compiledClasses;
1440
+ var iconBodies = {
1441
+ "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=\"currentColor\" class=\"icon-dark\"/><path d=\"M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" fill=\"currentColor\" class=\"icon-dark\"/>"
1442
+ };
1443
+ var body = iconBodies[size];
1444
+ if (!body) {
1445
+ throw Error("Icon \"warning\" is not available in size ".concat(size));
1446
+ }
1447
+ return React__namespace.createElement('svg', compileReactIconProperties(__assign(__assign({}, props), { size: size, body: body, compiledClasses: compiledClasses })));
1448
+ };
1449
+
1450
+ exports.IconActionAdd = IconActionAdd;
1451
+ exports.IconActionAddLarge = IconActionAddLarge;
1452
+ exports.IconActionAddMedium = IconActionAddMedium;
1453
+ exports.IconActionAddSmall = IconActionAddSmall;
1454
+ exports.IconActionDelete = IconActionDelete;
1455
+ exports.IconActionDeleteCircle = IconActionDeleteCircle;
1456
+ exports.IconActionExport = IconActionExport;
1457
+ exports.IconActionNext = IconActionNext;
1458
+ exports.IconActionPlayLarge = IconActionPlayLarge;
1459
+ exports.IconActionPlaySmall = IconActionPlaySmall;
1460
+ exports.IconActionPower = IconActionPower;
1461
+ exports.IconActionQuestionMarkCircle = IconActionQuestionMarkCircle;
1462
+ exports.IconActionQuestionMarkDefault = IconActionQuestionMarkDefault;
1463
+ exports.IconActionQuestionMarkOutline = IconActionQuestionMarkOutline;
1464
+ exports.IconActionRecord = IconActionRecord;
1465
+ exports.IconActionRefresh = IconActionRefresh;
1466
+ exports.IconActionRestart = IconActionRestart;
1467
+ exports.IconActionStop = IconActionStop;
1468
+ exports.IconArrowCollapse = IconArrowCollapse;
1469
+ exports.IconArrowDown = IconArrowDown;
1470
+ exports.IconArrowExpand = IconArrowExpand;
1471
+ exports.IconArrowLeft = IconArrowLeft;
1472
+ exports.IconArrowOutlineDown = IconArrowOutlineDown;
1473
+ exports.IconArrowOutlineRight = IconArrowOutlineRight;
1474
+ exports.IconArrowRight = IconArrowRight;
1475
+ exports.IconArrowUp = IconArrowUp;
1476
+ exports.IconCheckmark = IconCheckmark;
1477
+ exports.IconCheckmarkOutline = IconCheckmarkOutline;
1478
+ exports.IconCheckmarkSolid = IconCheckmarkSolid;
1479
+ exports.IconChevronDownDouble = IconChevronDownDouble;
1480
+ exports.IconChevronDownLarge = IconChevronDownLarge;
1481
+ exports.IconChevronDownSmall = IconChevronDownSmall;
1482
+ exports.IconChevronLeftDouble = IconChevronLeftDouble;
1483
+ exports.IconChevronLeftLarge = IconChevronLeftLarge;
1484
+ exports.IconChevronLeftSmall = IconChevronLeftSmall;
1485
+ exports.IconChevronRight = IconChevronRight;
1486
+ exports.IconChevronRightDouble = IconChevronRightDouble;
1487
+ exports.IconChevronRightLarge = IconChevronRightLarge;
1488
+ exports.IconChevronRightSmall = IconChevronRightSmall;
1489
+ exports.IconChevronUpDouble = IconChevronUpDouble;
1490
+ exports.IconChevronUpLarge = IconChevronUpLarge;
1491
+ exports.IconChevronUpSmall = IconChevronUpSmall;
1492
+ exports.IconDeviceLaptop = IconDeviceLaptop;
1493
+ exports.IconDocumentAdded = IconDocumentAdded;
1494
+ exports.IconDocumentBlank = IconDocumentBlank;
1495
+ exports.IconDocumentCode = IconDocumentCode;
1496
+ exports.IconDocumentDeleted = IconDocumentDeleted;
1497
+ exports.IconDocumentDownload = IconDocumentDownload;
1498
+ exports.IconDocumentMinus = IconDocumentMinus;
1499
+ exports.IconDocumentModified = IconDocumentModified;
1500
+ exports.IconDocumentPlus = IconDocumentPlus;
1501
+ exports.IconDocumentPlusMinus = IconDocumentPlusMinus;
1502
+ exports.IconDocumentScript = IconDocumentScript;
1503
+ exports.IconDocumentSheet = IconDocumentSheet;
1504
+ exports.IconDocumentStar = IconDocumentStar;
1505
+ exports.IconDocumentText = IconDocumentText;
1506
+ exports.IconDotOutlineLarge = IconDotOutlineLarge;
1507
+ exports.IconDotOutlineSmall = IconDotOutlineSmall;
1508
+ exports.IconFileChangesAdded = IconFileChangesAdded;
1509
+ exports.IconFileChangesError = IconFileChangesError;
1510
+ exports.IconFileChangesSkipped = IconFileChangesSkipped;
1511
+ exports.IconFileChangesWarning = IconFileChangesWarning;
1512
+ exports.IconGeneralClipboard = IconGeneralClipboard;
1513
+ exports.IconGeneralCommandKey = IconGeneralCommandKey;
1514
+ exports.IconGeneralCrosshairs = IconGeneralCrosshairs;
1515
+ exports.IconGeneralEarth = IconGeneralEarth;
1516
+ exports.IconGeneralEyeClosed = IconGeneralEyeClosed;
1517
+ exports.IconGeneralEyeOpen = IconGeneralEyeOpen;
1518
+ exports.IconGeneralGlobe = IconGeneralGlobe;
1519
+ exports.IconGeneralGrid2X2 = IconGeneralGrid2X2;
1520
+ exports.IconGeneralLifeRing = IconGeneralLifeRing;
1521
+ exports.IconGeneralOfficeBuilding = IconGeneralOfficeBuilding;
1522
+ exports.IconGeneralPlaceholder = IconGeneralPlaceholder;
1523
+ exports.IconLoading = IconLoading;
1524
+ exports.IconMenuDotsVertical = IconMenuDotsVertical;
1525
+ exports.IconMenuExpandLeft = IconMenuExpandLeft;
1526
+ exports.IconMenuExpandRight = IconMenuExpandRight;
1527
+ exports.IconObjectBook = IconObjectBook;
1528
+ exports.IconObjectBookCode = IconObjectBookCode;
1529
+ exports.IconObjectBookmark = IconObjectBookmark;
1530
+ exports.IconObjectBox = IconObjectBox;
1531
+ exports.IconObjectBoxOpen = IconObjectBoxOpen;
1532
+ exports.IconObjectChainLink = IconObjectChainLink;
1533
+ exports.IconObjectFolderDark = IconObjectFolderDark;
1534
+ exports.IconObjectFolderLight = IconObjectFolderLight;
1535
+ exports.IconObjectGear = IconObjectGear;
1536
+ exports.IconObjectMagicWandDarkMode = IconObjectMagicWandDarkMode;
1537
+ exports.IconObjectMagnifyingGlass = IconObjectMagnifyingGlass;
1538
+ exports.IconObjectOdometer = IconObjectOdometer;
1539
+ exports.IconObjectPaperAirplane = IconObjectPaperAirplane;
1540
+ exports.IconObjectPinModern = IconObjectPinModern;
1541
+ exports.IconObjectRuler = IconObjectRuler;
1542
+ exports.IconSecurityKey = IconSecurityKey;
1543
+ exports.IconShapeLightningBolt = IconShapeLightningBolt;
1544
+ exports.IconTechnologyBranchH = IconTechnologyBranchH;
1545
+ exports.IconTechnologyCodeEditor = IconTechnologyCodeEditor;
1546
+ exports.IconTechnologyCommandLine = IconTechnologyCommandLine;
1547
+ exports.IconTechnologyCypress = IconTechnologyCypress;
1548
+ exports.IconTechnologyDashboardCheckmark = IconTechnologyDashboardCheckmark;
1549
+ exports.IconTechnologyDashboardFail = IconTechnologyDashboardFail;
1550
+ exports.IconTechnologyDollar = IconTechnologyDollar;
1551
+ exports.IconTechnologyDragProject = IconTechnologyDragProject;
1552
+ exports.IconTechnologyElementSelector = IconTechnologyElementSelector;
1553
+ exports.IconTechnologyInfinityLoop = IconTechnologyInfinityLoop;
1554
+ exports.IconTechnologyLockedProject = IconTechnologyLockedProject;
1555
+ exports.IconTechnologyOctothorpe = IconTechnologyOctothorpe;
1556
+ exports.IconTechnologyTerminal = IconTechnologyTerminal;
1557
+ exports.IconTechnologyTestResults = IconTechnologyTestResults;
1558
+ exports.IconTestingTypeComponent = IconTestingTypeComponent;
1559
+ exports.IconTestingTypeComponentSolid = IconTestingTypeComponentSolid;
1560
+ exports.IconTestingTypeE2E = IconTestingTypeE2E;
1561
+ exports.IconTestingTypeE2ESolid = IconTestingTypeE2ESolid;
1562
+ exports.IconTestingTypeE2ESolidSimple = IconTestingTypeE2ESolidSimple;
1563
+ exports.IconUserGeneralOutline = IconUserGeneralOutline;
1564
+ exports.IconUserGeneralSolid = IconUserGeneralSolid;
1565
+ exports.IconUserOutline = IconUserOutline;
1566
+ exports.IconViewList = IconViewList;
1567
+ exports.IconViewTreeAlt = IconViewTreeAlt;
1568
+ exports.IconWarning = IconWarning;
1569
+ exports.IconWarningCircle = IconWarningCircle;
1570
+ exports["default"] = Icon;
1571
+ //# sourceMappingURL=index.umd.js.map