@lucide/astro 1.28.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/aliases/aliases.ts +147 -105
- package/src/aliases/prefixed.ts +687 -643
- package/src/aliases/suffixed.ts +986 -942
- package/src/icons/{smile-plus.ts → audio-lines-x.ts} +4 -4
- package/src/icons/broom-sparkles.ts +18 -0
- package/src/icons/broom.ts +18 -0
- package/src/icons/face-angry.ts +18 -0
- package/src/icons/{smile.ts → face-expressionless.ts} +4 -4
- package/src/icons/{laugh.ts → face-grinning.ts} +4 -4
- package/src/icons/{annoyed.ts → face-neutral.ts} +4 -4
- package/src/icons/{meh.ts → face-slightly-frowning.ts} +4 -4
- package/src/icons/face-slightly-smiling-plus.ts +18 -0
- package/src/icons/{frown.ts → face-slightly-smiling.ts} +4 -4
- package/src/icons/index.ts +199 -191
- package/src/icons/layer-arrow-down.ts +18 -0
- package/src/icons/layer-arrow-up.ts +18 -0
- package/src/icons/layers-arrow-down.ts +18 -0
- package/src/icons/layers-arrow-up.ts +18 -0
- package/src/icons/shield-lock.ts +18 -0
- package/src/icons/angry.ts +0 -18
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// AArrowDown aliases
|
|
2
2
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
|
-
// AArrowUp aliases
|
|
4
|
-
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
5
3
|
// ALargeSmall aliases
|
|
6
4
|
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
7
5
|
// Accessibility aliases
|
|
8
6
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
7
|
+
// AArrowUp aliases
|
|
8
|
+
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
9
9
|
// Activity aliases
|
|
10
10
|
export { default as ActivityIcon } from '../icons/activity';
|
|
11
11
|
// Ad aliases
|
|
@@ -14,44 +14,44 @@ export { default as AdIcon } from '../icons/ad';
|
|
|
14
14
|
export { default as AirVentIcon } from '../icons/air-vent';
|
|
15
15
|
// Airplay aliases
|
|
16
16
|
export { default as AirplayIcon } from '../icons/airplay';
|
|
17
|
-
// AlarmClockOff aliases
|
|
18
|
-
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
19
17
|
// AlarmClock aliases
|
|
20
18
|
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
19
|
+
// AlarmClockOff aliases
|
|
20
|
+
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
21
21
|
// AlarmSmoke aliases
|
|
22
22
|
export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
23
23
|
// Album aliases
|
|
24
24
|
export { default as AlbumIcon } from '../icons/album';
|
|
25
|
+
// AlignCenterVertical aliases
|
|
26
|
+
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
25
27
|
// AlignCenterHorizontal aliases
|
|
26
28
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
27
29
|
// AlignEndHorizontal aliases
|
|
28
30
|
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
29
|
-
// AlignHorizontalDistributeCenter aliases
|
|
30
|
-
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
31
31
|
// AlignEndVertical aliases
|
|
32
32
|
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
33
|
-
//
|
|
34
|
-
export { default as
|
|
35
|
-
// AlignHorizontalDistributeStart aliases
|
|
36
|
-
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
33
|
+
// AlignHorizontalDistributeCenter aliases
|
|
34
|
+
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
37
35
|
// AlignHorizontalDistributeEnd aliases
|
|
38
36
|
export { default as AlignHorizontalDistributeEndIcon } from '../icons/align-horizontal-distribute-end';
|
|
39
|
-
//
|
|
40
|
-
export { default as
|
|
37
|
+
// AlignHorizontalDistributeStart aliases
|
|
38
|
+
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
41
39
|
// AlignHorizontalJustifyCenter aliases
|
|
42
40
|
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
41
|
+
// AlignHorizontalJustifyEnd aliases
|
|
42
|
+
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
43
43
|
// AlignHorizontalJustifyStart aliases
|
|
44
44
|
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
45
45
|
// AlignHorizontalSpaceAround aliases
|
|
46
46
|
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
47
|
-
// AlignHorizontalSpaceBetween aliases
|
|
48
|
-
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
49
47
|
// AlignStartHorizontal aliases
|
|
50
48
|
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
51
|
-
//
|
|
52
|
-
export { default as
|
|
49
|
+
// AlignHorizontalSpaceBetween aliases
|
|
50
|
+
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
53
51
|
// AlignVerticalDistributeCenter aliases
|
|
54
52
|
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
53
|
+
// AlignStartVertical aliases
|
|
54
|
+
export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical';
|
|
55
55
|
// AlignVerticalDistributeEnd aliases
|
|
56
56
|
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
57
57
|
// AlignVerticalDistributeStart aliases
|
|
@@ -76,12 +76,8 @@ export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
|
76
76
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
77
77
|
// Anchor aliases
|
|
78
78
|
export { default as AnchorIcon } from '../icons/anchor';
|
|
79
|
-
// Angry aliases
|
|
80
|
-
export { default as AngryIcon } from '../icons/angry';
|
|
81
79
|
// Antenna aliases
|
|
82
80
|
export { default as AntennaIcon } from '../icons/antenna';
|
|
83
|
-
// Annoyed aliases
|
|
84
|
-
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
85
81
|
// Anvil aliases
|
|
86
82
|
export { default as AnvilIcon } from '../icons/anvil';
|
|
87
83
|
// Aperture aliases
|
|
@@ -90,20 +86,20 @@ export { default as ApertureIcon } from '../icons/aperture';
|
|
|
90
86
|
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
91
87
|
// AppWindow aliases
|
|
92
88
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
93
|
-
// ArchiveRestore aliases
|
|
94
|
-
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
95
|
-
// Archive aliases
|
|
96
|
-
export { default as ArchiveIcon } from '../icons/archive';
|
|
97
89
|
// Apple aliases
|
|
98
90
|
export { default as AppleIcon } from '../icons/apple';
|
|
91
|
+
// ArchiveRestore aliases
|
|
92
|
+
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
99
93
|
// ArchiveX aliases
|
|
100
94
|
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
95
|
+
// Archive aliases
|
|
96
|
+
export { default as ArchiveIcon } from '../icons/archive';
|
|
101
97
|
// Armchair aliases
|
|
102
98
|
export { default as ArmchairIcon } from '../icons/armchair';
|
|
103
|
-
// ArrowBigDownDash aliases
|
|
104
|
-
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
105
99
|
// ArrowBigDown aliases
|
|
106
100
|
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
101
|
+
// ArrowBigDownDash aliases
|
|
102
|
+
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
107
103
|
// ArrowBigLeftDash aliases
|
|
108
104
|
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
109
105
|
// ArrowBigLeft aliases
|
|
@@ -124,24 +120,24 @@ export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
|
124
120
|
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
125
121
|
// ArrowDownRight aliases
|
|
126
122
|
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
127
|
-
// ArrowDownToLine aliases
|
|
128
|
-
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
129
123
|
// ArrowDownToDot aliases
|
|
130
124
|
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
131
125
|
// ArrowDownUp aliases
|
|
132
126
|
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
127
|
+
// ArrowDownToLine aliases
|
|
128
|
+
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
133
129
|
// ArrowDown aliases
|
|
134
130
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
135
131
|
// ArrowLeftFromLine aliases
|
|
136
132
|
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
137
|
-
// ArrowLeftRight aliases
|
|
138
|
-
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
139
133
|
// ArrowLeftToLine aliases
|
|
140
134
|
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
141
|
-
//
|
|
142
|
-
export { default as
|
|
135
|
+
// ArrowLeftRight aliases
|
|
136
|
+
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
143
137
|
// ArrowRightFromLine aliases
|
|
144
138
|
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
139
|
+
// ArrowLeft aliases
|
|
140
|
+
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
145
141
|
// ArrowRightLeft aliases
|
|
146
142
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
147
143
|
// ArrowRightToLine aliases
|
|
@@ -150,18 +146,18 @@ export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
|
150
146
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
151
147
|
// ArrowUpDown aliases
|
|
152
148
|
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
153
|
-
// ArrowUpFromLine aliases
|
|
154
|
-
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
155
149
|
// ArrowUpFromDot aliases
|
|
156
150
|
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
157
151
|
// ArrowUpLeft aliases
|
|
158
152
|
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
153
|
+
// ArrowUpFromLine aliases
|
|
154
|
+
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
159
155
|
// ArrowUpRight aliases
|
|
160
156
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
161
|
-
// ArrowUpWideNarrow aliases
|
|
162
|
-
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
163
157
|
// ArrowUpToLine aliases
|
|
164
158
|
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
159
|
+
// ArrowUpWideNarrow aliases
|
|
160
|
+
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
165
161
|
// ArrowUp aliases
|
|
166
162
|
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
167
163
|
// ArrowsUpFromLine aliases
|
|
@@ -170,26 +166,28 @@ export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
|
170
166
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
171
167
|
// Astroid aliases
|
|
172
168
|
export { default as AstroidIcon } from '../icons/astroid';
|
|
173
|
-
// AtSign aliases
|
|
174
|
-
export { default as AtSignIcon } from '../icons/at-sign';
|
|
175
169
|
// Atom aliases
|
|
176
170
|
export { default as AtomIcon } from '../icons/atom';
|
|
171
|
+
// AtSign aliases
|
|
172
|
+
export { default as AtSignIcon } from '../icons/at-sign';
|
|
173
|
+
// AudioLinesX aliases
|
|
174
|
+
export { default as AudioLinesXIcon } from '../icons/audio-lines-x';
|
|
177
175
|
// AudioLines aliases
|
|
178
176
|
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
179
177
|
// AudioWaveform aliases
|
|
180
178
|
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
181
|
-
// Award aliases
|
|
182
|
-
export { default as AwardIcon } from '../icons/award';
|
|
183
179
|
// Axe aliases
|
|
184
180
|
export { default as AxeIcon } from '../icons/axe';
|
|
185
|
-
//
|
|
186
|
-
export { default as
|
|
181
|
+
// Award aliases
|
|
182
|
+
export { default as AwardIcon } from '../icons/award';
|
|
187
183
|
// Backpack aliases
|
|
188
184
|
export { default as BackpackIcon } from '../icons/backpack';
|
|
189
185
|
// BadgeAlert aliases
|
|
190
186
|
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
191
187
|
// BadgeCent aliases
|
|
192
188
|
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
189
|
+
// Baby aliases
|
|
190
|
+
export { default as BabyIcon } from '../icons/baby';
|
|
193
191
|
// BadgeDollarSign aliases
|
|
194
192
|
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
195
193
|
// BadgeEuro aliases
|
|
@@ -202,44 +200,44 @@ export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
|
202
200
|
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
203
201
|
// BadgeMinus aliases
|
|
204
202
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
205
|
-
// BadgePlus aliases
|
|
206
|
-
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
207
203
|
// BadgePercent aliases
|
|
208
204
|
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
209
|
-
//
|
|
210
|
-
export { default as
|
|
205
|
+
// BadgePlus aliases
|
|
206
|
+
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
211
207
|
// BadgeRussianRuble aliases
|
|
212
208
|
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
209
|
+
// BadgePoundSterling aliases
|
|
210
|
+
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
213
211
|
// BadgeSwissFranc aliases
|
|
214
212
|
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
215
|
-
// BadgeX aliases
|
|
216
|
-
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
217
213
|
// BadgeTurkishLira aliases
|
|
218
214
|
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
215
|
+
// Badge aliases
|
|
216
|
+
export { default as BadgeIcon } from '../icons/badge';
|
|
217
|
+
// BadgeX aliases
|
|
218
|
+
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
219
219
|
// BaggageClaim aliases
|
|
220
220
|
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
221
221
|
// Balloon aliases
|
|
222
222
|
export { default as BalloonIcon } from '../icons/balloon';
|
|
223
|
-
// Badge aliases
|
|
224
|
-
export { default as BadgeIcon } from '../icons/badge';
|
|
225
|
-
// Ban aliases
|
|
226
|
-
export { default as BanIcon } from '../icons/ban';
|
|
227
223
|
// Banana aliases
|
|
228
224
|
export { default as BananaIcon } from '../icons/banana';
|
|
229
225
|
// Bandage aliases
|
|
230
226
|
export { default as BandageIcon } from '../icons/bandage';
|
|
231
227
|
// BanknoteArrowDown aliases
|
|
232
228
|
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
233
|
-
//
|
|
234
|
-
export { default as
|
|
235
|
-
// BanknoteX aliases
|
|
236
|
-
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
237
|
-
// Banknote aliases
|
|
238
|
-
export { default as BanknoteIcon } from '../icons/banknote';
|
|
229
|
+
// Ban aliases
|
|
230
|
+
export { default as BanIcon } from '../icons/ban';
|
|
239
231
|
// BanknoteArrowUp aliases
|
|
240
232
|
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
233
|
+
// BanknoteX aliases
|
|
234
|
+
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
235
|
+
// BanknoteCheck aliases
|
|
236
|
+
export { default as BanknoteCheckIcon } from '../icons/banknote-check';
|
|
241
237
|
// Barcode aliases
|
|
242
238
|
export { default as BarcodeIcon } from '../icons/barcode';
|
|
239
|
+
// Banknote aliases
|
|
240
|
+
export { default as BanknoteIcon } from '../icons/banknote';
|
|
243
241
|
// Barrel aliases
|
|
244
242
|
export { default as BarrelIcon } from '../icons/barrel';
|
|
245
243
|
// Baseline aliases
|
|
@@ -256,10 +254,10 @@ export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
|
256
254
|
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
257
255
|
// BatteryPlus aliases
|
|
258
256
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
259
|
-
// BatteryWarning aliases
|
|
260
|
-
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
261
257
|
// Battery aliases
|
|
262
258
|
export { default as BatteryIcon } from '../icons/battery';
|
|
259
|
+
// BatteryWarning aliases
|
|
260
|
+
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
263
261
|
// Beaker aliases
|
|
264
262
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
265
263
|
// BeanOff aliases
|
|
@@ -280,74 +278,74 @@ export { default as BeefIcon } from '../icons/beef';
|
|
|
280
278
|
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
281
279
|
// Beer aliases
|
|
282
280
|
export { default as BeerIcon } from '../icons/beer';
|
|
281
|
+
// BellCheck aliases
|
|
282
|
+
export { default as BellCheckIcon } from '../icons/bell-check';
|
|
283
283
|
// BellDot aliases
|
|
284
284
|
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
285
285
|
// BellElectric aliases
|
|
286
286
|
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
287
287
|
// BellMinus aliases
|
|
288
288
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
289
|
-
// BellOff aliases
|
|
290
|
-
export { default as BellOffIcon } from '../icons/bell-off';
|
|
291
|
-
// BellCheck aliases
|
|
292
|
-
export { default as BellCheckIcon } from '../icons/bell-check';
|
|
293
289
|
// BellPlus aliases
|
|
294
290
|
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
295
291
|
// BellRing aliases
|
|
296
292
|
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
293
|
+
// BellOff aliases
|
|
294
|
+
export { default as BellOffIcon } from '../icons/bell-off';
|
|
297
295
|
// Bell aliases
|
|
298
296
|
export { default as BellIcon } from '../icons/bell';
|
|
299
297
|
// BetweenVerticalEnd aliases
|
|
300
298
|
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
301
|
-
// BetweenVerticalStart aliases
|
|
302
|
-
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
303
299
|
// BicepsFlexed aliases
|
|
304
300
|
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
305
|
-
//
|
|
306
|
-
export { default as
|
|
301
|
+
// BetweenVerticalStart aliases
|
|
302
|
+
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
307
303
|
// Binary aliases
|
|
308
304
|
export { default as BinaryIcon } from '../icons/binary';
|
|
309
305
|
// Binoculars aliases
|
|
310
306
|
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
307
|
+
// Bike aliases
|
|
308
|
+
export { default as BikeIcon } from '../icons/bike';
|
|
311
309
|
// Biohazard aliases
|
|
312
310
|
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
313
311
|
// Bird aliases
|
|
314
312
|
export { default as BirdIcon } from '../icons/bird';
|
|
315
|
-
// Bitcoin aliases
|
|
316
|
-
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
317
313
|
// Birdhouse aliases
|
|
318
314
|
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
319
|
-
//
|
|
320
|
-
export { default as
|
|
315
|
+
// Bitcoin aliases
|
|
316
|
+
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
321
317
|
// Blender aliases
|
|
322
318
|
export { default as BlenderIcon } from '../icons/blender';
|
|
323
|
-
//
|
|
324
|
-
export { default as
|
|
319
|
+
// Blend aliases
|
|
320
|
+
export { default as BlendIcon } from '../icons/blend';
|
|
325
321
|
// Blinds aliases
|
|
326
322
|
export { default as BlindsIcon } from '../icons/blinds';
|
|
323
|
+
// Blocks aliases
|
|
324
|
+
export { default as BlocksIcon } from '../icons/blocks';
|
|
327
325
|
// BluetoothConnected aliases
|
|
328
326
|
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
329
|
-
// BluetoothOff aliases
|
|
330
|
-
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
331
327
|
// BluetoothSearching aliases
|
|
332
328
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
333
329
|
// Bluetooth aliases
|
|
334
330
|
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
331
|
+
// BluetoothOff aliases
|
|
332
|
+
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
335
333
|
// Bold aliases
|
|
336
334
|
export { default as BoldIcon } from '../icons/bold';
|
|
337
335
|
// Bolt aliases
|
|
338
336
|
export { default as BoltIcon } from '../icons/bolt';
|
|
339
|
-
// BoneFracture aliases
|
|
340
|
-
export { default as BoneFractureIcon } from '../icons/bone-fracture';
|
|
341
337
|
// Bomb aliases
|
|
342
338
|
export { default as BombIcon } from '../icons/bomb';
|
|
343
|
-
//
|
|
344
|
-
export { default as
|
|
339
|
+
// BoneFracture aliases
|
|
340
|
+
export { default as BoneFractureIcon } from '../icons/bone-fracture';
|
|
345
341
|
// Bone aliases
|
|
346
342
|
export { default as BoneIcon } from '../icons/bone';
|
|
347
|
-
//
|
|
348
|
-
export { default as
|
|
343
|
+
// BookA aliases
|
|
344
|
+
export { default as BookAIcon } from '../icons/book-a';
|
|
349
345
|
// BookAlert aliases
|
|
350
346
|
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
347
|
+
// BookAudio aliases
|
|
348
|
+
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
351
349
|
// BookCheck aliases
|
|
352
350
|
export { default as BookCheckIcon } from '../icons/book-check';
|
|
353
351
|
// BookCopy aliases
|
|
@@ -358,10 +356,10 @@ export { default as BookDownIcon } from '../icons/book-down';
|
|
|
358
356
|
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
359
357
|
// BookHeart aliases
|
|
360
358
|
export { default as BookHeartIcon } from '../icons/book-heart';
|
|
361
|
-
// BookImage aliases
|
|
362
|
-
export { default as BookImageIcon } from '../icons/book-image';
|
|
363
359
|
// BookKey aliases
|
|
364
360
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
361
|
+
// BookImage aliases
|
|
362
|
+
export { default as BookImageIcon } from '../icons/book-image';
|
|
365
363
|
// BookLock aliases
|
|
366
364
|
export { default as BookLockIcon } from '../icons/book-lock';
|
|
367
365
|
// BookMarked aliases
|
|
@@ -370,10 +368,10 @@ export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
|
370
368
|
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
371
369
|
// BookOpenCheck aliases
|
|
372
370
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
373
|
-
// BookOpen aliases
|
|
374
|
-
export { default as BookOpenIcon } from '../icons/book-open';
|
|
375
371
|
// BookOpenText aliases
|
|
376
372
|
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
373
|
+
// BookOpen aliases
|
|
374
|
+
export { default as BookOpenIcon } from '../icons/book-open';
|
|
377
375
|
// BookPlus aliases
|
|
378
376
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
379
377
|
// BookSearch aliases
|
|
@@ -384,138 +382,142 @@ export { default as BookTextIcon } from '../icons/book-text';
|
|
|
384
382
|
export { default as BookTypeIcon } from '../icons/book-type';
|
|
385
383
|
// BookUp2 aliases
|
|
386
384
|
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
387
|
-
// BookUser aliases
|
|
388
|
-
export { default as BookUserIcon } from '../icons/book-user';
|
|
389
385
|
// BookUp aliases
|
|
390
386
|
export { default as BookUpIcon } from '../icons/book-up';
|
|
387
|
+
// BookUser aliases
|
|
388
|
+
export { default as BookUserIcon } from '../icons/book-user';
|
|
391
389
|
// BookX aliases
|
|
392
390
|
export { default as BookXIcon } from '../icons/book-x';
|
|
393
|
-
// BookmarkMinus aliases
|
|
394
|
-
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
395
391
|
// Book aliases
|
|
396
392
|
export { default as BookIcon } from '../icons/book';
|
|
397
393
|
// BookmarkCheck aliases
|
|
398
394
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
395
|
+
// BookmarkMinus aliases
|
|
396
|
+
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
399
397
|
// BookmarkOff aliases
|
|
400
398
|
export { default as BookmarkOffIcon } from '../icons/bookmark-off';
|
|
401
|
-
// BookmarkPlus aliases
|
|
402
|
-
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
403
399
|
// BookmarkX aliases
|
|
404
400
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
405
401
|
// Bookmark aliases
|
|
406
402
|
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
403
|
+
// BoomBox aliases
|
|
404
|
+
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
405
|
+
// BookmarkPlus aliases
|
|
406
|
+
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
407
407
|
// BotMessageSquare aliases
|
|
408
408
|
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
409
|
-
// Bot aliases
|
|
410
|
-
export { default as BotIcon } from '../icons/bot';
|
|
411
409
|
// BotOff aliases
|
|
412
410
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
413
|
-
//
|
|
414
|
-
export { default as
|
|
411
|
+
// Bot aliases
|
|
412
|
+
export { default as BotIcon } from '../icons/bot';
|
|
415
413
|
// BottleWine aliases
|
|
416
414
|
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
415
|
+
// BowArrow aliases
|
|
416
|
+
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
417
417
|
// Box aliases
|
|
418
418
|
export { default as BoxIcon } from '../icons/box';
|
|
419
419
|
// Boxes aliases
|
|
420
420
|
export { default as BoxesIcon } from '../icons/boxes';
|
|
421
|
-
// BowArrow aliases
|
|
422
|
-
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
423
|
-
// Brackets aliases
|
|
424
|
-
export { default as BracketsIcon } from '../icons/brackets';
|
|
425
421
|
// BrainCircuit aliases
|
|
426
422
|
export { default as BrainCircuitIcon } from '../icons/brain-circuit';
|
|
423
|
+
// Brackets aliases
|
|
424
|
+
export { default as BracketsIcon } from '../icons/brackets';
|
|
427
425
|
// BrainCog aliases
|
|
428
426
|
export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
429
427
|
// BrickWallFire aliases
|
|
430
428
|
export { default as BrickWallFireIcon } from '../icons/brick-wall-fire';
|
|
431
|
-
// BrickWallShield aliases
|
|
432
|
-
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
433
429
|
// Brain aliases
|
|
434
430
|
export { default as BrainIcon } from '../icons/brain';
|
|
431
|
+
// BrickWallShield aliases
|
|
432
|
+
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
435
433
|
// BrickWall aliases
|
|
436
434
|
export { default as BrickWallIcon } from '../icons/brick-wall';
|
|
437
435
|
// BriefcaseBusiness aliases
|
|
438
436
|
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
439
437
|
// BriefcaseConveyorBelt aliases
|
|
440
438
|
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
441
|
-
// Briefcase aliases
|
|
442
|
-
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
443
439
|
// BriefcaseMedical aliases
|
|
444
440
|
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
441
|
+
// Briefcase aliases
|
|
442
|
+
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
445
443
|
// BringToFront aliases
|
|
446
444
|
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
447
445
|
// Broccoli aliases
|
|
448
446
|
export { default as BroccoliIcon } from '../icons/broccoli';
|
|
447
|
+
// BroomSparkles aliases
|
|
448
|
+
export { default as BroomSparklesIcon } from '../icons/broom-sparkles';
|
|
449
|
+
// Broom aliases
|
|
450
|
+
export { default as BroomIcon } from '../icons/broom';
|
|
449
451
|
// BrushCleaning aliases
|
|
450
452
|
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
451
453
|
// Brush aliases
|
|
452
454
|
export { default as BrushIcon } from '../icons/brush';
|
|
453
|
-
// Bubbles aliases
|
|
454
|
-
export { default as BubblesIcon } from '../icons/bubbles';
|
|
455
455
|
// BugOff aliases
|
|
456
456
|
export { default as BugOffIcon } from '../icons/bug-off';
|
|
457
457
|
// BugPlay aliases
|
|
458
458
|
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
459
|
+
// Bubbles aliases
|
|
460
|
+
export { default as BubblesIcon } from '../icons/bubbles';
|
|
459
461
|
// Bug aliases
|
|
460
462
|
export { default as BugIcon } from '../icons/bug';
|
|
463
|
+
// BusFront aliases
|
|
464
|
+
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
461
465
|
// Building2 aliases
|
|
462
466
|
export { default as Building2Icon } from '../icons/building-2';
|
|
463
467
|
// Building aliases
|
|
464
468
|
export { default as BuildingIcon } from '../icons/building';
|
|
465
|
-
// BusFront aliases
|
|
466
|
-
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
467
469
|
// Bus aliases
|
|
468
470
|
export { default as BusIcon } from '../icons/bus';
|
|
469
471
|
// CableCar aliases
|
|
470
472
|
export { default as CableCarIcon } from '../icons/cable-car';
|
|
473
|
+
// Cable aliases
|
|
474
|
+
export { default as CableIcon } from '../icons/cable';
|
|
471
475
|
// CakeSlice aliases
|
|
472
476
|
export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
473
477
|
// Calculator aliases
|
|
474
478
|
export { default as CalculatorIcon } from '../icons/calculator';
|
|
475
|
-
//
|
|
476
|
-
export { default as
|
|
479
|
+
// Cake aliases
|
|
480
|
+
export { default as CakeIcon } from '../icons/cake';
|
|
477
481
|
// Calendar1 aliases
|
|
478
482
|
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
479
483
|
// CalendarArrowDown aliases
|
|
480
484
|
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
481
|
-
// Cake aliases
|
|
482
|
-
export { default as CakeIcon } from '../icons/cake';
|
|
483
485
|
// CalendarArrowUp aliases
|
|
484
486
|
export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
485
487
|
// CalendarCheck2 aliases
|
|
486
488
|
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
487
|
-
// CalendarClock aliases
|
|
488
|
-
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
489
489
|
// CalendarCheck aliases
|
|
490
490
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
491
|
+
// CalendarClock aliases
|
|
492
|
+
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
491
493
|
// CalendarCog aliases
|
|
492
494
|
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
493
|
-
// CalendarDays aliases
|
|
494
|
-
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
495
495
|
// CalendarFold aliases
|
|
496
496
|
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
497
|
-
//
|
|
498
|
-
export { default as
|
|
499
|
-
// CalendarOff aliases
|
|
500
|
-
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
497
|
+
// CalendarDays aliases
|
|
498
|
+
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
501
499
|
// CalendarHeart aliases
|
|
502
500
|
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
501
|
+
// CalendarMinus2 aliases
|
|
502
|
+
export { default as CalendarMinus2Icon } from '../icons/calendar-minus-2';
|
|
503
503
|
// CalendarMinus aliases
|
|
504
504
|
export { default as CalendarMinusIcon } from '../icons/calendar-minus';
|
|
505
|
+
// CalendarOff aliases
|
|
506
|
+
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
505
507
|
// CalendarPlus2 aliases
|
|
506
508
|
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
509
|
+
// CalendarRange aliases
|
|
510
|
+
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
507
511
|
// CalendarPlus aliases
|
|
508
512
|
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
509
513
|
// CalendarSearch aliases
|
|
510
514
|
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
511
|
-
// CalendarRange aliases
|
|
512
|
-
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
513
515
|
// CalendarSync aliases
|
|
514
516
|
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
515
|
-
// CalendarX aliases
|
|
516
|
-
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
517
517
|
// CalendarX2 aliases
|
|
518
518
|
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
519
|
+
// CalendarX aliases
|
|
520
|
+
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
519
521
|
// Calendar aliases
|
|
520
522
|
export { default as CalendarIcon } from '../icons/calendar';
|
|
521
523
|
// Calendars aliases
|
|
@@ -526,10 +528,10 @@ export { default as CameraOffIcon } from '../icons/camera-off';
|
|
|
526
528
|
export { default as CameraIcon } from '../icons/camera';
|
|
527
529
|
// CandyCane aliases
|
|
528
530
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
529
|
-
// Candy aliases
|
|
530
|
-
export { default as CandyIcon } from '../icons/candy';
|
|
531
531
|
// CandyOff aliases
|
|
532
532
|
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
533
|
+
// Candy aliases
|
|
534
|
+
export { default as CandyIcon } from '../icons/candy';
|
|
533
535
|
// CannabisOff aliases
|
|
534
536
|
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
535
537
|
// Cannabis aliases
|
|
@@ -538,40 +540,40 @@ export { default as CannabisIcon } from '../icons/cannabis';
|
|
|
538
540
|
export { default as CaptionsOffIcon } from '../icons/captions-off';
|
|
539
541
|
// CarFront aliases
|
|
540
542
|
export { default as CarFrontIcon } from '../icons/car-front';
|
|
543
|
+
// Car aliases
|
|
544
|
+
export { default as CarIcon } from '../icons/car';
|
|
541
545
|
// CarTaxiFront aliases
|
|
542
546
|
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
543
547
|
// Caravan aliases
|
|
544
548
|
export { default as CaravanIcon } from '../icons/caravan';
|
|
545
|
-
// Car aliases
|
|
546
|
-
export { default as CarIcon } from '../icons/car';
|
|
547
549
|
// CardSim aliases
|
|
548
550
|
export { default as CardSimIcon } from '../icons/card-sim';
|
|
549
|
-
// Carrot aliases
|
|
550
|
-
export { default as CarrotIcon } from '../icons/carrot';
|
|
551
551
|
// CaseLower aliases
|
|
552
552
|
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
553
|
-
//
|
|
554
|
-
export { default as
|
|
553
|
+
// Carrot aliases
|
|
554
|
+
export { default as CarrotIcon } from '../icons/carrot';
|
|
555
555
|
// CaseUpper aliases
|
|
556
556
|
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
557
|
-
// Cast aliases
|
|
558
|
-
export { default as CastIcon } from '../icons/cast';
|
|
559
|
-
// Castle aliases
|
|
560
|
-
export { default as CastleIcon } from '../icons/castle';
|
|
561
557
|
// CassetteTape aliases
|
|
562
558
|
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
559
|
+
// CaseSensitive aliases
|
|
560
|
+
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
561
|
+
// Cast aliases
|
|
562
|
+
export { default as CastIcon } from '../icons/cast';
|
|
563
563
|
// Cat aliases
|
|
564
564
|
export { default as CatIcon } from '../icons/cat';
|
|
565
|
+
// Castle aliases
|
|
566
|
+
export { default as CastleIcon } from '../icons/castle';
|
|
565
567
|
// CctvOff aliases
|
|
566
568
|
export { default as CctvOffIcon } from '../icons/cctv-off';
|
|
567
569
|
// Cctv aliases
|
|
568
570
|
export { default as CctvIcon } from '../icons/cctv';
|
|
571
|
+
// ChartBarDecreasing aliases
|
|
572
|
+
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
569
573
|
// ChartBarIncreasing aliases
|
|
570
574
|
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
571
575
|
// ChartBarStacked aliases
|
|
572
576
|
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
573
|
-
// ChartBarDecreasing aliases
|
|
574
|
-
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
575
577
|
// ChartColumnDecreasing aliases
|
|
576
578
|
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
577
579
|
// ChartColumnStacked aliases
|
|
@@ -582,46 +584,46 @@ export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
|
582
584
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
583
585
|
// ChartNoAxesColumnDecreasing aliases
|
|
584
586
|
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
585
|
-
// ChartSpline aliases
|
|
586
|
-
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
587
587
|
// ChartNoAxesCombined aliases
|
|
588
588
|
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
589
|
-
//
|
|
590
|
-
export { default as
|
|
589
|
+
// ChartSpline aliases
|
|
590
|
+
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
591
591
|
// CheckCheck aliases
|
|
592
592
|
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
593
|
+
// CheckLine aliases
|
|
594
|
+
export { default as CheckLineIcon } from '../icons/check-line';
|
|
593
595
|
// Check aliases
|
|
594
596
|
export { default as CheckIcon } from '../icons/check';
|
|
595
|
-
// ChefHat aliases
|
|
596
|
-
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
597
597
|
// Cherry aliases
|
|
598
598
|
export { default as CherryIcon } from '../icons/cherry';
|
|
599
|
+
// ChefHat aliases
|
|
600
|
+
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
599
601
|
// ChessBishop aliases
|
|
600
602
|
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
601
603
|
// ChessKing aliases
|
|
602
604
|
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
603
|
-
// ChessKnight aliases
|
|
604
|
-
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
605
605
|
// ChessPawn aliases
|
|
606
606
|
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
607
|
+
// ChessKnight aliases
|
|
608
|
+
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
607
609
|
// ChessQueen aliases
|
|
608
610
|
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
609
611
|
// ChessRook aliases
|
|
610
612
|
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
611
|
-
// ChevronFirst aliases
|
|
612
|
-
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
613
613
|
// ChevronDown aliases
|
|
614
614
|
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
615
|
-
//
|
|
616
|
-
export { default as
|
|
615
|
+
// ChevronFirst aliases
|
|
616
|
+
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
617
617
|
// ChevronLeft aliases
|
|
618
618
|
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
619
|
-
//
|
|
620
|
-
export { default as
|
|
621
|
-
// ChevronsDownUp aliases
|
|
622
|
-
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
619
|
+
// ChevronLast aliases
|
|
620
|
+
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
623
621
|
// ChevronRight aliases
|
|
624
622
|
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
623
|
+
// ChevronsDownUp aliases
|
|
624
|
+
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
625
|
+
// ChevronUp aliases
|
|
626
|
+
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
625
627
|
// ChevronsDown aliases
|
|
626
628
|
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
627
629
|
// ChevronsLeftRightEllipsis aliases
|
|
@@ -658,38 +660,38 @@ export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
|
658
660
|
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
659
661
|
// CircleEuro aliases
|
|
660
662
|
export { default as CircleEuroIcon } from '../icons/circle-euro';
|
|
663
|
+
// CircleOff aliases
|
|
664
|
+
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
661
665
|
// CircleFadingArrowUp aliases
|
|
662
666
|
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
663
667
|
// CircleFadingPlus aliases
|
|
664
668
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
665
|
-
// CircleOff aliases
|
|
666
|
-
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
667
669
|
// CirclePile aliases
|
|
668
670
|
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
669
671
|
// CirclePoundSterling aliases
|
|
670
672
|
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
671
673
|
// CircleSlash aliases
|
|
672
674
|
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
673
|
-
// CircleSmall aliases
|
|
674
|
-
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
675
675
|
// CircleStar aliases
|
|
676
676
|
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
677
|
+
// CircleSmall aliases
|
|
678
|
+
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
677
679
|
// Circle aliases
|
|
678
680
|
export { default as CircleIcon } from '../icons/circle';
|
|
681
|
+
// CircuitBoard aliases
|
|
682
|
+
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
679
683
|
// Citrus aliases
|
|
680
684
|
export { default as CitrusIcon } from '../icons/citrus';
|
|
681
685
|
// Clapperboard aliases
|
|
682
686
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
683
|
-
// CircuitBoard aliases
|
|
684
|
-
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
685
687
|
// ClipboardCheck aliases
|
|
686
688
|
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
687
689
|
// ClipboardClock aliases
|
|
688
690
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
689
|
-
// ClipboardCopy aliases
|
|
690
|
-
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
691
691
|
// ClipboardList aliases
|
|
692
692
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
693
|
+
// ClipboardCopy aliases
|
|
694
|
+
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
693
695
|
// ClipboardMinus aliases
|
|
694
696
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
695
697
|
// ClipboardPaste aliases
|
|
@@ -698,52 +700,52 @@ export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
|
698
700
|
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
699
701
|
// ClipboardType aliases
|
|
700
702
|
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
701
|
-
// Clipboard aliases
|
|
702
|
-
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
703
703
|
// ClipboardX aliases
|
|
704
704
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
705
|
+
// Clipboard aliases
|
|
706
|
+
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
705
707
|
// Clock1 aliases
|
|
706
708
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
707
|
-
// Clock10 aliases
|
|
708
|
-
export { default as Clock10Icon } from '../icons/clock-10';
|
|
709
709
|
// Clock11 aliases
|
|
710
710
|
export { default as Clock11Icon } from '../icons/clock-11';
|
|
711
|
-
//
|
|
712
|
-
export { default as
|
|
711
|
+
// Clock10 aliases
|
|
712
|
+
export { default as Clock10Icon } from '../icons/clock-10';
|
|
713
713
|
// Clock12 aliases
|
|
714
714
|
export { default as Clock12Icon } from '../icons/clock-12';
|
|
715
|
-
//
|
|
716
|
-
export { default as
|
|
715
|
+
// Clock2 aliases
|
|
716
|
+
export { default as Clock2Icon } from '../icons/clock-2';
|
|
717
717
|
// Clock4 aliases
|
|
718
718
|
export { default as Clock4Icon } from '../icons/clock-4';
|
|
719
|
-
// Clock5 aliases
|
|
720
|
-
export { default as Clock5Icon } from '../icons/clock-5';
|
|
721
719
|
// Clock6 aliases
|
|
722
720
|
export { default as Clock6Icon } from '../icons/clock-6';
|
|
721
|
+
// Clock5 aliases
|
|
722
|
+
export { default as Clock5Icon } from '../icons/clock-5';
|
|
723
|
+
// Clock3 aliases
|
|
724
|
+
export { default as Clock3Icon } from '../icons/clock-3';
|
|
723
725
|
// Clock7 aliases
|
|
724
726
|
export { default as Clock7Icon } from '../icons/clock-7';
|
|
725
727
|
// Clock8 aliases
|
|
726
728
|
export { default as Clock8Icon } from '../icons/clock-8';
|
|
727
|
-
// ClockAlert aliases
|
|
728
|
-
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
729
729
|
// Clock9 aliases
|
|
730
730
|
export { default as Clock9Icon } from '../icons/clock-9';
|
|
731
|
+
// ClockAlert aliases
|
|
732
|
+
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
731
733
|
// ClockArrowDown aliases
|
|
732
734
|
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
733
|
-
// ClockArrowUp aliases
|
|
734
|
-
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
735
|
-
// ClockArrowRight aliases
|
|
736
|
-
export { default as ClockArrowRightIcon } from '../icons/clock-arrow-right';
|
|
737
735
|
// ClockArrowLeft aliases
|
|
738
736
|
export { default as ClockArrowLeftIcon } from '../icons/clock-arrow-left';
|
|
739
|
-
//
|
|
740
|
-
export { default as
|
|
737
|
+
// ClockArrowRight aliases
|
|
738
|
+
export { default as ClockArrowRightIcon } from '../icons/clock-arrow-right';
|
|
739
|
+
// ClockArrowUp aliases
|
|
740
|
+
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
741
741
|
// ClockCheck aliases
|
|
742
742
|
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
743
|
-
//
|
|
744
|
-
export { default as
|
|
743
|
+
// ClockFading aliases
|
|
744
|
+
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
745
745
|
// ClockPlus aliases
|
|
746
746
|
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
747
|
+
// Clock aliases
|
|
748
|
+
export { default as ClockIcon } from '../icons/clock';
|
|
747
749
|
// ClosedCaption aliases
|
|
748
750
|
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
749
751
|
// CloudAlert aliases
|
|
@@ -776,44 +778,44 @@ export { default as CloudRainIcon } from '../icons/cloud-rain';
|
|
|
776
778
|
export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
777
779
|
// CloudSunRain aliases
|
|
778
780
|
export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
779
|
-
// CloudSync aliases
|
|
780
|
-
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
781
781
|
// CloudSun aliases
|
|
782
782
|
export { default as CloudSunIcon } from '../icons/cloud-sun';
|
|
783
|
-
//
|
|
784
|
-
export { default as
|
|
783
|
+
// CloudSync aliases
|
|
784
|
+
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
785
785
|
// Cloud aliases
|
|
786
786
|
export { default as CloudIcon } from '../icons/cloud';
|
|
787
|
+
// Cloudy aliases
|
|
788
|
+
export { default as CloudyIcon } from '../icons/cloudy';
|
|
787
789
|
// Clover aliases
|
|
788
790
|
export { default as CloverIcon } from '../icons/clover';
|
|
789
791
|
// Club aliases
|
|
790
792
|
export { default as ClubIcon } from '../icons/club';
|
|
791
|
-
// Coffee aliases
|
|
792
|
-
export { default as CoffeeIcon } from '../icons/coffee';
|
|
793
793
|
// Code aliases
|
|
794
794
|
export { default as CodeIcon } from '../icons/code';
|
|
795
|
+
// Coffee aliases
|
|
796
|
+
export { default as CoffeeIcon } from '../icons/coffee';
|
|
795
797
|
// Cog aliases
|
|
796
798
|
export { default as CogIcon } from '../icons/cog';
|
|
797
799
|
// Columns4 aliases
|
|
798
800
|
export { default as Columns4Icon } from '../icons/columns-4';
|
|
799
801
|
// Coins aliases
|
|
800
802
|
export { default as CoinsIcon } from '../icons/coins';
|
|
801
|
-
// Combine aliases
|
|
802
|
-
export { default as CombineIcon } from '../icons/combine';
|
|
803
803
|
// Command aliases
|
|
804
804
|
export { default as CommandIcon } from '../icons/command';
|
|
805
|
-
//
|
|
806
|
-
export { default as
|
|
805
|
+
// Combine aliases
|
|
806
|
+
export { default as CombineIcon } from '../icons/combine';
|
|
807
807
|
// Compass aliases
|
|
808
808
|
export { default as CompassIcon } from '../icons/compass';
|
|
809
|
+
// Component aliases
|
|
810
|
+
export { default as ComponentIcon } from '../icons/component';
|
|
809
811
|
// Computer aliases
|
|
810
812
|
export { default as ComputerIcon } from '../icons/computer';
|
|
811
813
|
// ConciergeBell aliases
|
|
812
814
|
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
813
|
-
// Construction aliases
|
|
814
|
-
export { default as ConstructionIcon } from '../icons/construction';
|
|
815
815
|
// Cone aliases
|
|
816
816
|
export { default as ConeIcon } from '../icons/cone';
|
|
817
|
+
// Construction aliases
|
|
818
|
+
export { default as ConstructionIcon } from '../icons/construction';
|
|
817
819
|
// Contact aliases
|
|
818
820
|
export { default as ContactIcon } from '../icons/contact';
|
|
819
821
|
// Container aliases
|
|
@@ -824,26 +826,26 @@ export { default as ContrastIcon } from '../icons/contrast';
|
|
|
824
826
|
export { default as CookieIcon } from '../icons/cookie';
|
|
825
827
|
// CookingPot aliases
|
|
826
828
|
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
827
|
-
// CopyPlus aliases
|
|
828
|
-
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
829
829
|
// CopyCheck aliases
|
|
830
830
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
831
831
|
// CopyMinus aliases
|
|
832
832
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
833
|
+
// CopyPlus aliases
|
|
834
|
+
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
833
835
|
// CopySlash aliases
|
|
834
836
|
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
835
837
|
// CopyX aliases
|
|
836
838
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
837
|
-
// Copyleft aliases
|
|
838
|
-
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
839
839
|
// Copy aliases
|
|
840
840
|
export { default as CopyIcon } from '../icons/copy';
|
|
841
|
+
// Copyleft aliases
|
|
842
|
+
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
843
|
+
// Copyright aliases
|
|
844
|
+
export { default as CopyrightIcon } from '../icons/copyright';
|
|
841
845
|
// CornerDownLeft aliases
|
|
842
846
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
843
847
|
// CornerDownRight aliases
|
|
844
848
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
845
|
-
// Copyright aliases
|
|
846
|
-
export { default as CopyrightIcon } from '../icons/copyright';
|
|
847
849
|
// CornerLeftDown aliases
|
|
848
850
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
849
851
|
// CornerLeftUp aliases
|
|
@@ -868,10 +870,10 @@ export { default as CroissantIcon } from '../icons/croissant';
|
|
|
868
870
|
export { default as CropIcon } from '../icons/crop';
|
|
869
871
|
// Cross aliases
|
|
870
872
|
export { default as CrossIcon } from '../icons/cross';
|
|
871
|
-
// Crown aliases
|
|
872
|
-
export { default as CrownIcon } from '../icons/crown';
|
|
873
873
|
// Crosshair aliases
|
|
874
874
|
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
875
|
+
// Crown aliases
|
|
876
|
+
export { default as CrownIcon } from '../icons/crown';
|
|
875
877
|
// Cuboid aliases
|
|
876
878
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
877
879
|
// CupSoda aliases
|
|
@@ -882,10 +884,10 @@ export { default as CurrencyIcon } from '../icons/currency';
|
|
|
882
884
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
883
885
|
// Dam aliases
|
|
884
886
|
export { default as DamIcon } from '../icons/dam';
|
|
885
|
-
// DatabaseArrowUp aliases
|
|
886
|
-
export { default as DatabaseArrowUpIcon } from '../icons/database-arrow-up';
|
|
887
887
|
// DatabaseArrowDown aliases
|
|
888
888
|
export { default as DatabaseArrowDownIcon } from '../icons/database-arrow-down';
|
|
889
|
+
// DatabaseArrowUp aliases
|
|
890
|
+
export { default as DatabaseArrowUpIcon } from '../icons/database-arrow-up';
|
|
889
891
|
// DatabaseBackup aliases
|
|
890
892
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
891
893
|
// DatabaseCheck aliases
|
|
@@ -896,14 +898,14 @@ export { default as DatabaseMinusIcon } from '../icons/database-minus';
|
|
|
896
898
|
export { default as DatabasePlusIcon } from '../icons/database-plus';
|
|
897
899
|
// DatabaseSearch aliases
|
|
898
900
|
export { default as DatabaseSearchIcon } from '../icons/database-search';
|
|
899
|
-
// Database aliases
|
|
900
|
-
export { default as DatabaseIcon } from '../icons/database';
|
|
901
|
-
// DecimalsArrowLeft aliases
|
|
902
|
-
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
903
901
|
// DatabaseX aliases
|
|
904
902
|
export { default as DatabaseXIcon } from '../icons/database-x';
|
|
905
903
|
// DatabaseZap aliases
|
|
906
904
|
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
905
|
+
// Database aliases
|
|
906
|
+
export { default as DatabaseIcon } from '../icons/database';
|
|
907
|
+
// DecimalsArrowLeft aliases
|
|
908
|
+
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
907
909
|
// DecimalsArrowRight aliases
|
|
908
910
|
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
909
911
|
// Delete aliases
|
|
@@ -916,10 +918,10 @@ export { default as DiameterIcon } from '../icons/diameter';
|
|
|
916
918
|
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
917
919
|
// DiamondPlus aliases
|
|
918
920
|
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
919
|
-
// Dice1 aliases
|
|
920
|
-
export { default as Dice1Icon } from '../icons/dice-1';
|
|
921
921
|
// Diamond aliases
|
|
922
922
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
923
|
+
// Dice1 aliases
|
|
924
|
+
export { default as Dice1Icon } from '../icons/dice-1';
|
|
923
925
|
// Dice2 aliases
|
|
924
926
|
export { default as Dice2Icon } from '../icons/dice-2';
|
|
925
927
|
// Dice3 aliases
|
|
@@ -938,16 +940,16 @@ export { default as DiffIcon } from '../icons/diff';
|
|
|
938
940
|
export { default as Disc2Icon } from '../icons/disc-2';
|
|
939
941
|
// Disc3 aliases
|
|
940
942
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
941
|
-
// DiscAlbum aliases
|
|
942
|
-
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
943
943
|
// Disc aliases
|
|
944
944
|
export { default as DiscIcon } from '../icons/disc';
|
|
945
|
+
// DiscAlbum aliases
|
|
946
|
+
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
947
|
+
// Divide aliases
|
|
948
|
+
export { default as DivideIcon } from '../icons/divide';
|
|
945
949
|
// DnaOff aliases
|
|
946
950
|
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
947
951
|
// Dna aliases
|
|
948
952
|
export { default as DnaIcon } from '../icons/dna';
|
|
949
|
-
// Divide aliases
|
|
950
|
-
export { default as DivideIcon } from '../icons/divide';
|
|
951
953
|
// Dock aliases
|
|
952
954
|
export { default as DockIcon } from '../icons/dock';
|
|
953
955
|
// Dog aliases
|
|
@@ -972,10 +974,10 @@ export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
|
972
974
|
export { default as DramaIcon } from '../icons/drama';
|
|
973
975
|
// Drill aliases
|
|
974
976
|
export { default as DrillIcon } from '../icons/drill';
|
|
975
|
-
// DropletOff aliases
|
|
976
|
-
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
977
977
|
// Drone aliases
|
|
978
978
|
export { default as DroneIcon } from '../icons/drone';
|
|
979
|
+
// DropletOff aliases
|
|
980
|
+
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
979
981
|
// Droplet aliases
|
|
980
982
|
export { default as DropletIcon } from '../icons/droplet';
|
|
981
983
|
// Droplets aliases
|
|
@@ -986,28 +988,28 @@ export { default as DrumIcon } from '../icons/drum';
|
|
|
986
988
|
export { default as DrumstickIcon } from '../icons/drumstick';
|
|
987
989
|
// Dumbbell aliases
|
|
988
990
|
export { default as DumbbellIcon } from '../icons/dumbbell';
|
|
989
|
-
// EarOff aliases
|
|
990
|
-
export { default as EarOffIcon } from '../icons/ear-off';
|
|
991
991
|
// Ear aliases
|
|
992
992
|
export { default as EarIcon } from '../icons/ear';
|
|
993
993
|
// EarthLock aliases
|
|
994
994
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
995
|
+
// EarOff aliases
|
|
996
|
+
export { default as EarOffIcon } from '../icons/ear-off';
|
|
995
997
|
// Eclipse aliases
|
|
996
998
|
export { default as EclipseIcon } from '../icons/eclipse';
|
|
997
|
-
// EggFried aliases
|
|
998
|
-
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
999
999
|
// EggOff aliases
|
|
1000
1000
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
1001
|
+
// EggFried aliases
|
|
1002
|
+
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
1001
1003
|
// Egg aliases
|
|
1002
1004
|
export { default as EggIcon } from '../icons/egg';
|
|
1003
1005
|
// Ellipse aliases
|
|
1004
1006
|
export { default as EllipseIcon } from '../icons/ellipse';
|
|
1005
1007
|
// EqualApproximately aliases
|
|
1006
1008
|
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
1007
|
-
// EqualNot aliases
|
|
1008
|
-
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
1009
1009
|
// Equal aliases
|
|
1010
1010
|
export { default as EqualIcon } from '../icons/equal';
|
|
1011
|
+
// EqualNot aliases
|
|
1012
|
+
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
1011
1013
|
// Eraser aliases
|
|
1012
1014
|
export { default as EraserIcon } from '../icons/eraser';
|
|
1013
1015
|
// EthernetPort aliases
|
|
@@ -1016,14 +1018,14 @@ export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
|
1016
1018
|
export { default as EuroIcon } from '../icons/euro';
|
|
1017
1019
|
// EvCharger aliases
|
|
1018
1020
|
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
1019
|
-
// Expand aliases
|
|
1020
|
-
export { default as ExpandIcon } from '../icons/expand';
|
|
1021
|
-
// EyeClosed aliases
|
|
1022
|
-
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
1023
1021
|
// ExternalLink aliases
|
|
1024
1022
|
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
1023
|
+
// EyeClosed aliases
|
|
1024
|
+
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
1025
1025
|
// EyeDashed aliases
|
|
1026
1026
|
export { default as EyeDashedIcon } from '../icons/eye-dashed';
|
|
1027
|
+
// Expand aliases
|
|
1028
|
+
export { default as ExpandIcon } from '../icons/expand';
|
|
1027
1029
|
// EyeOff aliases
|
|
1028
1030
|
export { default as EyeOffIcon } from '../icons/eye-off';
|
|
1029
1031
|
// Eye aliases
|
|
@@ -1032,18 +1034,18 @@ export { default as EyeIcon } from '../icons/eye';
|
|
|
1032
1034
|
export { default as FactoryIcon } from '../icons/factory';
|
|
1033
1035
|
// Fan aliases
|
|
1034
1036
|
export { default as FanIcon } from '../icons/fan';
|
|
1035
|
-
// Feather aliases
|
|
1036
|
-
export { default as FeatherIcon } from '../icons/feather';
|
|
1037
1037
|
// FastForward aliases
|
|
1038
1038
|
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
1039
|
-
//
|
|
1040
|
-
export { default as
|
|
1039
|
+
// Feather aliases
|
|
1040
|
+
export { default as FeatherIcon } from '../icons/feather';
|
|
1041
1041
|
// FerrisWheel aliases
|
|
1042
1042
|
export { default as FerrisWheelIcon } from '../icons/ferris-wheel';
|
|
1043
|
-
// FileBox aliases
|
|
1044
|
-
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1045
1043
|
// FileArchive aliases
|
|
1046
1044
|
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1045
|
+
// FileBox aliases
|
|
1046
|
+
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1047
|
+
// Fence aliases
|
|
1048
|
+
export { default as FenceIcon } from '../icons/fence';
|
|
1047
1049
|
// FileCheck aliases
|
|
1048
1050
|
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1049
1051
|
// FileClock aliases
|
|
@@ -1054,10 +1056,10 @@ export { default as FileCodeIcon } from '../icons/file-code';
|
|
|
1054
1056
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1055
1057
|
// FileDigit aliases
|
|
1056
1058
|
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1057
|
-
// FileHeart aliases
|
|
1058
|
-
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1059
1059
|
// FileDown aliases
|
|
1060
1060
|
export { default as FileDownIcon } from '../icons/file-down';
|
|
1061
|
+
// FileHeart aliases
|
|
1062
|
+
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1061
1063
|
// FileImage aliases
|
|
1062
1064
|
export { default as FileImageIcon } from '../icons/file-image';
|
|
1063
1065
|
// FileInput aliases
|
|
@@ -1074,16 +1076,16 @@ export { default as FilePlusIcon } from '../icons/file-plus';
|
|
|
1074
1076
|
export { default as FileScanIcon } from '../icons/file-scan';
|
|
1075
1077
|
// FileSearch aliases
|
|
1076
1078
|
export { default as FileSearchIcon } from '../icons/file-search';
|
|
1077
|
-
// FileSpreadsheet aliases
|
|
1078
|
-
export { default as FileSpreadsheetIcon } from '../icons/file-spreadsheet';
|
|
1079
1079
|
// FileSliders aliases
|
|
1080
1080
|
export { default as FileSlidersIcon } from '../icons/file-sliders';
|
|
1081
|
+
// FileSpreadsheet aliases
|
|
1082
|
+
export { default as FileSpreadsheetIcon } from '../icons/file-spreadsheet';
|
|
1083
|
+
// FileSymlink aliases
|
|
1084
|
+
export { default as FileSymlinkIcon } from '../icons/file-symlink';
|
|
1081
1085
|
// FileStack aliases
|
|
1082
1086
|
export { default as FileStackIcon } from '../icons/file-stack';
|
|
1083
1087
|
// FileTerminal aliases
|
|
1084
1088
|
export { default as FileTerminalIcon } from '../icons/file-terminal';
|
|
1085
|
-
// FileSymlink aliases
|
|
1086
|
-
export { default as FileSymlinkIcon } from '../icons/file-symlink';
|
|
1087
1089
|
// FileText aliases
|
|
1088
1090
|
export { default as FileTextIcon } from '../icons/file-text';
|
|
1089
1091
|
// FileType aliases
|
|
@@ -1096,56 +1098,56 @@ export { default as FileUserIcon } from '../icons/file-user';
|
|
|
1096
1098
|
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1097
1099
|
// FileX aliases
|
|
1098
1100
|
export { default as FileXIcon } from '../icons/file-x';
|
|
1099
|
-
// Files aliases
|
|
1100
|
-
export { default as FilesIcon } from '../icons/files';
|
|
1101
1101
|
// File aliases
|
|
1102
1102
|
export { default as FileIcon } from '../icons/file';
|
|
1103
|
+
// Files aliases
|
|
1104
|
+
export { default as FilesIcon } from '../icons/files';
|
|
1103
1105
|
// Film aliases
|
|
1104
1106
|
export { default as FilmIcon } from '../icons/film';
|
|
1105
1107
|
// FireExtinguisher aliases
|
|
1106
1108
|
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1107
1109
|
// FishOff aliases
|
|
1108
1110
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1109
|
-
// Fish aliases
|
|
1110
|
-
export { default as FishIcon } from '../icons/fish';
|
|
1111
1111
|
// FishSymbol aliases
|
|
1112
1112
|
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1113
|
+
// Fish aliases
|
|
1114
|
+
export { default as FishIcon } from '../icons/fish';
|
|
1113
1115
|
// FishingHook aliases
|
|
1114
1116
|
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1115
1117
|
// FishingRod aliases
|
|
1116
1118
|
export { default as FishingRodIcon } from '../icons/fishing-rod';
|
|
1119
|
+
// FlagTriangleLeft aliases
|
|
1120
|
+
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1117
1121
|
// FlagOff aliases
|
|
1118
1122
|
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1119
1123
|
// FlagTriangleRight aliases
|
|
1120
1124
|
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1121
|
-
// FlagTriangleLeft aliases
|
|
1122
|
-
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1123
1125
|
// Flag aliases
|
|
1124
1126
|
export { default as FlagIcon } from '../icons/flag';
|
|
1125
1127
|
// FlameKindling aliases
|
|
1126
1128
|
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1127
1129
|
// Flame aliases
|
|
1128
1130
|
export { default as FlameIcon } from '../icons/flame';
|
|
1129
|
-
// FlaskConicalOff aliases
|
|
1130
|
-
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1131
|
-
// Flashlight aliases
|
|
1132
|
-
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1133
1131
|
// FlashlightOff aliases
|
|
1134
1132
|
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1133
|
+
// Flashlight aliases
|
|
1134
|
+
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1135
|
+
// FlaskConicalOff aliases
|
|
1136
|
+
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1135
1137
|
// FlaskConical aliases
|
|
1136
1138
|
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1137
1139
|
// FlaskRound aliases
|
|
1138
1140
|
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1139
|
-
// FlipHorizontal2 aliases
|
|
1140
|
-
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1141
1141
|
// FlipVertical2 aliases
|
|
1142
1142
|
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1143
|
-
//
|
|
1144
|
-
export { default as
|
|
1143
|
+
// FlipHorizontal2 aliases
|
|
1144
|
+
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1145
1145
|
// Flower aliases
|
|
1146
1146
|
export { default as FlowerIcon } from '../icons/flower';
|
|
1147
1147
|
// Focus aliases
|
|
1148
1148
|
export { default as FocusIcon } from '../icons/focus';
|
|
1149
|
+
// Flower2 aliases
|
|
1150
|
+
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1149
1151
|
// FoldHorizontal aliases
|
|
1150
1152
|
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1151
1153
|
// FoldVertical aliases
|
|
@@ -1162,16 +1164,16 @@ export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
|
1162
1164
|
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1163
1165
|
// FolderCode aliases
|
|
1164
1166
|
export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
1165
|
-
// FolderDot aliases
|
|
1166
|
-
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1167
1167
|
// FolderDown aliases
|
|
1168
1168
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1169
1169
|
// FolderGit2 aliases
|
|
1170
1170
|
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1171
|
-
// FolderHeart aliases
|
|
1172
|
-
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1173
1171
|
// FolderGit aliases
|
|
1174
1172
|
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1173
|
+
// FolderDot aliases
|
|
1174
|
+
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1175
|
+
// FolderHeart aliases
|
|
1176
|
+
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1175
1177
|
// FolderInput aliases
|
|
1176
1178
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1177
1179
|
// FolderKanban aliases
|
|
@@ -1180,24 +1182,24 @@ export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
|
1180
1182
|
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1181
1183
|
// FolderLock aliases
|
|
1182
1184
|
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1185
|
+
// FolderMinus aliases
|
|
1186
|
+
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1183
1187
|
// FolderOpenDot aliases
|
|
1184
1188
|
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1185
1189
|
// FolderOpen aliases
|
|
1186
1190
|
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1187
1191
|
// FolderOutput aliases
|
|
1188
1192
|
export { default as FolderOutputIcon } from '../icons/folder-output';
|
|
1189
|
-
// FolderMinus aliases
|
|
1190
|
-
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1191
|
-
// FolderRoot aliases
|
|
1192
|
-
export { default as FolderRootIcon } from '../icons/folder-root';
|
|
1193
1193
|
// FolderPlus aliases
|
|
1194
1194
|
export { default as FolderPlusIcon } from '../icons/folder-plus';
|
|
1195
|
+
// FolderRoot aliases
|
|
1196
|
+
export { default as FolderRootIcon } from '../icons/folder-root';
|
|
1197
|
+
// FolderSearch2 aliases
|
|
1198
|
+
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1195
1199
|
// FolderSearch aliases
|
|
1196
1200
|
export { default as FolderSearchIcon } from '../icons/folder-search';
|
|
1197
1201
|
// FolderSymlink aliases
|
|
1198
1202
|
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1199
|
-
// FolderSearch2 aliases
|
|
1200
|
-
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1201
1203
|
// FolderSync aliases
|
|
1202
1204
|
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1203
1205
|
// FolderTree aliases
|
|
@@ -1208,34 +1210,32 @@ export { default as FolderUpIcon } from '../icons/folder-up';
|
|
|
1208
1210
|
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1209
1211
|
// Folder aliases
|
|
1210
1212
|
export { default as FolderIcon } from '../icons/folder';
|
|
1213
|
+
// Folders aliases
|
|
1214
|
+
export { default as FoldersIcon } from '../icons/folders';
|
|
1211
1215
|
// Footprints aliases
|
|
1212
1216
|
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1213
1217
|
// Forklift aliases
|
|
1214
1218
|
export { default as ForkliftIcon } from '../icons/forklift';
|
|
1215
|
-
// Folders aliases
|
|
1216
|
-
export { default as FoldersIcon } from '../icons/folders';
|
|
1217
1219
|
// Form aliases
|
|
1218
1220
|
export { default as FormIcon } from '../icons/form';
|
|
1219
1221
|
// Forward aliases
|
|
1220
1222
|
export { default as ForwardIcon } from '../icons/forward';
|
|
1221
1223
|
// Frame aliases
|
|
1222
1224
|
export { default as FrameIcon } from '../icons/frame';
|
|
1223
|
-
// Frown aliases
|
|
1224
|
-
export { default as FrownIcon } from '../icons/frown';
|
|
1225
1225
|
// Fuel aliases
|
|
1226
1226
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1227
|
-
// FunnelPlus aliases
|
|
1228
|
-
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1229
1227
|
// Fullscreen aliases
|
|
1230
1228
|
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1229
|
+
// FunnelPlus aliases
|
|
1230
|
+
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1231
1231
|
// GalleryHorizontalEnd aliases
|
|
1232
1232
|
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1233
1233
|
// GalleryHorizontal aliases
|
|
1234
1234
|
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1235
|
-
// GalleryVerticalEnd aliases
|
|
1236
|
-
export { default as GalleryVerticalEndIcon } from '../icons/gallery-vertical-end';
|
|
1237
1235
|
// GalleryThumbnails aliases
|
|
1238
1236
|
export { default as GalleryThumbnailsIcon } from '../icons/gallery-thumbnails';
|
|
1237
|
+
// GalleryVerticalEnd aliases
|
|
1238
|
+
export { default as GalleryVerticalEndIcon } from '../icons/gallery-vertical-end';
|
|
1239
1239
|
// GalleryVertical aliases
|
|
1240
1240
|
export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
1241
1241
|
// Gamepad2 aliases
|
|
@@ -1244,36 +1244,36 @@ export { default as Gamepad2Icon } from '../icons/gamepad-2';
|
|
|
1244
1244
|
export { default as GamepadDirectionalIcon } from '../icons/gamepad-directional';
|
|
1245
1245
|
// Gamepad aliases
|
|
1246
1246
|
export { default as GamepadIcon } from '../icons/gamepad';
|
|
1247
|
+
// Gavel aliases
|
|
1248
|
+
export { default as GavelIcon } from '../icons/gavel';
|
|
1247
1249
|
// Gauge aliases
|
|
1248
1250
|
export { default as GaugeIcon } from '../icons/gauge';
|
|
1249
1251
|
// Gem aliases
|
|
1250
1252
|
export { default as GemIcon } from '../icons/gem';
|
|
1251
|
-
// Gavel aliases
|
|
1252
|
-
export { default as GavelIcon } from '../icons/gavel';
|
|
1253
1253
|
// GeorgianLari aliases
|
|
1254
1254
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1255
1255
|
// Ghost aliases
|
|
1256
1256
|
export { default as GhostIcon } from '../icons/ghost';
|
|
1257
1257
|
// Gift aliases
|
|
1258
1258
|
export { default as GiftIcon } from '../icons/gift';
|
|
1259
|
-
// GitBranchPlus aliases
|
|
1260
|
-
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1261
1259
|
// GitBranchMinus aliases
|
|
1262
1260
|
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1263
|
-
//
|
|
1264
|
-
export { default as
|
|
1261
|
+
// GitBranchPlus aliases
|
|
1262
|
+
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1265
1263
|
// GitCommitVertical aliases
|
|
1266
1264
|
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1267
|
-
//
|
|
1268
|
-
export { default as
|
|
1265
|
+
// GitBranch aliases
|
|
1266
|
+
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1269
1267
|
// GitCompare aliases
|
|
1270
1268
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1271
|
-
//
|
|
1272
|
-
export { default as
|
|
1269
|
+
// GitCompareArrows aliases
|
|
1270
|
+
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1273
1271
|
// GitMergeConflict aliases
|
|
1274
1272
|
export { default as GitMergeConflictIcon } from '../icons/git-merge-conflict';
|
|
1275
1273
|
// GitGraph aliases
|
|
1276
1274
|
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1275
|
+
// GitFork aliases
|
|
1276
|
+
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1277
1277
|
// GitMerge aliases
|
|
1278
1278
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1279
1279
|
// GitPullRequestArrow aliases
|
|
@@ -1284,18 +1284,18 @@ export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-c
|
|
|
1284
1284
|
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1285
1285
|
// GitPullRequestCreate aliases
|
|
1286
1286
|
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1287
|
-
// GitPullRequest aliases
|
|
1288
|
-
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1289
1287
|
// GitPullRequestDraft aliases
|
|
1290
1288
|
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1289
|
+
// GitPullRequest aliases
|
|
1290
|
+
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1291
1291
|
// GlassWater aliases
|
|
1292
1292
|
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1293
|
-
// Glasses aliases
|
|
1294
|
-
export { default as GlassesIcon } from '../icons/glasses';
|
|
1295
1293
|
// GlobeCheck aliases
|
|
1296
1294
|
export { default as GlobeCheckIcon } from '../icons/globe-check';
|
|
1297
1295
|
// GlobeLock aliases
|
|
1298
1296
|
export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
1297
|
+
// Glasses aliases
|
|
1298
|
+
export { default as GlassesIcon } from '../icons/glasses';
|
|
1299
1299
|
// GlobeOff aliases
|
|
1300
1300
|
export { default as GlobeOffIcon } from '../icons/globe-off';
|
|
1301
1301
|
// GlobeX aliases
|
|
@@ -1304,18 +1304,18 @@ export { default as GlobeXIcon } from '../icons/globe-x';
|
|
|
1304
1304
|
export { default as GlobeIcon } from '../icons/globe';
|
|
1305
1305
|
// Goal aliases
|
|
1306
1306
|
export { default as GoalIcon } from '../icons/goal';
|
|
1307
|
-
// Gpu aliases
|
|
1308
|
-
export { default as GpuIcon } from '../icons/gpu';
|
|
1309
1307
|
// GraduationCap aliases
|
|
1310
1308
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1311
1309
|
// Grape aliases
|
|
1312
1310
|
export { default as GrapeIcon } from '../icons/grape';
|
|
1313
1311
|
// Grid3x2 aliases
|
|
1314
1312
|
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1315
|
-
//
|
|
1316
|
-
export { default as
|
|
1313
|
+
// Gpu aliases
|
|
1314
|
+
export { default as GpuIcon } from '../icons/gpu';
|
|
1317
1315
|
// GripHorizontal aliases
|
|
1318
1316
|
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1317
|
+
// GripVertical aliases
|
|
1318
|
+
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1319
1319
|
// Grip aliases
|
|
1320
1320
|
export { default as GripIcon } from '../icons/grip';
|
|
1321
1321
|
// Group aliases
|
|
@@ -1342,26 +1342,26 @@ export { default as HandPlatterIcon } from '../icons/hand-platter';
|
|
|
1342
1342
|
export { default as HandIcon } from '../icons/hand';
|
|
1343
1343
|
// Handbag aliases
|
|
1344
1344
|
export { default as HandbagIcon } from '../icons/handbag';
|
|
1345
|
+
// Handshake aliases
|
|
1346
|
+
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1345
1347
|
// HardDriveDownload aliases
|
|
1346
1348
|
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1347
1349
|
// HardDriveUpload aliases
|
|
1348
1350
|
export { default as HardDriveUploadIcon } from '../icons/hard-drive-upload';
|
|
1349
|
-
// Handshake aliases
|
|
1350
|
-
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1351
1351
|
// HardDrive aliases
|
|
1352
1352
|
export { default as HardDriveIcon } from '../icons/hard-drive';
|
|
1353
|
-
// HatGlasses aliases
|
|
1354
|
-
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1355
|
-
// Hash aliases
|
|
1356
|
-
export { default as HashIcon } from '../icons/hash';
|
|
1357
1353
|
// HardHat aliases
|
|
1358
1354
|
export { default as HardHatIcon } from '../icons/hard-hat';
|
|
1355
|
+
// Hash aliases
|
|
1356
|
+
export { default as HashIcon } from '../icons/hash';
|
|
1357
|
+
// HatGlasses aliases
|
|
1358
|
+
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1359
|
+
// Hd aliases
|
|
1360
|
+
export { default as HdIcon } from '../icons/hd';
|
|
1359
1361
|
// Haze aliases
|
|
1360
1362
|
export { default as HazeIcon } from '../icons/haze';
|
|
1361
1363
|
// HdmiPort aliases
|
|
1362
1364
|
export { default as HdmiPortIcon } from '../icons/hdmi-port';
|
|
1363
|
-
// Hd aliases
|
|
1364
|
-
export { default as HdIcon } from '../icons/hd';
|
|
1365
1365
|
// Heading1 aliases
|
|
1366
1366
|
export { default as Heading1Icon } from '../icons/heading-1';
|
|
1367
1367
|
// Heading2 aliases
|
|
@@ -1396,38 +1396,38 @@ export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
|
1396
1396
|
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1397
1397
|
// HeartX aliases
|
|
1398
1398
|
export { default as HeartXIcon } from '../icons/heart-x';
|
|
1399
|
-
// Heater aliases
|
|
1400
|
-
export { default as HeaterIcon } from '../icons/heater';
|
|
1401
|
-
// Hexagon aliases
|
|
1402
|
-
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1403
1399
|
// Heart aliases
|
|
1404
1400
|
export { default as HeartIcon } from '../icons/heart';
|
|
1401
|
+
// Heater aliases
|
|
1402
|
+
export { default as HeaterIcon } from '../icons/heater';
|
|
1405
1403
|
// Helicopter aliases
|
|
1406
1404
|
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1405
|
+
// Hexagon aliases
|
|
1406
|
+
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1407
1407
|
// Highlighter aliases
|
|
1408
1408
|
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1409
1409
|
// HopOff aliases
|
|
1410
1410
|
export { default as HopOffIcon } from '../icons/hop-off';
|
|
1411
|
+
// Hop aliases
|
|
1412
|
+
export { default as HopIcon } from '../icons/hop';
|
|
1411
1413
|
// Hospital aliases
|
|
1412
1414
|
export { default as HospitalIcon } from '../icons/hospital';
|
|
1413
1415
|
// Hotel aliases
|
|
1414
1416
|
export { default as HotelIcon } from '../icons/hotel';
|
|
1415
|
-
// Hop aliases
|
|
1416
|
-
export { default as HopIcon } from '../icons/hop';
|
|
1417
1417
|
// Hourglass aliases
|
|
1418
1418
|
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1419
1419
|
// HouseHeart aliases
|
|
1420
1420
|
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1421
|
-
// HousePlus aliases
|
|
1422
|
-
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1423
1421
|
// HousePlug aliases
|
|
1424
1422
|
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1425
1423
|
// HouseWifi aliases
|
|
1426
1424
|
export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
1427
|
-
//
|
|
1428
|
-
export { default as
|
|
1425
|
+
// HousePlus aliases
|
|
1426
|
+
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1429
1427
|
// IdCardLanyard aliases
|
|
1430
1428
|
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1429
|
+
// IdCard aliases
|
|
1430
|
+
export { default as IdCardIcon } from '../icons/id-card';
|
|
1431
1431
|
// ImageDown aliases
|
|
1432
1432
|
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1433
1433
|
// ImageMinus aliases
|
|
@@ -1440,40 +1440,40 @@ export { default as ImagePlayIcon } from '../icons/image-play';
|
|
|
1440
1440
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1441
1441
|
// ImageUp aliases
|
|
1442
1442
|
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1443
|
-
// Image aliases
|
|
1444
|
-
export { default as ImageIcon } from '../icons/image';
|
|
1445
1443
|
// ImageUpscale aliases
|
|
1446
1444
|
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1445
|
+
// Image aliases
|
|
1446
|
+
export { default as ImageIcon } from '../icons/image';
|
|
1447
1447
|
// Images aliases
|
|
1448
1448
|
export { default as ImagesIcon } from '../icons/images';
|
|
1449
1449
|
// Import aliases
|
|
1450
1450
|
export { default as ImportIcon } from '../icons/import';
|
|
1451
|
-
// IndianRupee aliases
|
|
1452
|
-
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1453
1451
|
// Inbox aliases
|
|
1454
1452
|
export { default as InboxIcon } from '../icons/inbox';
|
|
1455
|
-
//
|
|
1456
|
-
export { default as
|
|
1453
|
+
// IndianRupee aliases
|
|
1454
|
+
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1457
1455
|
// Infinity aliases
|
|
1458
1456
|
export { default as InfinityIcon } from '../icons/infinity';
|
|
1457
|
+
// Info aliases
|
|
1458
|
+
export { default as InfoIcon } from '../icons/info';
|
|
1459
1459
|
// InspectionPanel aliases
|
|
1460
1460
|
export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
1461
1461
|
// Italic aliases
|
|
1462
1462
|
export { default as ItalicIcon } from '../icons/italic';
|
|
1463
1463
|
// IterationCcw aliases
|
|
1464
1464
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1465
|
-
// JapaneseYen aliases
|
|
1466
|
-
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1467
1465
|
// IterationCw aliases
|
|
1468
1466
|
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1469
1467
|
// Joystick aliases
|
|
1470
1468
|
export { default as JoystickIcon } from '../icons/joystick';
|
|
1469
|
+
// JapaneseYen aliases
|
|
1470
|
+
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1471
|
+
// Kanban aliases
|
|
1472
|
+
export { default as KanbanIcon } from '../icons/kanban';
|
|
1471
1473
|
// Kayak aliases
|
|
1472
1474
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1473
1475
|
// KeyRound aliases
|
|
1474
1476
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1475
|
-
// Kanban aliases
|
|
1476
|
-
export { default as KanbanIcon } from '../icons/kanban';
|
|
1477
1477
|
// KeySquare aliases
|
|
1478
1478
|
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1479
1479
|
// Key aliases
|
|
@@ -1482,38 +1482,44 @@ export { default as KeyIcon } from '../icons/key';
|
|
|
1482
1482
|
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1483
1483
|
// KeyboardOff aliases
|
|
1484
1484
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1485
|
-
// LampCeiling aliases
|
|
1486
|
-
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1487
1485
|
// Keyboard aliases
|
|
1488
1486
|
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1489
1487
|
// LampDesk aliases
|
|
1490
1488
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1489
|
+
// LampCeiling aliases
|
|
1490
|
+
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1491
1491
|
// LampFloor aliases
|
|
1492
1492
|
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1493
1493
|
// LampWallDown aliases
|
|
1494
1494
|
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1495
1495
|
// LampWallUp aliases
|
|
1496
1496
|
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1497
|
-
// LandPlot aliases
|
|
1498
|
-
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1499
1497
|
// Lamp aliases
|
|
1500
1498
|
export { default as LampIcon } from '../icons/lamp';
|
|
1499
|
+
// LandPlot aliases
|
|
1500
|
+
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1501
1501
|
// Landmark aliases
|
|
1502
1502
|
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1503
1503
|
// Languages aliases
|
|
1504
1504
|
export { default as LanguagesIcon } from '../icons/languages';
|
|
1505
|
+
// LaptopMinimalCheck aliases
|
|
1506
|
+
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1505
1507
|
// Laptop aliases
|
|
1506
1508
|
export { default as LaptopIcon } from '../icons/laptop';
|
|
1507
1509
|
// LassoSelect aliases
|
|
1508
1510
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1509
|
-
// LaptopMinimalCheck aliases
|
|
1510
|
-
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1511
1511
|
// Lasso aliases
|
|
1512
1512
|
export { default as LassoIcon } from '../icons/lasso';
|
|
1513
|
-
//
|
|
1514
|
-
export { default as
|
|
1513
|
+
// LayerArrowDown aliases
|
|
1514
|
+
export { default as LayerArrowDownIcon } from '../icons/layer-arrow-down';
|
|
1515
|
+
// LayerArrowUp aliases
|
|
1516
|
+
export { default as LayerArrowUpIcon } from '../icons/layer-arrow-up';
|
|
1515
1517
|
// Layers2 aliases
|
|
1516
1518
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1519
|
+
// LayersArrowDown aliases
|
|
1520
|
+
export { default as LayersArrowDownIcon } from '../icons/layers-arrow-down';
|
|
1521
|
+
// LayersArrowUp aliases
|
|
1522
|
+
export { default as LayersArrowUpIcon } from '../icons/layers-arrow-up';
|
|
1517
1523
|
// LayersMinus aliases
|
|
1518
1524
|
export { default as LayersMinusIcon } from '../icons/layers-minus';
|
|
1519
1525
|
// LayersPlus aliases
|
|
@@ -1524,22 +1530,22 @@ export { default as LayoutFreeformIcon } from '../icons/layout-freeform';
|
|
|
1524
1530
|
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1525
1531
|
// LayoutGrid aliases
|
|
1526
1532
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1527
|
-
// LayoutPanelLeft aliases
|
|
1528
|
-
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1529
1533
|
// LayoutList aliases
|
|
1530
1534
|
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1535
|
+
// LayoutPanelLeft aliases
|
|
1536
|
+
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1531
1537
|
// LayoutPanelTop aliases
|
|
1532
1538
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1533
1539
|
// LayoutTemplate aliases
|
|
1534
1540
|
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1535
1541
|
// Leaf aliases
|
|
1536
1542
|
export { default as LeafIcon } from '../icons/leaf';
|
|
1537
|
-
// LeafyGreen aliases
|
|
1538
|
-
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1539
1543
|
// Lectern aliases
|
|
1540
1544
|
export { default as LecternIcon } from '../icons/lectern';
|
|
1541
1545
|
// LensConcave aliases
|
|
1542
1546
|
export { default as LensConcaveIcon } from '../icons/lens-concave';
|
|
1547
|
+
// LeafyGreen aliases
|
|
1548
|
+
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1543
1549
|
// LensConvex aliases
|
|
1544
1550
|
export { default as LensConvexIcon } from '../icons/lens-convex';
|
|
1545
1551
|
// LibraryBig aliases
|
|
@@ -1564,18 +1570,18 @@ export { default as LineStyleIcon } from '../icons/line-style';
|
|
|
1564
1570
|
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1565
1571
|
// Link aliases
|
|
1566
1572
|
export { default as LinkIcon } from '../icons/link';
|
|
1567
|
-
// ListChecks aliases
|
|
1568
|
-
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1569
|
-
// Link2 aliases
|
|
1570
|
-
export { default as Link2Icon } from '../icons/link-2';
|
|
1571
1573
|
// ListCheck aliases
|
|
1572
1574
|
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1575
|
+
// Link2 aliases
|
|
1576
|
+
export { default as Link2Icon } from '../icons/link-2';
|
|
1577
|
+
// ListChecks aliases
|
|
1578
|
+
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1573
1579
|
// ListChevronsDownUp aliases
|
|
1574
1580
|
export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-up';
|
|
1575
|
-
// ListCollapse aliases
|
|
1576
|
-
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1577
1581
|
// ListChevronsUpDown aliases
|
|
1578
1582
|
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1583
|
+
// ListCollapse aliases
|
|
1584
|
+
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1579
1585
|
// ListEnd aliases
|
|
1580
1586
|
export { default as ListEndIcon } from '../icons/list-end';
|
|
1581
1587
|
// ListFilterPlus aliases
|
|
@@ -1586,26 +1592,26 @@ export { default as ListFilterIcon } from '../icons/list-filter';
|
|
|
1586
1592
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1587
1593
|
// ListMusic aliases
|
|
1588
1594
|
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1589
|
-
// ListPlus aliases
|
|
1590
|
-
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1591
1595
|
// ListOrdered aliases
|
|
1592
1596
|
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1597
|
+
// ListPlus aliases
|
|
1598
|
+
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1593
1599
|
// ListRestart aliases
|
|
1594
1600
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1595
1601
|
// ListSortAscending aliases
|
|
1596
1602
|
export { default as ListSortAscendingIcon } from '../icons/list-sort-ascending';
|
|
1597
1603
|
// ListSortDescending aliases
|
|
1598
1604
|
export { default as ListSortDescendingIcon } from '../icons/list-sort-descending';
|
|
1599
|
-
// ListTree aliases
|
|
1600
|
-
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1601
1605
|
// ListStart aliases
|
|
1602
1606
|
export { default as ListStartIcon } from '../icons/list-start';
|
|
1603
1607
|
// ListTodo aliases
|
|
1604
1608
|
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1605
|
-
//
|
|
1606
|
-
export { default as
|
|
1609
|
+
// ListTree aliases
|
|
1610
|
+
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1607
1611
|
// ListX aliases
|
|
1608
1612
|
export { default as ListXIcon } from '../icons/list-x';
|
|
1613
|
+
// ListVideo aliases
|
|
1614
|
+
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1609
1615
|
// List aliases
|
|
1610
1616
|
export { default as ListIcon } from '../icons/list';
|
|
1611
1617
|
// LoaderPinwheel aliases
|
|
@@ -1630,26 +1636,26 @@ export { default as LogsIcon } from '../icons/logs';
|
|
|
1630
1636
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1631
1637
|
// Lollipop aliases
|
|
1632
1638
|
export { default as LollipopIcon } from '../icons/lollipop';
|
|
1633
|
-
// Magnet aliases
|
|
1634
|
-
export { default as MagnetIcon } from '../icons/magnet';
|
|
1635
1639
|
// Luggage aliases
|
|
1636
1640
|
export { default as LuggageIcon } from '../icons/luggage';
|
|
1641
|
+
// Magnet aliases
|
|
1642
|
+
export { default as MagnetIcon } from '../icons/magnet';
|
|
1637
1643
|
// MailCheck aliases
|
|
1638
1644
|
export { default as MailCheckIcon } from '../icons/mail-check';
|
|
1639
1645
|
// MailMinus aliases
|
|
1640
1646
|
export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
1641
|
-
// MailOpen aliases
|
|
1642
|
-
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1643
1647
|
// MailPlus aliases
|
|
1644
1648
|
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1645
|
-
//
|
|
1646
|
-
export { default as
|
|
1649
|
+
// MailOpen aliases
|
|
1650
|
+
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1647
1651
|
// MailWarning aliases
|
|
1648
1652
|
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1649
|
-
//
|
|
1650
|
-
export { default as
|
|
1653
|
+
// MailSearch aliases
|
|
1654
|
+
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1651
1655
|
// Mail aliases
|
|
1652
1656
|
export { default as MailIcon } from '../icons/mail';
|
|
1657
|
+
// MailX aliases
|
|
1658
|
+
export { default as MailXIcon } from '../icons/mail-x';
|
|
1653
1659
|
// Mailbox aliases
|
|
1654
1660
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1655
1661
|
// Mails aliases
|
|
@@ -1658,16 +1664,16 @@ export { default as MailsIcon } from '../icons/mails';
|
|
|
1658
1664
|
export { default as MapMinusIcon } from '../icons/map-minus';
|
|
1659
1665
|
// MapPinCheckInside aliases
|
|
1660
1666
|
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1661
|
-
// MapPinHouse aliases
|
|
1662
|
-
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1663
1667
|
// MapPinCheck aliases
|
|
1664
1668
|
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1665
|
-
//
|
|
1666
|
-
export { default as
|
|
1669
|
+
// MapPinHouse aliases
|
|
1670
|
+
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1667
1671
|
// MapPinMinus aliases
|
|
1668
1672
|
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1669
1673
|
// MapPinOff aliases
|
|
1670
1674
|
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1675
|
+
// MapPinMinusInside aliases
|
|
1676
|
+
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1671
1677
|
// MapPinPlusInside aliases
|
|
1672
1678
|
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1673
1679
|
// MapPinPlus aliases
|
|
@@ -1690,26 +1696,24 @@ export { default as MapIcon } from '../icons/map';
|
|
|
1690
1696
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1691
1697
|
// Mars aliases
|
|
1692
1698
|
export { default as MarsIcon } from '../icons/mars';
|
|
1693
|
-
// Maximize2 aliases
|
|
1694
|
-
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1695
|
-
// Medal aliases
|
|
1696
|
-
export { default as MedalIcon } from '../icons/medal';
|
|
1697
1699
|
// Martini aliases
|
|
1698
1700
|
export { default as MartiniIcon } from '../icons/martini';
|
|
1701
|
+
// Maximize2 aliases
|
|
1702
|
+
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1699
1703
|
// Maximize aliases
|
|
1700
1704
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1705
|
+
// Medal aliases
|
|
1706
|
+
export { default as MedalIcon } from '../icons/medal';
|
|
1701
1707
|
// MegaphoneOff aliases
|
|
1702
1708
|
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1703
1709
|
// Megaphone aliases
|
|
1704
1710
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1705
|
-
// Meh aliases
|
|
1706
|
-
export { default as MehIcon } from '../icons/meh';
|
|
1707
1711
|
// MemoryStick aliases
|
|
1708
1712
|
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1709
|
-
// Menu aliases
|
|
1710
|
-
export { default as MenuIcon } from '../icons/menu';
|
|
1711
1713
|
// Merge aliases
|
|
1712
1714
|
export { default as MergeIcon } from '../icons/merge';
|
|
1715
|
+
// Menu aliases
|
|
1716
|
+
export { default as MenuIcon } from '../icons/menu';
|
|
1713
1717
|
// MessageCircleCheck aliases
|
|
1714
1718
|
export { default as MessageCircleCheckIcon } from '../icons/message-circle-check';
|
|
1715
1719
|
// MessageCircleCode aliases
|
|
@@ -1718,36 +1722,36 @@ export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
|
1718
1722
|
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1719
1723
|
// MessageCircleHeart aliases
|
|
1720
1724
|
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1721
|
-
// MessageCircleOff aliases
|
|
1722
|
-
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1723
1725
|
// MessageCircleMore aliases
|
|
1724
1726
|
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1727
|
+
// MessageCircleOff aliases
|
|
1728
|
+
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1725
1729
|
// MessageCirclePlus aliases
|
|
1726
1730
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1727
1731
|
// MessageCircleReply aliases
|
|
1728
1732
|
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1729
|
-
// MessageCircleX aliases
|
|
1730
|
-
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1731
1733
|
// MessageCircleWarning aliases
|
|
1732
1734
|
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1735
|
+
// MessageCircleX aliases
|
|
1736
|
+
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1733
1737
|
// MessageCircle aliases
|
|
1734
1738
|
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1735
1739
|
// MessageSquareCheck aliases
|
|
1736
1740
|
export { default as MessageSquareCheckIcon } from '../icons/message-square-check';
|
|
1737
1741
|
// MessageSquareCode aliases
|
|
1738
1742
|
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1739
|
-
// MessageSquareDiff aliases
|
|
1740
|
-
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1741
1743
|
// MessageSquareDashed aliases
|
|
1742
1744
|
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1745
|
+
// MessageSquareDiff aliases
|
|
1746
|
+
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1743
1747
|
// MessageSquareDot aliases
|
|
1744
1748
|
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1745
1749
|
// MessageSquareHeart aliases
|
|
1746
1750
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1747
|
-
// MessageSquareMore aliases
|
|
1748
|
-
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1749
1751
|
// MessageSquareLock aliases
|
|
1750
1752
|
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1753
|
+
// MessageSquareMore aliases
|
|
1754
|
+
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1751
1755
|
// MessageSquareOff aliases
|
|
1752
1756
|
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1753
1757
|
// MessageSquarePlus aliases
|
|
@@ -1758,12 +1762,12 @@ export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote
|
|
|
1758
1762
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1759
1763
|
// MessageSquareShare aliases
|
|
1760
1764
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1765
|
+
// MessageSquareText aliases
|
|
1766
|
+
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1761
1767
|
// MessageSquareWarning aliases
|
|
1762
1768
|
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1763
1769
|
// MessageSquareX aliases
|
|
1764
1770
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1765
|
-
// MessageSquareText aliases
|
|
1766
|
-
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1767
1771
|
// MessageSquare aliases
|
|
1768
1772
|
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1769
1773
|
// MessagesSquare aliases
|
|
@@ -1772,44 +1776,44 @@ export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
|
1772
1776
|
export { default as MetronomeIcon } from '../icons/metronome';
|
|
1773
1777
|
// MicAudioLines aliases
|
|
1774
1778
|
export { default as MicAudioLinesIcon } from '../icons/mic-audio-lines';
|
|
1775
|
-
// MicOff aliases
|
|
1776
|
-
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1777
1779
|
// Mic aliases
|
|
1778
1780
|
export { default as MicIcon } from '../icons/mic';
|
|
1781
|
+
// MicOff aliases
|
|
1782
|
+
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1779
1783
|
// Microchip aliases
|
|
1780
1784
|
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1781
1785
|
// Microscope aliases
|
|
1782
1786
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1783
1787
|
// Microwave aliases
|
|
1784
1788
|
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1789
|
+
// MilkOff aliases
|
|
1790
|
+
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1785
1791
|
// Milestone aliases
|
|
1786
1792
|
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1787
1793
|
// Milk aliases
|
|
1788
1794
|
export { default as MilkIcon } from '../icons/milk';
|
|
1789
1795
|
// Minimize2 aliases
|
|
1790
1796
|
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1791
|
-
// MilkOff aliases
|
|
1792
|
-
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1793
|
-
// Minimize aliases
|
|
1794
|
-
export { default as MinimizeIcon } from '../icons/minimize';
|
|
1795
1797
|
// Minus aliases
|
|
1796
1798
|
export { default as MinusIcon } from '../icons/minus';
|
|
1797
|
-
//
|
|
1798
|
-
export { default as
|
|
1799
|
+
// Minimize aliases
|
|
1800
|
+
export { default as MinimizeIcon } from '../icons/minimize';
|
|
1799
1801
|
// MirrorRectangular aliases
|
|
1800
1802
|
export { default as MirrorRectangularIcon } from '../icons/mirror-rectangular';
|
|
1803
|
+
// MirrorRound aliases
|
|
1804
|
+
export { default as MirrorRoundIcon } from '../icons/mirror-round';
|
|
1801
1805
|
// MonitorCheck aliases
|
|
1802
1806
|
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1803
1807
|
// MonitorCloud aliases
|
|
1804
1808
|
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1805
1809
|
// MonitorCog aliases
|
|
1806
1810
|
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1807
|
-
// MonitorDot aliases
|
|
1808
|
-
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1809
|
-
// MonitorOff aliases
|
|
1810
|
-
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1811
1811
|
// MonitorDown aliases
|
|
1812
1812
|
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1813
|
+
// MonitorOff aliases
|
|
1814
|
+
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1815
|
+
// MonitorDot aliases
|
|
1816
|
+
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1813
1817
|
// MonitorPause aliases
|
|
1814
1818
|
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1815
1819
|
// MonitorPlay aliases
|
|
@@ -1818,10 +1822,10 @@ export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
|
1818
1822
|
export { default as MonitorSmartphoneIcon } from '../icons/monitor-smartphone';
|
|
1819
1823
|
// MonitorSpeaker aliases
|
|
1820
1824
|
export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
1821
|
-
// MonitorUp aliases
|
|
1822
|
-
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1823
1825
|
// MonitorStop aliases
|
|
1824
1826
|
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1827
|
+
// MonitorUp aliases
|
|
1828
|
+
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1825
1829
|
// MonitorX aliases
|
|
1826
1830
|
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1827
1831
|
// Monitor aliases
|
|
@@ -1832,30 +1836,30 @@ export { default as MoonStarIcon } from '../icons/moon-star';
|
|
|
1832
1836
|
export { default as MoonIcon } from '../icons/moon';
|
|
1833
1837
|
// Mosque aliases
|
|
1834
1838
|
export { default as MosqueIcon } from '../icons/mosque';
|
|
1835
|
-
// MountainSnow aliases
|
|
1836
|
-
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1837
1839
|
// Motorbike aliases
|
|
1838
1840
|
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1841
|
+
// MountainSnow aliases
|
|
1842
|
+
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1839
1843
|
// Mountain aliases
|
|
1840
1844
|
export { default as MountainIcon } from '../icons/mountain';
|
|
1841
1845
|
// MouseLeft aliases
|
|
1842
1846
|
export { default as MouseLeftIcon } from '../icons/mouse-left';
|
|
1843
|
-
// MousePointer2Off aliases
|
|
1844
|
-
export { default as MousePointer2OffIcon } from '../icons/mouse-pointer-2-off';
|
|
1845
1847
|
// MouseOff aliases
|
|
1846
1848
|
export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
1849
|
+
// MousePointer2Off aliases
|
|
1850
|
+
export { default as MousePointer2OffIcon } from '../icons/mouse-pointer-2-off';
|
|
1847
1851
|
// MousePointer2 aliases
|
|
1848
1852
|
export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
1849
|
-
// MousePointerClick aliases
|
|
1850
|
-
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1851
1853
|
// MousePointerBan aliases
|
|
1852
1854
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1853
|
-
//
|
|
1854
|
-
export { default as
|
|
1855
|
+
// MousePointerClick aliases
|
|
1856
|
+
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1855
1857
|
// MousePointer aliases
|
|
1856
1858
|
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1857
1859
|
// MouseRight aliases
|
|
1858
1860
|
export { default as MouseRightIcon } from '../icons/mouse-right';
|
|
1861
|
+
// Mouse aliases
|
|
1862
|
+
export { default as MouseIcon } from '../icons/mouse';
|
|
1859
1863
|
// MoveDiagonal2 aliases
|
|
1860
1864
|
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1861
1865
|
// MoveDiagonal aliases
|
|
@@ -1866,30 +1870,32 @@ export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
|
1866
1870
|
export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
1867
1871
|
// MoveHorizontal aliases
|
|
1868
1872
|
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1869
|
-
// MoveLeft aliases
|
|
1870
|
-
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1871
1873
|
// MoveDown aliases
|
|
1872
1874
|
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1875
|
+
// MoveLeft aliases
|
|
1876
|
+
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1873
1877
|
// MoveRight aliases
|
|
1874
1878
|
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1875
1879
|
// MoveUpLeft aliases
|
|
1876
1880
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1877
|
-
// MoveUp aliases
|
|
1878
|
-
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1879
1881
|
// MoveUpRight aliases
|
|
1880
1882
|
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1883
|
+
// MoveUp aliases
|
|
1884
|
+
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1885
|
+
// Move aliases
|
|
1886
|
+
export { default as MoveIcon } from '../icons/move';
|
|
1881
1887
|
// MoveVertical aliases
|
|
1882
1888
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1883
|
-
// Music3 aliases
|
|
1884
|
-
export { default as Music3Icon } from '../icons/music-3';
|
|
1885
1889
|
// Music2 aliases
|
|
1886
1890
|
export { default as Music2Icon } from '../icons/music-2';
|
|
1887
|
-
//
|
|
1888
|
-
export { default as
|
|
1891
|
+
// Music3 aliases
|
|
1892
|
+
export { default as Music3Icon } from '../icons/music-3';
|
|
1889
1893
|
// Music4 aliases
|
|
1890
1894
|
export { default as Music4Icon } from '../icons/music-4';
|
|
1891
1895
|
// Music aliases
|
|
1892
1896
|
export { default as MusicIcon } from '../icons/music';
|
|
1897
|
+
// Navigation2 aliases
|
|
1898
|
+
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1893
1899
|
// Navigation2Off aliases
|
|
1894
1900
|
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1895
1901
|
// NavigationOff aliases
|
|
@@ -1898,14 +1904,12 @@ export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
|
1898
1904
|
export { default as NavigationIcon } from '../icons/navigation';
|
|
1899
1905
|
// Network aliases
|
|
1900
1906
|
export { default as NetworkIcon } from '../icons/network';
|
|
1901
|
-
// Navigation2 aliases
|
|
1902
|
-
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1903
1907
|
// Newspaper aliases
|
|
1904
1908
|
export { default as NewspaperIcon } from '../icons/newspaper';
|
|
1905
|
-
// NonBinary aliases
|
|
1906
|
-
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1907
1909
|
// Nfc aliases
|
|
1908
1910
|
export { default as NfcIcon } from '../icons/nfc';
|
|
1911
|
+
// NonBinary aliases
|
|
1912
|
+
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1909
1913
|
// NotebookPen aliases
|
|
1910
1914
|
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1911
1915
|
// NotebookTabs aliases
|
|
@@ -1920,22 +1924,22 @@ export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
|
1920
1924
|
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1921
1925
|
// NutOff aliases
|
|
1922
1926
|
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1923
|
-
// Octagon aliases
|
|
1924
|
-
export { default as OctagonIcon } from '../icons/octagon';
|
|
1925
|
-
// OctagonMinus aliases
|
|
1926
|
-
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1927
1927
|
// Nut aliases
|
|
1928
1928
|
export { default as NutIcon } from '../icons/nut';
|
|
1929
|
+
// OctagonMinus aliases
|
|
1930
|
+
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1931
|
+
// Octagon aliases
|
|
1932
|
+
export { default as OctagonIcon } from '../icons/octagon';
|
|
1929
1933
|
// Omega aliases
|
|
1930
1934
|
export { default as OmegaIcon } from '../icons/omega';
|
|
1931
1935
|
// Option aliases
|
|
1932
1936
|
export { default as OptionIcon } from '../icons/option';
|
|
1933
|
-
// Orbit aliases
|
|
1934
|
-
export { default as OrbitIcon } from '../icons/orbit';
|
|
1935
1937
|
// Origami aliases
|
|
1936
1938
|
export { default as OrigamiIcon } from '../icons/origami';
|
|
1937
1939
|
// Package2 aliases
|
|
1938
1940
|
export { default as Package2Icon } from '../icons/package-2';
|
|
1941
|
+
// Orbit aliases
|
|
1942
|
+
export { default as OrbitIcon } from '../icons/orbit';
|
|
1939
1943
|
// PackageCheck aliases
|
|
1940
1944
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1941
1945
|
// PackageOpen aliases
|
|
@@ -1944,32 +1948,32 @@ export { default as PackageOpenIcon } from '../icons/package-open';
|
|
|
1944
1948
|
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1945
1949
|
// PackagePlus aliases
|
|
1946
1950
|
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1947
|
-
// PackageSearch aliases
|
|
1948
|
-
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1949
1951
|
// PackageX aliases
|
|
1950
1952
|
export { default as PackageXIcon } from '../icons/package-x';
|
|
1953
|
+
// PackageSearch aliases
|
|
1954
|
+
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1951
1955
|
// Package aliases
|
|
1952
1956
|
export { default as PackageIcon } from '../icons/package';
|
|
1953
1957
|
// PaintBucket aliases
|
|
1954
1958
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1955
|
-
// Paintbrush aliases
|
|
1956
|
-
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1957
1959
|
// PaintRoller aliases
|
|
1958
1960
|
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1959
|
-
//
|
|
1960
|
-
export { default as
|
|
1961
|
+
// Paintbrush aliases
|
|
1962
|
+
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1961
1963
|
// Palette aliases
|
|
1962
1964
|
export { default as PaletteIcon } from '../icons/palette';
|
|
1965
|
+
// Panda aliases
|
|
1966
|
+
export { default as PandaIcon } from '../icons/panda';
|
|
1963
1967
|
// PanelBottomClose aliases
|
|
1964
1968
|
export { default as PanelBottomCloseIcon } from '../icons/panel-bottom-close';
|
|
1965
1969
|
// PanelBottomOpen aliases
|
|
1966
1970
|
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1967
1971
|
// PanelBottom aliases
|
|
1968
1972
|
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1969
|
-
// PanelLeftRightDashed aliases
|
|
1970
|
-
export { default as PanelLeftRightDashedIcon } from '../icons/panel-left-right-dashed';
|
|
1971
1973
|
// PanelRightClose aliases
|
|
1972
1974
|
export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
1975
|
+
// PanelLeftRightDashed aliases
|
|
1976
|
+
export { default as PanelLeftRightDashedIcon } from '../icons/panel-left-right-dashed';
|
|
1973
1977
|
// PanelRightOpen aliases
|
|
1974
1978
|
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1975
1979
|
// PanelRight aliases
|
|
@@ -1980,14 +1984,14 @@ export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-d
|
|
|
1980
1984
|
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1981
1985
|
// PanelTopOpen aliases
|
|
1982
1986
|
export { default as PanelTopOpenIcon } from '../icons/panel-top-open';
|
|
1983
|
-
// PanelTop aliases
|
|
1984
|
-
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1985
|
-
// PanelsLeftBottom aliases
|
|
1986
|
-
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1987
1987
|
// PanelsRightBottom aliases
|
|
1988
1988
|
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1989
|
+
// PanelTop aliases
|
|
1990
|
+
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1989
1991
|
// PaperBag aliases
|
|
1990
1992
|
export { default as PaperBagIcon } from '../icons/paper-bag';
|
|
1993
|
+
// PanelsLeftBottom aliases
|
|
1994
|
+
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1991
1995
|
// Paperclip aliases
|
|
1992
1996
|
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1993
1997
|
// Parasol aliases
|
|
@@ -2014,10 +2018,10 @@ export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
|
2014
2018
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
2015
2019
|
// PencilRuler aliases
|
|
2016
2020
|
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
2017
|
-
// Pencil aliases
|
|
2018
|
-
export { default as PencilIcon } from '../icons/pencil';
|
|
2019
2021
|
// PencilSparkles aliases
|
|
2020
2022
|
export { default as PencilSparklesIcon } from '../icons/pencil-sparkles';
|
|
2023
|
+
// Pencil aliases
|
|
2024
|
+
export { default as PencilIcon } from '../icons/pencil';
|
|
2021
2025
|
// Pentagon aliases
|
|
2022
2026
|
export { default as PentagonIcon } from '../icons/pentagon';
|
|
2023
2027
|
// Percent aliases
|
|
@@ -2036,10 +2040,10 @@ export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
|
2036
2040
|
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
2037
2041
|
// PhoneMissed aliases
|
|
2038
2042
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
2039
|
-
// PhoneOutgoing aliases
|
|
2040
|
-
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
2041
2043
|
// PhoneOff aliases
|
|
2042
2044
|
export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
2045
|
+
// PhoneOutgoing aliases
|
|
2046
|
+
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
2043
2047
|
// Phone aliases
|
|
2044
2048
|
export { default as PhoneIcon } from '../icons/phone';
|
|
2045
2049
|
// Pi aliases
|
|
@@ -2048,16 +2052,16 @@ export { default as PiIcon } from '../icons/pi';
|
|
|
2048
2052
|
export { default as PianoIcon } from '../icons/piano';
|
|
2049
2053
|
// Pickaxe aliases
|
|
2050
2054
|
export { default as PickaxeIcon } from '../icons/pickaxe';
|
|
2051
|
-
// PictureInPicture aliases
|
|
2052
|
-
export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
2053
2055
|
// PictureInPicture2 aliases
|
|
2054
2056
|
export { default as PictureInPicture2Icon } from '../icons/picture-in-picture-2';
|
|
2057
|
+
// PictureInPicture aliases
|
|
2058
|
+
export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
2055
2059
|
// PiggyBank aliases
|
|
2056
2060
|
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
2057
|
-
// PilcrowRight aliases
|
|
2058
|
-
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
2059
2061
|
// PilcrowLeft aliases
|
|
2060
2062
|
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
2063
|
+
// PilcrowRight aliases
|
|
2064
|
+
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
2061
2065
|
// Pilcrow aliases
|
|
2062
2066
|
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
2063
2067
|
// PillBottle aliases
|
|
@@ -2066,10 +2070,10 @@ export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
|
2066
2070
|
export { default as PillIcon } from '../icons/pill';
|
|
2067
2071
|
// PinOff aliases
|
|
2068
2072
|
export { default as PinOffIcon } from '../icons/pin-off';
|
|
2069
|
-
// Pipette aliases
|
|
2070
|
-
export { default as PipetteIcon } from '../icons/pipette';
|
|
2071
2073
|
// Pin aliases
|
|
2072
2074
|
export { default as PinIcon } from '../icons/pin';
|
|
2075
|
+
// Pipette aliases
|
|
2076
|
+
export { default as PipetteIcon } from '../icons/pipette';
|
|
2073
2077
|
// Pizza aliases
|
|
2074
2078
|
export { default as PizzaIcon } from '../icons/pizza';
|
|
2075
2079
|
// PlaneLanding aliases
|
|
@@ -2078,12 +2082,12 @@ export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
|
2078
2082
|
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
2079
2083
|
// Plane aliases
|
|
2080
2084
|
export { default as PlaneIcon } from '../icons/plane';
|
|
2085
|
+
// PlayOff aliases
|
|
2086
|
+
export { default as PlayOffIcon } from '../icons/play-off';
|
|
2081
2087
|
// Play aliases
|
|
2082
2088
|
export { default as PlayIcon } from '../icons/play';
|
|
2083
2089
|
// Plug2 aliases
|
|
2084
2090
|
export { default as Plug2Icon } from '../icons/plug-2';
|
|
2085
|
-
// PlayOff aliases
|
|
2086
|
-
export { default as PlayOffIcon } from '../icons/play-off';
|
|
2087
2091
|
// Plug aliases
|
|
2088
2092
|
export { default as PlugIcon } from '../icons/plug';
|
|
2089
2093
|
// Plus aliases
|
|
@@ -2096,38 +2100,38 @@ export { default as PodiumIcon } from '../icons/podium';
|
|
|
2096
2100
|
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2097
2101
|
// Pointer aliases
|
|
2098
2102
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2099
|
-
// Popcorn aliases
|
|
2100
|
-
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2101
2103
|
// Popsicle aliases
|
|
2102
2104
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2103
|
-
//
|
|
2104
|
-
export { default as
|
|
2105
|
+
// Popcorn aliases
|
|
2106
|
+
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2105
2107
|
// PoundSterling aliases
|
|
2106
2108
|
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2107
|
-
//
|
|
2108
|
-
export { default as
|
|
2109
|
+
// PowerOff aliases
|
|
2110
|
+
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2109
2111
|
// Presentation aliases
|
|
2110
2112
|
export { default as PresentationIcon } from '../icons/presentation';
|
|
2111
|
-
//
|
|
2112
|
-
export { default as
|
|
2113
|
+
// Power aliases
|
|
2114
|
+
export { default as PowerIcon } from '../icons/power';
|
|
2113
2115
|
// PrinterX aliases
|
|
2114
2116
|
export { default as PrinterXIcon } from '../icons/printer-x';
|
|
2117
|
+
// PrinterCheck aliases
|
|
2118
|
+
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2115
2119
|
// Printer aliases
|
|
2116
2120
|
export { default as PrinterIcon } from '../icons/printer';
|
|
2117
2121
|
// Projector aliases
|
|
2118
2122
|
export { default as ProjectorIcon } from '../icons/projector';
|
|
2119
2123
|
// Proportions aliases
|
|
2120
2124
|
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2125
|
+
// Pyramid aliases
|
|
2126
|
+
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2121
2127
|
// Puzzle aliases
|
|
2122
2128
|
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2123
2129
|
// QrCode aliases
|
|
2124
2130
|
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2125
|
-
// Quote aliases
|
|
2126
|
-
export { default as QuoteIcon } from '../icons/quote';
|
|
2127
|
-
// Pyramid aliases
|
|
2128
|
-
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2129
2131
|
// Rabbit aliases
|
|
2130
2132
|
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2133
|
+
// Quote aliases
|
|
2134
|
+
export { default as QuoteIcon } from '../icons/quote';
|
|
2131
2135
|
// Radar aliases
|
|
2132
2136
|
export { default as RadarIcon } from '../icons/radar';
|
|
2133
2137
|
// Radiation aliases
|
|
@@ -2160,10 +2164,10 @@ export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
|
2160
2164
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2161
2165
|
// ReceiptPoundSterling aliases
|
|
2162
2166
|
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2163
|
-
// ReceiptSwissFranc aliases
|
|
2164
|
-
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2165
2167
|
// ReceiptRussianRuble aliases
|
|
2166
2168
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2169
|
+
// ReceiptSwissFranc aliases
|
|
2170
|
+
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2167
2171
|
// ReceiptText aliases
|
|
2168
2172
|
export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
2169
2173
|
// ReceiptTurkishLira aliases
|
|
@@ -2184,16 +2188,16 @@ export { default as RecycleIcon } from '../icons/recycle';
|
|
|
2184
2188
|
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2185
2189
|
// RedoDot aliases
|
|
2186
2190
|
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2187
|
-
// RefreshCcwDot aliases
|
|
2188
|
-
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2189
2191
|
// Redo aliases
|
|
2190
2192
|
export { default as RedoIcon } from '../icons/redo';
|
|
2193
|
+
// RefreshCcwDot aliases
|
|
2194
|
+
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2191
2195
|
// RefreshCcw aliases
|
|
2192
2196
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2193
|
-
// RefreshCwOff aliases
|
|
2194
|
-
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2195
2197
|
// RefreshCw aliases
|
|
2196
2198
|
export { default as RefreshCwIcon } from '../icons/refresh-cw';
|
|
2199
|
+
// RefreshCwOff aliases
|
|
2200
|
+
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2197
2201
|
// Refrigerator aliases
|
|
2198
2202
|
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2199
2203
|
// Regex aliases
|
|
@@ -2210,14 +2214,14 @@ export { default as RepeatOffIcon } from '../icons/repeat-off';
|
|
|
2210
2214
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2211
2215
|
// ReplaceAll aliases
|
|
2212
2216
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2213
|
-
// ReplyAll aliases
|
|
2214
|
-
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2215
2217
|
// Replace aliases
|
|
2216
2218
|
export { default as ReplaceIcon } from '../icons/replace';
|
|
2217
|
-
//
|
|
2218
|
-
export { default as
|
|
2219
|
+
// ReplyAll aliases
|
|
2220
|
+
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2219
2221
|
// Reply aliases
|
|
2220
2222
|
export { default as ReplyIcon } from '../icons/reply';
|
|
2223
|
+
// Rewind aliases
|
|
2224
|
+
export { default as RewindIcon } from '../icons/rewind';
|
|
2221
2225
|
// Ribbon aliases
|
|
2222
2226
|
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2223
2227
|
// Road aliases
|
|
@@ -2226,14 +2230,14 @@ export { default as RoadIcon } from '../icons/road';
|
|
|
2226
2230
|
export { default as RocketIcon } from '../icons/rocket';
|
|
2227
2231
|
// RockingChair aliases
|
|
2228
2232
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2229
|
-
// Rose aliases
|
|
2230
|
-
export { default as RoseIcon } from '../icons/rose';
|
|
2231
2233
|
// RollerCoaster aliases
|
|
2232
2234
|
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2233
2235
|
// RotateCcwKey aliases
|
|
2234
2236
|
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2235
2237
|
// RotateCcwSquare aliases
|
|
2236
2238
|
export { default as RotateCcwSquareIcon } from '../icons/rotate-ccw-square';
|
|
2239
|
+
// Rose aliases
|
|
2240
|
+
export { default as RoseIcon } from '../icons/rose';
|
|
2237
2241
|
// RotateCcw aliases
|
|
2238
2242
|
export { default as RotateCcwIcon } from '../icons/rotate-ccw';
|
|
2239
2243
|
// RotateCwFadingClock aliases
|
|
@@ -2256,38 +2260,38 @@ export { default as RssIcon } from '../icons/rss';
|
|
|
2256
2260
|
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2257
2261
|
// Ruler aliases
|
|
2258
2262
|
export { default as RulerIcon } from '../icons/ruler';
|
|
2259
|
-
// Sailboat aliases
|
|
2260
|
-
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2261
2263
|
// RussianRuble aliases
|
|
2262
2264
|
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2263
|
-
//
|
|
2264
|
-
export { default as
|
|
2265
|
+
// Sailboat aliases
|
|
2266
|
+
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2265
2267
|
// Sandwich aliases
|
|
2266
2268
|
export { default as SandwichIcon } from '../icons/sandwich';
|
|
2269
|
+
// Salad aliases
|
|
2270
|
+
export { default as SaladIcon } from '../icons/salad';
|
|
2267
2271
|
// SatelliteDish aliases
|
|
2268
2272
|
export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
2269
|
-
// Satellite aliases
|
|
2270
|
-
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2271
2273
|
// SaudiRiyal aliases
|
|
2272
2274
|
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2275
|
+
// Satellite aliases
|
|
2276
|
+
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2273
2277
|
// SaveAll aliases
|
|
2274
2278
|
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2275
2279
|
// SaveCheck aliases
|
|
2276
2280
|
export { default as SaveCheckIcon } from '../icons/save-check';
|
|
2277
2281
|
// SavePen aliases
|
|
2278
2282
|
export { default as SavePenIcon } from '../icons/save-pen';
|
|
2279
|
-
// SaveOff aliases
|
|
2280
|
-
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2281
2283
|
// SavePlus aliases
|
|
2282
2284
|
export { default as SavePlusIcon } from '../icons/save-plus';
|
|
2285
|
+
// SaveOff aliases
|
|
2286
|
+
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2283
2287
|
// Save aliases
|
|
2284
2288
|
export { default as SaveIcon } from '../icons/save';
|
|
2289
|
+
// Scale aliases
|
|
2290
|
+
export { default as ScaleIcon } from '../icons/scale';
|
|
2285
2291
|
// Scaling aliases
|
|
2286
2292
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2287
2293
|
// ScanBarcode aliases
|
|
2288
2294
|
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2289
|
-
// Scale aliases
|
|
2290
|
-
export { default as ScaleIcon } from '../icons/scale';
|
|
2291
2295
|
// ScanBox aliases
|
|
2292
2296
|
export { default as ScanBoxIcon } from '../icons/scan-box';
|
|
2293
2297
|
// ScanEye aliases
|
|
@@ -2304,16 +2308,16 @@ export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
|
2304
2308
|
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2305
2309
|
// ScanSquare aliases
|
|
2306
2310
|
export { default as ScanSquareIcon } from '../icons/scan-square';
|
|
2307
|
-
// Scan aliases
|
|
2308
|
-
export { default as ScanIcon } from '../icons/scan';
|
|
2309
2311
|
// ScanText aliases
|
|
2310
2312
|
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2313
|
+
// Scan aliases
|
|
2314
|
+
export { default as ScanIcon } from '../icons/scan';
|
|
2311
2315
|
// School aliases
|
|
2312
2316
|
export { default as SchoolIcon } from '../icons/school';
|
|
2313
|
-
// Scissors aliases
|
|
2314
|
-
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2315
2317
|
// ScissorsLineDashed aliases
|
|
2316
2318
|
export { default as ScissorsLineDashedIcon } from '../icons/scissors-line-dashed';
|
|
2319
|
+
// Scissors aliases
|
|
2320
|
+
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2317
2321
|
// Scooter aliases
|
|
2318
2322
|
export { default as ScooterIcon } from '../icons/scooter';
|
|
2319
2323
|
// ScreenShareOff aliases
|
|
@@ -2354,16 +2358,16 @@ export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
|
2354
2358
|
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2355
2359
|
// ServerPlus aliases
|
|
2356
2360
|
export { default as ServerPlusIcon } from '../icons/server-plus';
|
|
2357
|
-
// Settings2 aliases
|
|
2358
|
-
export { default as Settings2Icon } from '../icons/settings-2';
|
|
2359
2361
|
// Server aliases
|
|
2360
2362
|
export { default as ServerIcon } from '../icons/server';
|
|
2361
2363
|
// Settings aliases
|
|
2362
2364
|
export { default as SettingsIcon } from '../icons/settings';
|
|
2363
|
-
//
|
|
2364
|
-
export { default as
|
|
2365
|
+
// Settings2 aliases
|
|
2366
|
+
export { default as Settings2Icon } from '../icons/settings-2';
|
|
2365
2367
|
// Share2 aliases
|
|
2366
2368
|
export { default as Share2Icon } from '../icons/share-2';
|
|
2369
|
+
// Shapes aliases
|
|
2370
|
+
export { default as ShapesIcon } from '../icons/shapes';
|
|
2367
2371
|
// Sheet aliases
|
|
2368
2372
|
export { default as SheetIcon } from '../icons/sheet';
|
|
2369
2373
|
// Share aliases
|
|
@@ -2384,10 +2388,12 @@ export { default as ShieldCogCornerIcon } from '../icons/shield-cog-corner';
|
|
|
2384
2388
|
export { default as ShieldCogIcon } from '../icons/shield-cog';
|
|
2385
2389
|
// ShieldEllipsis aliases
|
|
2386
2390
|
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2387
|
-
// ShieldHalf aliases
|
|
2388
|
-
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2389
2391
|
// ShieldKeyhole aliases
|
|
2390
2392
|
export { default as ShieldKeyholeIcon } from '../icons/shield-keyhole';
|
|
2393
|
+
// ShieldHalf aliases
|
|
2394
|
+
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2395
|
+
// ShieldLock aliases
|
|
2396
|
+
export { default as ShieldLockIcon } from '../icons/shield-lock';
|
|
2391
2397
|
// ShieldMinus aliases
|
|
2392
2398
|
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2393
2399
|
// ShieldOff aliases
|
|
@@ -2414,10 +2420,10 @@ export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
|
2414
2420
|
export { default as ShovelIcon } from '../icons/shovel';
|
|
2415
2421
|
// ShowerHead aliases
|
|
2416
2422
|
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2417
|
-
// Shredder aliases
|
|
2418
|
-
export { default as ShredderIcon } from '../icons/shredder';
|
|
2419
2423
|
// Shrimp aliases
|
|
2420
2424
|
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2425
|
+
// Shredder aliases
|
|
2426
|
+
export { default as ShredderIcon } from '../icons/shredder';
|
|
2421
2427
|
// Shrink aliases
|
|
2422
2428
|
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2423
2429
|
// Shrub aliases
|
|
@@ -2440,18 +2446,18 @@ export { default as SignalIcon } from '../icons/signal';
|
|
|
2440
2446
|
export { default as SignatureIcon } from '../icons/signature';
|
|
2441
2447
|
// SignpostBig aliases
|
|
2442
2448
|
export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
2443
|
-
// Signpost aliases
|
|
2444
|
-
export { default as SignpostIcon } from '../icons/signpost';
|
|
2445
2449
|
// Siren aliases
|
|
2446
2450
|
export { default as SirenIcon } from '../icons/siren';
|
|
2451
|
+
// Signpost aliases
|
|
2452
|
+
export { default as SignpostIcon } from '../icons/signpost';
|
|
2447
2453
|
// SkipBack aliases
|
|
2448
2454
|
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2449
|
-
// Skull aliases
|
|
2450
|
-
export { default as SkullIcon } from '../icons/skull';
|
|
2451
2455
|
// SkipForward aliases
|
|
2452
2456
|
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2453
2457
|
// Slash aliases
|
|
2454
2458
|
export { default as SlashIcon } from '../icons/slash';
|
|
2459
|
+
// Skull aliases
|
|
2460
|
+
export { default as SkullIcon } from '../icons/skull';
|
|
2455
2461
|
// Slice aliases
|
|
2456
2462
|
export { default as SliceIcon } from '../icons/slice';
|
|
2457
2463
|
// SlidersHorizontal aliases
|
|
@@ -2462,34 +2468,30 @@ export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging'
|
|
|
2462
2468
|
export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
2463
2469
|
// Smartphone aliases
|
|
2464
2470
|
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2465
|
-
// SmilePlus aliases
|
|
2466
|
-
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2467
2471
|
// Snail aliases
|
|
2468
2472
|
export { default as SnailIcon } from '../icons/snail';
|
|
2469
|
-
// Smile aliases
|
|
2470
|
-
export { default as SmileIcon } from '../icons/smile';
|
|
2471
2473
|
// Snowflake aliases
|
|
2472
2474
|
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2473
|
-
// Sofa aliases
|
|
2474
|
-
export { default as SofaIcon } from '../icons/sofa';
|
|
2475
2475
|
// SoapDispenserDroplet aliases
|
|
2476
2476
|
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2477
|
+
// Sofa aliases
|
|
2478
|
+
export { default as SofaIcon } from '../icons/sofa';
|
|
2477
2479
|
// SolarPanel aliases
|
|
2478
2480
|
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2479
2481
|
// Soup aliases
|
|
2480
2482
|
export { default as SoupIcon } from '../icons/soup';
|
|
2481
|
-
// Space aliases
|
|
2482
|
-
export { default as SpaceIcon } from '../icons/space';
|
|
2483
2483
|
// Spade aliases
|
|
2484
2484
|
export { default as SpadeIcon } from '../icons/spade';
|
|
2485
|
+
// Space aliases
|
|
2486
|
+
export { default as SpaceIcon } from '../icons/space';
|
|
2485
2487
|
// Sparkle aliases
|
|
2486
2488
|
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2487
2489
|
// Speaker aliases
|
|
2488
2490
|
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2489
|
-
// SpellCheck2 aliases
|
|
2490
|
-
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2491
2491
|
// Speech aliases
|
|
2492
2492
|
export { default as SpeechIcon } from '../icons/speech';
|
|
2493
|
+
// SpellCheck2 aliases
|
|
2494
|
+
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2493
2495
|
// SpellCheck aliases
|
|
2494
2496
|
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2495
2497
|
// SplinePointer aliases
|
|
@@ -2498,20 +2500,20 @@ export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
|
2498
2500
|
export { default as SplineIcon } from '../icons/spline';
|
|
2499
2501
|
// Split aliases
|
|
2500
2502
|
export { default as SplitIcon } from '../icons/split';
|
|
2501
|
-
// Spool aliases
|
|
2502
|
-
export { default as SpoolIcon } from '../icons/spool';
|
|
2503
2503
|
// SportShoe aliases
|
|
2504
2504
|
export { default as SportShoeIcon } from '../icons/sport-shoe';
|
|
2505
|
+
// Spool aliases
|
|
2506
|
+
export { default as SpoolIcon } from '../icons/spool';
|
|
2505
2507
|
// Spotlight aliases
|
|
2506
2508
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2507
|
-
// Sprout aliases
|
|
2508
|
-
export { default as SproutIcon } from '../icons/sprout';
|
|
2509
2509
|
// SprayCan aliases
|
|
2510
2510
|
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2511
|
-
//
|
|
2512
|
-
export { default as
|
|
2511
|
+
// Sprout aliases
|
|
2512
|
+
export { default as SproutIcon } from '../icons/sprout';
|
|
2513
2513
|
// SquareArrowRightExit aliases
|
|
2514
2514
|
export { default as SquareArrowRightExitIcon } from '../icons/square-arrow-right-exit';
|
|
2515
|
+
// SquareArrowRightEnter aliases
|
|
2516
|
+
export { default as SquareArrowRightEnterIcon } from '../icons/square-arrow-right-enter';
|
|
2515
2517
|
// SquareDashedBottomCode aliases
|
|
2516
2518
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2517
2519
|
// SquareDashedBottom aliases
|
|
@@ -2522,10 +2524,10 @@ export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-
|
|
|
2522
2524
|
export { default as SquareOffIcon } from '../icons/square-off';
|
|
2523
2525
|
// SquarePause aliases
|
|
2524
2526
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2525
|
-
// SquareRoundCorner aliases
|
|
2526
|
-
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2527
2527
|
// SquareRadical aliases
|
|
2528
2528
|
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2529
|
+
// SquareRoundCorner aliases
|
|
2530
|
+
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2529
2531
|
// SquareSquare aliases
|
|
2530
2532
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2531
2533
|
// SquareStack aliases
|
|
@@ -2536,10 +2538,10 @@ export { default as SquareStarIcon } from '../icons/square-star';
|
|
|
2536
2538
|
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2537
2539
|
// Square aliases
|
|
2538
2540
|
export { default as SquareIcon } from '../icons/square';
|
|
2539
|
-
// SquaresExclude aliases
|
|
2540
|
-
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2541
2541
|
// SquaresIntersect aliases
|
|
2542
2542
|
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2543
|
+
// SquaresExclude aliases
|
|
2544
|
+
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2543
2545
|
// SquaresSubtract aliases
|
|
2544
2546
|
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2545
2547
|
// SquaresUnite aliases
|
|
@@ -2548,30 +2550,30 @@ export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
|
2548
2550
|
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2549
2551
|
// Squircle aliases
|
|
2550
2552
|
export { default as SquircleIcon } from '../icons/squircle';
|
|
2551
|
-
// Squirrel aliases
|
|
2552
|
-
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2553
2553
|
// Stamp aliases
|
|
2554
2554
|
export { default as StampIcon } from '../icons/stamp';
|
|
2555
|
-
//
|
|
2556
|
-
export { default as
|
|
2555
|
+
// Squirrel aliases
|
|
2556
|
+
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2557
2557
|
// StarHalf aliases
|
|
2558
2558
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2559
|
+
// StarCheck aliases
|
|
2560
|
+
export { default as StarCheckIcon } from '../icons/star-check';
|
|
2559
2561
|
// StarMinus aliases
|
|
2560
2562
|
export { default as StarMinusIcon } from '../icons/star-minus';
|
|
2561
2563
|
// StarOff aliases
|
|
2562
2564
|
export { default as StarOffIcon } from '../icons/star-off';
|
|
2565
|
+
// StarPlus aliases
|
|
2566
|
+
export { default as StarPlusIcon } from '../icons/star-plus';
|
|
2563
2567
|
// StarX aliases
|
|
2564
2568
|
export { default as StarXIcon } from '../icons/star-x';
|
|
2565
2569
|
// Star aliases
|
|
2566
2570
|
export { default as StarIcon } from '../icons/star';
|
|
2567
|
-
//
|
|
2568
|
-
export { default as
|
|
2571
|
+
// StepBack aliases
|
|
2572
|
+
export { default as StepBackIcon } from '../icons/step-back';
|
|
2569
2573
|
// StepForward aliases
|
|
2570
2574
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2571
2575
|
// Stethoscope aliases
|
|
2572
2576
|
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2573
|
-
// StepBack aliases
|
|
2574
|
-
export { default as StepBackIcon } from '../icons/step-back';
|
|
2575
2577
|
// Sticker aliases
|
|
2576
2578
|
export { default as StickerIcon } from '../icons/sticker';
|
|
2577
2579
|
// StickyNoteCheck aliases
|
|
@@ -2582,36 +2584,36 @@ export { default as StickyNoteMinusIcon } from '../icons/sticky-note-minus';
|
|
|
2582
2584
|
export { default as StickyNoteOffIcon } from '../icons/sticky-note-off';
|
|
2583
2585
|
// StickyNotePlus aliases
|
|
2584
2586
|
export { default as StickyNotePlusIcon } from '../icons/sticky-note-plus';
|
|
2587
|
+
// StickyNoteX aliases
|
|
2588
|
+
export { default as StickyNoteXIcon } from '../icons/sticky-note-x';
|
|
2585
2589
|
// StickyNotes aliases
|
|
2586
2590
|
export { default as StickyNotesIcon } from '../icons/sticky-notes';
|
|
2587
2591
|
// StickyNote aliases
|
|
2588
2592
|
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2589
|
-
// StickyNoteX aliases
|
|
2590
|
-
export { default as StickyNoteXIcon } from '../icons/sticky-note-x';
|
|
2591
2593
|
// Stone aliases
|
|
2592
2594
|
export { default as StoneIcon } from '../icons/stone';
|
|
2593
2595
|
// Store aliases
|
|
2594
2596
|
export { default as StoreIcon } from '../icons/store';
|
|
2595
2597
|
// StretchHorizontal aliases
|
|
2596
2598
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2597
|
-
// Strikethrough aliases
|
|
2598
|
-
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2599
2599
|
// StretchVertical aliases
|
|
2600
2600
|
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2601
|
-
//
|
|
2602
|
-
export { default as
|
|
2601
|
+
// Strikethrough aliases
|
|
2602
|
+
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2603
2603
|
// Summary aliases
|
|
2604
2604
|
export { default as SummaryIcon } from '../icons/summary';
|
|
2605
|
+
// Subscript aliases
|
|
2606
|
+
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2605
2607
|
// SunDim aliases
|
|
2606
2608
|
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2607
2609
|
// SunMedium aliases
|
|
2608
2610
|
export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
2609
2611
|
// SunMoon aliases
|
|
2610
2612
|
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2611
|
-
// SunSnow aliases
|
|
2612
|
-
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2613
2613
|
// Sun aliases
|
|
2614
2614
|
export { default as SunIcon } from '../icons/sun';
|
|
2615
|
+
// SunSnow aliases
|
|
2616
|
+
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2615
2617
|
// Sunrise aliases
|
|
2616
2618
|
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2617
2619
|
// Sunset aliases
|
|
@@ -2626,34 +2628,34 @@ export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
|
2626
2628
|
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2627
2629
|
// Sword aliases
|
|
2628
2630
|
export { default as SwordIcon } from '../icons/sword';
|
|
2629
|
-
// Swords aliases
|
|
2630
|
-
export { default as SwordsIcon } from '../icons/swords';
|
|
2631
2631
|
// Syringe aliases
|
|
2632
2632
|
export { default as SyringeIcon } from '../icons/syringe';
|
|
2633
|
+
// Swords aliases
|
|
2634
|
+
export { default as SwordsIcon } from '../icons/swords';
|
|
2633
2635
|
// Table2 aliases
|
|
2634
2636
|
export { default as Table2Icon } from '../icons/table-2';
|
|
2635
|
-
// TableCellsSplit aliases
|
|
2636
|
-
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2637
2637
|
// TableCellsMerge aliases
|
|
2638
2638
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2639
|
+
// TableCellsSplit aliases
|
|
2640
|
+
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2639
2641
|
// TableColumnsSplit aliases
|
|
2640
2642
|
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2641
2643
|
// TableOfContents aliases
|
|
2642
2644
|
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2643
|
-
// TableProperties aliases
|
|
2644
|
-
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2645
2645
|
// TableRowsSplit aliases
|
|
2646
2646
|
export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
2647
|
+
// TableProperties aliases
|
|
2648
|
+
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2649
|
+
// TabletSmartphone aliases
|
|
2650
|
+
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2647
2651
|
// Table aliases
|
|
2648
2652
|
export { default as TableIcon } from '../icons/table';
|
|
2649
2653
|
// Tablet aliases
|
|
2650
2654
|
export { default as TabletIcon } from '../icons/tablet';
|
|
2651
|
-
// TabletSmartphone aliases
|
|
2652
|
-
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2653
|
-
// Tablets aliases
|
|
2654
|
-
export { default as TabletsIcon } from '../icons/tablets';
|
|
2655
2655
|
// TagPlus aliases
|
|
2656
2656
|
export { default as TagPlusIcon } from '../icons/tag-plus';
|
|
2657
|
+
// Tablets aliases
|
|
2658
|
+
export { default as TabletsIcon } from '../icons/tablets';
|
|
2657
2659
|
// TagX aliases
|
|
2658
2660
|
export { default as TagXIcon } from '../icons/tag-x';
|
|
2659
2661
|
// Tag aliases
|
|
@@ -2662,14 +2664,14 @@ export { default as TagIcon } from '../icons/tag';
|
|
|
2662
2664
|
export { default as TagsIcon } from '../icons/tags';
|
|
2663
2665
|
// Tally1 aliases
|
|
2664
2666
|
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2665
|
-
// Tally2 aliases
|
|
2666
|
-
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2667
2667
|
// Tally3 aliases
|
|
2668
2668
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2669
|
-
//
|
|
2670
|
-
export { default as
|
|
2669
|
+
// Tally2 aliases
|
|
2670
|
+
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2671
2671
|
// Tally4 aliases
|
|
2672
2672
|
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2673
|
+
// Tally5 aliases
|
|
2674
|
+
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2673
2675
|
// Tangent aliases
|
|
2674
2676
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2675
2677
|
// Target aliases
|
|
@@ -2678,10 +2680,10 @@ export { default as TargetIcon } from '../icons/target';
|
|
|
2678
2680
|
export { default as TelescopeIcon } from '../icons/telescope';
|
|
2679
2681
|
// TentTree aliases
|
|
2680
2682
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2681
|
-
// Terminal aliases
|
|
2682
|
-
export { default as TerminalIcon } from '../icons/terminal';
|
|
2683
2683
|
// Tent aliases
|
|
2684
2684
|
export { default as TentIcon } from '../icons/tent';
|
|
2685
|
+
// Terminal aliases
|
|
2686
|
+
export { default as TerminalIcon } from '../icons/terminal';
|
|
2685
2687
|
// TestTube aliases
|
|
2686
2688
|
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2687
2689
|
// TestTubes aliases
|
|
@@ -2694,48 +2696,48 @@ export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
|
2694
2696
|
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2695
2697
|
// TextSearch aliases
|
|
2696
2698
|
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2697
|
-
// ThermometerSnowflake aliases
|
|
2698
|
-
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2699
2699
|
// Theater aliases
|
|
2700
2700
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2701
|
+
// ThermometerSnowflake aliases
|
|
2702
|
+
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2701
2703
|
// ThermometerSun aliases
|
|
2702
2704
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2703
2705
|
// Thermometer aliases
|
|
2704
2706
|
export { default as ThermometerIcon } from '../icons/thermometer';
|
|
2705
|
-
// ThumbsUp aliases
|
|
2706
|
-
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2707
2707
|
// ThumbsDown aliases
|
|
2708
2708
|
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2709
|
+
// ThumbsUp aliases
|
|
2710
|
+
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2709
2711
|
// TicketCheck aliases
|
|
2710
2712
|
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2711
2713
|
// TicketMinus aliases
|
|
2712
2714
|
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2715
|
+
// TicketPlus aliases
|
|
2716
|
+
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2713
2717
|
// TicketPercent aliases
|
|
2714
2718
|
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2715
2719
|
// TicketSlash aliases
|
|
2716
2720
|
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2717
|
-
// TicketPlus aliases
|
|
2718
|
-
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2719
2721
|
// TicketX aliases
|
|
2720
2722
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2723
|
+
// TicketsPlane aliases
|
|
2724
|
+
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2721
2725
|
// Ticket aliases
|
|
2722
2726
|
export { default as TicketIcon } from '../icons/ticket';
|
|
2723
2727
|
// Tickets aliases
|
|
2724
2728
|
export { default as TicketsIcon } from '../icons/tickets';
|
|
2725
|
-
// TicketsPlane aliases
|
|
2726
|
-
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2727
2729
|
// Timeline aliases
|
|
2728
2730
|
export { default as TimelineIcon } from '../icons/timeline';
|
|
2729
|
-
// TimerOff aliases
|
|
2730
|
-
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2731
2731
|
// TimerReset aliases
|
|
2732
2732
|
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2733
|
-
//
|
|
2734
|
-
export { default as
|
|
2733
|
+
// TimerOff aliases
|
|
2734
|
+
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2735
2735
|
// ToggleLeft aliases
|
|
2736
2736
|
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2737
2737
|
// ToggleRight aliases
|
|
2738
2738
|
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2739
|
+
// Timer aliases
|
|
2740
|
+
export { default as TimerIcon } from '../icons/timer';
|
|
2739
2741
|
// Toilet aliases
|
|
2740
2742
|
export { default as ToiletIcon } from '../icons/toilet';
|
|
2741
2743
|
// ToolCase aliases
|
|
@@ -2746,20 +2748,20 @@ export { default as ToolboxIcon } from '../icons/toolbox';
|
|
|
2746
2748
|
export { default as TornadoIcon } from '../icons/tornado';
|
|
2747
2749
|
// Torus aliases
|
|
2748
2750
|
export { default as TorusIcon } from '../icons/torus';
|
|
2749
|
-
// TouchpadOff aliases
|
|
2750
|
-
export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
2751
2751
|
// Touchpad aliases
|
|
2752
2752
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2753
|
+
// TouchpadOff aliases
|
|
2754
|
+
export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
2753
2755
|
// TowelRack aliases
|
|
2754
2756
|
export { default as TowelRackIcon } from '../icons/towel-rack';
|
|
2755
2757
|
// TowerControl aliases
|
|
2756
2758
|
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2757
2759
|
// ToyBrick aliases
|
|
2758
2760
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2759
|
-
// TrafficCone aliases
|
|
2760
|
-
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2761
2761
|
// Tractor aliases
|
|
2762
2762
|
export { default as TractorIcon } from '../icons/tractor';
|
|
2763
|
+
// TrafficCone aliases
|
|
2764
|
+
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2763
2765
|
// TrainFrontTunnel aliases
|
|
2764
2766
|
export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
2765
2767
|
// TrainFront aliases
|
|
@@ -2778,20 +2780,20 @@ export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
|
2778
2780
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2779
2781
|
// Trees aliases
|
|
2780
2782
|
export { default as TreesIcon } from '../icons/trees';
|
|
2781
|
-
// TrendingUpDown aliases
|
|
2782
|
-
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2783
2783
|
// TrendingDown aliases
|
|
2784
2784
|
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2785
|
+
// TrendingUpDown aliases
|
|
2786
|
+
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2785
2787
|
// TrendingUp aliases
|
|
2786
2788
|
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2787
|
-
// TriangleRight aliases
|
|
2788
|
-
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2789
2789
|
// TriangleDashed aliases
|
|
2790
2790
|
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2791
|
-
//
|
|
2792
|
-
export { default as
|
|
2791
|
+
// TriangleRight aliases
|
|
2792
|
+
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2793
2793
|
// Triangle aliases
|
|
2794
2794
|
export { default as TriangleIcon } from '../icons/triangle';
|
|
2795
|
+
// Trophy aliases
|
|
2796
|
+
export { default as TrophyIcon } from '../icons/trophy';
|
|
2795
2797
|
// TruckElectric aliases
|
|
2796
2798
|
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2797
2799
|
// Truck aliases
|
|
@@ -2810,34 +2812,34 @@ export { default as TvIcon } from '../icons/tv';
|
|
|
2810
2812
|
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2811
2813
|
// Type aliases
|
|
2812
2814
|
export { default as TypeIcon } from '../icons/type';
|
|
2813
|
-
// UmbrellaOff aliases
|
|
2814
|
-
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2815
2815
|
// Umbrella aliases
|
|
2816
2816
|
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2817
|
-
//
|
|
2818
|
-
export { default as
|
|
2817
|
+
// UmbrellaOff aliases
|
|
2818
|
+
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2819
2819
|
// Undo2 aliases
|
|
2820
2820
|
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2821
|
+
// Underline aliases
|
|
2822
|
+
export { default as UnderlineIcon } from '../icons/underline';
|
|
2821
2823
|
// UndoDot aliases
|
|
2822
2824
|
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2823
2825
|
// Undo aliases
|
|
2824
2826
|
export { default as UndoIcon } from '../icons/undo';
|
|
2825
2827
|
// UnfoldHorizontal aliases
|
|
2826
2828
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2827
|
-
// Ungroup aliases
|
|
2828
|
-
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2829
2829
|
// UnfoldVertical aliases
|
|
2830
2830
|
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2831
|
+
// Ungroup aliases
|
|
2832
|
+
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2831
2833
|
// Unlink2 aliases
|
|
2832
2834
|
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2833
2835
|
// Unlink aliases
|
|
2834
2836
|
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2835
2837
|
// Unplug aliases
|
|
2836
2838
|
export { default as UnplugIcon } from '../icons/unplug';
|
|
2837
|
-
// Upload aliases
|
|
2838
|
-
export { default as UploadIcon } from '../icons/upload';
|
|
2839
2839
|
// Usb aliases
|
|
2840
2840
|
export { default as UsbIcon } from '../icons/usb';
|
|
2841
|
+
// Upload aliases
|
|
2842
|
+
export { default as UploadIcon } from '../icons/upload';
|
|
2841
2843
|
// UserCheck aliases
|
|
2842
2844
|
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2843
2845
|
// UserCog aliases
|
|
@@ -2856,26 +2858,26 @@ export { default as UserPlusIcon } from '../icons/user-plus';
|
|
|
2856
2858
|
export { default as UserRoundArrowLeftIcon } from '../icons/user-round-arrow-left';
|
|
2857
2859
|
// UserRoundKey aliases
|
|
2858
2860
|
export { default as UserRoundKeyIcon } from '../icons/user-round-key';
|
|
2859
|
-
// UserRoundSearch aliases
|
|
2860
|
-
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2861
2861
|
// UserRoundPen aliases
|
|
2862
2862
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2863
2863
|
// UserSearch aliases
|
|
2864
2864
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2865
2865
|
// UserShield aliases
|
|
2866
2866
|
export { default as UserShieldIcon } from '../icons/user-shield';
|
|
2867
|
-
//
|
|
2868
|
-
export { default as
|
|
2867
|
+
// UserRoundSearch aliases
|
|
2868
|
+
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2869
2869
|
// UserX aliases
|
|
2870
2870
|
export { default as UserXIcon } from '../icons/user-x';
|
|
2871
|
+
// UserStar aliases
|
|
2872
|
+
export { default as UserStarIcon } from '../icons/user-star';
|
|
2871
2873
|
// User aliases
|
|
2872
2874
|
export { default as UserIcon } from '../icons/user';
|
|
2873
2875
|
// Users aliases
|
|
2874
2876
|
export { default as UsersIcon } from '../icons/users';
|
|
2875
|
-
// Van aliases
|
|
2876
|
-
export { default as VanIcon } from '../icons/van';
|
|
2877
2877
|
// UtilityPole aliases
|
|
2878
2878
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2879
|
+
// Van aliases
|
|
2880
|
+
export { default as VanIcon } from '../icons/van';
|
|
2879
2881
|
// Variable aliases
|
|
2880
2882
|
export { default as VariableIcon } from '../icons/variable';
|
|
2881
2883
|
// Vault aliases
|
|
@@ -2884,64 +2886,64 @@ export { default as VaultIcon } from '../icons/vault';
|
|
|
2884
2886
|
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2885
2887
|
// Vegan aliases
|
|
2886
2888
|
export { default as VeganIcon } from '../icons/vegan';
|
|
2887
|
-
// VenusAndMars aliases
|
|
2888
|
-
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2889
2889
|
// VenetianMask aliases
|
|
2890
2890
|
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2891
|
-
//
|
|
2892
|
-
export { default as
|
|
2891
|
+
// VenusAndMars aliases
|
|
2892
|
+
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2893
2893
|
// VibrateOff aliases
|
|
2894
2894
|
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2895
|
+
// Venus aliases
|
|
2896
|
+
export { default as VenusIcon } from '../icons/venus';
|
|
2895
2897
|
// Vibrate aliases
|
|
2896
2898
|
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2897
2899
|
// VideoOff aliases
|
|
2898
2900
|
export { default as VideoOffIcon } from '../icons/video-off';
|
|
2899
|
-
// Video aliases
|
|
2900
|
-
export { default as VideoIcon } from '../icons/video';
|
|
2901
2901
|
// Videotape aliases
|
|
2902
2902
|
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2903
|
-
//
|
|
2904
|
-
export { default as
|
|
2903
|
+
// Video aliases
|
|
2904
|
+
export { default as VideoIcon } from '../icons/video';
|
|
2905
2905
|
// Voicemail aliases
|
|
2906
2906
|
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2907
2907
|
// Volleyball aliases
|
|
2908
2908
|
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2909
|
-
// Volume1 aliases
|
|
2910
|
-
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2911
2909
|
// Volume2 aliases
|
|
2912
2910
|
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2911
|
+
// Volume1 aliases
|
|
2912
|
+
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2913
|
+
// View aliases
|
|
2914
|
+
export { default as ViewIcon } from '../icons/view';
|
|
2915
|
+
// VolumeX aliases
|
|
2916
|
+
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2913
2917
|
// VolumeOff aliases
|
|
2914
2918
|
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2915
2919
|
// Volume aliases
|
|
2916
2920
|
export { default as VolumeIcon } from '../icons/volume';
|
|
2917
|
-
// VolumeX aliases
|
|
2918
|
-
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2919
2921
|
// Vote aliases
|
|
2920
2922
|
export { default as VoteIcon } from '../icons/vote';
|
|
2921
2923
|
// WalletCards aliases
|
|
2922
2924
|
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2923
2925
|
// Wallet aliases
|
|
2924
2926
|
export { default as WalletIcon } from '../icons/wallet';
|
|
2925
|
-
// Wand aliases
|
|
2926
|
-
export { default as WandIcon } from '../icons/wand';
|
|
2927
2927
|
// Wallpaper aliases
|
|
2928
2928
|
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2929
|
+
// Wand aliases
|
|
2930
|
+
export { default as WandIcon } from '../icons/wand';
|
|
2929
2931
|
// Warehouse aliases
|
|
2930
2932
|
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2931
2933
|
// WashingMachine aliases
|
|
2932
2934
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2933
2935
|
// Watch aliases
|
|
2934
2936
|
export { default as WatchIcon } from '../icons/watch';
|
|
2935
|
-
// WavesLadder aliases
|
|
2936
|
-
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2937
2937
|
// WavesArrowDown aliases
|
|
2938
2938
|
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2939
2939
|
// WavesArrowUp aliases
|
|
2940
2940
|
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2941
|
-
// Waypoints aliases
|
|
2942
|
-
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2943
2941
|
// WavesVertical aliases
|
|
2944
2942
|
export { default as WavesVerticalIcon } from '../icons/waves-vertical';
|
|
2943
|
+
// WavesLadder aliases
|
|
2944
|
+
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2945
|
+
// Waypoints aliases
|
|
2946
|
+
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2945
2947
|
// WebcamOff aliases
|
|
2946
2948
|
export { default as WebcamOffIcon } from '../icons/webcam-off';
|
|
2947
2949
|
// Webcam aliases
|
|
@@ -2958,54 +2960,54 @@ export { default as WeightIcon } from '../icons/weight';
|
|
|
2958
2960
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2959
2961
|
// Wheat aliases
|
|
2960
2962
|
export { default as WheatIcon } from '../icons/wheat';
|
|
2961
|
-
// WholeWord aliases
|
|
2962
|
-
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2963
2963
|
// WifiCog aliases
|
|
2964
2964
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2965
|
-
//
|
|
2966
|
-
export { default as
|
|
2965
|
+
// WholeWord aliases
|
|
2966
|
+
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2967
2967
|
// WifiLow aliases
|
|
2968
2968
|
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2969
|
+
// WifiHigh aliases
|
|
2970
|
+
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2969
2971
|
// WifiOff aliases
|
|
2970
2972
|
export { default as WifiOffIcon } from '../icons/wifi-off';
|
|
2971
2973
|
// WifiPen aliases
|
|
2972
2974
|
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2973
2975
|
// WifiSync aliases
|
|
2974
2976
|
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2975
|
-
// WifiZero aliases
|
|
2976
|
-
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2977
2977
|
// Wifi aliases
|
|
2978
2978
|
export { default as WifiIcon } from '../icons/wifi';
|
|
2979
|
+
// WifiZero aliases
|
|
2980
|
+
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2979
2981
|
// WindArrowDown aliases
|
|
2980
2982
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2981
2983
|
// Wind aliases
|
|
2982
2984
|
export { default as WindIcon } from '../icons/wind';
|
|
2983
|
-
// Wine aliases
|
|
2984
|
-
export { default as WineIcon } from '../icons/wine';
|
|
2985
2985
|
// WineOff aliases
|
|
2986
2986
|
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2987
2987
|
// Workflow aliases
|
|
2988
2988
|
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2989
|
-
//
|
|
2990
|
-
export { default as
|
|
2989
|
+
// Wine aliases
|
|
2990
|
+
export { default as WineIcon } from '../icons/wine';
|
|
2991
2991
|
// WrenchOff aliases
|
|
2992
2992
|
export { default as WrenchOffIcon } from '../icons/wrench-off';
|
|
2993
|
+
// Worm aliases
|
|
2994
|
+
export { default as WormIcon } from '../icons/worm';
|
|
2993
2995
|
// Wrench aliases
|
|
2994
2996
|
export { default as WrenchIcon } from '../icons/wrench';
|
|
2995
2997
|
// XLineTop aliases
|
|
2996
2998
|
export { default as XLineTopIcon } from '../icons/x-line-top';
|
|
2997
|
-
// ZapOff aliases
|
|
2998
|
-
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2999
2999
|
// X aliases
|
|
3000
3000
|
export { default as XIcon } from '../icons/x';
|
|
3001
|
+
// ZapOff aliases
|
|
3002
|
+
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
3001
3003
|
// Zap aliases
|
|
3002
3004
|
export { default as ZapIcon } from '../icons/zap';
|
|
3003
|
-
// ZodiacAries aliases
|
|
3004
|
-
export { default as ZodiacAriesIcon } from '../icons/zodiac-aries';
|
|
3005
3005
|
// ZodiacAquarius aliases
|
|
3006
3006
|
export { default as ZodiacAquariusIcon } from '../icons/zodiac-aquarius';
|
|
3007
3007
|
// ZodiacCancer aliases
|
|
3008
3008
|
export { default as ZodiacCancerIcon } from '../icons/zodiac-cancer';
|
|
3009
|
+
// ZodiacAries aliases
|
|
3010
|
+
export { default as ZodiacAriesIcon } from '../icons/zodiac-aries';
|
|
3009
3011
|
// ZodiacCapricorn aliases
|
|
3010
3012
|
export { default as ZodiacCapricornIcon } from '../icons/zodiac-capricorn';
|
|
3011
3013
|
// ZodiacGemini aliases
|
|
@@ -3014,16 +3016,16 @@ export { default as ZodiacGeminiIcon } from '../icons/zodiac-gemini';
|
|
|
3014
3016
|
export { default as ZodiacLeoIcon } from '../icons/zodiac-leo';
|
|
3015
3017
|
// ZodiacLibra aliases
|
|
3016
3018
|
export { default as ZodiacLibraIcon } from '../icons/zodiac-libra';
|
|
3017
|
-
// ZodiacOphiuchus aliases
|
|
3018
|
-
export { default as ZodiacOphiuchusIcon } from '../icons/zodiac-ophiuchus';
|
|
3019
3019
|
// ZodiacPisces aliases
|
|
3020
3020
|
export { default as ZodiacPiscesIcon } from '../icons/zodiac-pisces';
|
|
3021
|
+
// ZodiacOphiuchus aliases
|
|
3022
|
+
export { default as ZodiacOphiuchusIcon } from '../icons/zodiac-ophiuchus';
|
|
3023
|
+
// ZodiacSagittarius aliases
|
|
3024
|
+
export { default as ZodiacSagittariusIcon } from '../icons/zodiac-sagittarius';
|
|
3021
3025
|
// ZodiacScorpio aliases
|
|
3022
3026
|
export { default as ZodiacScorpioIcon } from '../icons/zodiac-scorpio';
|
|
3023
3027
|
// ZodiacTaurus aliases
|
|
3024
3028
|
export { default as ZodiacTaurusIcon } from '../icons/zodiac-taurus';
|
|
3025
|
-
// ZodiacSagittarius aliases
|
|
3026
|
-
export { default as ZodiacSagittariusIcon } from '../icons/zodiac-sagittarius';
|
|
3027
3029
|
// ZodiacVirgo aliases
|
|
3028
3030
|
export { default as ZodiacVirgoIcon } from '../icons/zodiac-virgo';
|
|
3029
3031
|
// ZoomIn aliases
|
|
@@ -3044,24 +3046,18 @@ export {
|
|
|
3044
3046
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockCheck} instead. */
|
|
3045
3047
|
default as AlarmCheckIcon
|
|
3046
3048
|
} from '../icons/alarm-clock-check';
|
|
3047
|
-
// AlarmClockPlus aliases
|
|
3048
|
-
export { default as AlarmClockPlusIcon } from '../icons/alarm-clock-plus';
|
|
3049
|
-
export {
|
|
3050
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. */
|
|
3051
|
-
default as AlarmPlusIcon
|
|
3052
|
-
} from '../icons/alarm-clock-plus';
|
|
3053
3049
|
// AlarmClockMinus aliases
|
|
3054
3050
|
export { default as AlarmClockMinusIcon } from '../icons/alarm-clock-minus';
|
|
3055
3051
|
export {
|
|
3056
3052
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. */
|
|
3057
3053
|
default as AlarmMinusIcon
|
|
3058
3054
|
} from '../icons/alarm-clock-minus';
|
|
3059
|
-
//
|
|
3060
|
-
export { default as
|
|
3055
|
+
// AlarmClockPlus aliases
|
|
3056
|
+
export { default as AlarmClockPlusIcon } from '../icons/alarm-clock-plus';
|
|
3061
3057
|
export {
|
|
3062
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3063
|
-
default as
|
|
3064
|
-
} from '../icons/
|
|
3058
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. */
|
|
3059
|
+
default as AlarmPlusIcon
|
|
3060
|
+
} from '../icons/alarm-clock-plus';
|
|
3065
3061
|
// ArrowDownWideNarrow aliases
|
|
3066
3062
|
export { default as ArrowDownWideNarrowIcon } from '../icons/arrow-down-wide-narrow';
|
|
3067
3063
|
export {
|
|
@@ -3074,12 +3070,24 @@ export {
|
|
|
3074
3070
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. */
|
|
3075
3071
|
default as ArrowDownZaIcon
|
|
3076
3072
|
} from '../icons/arrow-down-z-a';
|
|
3073
|
+
// ArrowDownAZ aliases
|
|
3074
|
+
export { default as ArrowDownAZIcon } from '../icons/arrow-down-a-z';
|
|
3075
|
+
export {
|
|
3076
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. */
|
|
3077
|
+
default as ArrowDownAzIcon
|
|
3078
|
+
} from '../icons/arrow-down-a-z';
|
|
3077
3079
|
// ArrowUpAZ aliases
|
|
3078
3080
|
export { default as ArrowUpAZIcon } from '../icons/arrow-up-a-z';
|
|
3079
3081
|
export {
|
|
3080
3082
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. */
|
|
3081
3083
|
default as ArrowUpAzIcon
|
|
3082
3084
|
} from '../icons/arrow-up-a-z';
|
|
3085
|
+
// ArrowUpNarrowWide aliases
|
|
3086
|
+
export { default as ArrowUpNarrowWideIcon } from '../icons/arrow-up-narrow-wide';
|
|
3087
|
+
export {
|
|
3088
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
3089
|
+
default as SortAscIcon
|
|
3090
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
3083
3091
|
// Axis3d aliases
|
|
3084
3092
|
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
3085
3093
|
export {
|
|
@@ -3092,42 +3100,36 @@ export {
|
|
|
3092
3100
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. */
|
|
3093
3101
|
default as ArrowUpZaIcon
|
|
3094
3102
|
} from '../icons/arrow-up-z-a';
|
|
3095
|
-
// BadgeCheck aliases
|
|
3096
|
-
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
3097
|
-
export {
|
|
3098
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
3099
|
-
default as VerifiedIcon
|
|
3100
|
-
} from '../icons/badge-check';
|
|
3101
|
-
// ArrowUpNarrowWide aliases
|
|
3102
|
-
export { default as ArrowUpNarrowWideIcon } from '../icons/arrow-up-narrow-wide';
|
|
3103
|
-
export {
|
|
3104
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
3105
|
-
default as SortAscIcon
|
|
3106
|
-
} from '../icons/arrow-up-narrow-wide';
|
|
3107
3103
|
// BadgeQuestionMark aliases
|
|
3108
3104
|
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
3109
3105
|
export {
|
|
3110
3106
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
3111
3107
|
default as BadgeHelpIcon
|
|
3112
3108
|
} from '../icons/badge-question-mark';
|
|
3113
|
-
//
|
|
3114
|
-
export { default as
|
|
3109
|
+
// BetweenHorizontalEnd aliases
|
|
3110
|
+
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
3115
3111
|
export {
|
|
3116
|
-
/** @deprecated
|
|
3117
|
-
default as
|
|
3118
|
-
} from '../icons/
|
|
3112
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. */
|
|
3113
|
+
default as BetweenHorizonalEndIcon
|
|
3114
|
+
} from '../icons/between-horizontal-end';
|
|
3115
|
+
// BadgeCheck aliases
|
|
3116
|
+
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
3117
|
+
export {
|
|
3118
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
3119
|
+
default as VerifiedIcon
|
|
3120
|
+
} from '../icons/badge-check';
|
|
3119
3121
|
// BetweenHorizontalStart aliases
|
|
3120
3122
|
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
3121
3123
|
export {
|
|
3122
3124
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
3123
3125
|
default as BetweenHorizonalStartIcon
|
|
3124
3126
|
} from '../icons/between-horizontal-start';
|
|
3125
|
-
//
|
|
3126
|
-
export { default as
|
|
3127
|
+
// BookDashed aliases
|
|
3128
|
+
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
3127
3129
|
export {
|
|
3128
|
-
/** @deprecated
|
|
3129
|
-
default as
|
|
3130
|
-
} from '../icons/
|
|
3130
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
3131
|
+
default as BookTemplateIcon
|
|
3132
|
+
} from '../icons/book-dashed';
|
|
3131
3133
|
// Braces aliases
|
|
3132
3134
|
export { default as BracesIcon } from '../icons/braces';
|
|
3133
3135
|
export {
|
|
@@ -3146,18 +3148,24 @@ export {
|
|
|
3146
3148
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. */
|
|
3147
3149
|
default as AreaChartIcon
|
|
3148
3150
|
} from '../icons/chart-area';
|
|
3151
|
+
// ChartBarBig aliases
|
|
3152
|
+
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
3153
|
+
export {
|
|
3154
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. */
|
|
3155
|
+
default as BarChartHorizontalBigIcon
|
|
3156
|
+
} from '../icons/chart-bar-big';
|
|
3149
3157
|
// ChartBar aliases
|
|
3150
3158
|
export { default as ChartBarIcon } from '../icons/chart-bar';
|
|
3151
3159
|
export {
|
|
3152
3160
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. */
|
|
3153
3161
|
default as BarChartHorizontalIcon
|
|
3154
3162
|
} from '../icons/chart-bar';
|
|
3155
|
-
//
|
|
3156
|
-
export { default as
|
|
3163
|
+
// ChartCandlestick aliases
|
|
3164
|
+
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
3157
3165
|
export {
|
|
3158
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3159
|
-
default as
|
|
3160
|
-
} from '../icons/chart-
|
|
3166
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. */
|
|
3167
|
+
default as CandlestickChartIcon
|
|
3168
|
+
} from '../icons/chart-candlestick';
|
|
3161
3169
|
// ChartColumnBig aliases
|
|
3162
3170
|
export { default as ChartColumnBigIcon } from '../icons/chart-column-big';
|
|
3163
3171
|
export {
|
|
@@ -3170,24 +3178,18 @@ export {
|
|
|
3170
3178
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. */
|
|
3171
3179
|
default as BarChart4Icon
|
|
3172
3180
|
} from '../icons/chart-column-increasing';
|
|
3173
|
-
//
|
|
3174
|
-
export { default as
|
|
3181
|
+
// ChartColumn aliases
|
|
3182
|
+
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3175
3183
|
export {
|
|
3176
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3177
|
-
default as
|
|
3178
|
-
} from '../icons/chart-
|
|
3184
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. */
|
|
3185
|
+
default as BarChart3Icon
|
|
3186
|
+
} from '../icons/chart-column';
|
|
3179
3187
|
// ChartLine aliases
|
|
3180
3188
|
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3181
3189
|
export {
|
|
3182
3190
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. */
|
|
3183
3191
|
default as LineChartIcon
|
|
3184
3192
|
} from '../icons/chart-line';
|
|
3185
|
-
// ChartColumn aliases
|
|
3186
|
-
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3187
|
-
export {
|
|
3188
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. */
|
|
3189
|
-
default as BarChart3Icon
|
|
3190
|
-
} from '../icons/chart-column';
|
|
3191
3193
|
// ChartNoAxesColumnIncreasing aliases
|
|
3192
3194
|
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
3193
3195
|
export {
|
|
@@ -3200,18 +3202,18 @@ export {
|
|
|
3200
3202
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. */
|
|
3201
3203
|
default as BarChart2Icon
|
|
3202
3204
|
} from '../icons/chart-no-axes-column';
|
|
3203
|
-
// ChartNoAxesGantt aliases
|
|
3204
|
-
export { default as ChartNoAxesGanttIcon } from '../icons/chart-no-axes-gantt';
|
|
3205
|
-
export {
|
|
3206
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. */
|
|
3207
|
-
default as GanttChartIcon
|
|
3208
|
-
} from '../icons/chart-no-axes-gantt';
|
|
3209
3205
|
// ChartPie aliases
|
|
3210
3206
|
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3211
3207
|
export {
|
|
3212
3208
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. */
|
|
3213
3209
|
default as PieChartIcon
|
|
3214
3210
|
} from '../icons/chart-pie';
|
|
3211
|
+
// ChartNoAxesGantt aliases
|
|
3212
|
+
export { default as ChartNoAxesGanttIcon } from '../icons/chart-no-axes-gantt';
|
|
3213
|
+
export {
|
|
3214
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. */
|
|
3215
|
+
default as GanttChartIcon
|
|
3216
|
+
} from '../icons/chart-no-axes-gantt';
|
|
3215
3217
|
// ChartScatter aliases
|
|
3216
3218
|
export { default as ChartScatterIcon } from '../icons/chart-scatter';
|
|
3217
3219
|
export {
|
|
@@ -3260,12 +3262,6 @@ export {
|
|
|
3260
3262
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
3261
3263
|
default as ArrowRightCircleIcon
|
|
3262
3264
|
} from '../icons/circle-arrow-right';
|
|
3263
|
-
// CircleArrowOutUpRight aliases
|
|
3264
|
-
export { default as CircleArrowOutUpRightIcon } from '../icons/circle-arrow-out-up-right';
|
|
3265
|
-
export {
|
|
3266
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. */
|
|
3267
|
-
default as ArrowUpRightFromCircleIcon
|
|
3268
|
-
} from '../icons/circle-arrow-out-up-right';
|
|
3269
3265
|
// CircleArrowUp aliases
|
|
3270
3266
|
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
3271
3267
|
export {
|
|
@@ -3278,6 +3274,12 @@ export {
|
|
|
3278
3274
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. */
|
|
3279
3275
|
default as CheckCircleIcon
|
|
3280
3276
|
} from '../icons/circle-check-big';
|
|
3277
|
+
// CircleArrowOutUpRight aliases
|
|
3278
|
+
export { default as CircleArrowOutUpRightIcon } from '../icons/circle-arrow-out-up-right';
|
|
3279
|
+
export {
|
|
3280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. */
|
|
3281
|
+
default as ArrowUpRightFromCircleIcon
|
|
3282
|
+
} from '../icons/circle-arrow-out-up-right';
|
|
3281
3283
|
// CircleCheck aliases
|
|
3282
3284
|
export { default as CircleCheckIcon } from '../icons/circle-check';
|
|
3283
3285
|
export {
|
|
@@ -3290,6 +3292,12 @@ export {
|
|
|
3290
3292
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
3291
3293
|
default as ChevronDownCircleIcon
|
|
3292
3294
|
} from '../icons/circle-chevron-down';
|
|
3295
|
+
// CircleChevronLeft aliases
|
|
3296
|
+
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3297
|
+
export {
|
|
3298
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
3299
|
+
default as ChevronLeftCircleIcon
|
|
3300
|
+
} from '../icons/circle-chevron-left';
|
|
3293
3301
|
// CircleChevronRight aliases
|
|
3294
3302
|
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3295
3303
|
export {
|
|
@@ -3302,48 +3310,42 @@ export {
|
|
|
3302
3310
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. */
|
|
3303
3311
|
default as ChevronUpCircleIcon
|
|
3304
3312
|
} from '../icons/circle-chevron-up';
|
|
3305
|
-
// CircleChevronLeft aliases
|
|
3306
|
-
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3307
|
-
export {
|
|
3308
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
3309
|
-
default as ChevronLeftCircleIcon
|
|
3310
|
-
} from '../icons/circle-chevron-left';
|
|
3311
3313
|
// CircleDivide aliases
|
|
3312
3314
|
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3313
3315
|
export {
|
|
3314
3316
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. */
|
|
3315
3317
|
default as DivideCircleIcon
|
|
3316
3318
|
} from '../icons/circle-divide';
|
|
3317
|
-
// CircleMinus aliases
|
|
3318
|
-
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3319
|
-
export {
|
|
3320
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. */
|
|
3321
|
-
default as MinusCircleIcon
|
|
3322
|
-
} from '../icons/circle-minus';
|
|
3323
3319
|
// CircleGauge aliases
|
|
3324
3320
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3325
3321
|
export {
|
|
3326
3322
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. */
|
|
3327
3323
|
default as GaugeCircleIcon
|
|
3328
3324
|
} from '../icons/circle-gauge';
|
|
3325
|
+
// CircleMinus aliases
|
|
3326
|
+
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3327
|
+
export {
|
|
3328
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. */
|
|
3329
|
+
default as MinusCircleIcon
|
|
3330
|
+
} from '../icons/circle-minus';
|
|
3329
3331
|
// CircleParkingOff aliases
|
|
3330
3332
|
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3331
3333
|
export {
|
|
3332
3334
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. */
|
|
3333
3335
|
default as ParkingCircleOffIcon
|
|
3334
3336
|
} from '../icons/circle-parking-off';
|
|
3335
|
-
// CirclePause aliases
|
|
3336
|
-
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3337
|
-
export {
|
|
3338
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. */
|
|
3339
|
-
default as PauseCircleIcon
|
|
3340
|
-
} from '../icons/circle-pause';
|
|
3341
3337
|
// CircleParking aliases
|
|
3342
3338
|
export { default as CircleParkingIcon } from '../icons/circle-parking';
|
|
3343
3339
|
export {
|
|
3344
3340
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
3345
3341
|
default as ParkingCircleIcon
|
|
3346
3342
|
} from '../icons/circle-parking';
|
|
3343
|
+
// CirclePause aliases
|
|
3344
|
+
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3345
|
+
export {
|
|
3346
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. */
|
|
3347
|
+
default as PauseCircleIcon
|
|
3348
|
+
} from '../icons/circle-pause';
|
|
3347
3349
|
// CirclePercent aliases
|
|
3348
3350
|
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3349
3351
|
export {
|
|
@@ -3438,6 +3440,12 @@ export {
|
|
|
3438
3440
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. */
|
|
3439
3441
|
default as Code2Icon
|
|
3440
3442
|
} from '../icons/code-xml';
|
|
3443
|
+
// Columns2 aliases
|
|
3444
|
+
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3445
|
+
export {
|
|
3446
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
3447
|
+
default as ColumnsIcon
|
|
3448
|
+
} from '../icons/columns-2';
|
|
3441
3449
|
// Columns3Cog aliases
|
|
3442
3450
|
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3443
3451
|
export {
|
|
@@ -3448,12 +3456,6 @@ export {
|
|
|
3448
3456
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. */
|
|
3449
3457
|
default as TableConfigIcon
|
|
3450
3458
|
} from '../icons/columns-3-cog';
|
|
3451
|
-
// Columns2 aliases
|
|
3452
|
-
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3453
|
-
export {
|
|
3454
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
3455
|
-
default as ColumnsIcon
|
|
3456
|
-
} from '../icons/columns-2';
|
|
3457
3459
|
// Columns3 aliases
|
|
3458
3460
|
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3459
3461
|
export {
|
|
@@ -3484,12 +3486,60 @@ export {
|
|
|
3484
3486
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
3485
3487
|
default as MoreVerticalIcon
|
|
3486
3488
|
} from '../icons/ellipsis-vertical';
|
|
3489
|
+
// Ellipsis aliases
|
|
3490
|
+
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3491
|
+
export {
|
|
3492
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
3493
|
+
default as MoreHorizontalIcon
|
|
3494
|
+
} from '../icons/ellipsis';
|
|
3495
|
+
// FaceAngry aliases
|
|
3496
|
+
export { default as FaceAngryIcon } from '../icons/face-angry';
|
|
3497
|
+
export {
|
|
3498
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceAngry} instead. */
|
|
3499
|
+
default as AngryIcon
|
|
3500
|
+
} from '../icons/face-angry';
|
|
3501
|
+
// FaceExpressionless aliases
|
|
3502
|
+
export { default as FaceExpressionlessIcon } from '../icons/face-expressionless';
|
|
3503
|
+
export {
|
|
3504
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceExpressionless} instead. */
|
|
3505
|
+
default as AnnoyedIcon
|
|
3506
|
+
} from '../icons/face-expressionless';
|
|
3507
|
+
// FaceGrinning aliases
|
|
3508
|
+
export { default as FaceGrinningIcon } from '../icons/face-grinning';
|
|
3509
|
+
export {
|
|
3510
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceGrinning} instead. */
|
|
3511
|
+
default as LaughIcon
|
|
3512
|
+
} from '../icons/face-grinning';
|
|
3513
|
+
// FaceNeutral aliases
|
|
3514
|
+
export { default as FaceNeutralIcon } from '../icons/face-neutral';
|
|
3515
|
+
export {
|
|
3516
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceNeutral} instead. */
|
|
3517
|
+
default as MehIcon
|
|
3518
|
+
} from '../icons/face-neutral';
|
|
3519
|
+
// FaceSlightlyFrowning aliases
|
|
3520
|
+
export { default as FaceSlightlyFrowningIcon } from '../icons/face-slightly-frowning';
|
|
3521
|
+
export {
|
|
3522
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlyFrowning} instead. */
|
|
3523
|
+
default as FrownIcon
|
|
3524
|
+
} from '../icons/face-slightly-frowning';
|
|
3525
|
+
// FaceSlightlySmilingPlus aliases
|
|
3526
|
+
export { default as FaceSlightlySmilingPlusIcon } from '../icons/face-slightly-smiling-plus';
|
|
3527
|
+
export {
|
|
3528
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlySmilingPlus} instead. */
|
|
3529
|
+
default as SmilePlusIcon
|
|
3530
|
+
} from '../icons/face-slightly-smiling-plus';
|
|
3487
3531
|
// FileAxis3d aliases
|
|
3488
3532
|
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3489
3533
|
export {
|
|
3490
3534
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. */
|
|
3491
3535
|
default as FileAxis3DIcon
|
|
3492
3536
|
} from '../icons/file-axis-3d';
|
|
3537
|
+
// FaceSlightlySmiling aliases
|
|
3538
|
+
export { default as FaceSlightlySmilingIcon } from '../icons/face-slightly-smiling';
|
|
3539
|
+
export {
|
|
3540
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlySmiling} instead. */
|
|
3541
|
+
default as SmileIcon
|
|
3542
|
+
} from '../icons/face-slightly-smiling';
|
|
3493
3543
|
// FileBadge aliases
|
|
3494
3544
|
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
3495
3545
|
export {
|
|
@@ -3502,24 +3552,30 @@ export {
|
|
|
3502
3552
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. */
|
|
3503
3553
|
default as FileJson2Icon
|
|
3504
3554
|
} from '../icons/file-braces-corner';
|
|
3505
|
-
// Ellipsis aliases
|
|
3506
|
-
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3507
|
-
export {
|
|
3508
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
3509
|
-
default as MoreHorizontalIcon
|
|
3510
|
-
} from '../icons/ellipsis';
|
|
3511
3555
|
// FileBraces aliases
|
|
3512
3556
|
export { default as FileBracesIcon } from '../icons/file-braces';
|
|
3513
3557
|
export {
|
|
3514
3558
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. */
|
|
3515
3559
|
default as FileJsonIcon
|
|
3516
3560
|
} from '../icons/file-braces';
|
|
3561
|
+
// FileChartColumnIncreasing aliases
|
|
3562
|
+
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3563
|
+
export {
|
|
3564
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. */
|
|
3565
|
+
default as FileBarChartIcon
|
|
3566
|
+
} from '../icons/file-chart-column-increasing';
|
|
3517
3567
|
// FileChartColumn aliases
|
|
3518
3568
|
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3519
3569
|
export {
|
|
3520
3570
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. */
|
|
3521
3571
|
default as FileBarChart2Icon
|
|
3522
3572
|
} from '../icons/file-chart-column';
|
|
3573
|
+
// FileChartPie aliases
|
|
3574
|
+
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3575
|
+
export {
|
|
3576
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. */
|
|
3577
|
+
default as FilePieChartIcon
|
|
3578
|
+
} from '../icons/file-chart-pie';
|
|
3523
3579
|
// FileChartLine aliases
|
|
3524
3580
|
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3525
3581
|
export {
|
|
@@ -3532,18 +3588,6 @@ export {
|
|
|
3532
3588
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. */
|
|
3533
3589
|
default as FileCheck2Icon
|
|
3534
3590
|
} from '../icons/file-check-corner';
|
|
3535
|
-
// FileChartColumnIncreasing aliases
|
|
3536
|
-
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3537
|
-
export {
|
|
3538
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. */
|
|
3539
|
-
default as FileBarChartIcon
|
|
3540
|
-
} from '../icons/file-chart-column-increasing';
|
|
3541
|
-
// FileChartPie aliases
|
|
3542
|
-
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3543
|
-
export {
|
|
3544
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. */
|
|
3545
|
-
default as FilePieChartIcon
|
|
3546
|
-
} from '../icons/file-chart-pie';
|
|
3547
3591
|
// FileCog aliases
|
|
3548
3592
|
export { default as FileCogIcon } from '../icons/file-cog';
|
|
3549
3593
|
export {
|
|
@@ -3556,6 +3600,12 @@ export {
|
|
|
3556
3600
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. */
|
|
3557
3601
|
default as FileCode2Icon
|
|
3558
3602
|
} from '../icons/file-code-corner';
|
|
3603
|
+
// FileExclamationPoint aliases
|
|
3604
|
+
export { default as FileExclamationPointIcon } from '../icons/file-exclamation-point';
|
|
3605
|
+
export {
|
|
3606
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. */
|
|
3607
|
+
default as FileWarningIcon
|
|
3608
|
+
} from '../icons/file-exclamation-point';
|
|
3559
3609
|
// FileHeadphone aliases
|
|
3560
3610
|
export { default as FileHeadphoneIcon } from '../icons/file-headphone';
|
|
3561
3611
|
export {
|
|
@@ -3566,30 +3616,24 @@ export {
|
|
|
3566
3616
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileHeadphone} instead. */
|
|
3567
3617
|
default as FileAudio2Icon
|
|
3568
3618
|
} from '../icons/file-headphone';
|
|
3569
|
-
// FileExclamationPoint aliases
|
|
3570
|
-
export { default as FileExclamationPointIcon } from '../icons/file-exclamation-point';
|
|
3571
|
-
export {
|
|
3572
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. */
|
|
3573
|
-
default as FileWarningIcon
|
|
3574
|
-
} from '../icons/file-exclamation-point';
|
|
3575
3619
|
// FileKey aliases
|
|
3576
3620
|
export { default as FileKeyIcon } from '../icons/file-key';
|
|
3577
3621
|
export {
|
|
3578
3622
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. */
|
|
3579
3623
|
default as FileKey2Icon
|
|
3580
3624
|
} from '../icons/file-key';
|
|
3581
|
-
// FileMinusCorner aliases
|
|
3582
|
-
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3583
|
-
export {
|
|
3584
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. */
|
|
3585
|
-
default as FileMinus2Icon
|
|
3586
|
-
} from '../icons/file-minus-corner';
|
|
3587
3625
|
// FileLock aliases
|
|
3588
3626
|
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3589
3627
|
export {
|
|
3590
3628
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
3591
3629
|
default as FileLock2Icon
|
|
3592
3630
|
} from '../icons/file-lock';
|
|
3631
|
+
// FileMinusCorner aliases
|
|
3632
|
+
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3633
|
+
export {
|
|
3634
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. */
|
|
3635
|
+
default as FileMinus2Icon
|
|
3636
|
+
} from '../icons/file-minus-corner';
|
|
3593
3637
|
// FilePenLine aliases
|
|
3594
3638
|
export { default as FilePenLineIcon } from '../icons/file-pen-line';
|
|
3595
3639
|
export {
|
|
@@ -3614,54 +3658,54 @@ export {
|
|
|
3614
3658
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. */
|
|
3615
3659
|
default as FilePlus2Icon
|
|
3616
3660
|
} from '../icons/file-plus-corner';
|
|
3617
|
-
// FileQuestionMark aliases
|
|
3618
|
-
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3619
|
-
export {
|
|
3620
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. */
|
|
3621
|
-
default as FileQuestionIcon
|
|
3622
|
-
} from '../icons/file-question-mark';
|
|
3623
|
-
// FileSignal aliases
|
|
3624
|
-
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3625
|
-
export {
|
|
3626
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. */
|
|
3627
|
-
default as FileVolume2Icon
|
|
3628
|
-
} from '../icons/file-signal';
|
|
3629
3661
|
// FileSearchCorner aliases
|
|
3630
3662
|
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3631
3663
|
export {
|
|
3632
3664
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. */
|
|
3633
3665
|
default as FileSearch2Icon
|
|
3634
3666
|
} from '../icons/file-search-corner';
|
|
3667
|
+
// FileVideoCamera aliases
|
|
3668
|
+
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3669
|
+
export {
|
|
3670
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
3671
|
+
default as FileVideo2Icon
|
|
3672
|
+
} from '../icons/file-video-camera';
|
|
3673
|
+
// FileQuestionMark aliases
|
|
3674
|
+
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3675
|
+
export {
|
|
3676
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. */
|
|
3677
|
+
default as FileQuestionIcon
|
|
3678
|
+
} from '../icons/file-question-mark';
|
|
3635
3679
|
// FileTypeCorner aliases
|
|
3636
3680
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3637
3681
|
export {
|
|
3638
3682
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
3639
3683
|
default as FileType2Icon
|
|
3640
3684
|
} from '../icons/file-type-corner';
|
|
3641
|
-
//
|
|
3642
|
-
export { default as
|
|
3685
|
+
// FileSignal aliases
|
|
3686
|
+
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3643
3687
|
export {
|
|
3644
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3645
|
-
default as
|
|
3646
|
-
} from '../icons/file-
|
|
3688
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. */
|
|
3689
|
+
default as FileVolume2Icon
|
|
3690
|
+
} from '../icons/file-signal';
|
|
3647
3691
|
// FileXCorner aliases
|
|
3648
3692
|
export { default as FileXCornerIcon } from '../icons/file-x-corner';
|
|
3649
3693
|
export {
|
|
3650
3694
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. */
|
|
3651
3695
|
default as FileX2Icon
|
|
3652
3696
|
} from '../icons/file-x-corner';
|
|
3653
|
-
// FingerprintPattern aliases
|
|
3654
|
-
export { default as FingerprintPatternIcon } from '../icons/fingerprint-pattern';
|
|
3655
|
-
export {
|
|
3656
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. */
|
|
3657
|
-
default as FingerprintIcon
|
|
3658
|
-
} from '../icons/fingerprint-pattern';
|
|
3659
3697
|
// FolderCog aliases
|
|
3660
3698
|
export { default as FolderCogIcon } from '../icons/folder-cog';
|
|
3661
3699
|
export {
|
|
3662
3700
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. */
|
|
3663
3701
|
default as FolderCog2Icon
|
|
3664
3702
|
} from '../icons/folder-cog';
|
|
3703
|
+
// FingerprintPattern aliases
|
|
3704
|
+
export { default as FingerprintPatternIcon } from '../icons/fingerprint-pattern';
|
|
3705
|
+
export {
|
|
3706
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. */
|
|
3707
|
+
default as FingerprintIcon
|
|
3708
|
+
} from '../icons/fingerprint-pattern';
|
|
3665
3709
|
// FolderPen aliases
|
|
3666
3710
|
export { default as FolderPenIcon } from '../icons/folder-pen';
|
|
3667
3711
|
export {
|
|
@@ -3674,18 +3718,18 @@ export {
|
|
|
3674
3718
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. */
|
|
3675
3719
|
default as FilterXIcon
|
|
3676
3720
|
} from '../icons/funnel-x';
|
|
3677
|
-
// GitCommitHorizontal aliases
|
|
3678
|
-
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3679
|
-
export {
|
|
3680
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. */
|
|
3681
|
-
default as GitCommitIcon
|
|
3682
|
-
} from '../icons/git-commit-horizontal';
|
|
3683
3721
|
// Funnel aliases
|
|
3684
3722
|
export { default as FunnelIcon } from '../icons/funnel';
|
|
3685
3723
|
export {
|
|
3686
3724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. */
|
|
3687
3725
|
default as FilterIcon
|
|
3688
3726
|
} from '../icons/funnel';
|
|
3727
|
+
// GitCommitHorizontal aliases
|
|
3728
|
+
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3729
|
+
export {
|
|
3730
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. */
|
|
3731
|
+
default as GitCommitIcon
|
|
3732
|
+
} from '../icons/git-commit-horizontal';
|
|
3689
3733
|
// Grid2x2Check aliases
|
|
3690
3734
|
export { default as Grid2x2CheckIcon } from '../icons/grid-2x2-check';
|
|
3691
3735
|
export {
|
|
@@ -3698,18 +3742,18 @@ export {
|
|
|
3698
3742
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. */
|
|
3699
3743
|
default as Grid2X2PlusIcon
|
|
3700
3744
|
} from '../icons/grid-2x2-plus';
|
|
3745
|
+
// Grid2x2X aliases
|
|
3746
|
+
export { default as Grid2x2XIcon } from '../icons/grid-2x2-x';
|
|
3747
|
+
export {
|
|
3748
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. */
|
|
3749
|
+
default as Grid2X2XIcon
|
|
3750
|
+
} from '../icons/grid-2x2-x';
|
|
3701
3751
|
// Grid2x2 aliases
|
|
3702
3752
|
export { default as Grid2x2Icon } from '../icons/grid-2x2';
|
|
3703
3753
|
export {
|
|
3704
3754
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
3705
3755
|
default as Grid2X2Icon
|
|
3706
3756
|
} from '../icons/grid-2x2';
|
|
3707
|
-
// HandGrab aliases
|
|
3708
|
-
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3709
|
-
export {
|
|
3710
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. */
|
|
3711
|
-
default as GrabIcon
|
|
3712
|
-
} from '../icons/hand-grab';
|
|
3713
3757
|
// Grid3x3 aliases
|
|
3714
3758
|
export { default as Grid3x3Icon } from '../icons/grid-3x3';
|
|
3715
3759
|
export {
|
|
@@ -3720,58 +3764,48 @@ export {
|
|
|
3720
3764
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. */
|
|
3721
3765
|
default as Grid3X3Icon
|
|
3722
3766
|
} from '../icons/grid-3x3';
|
|
3723
|
-
//
|
|
3724
|
-
export { default as
|
|
3767
|
+
// HandGrab aliases
|
|
3768
|
+
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3725
3769
|
export {
|
|
3726
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3727
|
-
default as
|
|
3728
|
-
} from '../icons/
|
|
3770
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. */
|
|
3771
|
+
default as GrabIcon
|
|
3772
|
+
} from '../icons/hand-grab';
|
|
3729
3773
|
// HandHelping aliases
|
|
3730
3774
|
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3731
3775
|
export {
|
|
3732
3776
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. */
|
|
3733
3777
|
default as HelpingHandIcon
|
|
3734
3778
|
} from '../icons/hand-helping';
|
|
3779
|
+
// House aliases
|
|
3780
|
+
export { default as HouseIcon } from '../icons/house';
|
|
3781
|
+
export {
|
|
3782
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. */
|
|
3783
|
+
default as HomeIcon
|
|
3784
|
+
} from '../icons/house';
|
|
3735
3785
|
// IceCreamBowl aliases
|
|
3736
3786
|
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3737
3787
|
export {
|
|
3738
3788
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. */
|
|
3739
3789
|
default as IceCream2Icon
|
|
3740
3790
|
} from '../icons/ice-cream-bowl';
|
|
3791
|
+
// LaptopMinimal aliases
|
|
3792
|
+
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3793
|
+
export {
|
|
3794
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. */
|
|
3795
|
+
default as Laptop2Icon
|
|
3796
|
+
} from '../icons/laptop-minimal';
|
|
3741
3797
|
// IceCreamCone aliases
|
|
3742
3798
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3743
3799
|
export {
|
|
3744
3800
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. */
|
|
3745
3801
|
default as IceCreamIcon
|
|
3746
3802
|
} from '../icons/ice-cream-cone';
|
|
3747
|
-
// House aliases
|
|
3748
|
-
export { default as HouseIcon } from '../icons/house';
|
|
3749
|
-
export {
|
|
3750
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. */
|
|
3751
|
-
default as HomeIcon
|
|
3752
|
-
} from '../icons/house';
|
|
3753
3803
|
// Layers aliases
|
|
3754
3804
|
export { default as LayersIcon } from '../icons/layers';
|
|
3755
3805
|
export {
|
|
3756
3806
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
3757
3807
|
default as Layers3Icon
|
|
3758
3808
|
} from '../icons/layers';
|
|
3759
|
-
// ListIndentIncrease aliases
|
|
3760
|
-
export { default as ListIndentIncreaseIcon } from '../icons/list-indent-increase';
|
|
3761
|
-
export {
|
|
3762
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
3763
|
-
default as IndentIcon
|
|
3764
|
-
} from '../icons/list-indent-increase';
|
|
3765
|
-
export {
|
|
3766
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
3767
|
-
default as IndentIncreaseIcon
|
|
3768
|
-
} from '../icons/list-indent-increase';
|
|
3769
|
-
// LaptopMinimal aliases
|
|
3770
|
-
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3771
|
-
export {
|
|
3772
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. */
|
|
3773
|
-
default as Laptop2Icon
|
|
3774
|
-
} from '../icons/laptop-minimal';
|
|
3775
3809
|
// ListIndentDecrease aliases
|
|
3776
3810
|
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3777
3811
|
export {
|
|
@@ -3782,6 +3816,16 @@ export {
|
|
|
3782
3816
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. */
|
|
3783
3817
|
default as IndentDecreaseIcon
|
|
3784
3818
|
} from '../icons/list-indent-decrease';
|
|
3819
|
+
// ListIndentIncrease aliases
|
|
3820
|
+
export { default as ListIndentIncreaseIcon } from '../icons/list-indent-increase';
|
|
3821
|
+
export {
|
|
3822
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
3823
|
+
default as IndentIcon
|
|
3824
|
+
} from '../icons/list-indent-increase';
|
|
3825
|
+
export {
|
|
3826
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
3827
|
+
default as IndentIncreaseIcon
|
|
3828
|
+
} from '../icons/list-indent-increase';
|
|
3785
3829
|
// LoaderCircle aliases
|
|
3786
3830
|
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3787
3831
|
export {
|
|
@@ -3806,54 +3850,54 @@ export {
|
|
|
3806
3850
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. */
|
|
3807
3851
|
default as MailQuestionIcon
|
|
3808
3852
|
} from '../icons/mail-question-mark';
|
|
3809
|
-
// MapPinPen aliases
|
|
3810
|
-
export { default as MapPinPenIcon } from '../icons/map-pin-pen';
|
|
3811
|
-
export {
|
|
3812
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. */
|
|
3813
|
-
default as LocationEditIcon
|
|
3814
|
-
} from '../icons/map-pin-pen';
|
|
3815
3853
|
// MessageCircleQuestionMark aliases
|
|
3816
3854
|
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3817
3855
|
export {
|
|
3818
3856
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. */
|
|
3819
3857
|
default as MessageCircleQuestionIcon
|
|
3820
3858
|
} from '../icons/message-circle-question-mark';
|
|
3821
|
-
//
|
|
3822
|
-
export { default as
|
|
3859
|
+
// MapPinPen aliases
|
|
3860
|
+
export { default as MapPinPenIcon } from '../icons/map-pin-pen';
|
|
3823
3861
|
export {
|
|
3824
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3825
|
-
default as
|
|
3826
|
-
} from '../icons/
|
|
3862
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. */
|
|
3863
|
+
default as LocationEditIcon
|
|
3864
|
+
} from '../icons/map-pin-pen';
|
|
3827
3865
|
// MicVocal aliases
|
|
3828
3866
|
export { default as MicVocalIcon } from '../icons/mic-vocal';
|
|
3829
3867
|
export {
|
|
3830
3868
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. */
|
|
3831
3869
|
default as Mic2Icon
|
|
3832
3870
|
} from '../icons/mic-vocal';
|
|
3833
|
-
//
|
|
3834
|
-
export { default as
|
|
3871
|
+
// MicSignal aliases
|
|
3872
|
+
export { default as MicSignalIcon } from '../icons/mic-signal';
|
|
3835
3873
|
export {
|
|
3836
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3837
|
-
default as
|
|
3838
|
-
} from '../icons/
|
|
3874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. */
|
|
3875
|
+
default as PodcastIcon
|
|
3876
|
+
} from '../icons/mic-signal';
|
|
3839
3877
|
// Move3d aliases
|
|
3840
3878
|
export { default as Move3dIcon } from '../icons/move-3d';
|
|
3841
3879
|
export {
|
|
3842
3880
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. */
|
|
3843
3881
|
default as Move3DIcon
|
|
3844
3882
|
} from '../icons/move-3d';
|
|
3845
|
-
// OctagonX aliases
|
|
3846
|
-
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3847
|
-
export {
|
|
3848
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
3849
|
-
default as XOctagonIcon
|
|
3850
|
-
} from '../icons/octagon-x';
|
|
3851
3883
|
// OctagonPause aliases
|
|
3852
3884
|
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3853
3885
|
export {
|
|
3854
3886
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. */
|
|
3855
3887
|
default as PauseOctagonIcon
|
|
3856
3888
|
} from '../icons/octagon-pause';
|
|
3889
|
+
// OctagonAlert aliases
|
|
3890
|
+
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3891
|
+
export {
|
|
3892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. */
|
|
3893
|
+
default as AlertOctagonIcon
|
|
3894
|
+
} from '../icons/octagon-alert';
|
|
3895
|
+
// OctagonX aliases
|
|
3896
|
+
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3897
|
+
export {
|
|
3898
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
3899
|
+
default as XOctagonIcon
|
|
3900
|
+
} from '../icons/octagon-x';
|
|
3857
3901
|
// PaintbrushVertical aliases
|
|
3858
3902
|
export { default as PaintbrushVerticalIcon } from '../icons/paintbrush-vertical';
|
|
3859
3903
|
export {
|
|
@@ -3878,12 +3922,6 @@ export {
|
|
|
3878
3922
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. */
|
|
3879
3923
|
default as PanelLeftInactiveIcon
|
|
3880
3924
|
} from '../icons/panel-left-dashed';
|
|
3881
|
-
// PanelRightDashed aliases
|
|
3882
|
-
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3883
|
-
export {
|
|
3884
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. */
|
|
3885
|
-
default as PanelRightInactiveIcon
|
|
3886
|
-
} from '../icons/panel-right-dashed';
|
|
3887
3925
|
// PanelLeftOpen aliases
|
|
3888
3926
|
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3889
3927
|
export {
|
|
@@ -3896,6 +3934,12 @@ export {
|
|
|
3896
3934
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. */
|
|
3897
3935
|
default as SidebarIcon
|
|
3898
3936
|
} from '../icons/panel-left';
|
|
3937
|
+
// PanelRightDashed aliases
|
|
3938
|
+
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3939
|
+
export {
|
|
3940
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. */
|
|
3941
|
+
default as PanelRightInactiveIcon
|
|
3942
|
+
} from '../icons/panel-right-dashed';
|
|
3899
3943
|
// PanelTopDashed aliases
|
|
3900
3944
|
export { default as PanelTopDashedIcon } from '../icons/panel-top-dashed';
|
|
3901
3945
|
export {
|
|
@@ -3914,6 +3958,12 @@ export {
|
|
|
3914
3958
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. */
|
|
3915
3959
|
default as Edit3Icon
|
|
3916
3960
|
} from '../icons/pen-line';
|
|
3961
|
+
// RectangleEllipsis aliases
|
|
3962
|
+
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3963
|
+
export {
|
|
3964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. */
|
|
3965
|
+
default as FormInputIcon
|
|
3966
|
+
} from '../icons/rectangle-ellipsis';
|
|
3917
3967
|
// Pen aliases
|
|
3918
3968
|
export { default as PenIcon } from '../icons/pen';
|
|
3919
3969
|
export {
|
|
@@ -3926,36 +3976,30 @@ export {
|
|
|
3926
3976
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. */
|
|
3927
3977
|
default as PlugZap2Icon
|
|
3928
3978
|
} from '../icons/plug-zap';
|
|
3929
|
-
//
|
|
3930
|
-
export { default as
|
|
3979
|
+
// RotateCcwClock aliases
|
|
3980
|
+
export { default as RotateCcwClockIcon } from '../icons/rotate-ccw-clock';
|
|
3931
3981
|
export {
|
|
3932
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3933
|
-
default as
|
|
3934
|
-
} from '../icons/
|
|
3982
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RotateCcwClock} instead. */
|
|
3983
|
+
default as HistoryIcon
|
|
3984
|
+
} from '../icons/rotate-ccw-clock';
|
|
3935
3985
|
// Rotate3d aliases
|
|
3936
3986
|
export { default as Rotate3dIcon } from '../icons/rotate-3d';
|
|
3937
3987
|
export {
|
|
3938
3988
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. */
|
|
3939
3989
|
default as Rotate3DIcon
|
|
3940
3990
|
} from '../icons/rotate-3d';
|
|
3941
|
-
//
|
|
3942
|
-
export { default as
|
|
3991
|
+
// Rows2 aliases
|
|
3992
|
+
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3943
3993
|
export {
|
|
3944
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3945
|
-
default as
|
|
3946
|
-
} from '../icons/
|
|
3994
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
3995
|
+
default as RowsIcon
|
|
3996
|
+
} from '../icons/rows-2';
|
|
3947
3997
|
// Rows3 aliases
|
|
3948
3998
|
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3949
3999
|
export {
|
|
3950
4000
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. */
|
|
3951
4001
|
default as PanelsTopBottomIcon
|
|
3952
4002
|
} from '../icons/rows-3';
|
|
3953
|
-
// Rows2 aliases
|
|
3954
|
-
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3955
|
-
export {
|
|
3956
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
3957
|
-
default as RowsIcon
|
|
3958
|
-
} from '../icons/rows-2';
|
|
3959
4003
|
// Scale3d aliases
|
|
3960
4004
|
export { default as Scale3dIcon } from '../icons/scale-3d';
|
|
3961
4005
|
export {
|
|
@@ -3980,18 +4024,18 @@ export {
|
|
|
3980
4024
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. */
|
|
3981
4025
|
default as ShieldCloseIcon
|
|
3982
4026
|
} from '../icons/shield-x';
|
|
3983
|
-
// Sparkles aliases
|
|
3984
|
-
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3985
|
-
export {
|
|
3986
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. */
|
|
3987
|
-
default as StarsIcon
|
|
3988
|
-
} from '../icons/sparkles';
|
|
3989
4027
|
// SlidersVertical aliases
|
|
3990
4028
|
export { default as SlidersVerticalIcon } from '../icons/sliders-vertical';
|
|
3991
4029
|
export {
|
|
3992
4030
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. */
|
|
3993
4031
|
default as SlidersIcon
|
|
3994
4032
|
} from '../icons/sliders-vertical';
|
|
4033
|
+
// Sparkles aliases
|
|
4034
|
+
export { default as SparklesIcon } from '../icons/sparkles';
|
|
4035
|
+
export {
|
|
4036
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. */
|
|
4037
|
+
default as StarsIcon
|
|
4038
|
+
} from '../icons/sparkles';
|
|
3995
4039
|
// SquareActivity aliases
|
|
3996
4040
|
export { default as SquareActivityIcon } from '../icons/square-activity';
|
|
3997
4041
|
export {
|
|
@@ -4016,12 +4060,6 @@ export {
|
|
|
4016
4060
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. */
|
|
4017
4061
|
default as ArrowDownSquareIcon
|
|
4018
4062
|
} from '../icons/square-arrow-down';
|
|
4019
|
-
// SquareArrowLeft aliases
|
|
4020
|
-
export { default as SquareArrowLeftIcon } from '../icons/square-arrow-left';
|
|
4021
|
-
export {
|
|
4022
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. */
|
|
4023
|
-
default as ArrowLeftSquareIcon
|
|
4024
|
-
} from '../icons/square-arrow-left';
|
|
4025
4063
|
// SquareArrowOutDownLeft aliases
|
|
4026
4064
|
export { default as SquareArrowOutDownLeftIcon } from '../icons/square-arrow-out-down-left';
|
|
4027
4065
|
export {
|
|
@@ -4034,6 +4072,12 @@ export {
|
|
|
4034
4072
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. */
|
|
4035
4073
|
default as ArrowDownRightFromSquareIcon
|
|
4036
4074
|
} from '../icons/square-arrow-out-down-right';
|
|
4075
|
+
// SquareArrowLeft aliases
|
|
4076
|
+
export { default as SquareArrowLeftIcon } from '../icons/square-arrow-left';
|
|
4077
|
+
export {
|
|
4078
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. */
|
|
4079
|
+
default as ArrowLeftSquareIcon
|
|
4080
|
+
} from '../icons/square-arrow-left';
|
|
4037
4081
|
// SquareArrowOutUpLeft aliases
|
|
4038
4082
|
export { default as SquareArrowOutUpLeftIcon } from '../icons/square-arrow-out-up-left';
|
|
4039
4083
|
export {
|
|
@@ -4076,24 +4120,30 @@ export {
|
|
|
4076
4120
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. */
|
|
4077
4121
|
default as AsteriskSquareIcon
|
|
4078
4122
|
} from '../icons/square-asterisk';
|
|
4079
|
-
// SquareBottomDashedScissors aliases
|
|
4080
|
-
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
4081
|
-
export {
|
|
4082
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. */
|
|
4083
|
-
default as ScissorsSquareDashedBottomIcon
|
|
4084
|
-
} from '../icons/square-bottom-dashed-scissors';
|
|
4085
4123
|
// SquareCenterlineDashedHorizontal aliases
|
|
4086
4124
|
export { default as SquareCenterlineDashedHorizontalIcon } from '../icons/square-centerline-dashed-horizontal';
|
|
4087
4125
|
export {
|
|
4088
4126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. */
|
|
4089
4127
|
default as FlipHorizontalIcon
|
|
4090
4128
|
} from '../icons/square-centerline-dashed-horizontal';
|
|
4129
|
+
// SquareBottomDashedScissors aliases
|
|
4130
|
+
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
4131
|
+
export {
|
|
4132
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. */
|
|
4133
|
+
default as ScissorsSquareDashedBottomIcon
|
|
4134
|
+
} from '../icons/square-bottom-dashed-scissors';
|
|
4091
4135
|
// SquareCenterlineDashedVertical aliases
|
|
4092
4136
|
export { default as SquareCenterlineDashedVerticalIcon } from '../icons/square-centerline-dashed-vertical';
|
|
4093
4137
|
export {
|
|
4094
4138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
4095
4139
|
default as FlipVerticalIcon
|
|
4096
4140
|
} from '../icons/square-centerline-dashed-vertical';
|
|
4141
|
+
// SquareCheck aliases
|
|
4142
|
+
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
4143
|
+
export {
|
|
4144
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
4145
|
+
default as CheckSquare2Icon
|
|
4146
|
+
} from '../icons/square-check';
|
|
4097
4147
|
// SquareChartGantt aliases
|
|
4098
4148
|
export { default as SquareChartGanttIcon } from '../icons/square-chart-gantt';
|
|
4099
4149
|
export {
|
|
@@ -4104,24 +4154,18 @@ export {
|
|
|
4104
4154
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. */
|
|
4105
4155
|
default as SquareGanttChartIcon
|
|
4106
4156
|
} from '../icons/square-chart-gantt';
|
|
4107
|
-
// SquareCheckBig aliases
|
|
4108
|
-
export { default as SquareCheckBigIcon } from '../icons/square-check-big';
|
|
4109
|
-
export {
|
|
4110
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
4111
|
-
default as CheckSquareIcon
|
|
4112
|
-
} from '../icons/square-check-big';
|
|
4113
|
-
// SquareCheck aliases
|
|
4114
|
-
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
4115
|
-
export {
|
|
4116
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
4117
|
-
default as CheckSquare2Icon
|
|
4118
|
-
} from '../icons/square-check';
|
|
4119
4157
|
// SquareChevronDown aliases
|
|
4120
4158
|
export { default as SquareChevronDownIcon } from '../icons/square-chevron-down';
|
|
4121
4159
|
export {
|
|
4122
4160
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. */
|
|
4123
4161
|
default as ChevronDownSquareIcon
|
|
4124
4162
|
} from '../icons/square-chevron-down';
|
|
4163
|
+
// SquareCheckBig aliases
|
|
4164
|
+
export { default as SquareCheckBigIcon } from '../icons/square-check-big';
|
|
4165
|
+
export {
|
|
4166
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
4167
|
+
default as CheckSquareIcon
|
|
4168
|
+
} from '../icons/square-check-big';
|
|
4125
4169
|
// SquareChevronLeft aliases
|
|
4126
4170
|
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
4127
4171
|
export {
|
|
@@ -4134,12 +4178,6 @@ export {
|
|
|
4134
4178
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
4135
4179
|
default as ChevronRightSquareIcon
|
|
4136
4180
|
} from '../icons/square-chevron-right';
|
|
4137
|
-
// SquareChevronUp aliases
|
|
4138
|
-
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
4139
|
-
export {
|
|
4140
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
4141
|
-
default as ChevronUpSquareIcon
|
|
4142
|
-
} from '../icons/square-chevron-up';
|
|
4143
4181
|
// SquareCode aliases
|
|
4144
4182
|
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
4145
4183
|
export {
|
|
@@ -4152,6 +4190,12 @@ export {
|
|
|
4152
4190
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. */
|
|
4153
4191
|
default as KanbanSquareDashedIcon
|
|
4154
4192
|
} from '../icons/square-dashed-kanban';
|
|
4193
|
+
// SquareChevronUp aliases
|
|
4194
|
+
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
4195
|
+
export {
|
|
4196
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
4197
|
+
default as ChevronUpSquareIcon
|
|
4198
|
+
} from '../icons/square-chevron-up';
|
|
4155
4199
|
// SquareDashedMousePointer aliases
|
|
4156
4200
|
export { default as SquareDashedMousePointerIcon } from '../icons/square-dashed-mouse-pointer';
|
|
4157
4201
|
export {
|
|
@@ -4168,24 +4212,24 @@ export {
|
|
|
4168
4212
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. */
|
|
4169
4213
|
default as TextSelectIcon
|
|
4170
4214
|
} from '../icons/square-dashed-text';
|
|
4171
|
-
//
|
|
4172
|
-
export { default as
|
|
4215
|
+
// SquareDot aliases
|
|
4216
|
+
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4173
4217
|
export {
|
|
4174
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4175
|
-
default as
|
|
4176
|
-
} from '../icons/square-
|
|
4218
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. */
|
|
4219
|
+
default as DotSquareIcon
|
|
4220
|
+
} from '../icons/square-dot';
|
|
4177
4221
|
// SquareDashed aliases
|
|
4178
4222
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
4179
4223
|
export {
|
|
4180
4224
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. */
|
|
4181
4225
|
default as BoxSelectIcon
|
|
4182
4226
|
} from '../icons/square-dashed';
|
|
4183
|
-
//
|
|
4184
|
-
export { default as
|
|
4227
|
+
// SquareDivide aliases
|
|
4228
|
+
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
4185
4229
|
export {
|
|
4186
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4187
|
-
default as
|
|
4188
|
-
} from '../icons/square-
|
|
4230
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. */
|
|
4231
|
+
default as DivideSquareIcon
|
|
4232
|
+
} from '../icons/square-divide';
|
|
4189
4233
|
// SquareEqual aliases
|
|
4190
4234
|
export { default as SquareEqualIcon } from '../icons/square-equal';
|
|
4191
4235
|
export {
|
|
@@ -4234,6 +4278,12 @@ export {
|
|
|
4234
4278
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. */
|
|
4235
4279
|
default as InspectIcon
|
|
4236
4280
|
} from '../icons/square-mouse-pointer';
|
|
4281
|
+
// SquareParking aliases
|
|
4282
|
+
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
4283
|
+
export {
|
|
4284
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
4285
|
+
default as ParkingSquareIcon
|
|
4286
|
+
} from '../icons/square-parking';
|
|
4237
4287
|
// SquareParkingOff aliases
|
|
4238
4288
|
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
4239
4289
|
export {
|
|
@@ -4254,12 +4304,6 @@ export {
|
|
|
4254
4304
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. */
|
|
4255
4305
|
default as PenSquareIcon
|
|
4256
4306
|
} from '../icons/square-pen';
|
|
4257
|
-
// SquareParking aliases
|
|
4258
|
-
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
4259
|
-
export {
|
|
4260
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
4261
|
-
default as ParkingSquareIcon
|
|
4262
|
-
} from '../icons/square-parking';
|
|
4263
4307
|
// SquarePercent aliases
|
|
4264
4308
|
export { default as SquarePercentIcon } from '../icons/square-percent';
|
|
4265
4309
|
export {
|
|
@@ -4272,54 +4316,54 @@ export {
|
|
|
4272
4316
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. */
|
|
4273
4317
|
default as PiSquareIcon
|
|
4274
4318
|
} from '../icons/square-pi';
|
|
4275
|
-
// SquarePlay aliases
|
|
4276
|
-
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4277
|
-
export {
|
|
4278
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. */
|
|
4279
|
-
default as PlaySquareIcon
|
|
4280
|
-
} from '../icons/square-play';
|
|
4281
4319
|
// SquarePilcrow aliases
|
|
4282
4320
|
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4283
4321
|
export {
|
|
4284
4322
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
4285
4323
|
default as PilcrowSquareIcon
|
|
4286
4324
|
} from '../icons/square-pilcrow';
|
|
4287
|
-
//
|
|
4288
|
-
export { default as
|
|
4325
|
+
// SquarePlay aliases
|
|
4326
|
+
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4289
4327
|
export {
|
|
4290
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4291
|
-
default as
|
|
4292
|
-
} from '../icons/square-
|
|
4328
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. */
|
|
4329
|
+
default as PlaySquareIcon
|
|
4330
|
+
} from '../icons/square-play';
|
|
4293
4331
|
// SquarePlus aliases
|
|
4294
4332
|
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4295
4333
|
export {
|
|
4296
4334
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. */
|
|
4297
4335
|
default as PlusSquareIcon
|
|
4298
4336
|
} from '../icons/square-plus';
|
|
4299
|
-
//
|
|
4300
|
-
export { default as
|
|
4337
|
+
// SquarePower aliases
|
|
4338
|
+
export { default as SquarePowerIcon } from '../icons/square-power';
|
|
4301
4339
|
export {
|
|
4302
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4303
|
-
default as
|
|
4304
|
-
} from '../icons/square-
|
|
4340
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. */
|
|
4341
|
+
default as PowerSquareIcon
|
|
4342
|
+
} from '../icons/square-power';
|
|
4343
|
+
// SquareSigma aliases
|
|
4344
|
+
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4345
|
+
export {
|
|
4346
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. */
|
|
4347
|
+
default as SigmaSquareIcon
|
|
4348
|
+
} from '../icons/square-sigma';
|
|
4305
4349
|
// SquareSlash aliases
|
|
4306
4350
|
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
4307
4351
|
export {
|
|
4308
4352
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. */
|
|
4309
4353
|
default as SlashSquareIcon
|
|
4310
4354
|
} from '../icons/square-slash';
|
|
4355
|
+
// SquareScissors aliases
|
|
4356
|
+
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4357
|
+
export {
|
|
4358
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. */
|
|
4359
|
+
default as ScissorsSquareIcon
|
|
4360
|
+
} from '../icons/square-scissors';
|
|
4311
4361
|
// SquareSplitHorizontal aliases
|
|
4312
4362
|
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4313
4363
|
export {
|
|
4314
4364
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. */
|
|
4315
4365
|
default as SplitSquareHorizontalIcon
|
|
4316
4366
|
} from '../icons/square-split-horizontal';
|
|
4317
|
-
// SquareSigma aliases
|
|
4318
|
-
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4319
|
-
export {
|
|
4320
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. */
|
|
4321
|
-
default as SigmaSquareIcon
|
|
4322
|
-
} from '../icons/square-sigma';
|
|
4323
4367
|
// SquareSplitVertical aliases
|
|
4324
4368
|
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4325
4369
|
export {
|
|
@@ -4332,6 +4376,12 @@ export {
|
|
|
4332
4376
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. */
|
|
4333
4377
|
default as TerminalSquareIcon
|
|
4334
4378
|
} from '../icons/square-terminal';
|
|
4379
|
+
// SquareUser aliases
|
|
4380
|
+
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4381
|
+
export {
|
|
4382
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. */
|
|
4383
|
+
default as UserSquareIcon
|
|
4384
|
+
} from '../icons/square-user';
|
|
4335
4385
|
// SquareUserRound aliases
|
|
4336
4386
|
export { default as SquareUserRoundIcon } from '../icons/square-user-round';
|
|
4337
4387
|
export {
|
|
@@ -4344,12 +4394,6 @@ export {
|
|
|
4344
4394
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. */
|
|
4345
4395
|
default as XSquareIcon
|
|
4346
4396
|
} from '../icons/square-x';
|
|
4347
|
-
// SquareUser aliases
|
|
4348
|
-
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4349
|
-
export {
|
|
4350
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. */
|
|
4351
|
-
default as UserSquareIcon
|
|
4352
|
-
} from '../icons/square-user';
|
|
4353
4397
|
// TestTubeDiagonal aliases
|
|
4354
4398
|
export { default as TestTubeDiagonalIcon } from '../icons/test-tube-diagonal';
|
|
4355
4399
|
export {
|
|
@@ -4374,16 +4418,6 @@ export {
|
|
|
4374
4418
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. */
|
|
4375
4419
|
default as AlignJustifyIcon
|
|
4376
4420
|
} from '../icons/text-align-justify';
|
|
4377
|
-
// TextAlignStart aliases
|
|
4378
|
-
export { default as TextAlignStartIcon } from '../icons/text-align-start';
|
|
4379
|
-
export {
|
|
4380
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link TextAlignStart} instead. */
|
|
4381
|
-
default as TextIcon
|
|
4382
|
-
} from '../icons/text-align-start';
|
|
4383
|
-
export {
|
|
4384
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. */
|
|
4385
|
-
default as AlignLeftIcon
|
|
4386
|
-
} from '../icons/text-align-start';
|
|
4387
4421
|
// TextInitial aliases
|
|
4388
4422
|
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4389
4423
|
export {
|
|
@@ -4396,24 +4430,34 @@ export {
|
|
|
4396
4430
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. */
|
|
4397
4431
|
default as WrapTextIcon
|
|
4398
4432
|
} from '../icons/text-wrap';
|
|
4433
|
+
// TextAlignStart aliases
|
|
4434
|
+
export { default as TextAlignStartIcon } from '../icons/text-align-start';
|
|
4435
|
+
export {
|
|
4436
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link TextAlignStart} instead. */
|
|
4437
|
+
default as TextIcon
|
|
4438
|
+
} from '../icons/text-align-start';
|
|
4439
|
+
export {
|
|
4440
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. */
|
|
4441
|
+
default as AlignLeftIcon
|
|
4442
|
+
} from '../icons/text-align-start';
|
|
4399
4443
|
// TramFront aliases
|
|
4400
4444
|
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4401
4445
|
export {
|
|
4402
4446
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. */
|
|
4403
4447
|
default as TrainIcon
|
|
4404
4448
|
} from '../icons/tram-front';
|
|
4405
|
-
// TriangleAlert aliases
|
|
4406
|
-
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4407
|
-
export {
|
|
4408
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. */
|
|
4409
|
-
default as AlertTriangleIcon
|
|
4410
|
-
} from '../icons/triangle-alert';
|
|
4411
4449
|
// TreePalm aliases
|
|
4412
4450
|
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4413
4451
|
export {
|
|
4414
4452
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. */
|
|
4415
4453
|
default as PalmtreeIcon
|
|
4416
4454
|
} from '../icons/tree-palm';
|
|
4455
|
+
// TriangleAlert aliases
|
|
4456
|
+
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4457
|
+
export {
|
|
4458
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. */
|
|
4459
|
+
default as AlertTriangleIcon
|
|
4460
|
+
} from '../icons/triangle-alert';
|
|
4417
4461
|
// TvMinimal aliases
|
|
4418
4462
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
4419
4463
|
export {
|
|
@@ -4456,42 +4500,42 @@ export {
|
|
|
4456
4500
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. */
|
|
4457
4501
|
default as UserX2Icon
|
|
4458
4502
|
} from '../icons/user-round-x';
|
|
4459
|
-
// UtensilsCrossed aliases
|
|
4460
|
-
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4461
|
-
export {
|
|
4462
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. */
|
|
4463
|
-
default as ForkKnifeCrossedIcon
|
|
4464
|
-
} from '../icons/utensils-crossed';
|
|
4465
|
-
// UsersRound aliases
|
|
4466
|
-
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
4467
|
-
export {
|
|
4468
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. */
|
|
4469
|
-
default as Users2Icon
|
|
4470
|
-
} from '../icons/users-round';
|
|
4471
4503
|
// UserRound aliases
|
|
4472
4504
|
export { default as UserRoundIcon } from '../icons/user-round';
|
|
4473
4505
|
export {
|
|
4474
4506
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. */
|
|
4475
4507
|
default as User2Icon
|
|
4476
4508
|
} from '../icons/user-round';
|
|
4509
|
+
// UtensilsCrossed aliases
|
|
4510
|
+
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4511
|
+
export {
|
|
4512
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. */
|
|
4513
|
+
default as ForkKnifeCrossedIcon
|
|
4514
|
+
} from '../icons/utensils-crossed';
|
|
4477
4515
|
// Utensils aliases
|
|
4478
4516
|
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4479
4517
|
export {
|
|
4480
4518
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. */
|
|
4481
4519
|
default as ForkKnifeIcon
|
|
4482
4520
|
} from '../icons/utensils';
|
|
4483
|
-
//
|
|
4484
|
-
export { default as
|
|
4521
|
+
// UsersRound aliases
|
|
4522
|
+
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
4485
4523
|
export {
|
|
4486
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4487
|
-
default as
|
|
4488
|
-
} from '../icons/
|
|
4524
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. */
|
|
4525
|
+
default as Users2Icon
|
|
4526
|
+
} from '../icons/users-round';
|
|
4489
4527
|
// WalletMinimal aliases
|
|
4490
4528
|
export { default as WalletMinimalIcon } from '../icons/wallet-minimal';
|
|
4491
4529
|
export {
|
|
4492
4530
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. */
|
|
4493
4531
|
default as Wallet2Icon
|
|
4494
4532
|
} from '../icons/wallet-minimal';
|
|
4533
|
+
// WandSparkles aliases
|
|
4534
|
+
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4535
|
+
export {
|
|
4536
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. */
|
|
4537
|
+
default as Wand2Icon
|
|
4538
|
+
} from '../icons/wand-sparkles';
|
|
4495
4539
|
// WavesHorizontal aliases
|
|
4496
4540
|
export { default as WavesHorizontalIcon } from '../icons/waves-horizontal';
|
|
4497
4541
|
export {
|