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