elbe-ui 1.0.8 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/dist/elbe.css +150 -562
  2. package/dist/elbe.css.map +1 -1
  3. package/dist/index.d.ts +188 -46
  4. package/dist/index.js +8 -6
  5. package/dist/ui/app/app.d.ts +12 -0
  6. package/dist/ui/{components/layout/app_base.js → app/app.js} +24 -31
  7. package/dist/ui/app/app_ctxt.d.ts +35 -0
  8. package/dist/ui/app/app_ctxt.js +10 -0
  9. package/dist/ui/components/badge.d.ts +3 -3
  10. package/dist/ui/components/badge.js +16 -5
  11. package/dist/ui/components/banner.d.ts +3 -3
  12. package/dist/ui/components/banner.js +1 -1
  13. package/dist/ui/components/base/box.d.ts +82 -35
  14. package/dist/ui/components/base/box.js +56 -8
  15. package/dist/ui/components/base/card.d.ts +11 -12
  16. package/dist/ui/components/base/card.js +36 -19
  17. package/dist/ui/components/base/padded.d.ts +2 -4
  18. package/dist/ui/components/base/state_builder.d.ts +9 -0
  19. package/dist/ui/components/base/state_builder.js +33 -0
  20. package/dist/ui/components/button/button.d.ts +8 -6
  21. package/dist/ui/components/button/button.js +27 -16
  22. package/dist/ui/components/button/choose_button.d.ts +5 -3
  23. package/dist/ui/components/button/choose_button.js +9 -6
  24. package/dist/ui/components/button/icon_button.d.ts +6 -5
  25. package/dist/ui/components/button/icon_button.js +33 -23
  26. package/dist/ui/components/button/toggle_button.d.ts +5 -5
  27. package/dist/ui/components/button/toggle_button.js +13 -7
  28. package/dist/ui/components/dialog/dialog.d.ts +13 -0
  29. package/dist/ui/components/dialog/dialog.js +69 -0
  30. package/dist/ui/components/dialog/dialog_ctx.d.ts +34 -0
  31. package/dist/ui/components/dialog/dialog_ctx.js +44 -0
  32. package/dist/ui/components/dialog/dialogs/_alert.d.ts +7 -0
  33. package/dist/ui/components/dialog/dialogs/_alert.js +9 -0
  34. package/dist/ui/components/dialog/dialogs/_confirm.d.ts +9 -0
  35. package/dist/ui/components/dialog/dialogs/_confirm.js +21 -0
  36. package/dist/ui/components/error_view.js +3 -3
  37. package/dist/ui/components/footer.js +7 -7
  38. package/dist/ui/components/input/_labeled_input.d.ts +21 -0
  39. package/dist/ui/components/input/_labeled_input.js +21 -0
  40. package/dist/ui/components/input/checkbox.d.ts +4 -2
  41. package/dist/ui/components/input/checkbox.js +16 -8
  42. package/dist/ui/components/input/range.d.ts +5 -3
  43. package/dist/ui/components/input/range.js +20 -13
  44. package/dist/ui/components/input/select.d.ts +4 -3
  45. package/dist/ui/components/input/select.js +13 -40
  46. package/dist/ui/components/input/switch.d.ts +4 -2
  47. package/dist/ui/components/input/switch.js +30 -40
  48. package/dist/ui/components/input/text/input_field.d.ts +14 -19
  49. package/dist/ui/components/input/text/input_field.js +63 -61
  50. package/dist/ui/components/input/text/single_line.d.ts +11 -9
  51. package/dist/ui/components/input/text/single_line.js +15 -21
  52. package/dist/ui/components/layout/flex.d.ts +7 -3
  53. package/dist/ui/components/layout/flex.js +15 -12
  54. package/dist/ui/components/layout/header.d.ts +2 -2
  55. package/dist/ui/components/layout/header.js +25 -18
  56. package/dist/ui/components/layout/menu.js +74 -49
  57. package/dist/ui/components/layout/scroll.d.ts +1 -0
  58. package/dist/ui/components/layout/scroll.js +3 -1
  59. package/dist/ui/components/layout/toolbar.js +9 -6
  60. package/dist/ui/components/link.d.ts +4 -2
  61. package/dist/ui/components/link.js +24 -11
  62. package/dist/ui/components/progress_bar.d.ts +2 -2
  63. package/dist/ui/components/progress_bar.js +12 -9
  64. package/dist/ui/components/spinner.d.ts +2 -7
  65. package/dist/ui/components/spinner.js +15 -16
  66. package/dist/ui/components/text.d.ts +5 -6
  67. package/dist/ui/components/text.js +34 -21
  68. package/dist/ui/components/tooltip.d.ts +5 -0
  69. package/dist/ui/components/tooltip.js +48 -0
  70. package/dist/ui/theme/subthemes/_theme_geometry.d.ts +9 -0
  71. package/dist/ui/theme/subthemes/_theme_geometry.js +22 -0
  72. package/dist/ui/theme/subthemes/_theme_menu.d.ts +9 -0
  73. package/dist/ui/theme/subthemes/_theme_menu.js +12 -0
  74. package/dist/ui/theme/subthemes/_theme_motion.d.ts +9 -0
  75. package/dist/ui/theme/subthemes/_theme_motion.js +13 -0
  76. package/dist/ui/theme/subthemes/_theme_toast.d.ts +8 -0
  77. package/dist/ui/theme/subthemes/_theme_toast.js +11 -0
  78. package/dist/ui/theme/subthemes/_theme_type.d.ts +49 -0
  79. package/dist/ui/theme/subthemes/_theme_type.js +73 -0
  80. package/dist/ui/theme/subthemes/color/_seed.d.ts +2 -0
  81. package/dist/ui/theme/subthemes/color/_seed.js +105 -0
  82. package/dist/ui/theme/subthemes/color/_theme_color.d.ts +865 -0
  83. package/dist/ui/theme/subthemes/color/_theme_color.js +83 -0
  84. package/dist/ui/theme/subthemes/color/colors/_color_contrast.d.ts +284 -0
  85. package/dist/ui/theme/subthemes/color/colors/_color_contrast.js +17 -0
  86. package/dist/ui/theme/subthemes/color/colors/_color_kind.d.ts +242 -0
  87. package/dist/ui/theme/subthemes/color/colors/_color_kind.js +45 -0
  88. package/dist/ui/theme/subthemes/color/colors/_color_layer.d.ts +226 -0
  89. package/dist/ui/theme/subthemes/color/colors/_color_layer.js +95 -0
  90. package/dist/ui/theme/subthemes/color/colors/_color_manner.d.ts +280 -0
  91. package/dist/ui/theme/subthemes/color/colors/_color_manner.js +17 -0
  92. package/dist/ui/theme/subthemes/color/colors/_color_mode.d.ts +269 -0
  93. package/dist/ui/theme/subthemes/color/colors/_color_mode.js +16 -0
  94. package/dist/ui/theme/subthemes/color/colors/_color_rgba.d.ts +166 -0
  95. package/dist/ui/theme/subthemes/color/colors/_color_rgba.js +86 -0
  96. package/dist/ui/theme/subthemes/color/colors/_color_scheme.d.ts +256 -0
  97. package/dist/ui/theme/subthemes/color/colors/_color_scheme.js +17 -0
  98. package/dist/ui/theme/subthemes/color/colors/_color_state.d.ts +252 -0
  99. package/dist/ui/theme/subthemes/color/colors/_color_state.js +49 -0
  100. package/dist/ui/theme/subthemes/color/colors/_colordef.d.ts +22 -0
  101. package/dist/ui/theme/subthemes/color/colors/_colordef.js +34 -0
  102. package/dist/ui/theme/subthemes/color/colors/colors.d.ts +511 -0
  103. package/dist/ui/theme/subthemes/color/colors/colors.js +24 -0
  104. package/dist/ui/theme/theme.d.ts +984 -30
  105. package/dist/ui/theme/theme.js +14 -82
  106. package/dist/ui/theme/theme_context.d.ts +15 -17
  107. package/dist/ui/theme/theme_context.js +79 -18
  108. package/dist/ui/util/_util.d.ts +1 -0
  109. package/dist/ui/util/_util.js +3 -0
  110. package/dist/ui/util/error_view.js +3 -3
  111. package/dist/ui/util/merge_deep.d.ts +1 -0
  112. package/dist/ui/util/merge_deep.js +18 -0
  113. package/dist/ui/util/root.d.ts +17 -0
  114. package/dist/ui/util/root.js +23 -0
  115. package/dist/ui/util/toast/_toast.d.ts +5 -0
  116. package/dist/ui/util/toast/_toast.js +7 -0
  117. package/dist/ui/util/toast/toast_ctx.d.ts +28 -0
  118. package/dist/ui/util/toast/toast_ctx.js +62 -0
  119. package/dist/ui/util/toast/toast_legacy.d.ts +5 -0
  120. package/dist/ui/util/{toast.js → toast/toast_legacy.js} +4 -4
  121. package/dist/ui/util/util.d.ts +8 -0
  122. package/dist/ui/util/util.js +54 -1
  123. package/package.json +10 -8
  124. package/dist/ui/components/dialog.d.ts +0 -10
  125. package/dist/ui/components/dialog.js +0 -35
  126. package/dist/ui/components/layout/app_base.d.ts +0 -15
  127. package/dist/ui/components/layout/ctx_app_base.d.ts +0 -19
  128. package/dist/ui/components/layout/ctx_app_base.js +0 -12
  129. package/dist/ui/theme/color_theme.d.ts +0 -2
  130. package/dist/ui/theme/color_theme.js +0 -92
  131. package/dist/ui/theme/colors.d.ts +0 -133
  132. package/dist/ui/theme/colors.js +0 -309
  133. package/dist/ui/theme/geometry_theme.d.ts +0 -16
  134. package/dist/ui/theme/geometry_theme.js +0 -28
  135. package/dist/ui/theme/seed.d.ts +0 -53
  136. package/dist/ui/theme/seed.js +0 -4
  137. package/dist/ui/theme/type_theme.d.ts +0 -38
  138. package/dist/ui/theme/type_theme.js +0 -73
  139. package/dist/ui/util/confirm_dialog.d.ts +0 -10
  140. package/dist/ui/util/confirm_dialog.js +0 -46
  141. package/dist/ui/util/toast.d.ts +0 -5
package/dist/index.d.ts CHANGED
@@ -2,14 +2,17 @@ import * as Lucide from "lucide-react";
2
2
  import "./elbe.css";
3
3
  export * as Wouter from "wouter";
4
4
  export * as wouter_hash from "wouter/use-hash-location";
5
+ export * from "./ui/util/root";
5
6
  export * from "./api/api_worker";
6
7
  export * from "./api/error";
7
8
  export * from "./api/errors";
8
9
  export * from "./bit/bit";
9
- export * from "./ui/util/confirm_dialog";
10
+ export * from "./ui/components/dialog/dialog";
11
+ export * from "./ui/components/dialog/dialog_ctx";
10
12
  export * from "./ui/util/ctx_toolbar";
11
13
  export * from "./ui/util/l10n/l10n";
12
- export * from "./ui/util/toast";
14
+ export * from "./ui/util/toast/toast_ctx";
15
+ export * from "./ui/util/toast/toast_legacy";
13
16
  export * from "./ui/util/types";
14
17
  export * from "./ui/util/util";
15
18
  export * from "./ui/components/base/box";
@@ -21,8 +24,6 @@ export * from "./ui/components/button/choose_button";
21
24
  export * from "./ui/components/button/icon_button";
22
25
  export * from "./ui/components/button/toggle_button";
23
26
  export * from "./ui/components/layout/alignment";
24
- export * from "./ui/components/layout/app_base";
25
- export * from "./ui/components/layout/ctx_app_base";
26
27
  export * from "./ui/components/layout/flex";
27
28
  export * from "./ui/components/layout/header";
28
29
  export * from "./ui/components/layout/page";
@@ -35,15 +36,16 @@ export * from "./ui/components/input/switch";
35
36
  export * from "./ui/components/input/text/input_field";
36
37
  export * from "./ui/components/badge";
37
38
  export * from "./ui/components/banner";
38
- export * from "./ui/components/dialog";
39
+ export * from "./ui/components/dialog/dialog";
39
40
  export * from "./ui/components/error_view";
40
41
  export * from "./ui/components/footer";
41
42
  export * from "./ui/components/link";
42
43
  export * from "./ui/components/progress_bar";
43
44
  export * from "./ui/components/spinner";
44
45
  export * from "./ui/components/text";
46
+ export * from "./ui/app/app";
45
47
  export * from "./ui/components/dev/todo";
46
- export * from "./ui/theme/seed";
48
+ export * from "./ui/theme/subthemes/color/colors/colors";
47
49
  export * from "./ui/theme/theme";
48
50
  export * from "./ui/theme/theme_context";
49
51
  declare function None({}: {}): import("react/jsx-runtime").JSX.Element;
@@ -63,7 +65,6 @@ export declare const Icons: {
63
65
  AlarmClockPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
64
66
  AlarmSmoke: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
65
67
  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
68
  AlignCenterHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
68
69
  AlignCenterVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
69
70
  AlignEndHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -76,9 +77,6 @@ export declare const Icons: {
76
77
  AlignHorizontalJustifyStart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
77
78
  AlignHorizontalSpaceAround: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
78
79
  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
80
  AlignStartHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
83
81
  AlignStartVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
84
82
  AlignVerticalDistributeCenter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -165,7 +163,6 @@ export declare const Icons: {
165
163
  BadgeCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
166
164
  BadgeDollarSign: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
167
165
  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
166
  BadgeIndianRupee: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
170
167
  BadgeInfo: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
171
168
  BadgeJapaneseYen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -173,15 +170,22 @@ export declare const Icons: {
173
170
  BadgePercent: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
174
171
  BadgePlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
175
172
  BadgePoundSterling: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
173
+ BadgeQuestionMark: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
176
174
  BadgeRussianRuble: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
177
175
  BadgeSwissFranc: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
176
+ BadgeTurkishLira: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
178
177
  BadgeX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
179
178
  BaggageClaim: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
179
+ Balloon: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
180
180
  Ban: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
181
181
  Banana: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
182
182
  Bandage: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
183
183
  Banknote: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
184
+ BanknoteArrowDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
185
+ BanknoteArrowUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
186
+ BanknoteX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
184
187
  Barcode: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
188
+ Barrel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
185
189
  Baseline: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
186
190
  Bath: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
187
191
  Battery: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -189,6 +193,7 @@ export declare const Icons: {
189
193
  BatteryFull: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
190
194
  BatteryLow: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
191
195
  BatteryMedium: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
196
+ BatteryPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
192
197
  BatteryWarning: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
193
198
  Beaker: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
194
199
  Bean: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -216,6 +221,7 @@ export declare const Icons: {
216
221
  Binoculars: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
217
222
  Biohazard: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
218
223
  Bird: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
224
+ Birdhouse: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
219
225
  Bitcoin: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
220
226
  Blend: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
221
227
  Blinds: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -230,6 +236,7 @@ export declare const Icons: {
230
236
  Bone: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
231
237
  Book: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
232
238
  BookA: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
239
+ BookAlert: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
233
240
  BookAudio: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
234
241
  BookCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
235
242
  BookCopy: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -246,6 +253,7 @@ export declare const Icons: {
246
253
  BookOpenCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
247
254
  BookOpenText: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
248
255
  BookPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
256
+ BookSearch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
249
257
  BookText: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
250
258
  BookType: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
251
259
  BookUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -261,8 +269,9 @@ export declare const Icons: {
261
269
  Bot: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
262
270
  BotMessageSquare: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
263
271
  BotOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
272
+ BottleWine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
273
+ BowArrow: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
264
274
  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
275
  Boxes: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
267
276
  Braces: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
268
277
  Brackets: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -270,11 +279,16 @@ export declare const Icons: {
270
279
  BrainCircuit: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
271
280
  BrainCog: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
272
281
  BrickWall: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
282
+ BrickWallFire: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
283
+ BrickWallShield: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
273
284
  Briefcase: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
274
285
  BriefcaseBusiness: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
286
+ BriefcaseConveyorBelt: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
275
287
  BriefcaseMedical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
276
288
  BringToFront: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
277
289
  Brush: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
290
+ BrushCleaning: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
291
+ Bubbles: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
278
292
  Bug: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
279
293
  BugOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
280
294
  BugPlay: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -288,6 +302,7 @@ export declare const Icons: {
288
302
  CakeSlice: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
289
303
  Calculator: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
290
304
  Calendar: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
305
+ Calendar1: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
291
306
  CalendarArrowDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
292
307
  CalendarArrowUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
293
308
  CalendarCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -304,20 +319,24 @@ export declare const Icons: {
304
319
  CalendarPlus2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
305
320
  CalendarRange: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
306
321
  CalendarSearch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
322
+ CalendarSync: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
307
323
  CalendarX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
308
324
  CalendarX2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
325
+ Calendars: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
309
326
  Camera: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
310
327
  CameraOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
311
328
  Candy: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
312
329
  CandyCane: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
313
330
  CandyOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
314
331
  Cannabis: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
332
+ CannabisOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
315
333
  Captions: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
316
334
  CaptionsOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
317
335
  Car: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
318
336
  CarFront: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
319
337
  CarTaxiFront: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
320
338
  Caravan: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
339
+ CardSim: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
321
340
  Carrot: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
322
341
  CaseLower: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
323
342
  CaseSensitive: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -352,8 +371,15 @@ export declare const Icons: {
352
371
  ChartSpline: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
353
372
  Check: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
354
373
  CheckCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
374
+ CheckLine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
355
375
  ChefHat: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
356
376
  Cherry: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
377
+ ChessBishop: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
378
+ ChessKing: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
379
+ ChessKnight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
380
+ ChessPawn: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
381
+ ChessQueen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
382
+ ChessRook: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
357
383
  ChevronDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
358
384
  ChevronFirst: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
359
385
  ChevronLast: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -369,7 +395,7 @@ export declare const Icons: {
369
395
  ChevronsRightLeft: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
370
396
  ChevronsUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
371
397
  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>>;
398
+ Chromium: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
373
399
  Church: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
374
400
  Cigarette: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
375
401
  CigaretteOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -399,18 +425,22 @@ export declare const Icons: {
399
425
  CircleFadingArrowUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
400
426
  CircleFadingPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
401
427
  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
428
  CircleMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
404
429
  CircleOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
405
430
  CircleParking: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
406
431
  CircleParkingOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
407
432
  CirclePause: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
408
433
  CirclePercent: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
434
+ CirclePile: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
409
435
  CirclePlay: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
410
436
  CirclePlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
437
+ CirclePoundSterling: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
411
438
  CirclePower: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
439
+ CircleQuestionMark: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
412
440
  CircleSlash: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
413
441
  CircleSlash2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
442
+ CircleSmall: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
443
+ CircleStar: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
414
444
  CircleStop: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
415
445
  CircleUser: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
416
446
  CircleUserRound: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -420,6 +450,7 @@ export declare const Icons: {
420
450
  Clapperboard: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
421
451
  Clipboard: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
422
452
  ClipboardCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
453
+ ClipboardClock: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
423
454
  ClipboardCopy: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
424
455
  ClipboardList: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
425
456
  ClipboardMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -442,9 +473,17 @@ export declare const Icons: {
442
473
  Clock7: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
443
474
  Clock8: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
444
475
  Clock9: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
476
+ ClockAlert: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
445
477
  ClockArrowDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
446
478
  ClockArrowUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
479
+ ClockCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
480
+ ClockFading: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
481
+ ClockPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
482
+ ClosedCaption: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
447
483
  Cloud: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
484
+ CloudAlert: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
485
+ CloudBackup: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
486
+ CloudCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
448
487
  CloudCog: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
449
488
  CloudDownload: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
450
489
  CloudDrizzle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -459,6 +498,7 @@ export declare const Icons: {
459
498
  CloudSnow: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
460
499
  CloudSun: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
461
500
  CloudSunRain: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
501
+ CloudSync: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
462
502
  CloudUpload: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
463
503
  Cloudy: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
464
504
  Clover: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -472,6 +512,7 @@ export declare const Icons: {
472
512
  Coins: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
473
513
  Columns2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
474
514
  Columns3: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
515
+ Columns3Cog: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
475
516
  Columns4: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
476
517
  Combine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
477
518
  Command: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -519,6 +560,8 @@ export declare const Icons: {
519
560
  Database: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
520
561
  DatabaseBackup: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
521
562
  DatabaseZap: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
563
+ DecimalsArrowLeft: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
564
+ DecimalsArrowRight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
522
565
  Delete: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
523
566
  Dessert: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
524
567
  Diameter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -546,6 +589,7 @@ export declare const Icons: {
546
589
  DollarSign: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
547
590
  Donut: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
548
591
  DoorClosed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
592
+ DoorClosedLocked: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
549
593
  DoorOpen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
550
594
  Dot: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
551
595
  Download: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -553,7 +597,9 @@ export declare const Icons: {
553
597
  Drama: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
554
598
  Dribbble: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
555
599
  Drill: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
600
+ Drone: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
556
601
  Droplet: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
602
+ DropletOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
557
603
  Droplets: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
558
604
  Drum: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
559
605
  Drumstick: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -569,13 +615,16 @@ export declare const Icons: {
569
615
  Ellipsis: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
570
616
  EllipsisVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
571
617
  Equal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
618
+ EqualApproximately: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
572
619
  EqualNot: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
573
620
  Eraser: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
574
621
  EthernetPort: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
575
622
  Euro: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
623
+ EvCharger: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
576
624
  Expand: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
577
625
  ExternalLink: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
578
626
  Eye: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
627
+ EyeClosed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
579
628
  EyeOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
580
629
  Facebook: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
581
630
  Factory: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -587,46 +636,45 @@ export declare const Icons: {
587
636
  Figma: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
588
637
  File: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
589
638
  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
639
  FileAxis3d: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
593
640
  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
641
  FileBox: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
642
+ FileBraces: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
643
+ FileBracesCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
596
644
  FileChartColumn: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
597
645
  FileChartColumnIncreasing: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
598
646
  FileChartLine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
599
647
  FileChartPie: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
600
648
  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>>;
649
+ FileCheckCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
602
650
  FileClock: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
603
651
  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>>;
652
+ FileCodeCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
605
653
  FileCog: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
606
654
  FileDiff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
607
655
  FileDigit: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
608
656
  FileDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
657
+ FileExclamationPoint: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
658
+ FileHeadphone: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
609
659
  FileHeart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
610
660
  FileImage: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
611
661
  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
662
  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
663
  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
664
  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>>;
665
+ FileMinusCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
620
666
  FileMusic: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
621
667
  FileOutput: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
622
668
  FilePen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
623
669
  FilePenLine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
670
+ FilePlay: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
624
671
  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>>;
672
+ FilePlusCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
673
+ FileQuestionMark: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
627
674
  FileScan: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
628
675
  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>>;
676
+ FileSearchCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
677
+ FileSignal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
630
678
  FileSliders: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
631
679
  FileSpreadsheet: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
632
680
  FileStack: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -634,24 +682,21 @@ export declare const Icons: {
634
682
  FileTerminal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
635
683
  FileText: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
636
684
  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>>;
685
+ FileTypeCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
638
686
  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>>;
687
+ FileUser: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
688
+ FileVideoCamera: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
641
689
  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
690
  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>>;
691
+ FileXCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
646
692
  Files: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
647
693
  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>>;
694
+ FingerprintPattern: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
651
695
  FireExtinguisher: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
652
696
  Fish: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
653
697
  FishOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
654
698
  FishSymbol: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
699
+ FishingHook: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
655
700
  Flag: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
656
701
  FlagOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
657
702
  FlagTriangleLeft: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -705,12 +750,16 @@ export declare const Icons: {
705
750
  Folders: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
706
751
  Footprints: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
707
752
  Forklift: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
753
+ Form: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
708
754
  Forward: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
709
755
  Frame: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
710
756
  Framer: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
711
757
  Frown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
712
758
  Fuel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
713
759
  Fullscreen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
760
+ Funnel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
761
+ FunnelPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
762
+ FunnelX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
714
763
  GalleryHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
715
764
  GalleryHorizontalEnd: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
716
765
  GalleryThumbnails: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -718,12 +767,15 @@ export declare const Icons: {
718
767
  GalleryVerticalEnd: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
719
768
  Gamepad: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
720
769
  Gamepad2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
770
+ GamepadDirectional: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
721
771
  Gauge: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
722
772
  Gavel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
723
773
  Gem: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
774
+ GeorgianLari: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
724
775
  Ghost: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
725
776
  Gift: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
726
777
  GitBranch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
778
+ GitBranchMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
727
779
  GitBranchPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
728
780
  GitCommitHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
729
781
  GitCommitVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -745,12 +797,14 @@ export declare const Icons: {
745
797
  Globe: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
746
798
  GlobeLock: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
747
799
  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>>;
800
+ Gpu: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
749
801
  GraduationCap: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
750
802
  Grape: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
751
803
  Grid2x2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
752
804
  Grid2x2Check: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
805
+ Grid2x2Plus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
753
806
  Grid2x2X: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
807
+ Grid3x2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
754
808
  Grid3x3: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
755
809
  Grip: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
756
810
  GripHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -758,20 +812,26 @@ export declare const Icons: {
758
812
  Group: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
759
813
  Guitar: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
760
814
  Ham: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
815
+ Hamburger: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
761
816
  Hammer: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
762
817
  Hand: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
763
818
  HandCoins: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
819
+ HandFist: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
820
+ HandGrab: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
764
821
  HandHeart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
765
822
  HandHelping: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
766
823
  HandMetal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
767
824
  HandPlatter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
825
+ Handbag: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
768
826
  Handshake: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
769
827
  HardDrive: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
770
828
  HardDriveDownload: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
771
829
  HardDriveUpload: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
772
830
  HardHat: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
773
831
  Hash: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
832
+ HatGlasses: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
774
833
  Haze: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
834
+ Hd: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
775
835
  HdmiPort: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
776
836
  Heading: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
777
837
  Heading1: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -780,14 +840,18 @@ export declare const Icons: {
780
840
  Heading4: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
781
841
  Heading5: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
782
842
  Heading6: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
843
+ HeadphoneOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
783
844
  Headphones: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
784
845
  Headset: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
785
846
  Heart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
786
847
  HeartCrack: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
787
848
  HeartHandshake: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
849
+ HeartMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
788
850
  HeartOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
851
+ HeartPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
789
852
  HeartPulse: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
790
853
  Heater: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
854
+ Helicopter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
791
855
  Hexagon: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
792
856
  Highlighter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
793
857
  History: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -797,11 +861,14 @@ export declare const Icons: {
797
861
  Hotel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
798
862
  Hourglass: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
799
863
  House: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
864
+ HouseHeart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
800
865
  HousePlug: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
801
866
  HousePlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
867
+ HouseWifi: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
802
868
  IceCreamBowl: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
803
869
  IceCreamCone: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
804
870
  IdCard: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
871
+ IdCardLanyard: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
805
872
  Image: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
806
873
  ImageDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
807
874
  ImageMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -809,11 +876,10 @@ export declare const Icons: {
809
876
  ImagePlay: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
810
877
  ImagePlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
811
878
  ImageUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
879
+ ImageUpscale: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
812
880
  Images: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
813
881
  Import: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
814
882
  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
883
  IndianRupee: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
818
884
  Infinity: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
819
885
  Info: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -825,6 +891,7 @@ export declare const Icons: {
825
891
  JapaneseYen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
826
892
  Joystick: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
827
893
  Kanban: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
894
+ Kayak: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
828
895
  Key: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
829
896
  KeyRound: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
830
897
  KeySquare: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -842,12 +909,13 @@ export declare const Icons: {
842
909
  Languages: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
843
910
  Laptop: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
844
911
  LaptopMinimal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
912
+ LaptopMinimalCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
845
913
  Lasso: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
846
914
  LassoSelect: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
847
915
  Laugh: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
848
916
  Layers: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
849
917
  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>>;
918
+ LayersPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
851
919
  LayoutDashboard: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
852
920
  LayoutGrid: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
853
921
  LayoutList: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -857,13 +925,13 @@ export declare const Icons: {
857
925
  Leaf: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
858
926
  LeafyGreen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
859
927
  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
928
  Library: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
862
929
  LibraryBig: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
863
930
  LifeBuoy: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
864
931
  Ligature: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
865
932
  Lightbulb: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
866
933
  LightbulbOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
934
+ LineSquiggle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
867
935
  Link: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
868
936
  Link2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
869
937
  Link2Off: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -871,9 +939,14 @@ export declare const Icons: {
871
939
  List: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
872
940
  ListCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
873
941
  ListChecks: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
942
+ ListChevronsDownUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
943
+ ListChevronsUpDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
874
944
  ListCollapse: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
875
945
  ListEnd: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
876
946
  ListFilter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
947
+ ListFilterPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
948
+ ListIndentDecrease: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
949
+ ListIndentIncrease: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
877
950
  ListMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
878
951
  ListMusic: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
879
952
  ListOrdered: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -905,13 +978,14 @@ export declare const Icons: {
905
978
  MailMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
906
979
  MailOpen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
907
980
  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>>;
981
+ MailQuestionMark: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
909
982
  MailSearch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
910
983
  MailWarning: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
911
984
  MailX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
912
985
  Mailbox: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
913
986
  Mails: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
914
987
  Map: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
988
+ MapMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
915
989
  MapPin: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
916
990
  MapPinCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
917
991
  MapPinCheckInside: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -919,11 +993,15 @@ export declare const Icons: {
919
993
  MapPinMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
920
994
  MapPinMinusInside: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
921
995
  MapPinOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
996
+ MapPinPen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
922
997
  MapPinPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
923
998
  MapPinPlusInside: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
924
999
  MapPinX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
925
1000
  MapPinXInside: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
926
1001
  MapPinned: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1002
+ MapPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1003
+ Mars: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1004
+ MarsStroke: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
927
1005
  Martini: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
928
1006
  Maximize: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
929
1007
  Maximize2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -941,7 +1019,7 @@ export declare const Icons: {
941
1019
  MessageCircleMore: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
942
1020
  MessageCircleOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
943
1021
  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>>;
1022
+ MessageCircleQuestionMark: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
945
1023
  MessageCircleReply: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
946
1024
  MessageCircleWarning: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
947
1025
  MessageCircleX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -951,6 +1029,7 @@ export declare const Icons: {
951
1029
  MessageSquareDiff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
952
1030
  MessageSquareDot: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
953
1031
  MessageSquareHeart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1032
+ MessageSquareLock: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
954
1033
  MessageSquareMore: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
955
1034
  MessageSquareOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
956
1035
  MessageSquarePlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -975,6 +1054,7 @@ export declare const Icons: {
975
1054
  Minus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
976
1055
  Monitor: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
977
1056
  MonitorCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1057
+ MonitorCloud: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
978
1058
  MonitorCog: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
979
1059
  MonitorDot: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
980
1060
  MonitorDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -988,12 +1068,14 @@ export declare const Icons: {
988
1068
  MonitorX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
989
1069
  Moon: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
990
1070
  MoonStar: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1071
+ Motorbike: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
991
1072
  Mountain: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
992
1073
  MountainSnow: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
993
1074
  Mouse: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
994
1075
  MouseOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
995
1076
  MousePointer: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
996
1077
  MousePointer2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1078
+ MousePointer2Off: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
997
1079
  MousePointerBan: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
998
1080
  MousePointerClick: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
999
1081
  Move: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1021,6 +1103,7 @@ export declare const Icons: {
1021
1103
  Network: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1022
1104
  Newspaper: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1023
1105
  Nfc: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1106
+ NonBinary: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1024
1107
  Notebook: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1025
1108
  NotebookPen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1026
1109
  NotebookTabs: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1051,6 +1134,7 @@ export declare const Icons: {
1051
1134
  Paintbrush: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1052
1135
  PaintbrushVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1053
1136
  Palette: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1137
+ Panda: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1054
1138
  PanelBottom: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1055
1139
  PanelBottomClose: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1056
1140
  PanelBottomDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1059,11 +1143,13 @@ export declare const Icons: {
1059
1143
  PanelLeftClose: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1060
1144
  PanelLeftDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1061
1145
  PanelLeftOpen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1146
+ PanelLeftRightDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1062
1147
  PanelRight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1063
1148
  PanelRightClose: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1064
1149
  PanelRightDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1065
1150
  PanelRightOpen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1066
1151
  PanelTop: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1152
+ PanelTopBottomDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1067
1153
  PanelTopClose: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1068
1154
  PanelTopDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1069
1155
  PanelTopOpen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1159,7 +1245,10 @@ export declare const Icons: {
1159
1245
  ReceiptRussianRuble: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1160
1246
  ReceiptSwissFranc: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1161
1247
  ReceiptText: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1248
+ ReceiptTurkishLira: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1249
+ RectangleCircle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1162
1250
  RectangleEllipsis: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1251
+ RectangleGoggles: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1163
1252
  RectangleHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1164
1253
  RectangleVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1165
1254
  Recycle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1185,8 +1274,10 @@ export declare const Icons: {
1185
1274
  Rocket: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1186
1275
  RockingChair: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1187
1276
  RollerCoaster: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1277
+ Rose: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1188
1278
  Rotate3d: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1189
1279
  RotateCcw: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1280
+ RotateCcwKey: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1190
1281
  RotateCcwSquare: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1191
1282
  RotateCw: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1192
1283
  RotateCwSquare: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1198,12 +1289,14 @@ export declare const Icons: {
1198
1289
  Rows4: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1199
1290
  Rss: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1200
1291
  Ruler: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1292
+ RulerDimensionLine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1201
1293
  RussianRuble: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1202
1294
  Sailboat: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1203
1295
  Salad: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1204
1296
  Sandwich: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1205
1297
  Satellite: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1206
1298
  SatelliteDish: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1299
+ SaudiRiyal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1207
1300
  Save: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1208
1301
  SaveAll: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1209
1302
  SaveOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1214,6 +1307,7 @@ export declare const Icons: {
1214
1307
  ScanBarcode: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1215
1308
  ScanEye: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1216
1309
  ScanFace: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1310
+ ScanHeart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1217
1311
  ScanLine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1218
1312
  ScanQrCode: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1219
1313
  ScanSearch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1221,11 +1315,13 @@ export declare const Icons: {
1221
1315
  School: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1222
1316
  Scissors: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1223
1317
  ScissorsLineDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1318
+ Scooter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1224
1319
  ScreenShare: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1225
1320
  ScreenShareOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1226
1321
  Scroll: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1227
1322
  ScrollText: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1228
1323
  Search: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1324
+ SearchAlert: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1229
1325
  SearchCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1230
1326
  SearchCode: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1231
1327
  SearchSlash: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1256,7 +1352,8 @@ export declare const Icons: {
1256
1352
  ShieldMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1257
1353
  ShieldOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1258
1354
  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>>;
1355
+ ShieldQuestionMark: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1356
+ ShieldUser: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1260
1357
  ShieldX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1261
1358
  Ship: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1262
1359
  ShipWheel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1266,6 +1363,8 @@ export declare const Icons: {
1266
1363
  ShoppingCart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1267
1364
  Shovel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1268
1365
  ShowerHead: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1366
+ Shredder: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1367
+ Shrimp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1269
1368
  Shrink: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1270
1369
  Shrub: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1271
1370
  Shuffle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1294,7 +1393,9 @@ export declare const Icons: {
1294
1393
  SmilePlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1295
1394
  Snail: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1296
1395
  Snowflake: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1396
+ SoapDispenserDroplet: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1297
1397
  Sofa: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1398
+ SolarPanel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1298
1399
  Soup: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1299
1400
  Space: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1300
1401
  Spade: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1305,7 +1406,10 @@ export declare const Icons: {
1305
1406
  SpellCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1306
1407
  SpellCheck2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1307
1408
  Spline: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1409
+ SplinePointer: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1308
1410
  Split: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1411
+ Spool: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1412
+ Spotlight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1309
1413
  SprayCan: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1310
1414
  Sprout: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1311
1415
  Square: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1332,10 +1436,12 @@ export declare const Icons: {
1332
1436
  SquareChevronRight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1333
1437
  SquareChevronUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1334
1438
  SquareCode: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1439
+ SquareDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1335
1440
  SquareDashedBottom: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1336
1441
  SquareDashedBottomCode: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1337
1442
  SquareDashedKanban: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1338
1443
  SquareDashedMousePointer: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1444
+ SquareDashedTopSolid: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1339
1445
  SquareDivide: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1340
1446
  SquareDot: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1341
1447
  SquareEqual: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1348,6 +1454,7 @@ export declare const Icons: {
1348
1454
  SquareMousePointer: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1349
1455
  SquareParking: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1350
1456
  SquareParkingOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1457
+ SquarePause: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1351
1458
  SquarePen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1352
1459
  SquarePercent: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1353
1460
  SquarePi: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1356,6 +1463,7 @@ export declare const Icons: {
1356
1463
  SquarePlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1357
1464
  SquarePower: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1358
1465
  SquareRadical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1466
+ SquareRoundCorner: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1359
1467
  SquareScissors: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1360
1468
  SquareSigma: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1361
1469
  SquareSlash: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1363,11 +1471,18 @@ export declare const Icons: {
1363
1471
  SquareSplitVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1364
1472
  SquareSquare: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1365
1473
  SquareStack: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1474
+ SquareStar: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1475
+ SquareStop: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1366
1476
  SquareTerminal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1367
1477
  SquareUser: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1368
1478
  SquareUserRound: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1369
1479
  SquareX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1480
+ SquaresExclude: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1481
+ SquaresIntersect: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1482
+ SquaresSubtract: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1483
+ SquaresUnite: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1370
1484
  Squircle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1485
+ SquircleDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1371
1486
  Squirrel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1372
1487
  Stamp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1373
1488
  Star: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1378,6 +1493,7 @@ export declare const Icons: {
1378
1493
  Stethoscope: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1379
1494
  Sticker: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1380
1495
  StickyNote: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1496
+ Stone: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1381
1497
  Store: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1382
1498
  StretchHorizontal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1383
1499
  StretchVertical: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1424,12 +1540,17 @@ export declare const Icons: {
1424
1540
  TestTube: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1425
1541
  TestTubeDiagonal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1426
1542
  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>>;
1543
+ TextAlignCenter: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1544
+ TextAlignEnd: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1545
+ TextAlignJustify: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1546
+ TextAlignStart: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1428
1547
  TextCursor: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1429
1548
  TextCursorInput: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1549
+ TextInitial: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1430
1550
  TextQuote: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1431
1551
  TextSearch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1432
1552
  TextSelect: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1553
+ TextWrap: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1433
1554
  Theater: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1434
1555
  Thermometer: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1435
1556
  ThermometerSnowflake: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1450,6 +1571,8 @@ export declare const Icons: {
1450
1571
  TimerReset: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1451
1572
  ToggleLeft: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1452
1573
  ToggleRight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1574
+ Toilet: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1575
+ ToolCase: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1453
1576
  Tornado: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1454
1577
  Torus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1455
1578
  Touchpad: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1462,6 +1585,7 @@ export declare const Icons: {
1462
1585
  TrainFrontTunnel: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1463
1586
  TrainTrack: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1464
1587
  TramFront: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1588
+ Transgender: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1465
1589
  Trash: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1466
1590
  Trash2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1467
1591
  TreeDeciduous: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1474,9 +1598,13 @@ export declare const Icons: {
1474
1598
  TrendingUpDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1475
1599
  Triangle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1476
1600
  TriangleAlert: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1601
+ TriangleDashed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1477
1602
  TriangleRight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1478
1603
  Trophy: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1479
1604
  Truck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1605
+ TruckElectric: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1606
+ TurkishLira: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1607
+ Turntable: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1480
1608
  Turtle: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1481
1609
  Tv: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1482
1610
  TvMinimal: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1503,6 +1631,7 @@ export declare const Icons: {
1503
1631
  User: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1504
1632
  UserCheck: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1505
1633
  UserCog: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1634
+ UserLock: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1506
1635
  UserMinus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1507
1636
  UserPen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1508
1637
  UserPlus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1515,16 +1644,21 @@ export declare const Icons: {
1515
1644
  UserRoundSearch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1516
1645
  UserRoundX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1517
1646
  UserSearch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1647
+ UserStar: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1518
1648
  UserX: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1519
1649
  Users: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1520
1650
  UsersRound: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1521
1651
  Utensils: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1522
1652
  UtensilsCrossed: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1523
1653
  UtilityPole: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1654
+ Van: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1524
1655
  Variable: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1525
1656
  Vault: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1657
+ VectorSquare: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1526
1658
  Vegan: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1527
1659
  VenetianMask: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1660
+ Venus: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1661
+ VenusAndMars: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1528
1662
  Vibrate: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1529
1663
  VibrateOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1530
1664
  Video: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1532,6 +1666,7 @@ export declare const Icons: {
1532
1666
  Videotape: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1533
1667
  View: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1534
1668
  Voicemail: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1669
+ Volleyball: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1535
1670
  Volume: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1536
1671
  Volume1: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1537
1672
  Volume2: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
@@ -1548,25 +1683,32 @@ export declare const Icons: {
1548
1683
  WashingMachine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1549
1684
  Watch: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1550
1685
  Waves: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1686
+ WavesArrowDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1687
+ WavesArrowUp: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1688
+ WavesLadder: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1551
1689
  Waypoints: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1552
1690
  Webcam: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1553
1691
  Webhook: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1554
1692
  WebhookOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1555
1693
  Weight: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1694
+ WeightTilde: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1556
1695
  Wheat: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1557
1696
  WheatOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1558
1697
  WholeWord: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1559
1698
  Wifi: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1699
+ WifiCog: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1560
1700
  WifiHigh: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1561
1701
  WifiLow: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1562
1702
  WifiOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1703
+ WifiPen: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1704
+ WifiSync: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1563
1705
  WifiZero: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1564
1706
  Wind: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1707
+ WindArrowDown: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1565
1708
  Wine: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1566
1709
  WineOff: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1567
1710
  Workflow: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1568
1711
  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
1712
  Wrench: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1571
1713
  X: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
1572
1714
  Youtube: import("react").ForwardRefExoticComponent<Omit<Lucide.LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;