@devbonnysid/ui-kit-default 1.0.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 (82) hide show
  1. package/dist/components/Button/Button.d.ts +26 -0
  2. package/dist/components/Button/ButtonAddition.d.ts +7 -0
  3. package/dist/components/Button/index.d.ts +1 -0
  4. package/dist/components/Caption/Caption.d.ts +6 -0
  5. package/dist/components/Caption/index.d.ts +1 -0
  6. package/dist/components/Checkbox/Checkbox.d.ts +28 -0
  7. package/dist/components/Checkbox/FormCheckbox.d.ts +10 -0
  8. package/dist/components/Checkbox/index.d.ts +2 -0
  9. package/dist/components/Description/Description.d.ts +8 -0
  10. package/dist/components/Description/index.d.ts +1 -0
  11. package/dist/components/Form/Form.d.ts +8 -0
  12. package/dist/components/Form/index.d.ts +1 -0
  13. package/dist/components/Icon/Icon.d.ts +12 -0
  14. package/dist/components/Icon/index.d.ts +2 -0
  15. package/dist/components/Icon/types.d.ts +904 -0
  16. package/dist/components/Input/FormInput.d.ts +11 -0
  17. package/dist/components/Input/Input.d.ts +29 -0
  18. package/dist/components/Input/components/HiddenControl/HiddenControl.d.ts +10 -0
  19. package/dist/components/Input/components/HiddenControl/index.d.ts +1 -0
  20. package/dist/components/Input/components/InputIcon/InputIcon.d.ts +10 -0
  21. package/dist/components/Input/components/InputIcon/index.d.ts +1 -0
  22. package/dist/components/Input/components/NumberControls/NumberControls.d.ts +7 -0
  23. package/dist/components/Input/components/NumberControls/index.d.ts +1 -0
  24. package/dist/components/Input/components/index.d.ts +3 -0
  25. package/dist/components/Input/hooks/index.d.ts +3 -0
  26. package/dist/components/Input/hooks/useCurrentType.d.ts +6 -0
  27. package/dist/components/Input/hooks/useIncrement.d.ts +12 -0
  28. package/dist/components/Input/hooks/useValueFormatter.d.ts +21 -0
  29. package/dist/components/Input/index.d.ts +3 -0
  30. package/dist/components/Input/types.d.ts +3 -0
  31. package/dist/components/Loader/Loader.d.ts +9 -0
  32. package/dist/components/Loader/index.d.ts +1 -0
  33. package/dist/components/Modal/Modal.d.ts +10 -0
  34. package/dist/components/Modal/index.d.ts +1 -0
  35. package/dist/components/Popover/Popover.d.ts +21 -0
  36. package/dist/components/Popover/index.d.ts +1 -0
  37. package/dist/components/Portal/Portal.d.ts +7 -0
  38. package/dist/components/Portal/index.d.ts +1 -0
  39. package/dist/components/Select/FormSelect.d.ts +8 -0
  40. package/dist/components/Select/Select.d.ts +29 -0
  41. package/dist/components/Select/components/SelectList/SelectList.d.ts +17 -0
  42. package/dist/components/Select/components/SelectList/index.d.ts +1 -0
  43. package/dist/components/Select/components/SelectOptionItem/SelectOptionItem.d.ts +16 -0
  44. package/dist/components/Select/components/SelectOptionItem/index.d.ts +1 -0
  45. package/dist/components/Select/components/index.d.ts +2 -0
  46. package/dist/components/Select/index.d.ts +4 -0
  47. package/dist/components/Select/types.d.ts +10 -0
  48. package/dist/components/TextShorter/TextShorter.d.ts +7 -0
  49. package/dist/components/TextShorter/index.d.ts +1 -0
  50. package/dist/components/Textarea/FormTextarea.d.ts +11 -0
  51. package/dist/components/Textarea/Textarea.d.ts +14 -0
  52. package/dist/components/Textarea/index.d.ts +2 -0
  53. package/dist/components/Tooltip/Tooltip.d.ts +10 -0
  54. package/dist/components/Tooltip/index.d.ts +1 -0
  55. package/dist/components/index.d.ts +14 -0
  56. package/dist/hooks/index.d.ts +5 -0
  57. package/dist/hooks/useFloating.d.ts +17 -0
  58. package/dist/hooks/useHidden.d.ts +5 -0
  59. package/dist/hooks/useMask.d.ts +13 -0
  60. package/dist/hooks/useOpenState.d.ts +7 -0
  61. package/dist/hooks/useUIKitTranslation.d.ts +1 -0
  62. package/dist/i18n/index.d.ts +21 -0
  63. package/dist/index.cjs.js +42 -0
  64. package/dist/index.d.ts +4 -0
  65. package/dist/index.es.js +2500 -0
  66. package/dist/locales/en/ui-kit.json.d.ts +9 -0
  67. package/dist/locales/ru/ui-kit.json.d.ts +9 -0
  68. package/dist/ui-kit-default.css +1 -0
  69. package/dist/utils/bindStyles.d.ts +1 -0
  70. package/dist/utils/clamp.d.ts +1 -0
  71. package/dist/utils/computeCoordsFromPlacement.d.ts +26 -0
  72. package/dist/utils/convertScientificNumberToString.d.ts +1 -0
  73. package/dist/utils/convertThousands.d.ts +2 -0
  74. package/dist/utils/downloadBlob.d.ts +1 -0
  75. package/dist/utils/formatNumber.d.ts +1 -0
  76. package/dist/utils/getPageItems.d.ts +6 -0
  77. package/dist/utils/index.d.ts +12 -0
  78. package/dist/utils/insertIf.d.ts +1 -0
  79. package/dist/utils/isExternalLink.d.ts +2 -0
  80. package/dist/utils/isUndefinedOrNull.d.ts +1 -0
  81. package/dist/utils/isUrl.d.ts +1 -0
  82. package/package.json +78 -0
@@ -0,0 +1,904 @@
1
+ export type IconTypes = 'add' | 'archive' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'az-sort-asc' | 'az-sort-desc' | 'backup-restore' | 'bar-chart-alt' | 'bar-chart' | 'book' | 'calendar-light' | 'call' | 'caret' | 'check' | 'checkbox-uncheck' | 'checkbox' | 'chevron-left' | 'chevron' | 'circle-arrow-left' | 'circle-arrow-right' | 'circle-check' | 'circle-error' | 'circle-help' | 'circle-information' | 'circle-user' | 'circle-warning' | 'clipboard-check' | 'clipboard-list' | 'clock' | 'close' | 'cloud-search' | 'cloud-update' | 'cloud-upload' | 'cloud' | 'cog-settings' | 'coins' | 'compass' | 'computer' | 'connected' | 'console' | 'copy' | 'cpu-icon' | 'csv' | 'custom-os' | 'dashboard' | 'database' | 'dataCenter' | 'delete-alt' | 'delete' | 'disconnected' | 'document-download' | 'document' | 'dot-center' | 'download' | 'edit-alt' | 'edit' | 'email' | 'empty-document' | 'eye-check' | 'eye-off' | 'eye' | 'favorite' | 'filter' | 'folder' | 'generic-sorting' | 'grid' | 'growth-chart-up' | 'hdd' | 'help-book' | 'home' | 'id-card' | 'id' | 'idea' | 'inbox' | 'indeterminate-checkbox' | 'information-circle-fill' | 'LangRu' | 'LangUs' | 'layers' | 'line-chart' | 'linux' | 'list' | 'load-pdf' | 'location-mark' | 'lock' | 'login' | 'logout' | 'message' | 'minimize' | 'minus' | 'move-folder' | 'network-off' | 'network-on' | 'network' | 'notification' | 'number-sort-asc' | 'number-sort-desc' | 'office-building' | 'open-new-window' | 'openStack' | 'options-horizontal' | 'options-vertical' | 'pan' | 'pause' | 'pc-bad' | 'pc-error' | 'pc-good' | 'pc-in-process' | 'pc-in-subscriptions' | 'pc-no-subscriptions' | 'pc-normal' | 'pc-stopped' | 'pc-unknown' | 'pc-works' | 'pcfirewall' | 'pdf' | 'performance' | 'person-plus' | 'photo-camera' | 'play' | 'ram-icon' | 'refresh' | 'reorder-alt' | 'restart' | 'rocket' | 'search' | 'security' | 'settings' | 'spinner-filled' | 'spinner-progress' | 'spinner' | 'star-filled' | 'star-half-filled' | 'stop' | 'tag' | 'telegram' | 'two-rows' | 'undo' | 'update' | 'upload' | 'user' | 'users' | 'vk' | 'VM' | 'warning-circle' | 'warning' | 'windows' | 'xls';
2
+ export declare const ICON_TYPE_NAMES: string[];
3
+ export declare const ICONS: {
4
+ add: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
5
+ title?: string;
6
+ titleId?: string;
7
+ desc?: string;
8
+ descId?: string;
9
+ }>;
10
+ archive: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
11
+ title?: string;
12
+ titleId?: string;
13
+ desc?: string;
14
+ descId?: string;
15
+ }>;
16
+ 'arrow-down': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
17
+ title?: string;
18
+ titleId?: string;
19
+ desc?: string;
20
+ descId?: string;
21
+ }>;
22
+ 'arrow-left': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
23
+ title?: string;
24
+ titleId?: string;
25
+ desc?: string;
26
+ descId?: string;
27
+ }>;
28
+ 'arrow-right': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
29
+ title?: string;
30
+ titleId?: string;
31
+ desc?: string;
32
+ descId?: string;
33
+ }>;
34
+ 'arrow-up': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
35
+ title?: string;
36
+ titleId?: string;
37
+ desc?: string;
38
+ descId?: string;
39
+ }>;
40
+ 'az-sort-asc': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
41
+ title?: string;
42
+ titleId?: string;
43
+ desc?: string;
44
+ descId?: string;
45
+ }>;
46
+ 'az-sort-desc': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
47
+ title?: string;
48
+ titleId?: string;
49
+ desc?: string;
50
+ descId?: string;
51
+ }>;
52
+ 'backup-restore': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
53
+ title?: string;
54
+ titleId?: string;
55
+ desc?: string;
56
+ descId?: string;
57
+ }>;
58
+ 'bar-chart-alt': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
59
+ title?: string;
60
+ titleId?: string;
61
+ desc?: string;
62
+ descId?: string;
63
+ }>;
64
+ 'bar-chart': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
65
+ title?: string;
66
+ titleId?: string;
67
+ desc?: string;
68
+ descId?: string;
69
+ }>;
70
+ book: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
71
+ title?: string;
72
+ titleId?: string;
73
+ desc?: string;
74
+ descId?: string;
75
+ }>;
76
+ 'calendar-light': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
77
+ title?: string;
78
+ titleId?: string;
79
+ desc?: string;
80
+ descId?: string;
81
+ }>;
82
+ call: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
83
+ title?: string;
84
+ titleId?: string;
85
+ desc?: string;
86
+ descId?: string;
87
+ }>;
88
+ caret: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
89
+ title?: string;
90
+ titleId?: string;
91
+ desc?: string;
92
+ descId?: string;
93
+ }>;
94
+ check: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
95
+ title?: string;
96
+ titleId?: string;
97
+ desc?: string;
98
+ descId?: string;
99
+ }>;
100
+ 'checkbox-uncheck': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
101
+ title?: string;
102
+ titleId?: string;
103
+ desc?: string;
104
+ descId?: string;
105
+ }>;
106
+ checkbox: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
107
+ title?: string;
108
+ titleId?: string;
109
+ desc?: string;
110
+ descId?: string;
111
+ }>;
112
+ 'chevron-left': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
113
+ title?: string;
114
+ titleId?: string;
115
+ desc?: string;
116
+ descId?: string;
117
+ }>;
118
+ chevron: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
119
+ title?: string;
120
+ titleId?: string;
121
+ desc?: string;
122
+ descId?: string;
123
+ }>;
124
+ 'circle-arrow-left': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
125
+ title?: string;
126
+ titleId?: string;
127
+ desc?: string;
128
+ descId?: string;
129
+ }>;
130
+ 'circle-arrow-right': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
131
+ title?: string;
132
+ titleId?: string;
133
+ desc?: string;
134
+ descId?: string;
135
+ }>;
136
+ 'circle-check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
137
+ title?: string;
138
+ titleId?: string;
139
+ desc?: string;
140
+ descId?: string;
141
+ }>;
142
+ 'circle-error': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
143
+ title?: string;
144
+ titleId?: string;
145
+ desc?: string;
146
+ descId?: string;
147
+ }>;
148
+ 'circle-help': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
149
+ title?: string;
150
+ titleId?: string;
151
+ desc?: string;
152
+ descId?: string;
153
+ }>;
154
+ 'circle-information': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
155
+ title?: string;
156
+ titleId?: string;
157
+ desc?: string;
158
+ descId?: string;
159
+ }>;
160
+ 'circle-user': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
161
+ title?: string;
162
+ titleId?: string;
163
+ desc?: string;
164
+ descId?: string;
165
+ }>;
166
+ 'circle-warning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
167
+ title?: string;
168
+ titleId?: string;
169
+ desc?: string;
170
+ descId?: string;
171
+ }>;
172
+ 'clipboard-check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
173
+ title?: string;
174
+ titleId?: string;
175
+ desc?: string;
176
+ descId?: string;
177
+ }>;
178
+ 'clipboard-list': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
179
+ title?: string;
180
+ titleId?: string;
181
+ desc?: string;
182
+ descId?: string;
183
+ }>;
184
+ clock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
185
+ title?: string;
186
+ titleId?: string;
187
+ desc?: string;
188
+ descId?: string;
189
+ }>;
190
+ close: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
191
+ title?: string;
192
+ titleId?: string;
193
+ desc?: string;
194
+ descId?: string;
195
+ }>;
196
+ 'cloud-search': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
197
+ title?: string;
198
+ titleId?: string;
199
+ desc?: string;
200
+ descId?: string;
201
+ }>;
202
+ 'cloud-update': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
203
+ title?: string;
204
+ titleId?: string;
205
+ desc?: string;
206
+ descId?: string;
207
+ }>;
208
+ 'cloud-upload': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
209
+ title?: string;
210
+ titleId?: string;
211
+ desc?: string;
212
+ descId?: string;
213
+ }>;
214
+ cloud: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
215
+ title?: string;
216
+ titleId?: string;
217
+ desc?: string;
218
+ descId?: string;
219
+ }>;
220
+ 'cog-settings': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
221
+ title?: string;
222
+ titleId?: string;
223
+ desc?: string;
224
+ descId?: string;
225
+ }>;
226
+ coins: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
227
+ title?: string;
228
+ titleId?: string;
229
+ desc?: string;
230
+ descId?: string;
231
+ }>;
232
+ compass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
233
+ title?: string;
234
+ titleId?: string;
235
+ desc?: string;
236
+ descId?: string;
237
+ }>;
238
+ computer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
239
+ title?: string;
240
+ titleId?: string;
241
+ desc?: string;
242
+ descId?: string;
243
+ }>;
244
+ connected: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
245
+ title?: string;
246
+ titleId?: string;
247
+ desc?: string;
248
+ descId?: string;
249
+ }>;
250
+ console: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
251
+ title?: string;
252
+ titleId?: string;
253
+ desc?: string;
254
+ descId?: string;
255
+ }>;
256
+ copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
257
+ title?: string;
258
+ titleId?: string;
259
+ desc?: string;
260
+ descId?: string;
261
+ }>;
262
+ 'cpu-icon': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
263
+ title?: string;
264
+ titleId?: string;
265
+ desc?: string;
266
+ descId?: string;
267
+ }>;
268
+ csv: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
269
+ title?: string;
270
+ titleId?: string;
271
+ desc?: string;
272
+ descId?: string;
273
+ }>;
274
+ 'custom-os': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
275
+ title?: string;
276
+ titleId?: string;
277
+ desc?: string;
278
+ descId?: string;
279
+ }>;
280
+ dashboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
281
+ title?: string;
282
+ titleId?: string;
283
+ desc?: string;
284
+ descId?: string;
285
+ }>;
286
+ database: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
287
+ title?: string;
288
+ titleId?: string;
289
+ desc?: string;
290
+ descId?: string;
291
+ }>;
292
+ dataCenter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
293
+ title?: string;
294
+ titleId?: string;
295
+ desc?: string;
296
+ descId?: string;
297
+ }>;
298
+ 'delete-alt': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
299
+ title?: string;
300
+ titleId?: string;
301
+ desc?: string;
302
+ descId?: string;
303
+ }>;
304
+ delete: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
305
+ title?: string;
306
+ titleId?: string;
307
+ desc?: string;
308
+ descId?: string;
309
+ }>;
310
+ disconnected: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
311
+ title?: string;
312
+ titleId?: string;
313
+ desc?: string;
314
+ descId?: string;
315
+ }>;
316
+ 'document-download': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
317
+ title?: string;
318
+ titleId?: string;
319
+ desc?: string;
320
+ descId?: string;
321
+ }>;
322
+ document: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
323
+ title?: string;
324
+ titleId?: string;
325
+ desc?: string;
326
+ descId?: string;
327
+ }>;
328
+ 'dot-center': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
329
+ title?: string;
330
+ titleId?: string;
331
+ desc?: string;
332
+ descId?: string;
333
+ }>;
334
+ download: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
335
+ title?: string;
336
+ titleId?: string;
337
+ desc?: string;
338
+ descId?: string;
339
+ }>;
340
+ 'edit-alt': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
341
+ title?: string;
342
+ titleId?: string;
343
+ desc?: string;
344
+ descId?: string;
345
+ }>;
346
+ edit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
347
+ title?: string;
348
+ titleId?: string;
349
+ desc?: string;
350
+ descId?: string;
351
+ }>;
352
+ email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
353
+ title?: string;
354
+ titleId?: string;
355
+ desc?: string;
356
+ descId?: string;
357
+ }>;
358
+ 'empty-document': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
359
+ title?: string;
360
+ titleId?: string;
361
+ desc?: string;
362
+ descId?: string;
363
+ }>;
364
+ 'eye-check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
365
+ title?: string;
366
+ titleId?: string;
367
+ desc?: string;
368
+ descId?: string;
369
+ }>;
370
+ 'eye-off': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
371
+ title?: string;
372
+ titleId?: string;
373
+ desc?: string;
374
+ descId?: string;
375
+ }>;
376
+ eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
377
+ title?: string;
378
+ titleId?: string;
379
+ desc?: string;
380
+ descId?: string;
381
+ }>;
382
+ favorite: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
383
+ title?: string;
384
+ titleId?: string;
385
+ desc?: string;
386
+ descId?: string;
387
+ }>;
388
+ filter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
389
+ title?: string;
390
+ titleId?: string;
391
+ desc?: string;
392
+ descId?: string;
393
+ }>;
394
+ folder: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
395
+ title?: string;
396
+ titleId?: string;
397
+ desc?: string;
398
+ descId?: string;
399
+ }>;
400
+ 'generic-sorting': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
401
+ title?: string;
402
+ titleId?: string;
403
+ desc?: string;
404
+ descId?: string;
405
+ }>;
406
+ grid: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
407
+ title?: string;
408
+ titleId?: string;
409
+ desc?: string;
410
+ descId?: string;
411
+ }>;
412
+ 'growth-chart-up': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
413
+ title?: string;
414
+ titleId?: string;
415
+ desc?: string;
416
+ descId?: string;
417
+ }>;
418
+ hdd: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
419
+ title?: string;
420
+ titleId?: string;
421
+ desc?: string;
422
+ descId?: string;
423
+ }>;
424
+ 'help-book': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
425
+ title?: string;
426
+ titleId?: string;
427
+ desc?: string;
428
+ descId?: string;
429
+ }>;
430
+ home: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
431
+ title?: string;
432
+ titleId?: string;
433
+ desc?: string;
434
+ descId?: string;
435
+ }>;
436
+ 'id-card': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
437
+ title?: string;
438
+ titleId?: string;
439
+ desc?: string;
440
+ descId?: string;
441
+ }>;
442
+ id: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
443
+ title?: string;
444
+ titleId?: string;
445
+ desc?: string;
446
+ descId?: string;
447
+ }>;
448
+ idea: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
449
+ title?: string;
450
+ titleId?: string;
451
+ desc?: string;
452
+ descId?: string;
453
+ }>;
454
+ inbox: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
455
+ title?: string;
456
+ titleId?: string;
457
+ desc?: string;
458
+ descId?: string;
459
+ }>;
460
+ 'indeterminate-checkbox': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
461
+ title?: string;
462
+ titleId?: string;
463
+ desc?: string;
464
+ descId?: string;
465
+ }>;
466
+ 'information-circle-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
467
+ title?: string;
468
+ titleId?: string;
469
+ desc?: string;
470
+ descId?: string;
471
+ }>;
472
+ LangRu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
473
+ title?: string;
474
+ titleId?: string;
475
+ desc?: string;
476
+ descId?: string;
477
+ }>;
478
+ LangUs: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
479
+ title?: string;
480
+ titleId?: string;
481
+ desc?: string;
482
+ descId?: string;
483
+ }>;
484
+ layers: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
485
+ title?: string;
486
+ titleId?: string;
487
+ desc?: string;
488
+ descId?: string;
489
+ }>;
490
+ 'line-chart': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
491
+ title?: string;
492
+ titleId?: string;
493
+ desc?: string;
494
+ descId?: string;
495
+ }>;
496
+ linux: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
497
+ title?: string;
498
+ titleId?: string;
499
+ desc?: string;
500
+ descId?: string;
501
+ }>;
502
+ list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
503
+ title?: string;
504
+ titleId?: string;
505
+ desc?: string;
506
+ descId?: string;
507
+ }>;
508
+ 'load-pdf': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
509
+ title?: string;
510
+ titleId?: string;
511
+ desc?: string;
512
+ descId?: string;
513
+ }>;
514
+ 'location-mark': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
515
+ title?: string;
516
+ titleId?: string;
517
+ desc?: string;
518
+ descId?: string;
519
+ }>;
520
+ lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
521
+ title?: string;
522
+ titleId?: string;
523
+ desc?: string;
524
+ descId?: string;
525
+ }>;
526
+ login: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
527
+ title?: string;
528
+ titleId?: string;
529
+ desc?: string;
530
+ descId?: string;
531
+ }>;
532
+ logout: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
533
+ title?: string;
534
+ titleId?: string;
535
+ desc?: string;
536
+ descId?: string;
537
+ }>;
538
+ message: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
539
+ title?: string;
540
+ titleId?: string;
541
+ desc?: string;
542
+ descId?: string;
543
+ }>;
544
+ minimize: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
545
+ title?: string;
546
+ titleId?: string;
547
+ desc?: string;
548
+ descId?: string;
549
+ }>;
550
+ minus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
551
+ title?: string;
552
+ titleId?: string;
553
+ desc?: string;
554
+ descId?: string;
555
+ }>;
556
+ 'move-folder': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
557
+ title?: string;
558
+ titleId?: string;
559
+ desc?: string;
560
+ descId?: string;
561
+ }>;
562
+ 'network-off': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
563
+ title?: string;
564
+ titleId?: string;
565
+ desc?: string;
566
+ descId?: string;
567
+ }>;
568
+ 'network-on': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
569
+ title?: string;
570
+ titleId?: string;
571
+ desc?: string;
572
+ descId?: string;
573
+ }>;
574
+ network: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
575
+ title?: string;
576
+ titleId?: string;
577
+ desc?: string;
578
+ descId?: string;
579
+ }>;
580
+ notification: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
581
+ title?: string;
582
+ titleId?: string;
583
+ desc?: string;
584
+ descId?: string;
585
+ }>;
586
+ 'number-sort-asc': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
587
+ title?: string;
588
+ titleId?: string;
589
+ desc?: string;
590
+ descId?: string;
591
+ }>;
592
+ 'number-sort-desc': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
593
+ title?: string;
594
+ titleId?: string;
595
+ desc?: string;
596
+ descId?: string;
597
+ }>;
598
+ 'office-building': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
599
+ title?: string;
600
+ titleId?: string;
601
+ desc?: string;
602
+ descId?: string;
603
+ }>;
604
+ 'open-new-window': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
605
+ title?: string;
606
+ titleId?: string;
607
+ desc?: string;
608
+ descId?: string;
609
+ }>;
610
+ openStack: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
611
+ title?: string;
612
+ titleId?: string;
613
+ desc?: string;
614
+ descId?: string;
615
+ }>;
616
+ 'options-horizontal': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
617
+ title?: string;
618
+ titleId?: string;
619
+ desc?: string;
620
+ descId?: string;
621
+ }>;
622
+ 'options-vertical': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
623
+ title?: string;
624
+ titleId?: string;
625
+ desc?: string;
626
+ descId?: string;
627
+ }>;
628
+ pan: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
629
+ title?: string;
630
+ titleId?: string;
631
+ desc?: string;
632
+ descId?: string;
633
+ }>;
634
+ pause: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
635
+ title?: string;
636
+ titleId?: string;
637
+ desc?: string;
638
+ descId?: string;
639
+ }>;
640
+ 'pc-bad': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
641
+ title?: string;
642
+ titleId?: string;
643
+ desc?: string;
644
+ descId?: string;
645
+ }>;
646
+ 'pc-error': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
647
+ title?: string;
648
+ titleId?: string;
649
+ desc?: string;
650
+ descId?: string;
651
+ }>;
652
+ 'pc-good': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
653
+ title?: string;
654
+ titleId?: string;
655
+ desc?: string;
656
+ descId?: string;
657
+ }>;
658
+ 'pc-in-process': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
659
+ title?: string;
660
+ titleId?: string;
661
+ desc?: string;
662
+ descId?: string;
663
+ }>;
664
+ 'pc-in-subscriptions': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
665
+ title?: string;
666
+ titleId?: string;
667
+ desc?: string;
668
+ descId?: string;
669
+ }>;
670
+ 'pc-no-subscriptions': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
671
+ title?: string;
672
+ titleId?: string;
673
+ desc?: string;
674
+ descId?: string;
675
+ }>;
676
+ 'pc-normal': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
677
+ title?: string;
678
+ titleId?: string;
679
+ desc?: string;
680
+ descId?: string;
681
+ }>;
682
+ 'pc-stopped': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
683
+ title?: string;
684
+ titleId?: string;
685
+ desc?: string;
686
+ descId?: string;
687
+ }>;
688
+ 'pc-unknown': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
689
+ title?: string;
690
+ titleId?: string;
691
+ desc?: string;
692
+ descId?: string;
693
+ }>;
694
+ 'pc-works': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
695
+ title?: string;
696
+ titleId?: string;
697
+ desc?: string;
698
+ descId?: string;
699
+ }>;
700
+ pcfirewall: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
701
+ title?: string;
702
+ titleId?: string;
703
+ desc?: string;
704
+ descId?: string;
705
+ }>;
706
+ pdf: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
707
+ title?: string;
708
+ titleId?: string;
709
+ desc?: string;
710
+ descId?: string;
711
+ }>;
712
+ performance: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
713
+ title?: string;
714
+ titleId?: string;
715
+ desc?: string;
716
+ descId?: string;
717
+ }>;
718
+ 'person-plus': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
719
+ title?: string;
720
+ titleId?: string;
721
+ desc?: string;
722
+ descId?: string;
723
+ }>;
724
+ 'photo-camera': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
725
+ title?: string;
726
+ titleId?: string;
727
+ desc?: string;
728
+ descId?: string;
729
+ }>;
730
+ play: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
731
+ title?: string;
732
+ titleId?: string;
733
+ desc?: string;
734
+ descId?: string;
735
+ }>;
736
+ 'ram-icon': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
737
+ title?: string;
738
+ titleId?: string;
739
+ desc?: string;
740
+ descId?: string;
741
+ }>;
742
+ refresh: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
743
+ title?: string;
744
+ titleId?: string;
745
+ desc?: string;
746
+ descId?: string;
747
+ }>;
748
+ 'reorder-alt': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
749
+ title?: string;
750
+ titleId?: string;
751
+ desc?: string;
752
+ descId?: string;
753
+ }>;
754
+ restart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
755
+ title?: string;
756
+ titleId?: string;
757
+ desc?: string;
758
+ descId?: string;
759
+ }>;
760
+ rocket: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
761
+ title?: string;
762
+ titleId?: string;
763
+ desc?: string;
764
+ descId?: string;
765
+ }>;
766
+ search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
767
+ title?: string;
768
+ titleId?: string;
769
+ desc?: string;
770
+ descId?: string;
771
+ }>;
772
+ security: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
773
+ title?: string;
774
+ titleId?: string;
775
+ desc?: string;
776
+ descId?: string;
777
+ }>;
778
+ settings: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
779
+ title?: string;
780
+ titleId?: string;
781
+ desc?: string;
782
+ descId?: string;
783
+ }>;
784
+ 'spinner-filled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
785
+ title?: string;
786
+ titleId?: string;
787
+ desc?: string;
788
+ descId?: string;
789
+ }>;
790
+ 'spinner-progress': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
791
+ title?: string;
792
+ titleId?: string;
793
+ desc?: string;
794
+ descId?: string;
795
+ }>;
796
+ spinner: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
797
+ title?: string;
798
+ titleId?: string;
799
+ desc?: string;
800
+ descId?: string;
801
+ }>;
802
+ 'star-filled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
803
+ title?: string;
804
+ titleId?: string;
805
+ desc?: string;
806
+ descId?: string;
807
+ }>;
808
+ 'star-half-filled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
809
+ title?: string;
810
+ titleId?: string;
811
+ desc?: string;
812
+ descId?: string;
813
+ }>;
814
+ stop: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
815
+ title?: string;
816
+ titleId?: string;
817
+ desc?: string;
818
+ descId?: string;
819
+ }>;
820
+ tag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
821
+ title?: string;
822
+ titleId?: string;
823
+ desc?: string;
824
+ descId?: string;
825
+ }>;
826
+ telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
827
+ title?: string;
828
+ titleId?: string;
829
+ desc?: string;
830
+ descId?: string;
831
+ }>;
832
+ 'two-rows': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
833
+ title?: string;
834
+ titleId?: string;
835
+ desc?: string;
836
+ descId?: string;
837
+ }>;
838
+ undo: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
839
+ title?: string;
840
+ titleId?: string;
841
+ desc?: string;
842
+ descId?: string;
843
+ }>;
844
+ update: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
845
+ title?: string;
846
+ titleId?: string;
847
+ desc?: string;
848
+ descId?: string;
849
+ }>;
850
+ upload: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
851
+ title?: string;
852
+ titleId?: string;
853
+ desc?: string;
854
+ descId?: string;
855
+ }>;
856
+ user: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
857
+ title?: string;
858
+ titleId?: string;
859
+ desc?: string;
860
+ descId?: string;
861
+ }>;
862
+ users: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
863
+ title?: string;
864
+ titleId?: string;
865
+ desc?: string;
866
+ descId?: string;
867
+ }>;
868
+ vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
869
+ title?: string;
870
+ titleId?: string;
871
+ desc?: string;
872
+ descId?: string;
873
+ }>;
874
+ VM: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
875
+ title?: string;
876
+ titleId?: string;
877
+ desc?: string;
878
+ descId?: string;
879
+ }>;
880
+ 'warning-circle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
881
+ title?: string;
882
+ titleId?: string;
883
+ desc?: string;
884
+ descId?: string;
885
+ }>;
886
+ warning: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
887
+ title?: string;
888
+ titleId?: string;
889
+ desc?: string;
890
+ descId?: string;
891
+ }>;
892
+ windows: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
893
+ title?: string;
894
+ titleId?: string;
895
+ desc?: string;
896
+ descId?: string;
897
+ }>;
898
+ xls: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
899
+ title?: string;
900
+ titleId?: string;
901
+ desc?: string;
902
+ descId?: string;
903
+ }>;
904
+ };