elbe-ui 0.4.27 → 1.0.3

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