elbe-ui 0.2.26 → 0.2.34

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 (102) hide show
  1. package/dist/bit/bit.js +83 -0
  2. package/dist/bit/ctrl_bit.js +89 -0
  3. package/dist/elbe.css +621 -0
  4. package/dist/elbe.css.map +1 -0
  5. package/dist/index.d.ts +1549 -17
  6. package/dist/index.js +64 -18577
  7. package/dist/service/s_api.js +89 -0
  8. package/dist/ui/components/badge.d.ts +5 -5
  9. package/dist/ui/components/badge.js +53 -0
  10. package/dist/ui/components/base/box.d.ts +2564 -0
  11. package/dist/ui/components/base/box.js +30 -0
  12. package/dist/ui/components/base/card.d.ts +14 -0
  13. package/dist/ui/components/base/card.js +11 -0
  14. package/dist/ui/components/base/padded.js +28 -0
  15. package/dist/ui/components/button/button.d.ts +21 -0
  16. package/dist/ui/components/button/button.js +27 -0
  17. package/dist/ui/components/button/choose_button.d.ts +14 -0
  18. package/dist/ui/components/button/choose_button.js +11 -0
  19. package/dist/ui/components/button/icon_button.d.ts +17 -0
  20. package/dist/ui/components/button/icon_button.js +31 -0
  21. package/dist/ui/components/button/toggle_button.d.ts +10 -0
  22. package/dist/ui/components/button/toggle_button.js +11 -0
  23. package/dist/ui/components/dialog.js +14 -0
  24. package/dist/ui/components/error_view.js +26 -0
  25. package/dist/ui/components/input/checkbox.d.ts +1 -1
  26. package/dist/ui/components/input/checkbox.js +12 -0
  27. package/dist/ui/components/input/input_field.d.ts +1 -1
  28. package/dist/ui/components/input/input_field.js +31 -0
  29. package/dist/ui/components/input/range.d.ts +1 -1
  30. package/dist/ui/components/input/range.js +14 -0
  31. package/dist/ui/components/input/select.d.ts +1 -1
  32. package/dist/ui/components/input/select.js +8 -0
  33. package/dist/ui/components/input/text_area.d.ts +1 -1
  34. package/dist/ui/components/input/text_area.js +13 -0
  35. package/dist/ui/components/{flex.d.ts → layout/flex.d.ts} +1 -1
  36. package/dist/ui/components/layout/flex.js +23 -0
  37. package/dist/ui/components/{scaffold.d.ts → layout/scaffold.d.ts} +7 -3
  38. package/dist/ui/components/layout/scaffold.js +44 -0
  39. package/dist/ui/components/layout/scroll.d.ts +18 -0
  40. package/dist/ui/components/layout/scroll.js +20 -0
  41. package/dist/ui/components/layout/spaced.js +7 -0
  42. package/dist/ui/components/spinner.d.ts +10 -2
  43. package/dist/ui/components/spinner.js +48 -0
  44. package/dist/ui/components/text.d.ts +5 -5
  45. package/dist/ui/components/text.js +42 -0
  46. package/dist/ui/theme/color_theme.d.ts +2 -0
  47. package/dist/ui/theme/color_theme.js +63 -0
  48. package/dist/ui/theme/colors.d.ts +142 -0
  49. package/dist/ui/theme/colors.js +317 -0
  50. package/dist/ui/theme/geometry_theme.d.ts +16 -0
  51. package/dist/ui/theme/geometry_theme.js +38 -0
  52. package/dist/ui/theme/theme.d.ts +28 -0
  53. package/dist/ui/theme/theme.js +49 -0
  54. package/dist/ui/theme/type_theme.d.ts +38 -0
  55. package/dist/ui/theme/type_theme.js +98 -0
  56. package/dist/ui/util/confirm_dialog.js +46 -0
  57. package/dist/ui/util/error_view.js +8 -0
  58. package/dist/ui/util/toast.js +17 -0
  59. package/dist/ui/util/util.d.ts +2 -0
  60. package/dist/ui/util/util.js +39 -0
  61. package/package.json +14 -15
  62. package/dist/ui/color_theme.d.ts +0 -5
  63. package/dist/ui/components/box.d.ts +0 -1027
  64. package/dist/ui/components/button.d.ts +0 -23
  65. package/dist/ui/components/card.d.ts +0 -14
  66. package/dist/ui/components/icon_button.d.ts +0 -19
  67. package/dist/ui/components/toggle_button.d.ts +0 -12
  68. package/elbe.scss +0 -100
  69. package/src/bit/bit.tsx +0 -128
  70. package/src/bit/ctrl_bit.tsx +0 -112
  71. package/src/index.tsx +0 -29
  72. package/src/service/s_api.ts +0 -102
  73. package/src/ui/color_theme.ts +0 -24
  74. package/src/ui/components/badge.tsx +0 -78
  75. package/src/ui/components/box.tsx +0 -49
  76. package/src/ui/components/button.tsx +0 -61
  77. package/src/ui/components/card.tsx +0 -45
  78. package/src/ui/components/dialog.tsx +0 -51
  79. package/src/ui/components/error_view.tsx +0 -72
  80. package/src/ui/components/flex.tsx +0 -64
  81. package/src/ui/components/icon_button.tsx +0 -56
  82. package/src/ui/components/input/checkbox.tsx +0 -32
  83. package/src/ui/components/input/input_field.tsx +0 -57
  84. package/src/ui/components/input/range.tsx +0 -37
  85. package/src/ui/components/input/select.tsx +0 -29
  86. package/src/ui/components/input/text_area.tsx +0 -45
  87. package/src/ui/components/padded.tsx +0 -62
  88. package/src/ui/components/scaffold.tsx +0 -79
  89. package/src/ui/components/spinner.tsx +0 -11
  90. package/src/ui/components/text.tsx +0 -78
  91. package/src/ui/components/toggle_button.tsx +0 -52
  92. package/src/ui/components/util.tsx +0 -3
  93. package/src/ui/util/confirm_dialog.ts +0 -53
  94. package/src/ui/util/error_view.tsx +0 -16
  95. package/src/ui/util/toast.ts +0 -14
  96. package/src/ui/util/util.ts +0 -36
  97. package/style/color_style.scss +0 -149
  98. package/style/components.scss +0 -476
  99. package/style/root.scss +0 -50
  100. package/style/type_style.scss +0 -22
  101. /package/dist/ui/components/{padded.d.ts → base/padded.d.ts} +0 -0
  102. /package/dist/ui/components/{util.d.ts → layout/spaced.d.ts} +0 -0
package/dist/index.d.ts CHANGED
@@ -1,26 +1,1558 @@
1
- import * as Lucide from "lucide-react";
1
+ import "./elbe.css";
2
2
  export * from "./bit/bit";
3
3
  export * from "./bit/ctrl_bit";
4
4
  export * from "./service/s_api";
5
- export * from "./ui/color_theme";
6
- export * from "./ui/components/badge";
7
- export * from "./ui/components/box";
8
- export * from "./ui/components/button";
9
- export * from "./ui/components/card";
10
- export * from "./ui/components/dialog";
11
- export * from "./ui/components/flex";
12
- export * from "./ui/components/icon_button";
5
+ export * from "./ui/util/confirm_dialog";
6
+ export * from "./ui/util/toast";
7
+ export * from "./ui/util/util";
8
+ export * from "./ui/components/base/box";
9
+ export * from "./ui/components/base/card";
10
+ export * from "./ui/components/base/padded";
11
+ export * from "./ui/components/button/button";
12
+ export * from "./ui/components/button/choose_button";
13
+ export * from "./ui/components/button/icon_button";
14
+ export * from "./ui/components/button/toggle_button";
15
+ export * from "./ui/components/layout/flex";
16
+ export * from "./ui/components/layout/scaffold";
17
+ export * from "./ui/components/layout/scroll";
18
+ export * from "./ui/components/layout/spaced";
13
19
  export * from "./ui/components/input/checkbox";
14
20
  export * from "./ui/components/input/input_field";
15
21
  export * from "./ui/components/input/range";
16
22
  export * from "./ui/components/input/select";
17
- export * from "./ui/components/padded";
18
- export * from "./ui/components/scaffold";
23
+ export * from "./ui/components/input/text_area";
24
+ export * from "./ui/components/badge";
25
+ export * from "./ui/components/dialog";
26
+ export * from "./ui/components/error_view";
19
27
  export * from "./ui/components/spinner";
20
28
  export * from "./ui/components/text";
21
- export * from "./ui/components/toggle_button";
22
- export * from "./ui/components/util";
23
- export * from "./ui/util/confirm_dialog";
24
- export * from "./ui/util/toast";
25
- export * from "./ui/util/util";
26
- export declare const Icons: typeof Lucide.icons;
29
+ export * from "./ui/theme/theme";
30
+ declare function None({}: {}): import("preact").JSX.Element;
31
+ export declare const Icons: {
32
+ None: typeof None;
33
+ AArrowDown: react.ForwardRefExoticComponent<any>;
34
+ AArrowUp: react.ForwardRefExoticComponent<any>;
35
+ ALargeSmall: react.ForwardRefExoticComponent<any>;
36
+ Accessibility: react.ForwardRefExoticComponent<any>;
37
+ Activity: react.ForwardRefExoticComponent<any>;
38
+ AirVent: react.ForwardRefExoticComponent<any>;
39
+ Airplay: react.ForwardRefExoticComponent<any>;
40
+ AlarmClock: react.ForwardRefExoticComponent<any>;
41
+ AlarmClockCheck: react.ForwardRefExoticComponent<any>;
42
+ AlarmClockMinus: react.ForwardRefExoticComponent<any>;
43
+ AlarmClockOff: react.ForwardRefExoticComponent<any>;
44
+ AlarmClockPlus: react.ForwardRefExoticComponent<any>;
45
+ AlarmSmoke: react.ForwardRefExoticComponent<any>;
46
+ Album: react.ForwardRefExoticComponent<any>;
47
+ AlignCenter: react.ForwardRefExoticComponent<any>;
48
+ AlignCenterHorizontal: react.ForwardRefExoticComponent<any>;
49
+ AlignCenterVertical: react.ForwardRefExoticComponent<any>;
50
+ AlignEndHorizontal: react.ForwardRefExoticComponent<any>;
51
+ AlignEndVertical: react.ForwardRefExoticComponent<any>;
52
+ AlignHorizontalDistributeCenter: react.ForwardRefExoticComponent<any>;
53
+ AlignHorizontalDistributeEnd: react.ForwardRefExoticComponent<any>;
54
+ AlignHorizontalDistributeStart: react.ForwardRefExoticComponent<any>;
55
+ AlignHorizontalJustifyCenter: react.ForwardRefExoticComponent<any>;
56
+ AlignHorizontalJustifyEnd: react.ForwardRefExoticComponent<any>;
57
+ AlignHorizontalJustifyStart: react.ForwardRefExoticComponent<any>;
58
+ AlignHorizontalSpaceAround: react.ForwardRefExoticComponent<any>;
59
+ AlignHorizontalSpaceBetween: react.ForwardRefExoticComponent<any>;
60
+ AlignJustify: react.ForwardRefExoticComponent<any>;
61
+ AlignLeft: react.ForwardRefExoticComponent<any>;
62
+ AlignRight: react.ForwardRefExoticComponent<any>;
63
+ AlignStartHorizontal: react.ForwardRefExoticComponent<any>;
64
+ AlignStartVertical: react.ForwardRefExoticComponent<any>;
65
+ AlignVerticalDistributeCenter: react.ForwardRefExoticComponent<any>;
66
+ AlignVerticalDistributeEnd: react.ForwardRefExoticComponent<any>;
67
+ AlignVerticalDistributeStart: react.ForwardRefExoticComponent<any>;
68
+ AlignVerticalJustifyCenter: react.ForwardRefExoticComponent<any>;
69
+ AlignVerticalJustifyEnd: react.ForwardRefExoticComponent<any>;
70
+ AlignVerticalJustifyStart: react.ForwardRefExoticComponent<any>;
71
+ AlignVerticalSpaceAround: react.ForwardRefExoticComponent<any>;
72
+ AlignVerticalSpaceBetween: react.ForwardRefExoticComponent<any>;
73
+ Ambulance: react.ForwardRefExoticComponent<any>;
74
+ Ampersand: react.ForwardRefExoticComponent<any>;
75
+ Ampersands: react.ForwardRefExoticComponent<any>;
76
+ Amphora: react.ForwardRefExoticComponent<any>;
77
+ Anchor: react.ForwardRefExoticComponent<any>;
78
+ Angry: react.ForwardRefExoticComponent<any>;
79
+ Annoyed: react.ForwardRefExoticComponent<any>;
80
+ Antenna: react.ForwardRefExoticComponent<any>;
81
+ Anvil: react.ForwardRefExoticComponent<any>;
82
+ Aperture: react.ForwardRefExoticComponent<any>;
83
+ AppWindow: react.ForwardRefExoticComponent<any>;
84
+ AppWindowMac: react.ForwardRefExoticComponent<any>;
85
+ Apple: react.ForwardRefExoticComponent<any>;
86
+ Archive: react.ForwardRefExoticComponent<any>;
87
+ ArchiveRestore: react.ForwardRefExoticComponent<any>;
88
+ ArchiveX: react.ForwardRefExoticComponent<any>;
89
+ Armchair: react.ForwardRefExoticComponent<any>;
90
+ ArrowBigDown: react.ForwardRefExoticComponent<any>;
91
+ ArrowBigDownDash: react.ForwardRefExoticComponent<any>;
92
+ ArrowBigLeft: react.ForwardRefExoticComponent<any>;
93
+ ArrowBigLeftDash: react.ForwardRefExoticComponent<any>;
94
+ ArrowBigRight: react.ForwardRefExoticComponent<any>;
95
+ ArrowBigRightDash: react.ForwardRefExoticComponent<any>;
96
+ ArrowBigUp: react.ForwardRefExoticComponent<any>;
97
+ ArrowBigUpDash: react.ForwardRefExoticComponent<any>;
98
+ ArrowDown: react.ForwardRefExoticComponent<any>;
99
+ ArrowDown01: react.ForwardRefExoticComponent<any>;
100
+ ArrowDown10: react.ForwardRefExoticComponent<any>;
101
+ ArrowDownAZ: react.ForwardRefExoticComponent<any>;
102
+ ArrowDownFromLine: react.ForwardRefExoticComponent<any>;
103
+ ArrowDownLeft: react.ForwardRefExoticComponent<any>;
104
+ ArrowDownNarrowWide: react.ForwardRefExoticComponent<any>;
105
+ ArrowDownRight: react.ForwardRefExoticComponent<any>;
106
+ ArrowDownToDot: react.ForwardRefExoticComponent<any>;
107
+ ArrowDownToLine: react.ForwardRefExoticComponent<any>;
108
+ ArrowDownUp: react.ForwardRefExoticComponent<any>;
109
+ ArrowDownWideNarrow: react.ForwardRefExoticComponent<any>;
110
+ ArrowDownZA: react.ForwardRefExoticComponent<any>;
111
+ ArrowLeft: react.ForwardRefExoticComponent<any>;
112
+ ArrowLeftFromLine: react.ForwardRefExoticComponent<any>;
113
+ ArrowLeftRight: react.ForwardRefExoticComponent<any>;
114
+ ArrowLeftToLine: react.ForwardRefExoticComponent<any>;
115
+ ArrowRight: react.ForwardRefExoticComponent<any>;
116
+ ArrowRightFromLine: react.ForwardRefExoticComponent<any>;
117
+ ArrowRightLeft: react.ForwardRefExoticComponent<any>;
118
+ ArrowRightToLine: react.ForwardRefExoticComponent<any>;
119
+ ArrowUp: react.ForwardRefExoticComponent<any>;
120
+ ArrowUp01: react.ForwardRefExoticComponent<any>;
121
+ ArrowUp10: react.ForwardRefExoticComponent<any>;
122
+ ArrowUpAZ: react.ForwardRefExoticComponent<any>;
123
+ ArrowUpDown: react.ForwardRefExoticComponent<any>;
124
+ ArrowUpFromDot: react.ForwardRefExoticComponent<any>;
125
+ ArrowUpFromLine: react.ForwardRefExoticComponent<any>;
126
+ ArrowUpLeft: react.ForwardRefExoticComponent<any>;
127
+ ArrowUpNarrowWide: react.ForwardRefExoticComponent<any>;
128
+ ArrowUpRight: react.ForwardRefExoticComponent<any>;
129
+ ArrowUpToLine: react.ForwardRefExoticComponent<any>;
130
+ ArrowUpWideNarrow: react.ForwardRefExoticComponent<any>;
131
+ ArrowUpZA: react.ForwardRefExoticComponent<any>;
132
+ ArrowsUpFromLine: react.ForwardRefExoticComponent<any>;
133
+ Asterisk: react.ForwardRefExoticComponent<any>;
134
+ AtSign: react.ForwardRefExoticComponent<any>;
135
+ Atom: react.ForwardRefExoticComponent<any>;
136
+ AudioLines: react.ForwardRefExoticComponent<any>;
137
+ AudioWaveform: react.ForwardRefExoticComponent<any>;
138
+ Award: react.ForwardRefExoticComponent<any>;
139
+ Axe: react.ForwardRefExoticComponent<any>;
140
+ Axis3d: react.ForwardRefExoticComponent<any>;
141
+ Baby: react.ForwardRefExoticComponent<any>;
142
+ Backpack: react.ForwardRefExoticComponent<any>;
143
+ Badge: react.ForwardRefExoticComponent<any>;
144
+ BadgeAlert: react.ForwardRefExoticComponent<any>;
145
+ BadgeCent: react.ForwardRefExoticComponent<any>;
146
+ BadgeCheck: react.ForwardRefExoticComponent<any>;
147
+ BadgeDollarSign: react.ForwardRefExoticComponent<any>;
148
+ BadgeEuro: react.ForwardRefExoticComponent<any>;
149
+ BadgeHelp: react.ForwardRefExoticComponent<any>;
150
+ BadgeIndianRupee: react.ForwardRefExoticComponent<any>;
151
+ BadgeInfo: react.ForwardRefExoticComponent<any>;
152
+ BadgeJapaneseYen: react.ForwardRefExoticComponent<any>;
153
+ BadgeMinus: react.ForwardRefExoticComponent<any>;
154
+ BadgePercent: react.ForwardRefExoticComponent<any>;
155
+ BadgePlus: react.ForwardRefExoticComponent<any>;
156
+ BadgePoundSterling: react.ForwardRefExoticComponent<any>;
157
+ BadgeRussianRuble: react.ForwardRefExoticComponent<any>;
158
+ BadgeSwissFranc: react.ForwardRefExoticComponent<any>;
159
+ BadgeX: react.ForwardRefExoticComponent<any>;
160
+ BaggageClaim: react.ForwardRefExoticComponent<any>;
161
+ Ban: react.ForwardRefExoticComponent<any>;
162
+ Banana: react.ForwardRefExoticComponent<any>;
163
+ Bandage: react.ForwardRefExoticComponent<any>;
164
+ Banknote: react.ForwardRefExoticComponent<any>;
165
+ Barcode: react.ForwardRefExoticComponent<any>;
166
+ Baseline: react.ForwardRefExoticComponent<any>;
167
+ Bath: react.ForwardRefExoticComponent<any>;
168
+ Battery: react.ForwardRefExoticComponent<any>;
169
+ BatteryCharging: react.ForwardRefExoticComponent<any>;
170
+ BatteryFull: react.ForwardRefExoticComponent<any>;
171
+ BatteryLow: react.ForwardRefExoticComponent<any>;
172
+ BatteryMedium: react.ForwardRefExoticComponent<any>;
173
+ BatteryWarning: react.ForwardRefExoticComponent<any>;
174
+ Beaker: react.ForwardRefExoticComponent<any>;
175
+ Bean: react.ForwardRefExoticComponent<any>;
176
+ BeanOff: react.ForwardRefExoticComponent<any>;
177
+ Bed: react.ForwardRefExoticComponent<any>;
178
+ BedDouble: react.ForwardRefExoticComponent<any>;
179
+ BedSingle: react.ForwardRefExoticComponent<any>;
180
+ Beef: react.ForwardRefExoticComponent<any>;
181
+ Beer: react.ForwardRefExoticComponent<any>;
182
+ BeerOff: react.ForwardRefExoticComponent<any>;
183
+ Bell: react.ForwardRefExoticComponent<any>;
184
+ BellDot: react.ForwardRefExoticComponent<any>;
185
+ BellElectric: react.ForwardRefExoticComponent<any>;
186
+ BellMinus: react.ForwardRefExoticComponent<any>;
187
+ BellOff: react.ForwardRefExoticComponent<any>;
188
+ BellPlus: react.ForwardRefExoticComponent<any>;
189
+ BellRing: react.ForwardRefExoticComponent<any>;
190
+ BetweenHorizontalEnd: react.ForwardRefExoticComponent<any>;
191
+ BetweenHorizontalStart: react.ForwardRefExoticComponent<any>;
192
+ BetweenVerticalEnd: react.ForwardRefExoticComponent<any>;
193
+ BetweenVerticalStart: react.ForwardRefExoticComponent<any>;
194
+ BicepsFlexed: react.ForwardRefExoticComponent<any>;
195
+ Bike: react.ForwardRefExoticComponent<any>;
196
+ Binary: react.ForwardRefExoticComponent<any>;
197
+ Binoculars: react.ForwardRefExoticComponent<any>;
198
+ Biohazard: react.ForwardRefExoticComponent<any>;
199
+ Bird: react.ForwardRefExoticComponent<any>;
200
+ Bitcoin: react.ForwardRefExoticComponent<any>;
201
+ Blend: react.ForwardRefExoticComponent<any>;
202
+ Blinds: react.ForwardRefExoticComponent<any>;
203
+ Blocks: react.ForwardRefExoticComponent<any>;
204
+ Bluetooth: react.ForwardRefExoticComponent<any>;
205
+ BluetoothConnected: react.ForwardRefExoticComponent<any>;
206
+ BluetoothOff: react.ForwardRefExoticComponent<any>;
207
+ BluetoothSearching: react.ForwardRefExoticComponent<any>;
208
+ Bold: react.ForwardRefExoticComponent<any>;
209
+ Bolt: react.ForwardRefExoticComponent<any>;
210
+ Bomb: react.ForwardRefExoticComponent<any>;
211
+ Bone: react.ForwardRefExoticComponent<any>;
212
+ Book: react.ForwardRefExoticComponent<any>;
213
+ BookA: react.ForwardRefExoticComponent<any>;
214
+ BookAudio: react.ForwardRefExoticComponent<any>;
215
+ BookCheck: react.ForwardRefExoticComponent<any>;
216
+ BookCopy: react.ForwardRefExoticComponent<any>;
217
+ BookDashed: react.ForwardRefExoticComponent<any>;
218
+ BookDown: react.ForwardRefExoticComponent<any>;
219
+ BookHeadphones: react.ForwardRefExoticComponent<any>;
220
+ BookHeart: react.ForwardRefExoticComponent<any>;
221
+ BookImage: react.ForwardRefExoticComponent<any>;
222
+ BookKey: react.ForwardRefExoticComponent<any>;
223
+ BookLock: react.ForwardRefExoticComponent<any>;
224
+ BookMarked: react.ForwardRefExoticComponent<any>;
225
+ BookMinus: react.ForwardRefExoticComponent<any>;
226
+ BookOpen: react.ForwardRefExoticComponent<any>;
227
+ BookOpenCheck: react.ForwardRefExoticComponent<any>;
228
+ BookOpenText: react.ForwardRefExoticComponent<any>;
229
+ BookPlus: react.ForwardRefExoticComponent<any>;
230
+ BookText: react.ForwardRefExoticComponent<any>;
231
+ BookType: react.ForwardRefExoticComponent<any>;
232
+ BookUp: react.ForwardRefExoticComponent<any>;
233
+ BookUp2: react.ForwardRefExoticComponent<any>;
234
+ BookUser: react.ForwardRefExoticComponent<any>;
235
+ BookX: react.ForwardRefExoticComponent<any>;
236
+ Bookmark: react.ForwardRefExoticComponent<any>;
237
+ BookmarkCheck: react.ForwardRefExoticComponent<any>;
238
+ BookmarkMinus: react.ForwardRefExoticComponent<any>;
239
+ BookmarkPlus: react.ForwardRefExoticComponent<any>;
240
+ BookmarkX: react.ForwardRefExoticComponent<any>;
241
+ BoomBox: react.ForwardRefExoticComponent<any>;
242
+ Bot: react.ForwardRefExoticComponent<any>;
243
+ BotMessageSquare: react.ForwardRefExoticComponent<any>;
244
+ BotOff: react.ForwardRefExoticComponent<any>;
245
+ Box: react.ForwardRefExoticComponent<any>;
246
+ BoxSelect: react.ForwardRefExoticComponent<any>;
247
+ Boxes: react.ForwardRefExoticComponent<any>;
248
+ Braces: react.ForwardRefExoticComponent<any>;
249
+ Brackets: react.ForwardRefExoticComponent<any>;
250
+ Brain: react.ForwardRefExoticComponent<any>;
251
+ BrainCircuit: react.ForwardRefExoticComponent<any>;
252
+ BrainCog: react.ForwardRefExoticComponent<any>;
253
+ BrickWall: react.ForwardRefExoticComponent<any>;
254
+ Briefcase: react.ForwardRefExoticComponent<any>;
255
+ BriefcaseBusiness: react.ForwardRefExoticComponent<any>;
256
+ BriefcaseMedical: react.ForwardRefExoticComponent<any>;
257
+ BringToFront: react.ForwardRefExoticComponent<any>;
258
+ Brush: react.ForwardRefExoticComponent<any>;
259
+ Bug: react.ForwardRefExoticComponent<any>;
260
+ BugOff: react.ForwardRefExoticComponent<any>;
261
+ BugPlay: react.ForwardRefExoticComponent<any>;
262
+ Building: react.ForwardRefExoticComponent<any>;
263
+ Building2: react.ForwardRefExoticComponent<any>;
264
+ Bus: react.ForwardRefExoticComponent<any>;
265
+ BusFront: react.ForwardRefExoticComponent<any>;
266
+ Cable: react.ForwardRefExoticComponent<any>;
267
+ CableCar: react.ForwardRefExoticComponent<any>;
268
+ Cake: react.ForwardRefExoticComponent<any>;
269
+ CakeSlice: react.ForwardRefExoticComponent<any>;
270
+ Calculator: react.ForwardRefExoticComponent<any>;
271
+ Calendar: react.ForwardRefExoticComponent<any>;
272
+ CalendarArrowDown: react.ForwardRefExoticComponent<any>;
273
+ CalendarArrowUp: react.ForwardRefExoticComponent<any>;
274
+ CalendarCheck: react.ForwardRefExoticComponent<any>;
275
+ CalendarCheck2: react.ForwardRefExoticComponent<any>;
276
+ CalendarClock: react.ForwardRefExoticComponent<any>;
277
+ CalendarCog: react.ForwardRefExoticComponent<any>;
278
+ CalendarDays: react.ForwardRefExoticComponent<any>;
279
+ CalendarFold: react.ForwardRefExoticComponent<any>;
280
+ CalendarHeart: react.ForwardRefExoticComponent<any>;
281
+ CalendarMinus: react.ForwardRefExoticComponent<any>;
282
+ CalendarMinus2: react.ForwardRefExoticComponent<any>;
283
+ CalendarOff: react.ForwardRefExoticComponent<any>;
284
+ CalendarPlus: react.ForwardRefExoticComponent<any>;
285
+ CalendarPlus2: react.ForwardRefExoticComponent<any>;
286
+ CalendarRange: react.ForwardRefExoticComponent<any>;
287
+ CalendarSearch: react.ForwardRefExoticComponent<any>;
288
+ CalendarX: react.ForwardRefExoticComponent<any>;
289
+ CalendarX2: react.ForwardRefExoticComponent<any>;
290
+ Camera: react.ForwardRefExoticComponent<any>;
291
+ CameraOff: react.ForwardRefExoticComponent<any>;
292
+ Candy: react.ForwardRefExoticComponent<any>;
293
+ CandyCane: react.ForwardRefExoticComponent<any>;
294
+ CandyOff: react.ForwardRefExoticComponent<any>;
295
+ Cannabis: react.ForwardRefExoticComponent<any>;
296
+ Captions: react.ForwardRefExoticComponent<any>;
297
+ CaptionsOff: react.ForwardRefExoticComponent<any>;
298
+ Car: react.ForwardRefExoticComponent<any>;
299
+ CarFront: react.ForwardRefExoticComponent<any>;
300
+ CarTaxiFront: react.ForwardRefExoticComponent<any>;
301
+ Caravan: react.ForwardRefExoticComponent<any>;
302
+ Carrot: react.ForwardRefExoticComponent<any>;
303
+ CaseLower: react.ForwardRefExoticComponent<any>;
304
+ CaseSensitive: react.ForwardRefExoticComponent<any>;
305
+ CaseUpper: react.ForwardRefExoticComponent<any>;
306
+ CassetteTape: react.ForwardRefExoticComponent<any>;
307
+ Cast: react.ForwardRefExoticComponent<any>;
308
+ Castle: react.ForwardRefExoticComponent<any>;
309
+ Cat: react.ForwardRefExoticComponent<any>;
310
+ Cctv: react.ForwardRefExoticComponent<any>;
311
+ ChartArea: react.ForwardRefExoticComponent<any>;
312
+ ChartBar: react.ForwardRefExoticComponent<any>;
313
+ ChartBarBig: react.ForwardRefExoticComponent<any>;
314
+ ChartBarDecreasing: react.ForwardRefExoticComponent<any>;
315
+ ChartBarIncreasing: react.ForwardRefExoticComponent<any>;
316
+ ChartBarStacked: react.ForwardRefExoticComponent<any>;
317
+ ChartCandlestick: react.ForwardRefExoticComponent<any>;
318
+ ChartColumn: react.ForwardRefExoticComponent<any>;
319
+ ChartColumnBig: react.ForwardRefExoticComponent<any>;
320
+ ChartColumnDecreasing: react.ForwardRefExoticComponent<any>;
321
+ ChartColumnIncreasing: react.ForwardRefExoticComponent<any>;
322
+ ChartColumnStacked: react.ForwardRefExoticComponent<any>;
323
+ ChartGantt: react.ForwardRefExoticComponent<any>;
324
+ ChartLine: react.ForwardRefExoticComponent<any>;
325
+ ChartNetwork: react.ForwardRefExoticComponent<any>;
326
+ ChartNoAxesColumn: react.ForwardRefExoticComponent<any>;
327
+ ChartNoAxesColumnDecreasing: react.ForwardRefExoticComponent<any>;
328
+ ChartNoAxesColumnIncreasing: react.ForwardRefExoticComponent<any>;
329
+ ChartNoAxesCombined: react.ForwardRefExoticComponent<any>;
330
+ ChartNoAxesGantt: react.ForwardRefExoticComponent<any>;
331
+ ChartPie: react.ForwardRefExoticComponent<any>;
332
+ ChartScatter: react.ForwardRefExoticComponent<any>;
333
+ ChartSpline: react.ForwardRefExoticComponent<any>;
334
+ Check: react.ForwardRefExoticComponent<any>;
335
+ CheckCheck: react.ForwardRefExoticComponent<any>;
336
+ ChefHat: react.ForwardRefExoticComponent<any>;
337
+ Cherry: react.ForwardRefExoticComponent<any>;
338
+ ChevronDown: react.ForwardRefExoticComponent<any>;
339
+ ChevronFirst: react.ForwardRefExoticComponent<any>;
340
+ ChevronLast: react.ForwardRefExoticComponent<any>;
341
+ ChevronLeft: react.ForwardRefExoticComponent<any>;
342
+ ChevronRight: react.ForwardRefExoticComponent<any>;
343
+ ChevronUp: react.ForwardRefExoticComponent<any>;
344
+ ChevronsDown: react.ForwardRefExoticComponent<any>;
345
+ ChevronsDownUp: react.ForwardRefExoticComponent<any>;
346
+ ChevronsLeft: react.ForwardRefExoticComponent<any>;
347
+ ChevronsLeftRight: react.ForwardRefExoticComponent<any>;
348
+ ChevronsLeftRightEllipsis: react.ForwardRefExoticComponent<any>;
349
+ ChevronsRight: react.ForwardRefExoticComponent<any>;
350
+ ChevronsRightLeft: react.ForwardRefExoticComponent<any>;
351
+ ChevronsUp: react.ForwardRefExoticComponent<any>;
352
+ ChevronsUpDown: react.ForwardRefExoticComponent<any>;
353
+ Chrome: react.ForwardRefExoticComponent<any>;
354
+ Church: react.ForwardRefExoticComponent<any>;
355
+ Cigarette: react.ForwardRefExoticComponent<any>;
356
+ CigaretteOff: react.ForwardRefExoticComponent<any>;
357
+ Circle: react.ForwardRefExoticComponent<any>;
358
+ CircleAlert: react.ForwardRefExoticComponent<any>;
359
+ CircleArrowDown: react.ForwardRefExoticComponent<any>;
360
+ CircleArrowLeft: react.ForwardRefExoticComponent<any>;
361
+ CircleArrowOutDownLeft: react.ForwardRefExoticComponent<any>;
362
+ CircleArrowOutDownRight: react.ForwardRefExoticComponent<any>;
363
+ CircleArrowOutUpLeft: react.ForwardRefExoticComponent<any>;
364
+ CircleArrowOutUpRight: react.ForwardRefExoticComponent<any>;
365
+ CircleArrowRight: react.ForwardRefExoticComponent<any>;
366
+ CircleArrowUp: react.ForwardRefExoticComponent<any>;
367
+ CircleCheck: react.ForwardRefExoticComponent<any>;
368
+ CircleCheckBig: react.ForwardRefExoticComponent<any>;
369
+ CircleChevronDown: react.ForwardRefExoticComponent<any>;
370
+ CircleChevronLeft: react.ForwardRefExoticComponent<any>;
371
+ CircleChevronRight: react.ForwardRefExoticComponent<any>;
372
+ CircleChevronUp: react.ForwardRefExoticComponent<any>;
373
+ CircleDashed: react.ForwardRefExoticComponent<any>;
374
+ CircleDivide: react.ForwardRefExoticComponent<any>;
375
+ CircleDollarSign: react.ForwardRefExoticComponent<any>;
376
+ CircleDot: react.ForwardRefExoticComponent<any>;
377
+ CircleDotDashed: react.ForwardRefExoticComponent<any>;
378
+ CircleEllipsis: react.ForwardRefExoticComponent<any>;
379
+ CircleEqual: react.ForwardRefExoticComponent<any>;
380
+ CircleFadingArrowUp: react.ForwardRefExoticComponent<any>;
381
+ CircleFadingPlus: react.ForwardRefExoticComponent<any>;
382
+ CircleGauge: react.ForwardRefExoticComponent<any>;
383
+ CircleHelp: react.ForwardRefExoticComponent<any>;
384
+ CircleMinus: react.ForwardRefExoticComponent<any>;
385
+ CircleOff: react.ForwardRefExoticComponent<any>;
386
+ CircleParking: react.ForwardRefExoticComponent<any>;
387
+ CircleParkingOff: react.ForwardRefExoticComponent<any>;
388
+ CirclePause: react.ForwardRefExoticComponent<any>;
389
+ CirclePercent: react.ForwardRefExoticComponent<any>;
390
+ CirclePlay: react.ForwardRefExoticComponent<any>;
391
+ CirclePlus: react.ForwardRefExoticComponent<any>;
392
+ CirclePower: react.ForwardRefExoticComponent<any>;
393
+ CircleSlash: react.ForwardRefExoticComponent<any>;
394
+ CircleSlash2: react.ForwardRefExoticComponent<any>;
395
+ CircleStop: react.ForwardRefExoticComponent<any>;
396
+ CircleUser: react.ForwardRefExoticComponent<any>;
397
+ CircleUserRound: react.ForwardRefExoticComponent<any>;
398
+ CircleX: react.ForwardRefExoticComponent<any>;
399
+ CircuitBoard: react.ForwardRefExoticComponent<any>;
400
+ Citrus: react.ForwardRefExoticComponent<any>;
401
+ Clapperboard: react.ForwardRefExoticComponent<any>;
402
+ Clipboard: react.ForwardRefExoticComponent<any>;
403
+ ClipboardCheck: react.ForwardRefExoticComponent<any>;
404
+ ClipboardCopy: react.ForwardRefExoticComponent<any>;
405
+ ClipboardList: react.ForwardRefExoticComponent<any>;
406
+ ClipboardMinus: react.ForwardRefExoticComponent<any>;
407
+ ClipboardPaste: react.ForwardRefExoticComponent<any>;
408
+ ClipboardPen: react.ForwardRefExoticComponent<any>;
409
+ ClipboardPenLine: react.ForwardRefExoticComponent<any>;
410
+ ClipboardPlus: react.ForwardRefExoticComponent<any>;
411
+ ClipboardType: react.ForwardRefExoticComponent<any>;
412
+ ClipboardX: react.ForwardRefExoticComponent<any>;
413
+ Clock: react.ForwardRefExoticComponent<any>;
414
+ Clock1: react.ForwardRefExoticComponent<any>;
415
+ Clock10: react.ForwardRefExoticComponent<any>;
416
+ Clock11: react.ForwardRefExoticComponent<any>;
417
+ Clock12: react.ForwardRefExoticComponent<any>;
418
+ Clock2: react.ForwardRefExoticComponent<any>;
419
+ Clock3: react.ForwardRefExoticComponent<any>;
420
+ Clock4: react.ForwardRefExoticComponent<any>;
421
+ Clock5: react.ForwardRefExoticComponent<any>;
422
+ Clock6: react.ForwardRefExoticComponent<any>;
423
+ Clock7: react.ForwardRefExoticComponent<any>;
424
+ Clock8: react.ForwardRefExoticComponent<any>;
425
+ Clock9: react.ForwardRefExoticComponent<any>;
426
+ ClockArrowDown: react.ForwardRefExoticComponent<any>;
427
+ ClockArrowUp: react.ForwardRefExoticComponent<any>;
428
+ Cloud: react.ForwardRefExoticComponent<any>;
429
+ CloudCog: react.ForwardRefExoticComponent<any>;
430
+ CloudDownload: react.ForwardRefExoticComponent<any>;
431
+ CloudDrizzle: react.ForwardRefExoticComponent<any>;
432
+ CloudFog: react.ForwardRefExoticComponent<any>;
433
+ CloudHail: react.ForwardRefExoticComponent<any>;
434
+ CloudLightning: react.ForwardRefExoticComponent<any>;
435
+ CloudMoon: react.ForwardRefExoticComponent<any>;
436
+ CloudMoonRain: react.ForwardRefExoticComponent<any>;
437
+ CloudOff: react.ForwardRefExoticComponent<any>;
438
+ CloudRain: react.ForwardRefExoticComponent<any>;
439
+ CloudRainWind: react.ForwardRefExoticComponent<any>;
440
+ CloudSnow: react.ForwardRefExoticComponent<any>;
441
+ CloudSun: react.ForwardRefExoticComponent<any>;
442
+ CloudSunRain: react.ForwardRefExoticComponent<any>;
443
+ CloudUpload: react.ForwardRefExoticComponent<any>;
444
+ Cloudy: react.ForwardRefExoticComponent<any>;
445
+ Clover: react.ForwardRefExoticComponent<any>;
446
+ Club: react.ForwardRefExoticComponent<any>;
447
+ Code: react.ForwardRefExoticComponent<any>;
448
+ CodeXml: react.ForwardRefExoticComponent<any>;
449
+ Codepen: react.ForwardRefExoticComponent<any>;
450
+ Codesandbox: react.ForwardRefExoticComponent<any>;
451
+ Coffee: react.ForwardRefExoticComponent<any>;
452
+ Cog: react.ForwardRefExoticComponent<any>;
453
+ Coins: react.ForwardRefExoticComponent<any>;
454
+ Columns2: react.ForwardRefExoticComponent<any>;
455
+ Columns3: react.ForwardRefExoticComponent<any>;
456
+ Columns4: react.ForwardRefExoticComponent<any>;
457
+ Combine: react.ForwardRefExoticComponent<any>;
458
+ Command: react.ForwardRefExoticComponent<any>;
459
+ Compass: react.ForwardRefExoticComponent<any>;
460
+ Component: react.ForwardRefExoticComponent<any>;
461
+ Computer: react.ForwardRefExoticComponent<any>;
462
+ ConciergeBell: react.ForwardRefExoticComponent<any>;
463
+ Cone: react.ForwardRefExoticComponent<any>;
464
+ Construction: react.ForwardRefExoticComponent<any>;
465
+ Contact: react.ForwardRefExoticComponent<any>;
466
+ ContactRound: react.ForwardRefExoticComponent<any>;
467
+ Container: react.ForwardRefExoticComponent<any>;
468
+ Contrast: react.ForwardRefExoticComponent<any>;
469
+ Cookie: react.ForwardRefExoticComponent<any>;
470
+ CookingPot: react.ForwardRefExoticComponent<any>;
471
+ Copy: react.ForwardRefExoticComponent<any>;
472
+ CopyCheck: react.ForwardRefExoticComponent<any>;
473
+ CopyMinus: react.ForwardRefExoticComponent<any>;
474
+ CopyPlus: react.ForwardRefExoticComponent<any>;
475
+ CopySlash: react.ForwardRefExoticComponent<any>;
476
+ CopyX: react.ForwardRefExoticComponent<any>;
477
+ Copyleft: react.ForwardRefExoticComponent<any>;
478
+ Copyright: react.ForwardRefExoticComponent<any>;
479
+ CornerDownLeft: react.ForwardRefExoticComponent<any>;
480
+ CornerDownRight: react.ForwardRefExoticComponent<any>;
481
+ CornerLeftDown: react.ForwardRefExoticComponent<any>;
482
+ CornerLeftUp: react.ForwardRefExoticComponent<any>;
483
+ CornerRightDown: react.ForwardRefExoticComponent<any>;
484
+ CornerRightUp: react.ForwardRefExoticComponent<any>;
485
+ CornerUpLeft: react.ForwardRefExoticComponent<any>;
486
+ CornerUpRight: react.ForwardRefExoticComponent<any>;
487
+ Cpu: react.ForwardRefExoticComponent<any>;
488
+ CreativeCommons: react.ForwardRefExoticComponent<any>;
489
+ CreditCard: react.ForwardRefExoticComponent<any>;
490
+ Croissant: react.ForwardRefExoticComponent<any>;
491
+ Crop: react.ForwardRefExoticComponent<any>;
492
+ Cross: react.ForwardRefExoticComponent<any>;
493
+ Crosshair: react.ForwardRefExoticComponent<any>;
494
+ Crown: react.ForwardRefExoticComponent<any>;
495
+ Cuboid: react.ForwardRefExoticComponent<any>;
496
+ CupSoda: react.ForwardRefExoticComponent<any>;
497
+ Currency: react.ForwardRefExoticComponent<any>;
498
+ Cylinder: react.ForwardRefExoticComponent<any>;
499
+ Dam: react.ForwardRefExoticComponent<any>;
500
+ Database: react.ForwardRefExoticComponent<any>;
501
+ DatabaseBackup: react.ForwardRefExoticComponent<any>;
502
+ DatabaseZap: react.ForwardRefExoticComponent<any>;
503
+ Delete: react.ForwardRefExoticComponent<any>;
504
+ Dessert: react.ForwardRefExoticComponent<any>;
505
+ Diameter: react.ForwardRefExoticComponent<any>;
506
+ Diamond: react.ForwardRefExoticComponent<any>;
507
+ DiamondMinus: react.ForwardRefExoticComponent<any>;
508
+ DiamondPercent: react.ForwardRefExoticComponent<any>;
509
+ DiamondPlus: react.ForwardRefExoticComponent<any>;
510
+ Dice1: react.ForwardRefExoticComponent<any>;
511
+ Dice2: react.ForwardRefExoticComponent<any>;
512
+ Dice3: react.ForwardRefExoticComponent<any>;
513
+ Dice4: react.ForwardRefExoticComponent<any>;
514
+ Dice5: react.ForwardRefExoticComponent<any>;
515
+ Dice6: react.ForwardRefExoticComponent<any>;
516
+ Dices: react.ForwardRefExoticComponent<any>;
517
+ Diff: react.ForwardRefExoticComponent<any>;
518
+ Disc: react.ForwardRefExoticComponent<any>;
519
+ Disc2: react.ForwardRefExoticComponent<any>;
520
+ Disc3: react.ForwardRefExoticComponent<any>;
521
+ DiscAlbum: react.ForwardRefExoticComponent<any>;
522
+ Divide: react.ForwardRefExoticComponent<any>;
523
+ Dna: react.ForwardRefExoticComponent<any>;
524
+ DnaOff: react.ForwardRefExoticComponent<any>;
525
+ Dock: react.ForwardRefExoticComponent<any>;
526
+ Dog: react.ForwardRefExoticComponent<any>;
527
+ DollarSign: react.ForwardRefExoticComponent<any>;
528
+ Donut: react.ForwardRefExoticComponent<any>;
529
+ DoorClosed: react.ForwardRefExoticComponent<any>;
530
+ DoorOpen: react.ForwardRefExoticComponent<any>;
531
+ Dot: react.ForwardRefExoticComponent<any>;
532
+ Download: react.ForwardRefExoticComponent<any>;
533
+ DraftingCompass: react.ForwardRefExoticComponent<any>;
534
+ Drama: react.ForwardRefExoticComponent<any>;
535
+ Dribbble: react.ForwardRefExoticComponent<any>;
536
+ Drill: react.ForwardRefExoticComponent<any>;
537
+ Droplet: react.ForwardRefExoticComponent<any>;
538
+ Droplets: react.ForwardRefExoticComponent<any>;
539
+ Drum: react.ForwardRefExoticComponent<any>;
540
+ Drumstick: react.ForwardRefExoticComponent<any>;
541
+ Dumbbell: react.ForwardRefExoticComponent<any>;
542
+ Ear: react.ForwardRefExoticComponent<any>;
543
+ EarOff: react.ForwardRefExoticComponent<any>;
544
+ Earth: react.ForwardRefExoticComponent<any>;
545
+ EarthLock: react.ForwardRefExoticComponent<any>;
546
+ Eclipse: react.ForwardRefExoticComponent<any>;
547
+ Egg: react.ForwardRefExoticComponent<any>;
548
+ EggFried: react.ForwardRefExoticComponent<any>;
549
+ EggOff: react.ForwardRefExoticComponent<any>;
550
+ Ellipsis: react.ForwardRefExoticComponent<any>;
551
+ EllipsisVertical: react.ForwardRefExoticComponent<any>;
552
+ Equal: react.ForwardRefExoticComponent<any>;
553
+ EqualNot: react.ForwardRefExoticComponent<any>;
554
+ Eraser: react.ForwardRefExoticComponent<any>;
555
+ EthernetPort: react.ForwardRefExoticComponent<any>;
556
+ Euro: react.ForwardRefExoticComponent<any>;
557
+ Expand: react.ForwardRefExoticComponent<any>;
558
+ ExternalLink: react.ForwardRefExoticComponent<any>;
559
+ Eye: react.ForwardRefExoticComponent<any>;
560
+ EyeOff: react.ForwardRefExoticComponent<any>;
561
+ Facebook: react.ForwardRefExoticComponent<any>;
562
+ Factory: react.ForwardRefExoticComponent<any>;
563
+ Fan: react.ForwardRefExoticComponent<any>;
564
+ FastForward: react.ForwardRefExoticComponent<any>;
565
+ Feather: react.ForwardRefExoticComponent<any>;
566
+ Fence: react.ForwardRefExoticComponent<any>;
567
+ FerrisWheel: react.ForwardRefExoticComponent<any>;
568
+ Figma: react.ForwardRefExoticComponent<any>;
569
+ File: react.ForwardRefExoticComponent<any>;
570
+ FileArchive: react.ForwardRefExoticComponent<any>;
571
+ FileAudio: react.ForwardRefExoticComponent<any>;
572
+ FileAudio2: react.ForwardRefExoticComponent<any>;
573
+ FileAxis3d: react.ForwardRefExoticComponent<any>;
574
+ FileBadge: react.ForwardRefExoticComponent<any>;
575
+ FileBadge2: react.ForwardRefExoticComponent<any>;
576
+ FileBox: react.ForwardRefExoticComponent<any>;
577
+ FileChartColumn: react.ForwardRefExoticComponent<any>;
578
+ FileChartColumnIncreasing: react.ForwardRefExoticComponent<any>;
579
+ FileChartLine: react.ForwardRefExoticComponent<any>;
580
+ FileChartPie: react.ForwardRefExoticComponent<any>;
581
+ FileCheck: react.ForwardRefExoticComponent<any>;
582
+ FileCheck2: react.ForwardRefExoticComponent<any>;
583
+ FileClock: react.ForwardRefExoticComponent<any>;
584
+ FileCode: react.ForwardRefExoticComponent<any>;
585
+ FileCode2: react.ForwardRefExoticComponent<any>;
586
+ FileCog: react.ForwardRefExoticComponent<any>;
587
+ FileDiff: react.ForwardRefExoticComponent<any>;
588
+ FileDigit: react.ForwardRefExoticComponent<any>;
589
+ FileDown: react.ForwardRefExoticComponent<any>;
590
+ FileHeart: react.ForwardRefExoticComponent<any>;
591
+ FileImage: react.ForwardRefExoticComponent<any>;
592
+ FileInput: react.ForwardRefExoticComponent<any>;
593
+ FileJson: react.ForwardRefExoticComponent<any>;
594
+ FileJson2: react.ForwardRefExoticComponent<any>;
595
+ FileKey: react.ForwardRefExoticComponent<any>;
596
+ FileKey2: react.ForwardRefExoticComponent<any>;
597
+ FileLock: react.ForwardRefExoticComponent<any>;
598
+ FileLock2: react.ForwardRefExoticComponent<any>;
599
+ FileMinus: react.ForwardRefExoticComponent<any>;
600
+ FileMinus2: react.ForwardRefExoticComponent<any>;
601
+ FileMusic: react.ForwardRefExoticComponent<any>;
602
+ FileOutput: react.ForwardRefExoticComponent<any>;
603
+ FilePen: react.ForwardRefExoticComponent<any>;
604
+ FilePenLine: react.ForwardRefExoticComponent<any>;
605
+ FilePlus: react.ForwardRefExoticComponent<any>;
606
+ FilePlus2: react.ForwardRefExoticComponent<any>;
607
+ FileQuestion: react.ForwardRefExoticComponent<any>;
608
+ FileScan: react.ForwardRefExoticComponent<any>;
609
+ FileSearch: react.ForwardRefExoticComponent<any>;
610
+ FileSearch2: react.ForwardRefExoticComponent<any>;
611
+ FileSliders: react.ForwardRefExoticComponent<any>;
612
+ FileSpreadsheet: react.ForwardRefExoticComponent<any>;
613
+ FileStack: react.ForwardRefExoticComponent<any>;
614
+ FileSymlink: react.ForwardRefExoticComponent<any>;
615
+ FileTerminal: react.ForwardRefExoticComponent<any>;
616
+ FileText: react.ForwardRefExoticComponent<any>;
617
+ FileType: react.ForwardRefExoticComponent<any>;
618
+ FileType2: react.ForwardRefExoticComponent<any>;
619
+ FileUp: react.ForwardRefExoticComponent<any>;
620
+ FileVideo: react.ForwardRefExoticComponent<any>;
621
+ FileVideo2: react.ForwardRefExoticComponent<any>;
622
+ FileVolume: react.ForwardRefExoticComponent<any>;
623
+ FileVolume2: react.ForwardRefExoticComponent<any>;
624
+ FileWarning: react.ForwardRefExoticComponent<any>;
625
+ FileX: react.ForwardRefExoticComponent<any>;
626
+ FileX2: react.ForwardRefExoticComponent<any>;
627
+ Files: react.ForwardRefExoticComponent<any>;
628
+ Film: react.ForwardRefExoticComponent<any>;
629
+ Filter: react.ForwardRefExoticComponent<any>;
630
+ FilterX: react.ForwardRefExoticComponent<any>;
631
+ Fingerprint: react.ForwardRefExoticComponent<any>;
632
+ FireExtinguisher: react.ForwardRefExoticComponent<any>;
633
+ Fish: react.ForwardRefExoticComponent<any>;
634
+ FishOff: react.ForwardRefExoticComponent<any>;
635
+ FishSymbol: react.ForwardRefExoticComponent<any>;
636
+ Flag: react.ForwardRefExoticComponent<any>;
637
+ FlagOff: react.ForwardRefExoticComponent<any>;
638
+ FlagTriangleLeft: react.ForwardRefExoticComponent<any>;
639
+ FlagTriangleRight: react.ForwardRefExoticComponent<any>;
640
+ Flame: react.ForwardRefExoticComponent<any>;
641
+ FlameKindling: react.ForwardRefExoticComponent<any>;
642
+ Flashlight: react.ForwardRefExoticComponent<any>;
643
+ FlashlightOff: react.ForwardRefExoticComponent<any>;
644
+ FlaskConical: react.ForwardRefExoticComponent<any>;
645
+ FlaskConicalOff: react.ForwardRefExoticComponent<any>;
646
+ FlaskRound: react.ForwardRefExoticComponent<any>;
647
+ FlipHorizontal: react.ForwardRefExoticComponent<any>;
648
+ FlipHorizontal2: react.ForwardRefExoticComponent<any>;
649
+ FlipVertical: react.ForwardRefExoticComponent<any>;
650
+ FlipVertical2: react.ForwardRefExoticComponent<any>;
651
+ Flower: react.ForwardRefExoticComponent<any>;
652
+ Flower2: react.ForwardRefExoticComponent<any>;
653
+ Focus: react.ForwardRefExoticComponent<any>;
654
+ FoldHorizontal: react.ForwardRefExoticComponent<any>;
655
+ FoldVertical: react.ForwardRefExoticComponent<any>;
656
+ Folder: react.ForwardRefExoticComponent<any>;
657
+ FolderArchive: react.ForwardRefExoticComponent<any>;
658
+ FolderCheck: react.ForwardRefExoticComponent<any>;
659
+ FolderClock: react.ForwardRefExoticComponent<any>;
660
+ FolderClosed: react.ForwardRefExoticComponent<any>;
661
+ FolderCode: react.ForwardRefExoticComponent<any>;
662
+ FolderCog: react.ForwardRefExoticComponent<any>;
663
+ FolderDot: react.ForwardRefExoticComponent<any>;
664
+ FolderDown: react.ForwardRefExoticComponent<any>;
665
+ FolderGit: react.ForwardRefExoticComponent<any>;
666
+ FolderGit2: react.ForwardRefExoticComponent<any>;
667
+ FolderHeart: react.ForwardRefExoticComponent<any>;
668
+ FolderInput: react.ForwardRefExoticComponent<any>;
669
+ FolderKanban: react.ForwardRefExoticComponent<any>;
670
+ FolderKey: react.ForwardRefExoticComponent<any>;
671
+ FolderLock: react.ForwardRefExoticComponent<any>;
672
+ FolderMinus: react.ForwardRefExoticComponent<any>;
673
+ FolderOpen: react.ForwardRefExoticComponent<any>;
674
+ FolderOpenDot: react.ForwardRefExoticComponent<any>;
675
+ FolderOutput: react.ForwardRefExoticComponent<any>;
676
+ FolderPen: react.ForwardRefExoticComponent<any>;
677
+ FolderPlus: react.ForwardRefExoticComponent<any>;
678
+ FolderRoot: react.ForwardRefExoticComponent<any>;
679
+ FolderSearch: react.ForwardRefExoticComponent<any>;
680
+ FolderSearch2: react.ForwardRefExoticComponent<any>;
681
+ FolderSymlink: react.ForwardRefExoticComponent<any>;
682
+ FolderSync: react.ForwardRefExoticComponent<any>;
683
+ FolderTree: react.ForwardRefExoticComponent<any>;
684
+ FolderUp: react.ForwardRefExoticComponent<any>;
685
+ FolderX: react.ForwardRefExoticComponent<any>;
686
+ Folders: react.ForwardRefExoticComponent<any>;
687
+ Footprints: react.ForwardRefExoticComponent<any>;
688
+ Forklift: react.ForwardRefExoticComponent<any>;
689
+ Forward: react.ForwardRefExoticComponent<any>;
690
+ Frame: react.ForwardRefExoticComponent<any>;
691
+ Framer: react.ForwardRefExoticComponent<any>;
692
+ Frown: react.ForwardRefExoticComponent<any>;
693
+ Fuel: react.ForwardRefExoticComponent<any>;
694
+ Fullscreen: react.ForwardRefExoticComponent<any>;
695
+ GalleryHorizontal: react.ForwardRefExoticComponent<any>;
696
+ GalleryHorizontalEnd: react.ForwardRefExoticComponent<any>;
697
+ GalleryThumbnails: react.ForwardRefExoticComponent<any>;
698
+ GalleryVertical: react.ForwardRefExoticComponent<any>;
699
+ GalleryVerticalEnd: react.ForwardRefExoticComponent<any>;
700
+ Gamepad: react.ForwardRefExoticComponent<any>;
701
+ Gamepad2: react.ForwardRefExoticComponent<any>;
702
+ Gauge: react.ForwardRefExoticComponent<any>;
703
+ Gavel: react.ForwardRefExoticComponent<any>;
704
+ Gem: react.ForwardRefExoticComponent<any>;
705
+ Ghost: react.ForwardRefExoticComponent<any>;
706
+ Gift: react.ForwardRefExoticComponent<any>;
707
+ GitBranch: react.ForwardRefExoticComponent<any>;
708
+ GitBranchPlus: react.ForwardRefExoticComponent<any>;
709
+ GitCommitHorizontal: react.ForwardRefExoticComponent<any>;
710
+ GitCommitVertical: react.ForwardRefExoticComponent<any>;
711
+ GitCompare: react.ForwardRefExoticComponent<any>;
712
+ GitCompareArrows: react.ForwardRefExoticComponent<any>;
713
+ GitFork: react.ForwardRefExoticComponent<any>;
714
+ GitGraph: react.ForwardRefExoticComponent<any>;
715
+ GitMerge: react.ForwardRefExoticComponent<any>;
716
+ GitPullRequest: react.ForwardRefExoticComponent<any>;
717
+ GitPullRequestArrow: react.ForwardRefExoticComponent<any>;
718
+ GitPullRequestClosed: react.ForwardRefExoticComponent<any>;
719
+ GitPullRequestCreate: react.ForwardRefExoticComponent<any>;
720
+ GitPullRequestCreateArrow: react.ForwardRefExoticComponent<any>;
721
+ GitPullRequestDraft: react.ForwardRefExoticComponent<any>;
722
+ Github: react.ForwardRefExoticComponent<any>;
723
+ Gitlab: react.ForwardRefExoticComponent<any>;
724
+ GlassWater: react.ForwardRefExoticComponent<any>;
725
+ Glasses: react.ForwardRefExoticComponent<any>;
726
+ Globe: react.ForwardRefExoticComponent<any>;
727
+ GlobeLock: react.ForwardRefExoticComponent<any>;
728
+ Goal: react.ForwardRefExoticComponent<any>;
729
+ Grab: react.ForwardRefExoticComponent<any>;
730
+ GraduationCap: react.ForwardRefExoticComponent<any>;
731
+ Grape: react.ForwardRefExoticComponent<any>;
732
+ Grid2x2: react.ForwardRefExoticComponent<any>;
733
+ Grid2x2Check: react.ForwardRefExoticComponent<any>;
734
+ Grid2x2X: react.ForwardRefExoticComponent<any>;
735
+ Grid3x3: react.ForwardRefExoticComponent<any>;
736
+ Grip: react.ForwardRefExoticComponent<any>;
737
+ GripHorizontal: react.ForwardRefExoticComponent<any>;
738
+ GripVertical: react.ForwardRefExoticComponent<any>;
739
+ Group: react.ForwardRefExoticComponent<any>;
740
+ Guitar: react.ForwardRefExoticComponent<any>;
741
+ Ham: react.ForwardRefExoticComponent<any>;
742
+ Hammer: react.ForwardRefExoticComponent<any>;
743
+ Hand: react.ForwardRefExoticComponent<any>;
744
+ HandCoins: react.ForwardRefExoticComponent<any>;
745
+ HandHeart: react.ForwardRefExoticComponent<any>;
746
+ HandHelping: react.ForwardRefExoticComponent<any>;
747
+ HandMetal: react.ForwardRefExoticComponent<any>;
748
+ HandPlatter: react.ForwardRefExoticComponent<any>;
749
+ Handshake: react.ForwardRefExoticComponent<any>;
750
+ HardDrive: react.ForwardRefExoticComponent<any>;
751
+ HardDriveDownload: react.ForwardRefExoticComponent<any>;
752
+ HardDriveUpload: react.ForwardRefExoticComponent<any>;
753
+ HardHat: react.ForwardRefExoticComponent<any>;
754
+ Hash: react.ForwardRefExoticComponent<any>;
755
+ Haze: react.ForwardRefExoticComponent<any>;
756
+ HdmiPort: react.ForwardRefExoticComponent<any>;
757
+ Heading: react.ForwardRefExoticComponent<any>;
758
+ Heading1: react.ForwardRefExoticComponent<any>;
759
+ Heading2: react.ForwardRefExoticComponent<any>;
760
+ Heading3: react.ForwardRefExoticComponent<any>;
761
+ Heading4: react.ForwardRefExoticComponent<any>;
762
+ Heading5: react.ForwardRefExoticComponent<any>;
763
+ Heading6: react.ForwardRefExoticComponent<any>;
764
+ Headphones: react.ForwardRefExoticComponent<any>;
765
+ Headset: react.ForwardRefExoticComponent<any>;
766
+ Heart: react.ForwardRefExoticComponent<any>;
767
+ HeartCrack: react.ForwardRefExoticComponent<any>;
768
+ HeartHandshake: react.ForwardRefExoticComponent<any>;
769
+ HeartOff: react.ForwardRefExoticComponent<any>;
770
+ HeartPulse: react.ForwardRefExoticComponent<any>;
771
+ Heater: react.ForwardRefExoticComponent<any>;
772
+ Hexagon: react.ForwardRefExoticComponent<any>;
773
+ Highlighter: react.ForwardRefExoticComponent<any>;
774
+ History: react.ForwardRefExoticComponent<any>;
775
+ Hop: react.ForwardRefExoticComponent<any>;
776
+ HopOff: react.ForwardRefExoticComponent<any>;
777
+ Hospital: react.ForwardRefExoticComponent<any>;
778
+ Hotel: react.ForwardRefExoticComponent<any>;
779
+ Hourglass: react.ForwardRefExoticComponent<any>;
780
+ House: react.ForwardRefExoticComponent<any>;
781
+ HousePlug: react.ForwardRefExoticComponent<any>;
782
+ HousePlus: react.ForwardRefExoticComponent<any>;
783
+ IceCreamBowl: react.ForwardRefExoticComponent<any>;
784
+ IceCreamCone: react.ForwardRefExoticComponent<any>;
785
+ IdCard: react.ForwardRefExoticComponent<any>;
786
+ Image: react.ForwardRefExoticComponent<any>;
787
+ ImageDown: react.ForwardRefExoticComponent<any>;
788
+ ImageMinus: react.ForwardRefExoticComponent<any>;
789
+ ImageOff: react.ForwardRefExoticComponent<any>;
790
+ ImagePlay: react.ForwardRefExoticComponent<any>;
791
+ ImagePlus: react.ForwardRefExoticComponent<any>;
792
+ ImageUp: react.ForwardRefExoticComponent<any>;
793
+ Images: react.ForwardRefExoticComponent<any>;
794
+ Import: react.ForwardRefExoticComponent<any>;
795
+ Inbox: react.ForwardRefExoticComponent<any>;
796
+ IndentDecrease: react.ForwardRefExoticComponent<any>;
797
+ IndentIncrease: react.ForwardRefExoticComponent<any>;
798
+ IndianRupee: react.ForwardRefExoticComponent<any>;
799
+ Infinity: react.ForwardRefExoticComponent<any>;
800
+ Info: react.ForwardRefExoticComponent<any>;
801
+ InspectionPanel: react.ForwardRefExoticComponent<any>;
802
+ Instagram: react.ForwardRefExoticComponent<any>;
803
+ Italic: react.ForwardRefExoticComponent<any>;
804
+ IterationCcw: react.ForwardRefExoticComponent<any>;
805
+ IterationCw: react.ForwardRefExoticComponent<any>;
806
+ JapaneseYen: react.ForwardRefExoticComponent<any>;
807
+ Joystick: react.ForwardRefExoticComponent<any>;
808
+ Kanban: react.ForwardRefExoticComponent<any>;
809
+ Key: react.ForwardRefExoticComponent<any>;
810
+ KeyRound: react.ForwardRefExoticComponent<any>;
811
+ KeySquare: react.ForwardRefExoticComponent<any>;
812
+ Keyboard: react.ForwardRefExoticComponent<any>;
813
+ KeyboardMusic: react.ForwardRefExoticComponent<any>;
814
+ KeyboardOff: react.ForwardRefExoticComponent<any>;
815
+ Lamp: react.ForwardRefExoticComponent<any>;
816
+ LampCeiling: react.ForwardRefExoticComponent<any>;
817
+ LampDesk: react.ForwardRefExoticComponent<any>;
818
+ LampFloor: react.ForwardRefExoticComponent<any>;
819
+ LampWallDown: react.ForwardRefExoticComponent<any>;
820
+ LampWallUp: react.ForwardRefExoticComponent<any>;
821
+ LandPlot: react.ForwardRefExoticComponent<any>;
822
+ Landmark: react.ForwardRefExoticComponent<any>;
823
+ Languages: react.ForwardRefExoticComponent<any>;
824
+ Laptop: react.ForwardRefExoticComponent<any>;
825
+ LaptopMinimal: react.ForwardRefExoticComponent<any>;
826
+ Lasso: react.ForwardRefExoticComponent<any>;
827
+ LassoSelect: react.ForwardRefExoticComponent<any>;
828
+ Laugh: react.ForwardRefExoticComponent<any>;
829
+ Layers: react.ForwardRefExoticComponent<any>;
830
+ Layers2: react.ForwardRefExoticComponent<any>;
831
+ Layers3: react.ForwardRefExoticComponent<any>;
832
+ LayoutDashboard: react.ForwardRefExoticComponent<any>;
833
+ LayoutGrid: react.ForwardRefExoticComponent<any>;
834
+ LayoutList: react.ForwardRefExoticComponent<any>;
835
+ LayoutPanelLeft: react.ForwardRefExoticComponent<any>;
836
+ LayoutPanelTop: react.ForwardRefExoticComponent<any>;
837
+ LayoutTemplate: react.ForwardRefExoticComponent<any>;
838
+ Leaf: react.ForwardRefExoticComponent<any>;
839
+ LeafyGreen: react.ForwardRefExoticComponent<any>;
840
+ Lectern: react.ForwardRefExoticComponent<any>;
841
+ LetterText: react.ForwardRefExoticComponent<any>;
842
+ Library: react.ForwardRefExoticComponent<any>;
843
+ LibraryBig: react.ForwardRefExoticComponent<any>;
844
+ LifeBuoy: react.ForwardRefExoticComponent<any>;
845
+ Ligature: react.ForwardRefExoticComponent<any>;
846
+ Lightbulb: react.ForwardRefExoticComponent<any>;
847
+ LightbulbOff: react.ForwardRefExoticComponent<any>;
848
+ Link: react.ForwardRefExoticComponent<any>;
849
+ Link2: react.ForwardRefExoticComponent<any>;
850
+ Link2Off: react.ForwardRefExoticComponent<any>;
851
+ Linkedin: react.ForwardRefExoticComponent<any>;
852
+ List: react.ForwardRefExoticComponent<any>;
853
+ ListCheck: react.ForwardRefExoticComponent<any>;
854
+ ListChecks: react.ForwardRefExoticComponent<any>;
855
+ ListCollapse: react.ForwardRefExoticComponent<any>;
856
+ ListEnd: react.ForwardRefExoticComponent<any>;
857
+ ListFilter: react.ForwardRefExoticComponent<any>;
858
+ ListMinus: react.ForwardRefExoticComponent<any>;
859
+ ListMusic: react.ForwardRefExoticComponent<any>;
860
+ ListOrdered: react.ForwardRefExoticComponent<any>;
861
+ ListPlus: react.ForwardRefExoticComponent<any>;
862
+ ListRestart: react.ForwardRefExoticComponent<any>;
863
+ ListStart: react.ForwardRefExoticComponent<any>;
864
+ ListTodo: react.ForwardRefExoticComponent<any>;
865
+ ListTree: react.ForwardRefExoticComponent<any>;
866
+ ListVideo: react.ForwardRefExoticComponent<any>;
867
+ ListX: react.ForwardRefExoticComponent<any>;
868
+ Loader: react.ForwardRefExoticComponent<any>;
869
+ LoaderCircle: react.ForwardRefExoticComponent<any>;
870
+ LoaderPinwheel: react.ForwardRefExoticComponent<any>;
871
+ Locate: react.ForwardRefExoticComponent<any>;
872
+ LocateFixed: react.ForwardRefExoticComponent<any>;
873
+ LocateOff: react.ForwardRefExoticComponent<any>;
874
+ Lock: react.ForwardRefExoticComponent<any>;
875
+ LockKeyhole: react.ForwardRefExoticComponent<any>;
876
+ LockKeyholeOpen: react.ForwardRefExoticComponent<any>;
877
+ LockOpen: react.ForwardRefExoticComponent<any>;
878
+ LogIn: react.ForwardRefExoticComponent<any>;
879
+ LogOut: react.ForwardRefExoticComponent<any>;
880
+ Logs: react.ForwardRefExoticComponent<any>;
881
+ Lollipop: react.ForwardRefExoticComponent<any>;
882
+ Luggage: react.ForwardRefExoticComponent<any>;
883
+ Magnet: react.ForwardRefExoticComponent<any>;
884
+ Mail: react.ForwardRefExoticComponent<any>;
885
+ MailCheck: react.ForwardRefExoticComponent<any>;
886
+ MailMinus: react.ForwardRefExoticComponent<any>;
887
+ MailOpen: react.ForwardRefExoticComponent<any>;
888
+ MailPlus: react.ForwardRefExoticComponent<any>;
889
+ MailQuestion: react.ForwardRefExoticComponent<any>;
890
+ MailSearch: react.ForwardRefExoticComponent<any>;
891
+ MailWarning: react.ForwardRefExoticComponent<any>;
892
+ MailX: react.ForwardRefExoticComponent<any>;
893
+ Mailbox: react.ForwardRefExoticComponent<any>;
894
+ Mails: react.ForwardRefExoticComponent<any>;
895
+ Map: react.ForwardRefExoticComponent<any>;
896
+ MapPin: react.ForwardRefExoticComponent<any>;
897
+ MapPinCheck: react.ForwardRefExoticComponent<any>;
898
+ MapPinCheckInside: react.ForwardRefExoticComponent<any>;
899
+ MapPinHouse: react.ForwardRefExoticComponent<any>;
900
+ MapPinMinus: react.ForwardRefExoticComponent<any>;
901
+ MapPinMinusInside: react.ForwardRefExoticComponent<any>;
902
+ MapPinOff: react.ForwardRefExoticComponent<any>;
903
+ MapPinPlus: react.ForwardRefExoticComponent<any>;
904
+ MapPinPlusInside: react.ForwardRefExoticComponent<any>;
905
+ MapPinX: react.ForwardRefExoticComponent<any>;
906
+ MapPinXInside: react.ForwardRefExoticComponent<any>;
907
+ MapPinned: react.ForwardRefExoticComponent<any>;
908
+ Martini: react.ForwardRefExoticComponent<any>;
909
+ Maximize: react.ForwardRefExoticComponent<any>;
910
+ Maximize2: react.ForwardRefExoticComponent<any>;
911
+ Medal: react.ForwardRefExoticComponent<any>;
912
+ Megaphone: react.ForwardRefExoticComponent<any>;
913
+ MegaphoneOff: react.ForwardRefExoticComponent<any>;
914
+ Meh: react.ForwardRefExoticComponent<any>;
915
+ MemoryStick: react.ForwardRefExoticComponent<any>;
916
+ Menu: react.ForwardRefExoticComponent<any>;
917
+ Merge: react.ForwardRefExoticComponent<any>;
918
+ MessageCircle: react.ForwardRefExoticComponent<any>;
919
+ MessageCircleCode: react.ForwardRefExoticComponent<any>;
920
+ MessageCircleDashed: react.ForwardRefExoticComponent<any>;
921
+ MessageCircleHeart: react.ForwardRefExoticComponent<any>;
922
+ MessageCircleMore: react.ForwardRefExoticComponent<any>;
923
+ MessageCircleOff: react.ForwardRefExoticComponent<any>;
924
+ MessageCirclePlus: react.ForwardRefExoticComponent<any>;
925
+ MessageCircleQuestion: react.ForwardRefExoticComponent<any>;
926
+ MessageCircleReply: react.ForwardRefExoticComponent<any>;
927
+ MessageCircleWarning: react.ForwardRefExoticComponent<any>;
928
+ MessageCircleX: react.ForwardRefExoticComponent<any>;
929
+ MessageSquare: react.ForwardRefExoticComponent<any>;
930
+ MessageSquareCode: react.ForwardRefExoticComponent<any>;
931
+ MessageSquareDashed: react.ForwardRefExoticComponent<any>;
932
+ MessageSquareDiff: react.ForwardRefExoticComponent<any>;
933
+ MessageSquareDot: react.ForwardRefExoticComponent<any>;
934
+ MessageSquareHeart: react.ForwardRefExoticComponent<any>;
935
+ MessageSquareMore: react.ForwardRefExoticComponent<any>;
936
+ MessageSquareOff: react.ForwardRefExoticComponent<any>;
937
+ MessageSquarePlus: react.ForwardRefExoticComponent<any>;
938
+ MessageSquareQuote: react.ForwardRefExoticComponent<any>;
939
+ MessageSquareReply: react.ForwardRefExoticComponent<any>;
940
+ MessageSquareShare: react.ForwardRefExoticComponent<any>;
941
+ MessageSquareText: react.ForwardRefExoticComponent<any>;
942
+ MessageSquareWarning: react.ForwardRefExoticComponent<any>;
943
+ MessageSquareX: react.ForwardRefExoticComponent<any>;
944
+ MessagesSquare: react.ForwardRefExoticComponent<any>;
945
+ Mic: react.ForwardRefExoticComponent<any>;
946
+ MicOff: react.ForwardRefExoticComponent<any>;
947
+ MicVocal: react.ForwardRefExoticComponent<any>;
948
+ Microchip: react.ForwardRefExoticComponent<any>;
949
+ Microscope: react.ForwardRefExoticComponent<any>;
950
+ Microwave: react.ForwardRefExoticComponent<any>;
951
+ Milestone: react.ForwardRefExoticComponent<any>;
952
+ Milk: react.ForwardRefExoticComponent<any>;
953
+ MilkOff: react.ForwardRefExoticComponent<any>;
954
+ Minimize: react.ForwardRefExoticComponent<any>;
955
+ Minimize2: react.ForwardRefExoticComponent<any>;
956
+ Minus: react.ForwardRefExoticComponent<any>;
957
+ Monitor: react.ForwardRefExoticComponent<any>;
958
+ MonitorCheck: react.ForwardRefExoticComponent<any>;
959
+ MonitorCog: react.ForwardRefExoticComponent<any>;
960
+ MonitorDot: react.ForwardRefExoticComponent<any>;
961
+ MonitorDown: react.ForwardRefExoticComponent<any>;
962
+ MonitorOff: react.ForwardRefExoticComponent<any>;
963
+ MonitorPause: react.ForwardRefExoticComponent<any>;
964
+ MonitorPlay: react.ForwardRefExoticComponent<any>;
965
+ MonitorSmartphone: react.ForwardRefExoticComponent<any>;
966
+ MonitorSpeaker: react.ForwardRefExoticComponent<any>;
967
+ MonitorStop: react.ForwardRefExoticComponent<any>;
968
+ MonitorUp: react.ForwardRefExoticComponent<any>;
969
+ MonitorX: react.ForwardRefExoticComponent<any>;
970
+ Moon: react.ForwardRefExoticComponent<any>;
971
+ MoonStar: react.ForwardRefExoticComponent<any>;
972
+ Mountain: react.ForwardRefExoticComponent<any>;
973
+ MountainSnow: react.ForwardRefExoticComponent<any>;
974
+ Mouse: react.ForwardRefExoticComponent<any>;
975
+ MouseOff: react.ForwardRefExoticComponent<any>;
976
+ MousePointer: react.ForwardRefExoticComponent<any>;
977
+ MousePointer2: react.ForwardRefExoticComponent<any>;
978
+ MousePointerBan: react.ForwardRefExoticComponent<any>;
979
+ MousePointerClick: react.ForwardRefExoticComponent<any>;
980
+ Move: react.ForwardRefExoticComponent<any>;
981
+ Move3d: react.ForwardRefExoticComponent<any>;
982
+ MoveDiagonal: react.ForwardRefExoticComponent<any>;
983
+ MoveDiagonal2: react.ForwardRefExoticComponent<any>;
984
+ MoveDown: react.ForwardRefExoticComponent<any>;
985
+ MoveDownLeft: react.ForwardRefExoticComponent<any>;
986
+ MoveDownRight: react.ForwardRefExoticComponent<any>;
987
+ MoveHorizontal: react.ForwardRefExoticComponent<any>;
988
+ MoveLeft: react.ForwardRefExoticComponent<any>;
989
+ MoveRight: react.ForwardRefExoticComponent<any>;
990
+ MoveUp: react.ForwardRefExoticComponent<any>;
991
+ MoveUpLeft: react.ForwardRefExoticComponent<any>;
992
+ MoveUpRight: react.ForwardRefExoticComponent<any>;
993
+ MoveVertical: react.ForwardRefExoticComponent<any>;
994
+ Music: react.ForwardRefExoticComponent<any>;
995
+ Music2: react.ForwardRefExoticComponent<any>;
996
+ Music3: react.ForwardRefExoticComponent<any>;
997
+ Music4: react.ForwardRefExoticComponent<any>;
998
+ Navigation: react.ForwardRefExoticComponent<any>;
999
+ Navigation2: react.ForwardRefExoticComponent<any>;
1000
+ Navigation2Off: react.ForwardRefExoticComponent<any>;
1001
+ NavigationOff: react.ForwardRefExoticComponent<any>;
1002
+ Network: react.ForwardRefExoticComponent<any>;
1003
+ Newspaper: react.ForwardRefExoticComponent<any>;
1004
+ Nfc: react.ForwardRefExoticComponent<any>;
1005
+ Notebook: react.ForwardRefExoticComponent<any>;
1006
+ NotebookPen: react.ForwardRefExoticComponent<any>;
1007
+ NotebookTabs: react.ForwardRefExoticComponent<any>;
1008
+ NotebookText: react.ForwardRefExoticComponent<any>;
1009
+ NotepadText: react.ForwardRefExoticComponent<any>;
1010
+ NotepadTextDashed: react.ForwardRefExoticComponent<any>;
1011
+ Nut: react.ForwardRefExoticComponent<any>;
1012
+ NutOff: react.ForwardRefExoticComponent<any>;
1013
+ Octagon: react.ForwardRefExoticComponent<any>;
1014
+ OctagonAlert: react.ForwardRefExoticComponent<any>;
1015
+ OctagonMinus: react.ForwardRefExoticComponent<any>;
1016
+ OctagonPause: react.ForwardRefExoticComponent<any>;
1017
+ OctagonX: react.ForwardRefExoticComponent<any>;
1018
+ Omega: react.ForwardRefExoticComponent<any>;
1019
+ Option: react.ForwardRefExoticComponent<any>;
1020
+ Orbit: react.ForwardRefExoticComponent<any>;
1021
+ Origami: react.ForwardRefExoticComponent<any>;
1022
+ Package: react.ForwardRefExoticComponent<any>;
1023
+ Package2: react.ForwardRefExoticComponent<any>;
1024
+ PackageCheck: react.ForwardRefExoticComponent<any>;
1025
+ PackageMinus: react.ForwardRefExoticComponent<any>;
1026
+ PackageOpen: react.ForwardRefExoticComponent<any>;
1027
+ PackagePlus: react.ForwardRefExoticComponent<any>;
1028
+ PackageSearch: react.ForwardRefExoticComponent<any>;
1029
+ PackageX: react.ForwardRefExoticComponent<any>;
1030
+ PaintBucket: react.ForwardRefExoticComponent<any>;
1031
+ PaintRoller: react.ForwardRefExoticComponent<any>;
1032
+ Paintbrush: react.ForwardRefExoticComponent<any>;
1033
+ PaintbrushVertical: react.ForwardRefExoticComponent<any>;
1034
+ Palette: react.ForwardRefExoticComponent<any>;
1035
+ PanelBottom: react.ForwardRefExoticComponent<any>;
1036
+ PanelBottomClose: react.ForwardRefExoticComponent<any>;
1037
+ PanelBottomDashed: react.ForwardRefExoticComponent<any>;
1038
+ PanelBottomOpen: react.ForwardRefExoticComponent<any>;
1039
+ PanelLeft: react.ForwardRefExoticComponent<any>;
1040
+ PanelLeftClose: react.ForwardRefExoticComponent<any>;
1041
+ PanelLeftDashed: react.ForwardRefExoticComponent<any>;
1042
+ PanelLeftOpen: react.ForwardRefExoticComponent<any>;
1043
+ PanelRight: react.ForwardRefExoticComponent<any>;
1044
+ PanelRightClose: react.ForwardRefExoticComponent<any>;
1045
+ PanelRightDashed: react.ForwardRefExoticComponent<any>;
1046
+ PanelRightOpen: react.ForwardRefExoticComponent<any>;
1047
+ PanelTop: react.ForwardRefExoticComponent<any>;
1048
+ PanelTopClose: react.ForwardRefExoticComponent<any>;
1049
+ PanelTopDashed: react.ForwardRefExoticComponent<any>;
1050
+ PanelTopOpen: react.ForwardRefExoticComponent<any>;
1051
+ PanelsLeftBottom: react.ForwardRefExoticComponent<any>;
1052
+ PanelsRightBottom: react.ForwardRefExoticComponent<any>;
1053
+ PanelsTopLeft: react.ForwardRefExoticComponent<any>;
1054
+ Paperclip: react.ForwardRefExoticComponent<any>;
1055
+ Parentheses: react.ForwardRefExoticComponent<any>;
1056
+ ParkingMeter: react.ForwardRefExoticComponent<any>;
1057
+ PartyPopper: react.ForwardRefExoticComponent<any>;
1058
+ Pause: react.ForwardRefExoticComponent<any>;
1059
+ PawPrint: react.ForwardRefExoticComponent<any>;
1060
+ PcCase: react.ForwardRefExoticComponent<any>;
1061
+ Pen: react.ForwardRefExoticComponent<any>;
1062
+ PenLine: react.ForwardRefExoticComponent<any>;
1063
+ PenOff: react.ForwardRefExoticComponent<any>;
1064
+ PenTool: react.ForwardRefExoticComponent<any>;
1065
+ Pencil: react.ForwardRefExoticComponent<any>;
1066
+ PencilLine: react.ForwardRefExoticComponent<any>;
1067
+ PencilOff: react.ForwardRefExoticComponent<any>;
1068
+ PencilRuler: react.ForwardRefExoticComponent<any>;
1069
+ Pentagon: react.ForwardRefExoticComponent<any>;
1070
+ Percent: react.ForwardRefExoticComponent<any>;
1071
+ PersonStanding: react.ForwardRefExoticComponent<any>;
1072
+ PhilippinePeso: react.ForwardRefExoticComponent<any>;
1073
+ Phone: react.ForwardRefExoticComponent<any>;
1074
+ PhoneCall: react.ForwardRefExoticComponent<any>;
1075
+ PhoneForwarded: react.ForwardRefExoticComponent<any>;
1076
+ PhoneIncoming: react.ForwardRefExoticComponent<any>;
1077
+ PhoneMissed: react.ForwardRefExoticComponent<any>;
1078
+ PhoneOff: react.ForwardRefExoticComponent<any>;
1079
+ PhoneOutgoing: react.ForwardRefExoticComponent<any>;
1080
+ Pi: react.ForwardRefExoticComponent<any>;
1081
+ Piano: react.ForwardRefExoticComponent<any>;
1082
+ Pickaxe: react.ForwardRefExoticComponent<any>;
1083
+ PictureInPicture: react.ForwardRefExoticComponent<any>;
1084
+ PictureInPicture2: react.ForwardRefExoticComponent<any>;
1085
+ PiggyBank: react.ForwardRefExoticComponent<any>;
1086
+ Pilcrow: react.ForwardRefExoticComponent<any>;
1087
+ PilcrowLeft: react.ForwardRefExoticComponent<any>;
1088
+ PilcrowRight: react.ForwardRefExoticComponent<any>;
1089
+ Pill: react.ForwardRefExoticComponent<any>;
1090
+ PillBottle: react.ForwardRefExoticComponent<any>;
1091
+ Pin: react.ForwardRefExoticComponent<any>;
1092
+ PinOff: react.ForwardRefExoticComponent<any>;
1093
+ Pipette: react.ForwardRefExoticComponent<any>;
1094
+ Pizza: react.ForwardRefExoticComponent<any>;
1095
+ Plane: react.ForwardRefExoticComponent<any>;
1096
+ PlaneLanding: react.ForwardRefExoticComponent<any>;
1097
+ PlaneTakeoff: react.ForwardRefExoticComponent<any>;
1098
+ Play: react.ForwardRefExoticComponent<any>;
1099
+ Plug: react.ForwardRefExoticComponent<any>;
1100
+ Plug2: react.ForwardRefExoticComponent<any>;
1101
+ PlugZap: react.ForwardRefExoticComponent<any>;
1102
+ Plus: react.ForwardRefExoticComponent<any>;
1103
+ Pocket: react.ForwardRefExoticComponent<any>;
1104
+ PocketKnife: react.ForwardRefExoticComponent<any>;
1105
+ Podcast: react.ForwardRefExoticComponent<any>;
1106
+ Pointer: react.ForwardRefExoticComponent<any>;
1107
+ PointerOff: react.ForwardRefExoticComponent<any>;
1108
+ Popcorn: react.ForwardRefExoticComponent<any>;
1109
+ Popsicle: react.ForwardRefExoticComponent<any>;
1110
+ PoundSterling: react.ForwardRefExoticComponent<any>;
1111
+ Power: react.ForwardRefExoticComponent<any>;
1112
+ PowerOff: react.ForwardRefExoticComponent<any>;
1113
+ Presentation: react.ForwardRefExoticComponent<any>;
1114
+ Printer: react.ForwardRefExoticComponent<any>;
1115
+ PrinterCheck: react.ForwardRefExoticComponent<any>;
1116
+ Projector: react.ForwardRefExoticComponent<any>;
1117
+ Proportions: react.ForwardRefExoticComponent<any>;
1118
+ Puzzle: react.ForwardRefExoticComponent<any>;
1119
+ Pyramid: react.ForwardRefExoticComponent<any>;
1120
+ QrCode: react.ForwardRefExoticComponent<any>;
1121
+ Quote: react.ForwardRefExoticComponent<any>;
1122
+ Rabbit: react.ForwardRefExoticComponent<any>;
1123
+ Radar: react.ForwardRefExoticComponent<any>;
1124
+ Radiation: react.ForwardRefExoticComponent<any>;
1125
+ Radical: react.ForwardRefExoticComponent<any>;
1126
+ Radio: react.ForwardRefExoticComponent<any>;
1127
+ RadioReceiver: react.ForwardRefExoticComponent<any>;
1128
+ RadioTower: react.ForwardRefExoticComponent<any>;
1129
+ Radius: react.ForwardRefExoticComponent<any>;
1130
+ RailSymbol: react.ForwardRefExoticComponent<any>;
1131
+ Rainbow: react.ForwardRefExoticComponent<any>;
1132
+ Rat: react.ForwardRefExoticComponent<any>;
1133
+ Ratio: react.ForwardRefExoticComponent<any>;
1134
+ Receipt: react.ForwardRefExoticComponent<any>;
1135
+ ReceiptCent: react.ForwardRefExoticComponent<any>;
1136
+ ReceiptEuro: react.ForwardRefExoticComponent<any>;
1137
+ ReceiptIndianRupee: react.ForwardRefExoticComponent<any>;
1138
+ ReceiptJapaneseYen: react.ForwardRefExoticComponent<any>;
1139
+ ReceiptPoundSterling: react.ForwardRefExoticComponent<any>;
1140
+ ReceiptRussianRuble: react.ForwardRefExoticComponent<any>;
1141
+ ReceiptSwissFranc: react.ForwardRefExoticComponent<any>;
1142
+ ReceiptText: react.ForwardRefExoticComponent<any>;
1143
+ RectangleEllipsis: react.ForwardRefExoticComponent<any>;
1144
+ RectangleHorizontal: react.ForwardRefExoticComponent<any>;
1145
+ RectangleVertical: react.ForwardRefExoticComponent<any>;
1146
+ Recycle: react.ForwardRefExoticComponent<any>;
1147
+ Redo: react.ForwardRefExoticComponent<any>;
1148
+ Redo2: react.ForwardRefExoticComponent<any>;
1149
+ RedoDot: react.ForwardRefExoticComponent<any>;
1150
+ RefreshCcw: react.ForwardRefExoticComponent<any>;
1151
+ RefreshCcwDot: react.ForwardRefExoticComponent<any>;
1152
+ RefreshCw: react.ForwardRefExoticComponent<any>;
1153
+ RefreshCwOff: react.ForwardRefExoticComponent<any>;
1154
+ Refrigerator: react.ForwardRefExoticComponent<any>;
1155
+ Regex: react.ForwardRefExoticComponent<any>;
1156
+ RemoveFormatting: react.ForwardRefExoticComponent<any>;
1157
+ Repeat: react.ForwardRefExoticComponent<any>;
1158
+ Repeat1: react.ForwardRefExoticComponent<any>;
1159
+ Repeat2: react.ForwardRefExoticComponent<any>;
1160
+ Replace: react.ForwardRefExoticComponent<any>;
1161
+ ReplaceAll: react.ForwardRefExoticComponent<any>;
1162
+ Reply: react.ForwardRefExoticComponent<any>;
1163
+ ReplyAll: react.ForwardRefExoticComponent<any>;
1164
+ Rewind: react.ForwardRefExoticComponent<any>;
1165
+ Ribbon: react.ForwardRefExoticComponent<any>;
1166
+ Rocket: react.ForwardRefExoticComponent<any>;
1167
+ RockingChair: react.ForwardRefExoticComponent<any>;
1168
+ RollerCoaster: react.ForwardRefExoticComponent<any>;
1169
+ Rotate3d: react.ForwardRefExoticComponent<any>;
1170
+ RotateCcw: react.ForwardRefExoticComponent<any>;
1171
+ RotateCcwSquare: react.ForwardRefExoticComponent<any>;
1172
+ RotateCw: react.ForwardRefExoticComponent<any>;
1173
+ RotateCwSquare: react.ForwardRefExoticComponent<any>;
1174
+ Route: react.ForwardRefExoticComponent<any>;
1175
+ RouteOff: react.ForwardRefExoticComponent<any>;
1176
+ Router: react.ForwardRefExoticComponent<any>;
1177
+ Rows2: react.ForwardRefExoticComponent<any>;
1178
+ Rows3: react.ForwardRefExoticComponent<any>;
1179
+ Rows4: react.ForwardRefExoticComponent<any>;
1180
+ Rss: react.ForwardRefExoticComponent<any>;
1181
+ Ruler: react.ForwardRefExoticComponent<any>;
1182
+ RussianRuble: react.ForwardRefExoticComponent<any>;
1183
+ Sailboat: react.ForwardRefExoticComponent<any>;
1184
+ Salad: react.ForwardRefExoticComponent<any>;
1185
+ Sandwich: react.ForwardRefExoticComponent<any>;
1186
+ Satellite: react.ForwardRefExoticComponent<any>;
1187
+ SatelliteDish: react.ForwardRefExoticComponent<any>;
1188
+ Save: react.ForwardRefExoticComponent<any>;
1189
+ SaveAll: react.ForwardRefExoticComponent<any>;
1190
+ SaveOff: react.ForwardRefExoticComponent<any>;
1191
+ Scale: react.ForwardRefExoticComponent<any>;
1192
+ Scale3d: react.ForwardRefExoticComponent<any>;
1193
+ Scaling: react.ForwardRefExoticComponent<any>;
1194
+ Scan: react.ForwardRefExoticComponent<any>;
1195
+ ScanBarcode: react.ForwardRefExoticComponent<any>;
1196
+ ScanEye: react.ForwardRefExoticComponent<any>;
1197
+ ScanFace: react.ForwardRefExoticComponent<any>;
1198
+ ScanLine: react.ForwardRefExoticComponent<any>;
1199
+ ScanQrCode: react.ForwardRefExoticComponent<any>;
1200
+ ScanSearch: react.ForwardRefExoticComponent<any>;
1201
+ ScanText: react.ForwardRefExoticComponent<any>;
1202
+ School: react.ForwardRefExoticComponent<any>;
1203
+ Scissors: react.ForwardRefExoticComponent<any>;
1204
+ ScissorsLineDashed: react.ForwardRefExoticComponent<any>;
1205
+ ScreenShare: react.ForwardRefExoticComponent<any>;
1206
+ ScreenShareOff: react.ForwardRefExoticComponent<any>;
1207
+ Scroll: react.ForwardRefExoticComponent<any>;
1208
+ ScrollText: react.ForwardRefExoticComponent<any>;
1209
+ Search: react.ForwardRefExoticComponent<any>;
1210
+ SearchCheck: react.ForwardRefExoticComponent<any>;
1211
+ SearchCode: react.ForwardRefExoticComponent<any>;
1212
+ SearchSlash: react.ForwardRefExoticComponent<any>;
1213
+ SearchX: react.ForwardRefExoticComponent<any>;
1214
+ Section: react.ForwardRefExoticComponent<any>;
1215
+ Send: react.ForwardRefExoticComponent<any>;
1216
+ SendHorizontal: react.ForwardRefExoticComponent<any>;
1217
+ SendToBack: react.ForwardRefExoticComponent<any>;
1218
+ SeparatorHorizontal: react.ForwardRefExoticComponent<any>;
1219
+ SeparatorVertical: react.ForwardRefExoticComponent<any>;
1220
+ Server: react.ForwardRefExoticComponent<any>;
1221
+ ServerCog: react.ForwardRefExoticComponent<any>;
1222
+ ServerCrash: react.ForwardRefExoticComponent<any>;
1223
+ ServerOff: react.ForwardRefExoticComponent<any>;
1224
+ Settings: react.ForwardRefExoticComponent<any>;
1225
+ Settings2: react.ForwardRefExoticComponent<any>;
1226
+ Shapes: react.ForwardRefExoticComponent<any>;
1227
+ Share: react.ForwardRefExoticComponent<any>;
1228
+ Share2: react.ForwardRefExoticComponent<any>;
1229
+ Sheet: react.ForwardRefExoticComponent<any>;
1230
+ Shell: react.ForwardRefExoticComponent<any>;
1231
+ Shield: react.ForwardRefExoticComponent<any>;
1232
+ ShieldAlert: react.ForwardRefExoticComponent<any>;
1233
+ ShieldBan: react.ForwardRefExoticComponent<any>;
1234
+ ShieldCheck: react.ForwardRefExoticComponent<any>;
1235
+ ShieldEllipsis: react.ForwardRefExoticComponent<any>;
1236
+ ShieldHalf: react.ForwardRefExoticComponent<any>;
1237
+ ShieldMinus: react.ForwardRefExoticComponent<any>;
1238
+ ShieldOff: react.ForwardRefExoticComponent<any>;
1239
+ ShieldPlus: react.ForwardRefExoticComponent<any>;
1240
+ ShieldQuestion: react.ForwardRefExoticComponent<any>;
1241
+ ShieldX: react.ForwardRefExoticComponent<any>;
1242
+ Ship: react.ForwardRefExoticComponent<any>;
1243
+ ShipWheel: react.ForwardRefExoticComponent<any>;
1244
+ Shirt: react.ForwardRefExoticComponent<any>;
1245
+ ShoppingBag: react.ForwardRefExoticComponent<any>;
1246
+ ShoppingBasket: react.ForwardRefExoticComponent<any>;
1247
+ ShoppingCart: react.ForwardRefExoticComponent<any>;
1248
+ Shovel: react.ForwardRefExoticComponent<any>;
1249
+ ShowerHead: react.ForwardRefExoticComponent<any>;
1250
+ Shrink: react.ForwardRefExoticComponent<any>;
1251
+ Shrub: react.ForwardRefExoticComponent<any>;
1252
+ Shuffle: react.ForwardRefExoticComponent<any>;
1253
+ Sigma: react.ForwardRefExoticComponent<any>;
1254
+ Signal: react.ForwardRefExoticComponent<any>;
1255
+ SignalHigh: react.ForwardRefExoticComponent<any>;
1256
+ SignalLow: react.ForwardRefExoticComponent<any>;
1257
+ SignalMedium: react.ForwardRefExoticComponent<any>;
1258
+ SignalZero: react.ForwardRefExoticComponent<any>;
1259
+ Signature: react.ForwardRefExoticComponent<any>;
1260
+ Signpost: react.ForwardRefExoticComponent<any>;
1261
+ SignpostBig: react.ForwardRefExoticComponent<any>;
1262
+ Siren: react.ForwardRefExoticComponent<any>;
1263
+ SkipBack: react.ForwardRefExoticComponent<any>;
1264
+ SkipForward: react.ForwardRefExoticComponent<any>;
1265
+ Skull: react.ForwardRefExoticComponent<any>;
1266
+ Slack: react.ForwardRefExoticComponent<any>;
1267
+ Slash: react.ForwardRefExoticComponent<any>;
1268
+ Slice: react.ForwardRefExoticComponent<any>;
1269
+ SlidersHorizontal: react.ForwardRefExoticComponent<any>;
1270
+ SlidersVertical: react.ForwardRefExoticComponent<any>;
1271
+ Smartphone: react.ForwardRefExoticComponent<any>;
1272
+ SmartphoneCharging: react.ForwardRefExoticComponent<any>;
1273
+ SmartphoneNfc: react.ForwardRefExoticComponent<any>;
1274
+ Smile: react.ForwardRefExoticComponent<any>;
1275
+ SmilePlus: react.ForwardRefExoticComponent<any>;
1276
+ Snail: react.ForwardRefExoticComponent<any>;
1277
+ Snowflake: react.ForwardRefExoticComponent<any>;
1278
+ Sofa: react.ForwardRefExoticComponent<any>;
1279
+ Soup: react.ForwardRefExoticComponent<any>;
1280
+ Space: react.ForwardRefExoticComponent<any>;
1281
+ Spade: react.ForwardRefExoticComponent<any>;
1282
+ Sparkle: react.ForwardRefExoticComponent<any>;
1283
+ Sparkles: react.ForwardRefExoticComponent<any>;
1284
+ Speaker: react.ForwardRefExoticComponent<any>;
1285
+ Speech: react.ForwardRefExoticComponent<any>;
1286
+ SpellCheck: react.ForwardRefExoticComponent<any>;
1287
+ SpellCheck2: react.ForwardRefExoticComponent<any>;
1288
+ Spline: react.ForwardRefExoticComponent<any>;
1289
+ Split: react.ForwardRefExoticComponent<any>;
1290
+ SprayCan: react.ForwardRefExoticComponent<any>;
1291
+ Sprout: react.ForwardRefExoticComponent<any>;
1292
+ Square: react.ForwardRefExoticComponent<any>;
1293
+ SquareActivity: react.ForwardRefExoticComponent<any>;
1294
+ SquareArrowDown: react.ForwardRefExoticComponent<any>;
1295
+ SquareArrowDownLeft: react.ForwardRefExoticComponent<any>;
1296
+ SquareArrowDownRight: react.ForwardRefExoticComponent<any>;
1297
+ SquareArrowLeft: react.ForwardRefExoticComponent<any>;
1298
+ SquareArrowOutDownLeft: react.ForwardRefExoticComponent<any>;
1299
+ SquareArrowOutDownRight: react.ForwardRefExoticComponent<any>;
1300
+ SquareArrowOutUpLeft: react.ForwardRefExoticComponent<any>;
1301
+ SquareArrowOutUpRight: react.ForwardRefExoticComponent<any>;
1302
+ SquareArrowRight: react.ForwardRefExoticComponent<any>;
1303
+ SquareArrowUp: react.ForwardRefExoticComponent<any>;
1304
+ SquareArrowUpLeft: react.ForwardRefExoticComponent<any>;
1305
+ SquareArrowUpRight: react.ForwardRefExoticComponent<any>;
1306
+ SquareAsterisk: react.ForwardRefExoticComponent<any>;
1307
+ SquareBottomDashedScissors: react.ForwardRefExoticComponent<any>;
1308
+ SquareChartGantt: react.ForwardRefExoticComponent<any>;
1309
+ SquareCheck: react.ForwardRefExoticComponent<any>;
1310
+ SquareCheckBig: react.ForwardRefExoticComponent<any>;
1311
+ SquareChevronDown: react.ForwardRefExoticComponent<any>;
1312
+ SquareChevronLeft: react.ForwardRefExoticComponent<any>;
1313
+ SquareChevronRight: react.ForwardRefExoticComponent<any>;
1314
+ SquareChevronUp: react.ForwardRefExoticComponent<any>;
1315
+ SquareCode: react.ForwardRefExoticComponent<any>;
1316
+ SquareDashedBottom: react.ForwardRefExoticComponent<any>;
1317
+ SquareDashedBottomCode: react.ForwardRefExoticComponent<any>;
1318
+ SquareDashedKanban: react.ForwardRefExoticComponent<any>;
1319
+ SquareDashedMousePointer: react.ForwardRefExoticComponent<any>;
1320
+ SquareDivide: react.ForwardRefExoticComponent<any>;
1321
+ SquareDot: react.ForwardRefExoticComponent<any>;
1322
+ SquareEqual: react.ForwardRefExoticComponent<any>;
1323
+ SquareFunction: react.ForwardRefExoticComponent<any>;
1324
+ SquareKanban: react.ForwardRefExoticComponent<any>;
1325
+ SquareLibrary: react.ForwardRefExoticComponent<any>;
1326
+ SquareM: react.ForwardRefExoticComponent<any>;
1327
+ SquareMenu: react.ForwardRefExoticComponent<any>;
1328
+ SquareMinus: react.ForwardRefExoticComponent<any>;
1329
+ SquareMousePointer: react.ForwardRefExoticComponent<any>;
1330
+ SquareParking: react.ForwardRefExoticComponent<any>;
1331
+ SquareParkingOff: react.ForwardRefExoticComponent<any>;
1332
+ SquarePen: react.ForwardRefExoticComponent<any>;
1333
+ SquarePercent: react.ForwardRefExoticComponent<any>;
1334
+ SquarePi: react.ForwardRefExoticComponent<any>;
1335
+ SquarePilcrow: react.ForwardRefExoticComponent<any>;
1336
+ SquarePlay: react.ForwardRefExoticComponent<any>;
1337
+ SquarePlus: react.ForwardRefExoticComponent<any>;
1338
+ SquarePower: react.ForwardRefExoticComponent<any>;
1339
+ SquareRadical: react.ForwardRefExoticComponent<any>;
1340
+ SquareScissors: react.ForwardRefExoticComponent<any>;
1341
+ SquareSigma: react.ForwardRefExoticComponent<any>;
1342
+ SquareSlash: react.ForwardRefExoticComponent<any>;
1343
+ SquareSplitHorizontal: react.ForwardRefExoticComponent<any>;
1344
+ SquareSplitVertical: react.ForwardRefExoticComponent<any>;
1345
+ SquareSquare: react.ForwardRefExoticComponent<any>;
1346
+ SquareStack: react.ForwardRefExoticComponent<any>;
1347
+ SquareTerminal: react.ForwardRefExoticComponent<any>;
1348
+ SquareUser: react.ForwardRefExoticComponent<any>;
1349
+ SquareUserRound: react.ForwardRefExoticComponent<any>;
1350
+ SquareX: react.ForwardRefExoticComponent<any>;
1351
+ Squircle: react.ForwardRefExoticComponent<any>;
1352
+ Squirrel: react.ForwardRefExoticComponent<any>;
1353
+ Stamp: react.ForwardRefExoticComponent<any>;
1354
+ Star: react.ForwardRefExoticComponent<any>;
1355
+ StarHalf: react.ForwardRefExoticComponent<any>;
1356
+ StarOff: react.ForwardRefExoticComponent<any>;
1357
+ StepBack: react.ForwardRefExoticComponent<any>;
1358
+ StepForward: react.ForwardRefExoticComponent<any>;
1359
+ Stethoscope: react.ForwardRefExoticComponent<any>;
1360
+ Sticker: react.ForwardRefExoticComponent<any>;
1361
+ StickyNote: react.ForwardRefExoticComponent<any>;
1362
+ Store: react.ForwardRefExoticComponent<any>;
1363
+ StretchHorizontal: react.ForwardRefExoticComponent<any>;
1364
+ StretchVertical: react.ForwardRefExoticComponent<any>;
1365
+ Strikethrough: react.ForwardRefExoticComponent<any>;
1366
+ Subscript: react.ForwardRefExoticComponent<any>;
1367
+ Sun: react.ForwardRefExoticComponent<any>;
1368
+ SunDim: react.ForwardRefExoticComponent<any>;
1369
+ SunMedium: react.ForwardRefExoticComponent<any>;
1370
+ SunMoon: react.ForwardRefExoticComponent<any>;
1371
+ SunSnow: react.ForwardRefExoticComponent<any>;
1372
+ Sunrise: react.ForwardRefExoticComponent<any>;
1373
+ Sunset: react.ForwardRefExoticComponent<any>;
1374
+ Superscript: react.ForwardRefExoticComponent<any>;
1375
+ SwatchBook: react.ForwardRefExoticComponent<any>;
1376
+ SwissFranc: react.ForwardRefExoticComponent<any>;
1377
+ SwitchCamera: react.ForwardRefExoticComponent<any>;
1378
+ Sword: react.ForwardRefExoticComponent<any>;
1379
+ Swords: react.ForwardRefExoticComponent<any>;
1380
+ Syringe: react.ForwardRefExoticComponent<any>;
1381
+ Table: react.ForwardRefExoticComponent<any>;
1382
+ Table2: react.ForwardRefExoticComponent<any>;
1383
+ TableCellsMerge: react.ForwardRefExoticComponent<any>;
1384
+ TableCellsSplit: react.ForwardRefExoticComponent<any>;
1385
+ TableColumnsSplit: react.ForwardRefExoticComponent<any>;
1386
+ TableOfContents: react.ForwardRefExoticComponent<any>;
1387
+ TableProperties: react.ForwardRefExoticComponent<any>;
1388
+ TableRowsSplit: react.ForwardRefExoticComponent<any>;
1389
+ Tablet: react.ForwardRefExoticComponent<any>;
1390
+ TabletSmartphone: react.ForwardRefExoticComponent<any>;
1391
+ Tablets: react.ForwardRefExoticComponent<any>;
1392
+ Tag: react.ForwardRefExoticComponent<any>;
1393
+ Tags: react.ForwardRefExoticComponent<any>;
1394
+ Tally1: react.ForwardRefExoticComponent<any>;
1395
+ Tally2: react.ForwardRefExoticComponent<any>;
1396
+ Tally3: react.ForwardRefExoticComponent<any>;
1397
+ Tally4: react.ForwardRefExoticComponent<any>;
1398
+ Tally5: react.ForwardRefExoticComponent<any>;
1399
+ Tangent: react.ForwardRefExoticComponent<any>;
1400
+ Target: react.ForwardRefExoticComponent<any>;
1401
+ Telescope: react.ForwardRefExoticComponent<any>;
1402
+ Tent: react.ForwardRefExoticComponent<any>;
1403
+ TentTree: react.ForwardRefExoticComponent<any>;
1404
+ Terminal: react.ForwardRefExoticComponent<any>;
1405
+ TestTube: react.ForwardRefExoticComponent<any>;
1406
+ TestTubeDiagonal: react.ForwardRefExoticComponent<any>;
1407
+ TestTubes: react.ForwardRefExoticComponent<any>;
1408
+ Text: react.ForwardRefExoticComponent<any>;
1409
+ TextCursor: react.ForwardRefExoticComponent<any>;
1410
+ TextCursorInput: react.ForwardRefExoticComponent<any>;
1411
+ TextQuote: react.ForwardRefExoticComponent<any>;
1412
+ TextSearch: react.ForwardRefExoticComponent<any>;
1413
+ TextSelect: react.ForwardRefExoticComponent<any>;
1414
+ Theater: react.ForwardRefExoticComponent<any>;
1415
+ Thermometer: react.ForwardRefExoticComponent<any>;
1416
+ ThermometerSnowflake: react.ForwardRefExoticComponent<any>;
1417
+ ThermometerSun: react.ForwardRefExoticComponent<any>;
1418
+ ThumbsDown: react.ForwardRefExoticComponent<any>;
1419
+ ThumbsUp: react.ForwardRefExoticComponent<any>;
1420
+ Ticket: react.ForwardRefExoticComponent<any>;
1421
+ TicketCheck: react.ForwardRefExoticComponent<any>;
1422
+ TicketMinus: react.ForwardRefExoticComponent<any>;
1423
+ TicketPercent: react.ForwardRefExoticComponent<any>;
1424
+ TicketPlus: react.ForwardRefExoticComponent<any>;
1425
+ TicketSlash: react.ForwardRefExoticComponent<any>;
1426
+ TicketX: react.ForwardRefExoticComponent<any>;
1427
+ Tickets: react.ForwardRefExoticComponent<any>;
1428
+ TicketsPlane: react.ForwardRefExoticComponent<any>;
1429
+ Timer: react.ForwardRefExoticComponent<any>;
1430
+ TimerOff: react.ForwardRefExoticComponent<any>;
1431
+ TimerReset: react.ForwardRefExoticComponent<any>;
1432
+ ToggleLeft: react.ForwardRefExoticComponent<any>;
1433
+ ToggleRight: react.ForwardRefExoticComponent<any>;
1434
+ Tornado: react.ForwardRefExoticComponent<any>;
1435
+ Torus: react.ForwardRefExoticComponent<any>;
1436
+ Touchpad: react.ForwardRefExoticComponent<any>;
1437
+ TouchpadOff: react.ForwardRefExoticComponent<any>;
1438
+ TowerControl: react.ForwardRefExoticComponent<any>;
1439
+ ToyBrick: react.ForwardRefExoticComponent<any>;
1440
+ Tractor: react.ForwardRefExoticComponent<any>;
1441
+ TrafficCone: react.ForwardRefExoticComponent<any>;
1442
+ TrainFront: react.ForwardRefExoticComponent<any>;
1443
+ TrainFrontTunnel: react.ForwardRefExoticComponent<any>;
1444
+ TrainTrack: react.ForwardRefExoticComponent<any>;
1445
+ TramFront: react.ForwardRefExoticComponent<any>;
1446
+ Trash: react.ForwardRefExoticComponent<any>;
1447
+ Trash2: react.ForwardRefExoticComponent<any>;
1448
+ TreeDeciduous: react.ForwardRefExoticComponent<any>;
1449
+ TreePalm: react.ForwardRefExoticComponent<any>;
1450
+ TreePine: react.ForwardRefExoticComponent<any>;
1451
+ Trees: react.ForwardRefExoticComponent<any>;
1452
+ Trello: react.ForwardRefExoticComponent<any>;
1453
+ TrendingDown: react.ForwardRefExoticComponent<any>;
1454
+ TrendingUp: react.ForwardRefExoticComponent<any>;
1455
+ TrendingUpDown: react.ForwardRefExoticComponent<any>;
1456
+ Triangle: react.ForwardRefExoticComponent<any>;
1457
+ TriangleAlert: react.ForwardRefExoticComponent<any>;
1458
+ TriangleRight: react.ForwardRefExoticComponent<any>;
1459
+ Trophy: react.ForwardRefExoticComponent<any>;
1460
+ Truck: react.ForwardRefExoticComponent<any>;
1461
+ Turtle: react.ForwardRefExoticComponent<any>;
1462
+ Tv: react.ForwardRefExoticComponent<any>;
1463
+ TvMinimal: react.ForwardRefExoticComponent<any>;
1464
+ TvMinimalPlay: react.ForwardRefExoticComponent<any>;
1465
+ Twitch: react.ForwardRefExoticComponent<any>;
1466
+ Twitter: react.ForwardRefExoticComponent<any>;
1467
+ Type: react.ForwardRefExoticComponent<any>;
1468
+ TypeOutline: react.ForwardRefExoticComponent<any>;
1469
+ Umbrella: react.ForwardRefExoticComponent<any>;
1470
+ UmbrellaOff: react.ForwardRefExoticComponent<any>;
1471
+ Underline: react.ForwardRefExoticComponent<any>;
1472
+ Undo: react.ForwardRefExoticComponent<any>;
1473
+ Undo2: react.ForwardRefExoticComponent<any>;
1474
+ UndoDot: react.ForwardRefExoticComponent<any>;
1475
+ UnfoldHorizontal: react.ForwardRefExoticComponent<any>;
1476
+ UnfoldVertical: react.ForwardRefExoticComponent<any>;
1477
+ Ungroup: react.ForwardRefExoticComponent<any>;
1478
+ University: react.ForwardRefExoticComponent<any>;
1479
+ Unlink: react.ForwardRefExoticComponent<any>;
1480
+ Unlink2: react.ForwardRefExoticComponent<any>;
1481
+ Unplug: react.ForwardRefExoticComponent<any>;
1482
+ Upload: react.ForwardRefExoticComponent<any>;
1483
+ Usb: react.ForwardRefExoticComponent<any>;
1484
+ User: react.ForwardRefExoticComponent<any>;
1485
+ UserCheck: react.ForwardRefExoticComponent<any>;
1486
+ UserCog: react.ForwardRefExoticComponent<any>;
1487
+ UserMinus: react.ForwardRefExoticComponent<any>;
1488
+ UserPen: react.ForwardRefExoticComponent<any>;
1489
+ UserPlus: react.ForwardRefExoticComponent<any>;
1490
+ UserRound: react.ForwardRefExoticComponent<any>;
1491
+ UserRoundCheck: react.ForwardRefExoticComponent<any>;
1492
+ UserRoundCog: react.ForwardRefExoticComponent<any>;
1493
+ UserRoundMinus: react.ForwardRefExoticComponent<any>;
1494
+ UserRoundPen: react.ForwardRefExoticComponent<any>;
1495
+ UserRoundPlus: react.ForwardRefExoticComponent<any>;
1496
+ UserRoundSearch: react.ForwardRefExoticComponent<any>;
1497
+ UserRoundX: react.ForwardRefExoticComponent<any>;
1498
+ UserSearch: react.ForwardRefExoticComponent<any>;
1499
+ UserX: react.ForwardRefExoticComponent<any>;
1500
+ Users: react.ForwardRefExoticComponent<any>;
1501
+ UsersRound: react.ForwardRefExoticComponent<any>;
1502
+ Utensils: react.ForwardRefExoticComponent<any>;
1503
+ UtensilsCrossed: react.ForwardRefExoticComponent<any>;
1504
+ UtilityPole: react.ForwardRefExoticComponent<any>;
1505
+ Variable: react.ForwardRefExoticComponent<any>;
1506
+ Vault: react.ForwardRefExoticComponent<any>;
1507
+ Vegan: react.ForwardRefExoticComponent<any>;
1508
+ VenetianMask: react.ForwardRefExoticComponent<any>;
1509
+ Vibrate: react.ForwardRefExoticComponent<any>;
1510
+ VibrateOff: react.ForwardRefExoticComponent<any>;
1511
+ Video: react.ForwardRefExoticComponent<any>;
1512
+ VideoOff: react.ForwardRefExoticComponent<any>;
1513
+ Videotape: react.ForwardRefExoticComponent<any>;
1514
+ View: react.ForwardRefExoticComponent<any>;
1515
+ Voicemail: react.ForwardRefExoticComponent<any>;
1516
+ Volume: react.ForwardRefExoticComponent<any>;
1517
+ Volume1: react.ForwardRefExoticComponent<any>;
1518
+ Volume2: react.ForwardRefExoticComponent<any>;
1519
+ VolumeOff: react.ForwardRefExoticComponent<any>;
1520
+ VolumeX: react.ForwardRefExoticComponent<any>;
1521
+ Vote: react.ForwardRefExoticComponent<any>;
1522
+ Wallet: react.ForwardRefExoticComponent<any>;
1523
+ WalletCards: react.ForwardRefExoticComponent<any>;
1524
+ WalletMinimal: react.ForwardRefExoticComponent<any>;
1525
+ Wallpaper: react.ForwardRefExoticComponent<any>;
1526
+ Wand: react.ForwardRefExoticComponent<any>;
1527
+ WandSparkles: react.ForwardRefExoticComponent<any>;
1528
+ Warehouse: react.ForwardRefExoticComponent<any>;
1529
+ WashingMachine: react.ForwardRefExoticComponent<any>;
1530
+ Watch: react.ForwardRefExoticComponent<any>;
1531
+ Waves: react.ForwardRefExoticComponent<any>;
1532
+ Waypoints: react.ForwardRefExoticComponent<any>;
1533
+ Webcam: react.ForwardRefExoticComponent<any>;
1534
+ Webhook: react.ForwardRefExoticComponent<any>;
1535
+ WebhookOff: react.ForwardRefExoticComponent<any>;
1536
+ Weight: react.ForwardRefExoticComponent<any>;
1537
+ Wheat: react.ForwardRefExoticComponent<any>;
1538
+ WheatOff: react.ForwardRefExoticComponent<any>;
1539
+ WholeWord: react.ForwardRefExoticComponent<any>;
1540
+ Wifi: react.ForwardRefExoticComponent<any>;
1541
+ WifiHigh: react.ForwardRefExoticComponent<any>;
1542
+ WifiLow: react.ForwardRefExoticComponent<any>;
1543
+ WifiOff: react.ForwardRefExoticComponent<any>;
1544
+ WifiZero: react.ForwardRefExoticComponent<any>;
1545
+ Wind: react.ForwardRefExoticComponent<any>;
1546
+ Wine: react.ForwardRefExoticComponent<any>;
1547
+ WineOff: react.ForwardRefExoticComponent<any>;
1548
+ Workflow: react.ForwardRefExoticComponent<any>;
1549
+ Worm: react.ForwardRefExoticComponent<any>;
1550
+ WrapText: react.ForwardRefExoticComponent<any>;
1551
+ Wrench: react.ForwardRefExoticComponent<any>;
1552
+ X: react.ForwardRefExoticComponent<any>;
1553
+ Youtube: react.ForwardRefExoticComponent<any>;
1554
+ Zap: react.ForwardRefExoticComponent<any>;
1555
+ ZapOff: react.ForwardRefExoticComponent<any>;
1556
+ ZoomIn: react.ForwardRefExoticComponent<any>;
1557
+ ZoomOut: react.ForwardRefExoticComponent<any>;
1558
+ };