@zscloud/design 0.2.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.
Files changed (118) hide show
  1. package/LICENSE +21 -0
  2. package/dist/_icon/app-icon.d.ts +8 -0
  3. package/dist/_icon/app-icons-mapping.d.ts +230 -0
  4. package/dist/_icon/icon.d.ts +12 -0
  5. package/dist/_icon/icons-mapping.d.ts +3866 -0
  6. package/dist/_icon/index.d.ts +3 -0
  7. package/dist/_icon/type.d.ts +14 -0
  8. package/dist/_utils.d.ts +17 -0
  9. package/dist/components/biz/app-base/index.d.ts +18 -0
  10. package/dist/components/biz/config/index.d.ts +15 -0
  11. package/dist/components/biz/constant/index.d.ts +8 -0
  12. package/dist/components/biz/copy/index.d.ts +6 -0
  13. package/dist/components/biz/date-value.d.ts +5 -0
  14. package/dist/components/biz/dropdown-action/index.d.ts +16 -0
  15. package/dist/components/biz/field/field-group.d.ts +5 -0
  16. package/dist/components/biz/field/field-operations.d.ts +9 -0
  17. package/dist/components/biz/field/index.d.ts +33 -0
  18. package/dist/components/biz/file-upload/index.d.ts +1 -0
  19. package/dist/components/biz/file-upload/types.d.ts +6 -0
  20. package/dist/components/biz/file-upload/utils/calc-file-hash.d.ts +36 -0
  21. package/dist/components/biz/file-upload/utils/request.d.ts +24 -0
  22. package/dist/components/biz/file-upload/worker/hash.worker.d.ts +0 -0
  23. package/dist/components/biz/file-upload/worker/simple-hash.work.d.ts +0 -0
  24. package/dist/components/biz/header/header-breadcrumb.d.ts +12 -0
  25. package/dist/components/biz/header/header-detail.d.ts +11 -0
  26. package/dist/components/biz/header/header-page.d.ts +8 -0
  27. package/dist/components/biz/header/index.d.ts +3 -0
  28. package/dist/components/biz/helper-doc/index.d.ts +8 -0
  29. package/dist/components/biz/hooks/use-admin-uuid.d.ts +1 -0
  30. package/dist/components/biz/info/index.d.ts +55 -0
  31. package/dist/components/biz/info-popover/index.d.ts +46 -0
  32. package/dist/components/biz/locale-container/index.d.ts +3 -0
  33. package/dist/components/biz/locale-container/type.d.ts +8 -0
  34. package/dist/components/biz/no-data/index.d.ts +12 -0
  35. package/dist/components/biz/panic-fallback/index.d.ts +1 -0
  36. package/dist/components/biz/smart-tip/index.d.ts +90 -0
  37. package/dist/components/biz/state/index.d.ts +25 -0
  38. package/dist/components/primitive/alert-dialog.d.ts +31 -0
  39. package/dist/components/primitive/alert.d.ts +16 -0
  40. package/dist/components/primitive/auto-complete.d.ts +20 -0
  41. package/dist/components/primitive/badge.d.ts +80 -0
  42. package/dist/components/primitive/breadcrumb.d.ts +26 -0
  43. package/dist/components/primitive/button.d.ts +15 -0
  44. package/dist/components/primitive/calendar.d.ts +8 -0
  45. package/dist/components/primitive/card.d.ts +27 -0
  46. package/dist/components/primitive/cascader.d.ts +117 -0
  47. package/dist/components/primitive/chart.d.ts +62 -0
  48. package/dist/components/primitive/checkbox-group.d.ts +14 -0
  49. package/dist/components/primitive/checkbox.d.ts +7 -0
  50. package/dist/components/primitive/code-editor/index.d.ts +67 -0
  51. package/dist/components/primitive/collapse.d.ts +17 -0
  52. package/dist/components/primitive/context-menu.d.ts +48 -0
  53. package/dist/components/primitive/date-picker.d.ts +44 -0
  54. package/dist/components/primitive/dialog.d.ts +66 -0
  55. package/dist/components/primitive/divider.d.ts +14 -0
  56. package/dist/components/primitive/drawer.d.ts +47 -0
  57. package/dist/components/primitive/dropdown-menu.d.ts +55 -0
  58. package/dist/components/primitive/file-upload/file-upload-single.d.ts +11 -0
  59. package/dist/components/primitive/file-upload/index.d.ts +1 -0
  60. package/dist/components/primitive/form.d.ts +32 -0
  61. package/dist/components/primitive/image-reader/index.d.ts +7 -0
  62. package/dist/components/primitive/input-number.d.ts +17 -0
  63. package/dist/components/primitive/input-password.d.ts +19 -0
  64. package/dist/components/primitive/input.d.ts +5 -0
  65. package/dist/components/primitive/json-viewer.d.ts +22 -0
  66. package/dist/components/primitive/label.d.ts +5 -0
  67. package/dist/components/primitive/link.d.ts +11 -0
  68. package/dist/components/primitive/loader.d.ts +3 -0
  69. package/dist/components/primitive/markdown/index.d.ts +30 -0
  70. package/dist/components/primitive/multi-select.d.ts +76 -0
  71. package/dist/components/primitive/pagination/index.d.ts +8 -0
  72. package/dist/components/primitive/pagination/pagination.d.ts +31 -0
  73. package/dist/components/primitive/popover-confirm.d.ts +32 -0
  74. package/dist/components/primitive/popover.d.ts +12 -0
  75. package/dist/components/primitive/progress.d.ts +32 -0
  76. package/dist/components/primitive/radio-group.d.ts +49 -0
  77. package/dist/components/primitive/range-picker.d.ts +18 -0
  78. package/dist/components/primitive/resizable.d.ts +25 -0
  79. package/dist/components/primitive/search-input.d.ts +8 -0
  80. package/dist/components/primitive/select.d.ts +74 -0
  81. package/dist/components/primitive/selection-cancellation.d.ts +9 -0
  82. package/dist/components/primitive/show.d.ts +8 -0
  83. package/dist/components/primitive/slider.d.ts +4 -0
  84. package/dist/components/primitive/spin.d.ts +52 -0
  85. package/dist/components/primitive/status-badge.d.ts +19 -0
  86. package/dist/components/primitive/steps.d.ts +75 -0
  87. package/dist/components/primitive/switch.d.ts +4 -0
  88. package/dist/components/primitive/tabs/hooks/use-persist-tab-store.d.ts +4 -0
  89. package/dist/components/primitive/tabs/interface/tab-memo.d.ts +5 -0
  90. package/dist/components/primitive/tabs/store/page-state-store.d.ts +17 -0
  91. package/dist/components/primitive/tabs/tabs.d.ts +40 -0
  92. package/dist/components/primitive/tabs/use-persist.d.ts +4 -0
  93. package/dist/components/primitive/tabs/use-store.d.ts +25 -0
  94. package/dist/components/primitive/tag-list.d.ts +22 -0
  95. package/dist/components/primitive/tag.d.ts +17 -0
  96. package/dist/components/primitive/text.d.ts +27 -0
  97. package/dist/components/primitive/textarea.d.ts +8 -0
  98. package/dist/components/primitive/time-picker.d.ts +41 -0
  99. package/dist/components/primitive/toast/toast.d.ts +17 -0
  100. package/dist/components/primitive/toast/toaster.d.ts +1 -0
  101. package/dist/components/primitive/toast/use-toast.d.ts +45 -0
  102. package/dist/components/primitive/tooltip/index.d.ts +38 -0
  103. package/dist/components/primitive/tooltip/use-placement.d.ts +4 -0
  104. package/dist/components/primitive/tree/index.d.ts +5 -0
  105. package/dist/components/primitive/tree/tree-node.d.ts +17 -0
  106. package/dist/components/primitive/tree/tree-select.d.ts +21 -0
  107. package/dist/components/primitive/tree/tree.d.ts +24 -0
  108. package/dist/components/primitive/tree/types.d.ts +123 -0
  109. package/dist/i18n/locales/en-US.json.d.ts +76 -0
  110. package/dist/i18n/locales/zh-CN.json.d.ts +76 -0
  111. package/dist/index.d.ts +113 -0
  112. package/dist/style.css +2 -0
  113. package/dist/utils/overlay-context.d.ts +34 -0
  114. package/dist/utils/use-container.d.ts +30 -0
  115. package/dist/utils/use-id.d.ts +1 -0
  116. package/dist/utils/use-overlay.d.ts +34 -0
  117. package/dist/zscloud-design.es.js +33683 -0
  118. package/package.json +116 -0
@@ -0,0 +1,3866 @@
1
+ export declare const Icons: {
2
+ "script-library": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
7
+ }>;
8
+ underline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
+ title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
13
+ }>;
14
+ "folder-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
+ title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
19
+ }>;
20
+ backup: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
+ title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
25
+ }>;
26
+ "caret-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
+ title?: string;
28
+ titleId?: string;
29
+ desc?: string;
30
+ descId?: string;
31
+ }>;
32
+ grid: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
+ title?: string;
34
+ titleId?: string;
35
+ desc?: string;
36
+ descId?: string;
37
+ }>;
38
+ search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
+ title?: string;
40
+ titleId?: string;
41
+ desc?: string;
42
+ descId?: string;
43
+ }>;
44
+ "inbox-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
+ title?: string;
46
+ titleId?: string;
47
+ desc?: string;
48
+ descId?: string;
49
+ }>;
50
+ "outlet-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
+ title?: string;
52
+ titleId?: string;
53
+ desc?: string;
54
+ descId?: string;
55
+ }>;
56
+ task: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
+ title?: string;
58
+ titleId?: string;
59
+ desc?: string;
60
+ descId?: string;
61
+ }>;
62
+ checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
+ title?: string;
64
+ titleId?: string;
65
+ desc?: string;
66
+ descId?: string;
67
+ }>;
68
+ "video-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
+ title?: string;
70
+ titleId?: string;
71
+ desc?: string;
72
+ descId?: string;
73
+ }>;
74
+ "keypad-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
+ title?: string;
76
+ titleId?: string;
77
+ desc?: string;
78
+ descId?: string;
79
+ }>;
80
+ "pause-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
+ title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
85
+ }>;
86
+ "arrow-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
87
+ title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
91
+ }>;
92
+ "corner-right-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
+ title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
97
+ }>;
98
+ almalinux: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
+ title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
103
+ }>;
104
+ "hard-drive-offering": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
+ title?: string;
106
+ titleId?: string;
107
+ desc?: string;
108
+ descId?: string;
109
+ }>;
110
+ list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
111
+ title?: string;
112
+ titleId?: string;
113
+ desc?: string;
114
+ descId?: string;
115
+ }>;
116
+ bulb: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
+ title?: string;
118
+ titleId?: string;
119
+ desc?: string;
120
+ descId?: string;
121
+ }>;
122
+ "battery-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
+ title?: string;
124
+ titleId?: string;
125
+ desc?: string;
126
+ descId?: string;
127
+ }>;
128
+ "volume-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
+ title?: string;
130
+ titleId?: string;
131
+ desc?: string;
132
+ descId?: string;
133
+ }>;
134
+ "model-square": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
135
+ title?: string;
136
+ titleId?: string;
137
+ desc?: string;
138
+ descId?: string;
139
+ }>;
140
+ "globe-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
+ title?: string;
142
+ titleId?: string;
143
+ desc?: string;
144
+ descId?: string;
145
+ }>;
146
+ outlet: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
+ title?: string;
148
+ titleId?: string;
149
+ desc?: string;
150
+ descId?: string;
151
+ }>;
152
+ "file-edit": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
+ title?: string;
154
+ titleId?: string;
155
+ desc?: string;
156
+ descId?: string;
157
+ }>;
158
+ pantone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
159
+ title?: string;
160
+ titleId?: string;
161
+ desc?: string;
162
+ descId?: string;
163
+ }>;
164
+ dportgroup: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
165
+ title?: string;
166
+ titleId?: string;
167
+ desc?: string;
168
+ descId?: string;
169
+ }>;
170
+ "smartphone-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
171
+ title?: string;
172
+ titleId?: string;
173
+ desc?: string;
174
+ descId?: string;
175
+ }>;
176
+ "storage-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
177
+ title?: string;
178
+ titleId?: string;
179
+ desc?: string;
180
+ descId?: string;
181
+ }>;
182
+ "file-ban": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
183
+ title?: string;
184
+ titleId?: string;
185
+ desc?: string;
186
+ descId?: string;
187
+ }>;
188
+ "corner-up-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
189
+ title?: string;
190
+ titleId?: string;
191
+ desc?: string;
192
+ descId?: string;
193
+ }>;
194
+ "circle-undo": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
195
+ title?: string;
196
+ titleId?: string;
197
+ desc?: string;
198
+ descId?: string;
199
+ }>;
200
+ "info-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
201
+ title?: string;
202
+ titleId?: string;
203
+ desc?: string;
204
+ descId?: string;
205
+ }>;
206
+ "batttery-charging": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
207
+ title?: string;
208
+ titleId?: string;
209
+ desc?: string;
210
+ descId?: string;
211
+ }>;
212
+ "authority-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
213
+ title?: string;
214
+ titleId?: string;
215
+ desc?: string;
216
+ descId?: string;
217
+ }>;
218
+ editor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
219
+ title?: string;
220
+ titleId?: string;
221
+ desc?: string;
222
+ descId?: string;
223
+ }>;
224
+ "person-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
225
+ title?: string;
226
+ titleId?: string;
227
+ desc?: string;
228
+ descId?: string;
229
+ }>;
230
+ scissors: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
231
+ title?: string;
232
+ titleId?: string;
233
+ desc?: string;
234
+ descId?: string;
235
+ }>;
236
+ "play-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
237
+ title?: string;
238
+ titleId?: string;
239
+ desc?: string;
240
+ descId?: string;
241
+ }>;
242
+ "arrrow-left-outline": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
243
+ title?: string;
244
+ titleId?: string;
245
+ desc?: string;
246
+ descId?: string;
247
+ }>;
248
+ "web-shell": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
249
+ title?: string;
250
+ titleId?: string;
251
+ desc?: string;
252
+ descId?: string;
253
+ }>;
254
+ "backspace-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
255
+ title?: string;
256
+ titleId?: string;
257
+ desc?: string;
258
+ descId?: string;
259
+ }>;
260
+ "arrow-ios-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
261
+ title?: string;
262
+ titleId?: string;
263
+ desc?: string;
264
+ descId?: string;
265
+ }>;
266
+ repeat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
267
+ title?: string;
268
+ titleId?: string;
269
+ desc?: string;
270
+ descId?: string;
271
+ }>;
272
+ "list-numeral": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
273
+ title?: string;
274
+ titleId?: string;
275
+ desc?: string;
276
+ descId?: string;
277
+ }>;
278
+ "arrow-right-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
279
+ title?: string;
280
+ titleId?: string;
281
+ desc?: string;
282
+ descId?: string;
283
+ }>;
284
+ "minimize-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
285
+ title?: string;
286
+ titleId?: string;
287
+ desc?: string;
288
+ descId?: string;
289
+ }>;
290
+ "globe-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
291
+ title?: string;
292
+ titleId?: string;
293
+ desc?: string;
294
+ descId?: string;
295
+ }>;
296
+ migrate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
297
+ title?: string;
298
+ titleId?: string;
299
+ desc?: string;
300
+ descId?: string;
301
+ }>;
302
+ hourglass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
303
+ title?: string;
304
+ titleId?: string;
305
+ desc?: string;
306
+ descId?: string;
307
+ }>;
308
+ "source-group-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
309
+ title?: string;
310
+ titleId?: string;
311
+ desc?: string;
312
+ descId?: string;
313
+ }>;
314
+ "pie-chart-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
315
+ title?: string;
316
+ titleId?: string;
317
+ desc?: string;
318
+ descId?: string;
319
+ }>;
320
+ pricetags: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
321
+ title?: string;
322
+ titleId?: string;
323
+ desc?: string;
324
+ descId?: string;
325
+ }>;
326
+ "arrow-ios-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
327
+ title?: string;
328
+ titleId?: string;
329
+ desc?: string;
330
+ descId?: string;
331
+ }>;
332
+ "arrow-up-outline": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
333
+ title?: string;
334
+ titleId?: string;
335
+ desc?: string;
336
+ descId?: string;
337
+ }>;
338
+ "system-translation-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
339
+ title?: string;
340
+ titleId?: string;
341
+ desc?: string;
342
+ descId?: string;
343
+ }>;
344
+ "toggle-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
345
+ title?: string;
346
+ titleId?: string;
347
+ desc?: string;
348
+ descId?: string;
349
+ }>;
350
+ "car-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
351
+ title?: string;
352
+ titleId?: string;
353
+ desc?: string;
354
+ descId?: string;
355
+ }>;
356
+ "arrow-circle-left-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
357
+ title?: string;
358
+ titleId?: string;
359
+ desc?: string;
360
+ descId?: string;
361
+ }>;
362
+ "checkmark-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
363
+ title?: string;
364
+ titleId?: string;
365
+ desc?: string;
366
+ descId?: string;
367
+ }>;
368
+ "thermometer-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
369
+ title?: string;
370
+ titleId?: string;
371
+ desc?: string;
372
+ descId?: string;
373
+ }>;
374
+ "printer-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
375
+ title?: string;
376
+ titleId?: string;
377
+ desc?: string;
378
+ descId?: string;
379
+ }>;
380
+ "storage-3-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
381
+ title?: string;
382
+ titleId?: string;
383
+ desc?: string;
384
+ descId?: string;
385
+ }>;
386
+ "storage-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
387
+ title?: string;
388
+ titleId?: string;
389
+ desc?: string;
390
+ descId?: string;
391
+ }>;
392
+ umbrella: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
393
+ title?: string;
394
+ titleId?: string;
395
+ desc?: string;
396
+ descId?: string;
397
+ }>;
398
+ "parameter-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
399
+ title?: string;
400
+ titleId?: string;
401
+ desc?: string;
402
+ descId?: string;
403
+ }>;
404
+ "arrrow-left-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
405
+ title?: string;
406
+ titleId?: string;
407
+ desc?: string;
408
+ descId?: string;
409
+ }>;
410
+ "volume-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
411
+ title?: string;
412
+ titleId?: string;
413
+ desc?: string;
414
+ descId?: string;
415
+ }>;
416
+ fullscreen: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
417
+ title?: string;
418
+ titleId?: string;
419
+ desc?: string;
420
+ descId?: string;
421
+ }>;
422
+ linux: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
423
+ title?: string;
424
+ titleId?: string;
425
+ desc?: string;
426
+ descId?: string;
427
+ }>;
428
+ slot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
429
+ title?: string;
430
+ titleId?: string;
431
+ desc?: string;
432
+ descId?: string;
433
+ }>;
434
+ "skip-forward-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
435
+ title?: string;
436
+ titleId?: string;
437
+ desc?: string;
438
+ descId?: string;
439
+ }>;
440
+ "progress-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
441
+ title?: string;
442
+ titleId?: string;
443
+ desc?: string;
444
+ descId?: string;
445
+ }>;
446
+ "book-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
447
+ title?: string;
448
+ titleId?: string;
449
+ desc?: string;
450
+ descId?: string;
451
+ }>;
452
+ "thermometer-minus-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
453
+ title?: string;
454
+ titleId?: string;
455
+ desc?: string;
456
+ descId?: string;
457
+ }>;
458
+ "menu-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
459
+ title?: string;
460
+ titleId?: string;
461
+ desc?: string;
462
+ descId?: string;
463
+ }>;
464
+ "phone-missed": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
465
+ title?: string;
466
+ titleId?: string;
467
+ desc?: string;
468
+ descId?: string;
469
+ }>;
470
+ "volume-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
471
+ title?: string;
472
+ titleId?: string;
473
+ desc?: string;
474
+ descId?: string;
475
+ }>;
476
+ "skip-back-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
477
+ title?: string;
478
+ titleId?: string;
479
+ desc?: string;
480
+ descId?: string;
481
+ }>;
482
+ "mail-receive-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
483
+ title?: string;
484
+ titleId?: string;
485
+ desc?: string;
486
+ descId?: string;
487
+ }>;
488
+ "edit-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
489
+ title?: string;
490
+ titleId?: string;
491
+ desc?: string;
492
+ descId?: string;
493
+ }>;
494
+ fold: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
495
+ title?: string;
496
+ titleId?: string;
497
+ desc?: string;
498
+ descId?: string;
499
+ }>;
500
+ "corner-left-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
501
+ title?: string;
502
+ titleId?: string;
503
+ desc?: string;
504
+ descId?: string;
505
+ }>;
506
+ person: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
507
+ title?: string;
508
+ titleId?: string;
509
+ desc?: string;
510
+ descId?: string;
511
+ }>;
512
+ home: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
513
+ title?: string;
514
+ titleId?: string;
515
+ desc?: string;
516
+ descId?: string;
517
+ }>;
518
+ "radio-button-on-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
519
+ title?: string;
520
+ titleId?: string;
521
+ desc?: string;
522
+ descId?: string;
523
+ }>;
524
+ vyos: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
525
+ title?: string;
526
+ titleId?: string;
527
+ desc?: string;
528
+ descId?: string;
529
+ }>;
530
+ "rewind-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
531
+ title?: string;
532
+ titleId?: string;
533
+ desc?: string;
534
+ descId?: string;
535
+ }>;
536
+ music: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
537
+ title?: string;
538
+ titleId?: string;
539
+ desc?: string;
540
+ descId?: string;
541
+ }>;
542
+ smartphone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
543
+ title?: string;
544
+ titleId?: string;
545
+ desc?: string;
546
+ descId?: string;
547
+ }>;
548
+ "more-horizontal": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
549
+ title?: string;
550
+ titleId?: string;
551
+ desc?: string;
552
+ descId?: string;
553
+ }>;
554
+ "navigation-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
555
+ title?: string;
556
+ titleId?: string;
557
+ desc?: string;
558
+ descId?: string;
559
+ }>;
560
+ "settings-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
561
+ title?: string;
562
+ titleId?: string;
563
+ desc?: string;
564
+ descId?: string;
565
+ }>;
566
+ "timed-task-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
567
+ title?: string;
568
+ titleId?: string;
569
+ desc?: string;
570
+ descId?: string;
571
+ }>;
572
+ "slot-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
573
+ title?: string;
574
+ titleId?: string;
575
+ desc?: string;
576
+ descId?: string;
577
+ }>;
578
+ "folder-remove-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
579
+ title?: string;
580
+ titleId?: string;
581
+ desc?: string;
582
+ descId?: string;
583
+ }>;
584
+ "arrow-up-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
585
+ title?: string;
586
+ titleId?: string;
587
+ desc?: string;
588
+ descId?: string;
589
+ }>;
590
+ "share-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
591
+ title?: string;
592
+ titleId?: string;
593
+ desc?: string;
594
+ descId?: string;
595
+ }>;
596
+ "color-palette": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
597
+ title?: string;
598
+ titleId?: string;
599
+ desc?: string;
600
+ descId?: string;
601
+ }>;
602
+ "pin-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
603
+ title?: string;
604
+ titleId?: string;
605
+ desc?: string;
606
+ descId?: string;
607
+ }>;
608
+ "grid-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
609
+ title?: string;
610
+ titleId?: string;
611
+ desc?: string;
612
+ descId?: string;
613
+ }>;
614
+ "sun-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
615
+ title?: string;
616
+ titleId?: string;
617
+ desc?: string;
618
+ descId?: string;
619
+ }>;
620
+ "close-square-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
621
+ title?: string;
622
+ titleId?: string;
623
+ desc?: string;
624
+ descId?: string;
625
+ }>;
626
+ "cd-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
627
+ title?: string;
628
+ titleId?: string;
629
+ desc?: string;
630
+ descId?: string;
631
+ }>;
632
+ freebsd: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
633
+ title?: string;
634
+ titleId?: string;
635
+ desc?: string;
636
+ descId?: string;
637
+ }>;
638
+ usb: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
639
+ title?: string;
640
+ titleId?: string;
641
+ desc?: string;
642
+ descId?: string;
643
+ }>;
644
+ "inference-template": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
645
+ title?: string;
646
+ titleId?: string;
647
+ desc?: string;
648
+ descId?: string;
649
+ }>;
650
+ "message-square-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
651
+ title?: string;
652
+ titleId?: string;
653
+ desc?: string;
654
+ descId?: string;
655
+ }>;
656
+ "speaker-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
657
+ title?: string;
658
+ titleId?: string;
659
+ desc?: string;
660
+ descId?: string;
661
+ }>;
662
+ tunnel: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
663
+ title?: string;
664
+ titleId?: string;
665
+ desc?: string;
666
+ descId?: string;
667
+ }>;
668
+ crop: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
669
+ title?: string;
670
+ titleId?: string;
671
+ desc?: string;
672
+ descId?: string;
673
+ }>;
674
+ "server-1-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
675
+ title?: string;
676
+ titleId?: string;
677
+ desc?: string;
678
+ descId?: string;
679
+ }>;
680
+ paravirtualization: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
681
+ title?: string;
682
+ titleId?: string;
683
+ desc?: string;
684
+ descId?: string;
685
+ }>;
686
+ "minus-square-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
687
+ title?: string;
688
+ titleId?: string;
689
+ desc?: string;
690
+ descId?: string;
691
+ }>;
692
+ oracle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
693
+ title?: string;
694
+ titleId?: string;
695
+ desc?: string;
696
+ descId?: string;
697
+ }>;
698
+ interface: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
699
+ title?: string;
700
+ titleId?: string;
701
+ desc?: string;
702
+ descId?: string;
703
+ }>;
704
+ briefcase: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
705
+ title?: string;
706
+ titleId?: string;
707
+ desc?: string;
708
+ descId?: string;
709
+ }>;
710
+ "trash-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
711
+ title?: string;
712
+ titleId?: string;
713
+ desc?: string;
714
+ descId?: string;
715
+ }>;
716
+ "wall-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
717
+ title?: string;
718
+ titleId?: string;
719
+ desc?: string;
720
+ descId?: string;
721
+ }>;
722
+ plugin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
723
+ title?: string;
724
+ titleId?: string;
725
+ desc?: string;
726
+ descId?: string;
727
+ }>;
728
+ "radio-button-on": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
729
+ title?: string;
730
+ titleId?: string;
731
+ desc?: string;
732
+ descId?: string;
733
+ }>;
734
+ "arrow-circle-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
735
+ title?: string;
736
+ titleId?: string;
737
+ desc?: string;
738
+ descId?: string;
739
+ }>;
740
+ "nut-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
741
+ title?: string;
742
+ titleId?: string;
743
+ desc?: string;
744
+ descId?: string;
745
+ }>;
746
+ "file-add": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
747
+ title?: string;
748
+ titleId?: string;
749
+ desc?: string;
750
+ descId?: string;
751
+ }>;
752
+ centosstream: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
753
+ title?: string;
754
+ titleId?: string;
755
+ desc?: string;
756
+ descId?: string;
757
+ }>;
758
+ "analysis-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
759
+ title?: string;
760
+ titleId?: string;
761
+ desc?: string;
762
+ descId?: string;
763
+ }>;
764
+ "edit-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
765
+ title?: string;
766
+ titleId?: string;
767
+ desc?: string;
768
+ descId?: string;
769
+ }>;
770
+ map: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
771
+ title?: string;
772
+ titleId?: string;
773
+ desc?: string;
774
+ descId?: string;
775
+ }>;
776
+ inbox: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
777
+ title?: string;
778
+ titleId?: string;
779
+ desc?: string;
780
+ descId?: string;
781
+ }>;
782
+ "node-3": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
783
+ title?: string;
784
+ titleId?: string;
785
+ desc?: string;
786
+ descId?: string;
787
+ }>;
788
+ audit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
789
+ title?: string;
790
+ titleId?: string;
791
+ desc?: string;
792
+ descId?: string;
793
+ }>;
794
+ "plus-square": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
795
+ title?: string;
796
+ titleId?: string;
797
+ desc?: string;
798
+ descId?: string;
799
+ }>;
800
+ "topology-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
801
+ title?: string;
802
+ titleId?: string;
803
+ desc?: string;
804
+ descId?: string;
805
+ }>;
806
+ power: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
807
+ title?: string;
808
+ titleId?: string;
809
+ desc?: string;
810
+ descId?: string;
811
+ }>;
812
+ drag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
813
+ title?: string;
814
+ titleId?: string;
815
+ desc?: string;
816
+ descId?: string;
817
+ }>;
818
+ "radio-button-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
819
+ title?: string;
820
+ titleId?: string;
821
+ desc?: string;
822
+ descId?: string;
823
+ }>;
824
+ "color-picker-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
825
+ title?: string;
826
+ titleId?: string;
827
+ desc?: string;
828
+ descId?: string;
829
+ }>;
830
+ "maximize-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
831
+ title?: string;
832
+ titleId?: string;
833
+ desc?: string;
834
+ descId?: string;
835
+ }>;
836
+ "timer-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
837
+ title?: string;
838
+ titleId?: string;
839
+ desc?: string;
840
+ descId?: string;
841
+ }>;
842
+ "toggle-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
843
+ title?: string;
844
+ titleId?: string;
845
+ desc?: string;
846
+ descId?: string;
847
+ }>;
848
+ file: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
849
+ title?: string;
850
+ titleId?: string;
851
+ desc?: string;
852
+ descId?: string;
853
+ }>;
854
+ "network-port-unfill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
855
+ title?: string;
856
+ titleId?: string;
857
+ desc?: string;
858
+ descId?: string;
859
+ }>;
860
+ "file-remove-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
861
+ title?: string;
862
+ titleId?: string;
863
+ desc?: string;
864
+ descId?: string;
865
+ }>;
866
+ "diagonal-arrow-right-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
867
+ title?: string;
868
+ titleId?: string;
869
+ desc?: string;
870
+ descId?: string;
871
+ }>;
872
+ "shutter-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
873
+ title?: string;
874
+ titleId?: string;
875
+ desc?: string;
876
+ descId?: string;
877
+ }>;
878
+ "disk-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
879
+ title?: string;
880
+ titleId?: string;
881
+ desc?: string;
882
+ descId?: string;
883
+ }>;
884
+ "folder-remove": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
885
+ title?: string;
886
+ titleId?: string;
887
+ desc?: string;
888
+ descId?: string;
889
+ }>;
890
+ "color-palette-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
891
+ title?: string;
892
+ titleId?: string;
893
+ desc?: string;
894
+ descId?: string;
895
+ }>;
896
+ "message-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
897
+ title?: string;
898
+ titleId?: string;
899
+ desc?: string;
900
+ descId?: string;
901
+ }>;
902
+ "arrowhead-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
903
+ title?: string;
904
+ titleId?: string;
905
+ desc?: string;
906
+ descId?: string;
907
+ }>;
908
+ authority: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
909
+ title?: string;
910
+ titleId?: string;
911
+ desc?: string;
912
+ descId?: string;
913
+ }>;
914
+ "stop-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
915
+ title?: string;
916
+ titleId?: string;
917
+ desc?: string;
918
+ descId?: string;
919
+ }>;
920
+ "bookmark-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
921
+ title?: string;
922
+ titleId?: string;
923
+ desc?: string;
924
+ descId?: string;
925
+ }>;
926
+ "gpu-offering": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
927
+ title?: string;
928
+ titleId?: string;
929
+ desc?: string;
930
+ descId?: string;
931
+ }>;
932
+ npm: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
933
+ title?: string;
934
+ titleId?: string;
935
+ desc?: string;
936
+ descId?: string;
937
+ }>;
938
+ "fine-tuning": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
939
+ title?: string;
940
+ titleId?: string;
941
+ desc?: string;
942
+ descId?: string;
943
+ }>;
944
+ "router-launch": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
945
+ title?: string;
946
+ titleId?: string;
947
+ desc?: string;
948
+ descId?: string;
949
+ }>;
950
+ "droplet-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
951
+ title?: string;
952
+ titleId?: string;
953
+ desc?: string;
954
+ descId?: string;
955
+ }>;
956
+ wizard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
957
+ title?: string;
958
+ titleId?: string;
959
+ desc?: string;
960
+ descId?: string;
961
+ }>;
962
+ move: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
963
+ title?: string;
964
+ titleId?: string;
965
+ desc?: string;
966
+ descId?: string;
967
+ }>;
968
+ maximize: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
969
+ title?: string;
970
+ titleId?: string;
971
+ desc?: string;
972
+ descId?: string;
973
+ }>;
974
+ "certificate-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
975
+ title?: string;
976
+ titleId?: string;
977
+ desc?: string;
978
+ descId?: string;
979
+ }>;
980
+ "vessel-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
981
+ title?: string;
982
+ titleId?: string;
983
+ desc?: string;
984
+ descId?: string;
985
+ }>;
986
+ "node-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
987
+ title?: string;
988
+ titleId?: string;
989
+ desc?: string;
990
+ descId?: string;
991
+ }>;
992
+ "compass-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
993
+ title?: string;
994
+ titleId?: string;
995
+ desc?: string;
996
+ descId?: string;
997
+ }>;
998
+ chain: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
999
+ title?: string;
1000
+ titleId?: string;
1001
+ desc?: string;
1002
+ descId?: string;
1003
+ }>;
1004
+ "checkmark-square": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1005
+ title?: string;
1006
+ titleId?: string;
1007
+ desc?: string;
1008
+ descId?: string;
1009
+ }>;
1010
+ all: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1011
+ title?: string;
1012
+ titleId?: string;
1013
+ desc?: string;
1014
+ descId?: string;
1015
+ }>;
1016
+ "arrow-down-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1017
+ title?: string;
1018
+ titleId?: string;
1019
+ desc?: string;
1020
+ descId?: string;
1021
+ }>;
1022
+ deploy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1023
+ title?: string;
1024
+ titleId?: string;
1025
+ desc?: string;
1026
+ descId?: string;
1027
+ }>;
1028
+ "file-text": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1029
+ title?: string;
1030
+ titleId?: string;
1031
+ desc?: string;
1032
+ descId?: string;
1033
+ }>;
1034
+ "home-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1035
+ title?: string;
1036
+ titleId?: string;
1037
+ desc?: string;
1038
+ descId?: string;
1039
+ }>;
1040
+ droplet: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1041
+ title?: string;
1042
+ titleId?: string;
1043
+ desc?: string;
1044
+ descId?: string;
1045
+ }>;
1046
+ "file-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1047
+ title?: string;
1048
+ titleId?: string;
1049
+ desc?: string;
1050
+ descId?: string;
1051
+ }>;
1052
+ "vgpu-offering-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1053
+ title?: string;
1054
+ titleId?: string;
1055
+ desc?: string;
1056
+ descId?: string;
1057
+ }>;
1058
+ "bar-chart": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1059
+ title?: string;
1060
+ titleId?: string;
1061
+ desc?: string;
1062
+ descId?: string;
1063
+ }>;
1064
+ "router-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1065
+ title?: string;
1066
+ titleId?: string;
1067
+ desc?: string;
1068
+ descId?: string;
1069
+ }>;
1070
+ "bell-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1071
+ title?: string;
1072
+ titleId?: string;
1073
+ desc?: string;
1074
+ descId?: string;
1075
+ }>;
1076
+ "eye-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1077
+ title?: string;
1078
+ titleId?: string;
1079
+ desc?: string;
1080
+ descId?: string;
1081
+ }>;
1082
+ lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1083
+ title?: string;
1084
+ titleId?: string;
1085
+ desc?: string;
1086
+ descId?: string;
1087
+ }>;
1088
+ "log-in": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1089
+ title?: string;
1090
+ titleId?: string;
1091
+ desc?: string;
1092
+ descId?: string;
1093
+ }>;
1094
+ "cloud-upload": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1095
+ title?: string;
1096
+ titleId?: string;
1097
+ desc?: string;
1098
+ descId?: string;
1099
+ }>;
1100
+ dataset: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1101
+ title?: string;
1102
+ titleId?: string;
1103
+ desc?: string;
1104
+ descId?: string;
1105
+ }>;
1106
+ fire: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1107
+ title?: string;
1108
+ titleId?: string;
1109
+ desc?: string;
1110
+ descId?: string;
1111
+ }>;
1112
+ "options-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1113
+ title?: string;
1114
+ titleId?: string;
1115
+ desc?: string;
1116
+ descId?: string;
1117
+ }>;
1118
+ "award-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1119
+ title?: string;
1120
+ titleId?: string;
1121
+ desc?: string;
1122
+ descId?: string;
1123
+ }>;
1124
+ "shopping-bag": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1125
+ title?: string;
1126
+ titleId?: string;
1127
+ desc?: string;
1128
+ descId?: string;
1129
+ }>;
1130
+ elasticity: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1131
+ title?: string;
1132
+ titleId?: string;
1133
+ desc?: string;
1134
+ descId?: string;
1135
+ }>;
1136
+ "tunnel-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1137
+ title?: string;
1138
+ titleId?: string;
1139
+ desc?: string;
1140
+ descId?: string;
1141
+ }>;
1142
+ "file-paste": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1143
+ title?: string;
1144
+ titleId?: string;
1145
+ desc?: string;
1146
+ descId?: string;
1147
+ }>;
1148
+ "checkmark-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1149
+ title?: string;
1150
+ titleId?: string;
1151
+ desc?: string;
1152
+ descId?: string;
1153
+ }>;
1154
+ "close-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1155
+ title?: string;
1156
+ titleId?: string;
1157
+ desc?: string;
1158
+ descId?: string;
1159
+ }>;
1160
+ "eye-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1161
+ title?: string;
1162
+ titleId?: string;
1163
+ desc?: string;
1164
+ descId?: string;
1165
+ }>;
1166
+ monitors: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1167
+ title?: string;
1168
+ titleId?: string;
1169
+ desc?: string;
1170
+ descId?: string;
1171
+ }>;
1172
+ "message-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1173
+ title?: string;
1174
+ titleId?: string;
1175
+ desc?: string;
1176
+ descId?: string;
1177
+ }>;
1178
+ "question-mark-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1179
+ title?: string;
1180
+ titleId?: string;
1181
+ desc?: string;
1182
+ descId?: string;
1183
+ }>;
1184
+ "star-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1185
+ title?: string;
1186
+ titleId?: string;
1187
+ desc?: string;
1188
+ descId?: string;
1189
+ }>;
1190
+ clipboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1191
+ title?: string;
1192
+ titleId?: string;
1193
+ desc?: string;
1194
+ descId?: string;
1195
+ }>;
1196
+ cameras: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1197
+ title?: string;
1198
+ titleId?: string;
1199
+ desc?: string;
1200
+ descId?: string;
1201
+ }>;
1202
+ link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1203
+ title?: string;
1204
+ titleId?: string;
1205
+ desc?: string;
1206
+ descId?: string;
1207
+ }>;
1208
+ certificate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1209
+ title?: string;
1210
+ titleId?: string;
1211
+ desc?: string;
1212
+ descId?: string;
1213
+ }>;
1214
+ "menu-arrow-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1215
+ title?: string;
1216
+ titleId?: string;
1217
+ desc?: string;
1218
+ descId?: string;
1219
+ }>;
1220
+ "ai-server": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1221
+ title?: string;
1222
+ titleId?: string;
1223
+ desc?: string;
1224
+ descId?: string;
1225
+ }>;
1226
+ "video-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1227
+ title?: string;
1228
+ titleId?: string;
1229
+ desc?: string;
1230
+ descId?: string;
1231
+ }>;
1232
+ "mail-receive": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1233
+ title?: string;
1234
+ titleId?: string;
1235
+ desc?: string;
1236
+ descId?: string;
1237
+ }>;
1238
+ gpu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1239
+ title?: string;
1240
+ titleId?: string;
1241
+ desc?: string;
1242
+ descId?: string;
1243
+ }>;
1244
+ key: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1245
+ title?: string;
1246
+ titleId?: string;
1247
+ desc?: string;
1248
+ descId?: string;
1249
+ }>;
1250
+ "version-checkbg": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1251
+ title?: string;
1252
+ titleId?: string;
1253
+ desc?: string;
1254
+ descId?: string;
1255
+ }>;
1256
+ anolisos: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1257
+ title?: string;
1258
+ titleId?: string;
1259
+ desc?: string;
1260
+ descId?: string;
1261
+ }>;
1262
+ "router-offering": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1263
+ title?: string;
1264
+ titleId?: string;
1265
+ desc?: string;
1266
+ descId?: string;
1267
+ }>;
1268
+ "minus-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1269
+ title?: string;
1270
+ titleId?: string;
1271
+ desc?: string;
1272
+ descId?: string;
1273
+ }>;
1274
+ "corner-down-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1275
+ title?: string;
1276
+ titleId?: string;
1277
+ desc?: string;
1278
+ descId?: string;
1279
+ }>;
1280
+ "arrow-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1281
+ title?: string;
1282
+ titleId?: string;
1283
+ desc?: string;
1284
+ descId?: string;
1285
+ }>;
1286
+ "my-approvals": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1287
+ title?: string;
1288
+ titleId?: string;
1289
+ desc?: string;
1290
+ descId?: string;
1291
+ }>;
1292
+ questionnaire: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1293
+ title?: string;
1294
+ titleId?: string;
1295
+ desc?: string;
1296
+ descId?: string;
1297
+ }>;
1298
+ "servers-3": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1299
+ title?: string;
1300
+ titleId?: string;
1301
+ desc?: string;
1302
+ descId?: string;
1303
+ }>;
1304
+ brush: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1305
+ title?: string;
1306
+ titleId?: string;
1307
+ desc?: string;
1308
+ descId?: string;
1309
+ }>;
1310
+ at: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1311
+ title?: string;
1312
+ titleId?: string;
1313
+ desc?: string;
1314
+ descId?: string;
1315
+ }>;
1316
+ kylin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1317
+ title?: string;
1318
+ titleId?: string;
1319
+ desc?: string;
1320
+ descId?: string;
1321
+ }>;
1322
+ "stop-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1323
+ title?: string;
1324
+ titleId?: string;
1325
+ desc?: string;
1326
+ descId?: string;
1327
+ }>;
1328
+ "log-out": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1329
+ title?: string;
1330
+ titleId?: string;
1331
+ desc?: string;
1332
+ descId?: string;
1333
+ }>;
1334
+ "gpu-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1335
+ title?: string;
1336
+ titleId?: string;
1337
+ desc?: string;
1338
+ descId?: string;
1339
+ }>;
1340
+ "tags-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1341
+ title?: string;
1342
+ titleId?: string;
1343
+ desc?: string;
1344
+ descId?: string;
1345
+ }>;
1346
+ "bar-chart-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1347
+ title?: string;
1348
+ titleId?: string;
1349
+ desc?: string;
1350
+ descId?: string;
1351
+ }>;
1352
+ minimize: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1353
+ title?: string;
1354
+ titleId?: string;
1355
+ desc?: string;
1356
+ descId?: string;
1357
+ }>;
1358
+ group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1359
+ title?: string;
1360
+ titleId?: string;
1361
+ desc?: string;
1362
+ descId?: string;
1363
+ }>;
1364
+ "minus-square": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1365
+ title?: string;
1366
+ titleId?: string;
1367
+ desc?: string;
1368
+ descId?: string;
1369
+ }>;
1370
+ settings: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1371
+ title?: string;
1372
+ titleId?: string;
1373
+ desc?: string;
1374
+ descId?: string;
1375
+ }>;
1376
+ "cameras-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1377
+ title?: string;
1378
+ titleId?: string;
1379
+ desc?: string;
1380
+ descId?: string;
1381
+ }>;
1382
+ archive: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1383
+ title?: string;
1384
+ titleId?: string;
1385
+ desc?: string;
1386
+ descId?: string;
1387
+ }>;
1388
+ "caret-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1389
+ title?: string;
1390
+ titleId?: string;
1391
+ desc?: string;
1392
+ descId?: string;
1393
+ }>;
1394
+ "close-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1395
+ title?: string;
1396
+ titleId?: string;
1397
+ desc?: string;
1398
+ descId?: string;
1399
+ }>;
1400
+ "system-translation": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1401
+ title?: string;
1402
+ titleId?: string;
1403
+ desc?: string;
1404
+ descId?: string;
1405
+ }>;
1406
+ shield: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1407
+ title?: string;
1408
+ titleId?: string;
1409
+ desc?: string;
1410
+ descId?: string;
1411
+ }>;
1412
+ download: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1413
+ title?: string;
1414
+ titleId?: string;
1415
+ desc?: string;
1416
+ descId?: string;
1417
+ }>;
1418
+ expand: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1419
+ title?: string;
1420
+ titleId?: string;
1421
+ desc?: string;
1422
+ descId?: string;
1423
+ }>;
1424
+ pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1425
+ title?: string;
1426
+ titleId?: string;
1427
+ desc?: string;
1428
+ descId?: string;
1429
+ }>;
1430
+ opensuse: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1431
+ title?: string;
1432
+ titleId?: string;
1433
+ desc?: string;
1434
+ descId?: string;
1435
+ }>;
1436
+ "unlock-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1437
+ title?: string;
1438
+ titleId?: string;
1439
+ desc?: string;
1440
+ descId?: string;
1441
+ }>;
1442
+ "wrench-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1443
+ title?: string;
1444
+ titleId?: string;
1445
+ desc?: string;
1446
+ descId?: string;
1447
+ }>;
1448
+ "corner-right-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1449
+ title?: string;
1450
+ titleId?: string;
1451
+ desc?: string;
1452
+ descId?: string;
1453
+ }>;
1454
+ "book-open": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1455
+ title?: string;
1456
+ titleId?: string;
1457
+ desc?: string;
1458
+ descId?: string;
1459
+ }>;
1460
+ server: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1461
+ title?: string;
1462
+ titleId?: string;
1463
+ desc?: string;
1464
+ descId?: string;
1465
+ }>;
1466
+ tv: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1467
+ title?: string;
1468
+ titleId?: string;
1469
+ desc?: string;
1470
+ descId?: string;
1471
+ }>;
1472
+ "skip-forward": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1473
+ title?: string;
1474
+ titleId?: string;
1475
+ desc?: string;
1476
+ descId?: string;
1477
+ }>;
1478
+ "arrowhead-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1479
+ title?: string;
1480
+ titleId?: string;
1481
+ desc?: string;
1482
+ descId?: string;
1483
+ }>;
1484
+ "timed-task": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1485
+ title?: string;
1486
+ titleId?: string;
1487
+ desc?: string;
1488
+ descId?: string;
1489
+ }>;
1490
+ volume: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1491
+ title?: string;
1492
+ titleId?: string;
1493
+ desc?: string;
1494
+ descId?: string;
1495
+ }>;
1496
+ "map-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1497
+ title?: string;
1498
+ titleId?: string;
1499
+ desc?: string;
1500
+ descId?: string;
1501
+ }>;
1502
+ "bar-chart-3": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1503
+ title?: string;
1504
+ titleId?: string;
1505
+ desc?: string;
1506
+ descId?: string;
1507
+ }>;
1508
+ "paravirtualization-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1509
+ title?: string;
1510
+ titleId?: string;
1511
+ desc?: string;
1512
+ descId?: string;
1513
+ }>;
1514
+ "play-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1515
+ title?: string;
1516
+ titleId?: string;
1517
+ desc?: string;
1518
+ descId?: string;
1519
+ }>;
1520
+ "ip-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1521
+ title?: string;
1522
+ titleId?: string;
1523
+ desc?: string;
1524
+ descId?: string;
1525
+ }>;
1526
+ "pause-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1527
+ title?: string;
1528
+ titleId?: string;
1529
+ desc?: string;
1530
+ descId?: string;
1531
+ }>;
1532
+ aliyun: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1533
+ title?: string;
1534
+ titleId?: string;
1535
+ desc?: string;
1536
+ descId?: string;
1537
+ }>;
1538
+ layers: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1539
+ title?: string;
1540
+ titleId?: string;
1541
+ desc?: string;
1542
+ descId?: string;
1543
+ }>;
1544
+ slash: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1545
+ title?: string;
1546
+ titleId?: string;
1547
+ desc?: string;
1548
+ descId?: string;
1549
+ }>;
1550
+ radio: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1551
+ title?: string;
1552
+ titleId?: string;
1553
+ desc?: string;
1554
+ descId?: string;
1555
+ }>;
1556
+ expend: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1557
+ title?: string;
1558
+ titleId?: string;
1559
+ desc?: string;
1560
+ descId?: string;
1561
+ }>;
1562
+ "arrowhead-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1563
+ title?: string;
1564
+ titleId?: string;
1565
+ desc?: string;
1566
+ descId?: string;
1567
+ }>;
1568
+ book: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1569
+ title?: string;
1570
+ titleId?: string;
1571
+ desc?: string;
1572
+ descId?: string;
1573
+ }>;
1574
+ collapse: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1575
+ title?: string;
1576
+ titleId?: string;
1577
+ desc?: string;
1578
+ descId?: string;
1579
+ }>;
1580
+ progress: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1581
+ title?: string;
1582
+ titleId?: string;
1583
+ desc?: string;
1584
+ descId?: string;
1585
+ }>;
1586
+ "shopping-bag-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1587
+ title?: string;
1588
+ titleId?: string;
1589
+ desc?: string;
1590
+ descId?: string;
1591
+ }>;
1592
+ "alarm-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1593
+ title?: string;
1594
+ titleId?: string;
1595
+ desc?: string;
1596
+ descId?: string;
1597
+ }>;
1598
+ "people-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1599
+ title?: string;
1600
+ titleId?: string;
1601
+ desc?: string;
1602
+ descId?: string;
1603
+ }>;
1604
+ "funnel-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1605
+ title?: string;
1606
+ titleId?: string;
1607
+ desc?: string;
1608
+ descId?: string;
1609
+ }>;
1610
+ bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1611
+ title?: string;
1612
+ titleId?: string;
1613
+ desc?: string;
1614
+ descId?: string;
1615
+ }>;
1616
+ "topology-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1617
+ title?: string;
1618
+ titleId?: string;
1619
+ desc?: string;
1620
+ descId?: string;
1621
+ }>;
1622
+ dashboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1623
+ title?: string;
1624
+ titleId?: string;
1625
+ desc?: string;
1626
+ descId?: string;
1627
+ }>;
1628
+ funnel: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1629
+ title?: string;
1630
+ titleId?: string;
1631
+ desc?: string;
1632
+ descId?: string;
1633
+ }>;
1634
+ flash: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1635
+ title?: string;
1636
+ titleId?: string;
1637
+ desc?: string;
1638
+ descId?: string;
1639
+ }>;
1640
+ code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1641
+ title?: string;
1642
+ titleId?: string;
1643
+ desc?: string;
1644
+ descId?: string;
1645
+ }>;
1646
+ "settings-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1647
+ title?: string;
1648
+ titleId?: string;
1649
+ desc?: string;
1650
+ descId?: string;
1651
+ }>;
1652
+ coreos: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1653
+ title?: string;
1654
+ titleId?: string;
1655
+ desc?: string;
1656
+ descId?: string;
1657
+ }>;
1658
+ "arrow-ios-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1659
+ title?: string;
1660
+ titleId?: string;
1661
+ desc?: string;
1662
+ descId?: string;
1663
+ }>;
1664
+ thermometer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1665
+ title?: string;
1666
+ titleId?: string;
1667
+ desc?: string;
1668
+ descId?: string;
1669
+ }>;
1670
+ cast: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1671
+ title?: string;
1672
+ titleId?: string;
1673
+ desc?: string;
1674
+ descId?: string;
1675
+ }>;
1676
+ "bill-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1677
+ title?: string;
1678
+ titleId?: string;
1679
+ desc?: string;
1680
+ descId?: string;
1681
+ }>;
1682
+ "all-done": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1683
+ title?: string;
1684
+ titleId?: string;
1685
+ desc?: string;
1686
+ descId?: string;
1687
+ }>;
1688
+ "chain-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1689
+ title?: string;
1690
+ titleId?: string;
1691
+ desc?: string;
1692
+ descId?: string;
1693
+ }>;
1694
+ flag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1695
+ title?: string;
1696
+ titleId?: string;
1697
+ desc?: string;
1698
+ descId?: string;
1699
+ }>;
1700
+ "eye-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1701
+ title?: string;
1702
+ titleId?: string;
1703
+ desc?: string;
1704
+ descId?: string;
1705
+ }>;
1706
+ "alert-triangle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1707
+ title?: string;
1708
+ titleId?: string;
1709
+ desc?: string;
1710
+ descId?: string;
1711
+ }>;
1712
+ "phone-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1713
+ title?: string;
1714
+ titleId?: string;
1715
+ desc?: string;
1716
+ descId?: string;
1717
+ }>;
1718
+ battery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1719
+ title?: string;
1720
+ titleId?: string;
1721
+ desc?: string;
1722
+ descId?: string;
1723
+ }>;
1724
+ "shuffle-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1725
+ title?: string;
1726
+ titleId?: string;
1727
+ desc?: string;
1728
+ descId?: string;
1729
+ }>;
1730
+ "arrow-circle-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1731
+ title?: string;
1732
+ titleId?: string;
1733
+ desc?: string;
1734
+ descId?: string;
1735
+ }>;
1736
+ "container-group": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1737
+ title?: string;
1738
+ titleId?: string;
1739
+ desc?: string;
1740
+ descId?: string;
1741
+ }>;
1742
+ cube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1743
+ title?: string;
1744
+ titleId?: string;
1745
+ desc?: string;
1746
+ descId?: string;
1747
+ }>;
1748
+ "checkmark-square-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1749
+ title?: string;
1750
+ titleId?: string;
1751
+ desc?: string;
1752
+ descId?: string;
1753
+ }>;
1754
+ "umbrella-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1755
+ title?: string;
1756
+ titleId?: string;
1757
+ desc?: string;
1758
+ descId?: string;
1759
+ }>;
1760
+ "server-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1761
+ title?: string;
1762
+ titleId?: string;
1763
+ desc?: string;
1764
+ descId?: string;
1765
+ }>;
1766
+ container: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1767
+ title?: string;
1768
+ titleId?: string;
1769
+ desc?: string;
1770
+ descId?: string;
1771
+ }>;
1772
+ rockylinux: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1773
+ title?: string;
1774
+ titleId?: string;
1775
+ desc?: string;
1776
+ descId?: string;
1777
+ }>;
1778
+ cpu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1779
+ title?: string;
1780
+ titleId?: string;
1781
+ desc?: string;
1782
+ descId?: string;
1783
+ }>;
1784
+ qcode: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1785
+ title?: string;
1786
+ titleId?: string;
1787
+ desc?: string;
1788
+ descId?: string;
1789
+ }>;
1790
+ "fire-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1791
+ title?: string;
1792
+ titleId?: string;
1793
+ desc?: string;
1794
+ descId?: string;
1795
+ }>;
1796
+ application: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1797
+ title?: string;
1798
+ titleId?: string;
1799
+ desc?: string;
1800
+ descId?: string;
1801
+ }>;
1802
+ "pin-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1803
+ title?: string;
1804
+ titleId?: string;
1805
+ desc?: string;
1806
+ descId?: string;
1807
+ }>;
1808
+ bold: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1809
+ title?: string;
1810
+ titleId?: string;
1811
+ desc?: string;
1812
+ descId?: string;
1813
+ }>;
1814
+ "batttery-charging-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1815
+ title?: string;
1816
+ titleId?: string;
1817
+ desc?: string;
1818
+ descId?: string;
1819
+ }>;
1820
+ "stablity-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1821
+ title?: string;
1822
+ titleId?: string;
1823
+ desc?: string;
1824
+ descId?: string;
1825
+ }>;
1826
+ "grid-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1827
+ title?: string;
1828
+ titleId?: string;
1829
+ desc?: string;
1830
+ descId?: string;
1831
+ }>;
1832
+ hash: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1833
+ title?: string;
1834
+ titleId?: string;
1835
+ desc?: string;
1836
+ descId?: string;
1837
+ }>;
1838
+ plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1839
+ title?: string;
1840
+ titleId?: string;
1841
+ desc?: string;
1842
+ descId?: string;
1843
+ }>;
1844
+ "options-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1845
+ title?: string;
1846
+ titleId?: string;
1847
+ desc?: string;
1848
+ descId?: string;
1849
+ }>;
1850
+ nut: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1851
+ title?: string;
1852
+ titleId?: string;
1853
+ desc?: string;
1854
+ descId?: string;
1855
+ }>;
1856
+ "hard-drive": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1857
+ title?: string;
1858
+ titleId?: string;
1859
+ desc?: string;
1860
+ descId?: string;
1861
+ }>;
1862
+ "hard-drive-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1863
+ title?: string;
1864
+ titleId?: string;
1865
+ desc?: string;
1866
+ descId?: string;
1867
+ }>;
1868
+ "ip-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1869
+ title?: string;
1870
+ titleId?: string;
1871
+ desc?: string;
1872
+ descId?: string;
1873
+ }>;
1874
+ keypad: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1875
+ title?: string;
1876
+ titleId?: string;
1877
+ desc?: string;
1878
+ descId?: string;
1879
+ }>;
1880
+ "pantone-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1881
+ title?: string;
1882
+ titleId?: string;
1883
+ desc?: string;
1884
+ descId?: string;
1885
+ }>;
1886
+ bluetooth: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1887
+ title?: string;
1888
+ titleId?: string;
1889
+ desc?: string;
1890
+ descId?: string;
1891
+ }>;
1892
+ "pie-chart": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1893
+ title?: string;
1894
+ titleId?: string;
1895
+ desc?: string;
1896
+ descId?: string;
1897
+ }>;
1898
+ "checkmark-square-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1899
+ title?: string;
1900
+ titleId?: string;
1901
+ desc?: string;
1902
+ descId?: string;
1903
+ }>;
1904
+ "topology-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1905
+ title?: string;
1906
+ titleId?: string;
1907
+ desc?: string;
1908
+ descId?: string;
1909
+ }>;
1910
+ headphones: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1911
+ title?: string;
1912
+ titleId?: string;
1913
+ desc?: string;
1914
+ descId?: string;
1915
+ }>;
1916
+ "arrow-circle-right-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1917
+ title?: string;
1918
+ titleId?: string;
1919
+ desc?: string;
1920
+ descId?: string;
1921
+ }>;
1922
+ "gift-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1923
+ title?: string;
1924
+ titleId?: string;
1925
+ desc?: string;
1926
+ descId?: string;
1927
+ }>;
1928
+ "shield-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1929
+ title?: string;
1930
+ titleId?: string;
1931
+ desc?: string;
1932
+ descId?: string;
1933
+ }>;
1934
+ recovery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1935
+ title?: string;
1936
+ titleId?: string;
1937
+ desc?: string;
1938
+ descId?: string;
1939
+ }>;
1940
+ email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1941
+ title?: string;
1942
+ titleId?: string;
1943
+ desc?: string;
1944
+ descId?: string;
1945
+ }>;
1946
+ wifi: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1947
+ title?: string;
1948
+ titleId?: string;
1949
+ desc?: string;
1950
+ descId?: string;
1951
+ }>;
1952
+ "corner-up-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1953
+ title?: string;
1954
+ titleId?: string;
1955
+ desc?: string;
1956
+ descId?: string;
1957
+ }>;
1958
+ "swap-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1959
+ title?: string;
1960
+ titleId?: string;
1961
+ desc?: string;
1962
+ descId?: string;
1963
+ }>;
1964
+ "person-admin": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1965
+ title?: string;
1966
+ titleId?: string;
1967
+ desc?: string;
1968
+ descId?: string;
1969
+ }>;
1970
+ "arrow-circle-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1971
+ title?: string;
1972
+ titleId?: string;
1973
+ desc?: string;
1974
+ descId?: string;
1975
+ }>;
1976
+ "socket-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1977
+ title?: string;
1978
+ titleId?: string;
1979
+ desc?: string;
1980
+ descId?: string;
1981
+ }>;
1982
+ info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1983
+ title?: string;
1984
+ titleId?: string;
1985
+ desc?: string;
1986
+ descId?: string;
1987
+ }>;
1988
+ "toggle-right-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1989
+ title?: string;
1990
+ titleId?: string;
1991
+ desc?: string;
1992
+ descId?: string;
1993
+ }>;
1994
+ loader: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
1995
+ title?: string;
1996
+ titleId?: string;
1997
+ desc?: string;
1998
+ descId?: string;
1999
+ }>;
2000
+ topology: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2001
+ title?: string;
2002
+ titleId?: string;
2003
+ desc?: string;
2004
+ descId?: string;
2005
+ }>;
2006
+ "browser-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2007
+ title?: string;
2008
+ titleId?: string;
2009
+ desc?: string;
2010
+ descId?: string;
2011
+ }>;
2012
+ "flash-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2013
+ title?: string;
2014
+ titleId?: string;
2015
+ desc?: string;
2016
+ descId?: string;
2017
+ }>;
2018
+ "migrate-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2019
+ title?: string;
2020
+ titleId?: string;
2021
+ desc?: string;
2022
+ descId?: string;
2023
+ }>;
2024
+ "camera-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2025
+ title?: string;
2026
+ titleId?: string;
2027
+ desc?: string;
2028
+ descId?: string;
2029
+ }>;
2030
+ "person-done": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2031
+ title?: string;
2032
+ titleId?: string;
2033
+ desc?: string;
2034
+ descId?: string;
2035
+ }>;
2036
+ close: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2037
+ title?: string;
2038
+ titleId?: string;
2039
+ desc?: string;
2040
+ descId?: string;
2041
+ }>;
2042
+ people: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2043
+ title?: string;
2044
+ titleId?: string;
2045
+ desc?: string;
2046
+ descId?: string;
2047
+ }>;
2048
+ "clipboard-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2049
+ title?: string;
2050
+ titleId?: string;
2051
+ desc?: string;
2052
+ descId?: string;
2053
+ }>;
2054
+ encircle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2055
+ title?: string;
2056
+ titleId?: string;
2057
+ desc?: string;
2058
+ descId?: string;
2059
+ }>;
2060
+ "cloud-upload-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2061
+ title?: string;
2062
+ titleId?: string;
2063
+ desc?: string;
2064
+ descId?: string;
2065
+ }>;
2066
+ "key-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2067
+ title?: string;
2068
+ titleId?: string;
2069
+ desc?: string;
2070
+ descId?: string;
2071
+ }>;
2072
+ mic: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2073
+ title?: string;
2074
+ titleId?: string;
2075
+ desc?: string;
2076
+ descId?: string;
2077
+ }>;
2078
+ "to-bottom": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2079
+ title?: string;
2080
+ titleId?: string;
2081
+ desc?: string;
2082
+ descId?: string;
2083
+ }>;
2084
+ "person-admin-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2085
+ title?: string;
2086
+ titleId?: string;
2087
+ desc?: string;
2088
+ descId?: string;
2089
+ }>;
2090
+ copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2091
+ title?: string;
2092
+ titleId?: string;
2093
+ desc?: string;
2094
+ descId?: string;
2095
+ }>;
2096
+ "file-text-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2097
+ title?: string;
2098
+ titleId?: string;
2099
+ desc?: string;
2100
+ descId?: string;
2101
+ }>;
2102
+ "shopping-cart-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2103
+ title?: string;
2104
+ titleId?: string;
2105
+ desc?: string;
2106
+ descId?: string;
2107
+ }>;
2108
+ openeuler: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2109
+ title?: string;
2110
+ titleId?: string;
2111
+ desc?: string;
2112
+ descId?: string;
2113
+ }>;
2114
+ "chain-4-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2115
+ title?: string;
2116
+ titleId?: string;
2117
+ desc?: string;
2118
+ descId?: string;
2119
+ }>;
2120
+ "person-done-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2121
+ title?: string;
2122
+ titleId?: string;
2123
+ desc?: string;
2124
+ descId?: string;
2125
+ }>;
2126
+ "book-open-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2127
+ title?: string;
2128
+ titleId?: string;
2129
+ desc?: string;
2130
+ descId?: string;
2131
+ }>;
2132
+ refresh: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2133
+ title?: string;
2134
+ titleId?: string;
2135
+ desc?: string;
2136
+ descId?: string;
2137
+ }>;
2138
+ "ungroup-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2139
+ title?: string;
2140
+ titleId?: string;
2141
+ desc?: string;
2142
+ descId?: string;
2143
+ }>;
2144
+ "xml-hook": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2145
+ title?: string;
2146
+ titleId?: string;
2147
+ desc?: string;
2148
+ descId?: string;
2149
+ }>;
2150
+ text: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2151
+ title?: string;
2152
+ titleId?: string;
2153
+ desc?: string;
2154
+ descId?: string;
2155
+ }>;
2156
+ "toggle-left-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2157
+ title?: string;
2158
+ titleId?: string;
2159
+ desc?: string;
2160
+ descId?: string;
2161
+ }>;
2162
+ subset: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2163
+ title?: string;
2164
+ titleId?: string;
2165
+ desc?: string;
2166
+ descId?: string;
2167
+ }>;
2168
+ image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2169
+ title?: string;
2170
+ titleId?: string;
2171
+ desc?: string;
2172
+ descId?: string;
2173
+ }>;
2174
+ "network-card": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2175
+ title?: string;
2176
+ titleId?: string;
2177
+ desc?: string;
2178
+ descId?: string;
2179
+ }>;
2180
+ "thermometer-plus-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2181
+ title?: string;
2182
+ titleId?: string;
2183
+ desc?: string;
2184
+ descId?: string;
2185
+ }>;
2186
+ "phone-call-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2187
+ title?: string;
2188
+ titleId?: string;
2189
+ desc?: string;
2190
+ descId?: string;
2191
+ }>;
2192
+ scan: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2193
+ title?: string;
2194
+ titleId?: string;
2195
+ desc?: string;
2196
+ descId?: string;
2197
+ }>;
2198
+ navigation: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2199
+ title?: string;
2200
+ titleId?: string;
2201
+ desc?: string;
2202
+ descId?: string;
2203
+ }>;
2204
+ stablity: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2205
+ title?: string;
2206
+ titleId?: string;
2207
+ desc?: string;
2208
+ descId?: string;
2209
+ }>;
2210
+ "file-login": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2211
+ title?: string;
2212
+ titleId?: string;
2213
+ desc?: string;
2214
+ descId?: string;
2215
+ }>;
2216
+ "layers-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2217
+ title?: string;
2218
+ titleId?: string;
2219
+ desc?: string;
2220
+ descId?: string;
2221
+ }>;
2222
+ "source-group": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2223
+ title?: string;
2224
+ titleId?: string;
2225
+ desc?: string;
2226
+ descId?: string;
2227
+ }>;
2228
+ "network-port": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2229
+ title?: string;
2230
+ titleId?: string;
2231
+ desc?: string;
2232
+ descId?: string;
2233
+ }>;
2234
+ parameter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2235
+ title?: string;
2236
+ titleId?: string;
2237
+ desc?: string;
2238
+ descId?: string;
2239
+ }>;
2240
+ "color-picker": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2241
+ title?: string;
2242
+ titleId?: string;
2243
+ desc?: string;
2244
+ descId?: string;
2245
+ }>;
2246
+ "npm-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2247
+ title?: string;
2248
+ titleId?: string;
2249
+ desc?: string;
2250
+ descId?: string;
2251
+ }>;
2252
+ centos: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2253
+ title?: string;
2254
+ titleId?: string;
2255
+ desc?: string;
2256
+ descId?: string;
2257
+ }>;
2258
+ "hard-disk-image": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2259
+ title?: string;
2260
+ titleId?: string;
2261
+ desc?: string;
2262
+ descId?: string;
2263
+ }>;
2264
+ award: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2265
+ title?: string;
2266
+ titleId?: string;
2267
+ desc?: string;
2268
+ descId?: string;
2269
+ }>;
2270
+ "thermometer-plus": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2271
+ title?: string;
2272
+ titleId?: string;
2273
+ desc?: string;
2274
+ descId?: string;
2275
+ }>;
2276
+ "chain-4": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2277
+ title?: string;
2278
+ titleId?: string;
2279
+ desc?: string;
2280
+ descId?: string;
2281
+ }>;
2282
+ "arrow-circle-down-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2283
+ title?: string;
2284
+ titleId?: string;
2285
+ desc?: string;
2286
+ descId?: string;
2287
+ }>;
2288
+ percent: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2289
+ title?: string;
2290
+ titleId?: string;
2291
+ desc?: string;
2292
+ descId?: string;
2293
+ }>;
2294
+ square: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2295
+ title?: string;
2296
+ titleId?: string;
2297
+ desc?: string;
2298
+ descId?: string;
2299
+ }>;
2300
+ "moon-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2301
+ title?: string;
2302
+ titleId?: string;
2303
+ desc?: string;
2304
+ descId?: string;
2305
+ }>;
2306
+ "alarm-button": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2307
+ title?: string;
2308
+ titleId?: string;
2309
+ desc?: string;
2310
+ descId?: string;
2311
+ }>;
2312
+ "person-add": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2313
+ title?: string;
2314
+ titleId?: string;
2315
+ desc?: string;
2316
+ descId?: string;
2317
+ }>;
2318
+ "paper-plane": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2319
+ title?: string;
2320
+ titleId?: string;
2321
+ desc?: string;
2322
+ descId?: string;
2323
+ }>;
2324
+ ubuntu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2325
+ title?: string;
2326
+ titleId?: string;
2327
+ desc?: string;
2328
+ descId?: string;
2329
+ }>;
2330
+ "wrench-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2331
+ title?: string;
2332
+ titleId?: string;
2333
+ desc?: string;
2334
+ descId?: string;
2335
+ }>;
2336
+ "mic-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2337
+ title?: string;
2338
+ titleId?: string;
2339
+ desc?: string;
2340
+ descId?: string;
2341
+ }>;
2342
+ suse: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2343
+ title?: string;
2344
+ titleId?: string;
2345
+ desc?: string;
2346
+ descId?: string;
2347
+ }>;
2348
+ "heart-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2349
+ title?: string;
2350
+ titleId?: string;
2351
+ desc?: string;
2352
+ descId?: string;
2353
+ }>;
2354
+ sustain: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2355
+ title?: string;
2356
+ titleId?: string;
2357
+ desc?: string;
2358
+ descId?: string;
2359
+ }>;
2360
+ "chain-5": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2361
+ title?: string;
2362
+ titleId?: string;
2363
+ desc?: string;
2364
+ descId?: string;
2365
+ }>;
2366
+ bill: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2367
+ title?: string;
2368
+ titleId?: string;
2369
+ desc?: string;
2370
+ descId?: string;
2371
+ }>;
2372
+ "phone-call": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2373
+ title?: string;
2374
+ titleId?: string;
2375
+ desc?: string;
2376
+ descId?: string;
2377
+ }>;
2378
+ speaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2379
+ title?: string;
2380
+ titleId?: string;
2381
+ desc?: string;
2382
+ descId?: string;
2383
+ }>;
2384
+ "server-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2385
+ title?: string;
2386
+ titleId?: string;
2387
+ desc?: string;
2388
+ descId?: string;
2389
+ }>;
2390
+ "server-3-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2391
+ title?: string;
2392
+ titleId?: string;
2393
+ desc?: string;
2394
+ descId?: string;
2395
+ }>;
2396
+ "copy-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2397
+ title?: string;
2398
+ titleId?: string;
2399
+ desc?: string;
2400
+ descId?: string;
2401
+ }>;
2402
+ camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2403
+ title?: string;
2404
+ titleId?: string;
2405
+ desc?: string;
2406
+ descId?: string;
2407
+ }>;
2408
+ printer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2409
+ title?: string;
2410
+ titleId?: string;
2411
+ desc?: string;
2412
+ descId?: string;
2413
+ }>;
2414
+ "person-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2415
+ title?: string;
2416
+ titleId?: string;
2417
+ desc?: string;
2418
+ descId?: string;
2419
+ }>;
2420
+ redo: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2421
+ title?: string;
2422
+ titleId?: string;
2423
+ desc?: string;
2424
+ descId?: string;
2425
+ }>;
2426
+ "person-remove-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2427
+ title?: string;
2428
+ titleId?: string;
2429
+ desc?: string;
2430
+ descId?: string;
2431
+ }>;
2432
+ routers: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2433
+ title?: string;
2434
+ titleId?: string;
2435
+ desc?: string;
2436
+ descId?: string;
2437
+ }>;
2438
+ llmops: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2439
+ title?: string;
2440
+ titleId?: string;
2441
+ desc?: string;
2442
+ descId?: string;
2443
+ }>;
2444
+ "server-1": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2445
+ title?: string;
2446
+ titleId?: string;
2447
+ desc?: string;
2448
+ descId?: string;
2449
+ }>;
2450
+ "gpu-offering-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2451
+ title?: string;
2452
+ titleId?: string;
2453
+ desc?: string;
2454
+ descId?: string;
2455
+ }>;
2456
+ disk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2457
+ title?: string;
2458
+ titleId?: string;
2459
+ desc?: string;
2460
+ descId?: string;
2461
+ }>;
2462
+ "arrow-circle-up-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2463
+ title?: string;
2464
+ titleId?: string;
2465
+ desc?: string;
2466
+ descId?: string;
2467
+ }>;
2468
+ "arrow-down-outline": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2469
+ title?: string;
2470
+ titleId?: string;
2471
+ desc?: string;
2472
+ descId?: string;
2473
+ }>;
2474
+ vcenter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2475
+ title?: string;
2476
+ titleId?: string;
2477
+ desc?: string;
2478
+ descId?: string;
2479
+ }>;
2480
+ "shield-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2481
+ title?: string;
2482
+ titleId?: string;
2483
+ desc?: string;
2484
+ descId?: string;
2485
+ }>;
2486
+ trash: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2487
+ title?: string;
2488
+ titleId?: string;
2489
+ desc?: string;
2490
+ descId?: string;
2491
+ }>;
2492
+ "attach-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2493
+ title?: string;
2494
+ titleId?: string;
2495
+ desc?: string;
2496
+ descId?: string;
2497
+ }>;
2498
+ "wifi-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2499
+ title?: string;
2500
+ titleId?: string;
2501
+ desc?: string;
2502
+ descId?: string;
2503
+ }>;
2504
+ ungroup: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2505
+ title?: string;
2506
+ titleId?: string;
2507
+ desc?: string;
2508
+ descId?: string;
2509
+ }>;
2510
+ "corner-left-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2511
+ title?: string;
2512
+ titleId?: string;
2513
+ desc?: string;
2514
+ descId?: string;
2515
+ }>;
2516
+ "lock-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2517
+ title?: string;
2518
+ titleId?: string;
2519
+ desc?: string;
2520
+ descId?: string;
2521
+ }>;
2522
+ memory: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2523
+ title?: string;
2524
+ titleId?: string;
2525
+ desc?: string;
2526
+ descId?: string;
2527
+ }>;
2528
+ "shield-1": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2529
+ title?: string;
2530
+ titleId?: string;
2531
+ desc?: string;
2532
+ descId?: string;
2533
+ }>;
2534
+ "deployment-list": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2535
+ title?: string;
2536
+ titleId?: string;
2537
+ desc?: string;
2538
+ descId?: string;
2539
+ }>;
2540
+ "volume-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2541
+ title?: string;
2542
+ titleId?: string;
2543
+ desc?: string;
2544
+ descId?: string;
2545
+ }>;
2546
+ fedora: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2547
+ title?: string;
2548
+ titleId?: string;
2549
+ desc?: string;
2550
+ descId?: string;
2551
+ }>;
2552
+ "phone-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2553
+ title?: string;
2554
+ titleId?: string;
2555
+ desc?: string;
2556
+ descId?: string;
2557
+ }>;
2558
+ "console-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2559
+ title?: string;
2560
+ titleId?: string;
2561
+ desc?: string;
2562
+ descId?: string;
2563
+ }>;
2564
+ star: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2565
+ title?: string;
2566
+ titleId?: string;
2567
+ desc?: string;
2568
+ descId?: string;
2569
+ }>;
2570
+ "thermometer-minus": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2571
+ title?: string;
2572
+ titleId?: string;
2573
+ desc?: string;
2574
+ descId?: string;
2575
+ }>;
2576
+ "user-registration-term-bg": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2577
+ title?: string;
2578
+ titleId?: string;
2579
+ desc?: string;
2580
+ descId?: string;
2581
+ }>;
2582
+ cd: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2583
+ title?: string;
2584
+ titleId?: string;
2585
+ desc?: string;
2586
+ descId?: string;
2587
+ }>;
2588
+ sun: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2589
+ title?: string;
2590
+ titleId?: string;
2591
+ desc?: string;
2592
+ descId?: string;
2593
+ }>;
2594
+ wrench: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2595
+ title?: string;
2596
+ titleId?: string;
2597
+ desc?: string;
2598
+ descId?: string;
2599
+ }>;
2600
+ "history-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2601
+ title?: string;
2602
+ titleId?: string;
2603
+ desc?: string;
2604
+ descId?: string;
2605
+ }>;
2606
+ "arrow-circle-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2607
+ title?: string;
2608
+ titleId?: string;
2609
+ desc?: string;
2610
+ descId?: string;
2611
+ }>;
2612
+ "clock-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2613
+ title?: string;
2614
+ titleId?: string;
2615
+ desc?: string;
2616
+ descId?: string;
2617
+ }>;
2618
+ "message-square": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2619
+ title?: string;
2620
+ titleId?: string;
2621
+ desc?: string;
2622
+ descId?: string;
2623
+ }>;
2624
+ solaris: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2625
+ title?: string;
2626
+ titleId?: string;
2627
+ desc?: string;
2628
+ descId?: string;
2629
+ }>;
2630
+ edit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2631
+ title?: string;
2632
+ titleId?: string;
2633
+ desc?: string;
2634
+ descId?: string;
2635
+ }>;
2636
+ redhat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2637
+ title?: string;
2638
+ titleId?: string;
2639
+ desc?: string;
2640
+ descId?: string;
2641
+ }>;
2642
+ browser: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2643
+ title?: string;
2644
+ titleId?: string;
2645
+ desc?: string;
2646
+ descId?: string;
2647
+ }>;
2648
+ "server-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2649
+ title?: string;
2650
+ titleId?: string;
2651
+ desc?: string;
2652
+ descId?: string;
2653
+ }>;
2654
+ "alarm-button-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2655
+ title?: string;
2656
+ titleId?: string;
2657
+ desc?: string;
2658
+ descId?: string;
2659
+ }>;
2660
+ "rewind-left-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2661
+ title?: string;
2662
+ titleId?: string;
2663
+ desc?: string;
2664
+ descId?: string;
2665
+ }>;
2666
+ "cloud-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2667
+ title?: string;
2668
+ titleId?: string;
2669
+ desc?: string;
2670
+ descId?: string;
2671
+ }>;
2672
+ "settings-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2673
+ title?: string;
2674
+ titleId?: string;
2675
+ desc?: string;
2676
+ descId?: string;
2677
+ }>;
2678
+ windows: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2679
+ title?: string;
2680
+ titleId?: string;
2681
+ desc?: string;
2682
+ descId?: string;
2683
+ }>;
2684
+ uos: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2685
+ title?: string;
2686
+ titleId?: string;
2687
+ desc?: string;
2688
+ descId?: string;
2689
+ }>;
2690
+ source: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2691
+ title?: string;
2692
+ titleId?: string;
2693
+ desc?: string;
2694
+ descId?: string;
2695
+ }>;
2696
+ "chain-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2697
+ title?: string;
2698
+ titleId?: string;
2699
+ desc?: string;
2700
+ descId?: string;
2701
+ }>;
2702
+ locate: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2703
+ title?: string;
2704
+ titleId?: string;
2705
+ desc?: string;
2706
+ descId?: string;
2707
+ }>;
2708
+ "fold-1": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2709
+ title?: string;
2710
+ titleId?: string;
2711
+ desc?: string;
2712
+ descId?: string;
2713
+ }>;
2714
+ "checkmark-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2715
+ title?: string;
2716
+ titleId?: string;
2717
+ desc?: string;
2718
+ descId?: string;
2719
+ }>;
2720
+ "plus-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2721
+ title?: string;
2722
+ titleId?: string;
2723
+ desc?: string;
2724
+ descId?: string;
2725
+ }>;
2726
+ vessel: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2727
+ title?: string;
2728
+ titleId?: string;
2729
+ desc?: string;
2730
+ descId?: string;
2731
+ }>;
2732
+ unlock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2733
+ title?: string;
2734
+ titleId?: string;
2735
+ desc?: string;
2736
+ descId?: string;
2737
+ }>;
2738
+ "to-top": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2739
+ title?: string;
2740
+ titleId?: string;
2741
+ desc?: string;
2742
+ descId?: string;
2743
+ }>;
2744
+ "headphones-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2745
+ title?: string;
2746
+ titleId?: string;
2747
+ desc?: string;
2748
+ descId?: string;
2749
+ }>;
2750
+ compass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2751
+ title?: string;
2752
+ titleId?: string;
2753
+ desc?: string;
2754
+ descId?: string;
2755
+ }>;
2756
+ "chain-3": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2757
+ title?: string;
2758
+ titleId?: string;
2759
+ desc?: string;
2760
+ descId?: string;
2761
+ }>;
2762
+ beta: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2763
+ title?: string;
2764
+ titleId?: string;
2765
+ desc?: string;
2766
+ descId?: string;
2767
+ }>;
2768
+ "pricetag-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2769
+ title?: string;
2770
+ titleId?: string;
2771
+ desc?: string;
2772
+ descId?: string;
2773
+ }>;
2774
+ knife: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2775
+ title?: string;
2776
+ titleId?: string;
2777
+ desc?: string;
2778
+ descId?: string;
2779
+ }>;
2780
+ "plus-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2781
+ title?: string;
2782
+ titleId?: string;
2783
+ desc?: string;
2784
+ descId?: string;
2785
+ }>;
2786
+ "diagonal-arrow-left-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2787
+ title?: string;
2788
+ titleId?: string;
2789
+ desc?: string;
2790
+ descId?: string;
2791
+ }>;
2792
+ "radio-button-off-disabled": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2793
+ title?: string;
2794
+ titleId?: string;
2795
+ desc?: string;
2796
+ descId?: string;
2797
+ }>;
2798
+ "rewind-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2799
+ title?: string;
2800
+ titleId?: string;
2801
+ desc?: string;
2802
+ descId?: string;
2803
+ }>;
2804
+ "credit-card": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2805
+ title?: string;
2806
+ titleId?: string;
2807
+ desc?: string;
2808
+ descId?: string;
2809
+ }>;
2810
+ "server-3": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2811
+ title?: string;
2812
+ titleId?: string;
2813
+ desc?: string;
2814
+ descId?: string;
2815
+ }>;
2816
+ analysis: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2817
+ title?: string;
2818
+ titleId?: string;
2819
+ desc?: string;
2820
+ descId?: string;
2821
+ }>;
2822
+ select: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2823
+ title?: string;
2824
+ titleId?: string;
2825
+ desc?: string;
2826
+ descId?: string;
2827
+ }>;
2828
+ "source-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2829
+ title?: string;
2830
+ titleId?: string;
2831
+ desc?: string;
2832
+ descId?: string;
2833
+ }>;
2834
+ "person-remove": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2835
+ title?: string;
2836
+ titleId?: string;
2837
+ desc?: string;
2838
+ descId?: string;
2839
+ }>;
2840
+ "encircle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2841
+ title?: string;
2842
+ titleId?: string;
2843
+ desc?: string;
2844
+ descId?: string;
2845
+ }>;
2846
+ height: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2847
+ title?: string;
2848
+ titleId?: string;
2849
+ desc?: string;
2850
+ descId?: string;
2851
+ }>;
2852
+ "storage-3": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2853
+ title?: string;
2854
+ titleId?: string;
2855
+ desc?: string;
2856
+ descId?: string;
2857
+ }>;
2858
+ "weight-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2859
+ title?: string;
2860
+ titleId?: string;
2861
+ desc?: string;
2862
+ descId?: string;
2863
+ }>;
2864
+ "skip-back": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2865
+ title?: string;
2866
+ titleId?: string;
2867
+ desc?: string;
2868
+ descId?: string;
2869
+ }>;
2870
+ "disk-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2871
+ title?: string;
2872
+ titleId?: string;
2873
+ desc?: string;
2874
+ descId?: string;
2875
+ }>;
2876
+ linked: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2877
+ title?: string;
2878
+ titleId?: string;
2879
+ desc?: string;
2880
+ descId?: string;
2881
+ }>;
2882
+ clock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2883
+ title?: string;
2884
+ titleId?: string;
2885
+ desc?: string;
2886
+ descId?: string;
2887
+ }>;
2888
+ router: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2889
+ title?: string;
2890
+ titleId?: string;
2891
+ desc?: string;
2892
+ descId?: string;
2893
+ }>;
2894
+ "disk-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2895
+ title?: string;
2896
+ titleId?: string;
2897
+ desc?: string;
2898
+ descId?: string;
2899
+ }>;
2900
+ phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2901
+ title?: string;
2902
+ titleId?: string;
2903
+ desc?: string;
2904
+ descId?: string;
2905
+ }>;
2906
+ "edit-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2907
+ title?: string;
2908
+ titleId?: string;
2909
+ desc?: string;
2910
+ descId?: string;
2911
+ }>;
2912
+ "email-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2913
+ title?: string;
2914
+ titleId?: string;
2915
+ desc?: string;
2916
+ descId?: string;
2917
+ }>;
2918
+ "question-mark": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2919
+ title?: string;
2920
+ titleId?: string;
2921
+ desc?: string;
2922
+ descId?: string;
2923
+ }>;
2924
+ success: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2925
+ title?: string;
2926
+ titleId?: string;
2927
+ desc?: string;
2928
+ descId?: string;
2929
+ }>;
2930
+ "droplet-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2931
+ title?: string;
2932
+ titleId?: string;
2933
+ desc?: string;
2934
+ descId?: string;
2935
+ }>;
2936
+ pricetag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2937
+ title?: string;
2938
+ titleId?: string;
2939
+ desc?: string;
2940
+ descId?: string;
2941
+ }>;
2942
+ "navigation-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2943
+ title?: string;
2944
+ titleId?: string;
2945
+ desc?: string;
2946
+ descId?: string;
2947
+ }>;
2948
+ "options-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2949
+ title?: string;
2950
+ titleId?: string;
2951
+ desc?: string;
2952
+ descId?: string;
2953
+ }>;
2954
+ sync: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2955
+ title?: string;
2956
+ titleId?: string;
2957
+ desc?: string;
2958
+ descId?: string;
2959
+ }>;
2960
+ "node-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2961
+ title?: string;
2962
+ titleId?: string;
2963
+ desc?: string;
2964
+ descId?: string;
2965
+ }>;
2966
+ "volume-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2967
+ title?: string;
2968
+ titleId?: string;
2969
+ desc?: string;
2970
+ descId?: string;
2971
+ }>;
2972
+ "volume-down-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2973
+ title?: string;
2974
+ titleId?: string;
2975
+ desc?: string;
2976
+ descId?: string;
2977
+ }>;
2978
+ eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2979
+ title?: string;
2980
+ titleId?: string;
2981
+ desc?: string;
2982
+ descId?: string;
2983
+ }>;
2984
+ "monitor-offering-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2985
+ title?: string;
2986
+ titleId?: string;
2987
+ desc?: string;
2988
+ descId?: string;
2989
+ }>;
2990
+ "arrow-right-outline": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2991
+ title?: string;
2992
+ titleId?: string;
2993
+ desc?: string;
2994
+ descId?: string;
2995
+ }>;
2996
+ "circle-undo-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
2997
+ title?: string;
2998
+ titleId?: string;
2999
+ desc?: string;
3000
+ descId?: string;
3001
+ }>;
3002
+ "person-circle-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3003
+ title?: string;
3004
+ titleId?: string;
3005
+ desc?: string;
3006
+ descId?: string;
3007
+ }>;
3008
+ "menu-arrow-right": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3009
+ title?: string;
3010
+ titleId?: string;
3011
+ desc?: string;
3012
+ descId?: string;
3013
+ }>;
3014
+ "phone-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3015
+ title?: string;
3016
+ titleId?: string;
3017
+ desc?: string;
3018
+ descId?: string;
3019
+ }>;
3020
+ "flash-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3021
+ title?: string;
3022
+ titleId?: string;
3023
+ desc?: string;
3024
+ descId?: string;
3025
+ }>;
3026
+ "disk-offering-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3027
+ title?: string;
3028
+ titleId?: string;
3029
+ desc?: string;
3030
+ descId?: string;
3031
+ }>;
3032
+ options: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3033
+ title?: string;
3034
+ titleId?: string;
3035
+ desc?: string;
3036
+ descId?: string;
3037
+ }>;
3038
+ dswitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3039
+ title?: string;
3040
+ titleId?: string;
3041
+ desc?: string;
3042
+ descId?: string;
3043
+ }>;
3044
+ restore: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3045
+ title?: string;
3046
+ titleId?: string;
3047
+ desc?: string;
3048
+ descId?: string;
3049
+ }>;
3050
+ gift: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3051
+ title?: string;
3052
+ titleId?: string;
3053
+ desc?: string;
3054
+ descId?: string;
3055
+ }>;
3056
+ "calendar-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3057
+ title?: string;
3058
+ titleId?: string;
3059
+ desc?: string;
3060
+ descId?: string;
3061
+ }>;
3062
+ wall: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3063
+ title?: string;
3064
+ titleId?: string;
3065
+ desc?: string;
3066
+ descId?: string;
3067
+ }>;
3068
+ "external-link": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3069
+ title?: string;
3070
+ titleId?: string;
3071
+ desc?: string;
3072
+ descId?: string;
3073
+ }>;
3074
+ car: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3075
+ title?: string;
3076
+ titleId?: string;
3077
+ desc?: string;
3078
+ descId?: string;
3079
+ }>;
3080
+ "more-vertical": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3081
+ title?: string;
3082
+ titleId?: string;
3083
+ desc?: string;
3084
+ descId?: string;
3085
+ }>;
3086
+ "node-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3087
+ title?: string;
3088
+ titleId?: string;
3089
+ desc?: string;
3090
+ descId?: string;
3091
+ }>;
3092
+ "question-mark-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3093
+ title?: string;
3094
+ titleId?: string;
3095
+ desc?: string;
3096
+ descId?: string;
3097
+ }>;
3098
+ "storage-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3099
+ title?: string;
3100
+ titleId?: string;
3101
+ desc?: string;
3102
+ descId?: string;
3103
+ }>;
3104
+ "folder-add-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3105
+ title?: string;
3106
+ titleId?: string;
3107
+ desc?: string;
3108
+ descId?: string;
3109
+ }>;
3110
+ arrowhead: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3111
+ title?: string;
3112
+ titleId?: string;
3113
+ desc?: string;
3114
+ descId?: string;
3115
+ }>;
3116
+ "mic-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3117
+ title?: string;
3118
+ titleId?: string;
3119
+ desc?: string;
3120
+ descId?: string;
3121
+ }>;
3122
+ "router-offering-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3123
+ title?: string;
3124
+ titleId?: string;
3125
+ desc?: string;
3126
+ descId?: string;
3127
+ }>;
3128
+ share: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3129
+ title?: string;
3130
+ titleId?: string;
3131
+ desc?: string;
3132
+ descId?: string;
3133
+ }>;
3134
+ "redo-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3135
+ title?: string;
3136
+ titleId?: string;
3137
+ desc?: string;
3138
+ descId?: string;
3139
+ }>;
3140
+ tags: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3141
+ title?: string;
3142
+ titleId?: string;
3143
+ desc?: string;
3144
+ descId?: string;
3145
+ }>;
3146
+ "expand-3": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3147
+ title?: string;
3148
+ titleId?: string;
3149
+ desc?: string;
3150
+ descId?: string;
3151
+ }>;
3152
+ "arrow-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3153
+ title?: string;
3154
+ titleId?: string;
3155
+ desc?: string;
3156
+ descId?: string;
3157
+ }>;
3158
+ convergence: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3159
+ title?: string;
3160
+ titleId?: string;
3161
+ desc?: string;
3162
+ descId?: string;
3163
+ }>;
3164
+ "folder-add": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3165
+ title?: string;
3166
+ titleId?: string;
3167
+ desc?: string;
3168
+ descId?: string;
3169
+ }>;
3170
+ "bell-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3171
+ title?: string;
3172
+ titleId?: string;
3173
+ desc?: string;
3174
+ descId?: string;
3175
+ }>;
3176
+ "person-delete": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3177
+ title?: string;
3178
+ titleId?: string;
3179
+ desc?: string;
3180
+ descId?: string;
3181
+ }>;
3182
+ sort: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3183
+ title?: string;
3184
+ titleId?: string;
3185
+ desc?: string;
3186
+ descId?: string;
3187
+ }>;
3188
+ storage: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3189
+ title?: string;
3190
+ titleId?: string;
3191
+ desc?: string;
3192
+ descId?: string;
3193
+ }>;
3194
+ shake: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3195
+ title?: string;
3196
+ titleId?: string;
3197
+ desc?: string;
3198
+ descId?: string;
3199
+ }>;
3200
+ "arrow-ios-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3201
+ title?: string;
3202
+ titleId?: string;
3203
+ desc?: string;
3204
+ descId?: string;
3205
+ }>;
3206
+ "checkmark-circle-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3207
+ title?: string;
3208
+ titleId?: string;
3209
+ desc?: string;
3210
+ descId?: string;
3211
+ }>;
3212
+ "person-delete-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3213
+ title?: string;
3214
+ titleId?: string;
3215
+ desc?: string;
3216
+ descId?: string;
3217
+ }>;
3218
+ undo: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3219
+ title?: string;
3220
+ titleId?: string;
3221
+ desc?: string;
3222
+ descId?: string;
3223
+ }>;
3224
+ video: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3225
+ title?: string;
3226
+ titleId?: string;
3227
+ desc?: string;
3228
+ descId?: string;
3229
+ }>;
3230
+ attach: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3231
+ title?: string;
3232
+ titleId?: string;
3233
+ desc?: string;
3234
+ descId?: string;
3235
+ }>;
3236
+ tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3237
+ title?: string;
3238
+ titleId?: string;
3239
+ desc?: string;
3240
+ descId?: string;
3241
+ }>;
3242
+ activity: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3243
+ title?: string;
3244
+ titleId?: string;
3245
+ desc?: string;
3246
+ descId?: string;
3247
+ }>;
3248
+ "flag-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3249
+ title?: string;
3250
+ titleId?: string;
3251
+ desc?: string;
3252
+ descId?: string;
3253
+ }>;
3254
+ "file-remove": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3255
+ title?: string;
3256
+ titleId?: string;
3257
+ desc?: string;
3258
+ descId?: string;
3259
+ }>;
3260
+ "browser-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3261
+ title?: string;
3262
+ titleId?: string;
3263
+ desc?: string;
3264
+ descId?: string;
3265
+ }>;
3266
+ italic: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3267
+ title?: string;
3268
+ titleId?: string;
3269
+ desc?: string;
3270
+ descId?: string;
3271
+ }>;
3272
+ "person-add-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3273
+ title?: string;
3274
+ titleId?: string;
3275
+ desc?: string;
3276
+ descId?: string;
3277
+ }>;
3278
+ executing: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3279
+ title?: string;
3280
+ titleId?: string;
3281
+ desc?: string;
3282
+ descId?: string;
3283
+ }>;
3284
+ "plus-square-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3285
+ title?: string;
3286
+ titleId?: string;
3287
+ desc?: string;
3288
+ descId?: string;
3289
+ }>;
3290
+ calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3291
+ title?: string;
3292
+ titleId?: string;
3293
+ desc?: string;
3294
+ descId?: string;
3295
+ }>;
3296
+ "bell-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3297
+ title?: string;
3298
+ titleId?: string;
3299
+ desc?: string;
3300
+ descId?: string;
3301
+ }>;
3302
+ globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3303
+ title?: string;
3304
+ titleId?: string;
3305
+ desc?: string;
3306
+ descId?: string;
3307
+ }>;
3308
+ "arrow-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3309
+ title?: string;
3310
+ titleId?: string;
3311
+ desc?: string;
3312
+ descId?: string;
3313
+ }>;
3314
+ "minus-circle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3315
+ title?: string;
3316
+ titleId?: string;
3317
+ desc?: string;
3318
+ descId?: string;
3319
+ }>;
3320
+ data: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3321
+ title?: string;
3322
+ titleId?: string;
3323
+ desc?: string;
3324
+ descId?: string;
3325
+ }>;
3326
+ "music-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3327
+ title?: string;
3328
+ titleId?: string;
3329
+ desc?: string;
3330
+ descId?: string;
3331
+ }>;
3332
+ debian: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3333
+ title?: string;
3334
+ titleId?: string;
3335
+ desc?: string;
3336
+ descId?: string;
3337
+ }>;
3338
+ "credit-card-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3339
+ title?: string;
3340
+ titleId?: string;
3341
+ desc?: string;
3342
+ descId?: string;
3343
+ }>;
3344
+ "video-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3345
+ title?: string;
3346
+ titleId?: string;
3347
+ desc?: string;
3348
+ descId?: string;
3349
+ }>;
3350
+ "droplet-off-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3351
+ title?: string;
3352
+ titleId?: string;
3353
+ desc?: string;
3354
+ descId?: string;
3355
+ }>;
3356
+ "bar-chart-2-invert": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3357
+ title?: string;
3358
+ titleId?: string;
3359
+ desc?: string;
3360
+ descId?: string;
3361
+ }>;
3362
+ "editor-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3363
+ title?: string;
3364
+ titleId?: string;
3365
+ desc?: string;
3366
+ descId?: string;
3367
+ }>;
3368
+ "close-square": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3369
+ title?: string;
3370
+ titleId?: string;
3371
+ desc?: string;
3372
+ descId?: string;
3373
+ }>;
3374
+ "monitor-offering": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3375
+ title?: string;
3376
+ titleId?: string;
3377
+ desc?: string;
3378
+ descId?: string;
3379
+ }>;
3380
+ "hastrategic-zsv": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3381
+ title?: string;
3382
+ titleId?: string;
3383
+ desc?: string;
3384
+ descId?: string;
3385
+ }>;
3386
+ cloud: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3387
+ title?: string;
3388
+ titleId?: string;
3389
+ desc?: string;
3390
+ descId?: string;
3391
+ }>;
3392
+ shuffle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3393
+ title?: string;
3394
+ titleId?: string;
3395
+ desc?: string;
3396
+ descId?: string;
3397
+ }>;
3398
+ error: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3399
+ title?: string;
3400
+ titleId?: string;
3401
+ desc?: string;
3402
+ descId?: string;
3403
+ }>;
3404
+ "group-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3405
+ title?: string;
3406
+ titleId?: string;
3407
+ desc?: string;
3408
+ descId?: string;
3409
+ }>;
3410
+ "subset-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3411
+ title?: string;
3412
+ titleId?: string;
3413
+ desc?: string;
3414
+ descId?: string;
3415
+ }>;
3416
+ "rewind-right-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3417
+ title?: string;
3418
+ titleId?: string;
3419
+ desc?: string;
3420
+ descId?: string;
3421
+ }>;
3422
+ "diagonal-arrow-left-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3423
+ title?: string;
3424
+ titleId?: string;
3425
+ desc?: string;
3426
+ descId?: string;
3427
+ }>;
3428
+ "diagonal-arrow-right-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3429
+ title?: string;
3430
+ titleId?: string;
3431
+ desc?: string;
3432
+ descId?: string;
3433
+ }>;
3434
+ upload: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3435
+ title?: string;
3436
+ titleId?: string;
3437
+ desc?: string;
3438
+ descId?: string;
3439
+ }>;
3440
+ "trending-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3441
+ title?: string;
3442
+ titleId?: string;
3443
+ desc?: string;
3444
+ descId?: string;
3445
+ }>;
3446
+ "console-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3447
+ title?: string;
3448
+ titleId?: string;
3449
+ desc?: string;
3450
+ descId?: string;
3451
+ }>;
3452
+ "archive-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3453
+ title?: string;
3454
+ titleId?: string;
3455
+ desc?: string;
3456
+ descId?: string;
3457
+ }>;
3458
+ console: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3459
+ title?: string;
3460
+ titleId?: string;
3461
+ desc?: string;
3462
+ descId?: string;
3463
+ }>;
3464
+ "cloud-download-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3465
+ title?: string;
3466
+ titleId?: string;
3467
+ desc?: string;
3468
+ descId?: string;
3469
+ }>;
3470
+ "log-collect": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3471
+ title?: string;
3472
+ titleId?: string;
3473
+ desc?: string;
3474
+ descId?: string;
3475
+ }>;
3476
+ hastrategic: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3477
+ title?: string;
3478
+ titleId?: string;
3479
+ desc?: string;
3480
+ descId?: string;
3481
+ }>;
3482
+ "mic-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3483
+ title?: string;
3484
+ titleId?: string;
3485
+ desc?: string;
3486
+ descId?: string;
3487
+ }>;
3488
+ "arrowhead-down": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3489
+ title?: string;
3490
+ titleId?: string;
3491
+ desc?: string;
3492
+ descId?: string;
3493
+ }>;
3494
+ flip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3495
+ title?: string;
3496
+ titleId?: string;
3497
+ desc?: string;
3498
+ descId?: string;
3499
+ }>;
3500
+ distributedstorage: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3501
+ title?: string;
3502
+ titleId?: string;
3503
+ desc?: string;
3504
+ descId?: string;
3505
+ }>;
3506
+ bookmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3507
+ title?: string;
3508
+ titleId?: string;
3509
+ desc?: string;
3510
+ descId?: string;
3511
+ }>;
3512
+ "routers-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3513
+ title?: string;
3514
+ titleId?: string;
3515
+ desc?: string;
3516
+ descId?: string;
3517
+ }>;
3518
+ "backup-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3519
+ title?: string;
3520
+ titleId?: string;
3521
+ desc?: string;
3522
+ descId?: string;
3523
+ }>;
3524
+ "alert-triangle": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3525
+ title?: string;
3526
+ titleId?: string;
3527
+ desc?: string;
3528
+ descId?: string;
3529
+ }>;
3530
+ version: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3531
+ title?: string;
3532
+ titleId?: string;
3533
+ desc?: string;
3534
+ descId?: string;
3535
+ }>;
3536
+ socket: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3537
+ title?: string;
3538
+ titleId?: string;
3539
+ desc?: string;
3540
+ descId?: string;
3541
+ }>;
3542
+ "disk-offering": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3543
+ title?: string;
3544
+ titleId?: string;
3545
+ desc?: string;
3546
+ descId?: string;
3547
+ }>;
3548
+ "film-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3549
+ title?: string;
3550
+ titleId?: string;
3551
+ desc?: string;
3552
+ descId?: string;
3553
+ }>;
3554
+ clean: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3555
+ title?: string;
3556
+ titleId?: string;
3557
+ desc?: string;
3558
+ descId?: string;
3559
+ }>;
3560
+ "shield-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3561
+ title?: string;
3562
+ titleId?: string;
3563
+ desc?: string;
3564
+ descId?: string;
3565
+ }>;
3566
+ "brush-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3567
+ title?: string;
3568
+ titleId?: string;
3569
+ desc?: string;
3570
+ descId?: string;
3571
+ }>;
3572
+ "tv-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3573
+ title?: string;
3574
+ titleId?: string;
3575
+ desc?: string;
3576
+ descId?: string;
3577
+ }>;
3578
+ "layout-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3579
+ title?: string;
3580
+ titleId?: string;
3581
+ desc?: string;
3582
+ descId?: string;
3583
+ }>;
3584
+ "layout-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3585
+ title?: string;
3586
+ titleId?: string;
3587
+ desc?: string;
3588
+ descId?: string;
3589
+ }>;
3590
+ "cloud-download": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3591
+ title?: string;
3592
+ titleId?: string;
3593
+ desc?: string;
3594
+ descId?: string;
3595
+ }>;
3596
+ "chain-3-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3597
+ title?: string;
3598
+ titleId?: string;
3599
+ desc?: string;
3600
+ descId?: string;
3601
+ }>;
3602
+ "chain-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3603
+ title?: string;
3604
+ titleId?: string;
3605
+ desc?: string;
3606
+ descId?: string;
3607
+ }>;
3608
+ "bulb-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3609
+ title?: string;
3610
+ titleId?: string;
3611
+ desc?: string;
3612
+ descId?: string;
3613
+ }>;
3614
+ "by-group": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3615
+ title?: string;
3616
+ titleId?: string;
3617
+ desc?: string;
3618
+ descId?: string;
3619
+ }>;
3620
+ "volume-up-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3621
+ title?: string;
3622
+ titleId?: string;
3623
+ desc?: string;
3624
+ descId?: string;
3625
+ }>;
3626
+ menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3627
+ title?: string;
3628
+ titleId?: string;
3629
+ desc?: string;
3630
+ descId?: string;
3631
+ }>;
3632
+ "image-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3633
+ title?: string;
3634
+ titleId?: string;
3635
+ desc?: string;
3636
+ descId?: string;
3637
+ }>;
3638
+ "monitor-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3639
+ title?: string;
3640
+ titleId?: string;
3641
+ desc?: string;
3642
+ descId?: string;
3643
+ }>;
3644
+ backspace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3645
+ title?: string;
3646
+ titleId?: string;
3647
+ desc?: string;
3648
+ descId?: string;
3649
+ }>;
3650
+ "storage-4": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3651
+ title?: string;
3652
+ titleId?: string;
3653
+ desc?: string;
3654
+ descId?: string;
3655
+ }>;
3656
+ "radio-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3657
+ title?: string;
3658
+ titleId?: string;
3659
+ desc?: string;
3660
+ descId?: string;
3661
+ }>;
3662
+ "cube-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3663
+ title?: string;
3664
+ titleId?: string;
3665
+ desc?: string;
3666
+ descId?: string;
3667
+ }>;
3668
+ "shopping-cart": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3669
+ title?: string;
3670
+ titleId?: string;
3671
+ desc?: string;
3672
+ descId?: string;
3673
+ }>;
3674
+ "hard-drives": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3675
+ title?: string;
3676
+ titleId?: string;
3677
+ desc?: string;
3678
+ descId?: string;
3679
+ }>;
3680
+ "code-download": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3681
+ title?: string;
3682
+ titleId?: string;
3683
+ desc?: string;
3684
+ descId?: string;
3685
+ }>;
3686
+ "undo-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3687
+ title?: string;
3688
+ titleId?: string;
3689
+ desc?: string;
3690
+ descId?: string;
3691
+ }>;
3692
+ building: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3693
+ title?: string;
3694
+ titleId?: string;
3695
+ desc?: string;
3696
+ descId?: string;
3697
+ }>;
3698
+ "flash-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3699
+ title?: string;
3700
+ titleId?: string;
3701
+ desc?: string;
3702
+ descId?: string;
3703
+ }>;
3704
+ "browser-2-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3705
+ title?: string;
3706
+ titleId?: string;
3707
+ desc?: string;
3708
+ descId?: string;
3709
+ }>;
3710
+ history: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3711
+ title?: string;
3712
+ titleId?: string;
3713
+ desc?: string;
3714
+ descId?: string;
3715
+ }>;
3716
+ folder: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3717
+ title?: string;
3718
+ titleId?: string;
3719
+ desc?: string;
3720
+ descId?: string;
3721
+ }>;
3722
+ alarm: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3723
+ title?: string;
3724
+ titleId?: string;
3725
+ desc?: string;
3726
+ descId?: string;
3727
+ }>;
3728
+ "file-add-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3729
+ title?: string;
3730
+ titleId?: string;
3731
+ desc?: string;
3732
+ descId?: string;
3733
+ }>;
3734
+ node: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3735
+ title?: string;
3736
+ titleId?: string;
3737
+ desc?: string;
3738
+ descId?: string;
3739
+ }>;
3740
+ "corner-down-left": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3741
+ title?: string;
3742
+ titleId?: string;
3743
+ desc?: string;
3744
+ descId?: string;
3745
+ }>;
3746
+ snmp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3747
+ title?: string;
3748
+ titleId?: string;
3749
+ desc?: string;
3750
+ descId?: string;
3751
+ }>;
3752
+ timer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3753
+ title?: string;
3754
+ titleId?: string;
3755
+ desc?: string;
3756
+ descId?: string;
3757
+ }>;
3758
+ monitor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3759
+ title?: string;
3760
+ titleId?: string;
3761
+ desc?: string;
3762
+ descId?: string;
3763
+ }>;
3764
+ minus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3765
+ title?: string;
3766
+ titleId?: string;
3767
+ desc?: string;
3768
+ descId?: string;
3769
+ }>;
3770
+ "phone-missed-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3771
+ title?: string;
3772
+ titleId?: string;
3773
+ desc?: string;
3774
+ descId?: string;
3775
+ }>;
3776
+ "navigation-2": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3777
+ title?: string;
3778
+ titleId?: string;
3779
+ desc?: string;
3780
+ descId?: string;
3781
+ }>;
3782
+ "router-launch-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3783
+ title?: string;
3784
+ titleId?: string;
3785
+ desc?: string;
3786
+ descId?: string;
3787
+ }>;
3788
+ film: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3789
+ title?: string;
3790
+ titleId?: string;
3791
+ desc?: string;
3792
+ descId?: string;
3793
+ }>;
3794
+ moon: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3795
+ title?: string;
3796
+ titleId?: string;
3797
+ desc?: string;
3798
+ descId?: string;
3799
+ }>;
3800
+ swap: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3801
+ title?: string;
3802
+ titleId?: string;
3803
+ desc?: string;
3804
+ descId?: string;
3805
+ }>;
3806
+ weight: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3807
+ title?: string;
3808
+ titleId?: string;
3809
+ desc?: string;
3810
+ descId?: string;
3811
+ }>;
3812
+ "shield-off": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3813
+ title?: string;
3814
+ titleId?: string;
3815
+ desc?: string;
3816
+ descId?: string;
3817
+ }>;
3818
+ layout: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3819
+ title?: string;
3820
+ titleId?: string;
3821
+ desc?: string;
3822
+ descId?: string;
3823
+ }>;
3824
+ "interface-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3825
+ title?: string;
3826
+ titleId?: string;
3827
+ desc?: string;
3828
+ descId?: string;
3829
+ }>;
3830
+ "vgpu-offering": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3831
+ title?: string;
3832
+ titleId?: string;
3833
+ desc?: string;
3834
+ descId?: string;
3835
+ }>;
3836
+ "model-test": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3837
+ title?: string;
3838
+ titleId?: string;
3839
+ desc?: string;
3840
+ descId?: string;
3841
+ }>;
3842
+ ip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3843
+ title?: string;
3844
+ titleId?: string;
3845
+ desc?: string;
3846
+ descId?: string;
3847
+ }>;
3848
+ heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3849
+ title?: string;
3850
+ titleId?: string;
3851
+ desc?: string;
3852
+ descId?: string;
3853
+ }>;
3854
+ "trending-up": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3855
+ title?: string;
3856
+ titleId?: string;
3857
+ desc?: string;
3858
+ descId?: string;
3859
+ }>;
3860
+ "briefcase-fill": import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3861
+ title?: string;
3862
+ titleId?: string;
3863
+ desc?: string;
3864
+ descId?: string;
3865
+ }>;
3866
+ };