@lucide/astro 0.534.0 → 0.536.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 +735 -225
- package/src/aliases/prefixed.ts +1087 -575
- package/src/aliases/suffixed.ts +1351 -839
- package/src/icons/a-arrow-down.ts +2 -2
- package/src/icons/a-arrow-up.ts +2 -2
- package/src/icons/book-heart.ts +2 -2
- package/src/icons/bot-message-square.ts +2 -2
- package/src/icons/cake-slice.ts +2 -2
- package/src/icons/calendar-heart.ts +2 -2
- package/src/icons/file-heart.ts +2 -2
- package/src/icons/folder-heart.ts +2 -2
- package/src/icons/hand-fist.ts +18 -0
- package/src/icons/{grab.ts → hand-grab.ts} +4 -4
- package/src/icons/hand-heart.ts +2 -2
- package/src/icons/hospital.ts +2 -2
- package/src/icons/index.ts +148 -146
- package/src/icons/message-circle-code.ts +2 -2
- package/src/icons/message-circle-dashed.ts +2 -2
- package/src/icons/message-circle-heart.ts +2 -2
- package/src/icons/message-circle-more.ts +2 -2
- package/src/icons/message-circle-off.ts +2 -2
- package/src/icons/message-circle-plus.ts +2 -2
- package/src/icons/message-circle-question-mark.ts +2 -2
- package/src/icons/message-circle-reply.ts +2 -2
- package/src/icons/message-circle-warning.ts +2 -2
- package/src/icons/message-circle-x.ts +2 -2
- package/src/icons/message-circle.ts +2 -2
- package/src/icons/message-square-code.ts +2 -2
- package/src/icons/message-square-dashed.ts +2 -2
- package/src/icons/message-square-diff.ts +2 -2
- package/src/icons/message-square-dot.ts +2 -2
- package/src/icons/message-square-heart.ts +2 -2
- package/src/icons/message-square-lock.ts +2 -2
- package/src/icons/message-square-more.ts +2 -2
- package/src/icons/message-square-off.ts +2 -2
- package/src/icons/message-square-plus.ts +2 -2
- package/src/icons/message-square-quote.ts +2 -2
- package/src/icons/message-square-reply.ts +2 -2
- package/src/icons/message-square-share.ts +2 -2
- package/src/icons/message-square-text.ts +2 -2
- package/src/icons/message-square-warning.ts +2 -2
- package/src/icons/message-square-x.ts +2 -2
- package/src/icons/message-square.ts +2 -2
- package/src/icons/messages-square.ts +2 -2
- package/src/icons/scan-heart.ts +2 -2
- package/src/icons/turntable.ts +18 -0
package/src/aliases/suffixed.ts
CHANGED
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
3
|
// AArrowUp aliases
|
|
4
4
|
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
5
|
-
// ALargeSmall aliases
|
|
6
|
-
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
7
5
|
// Accessibility aliases
|
|
8
6
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
7
|
+
// ALargeSmall aliases
|
|
8
|
+
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
9
9
|
// Activity aliases
|
|
10
10
|
export { default as ActivityIcon } from '../icons/activity';
|
|
11
11
|
// AirVent aliases
|
|
12
12
|
export { default as AirVentIcon } from '../icons/air-vent';
|
|
13
13
|
// Airplay aliases
|
|
14
14
|
export { default as AirplayIcon } from '../icons/airplay';
|
|
15
|
-
// AlarmClock aliases
|
|
16
|
-
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
17
15
|
// AlarmClockOff aliases
|
|
18
16
|
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
17
|
+
// AlarmClock aliases
|
|
18
|
+
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
19
19
|
// AlarmSmoke aliases
|
|
20
20
|
export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
21
21
|
// Album aliases
|
|
22
22
|
export { default as AlbumIcon } from '../icons/album';
|
|
23
|
-
// AlignCenterVertical aliases
|
|
24
|
-
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
25
23
|
// AlignCenterHorizontal aliases
|
|
26
24
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
25
|
+
// AlignCenterVertical aliases
|
|
26
|
+
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
27
27
|
// AlignCenter aliases
|
|
28
28
|
export { default as AlignCenterIcon } from '../icons/align-center';
|
|
29
29
|
// AlignEndHorizontal aliases
|
|
@@ -68,10 +68,10 @@ export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertic
|
|
|
68
68
|
export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-justify-end';
|
|
69
69
|
// AlignVerticalJustifyStart aliases
|
|
70
70
|
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
71
|
-
// AlignVerticalSpaceBetween aliases
|
|
72
|
-
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
73
71
|
// AlignVerticalSpaceAround aliases
|
|
74
72
|
export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical-space-around';
|
|
73
|
+
// AlignVerticalSpaceBetween aliases
|
|
74
|
+
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
75
75
|
// Ambulance aliases
|
|
76
76
|
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
77
77
|
// Ampersand aliases
|
|
@@ -88,28 +88,28 @@ export { default as AngryIcon } from '../icons/angry';
|
|
|
88
88
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
89
89
|
// Antenna aliases
|
|
90
90
|
export { default as AntennaIcon } from '../icons/antenna';
|
|
91
|
-
// Aperture aliases
|
|
92
|
-
export { default as ApertureIcon } from '../icons/aperture';
|
|
93
91
|
// Anvil aliases
|
|
94
92
|
export { default as AnvilIcon } from '../icons/anvil';
|
|
93
|
+
// Aperture aliases
|
|
94
|
+
export { default as ApertureIcon } from '../icons/aperture';
|
|
95
95
|
// AppWindowMac aliases
|
|
96
96
|
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
97
97
|
// AppWindow aliases
|
|
98
98
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
99
|
-
// ArchiveRestore aliases
|
|
100
|
-
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
101
99
|
// Apple aliases
|
|
102
100
|
export { default as AppleIcon } from '../icons/apple';
|
|
101
|
+
// ArchiveRestore aliases
|
|
102
|
+
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
103
103
|
// ArchiveX aliases
|
|
104
104
|
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
105
105
|
// Archive aliases
|
|
106
106
|
export { default as ArchiveIcon } from '../icons/archive';
|
|
107
|
+
// Armchair aliases
|
|
108
|
+
export { default as ArmchairIcon } from '../icons/armchair';
|
|
107
109
|
// ArrowBigDownDash aliases
|
|
108
110
|
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
109
111
|
// ArrowBigDown aliases
|
|
110
112
|
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
111
|
-
// Armchair aliases
|
|
112
|
-
export { default as ArmchairIcon } from '../icons/armchair';
|
|
113
113
|
// ArrowBigLeftDash aliases
|
|
114
114
|
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
115
115
|
// ArrowBigLeft aliases
|
|
@@ -122,10 +122,10 @@ export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
|
122
122
|
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
123
123
|
// ArrowBigUp aliases
|
|
124
124
|
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
125
|
-
// ArrowDownLeft aliases
|
|
126
|
-
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
127
125
|
// ArrowDownFromLine aliases
|
|
128
126
|
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
127
|
+
// ArrowDownLeft aliases
|
|
128
|
+
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
129
129
|
// ArrowDownNarrowWide aliases
|
|
130
130
|
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
131
131
|
// ArrowDownRight aliases
|
|
@@ -136,20 +136,20 @@ export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
|
136
136
|
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
137
137
|
// ArrowDownUp aliases
|
|
138
138
|
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
139
|
+
// ArrowLeftFromLine aliases
|
|
140
|
+
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
139
141
|
// ArrowDown aliases
|
|
140
142
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
141
143
|
// ArrowLeftRight aliases
|
|
142
144
|
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
145
|
+
// ArrowLeft aliases
|
|
146
|
+
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
143
147
|
// ArrowLeftToLine aliases
|
|
144
148
|
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
145
149
|
// ArrowRightFromLine aliases
|
|
146
150
|
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
147
|
-
// ArrowLeftFromLine aliases
|
|
148
|
-
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
149
151
|
// ArrowRightLeft aliases
|
|
150
152
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
151
|
-
// ArrowLeft aliases
|
|
152
|
-
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
153
153
|
// ArrowRightToLine aliases
|
|
154
154
|
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
155
155
|
// ArrowRight aliases
|
|
@@ -164,46 +164,46 @@ export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
|
164
164
|
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
165
165
|
// ArrowUpRight aliases
|
|
166
166
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
167
|
+
// ArrowUpToLine aliases
|
|
168
|
+
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
167
169
|
// ArrowUpWideNarrow aliases
|
|
168
170
|
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
169
171
|
// ArrowUp aliases
|
|
170
172
|
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
171
173
|
// ArrowsUpFromLine aliases
|
|
172
174
|
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
173
|
-
// ArrowUpToLine aliases
|
|
174
|
-
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
175
175
|
// Asterisk aliases
|
|
176
176
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
177
177
|
// AtSign aliases
|
|
178
178
|
export { default as AtSignIcon } from '../icons/at-sign';
|
|
179
|
-
// Atom aliases
|
|
180
|
-
export { default as AtomIcon } from '../icons/atom';
|
|
181
179
|
// AudioLines aliases
|
|
182
180
|
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
181
|
+
// Atom aliases
|
|
182
|
+
export { default as AtomIcon } from '../icons/atom';
|
|
183
183
|
// AudioWaveform aliases
|
|
184
184
|
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
185
|
-
// Axe aliases
|
|
186
|
-
export { default as AxeIcon } from '../icons/axe';
|
|
187
185
|
// Award aliases
|
|
188
186
|
export { default as AwardIcon } from '../icons/award';
|
|
187
|
+
// Axe aliases
|
|
188
|
+
export { default as AxeIcon } from '../icons/axe';
|
|
189
189
|
// Baby aliases
|
|
190
190
|
export { default as BabyIcon } from '../icons/baby';
|
|
191
|
-
// BadgeAlert aliases
|
|
192
|
-
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
193
191
|
// Backpack aliases
|
|
194
192
|
export { default as BackpackIcon } from '../icons/backpack';
|
|
195
|
-
//
|
|
196
|
-
export { default as
|
|
193
|
+
// BadgeAlert aliases
|
|
194
|
+
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
197
195
|
// BadgeDollarSign aliases
|
|
198
196
|
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
197
|
+
// BadgeCent aliases
|
|
198
|
+
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
199
199
|
// BadgeEuro aliases
|
|
200
200
|
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
201
201
|
// BadgeIndianRupee aliases
|
|
202
202
|
export { default as BadgeIndianRupeeIcon } from '../icons/badge-indian-rupee';
|
|
203
|
-
// BadgeJapaneseYen aliases
|
|
204
|
-
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
205
203
|
// BadgeInfo aliases
|
|
206
204
|
export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
205
|
+
// BadgeJapaneseYen aliases
|
|
206
|
+
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
207
207
|
// BadgeMinus aliases
|
|
208
208
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
209
209
|
// BadgePercent aliases
|
|
@@ -214,40 +214,40 @@ export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
|
214
214
|
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
215
215
|
// BadgeRussianRuble aliases
|
|
216
216
|
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
217
|
-
// BadgeSwissFranc aliases
|
|
218
|
-
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
219
217
|
// BadgeTurkishLira aliases
|
|
220
218
|
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
219
|
+
// BadgeSwissFranc aliases
|
|
220
|
+
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
221
221
|
// BadgeX aliases
|
|
222
222
|
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
223
|
-
// BaggageClaim aliases
|
|
224
|
-
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
225
223
|
// Badge aliases
|
|
226
224
|
export { default as BadgeIcon } from '../icons/badge';
|
|
225
|
+
// BaggageClaim aliases
|
|
226
|
+
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
227
227
|
// Ban aliases
|
|
228
228
|
export { default as BanIcon } from '../icons/ban';
|
|
229
|
-
// BanknoteArrowDown aliases
|
|
230
|
-
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
231
|
-
// Bandage aliases
|
|
232
|
-
export { default as BandageIcon } from '../icons/bandage';
|
|
233
229
|
// Banana aliases
|
|
234
230
|
export { default as BananaIcon } from '../icons/banana';
|
|
235
|
-
//
|
|
236
|
-
export { default as
|
|
231
|
+
// Bandage aliases
|
|
232
|
+
export { default as BandageIcon } from '../icons/bandage';
|
|
233
|
+
// BanknoteArrowDown aliases
|
|
234
|
+
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
237
235
|
// BanknoteArrowUp aliases
|
|
238
236
|
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
239
|
-
//
|
|
240
|
-
export { default as
|
|
237
|
+
// BanknoteX aliases
|
|
238
|
+
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
241
239
|
// Barcode aliases
|
|
242
240
|
export { default as BarcodeIcon } from '../icons/barcode';
|
|
241
|
+
// Banknote aliases
|
|
242
|
+
export { default as BanknoteIcon } from '../icons/banknote';
|
|
243
243
|
// Barrel aliases
|
|
244
244
|
export { default as BarrelIcon } from '../icons/barrel';
|
|
245
245
|
// Baseline aliases
|
|
246
246
|
export { default as BaselineIcon } from '../icons/baseline';
|
|
247
|
-
// Bath aliases
|
|
248
|
-
export { default as BathIcon } from '../icons/bath';
|
|
249
247
|
// BatteryCharging aliases
|
|
250
248
|
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
249
|
+
// Bath aliases
|
|
250
|
+
export { default as BathIcon } from '../icons/bath';
|
|
251
251
|
// BatteryFull aliases
|
|
252
252
|
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
253
253
|
// BatteryLow aliases
|
|
@@ -256,54 +256,54 @@ export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
|
256
256
|
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
257
257
|
// BatteryPlus aliases
|
|
258
258
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
259
|
-
// Battery aliases
|
|
260
|
-
export { default as BatteryIcon } from '../icons/battery';
|
|
261
259
|
// BatteryWarning aliases
|
|
262
260
|
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
261
|
+
// Battery aliases
|
|
262
|
+
export { default as BatteryIcon } from '../icons/battery';
|
|
263
263
|
// Beaker aliases
|
|
264
264
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
265
265
|
// BeanOff aliases
|
|
266
266
|
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
267
267
|
// Bean aliases
|
|
268
268
|
export { default as BeanIcon } from '../icons/bean';
|
|
269
|
-
// BedSingle aliases
|
|
270
|
-
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
271
269
|
// BedDouble aliases
|
|
272
270
|
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
271
|
+
// BedSingle aliases
|
|
272
|
+
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
273
273
|
// Bed aliases
|
|
274
274
|
export { default as BedIcon } from '../icons/bed';
|
|
275
|
-
// BeerOff aliases
|
|
276
|
-
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
277
275
|
// Beef aliases
|
|
278
276
|
export { default as BeefIcon } from '../icons/beef';
|
|
279
|
-
//
|
|
280
|
-
export { default as
|
|
277
|
+
// BeerOff aliases
|
|
278
|
+
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
281
279
|
// Beer aliases
|
|
282
280
|
export { default as BeerIcon } from '../icons/beer';
|
|
281
|
+
// BellDot aliases
|
|
282
|
+
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
283
283
|
// BellElectric aliases
|
|
284
284
|
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
285
285
|
// BellMinus aliases
|
|
286
286
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
287
287
|
// BellOff aliases
|
|
288
288
|
export { default as BellOffIcon } from '../icons/bell-off';
|
|
289
|
-
// BellRing aliases
|
|
290
|
-
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
291
289
|
// BellPlus aliases
|
|
292
290
|
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
291
|
+
// BellRing aliases
|
|
292
|
+
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
293
293
|
// Bell aliases
|
|
294
294
|
export { default as BellIcon } from '../icons/bell';
|
|
295
295
|
// BetweenVerticalEnd aliases
|
|
296
296
|
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
297
297
|
// BetweenVerticalStart aliases
|
|
298
298
|
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
299
|
-
// Bike aliases
|
|
300
|
-
export { default as BikeIcon } from '../icons/bike';
|
|
301
299
|
// BicepsFlexed aliases
|
|
302
300
|
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
303
|
-
//
|
|
304
|
-
export { default as
|
|
301
|
+
// Bike aliases
|
|
302
|
+
export { default as BikeIcon } from '../icons/bike';
|
|
305
303
|
// Binoculars aliases
|
|
306
304
|
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
305
|
+
// Binary aliases
|
|
306
|
+
export { default as BinaryIcon } from '../icons/binary';
|
|
307
307
|
// Biohazard aliases
|
|
308
308
|
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
309
309
|
// Bird aliases
|
|
@@ -316,16 +316,16 @@ export { default as BlendIcon } from '../icons/blend';
|
|
|
316
316
|
export { default as BlindsIcon } from '../icons/blinds';
|
|
317
317
|
// Blocks aliases
|
|
318
318
|
export { default as BlocksIcon } from '../icons/blocks';
|
|
319
|
-
// BluetoothOff aliases
|
|
320
|
-
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
321
319
|
// BluetoothConnected aliases
|
|
322
320
|
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
321
|
+
// BluetoothOff aliases
|
|
322
|
+
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
323
323
|
// BluetoothSearching aliases
|
|
324
324
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
325
|
-
// Bluetooth aliases
|
|
326
|
-
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
327
325
|
// Bold aliases
|
|
328
326
|
export { default as BoldIcon } from '../icons/bold';
|
|
327
|
+
// Bluetooth aliases
|
|
328
|
+
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
329
329
|
// Bolt aliases
|
|
330
330
|
export { default as BoltIcon } from '../icons/bolt';
|
|
331
331
|
// Bone aliases
|
|
@@ -336,22 +336,22 @@ export { default as BombIcon } from '../icons/bomb';
|
|
|
336
336
|
export { default as BookAIcon } from '../icons/book-a';
|
|
337
337
|
// BookAlert aliases
|
|
338
338
|
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
339
|
+
// BookCheck aliases
|
|
340
|
+
export { default as BookCheckIcon } from '../icons/book-check';
|
|
339
341
|
// BookAudio aliases
|
|
340
342
|
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
341
343
|
// BookCopy aliases
|
|
342
344
|
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
343
|
-
// BookCheck aliases
|
|
344
|
-
export { default as BookCheckIcon } from '../icons/book-check';
|
|
345
345
|
// BookDown aliases
|
|
346
346
|
export { default as BookDownIcon } from '../icons/book-down';
|
|
347
347
|
// BookHeadphones aliases
|
|
348
348
|
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
349
349
|
// BookHeart aliases
|
|
350
350
|
export { default as BookHeartIcon } from '../icons/book-heart';
|
|
351
|
-
// BookKey aliases
|
|
352
|
-
export { default as BookKeyIcon } from '../icons/book-key';
|
|
353
351
|
// BookImage aliases
|
|
354
352
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
353
|
+
// BookKey aliases
|
|
354
|
+
export { default as BookKeyIcon } from '../icons/book-key';
|
|
355
355
|
// BookLock aliases
|
|
356
356
|
export { default as BookLockIcon } from '../icons/book-lock';
|
|
357
357
|
// BookMarked aliases
|
|
@@ -360,12 +360,12 @@ export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
|
360
360
|
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
361
361
|
// BookOpenCheck aliases
|
|
362
362
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
363
|
+
// BookOpen aliases
|
|
364
|
+
export { default as BookOpenIcon } from '../icons/book-open';
|
|
363
365
|
// BookOpenText aliases
|
|
364
366
|
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
365
367
|
// BookPlus aliases
|
|
366
368
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
367
|
-
// BookOpen aliases
|
|
368
|
-
export { default as BookOpenIcon } from '../icons/book-open';
|
|
369
369
|
// BookText aliases
|
|
370
370
|
export { default as BookTextIcon } from '../icons/book-text';
|
|
371
371
|
// BookType aliases
|
|
@@ -376,10 +376,10 @@ export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
|
376
376
|
export { default as BookUpIcon } from '../icons/book-up';
|
|
377
377
|
// BookUser aliases
|
|
378
378
|
export { default as BookUserIcon } from '../icons/book-user';
|
|
379
|
-
// Book aliases
|
|
380
|
-
export { default as BookIcon } from '../icons/book';
|
|
381
379
|
// BookX aliases
|
|
382
380
|
export { default as BookXIcon } from '../icons/book-x';
|
|
381
|
+
// Book aliases
|
|
382
|
+
export { default as BookIcon } from '../icons/book';
|
|
383
383
|
// BookmarkCheck aliases
|
|
384
384
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
385
385
|
// BookmarkMinus aliases
|
|
@@ -388,16 +388,16 @@ export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
|
388
388
|
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
389
389
|
// BookmarkX aliases
|
|
390
390
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
391
|
-
// BoomBox aliases
|
|
392
|
-
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
393
391
|
// Bookmark aliases
|
|
394
392
|
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
393
|
+
// BoomBox aliases
|
|
394
|
+
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
395
395
|
// BotMessageSquare aliases
|
|
396
396
|
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
397
|
-
// Bot aliases
|
|
398
|
-
export { default as BotIcon } from '../icons/bot';
|
|
399
397
|
// BotOff aliases
|
|
400
398
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
399
|
+
// Bot aliases
|
|
400
|
+
export { default as BotIcon } from '../icons/bot';
|
|
401
401
|
// BottleWine aliases
|
|
402
402
|
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
403
403
|
// BowArrow aliases
|
|
@@ -416,14 +416,14 @@ export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
|
416
416
|
export { default as BrainIcon } from '../icons/brain';
|
|
417
417
|
// BrickWallFire aliases
|
|
418
418
|
export { default as BrickWallFireIcon } from '../icons/brick-wall-fire';
|
|
419
|
-
// BriefcaseBusiness aliases
|
|
420
|
-
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
421
419
|
// BrickWall aliases
|
|
422
420
|
export { default as BrickWallIcon } from '../icons/brick-wall';
|
|
423
|
-
//
|
|
424
|
-
export { default as
|
|
421
|
+
// BriefcaseBusiness aliases
|
|
422
|
+
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
425
423
|
// BriefcaseConveyorBelt aliases
|
|
426
424
|
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
425
|
+
// BriefcaseMedical aliases
|
|
426
|
+
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
427
427
|
// Briefcase aliases
|
|
428
428
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
429
429
|
// BringToFront aliases
|
|
@@ -432,18 +432,18 @@ export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
|
432
432
|
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
433
433
|
// Brush aliases
|
|
434
434
|
export { default as BrushIcon } from '../icons/brush';
|
|
435
|
-
// BugOff aliases
|
|
436
|
-
export { default as BugOffIcon } from '../icons/bug-off';
|
|
437
435
|
// Bubbles aliases
|
|
438
436
|
export { default as BubblesIcon } from '../icons/bubbles';
|
|
437
|
+
// BugOff aliases
|
|
438
|
+
export { default as BugOffIcon } from '../icons/bug-off';
|
|
439
439
|
// BugPlay aliases
|
|
440
440
|
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
441
|
+
// Bug aliases
|
|
442
|
+
export { default as BugIcon } from '../icons/bug';
|
|
441
443
|
// Building2 aliases
|
|
442
444
|
export { default as Building2Icon } from '../icons/building-2';
|
|
443
445
|
// Building aliases
|
|
444
446
|
export { default as BuildingIcon } from '../icons/building';
|
|
445
|
-
// Bug aliases
|
|
446
|
-
export { default as BugIcon } from '../icons/bug';
|
|
447
447
|
// BusFront aliases
|
|
448
448
|
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
449
449
|
// Bus aliases
|
|
@@ -468,10 +468,10 @@ export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
|
468
468
|
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
469
469
|
// CalendarCheck aliases
|
|
470
470
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
471
|
-
// CalendarClock aliases
|
|
472
|
-
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
473
471
|
// CalendarCog aliases
|
|
474
472
|
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
473
|
+
// CalendarClock aliases
|
|
474
|
+
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
475
475
|
// CalendarDays aliases
|
|
476
476
|
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
477
477
|
// CalendarFold aliases
|
|
@@ -488,10 +488,10 @@ export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
|
488
488
|
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
489
489
|
// CalendarPlus aliases
|
|
490
490
|
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
491
|
-
// CalendarSearch aliases
|
|
492
|
-
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
493
491
|
// CalendarRange aliases
|
|
494
492
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
493
|
+
// CalendarSearch aliases
|
|
494
|
+
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
495
495
|
// CalendarSync aliases
|
|
496
496
|
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
497
497
|
// CalendarX2 aliases
|
|
@@ -502,32 +502,32 @@ export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
|
502
502
|
export { default as CalendarIcon } from '../icons/calendar';
|
|
503
503
|
// CameraOff aliases
|
|
504
504
|
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
505
|
+
// Camera aliases
|
|
506
|
+
export { default as CameraIcon } from '../icons/camera';
|
|
505
507
|
// CandyCane aliases
|
|
506
508
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
507
|
-
// Candy aliases
|
|
508
|
-
export { default as CandyIcon } from '../icons/candy';
|
|
509
509
|
// CandyOff aliases
|
|
510
510
|
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
511
|
-
//
|
|
512
|
-
export { default as
|
|
511
|
+
// Candy aliases
|
|
512
|
+
export { default as CandyIcon } from '../icons/candy';
|
|
513
513
|
// Cannabis aliases
|
|
514
514
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
515
515
|
// CaptionsOff aliases
|
|
516
516
|
export { default as CaptionsOffIcon } from '../icons/captions-off';
|
|
517
517
|
// CarFront aliases
|
|
518
518
|
export { default as CarFrontIcon } from '../icons/car-front';
|
|
519
|
-
// Car aliases
|
|
520
|
-
export { default as CarIcon } from '../icons/car';
|
|
521
519
|
// CarTaxiFront aliases
|
|
522
520
|
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
523
|
-
//
|
|
524
|
-
export { default as
|
|
521
|
+
// Car aliases
|
|
522
|
+
export { default as CarIcon } from '../icons/car';
|
|
525
523
|
// CardSim aliases
|
|
526
524
|
export { default as CardSimIcon } from '../icons/card-sim';
|
|
527
|
-
//
|
|
528
|
-
export { default as
|
|
525
|
+
// Caravan aliases
|
|
526
|
+
export { default as CaravanIcon } from '../icons/caravan';
|
|
529
527
|
// Carrot aliases
|
|
530
528
|
export { default as CarrotIcon } from '../icons/carrot';
|
|
529
|
+
// CaseLower aliases
|
|
530
|
+
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
531
531
|
// CaseSensitive aliases
|
|
532
532
|
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
533
533
|
// CaseUpper aliases
|
|
@@ -544,26 +544,26 @@ export { default as CastleIcon } from '../icons/castle';
|
|
|
544
544
|
export { default as CctvIcon } from '../icons/cctv';
|
|
545
545
|
// ChartBarDecreasing aliases
|
|
546
546
|
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
547
|
-
// ChartBarStacked aliases
|
|
548
|
-
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
549
547
|
// ChartBarIncreasing aliases
|
|
550
548
|
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
549
|
+
// ChartBarStacked aliases
|
|
550
|
+
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
551
551
|
// ChartColumnDecreasing aliases
|
|
552
552
|
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
553
|
-
// ChartGantt aliases
|
|
554
|
-
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
555
553
|
// ChartColumnStacked aliases
|
|
556
554
|
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
555
|
+
// ChartGantt aliases
|
|
556
|
+
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
557
557
|
// ChartNetwork aliases
|
|
558
558
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
559
559
|
// ChartNoAxesColumnDecreasing aliases
|
|
560
560
|
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
561
|
+
// ChartNoAxesCombined aliases
|
|
562
|
+
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
561
563
|
// ChartSpline aliases
|
|
562
564
|
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
563
565
|
// CheckCheck aliases
|
|
564
566
|
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
565
|
-
// ChartNoAxesCombined aliases
|
|
566
|
-
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
567
567
|
// CheckLine aliases
|
|
568
568
|
export { default as CheckLineIcon } from '../icons/check-line';
|
|
569
569
|
// Check aliases
|
|
@@ -574,50 +574,50 @@ export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
|
574
574
|
export { default as CherryIcon } from '../icons/cherry';
|
|
575
575
|
// ChevronDown aliases
|
|
576
576
|
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
577
|
-
// ChevronLast aliases
|
|
578
|
-
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
579
577
|
// ChevronFirst aliases
|
|
580
578
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
579
|
+
// ChevronLast aliases
|
|
580
|
+
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
581
581
|
// ChevronLeft aliases
|
|
582
582
|
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
583
583
|
// ChevronRight aliases
|
|
584
584
|
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
585
585
|
// ChevronUp aliases
|
|
586
586
|
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
587
|
-
// ChevronsDownUp aliases
|
|
588
|
-
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
589
587
|
// ChevronsDown aliases
|
|
590
588
|
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
589
|
+
// ChevronsDownUp aliases
|
|
590
|
+
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
591
591
|
// ChevronsLeftRightEllipsis aliases
|
|
592
592
|
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
593
|
-
// ChevronsLeft aliases
|
|
594
|
-
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
595
593
|
// ChevronsLeftRight aliases
|
|
596
594
|
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
595
|
+
// ChevronsLeft aliases
|
|
596
|
+
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
597
597
|
// ChevronsRightLeft aliases
|
|
598
598
|
export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
599
|
-
// ChevronsUpDown aliases
|
|
600
|
-
export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
601
599
|
// ChevronsRight aliases
|
|
602
600
|
export { default as ChevronsRightIcon } from '../icons/chevrons-right';
|
|
601
|
+
// ChevronsUpDown aliases
|
|
602
|
+
export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
603
603
|
// ChevronsUp aliases
|
|
604
604
|
export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
605
605
|
// Chrome aliases
|
|
606
606
|
export { default as ChromeIcon } from '../icons/chrome';
|
|
607
607
|
// Church aliases
|
|
608
608
|
export { default as ChurchIcon } from '../icons/church';
|
|
609
|
-
// CigaretteOff aliases
|
|
610
|
-
export { default as CigaretteOffIcon } from '../icons/cigarette-off';
|
|
611
609
|
// Cigarette aliases
|
|
612
610
|
export { default as CigaretteIcon } from '../icons/cigarette';
|
|
611
|
+
// CigaretteOff aliases
|
|
612
|
+
export { default as CigaretteOffIcon } from '../icons/cigarette-off';
|
|
613
613
|
// CircleDashed aliases
|
|
614
614
|
export { default as CircleDashedIcon } from '../icons/circle-dashed';
|
|
615
|
-
// CircleDot aliases
|
|
616
|
-
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
617
|
-
// CircleDollarSign aliases
|
|
618
|
-
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
619
615
|
// CircleDotDashed aliases
|
|
620
616
|
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
617
|
+
// CircleDollarSign aliases
|
|
618
|
+
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
619
|
+
// CircleDot aliases
|
|
620
|
+
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
621
621
|
// CircleEllipsis aliases
|
|
622
622
|
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
623
623
|
// CircleEqual aliases
|
|
@@ -626,22 +626,22 @@ export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
|
626
626
|
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
627
627
|
// CircleFadingPlus aliases
|
|
628
628
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
629
|
-
// CirclePoundSterling aliases
|
|
630
|
-
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
631
629
|
// CircleOff aliases
|
|
632
630
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
631
|
+
// CirclePoundSterling aliases
|
|
632
|
+
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
633
633
|
// CircleSlash aliases
|
|
634
634
|
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
635
635
|
// CircleSmall aliases
|
|
636
636
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
637
637
|
// Circle aliases
|
|
638
638
|
export { default as CircleIcon } from '../icons/circle';
|
|
639
|
-
// CircuitBoard aliases
|
|
640
|
-
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
641
639
|
// Citrus aliases
|
|
642
640
|
export { default as CitrusIcon } from '../icons/citrus';
|
|
643
641
|
// Clapperboard aliases
|
|
644
642
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
643
|
+
// CircuitBoard aliases
|
|
644
|
+
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
645
645
|
// ClipboardCheck aliases
|
|
646
646
|
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
647
647
|
// ClipboardClock aliases
|
|
@@ -652,10 +652,10 @@ export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
|
652
652
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
653
653
|
// ClipboardMinus aliases
|
|
654
654
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
655
|
-
// ClipboardPlus aliases
|
|
656
|
-
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
657
655
|
// ClipboardPaste aliases
|
|
658
656
|
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
657
|
+
// ClipboardPlus aliases
|
|
658
|
+
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
659
659
|
// ClipboardType aliases
|
|
660
660
|
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
661
661
|
// ClipboardX aliases
|
|
@@ -698,14 +698,14 @@ export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
|
698
698
|
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
699
699
|
// Clock aliases
|
|
700
700
|
export { default as ClockIcon } from '../icons/clock';
|
|
701
|
-
// CloudAlert aliases
|
|
702
|
-
export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
703
701
|
// ClosedCaption aliases
|
|
704
702
|
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
705
703
|
// CloudCheck aliases
|
|
706
704
|
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
707
705
|
// CloudCog aliases
|
|
708
706
|
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
707
|
+
// CloudAlert aliases
|
|
708
|
+
export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
709
709
|
// CloudFog aliases
|
|
710
710
|
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
711
711
|
// CloudDrizzle aliases
|
|
@@ -714,14 +714,14 @@ export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
|
714
714
|
export { default as CloudHailIcon } from '../icons/cloud-hail';
|
|
715
715
|
// CloudLightning aliases
|
|
716
716
|
export { default as CloudLightningIcon } from '../icons/cloud-lightning';
|
|
717
|
-
// CloudMoon aliases
|
|
718
|
-
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
719
717
|
// CloudMoonRain aliases
|
|
720
718
|
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
721
|
-
//
|
|
722
|
-
export { default as
|
|
719
|
+
// CloudMoon aliases
|
|
720
|
+
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
723
721
|
// CloudRainWind aliases
|
|
724
722
|
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
723
|
+
// CloudOff aliases
|
|
724
|
+
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
725
725
|
// CloudSnow aliases
|
|
726
726
|
export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
727
727
|
// CloudRain aliases
|
|
@@ -756,12 +756,12 @@ export { default as Columns4Icon } from '../icons/columns-4';
|
|
|
756
756
|
export { default as CombineIcon } from '../icons/combine';
|
|
757
757
|
// Command aliases
|
|
758
758
|
export { default as CommandIcon } from '../icons/command';
|
|
759
|
+
// Component aliases
|
|
760
|
+
export { default as ComponentIcon } from '../icons/component';
|
|
759
761
|
// Compass aliases
|
|
760
762
|
export { default as CompassIcon } from '../icons/compass';
|
|
761
763
|
// Computer aliases
|
|
762
764
|
export { default as ComputerIcon } from '../icons/computer';
|
|
763
|
-
// Component aliases
|
|
764
|
-
export { default as ComponentIcon } from '../icons/component';
|
|
765
765
|
// ConciergeBell aliases
|
|
766
766
|
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
767
767
|
// Cone aliases
|
|
@@ -782,38 +782,38 @@ export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
|
782
782
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
783
783
|
// CopyMinus aliases
|
|
784
784
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
785
|
-
// CopySlash aliases
|
|
786
|
-
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
787
785
|
// CopyPlus aliases
|
|
788
786
|
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
789
787
|
// CopyX aliases
|
|
790
788
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
789
|
+
// CopySlash aliases
|
|
790
|
+
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
791
791
|
// Copy aliases
|
|
792
792
|
export { default as CopyIcon } from '../icons/copy';
|
|
793
793
|
// Copyleft aliases
|
|
794
794
|
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
795
795
|
// Copyright aliases
|
|
796
796
|
export { default as CopyrightIcon } from '../icons/copyright';
|
|
797
|
-
// CornerDownLeft aliases
|
|
798
|
-
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
799
797
|
// CornerDownRight aliases
|
|
800
798
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
801
|
-
//
|
|
802
|
-
export { default as
|
|
799
|
+
// CornerDownLeft aliases
|
|
800
|
+
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
803
801
|
// CornerLeftUp aliases
|
|
804
802
|
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
805
|
-
//
|
|
806
|
-
export { default as
|
|
807
|
-
// CornerUpLeft aliases
|
|
808
|
-
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
803
|
+
// CornerLeftDown aliases
|
|
804
|
+
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
809
805
|
// CornerRightUp aliases
|
|
810
806
|
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
807
|
+
// CornerRightDown aliases
|
|
808
|
+
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
811
809
|
// CornerUpRight aliases
|
|
812
810
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
813
|
-
//
|
|
814
|
-
export { default as
|
|
811
|
+
// CornerUpLeft aliases
|
|
812
|
+
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
815
813
|
// CreativeCommons aliases
|
|
816
814
|
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
815
|
+
// Cpu aliases
|
|
816
|
+
export { default as CpuIcon } from '../icons/cpu';
|
|
817
817
|
// CreditCard aliases
|
|
818
818
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
819
819
|
// Croissant aliases
|
|
@@ -822,22 +822,22 @@ export { default as CroissantIcon } from '../icons/croissant';
|
|
|
822
822
|
export { default as CropIcon } from '../icons/crop';
|
|
823
823
|
// Cross aliases
|
|
824
824
|
export { default as CrossIcon } from '../icons/cross';
|
|
825
|
-
// Crown aliases
|
|
826
|
-
export { default as CrownIcon } from '../icons/crown';
|
|
827
825
|
// Crosshair aliases
|
|
828
826
|
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
827
|
+
// Crown aliases
|
|
828
|
+
export { default as CrownIcon } from '../icons/crown';
|
|
829
829
|
// Cuboid aliases
|
|
830
830
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
831
831
|
// CupSoda aliases
|
|
832
832
|
export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
833
|
-
// Currency aliases
|
|
834
|
-
export { default as CurrencyIcon } from '../icons/currency';
|
|
835
833
|
// Cylinder aliases
|
|
836
834
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
837
|
-
//
|
|
838
|
-
export { default as
|
|
835
|
+
// Currency aliases
|
|
836
|
+
export { default as CurrencyIcon } from '../icons/currency';
|
|
839
837
|
// Dam aliases
|
|
840
838
|
export { default as DamIcon } from '../icons/dam';
|
|
839
|
+
// DatabaseBackup aliases
|
|
840
|
+
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
841
841
|
// DatabaseZap aliases
|
|
842
842
|
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
843
843
|
// Database aliases
|
|
@@ -858,10 +858,10 @@ export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
|
858
858
|
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
859
859
|
// Diamond aliases
|
|
860
860
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
861
|
-
// Dice2 aliases
|
|
862
|
-
export { default as Dice2Icon } from '../icons/dice-2';
|
|
863
861
|
// Dice1 aliases
|
|
864
862
|
export { default as Dice1Icon } from '../icons/dice-1';
|
|
863
|
+
// Dice2 aliases
|
|
864
|
+
export { default as Dice2Icon } from '../icons/dice-2';
|
|
865
865
|
// Dice3 aliases
|
|
866
866
|
export { default as Dice3Icon } from '../icons/dice-3';
|
|
867
867
|
// Dice4 aliases
|
|
@@ -878,10 +878,10 @@ export { default as DiffIcon } from '../icons/diff';
|
|
|
878
878
|
export { default as Disc2Icon } from '../icons/disc-2';
|
|
879
879
|
// Disc3 aliases
|
|
880
880
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
881
|
-
// Disc aliases
|
|
882
|
-
export { default as DiscIcon } from '../icons/disc';
|
|
883
881
|
// DiscAlbum aliases
|
|
884
882
|
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
883
|
+
// Disc aliases
|
|
884
|
+
export { default as DiscIcon } from '../icons/disc';
|
|
885
885
|
// Divide aliases
|
|
886
886
|
export { default as DivideIcon } from '../icons/divide';
|
|
887
887
|
// DnaOff aliases
|
|
@@ -894,20 +894,20 @@ export { default as DockIcon } from '../icons/dock';
|
|
|
894
894
|
export { default as DogIcon } from '../icons/dog';
|
|
895
895
|
// DollarSign aliases
|
|
896
896
|
export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
897
|
-
// DoorClosedLocked aliases
|
|
898
|
-
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
899
897
|
// Donut aliases
|
|
900
898
|
export { default as DonutIcon } from '../icons/donut';
|
|
899
|
+
// DoorClosedLocked aliases
|
|
900
|
+
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
901
901
|
// DoorClosed aliases
|
|
902
902
|
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
903
903
|
// DoorOpen aliases
|
|
904
904
|
export { default as DoorOpenIcon } from '../icons/door-open';
|
|
905
905
|
// Dot aliases
|
|
906
906
|
export { default as DotIcon } from '../icons/dot';
|
|
907
|
-
// DraftingCompass aliases
|
|
908
|
-
export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
909
907
|
// Download aliases
|
|
910
908
|
export { default as DownloadIcon } from '../icons/download';
|
|
909
|
+
// DraftingCompass aliases
|
|
910
|
+
export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
911
911
|
// Drama aliases
|
|
912
912
|
export { default as DramaIcon } from '../icons/drama';
|
|
913
913
|
// Dribbble aliases
|
|
@@ -930,10 +930,10 @@ export { default as DrumstickIcon } from '../icons/drumstick';
|
|
|
930
930
|
export { default as DumbbellIcon } from '../icons/dumbbell';
|
|
931
931
|
// EarOff aliases
|
|
932
932
|
export { default as EarOffIcon } from '../icons/ear-off';
|
|
933
|
-
// EarthLock aliases
|
|
934
|
-
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
935
933
|
// Ear aliases
|
|
936
934
|
export { default as EarIcon } from '../icons/ear';
|
|
935
|
+
// EarthLock aliases
|
|
936
|
+
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
937
937
|
// Eclipse aliases
|
|
938
938
|
export { default as EclipseIcon } from '../icons/eclipse';
|
|
939
939
|
// EggFried aliases
|
|
@@ -942,10 +942,10 @@ export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
|
942
942
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
943
943
|
// Egg aliases
|
|
944
944
|
export { default as EggIcon } from '../icons/egg';
|
|
945
|
-
// EqualApproximately aliases
|
|
946
|
-
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
947
945
|
// EqualNot aliases
|
|
948
946
|
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
947
|
+
// EqualApproximately aliases
|
|
948
|
+
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
949
949
|
// Equal aliases
|
|
950
950
|
export { default as EqualIcon } from '../icons/equal';
|
|
951
951
|
// Eraser aliases
|
|
@@ -956,10 +956,10 @@ export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
|
956
956
|
export { default as EuroIcon } from '../icons/euro';
|
|
957
957
|
// Expand aliases
|
|
958
958
|
export { default as ExpandIcon } from '../icons/expand';
|
|
959
|
-
// EyeClosed aliases
|
|
960
|
-
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
961
959
|
// ExternalLink aliases
|
|
962
960
|
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
961
|
+
// EyeClosed aliases
|
|
962
|
+
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
963
963
|
// Eye aliases
|
|
964
964
|
export { default as EyeIcon } from '../icons/eye';
|
|
965
965
|
// EyeOff aliases
|
|
@@ -990,10 +990,10 @@ export { default as FileAudioIcon } from '../icons/file-audio';
|
|
|
990
990
|
export { default as FileBadge2Icon } from '../icons/file-badge-2';
|
|
991
991
|
// FileBadge aliases
|
|
992
992
|
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
993
|
-
// FileCheck2 aliases
|
|
994
|
-
export { default as FileCheck2Icon } from '../icons/file-check-2';
|
|
995
993
|
// FileBox aliases
|
|
996
994
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
995
|
+
// FileCheck2 aliases
|
|
996
|
+
export { default as FileCheck2Icon } from '../icons/file-check-2';
|
|
997
997
|
// FileCheck aliases
|
|
998
998
|
export { default as FileCheckIcon } from '../icons/file-check';
|
|
999
999
|
// FileClock aliases
|
|
@@ -1002,10 +1002,10 @@ export { default as FileClockIcon } from '../icons/file-clock';
|
|
|
1002
1002
|
export { default as FileCode2Icon } from '../icons/file-code-2';
|
|
1003
1003
|
// FileCode aliases
|
|
1004
1004
|
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1005
|
-
// FileDigit aliases
|
|
1006
|
-
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1007
1005
|
// FileDiff aliases
|
|
1008
1006
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1007
|
+
// FileDigit aliases
|
|
1008
|
+
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1009
1009
|
// FileDown aliases
|
|
1010
1010
|
export { default as FileDownIcon } from '../icons/file-down';
|
|
1011
1011
|
// FileHeart aliases
|
|
@@ -1024,16 +1024,16 @@ export { default as FileKey2Icon } from '../icons/file-key-2';
|
|
|
1024
1024
|
export { default as FileKeyIcon } from '../icons/file-key';
|
|
1025
1025
|
// FileLock2 aliases
|
|
1026
1026
|
export { default as FileLock2Icon } from '../icons/file-lock-2';
|
|
1027
|
-
// FileMinus2 aliases
|
|
1028
|
-
export { default as FileMinus2Icon } from '../icons/file-minus-2';
|
|
1029
1027
|
// FileLock aliases
|
|
1030
1028
|
export { default as FileLockIcon } from '../icons/file-lock';
|
|
1029
|
+
// FileMinus2 aliases
|
|
1030
|
+
export { default as FileMinus2Icon } from '../icons/file-minus-2';
|
|
1031
1031
|
// FileMinus aliases
|
|
1032
1032
|
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1033
|
-
// FileMusic aliases
|
|
1034
|
-
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1035
1033
|
// FileOutput aliases
|
|
1036
1034
|
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1035
|
+
// FileMusic aliases
|
|
1036
|
+
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1037
1037
|
// FilePlus2 aliases
|
|
1038
1038
|
export { default as FilePlus2Icon } from '../icons/file-plus-2';
|
|
1039
1039
|
// FilePlus aliases
|
|
@@ -1046,10 +1046,10 @@ export { default as FileSearchIcon } from '../icons/file-search';
|
|
|
1046
1046
|
export { default as FileSearch2Icon } from '../icons/file-search-2';
|
|
1047
1047
|
// FileSliders aliases
|
|
1048
1048
|
export { default as FileSlidersIcon } from '../icons/file-sliders';
|
|
1049
|
-
// FileStack aliases
|
|
1050
|
-
export { default as FileStackIcon } from '../icons/file-stack';
|
|
1051
1049
|
// FileSpreadsheet aliases
|
|
1052
1050
|
export { default as FileSpreadsheetIcon } from '../icons/file-spreadsheet';
|
|
1051
|
+
// FileStack aliases
|
|
1052
|
+
export { default as FileStackIcon } from '../icons/file-stack';
|
|
1053
1053
|
// FileSymlink aliases
|
|
1054
1054
|
export { default as FileSymlinkIcon } from '../icons/file-symlink';
|
|
1055
1055
|
// FileTerminal aliases
|
|
@@ -1062,10 +1062,10 @@ export { default as FileType2Icon } from '../icons/file-type-2';
|
|
|
1062
1062
|
export { default as FileTypeIcon } from '../icons/file-type';
|
|
1063
1063
|
// FileUp aliases
|
|
1064
1064
|
export { default as FileUpIcon } from '../icons/file-up';
|
|
1065
|
-
// FileVolume2 aliases
|
|
1066
|
-
export { default as FileVolume2Icon } from '../icons/file-volume-2';
|
|
1067
1065
|
// FileUser aliases
|
|
1068
1066
|
export { default as FileUserIcon } from '../icons/file-user';
|
|
1067
|
+
// FileVolume2 aliases
|
|
1068
|
+
export { default as FileVolume2Icon } from '../icons/file-volume-2';
|
|
1069
1069
|
// FileVolume aliases
|
|
1070
1070
|
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1071
1071
|
// FileWarning aliases
|
|
@@ -1080,12 +1080,12 @@ export { default as FileIcon } from '../icons/file';
|
|
|
1080
1080
|
export { default as FilesIcon } from '../icons/files';
|
|
1081
1081
|
// Film aliases
|
|
1082
1082
|
export { default as FilmIcon } from '../icons/film';
|
|
1083
|
+
// Fingerprint aliases
|
|
1084
|
+
export { default as FingerprintIcon } from '../icons/fingerprint';
|
|
1083
1085
|
// FireExtinguisher aliases
|
|
1084
1086
|
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1085
1087
|
// FishOff aliases
|
|
1086
1088
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1087
|
-
// Fingerprint aliases
|
|
1088
|
-
export { default as FingerprintIcon } from '../icons/fingerprint';
|
|
1089
1089
|
// FishSymbol aliases
|
|
1090
1090
|
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1091
1091
|
// Fish aliases
|
|
@@ -1096,46 +1096,46 @@ export { default as FlagOffIcon } from '../icons/flag-off';
|
|
|
1096
1096
|
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1097
1097
|
// FlagTriangleRight aliases
|
|
1098
1098
|
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1099
|
-
// Flag aliases
|
|
1100
|
-
export { default as FlagIcon } from '../icons/flag';
|
|
1101
1099
|
// FlameKindling aliases
|
|
1102
1100
|
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1101
|
+
// Flag aliases
|
|
1102
|
+
export { default as FlagIcon } from '../icons/flag';
|
|
1103
1103
|
// Flame aliases
|
|
1104
1104
|
export { default as FlameIcon } from '../icons/flame';
|
|
1105
1105
|
// FlashlightOff aliases
|
|
1106
1106
|
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1107
1107
|
// Flashlight aliases
|
|
1108
1108
|
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1109
|
-
// FlaskConical aliases
|
|
1110
|
-
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1111
1109
|
// FlaskConicalOff aliases
|
|
1112
1110
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1113
1111
|
// FlaskRound aliases
|
|
1114
1112
|
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1115
|
-
//
|
|
1116
|
-
export { default as
|
|
1113
|
+
// FlaskConical aliases
|
|
1114
|
+
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1117
1115
|
// FlipHorizontal aliases
|
|
1118
1116
|
export { default as FlipHorizontalIcon } from '../icons/flip-horizontal';
|
|
1117
|
+
// FlipHorizontal2 aliases
|
|
1118
|
+
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1119
1119
|
// FlipVertical2 aliases
|
|
1120
1120
|
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1121
1121
|
// FlipVertical aliases
|
|
1122
1122
|
export { default as FlipVerticalIcon } from '../icons/flip-vertical';
|
|
1123
1123
|
// Flower2 aliases
|
|
1124
1124
|
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1125
|
-
// Focus aliases
|
|
1126
|
-
export { default as FocusIcon } from '../icons/focus';
|
|
1127
1125
|
// Flower aliases
|
|
1128
1126
|
export { default as FlowerIcon } from '../icons/flower';
|
|
1129
1127
|
// FoldHorizontal aliases
|
|
1130
1128
|
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1129
|
+
// Focus aliases
|
|
1130
|
+
export { default as FocusIcon } from '../icons/focus';
|
|
1131
1131
|
// FoldVertical aliases
|
|
1132
1132
|
export { default as FoldVerticalIcon } from '../icons/fold-vertical';
|
|
1133
1133
|
// FolderArchive aliases
|
|
1134
1134
|
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1135
|
-
// FolderClock aliases
|
|
1136
|
-
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1137
1135
|
// FolderCheck aliases
|
|
1138
1136
|
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1137
|
+
// FolderClock aliases
|
|
1138
|
+
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1139
1139
|
// FolderClosed aliases
|
|
1140
1140
|
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1141
1141
|
// FolderCode aliases
|
|
@@ -1144,20 +1144,20 @@ export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
|
1144
1144
|
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1145
1145
|
// FolderDown aliases
|
|
1146
1146
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1147
|
-
// FolderGit2 aliases
|
|
1148
|
-
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1149
1147
|
// FolderGit aliases
|
|
1150
1148
|
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1149
|
+
// FolderGit2 aliases
|
|
1150
|
+
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1151
1151
|
// FolderHeart aliases
|
|
1152
1152
|
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1153
1153
|
// FolderInput aliases
|
|
1154
1154
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1155
1155
|
// FolderKanban aliases
|
|
1156
1156
|
export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
1157
|
-
// FolderKey aliases
|
|
1158
|
-
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1159
1157
|
// FolderLock aliases
|
|
1160
1158
|
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1159
|
+
// FolderKey aliases
|
|
1160
|
+
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1161
1161
|
// FolderMinus aliases
|
|
1162
1162
|
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1163
1163
|
// FolderOpenDot aliases
|
|
@@ -1174,16 +1174,16 @@ export { default as FolderRootIcon } from '../icons/folder-root';
|
|
|
1174
1174
|
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1175
1175
|
// FolderSearch aliases
|
|
1176
1176
|
export { default as FolderSearchIcon } from '../icons/folder-search';
|
|
1177
|
-
// FolderSync aliases
|
|
1178
|
-
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1179
1177
|
// FolderSymlink aliases
|
|
1180
1178
|
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1179
|
+
// FolderSync aliases
|
|
1180
|
+
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1181
1181
|
// FolderTree aliases
|
|
1182
1182
|
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1183
|
-
// FolderX aliases
|
|
1184
|
-
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1185
1183
|
// FolderUp aliases
|
|
1186
1184
|
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1185
|
+
// FolderX aliases
|
|
1186
|
+
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1187
1187
|
// Folder aliases
|
|
1188
1188
|
export { default as FolderIcon } from '../icons/folder';
|
|
1189
1189
|
// Folders aliases
|
|
@@ -1218,14 +1218,14 @@ export { default as GalleryVerticalEndIcon } from '../icons/gallery-vertical-end
|
|
|
1218
1218
|
export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
1219
1219
|
// Gamepad2 aliases
|
|
1220
1220
|
export { default as Gamepad2Icon } from '../icons/gamepad-2';
|
|
1221
|
-
// Gamepad aliases
|
|
1222
|
-
export { default as GamepadIcon } from '../icons/gamepad';
|
|
1223
1221
|
// Gauge aliases
|
|
1224
1222
|
export { default as GaugeIcon } from '../icons/gauge';
|
|
1225
1223
|
// Gavel aliases
|
|
1226
1224
|
export { default as GavelIcon } from '../icons/gavel';
|
|
1227
1225
|
// Gem aliases
|
|
1228
1226
|
export { default as GemIcon } from '../icons/gem';
|
|
1227
|
+
// Gamepad aliases
|
|
1228
|
+
export { default as GamepadIcon } from '../icons/gamepad';
|
|
1229
1229
|
// GeorgianLari aliases
|
|
1230
1230
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1231
1231
|
// Ghost aliases
|
|
@@ -1234,32 +1234,32 @@ export { default as GhostIcon } from '../icons/ghost';
|
|
|
1234
1234
|
export { default as GiftIcon } from '../icons/gift';
|
|
1235
1235
|
// GitBranchPlus aliases
|
|
1236
1236
|
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1237
|
-
// GitCommitVertical aliases
|
|
1238
|
-
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1239
|
-
// GitBranch aliases
|
|
1240
|
-
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1241
1237
|
// GitCompareArrows aliases
|
|
1242
1238
|
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1239
|
+
// GitBranch aliases
|
|
1240
|
+
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1241
|
+
// GitCommitVertical aliases
|
|
1242
|
+
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1243
1243
|
// GitCompare aliases
|
|
1244
1244
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1245
1245
|
// GitFork aliases
|
|
1246
1246
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1247
|
-
// GitGraph aliases
|
|
1248
|
-
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1249
1247
|
// GitMerge aliases
|
|
1250
1248
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1251
|
-
//
|
|
1252
|
-
export { default as
|
|
1249
|
+
// GitGraph aliases
|
|
1250
|
+
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1253
1251
|
// GitPullRequestClosed aliases
|
|
1254
1252
|
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1255
1253
|
// GitPullRequestCreateArrow aliases
|
|
1256
1254
|
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1255
|
+
// GitPullRequestArrow aliases
|
|
1256
|
+
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1257
1257
|
// GitPullRequestCreate aliases
|
|
1258
1258
|
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1259
|
-
// GitPullRequestDraft aliases
|
|
1260
|
-
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1261
1259
|
// GitPullRequest aliases
|
|
1262
1260
|
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1261
|
+
// GitPullRequestDraft aliases
|
|
1262
|
+
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1263
1263
|
// Github aliases
|
|
1264
1264
|
export { default as GithubIcon } from '../icons/github';
|
|
1265
1265
|
// Gitlab aliases
|
|
@@ -1276,8 +1276,6 @@ export { default as GlobeIcon } from '../icons/globe';
|
|
|
1276
1276
|
export { default as GpuIcon } from '../icons/gpu';
|
|
1277
1277
|
// Goal aliases
|
|
1278
1278
|
export { default as GoalIcon } from '../icons/goal';
|
|
1279
|
-
// Grab aliases
|
|
1280
|
-
export { default as GrabIcon } from '../icons/grab';
|
|
1281
1279
|
// GraduationCap aliases
|
|
1282
1280
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1283
1281
|
// Grape aliases
|
|
@@ -1290,10 +1288,10 @@ export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
|
1290
1288
|
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1291
1289
|
// Group aliases
|
|
1292
1290
|
export { default as GroupIcon } from '../icons/group';
|
|
1293
|
-
// Guitar aliases
|
|
1294
|
-
export { default as GuitarIcon } from '../icons/guitar';
|
|
1295
1291
|
// Grip aliases
|
|
1296
1292
|
export { default as GripIcon } from '../icons/grip';
|
|
1293
|
+
// Guitar aliases
|
|
1294
|
+
export { default as GuitarIcon } from '../icons/guitar';
|
|
1297
1295
|
// Ham aliases
|
|
1298
1296
|
export { default as HamIcon } from '../icons/ham';
|
|
1299
1297
|
// Hamburger aliases
|
|
@@ -1302,20 +1300,22 @@ export { default as HamburgerIcon } from '../icons/hamburger';
|
|
|
1302
1300
|
export { default as HammerIcon } from '../icons/hammer';
|
|
1303
1301
|
// HandCoins aliases
|
|
1304
1302
|
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1305
|
-
//
|
|
1306
|
-
export { default as
|
|
1303
|
+
// HandFist aliases
|
|
1304
|
+
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1307
1305
|
// HandHeart aliases
|
|
1308
1306
|
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1309
1307
|
// HandPlatter aliases
|
|
1310
1308
|
export { default as HandPlatterIcon } from '../icons/hand-platter';
|
|
1309
|
+
// HandMetal aliases
|
|
1310
|
+
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1311
1311
|
// Hand aliases
|
|
1312
1312
|
export { default as HandIcon } from '../icons/hand';
|
|
1313
|
-
// HardDriveDownload aliases
|
|
1314
|
-
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1315
1313
|
// Handbag aliases
|
|
1316
1314
|
export { default as HandbagIcon } from '../icons/handbag';
|
|
1317
1315
|
// Handshake aliases
|
|
1318
1316
|
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1317
|
+
// HardDriveDownload aliases
|
|
1318
|
+
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1319
1319
|
// HardDriveUpload aliases
|
|
1320
1320
|
export { default as HardDriveUploadIcon } from '../icons/hard-drive-upload';
|
|
1321
1321
|
// HardDrive aliases
|
|
@@ -1324,10 +1324,10 @@ export { default as HardDriveIcon } from '../icons/hard-drive';
|
|
|
1324
1324
|
export { default as HardHatIcon } from '../icons/hard-hat';
|
|
1325
1325
|
// Hash aliases
|
|
1326
1326
|
export { default as HashIcon } from '../icons/hash';
|
|
1327
|
-
// Haze aliases
|
|
1328
|
-
export { default as HazeIcon } from '../icons/haze';
|
|
1329
1327
|
// HatGlasses aliases
|
|
1330
1328
|
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1329
|
+
// Haze aliases
|
|
1330
|
+
export { default as HazeIcon } from '../icons/haze';
|
|
1331
1331
|
// HdmiPort aliases
|
|
1332
1332
|
export { default as HdmiPortIcon } from '../icons/hdmi-port';
|
|
1333
1333
|
// Heading1 aliases
|
|
@@ -1342,10 +1342,10 @@ export { default as Heading4Icon } from '../icons/heading-4';
|
|
|
1342
1342
|
export { default as Heading5Icon } from '../icons/heading-5';
|
|
1343
1343
|
// Heading aliases
|
|
1344
1344
|
export { default as HeadingIcon } from '../icons/heading';
|
|
1345
|
-
// Heading6 aliases
|
|
1346
|
-
export { default as Heading6Icon } from '../icons/heading-6';
|
|
1347
1345
|
// HeadphoneOff aliases
|
|
1348
1346
|
export { default as HeadphoneOffIcon } from '../icons/headphone-off';
|
|
1347
|
+
// Heading6 aliases
|
|
1348
|
+
export { default as Heading6Icon } from '../icons/heading-6';
|
|
1349
1349
|
// Headphones aliases
|
|
1350
1350
|
export { default as HeadphonesIcon } from '../icons/headphones';
|
|
1351
1351
|
// Headset aliases
|
|
@@ -1354,10 +1354,10 @@ export { default as HeadsetIcon } from '../icons/headset';
|
|
|
1354
1354
|
export { default as HeartCrackIcon } from '../icons/heart-crack';
|
|
1355
1355
|
// HeartHandshake aliases
|
|
1356
1356
|
export { default as HeartHandshakeIcon } from '../icons/heart-handshake';
|
|
1357
|
-
// HeartOff aliases
|
|
1358
|
-
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1359
1357
|
// HeartMinus aliases
|
|
1360
1358
|
export { default as HeartMinusIcon } from '../icons/heart-minus';
|
|
1359
|
+
// HeartOff aliases
|
|
1360
|
+
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1361
1361
|
// HeartPlus aliases
|
|
1362
1362
|
export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
1363
1363
|
// HeartPulse aliases
|
|
@@ -1378,48 +1378,48 @@ export { default as HopOffIcon } from '../icons/hop-off';
|
|
|
1378
1378
|
export { default as HopIcon } from '../icons/hop';
|
|
1379
1379
|
// Hospital aliases
|
|
1380
1380
|
export { default as HospitalIcon } from '../icons/hospital';
|
|
1381
|
+
// Hourglass aliases
|
|
1382
|
+
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1381
1383
|
// Hotel aliases
|
|
1382
1384
|
export { default as HotelIcon } from '../icons/hotel';
|
|
1383
1385
|
// HousePlug aliases
|
|
1384
1386
|
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1385
|
-
// Hourglass aliases
|
|
1386
|
-
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1387
|
-
// HousePlus aliases
|
|
1388
|
-
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1389
1387
|
// HouseWifi aliases
|
|
1390
1388
|
export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
1389
|
+
// HousePlus aliases
|
|
1390
|
+
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1391
1391
|
// IdCardLanyard aliases
|
|
1392
1392
|
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1393
1393
|
// IdCard aliases
|
|
1394
1394
|
export { default as IdCardIcon } from '../icons/id-card';
|
|
1395
1395
|
// ImageDown aliases
|
|
1396
1396
|
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1397
|
-
// ImageOff aliases
|
|
1398
|
-
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1399
1397
|
// ImageMinus aliases
|
|
1400
1398
|
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1399
|
+
// ImageOff aliases
|
|
1400
|
+
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1401
1401
|
// ImagePlay aliases
|
|
1402
1402
|
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1403
1403
|
// ImagePlus aliases
|
|
1404
1404
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1405
|
+
// ImageUpscale aliases
|
|
1406
|
+
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1405
1407
|
// ImageUp aliases
|
|
1406
1408
|
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1407
1409
|
// Image aliases
|
|
1408
1410
|
export { default as ImageIcon } from '../icons/image';
|
|
1409
|
-
// ImageUpscale aliases
|
|
1410
|
-
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1411
1411
|
// Images aliases
|
|
1412
1412
|
export { default as ImagesIcon } from '../icons/images';
|
|
1413
|
-
// Import aliases
|
|
1414
|
-
export { default as ImportIcon } from '../icons/import';
|
|
1415
1413
|
// Inbox aliases
|
|
1416
1414
|
export { default as InboxIcon } from '../icons/inbox';
|
|
1415
|
+
// Import aliases
|
|
1416
|
+
export { default as ImportIcon } from '../icons/import';
|
|
1417
1417
|
// IndianRupee aliases
|
|
1418
1418
|
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1419
|
-
// Info aliases
|
|
1420
|
-
export { default as InfoIcon } from '../icons/info';
|
|
1421
1419
|
// Infinity aliases
|
|
1422
1420
|
export { default as InfinityIcon } from '../icons/infinity';
|
|
1421
|
+
// Info aliases
|
|
1422
|
+
export { default as InfoIcon } from '../icons/info';
|
|
1423
1423
|
// Instagram aliases
|
|
1424
1424
|
export { default as InstagramIcon } from '../icons/instagram';
|
|
1425
1425
|
// InspectionPanel aliases
|
|
@@ -1430,38 +1430,38 @@ export { default as ItalicIcon } from '../icons/italic';
|
|
|
1430
1430
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1431
1431
|
// IterationCw aliases
|
|
1432
1432
|
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1433
|
-
// JapaneseYen aliases
|
|
1434
|
-
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1435
1433
|
// Joystick aliases
|
|
1436
1434
|
export { default as JoystickIcon } from '../icons/joystick';
|
|
1437
|
-
//
|
|
1438
|
-
export { default as
|
|
1435
|
+
// JapaneseYen aliases
|
|
1436
|
+
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1439
1437
|
// Kanban aliases
|
|
1440
1438
|
export { default as KanbanIcon } from '../icons/kanban';
|
|
1439
|
+
// KeyRound aliases
|
|
1440
|
+
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1441
1441
|
// KeySquare aliases
|
|
1442
1442
|
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1443
1443
|
// Key aliases
|
|
1444
1444
|
export { default as KeyIcon } from '../icons/key';
|
|
1445
|
-
// KeyboardMusic aliases
|
|
1446
|
-
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1447
1445
|
// KeyboardOff aliases
|
|
1448
1446
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1449
|
-
//
|
|
1450
|
-
export { default as
|
|
1447
|
+
// KeyboardMusic aliases
|
|
1448
|
+
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1451
1449
|
// Keyboard aliases
|
|
1452
1450
|
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1451
|
+
// LampCeiling aliases
|
|
1452
|
+
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1453
1453
|
// LampDesk aliases
|
|
1454
1454
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1455
1455
|
// LampFloor aliases
|
|
1456
1456
|
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1457
|
-
// LampWallDown aliases
|
|
1458
|
-
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1459
1457
|
// LampWallUp aliases
|
|
1460
1458
|
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1461
|
-
//
|
|
1462
|
-
export { default as
|
|
1459
|
+
// LampWallDown aliases
|
|
1460
|
+
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1463
1461
|
// LandPlot aliases
|
|
1464
1462
|
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1463
|
+
// Lamp aliases
|
|
1464
|
+
export { default as LampIcon } from '../icons/lamp';
|
|
1465
1465
|
// Landmark aliases
|
|
1466
1466
|
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1467
1467
|
// Languages aliases
|
|
@@ -1472,26 +1472,26 @@ export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check
|
|
|
1472
1472
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1473
1473
|
// Laptop aliases
|
|
1474
1474
|
export { default as LaptopIcon } from '../icons/laptop';
|
|
1475
|
-
// Lasso aliases
|
|
1476
|
-
export { default as LassoIcon } from '../icons/lasso';
|
|
1477
1475
|
// Layers2 aliases
|
|
1478
1476
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1477
|
+
// Lasso aliases
|
|
1478
|
+
export { default as LassoIcon } from '../icons/lasso';
|
|
1479
1479
|
// Laugh aliases
|
|
1480
1480
|
export { default as LaughIcon } from '../icons/laugh';
|
|
1481
1481
|
// LayoutDashboard aliases
|
|
1482
1482
|
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1483
1483
|
// LayoutGrid aliases
|
|
1484
1484
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1485
|
+
// LayoutList aliases
|
|
1486
|
+
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1485
1487
|
// LayoutPanelLeft aliases
|
|
1486
1488
|
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1487
1489
|
// LayoutPanelTop aliases
|
|
1488
1490
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1489
|
-
// LayoutList aliases
|
|
1490
|
-
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1491
|
-
// LayoutTemplate aliases
|
|
1492
|
-
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1493
1491
|
// Leaf aliases
|
|
1494
1492
|
export { default as LeafIcon } from '../icons/leaf';
|
|
1493
|
+
// LayoutTemplate aliases
|
|
1494
|
+
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1495
1495
|
// LeafyGreen aliases
|
|
1496
1496
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1497
1497
|
// Lectern aliases
|
|
@@ -1500,16 +1500,16 @@ export { default as LecternIcon } from '../icons/lectern';
|
|
|
1500
1500
|
export { default as LetterTextIcon } from '../icons/letter-text';
|
|
1501
1501
|
// LibraryBig aliases
|
|
1502
1502
|
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1503
|
-
// Library aliases
|
|
1504
|
-
export { default as LibraryIcon } from '../icons/library';
|
|
1505
1503
|
// LifeBuoy aliases
|
|
1506
1504
|
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1505
|
+
// Library aliases
|
|
1506
|
+
export { default as LibraryIcon } from '../icons/library';
|
|
1507
1507
|
// Ligature aliases
|
|
1508
1508
|
export { default as LigatureIcon } from '../icons/ligature';
|
|
1509
|
-
// Lightbulb aliases
|
|
1510
|
-
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1511
1509
|
// LightbulbOff aliases
|
|
1512
1510
|
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1511
|
+
// Lightbulb aliases
|
|
1512
|
+
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1513
1513
|
// LineSquiggle aliases
|
|
1514
1514
|
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1515
1515
|
// Link2Off aliases
|
|
@@ -1522,30 +1522,30 @@ export { default as LinkIcon } from '../icons/link';
|
|
|
1522
1522
|
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1523
1523
|
// ListCheck aliases
|
|
1524
1524
|
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1525
|
-
// ListCollapse aliases
|
|
1526
|
-
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1527
|
-
// ListChecks aliases
|
|
1528
|
-
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1529
1525
|
// ListEnd aliases
|
|
1530
1526
|
export { default as ListEndIcon } from '../icons/list-end';
|
|
1531
|
-
//
|
|
1532
|
-
export { default as
|
|
1527
|
+
// ListChecks aliases
|
|
1528
|
+
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1529
|
+
// ListCollapse aliases
|
|
1530
|
+
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1533
1531
|
// ListFilter aliases
|
|
1534
1532
|
export { default as ListFilterIcon } from '../icons/list-filter';
|
|
1533
|
+
// ListFilterPlus aliases
|
|
1534
|
+
export { default as ListFilterPlusIcon } from '../icons/list-filter-plus';
|
|
1535
1535
|
// ListMinus aliases
|
|
1536
1536
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1537
|
+
// ListOrdered aliases
|
|
1538
|
+
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1537
1539
|
// ListMusic aliases
|
|
1538
1540
|
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1539
1541
|
// ListPlus aliases
|
|
1540
1542
|
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1541
1543
|
// ListRestart aliases
|
|
1542
1544
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1543
|
-
// ListOrdered aliases
|
|
1544
|
-
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1545
|
-
// ListTodo aliases
|
|
1546
|
-
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1547
1545
|
// ListStart aliases
|
|
1548
1546
|
export { default as ListStartIcon } from '../icons/list-start';
|
|
1547
|
+
// ListTodo aliases
|
|
1548
|
+
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1549
1549
|
// ListTree aliases
|
|
1550
1550
|
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1551
1551
|
// ListVideo aliases
|
|
@@ -1572,10 +1572,10 @@ export { default as LockIcon } from '../icons/lock';
|
|
|
1572
1572
|
export { default as LogInIcon } from '../icons/log-in';
|
|
1573
1573
|
// LogOut aliases
|
|
1574
1574
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1575
|
-
// Lollipop aliases
|
|
1576
|
-
export { default as LollipopIcon } from '../icons/lollipop';
|
|
1577
1575
|
// Logs aliases
|
|
1578
1576
|
export { default as LogsIcon } from '../icons/logs';
|
|
1577
|
+
// Lollipop aliases
|
|
1578
|
+
export { default as LollipopIcon } from '../icons/lollipop';
|
|
1579
1579
|
// Luggage aliases
|
|
1580
1580
|
export { default as LuggageIcon } from '../icons/luggage';
|
|
1581
1581
|
// MailCheck aliases
|
|
@@ -1590,22 +1590,22 @@ export { default as MailOpenIcon } from '../icons/mail-open';
|
|
|
1590
1590
|
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1591
1591
|
// MailSearch aliases
|
|
1592
1592
|
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1593
|
-
// MailWarning aliases
|
|
1594
|
-
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1595
1593
|
// MailX aliases
|
|
1596
1594
|
export { default as MailXIcon } from '../icons/mail-x';
|
|
1597
|
-
//
|
|
1598
|
-
export { default as
|
|
1595
|
+
// MailWarning aliases
|
|
1596
|
+
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1599
1597
|
// Mailbox aliases
|
|
1600
1598
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1599
|
+
// Mail aliases
|
|
1600
|
+
export { default as MailIcon } from '../icons/mail';
|
|
1601
1601
|
// Mails aliases
|
|
1602
1602
|
export { default as MailsIcon } from '../icons/mails';
|
|
1603
|
+
// MapPinCheckInside aliases
|
|
1604
|
+
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1603
1605
|
// MapMinus aliases
|
|
1604
1606
|
export { default as MapMinusIcon } from '../icons/map-minus';
|
|
1605
1607
|
// MapPinCheck aliases
|
|
1606
1608
|
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1607
|
-
// MapPinCheckInside aliases
|
|
1608
|
-
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1609
1609
|
// MapPinHouse aliases
|
|
1610
1610
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1611
1611
|
// MapPinMinusInside aliases
|
|
@@ -1626,76 +1626,76 @@ export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
|
1626
1626
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1627
1627
|
// MapPinned aliases
|
|
1628
1628
|
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1629
|
-
// MapPlus aliases
|
|
1630
|
-
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1631
1629
|
// Map aliases
|
|
1632
1630
|
export { default as MapIcon } from '../icons/map';
|
|
1633
|
-
//
|
|
1634
|
-
export { default as
|
|
1635
|
-
// Martini aliases
|
|
1636
|
-
export { default as MartiniIcon } from '../icons/martini';
|
|
1631
|
+
// MapPlus aliases
|
|
1632
|
+
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1637
1633
|
// MarsStroke aliases
|
|
1638
1634
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1639
|
-
//
|
|
1640
|
-
export { default as
|
|
1635
|
+
// Mars aliases
|
|
1636
|
+
export { default as MarsIcon } from '../icons/mars';
|
|
1641
1637
|
// Maximize2 aliases
|
|
1642
1638
|
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1639
|
+
// Martini aliases
|
|
1640
|
+
export { default as MartiniIcon } from '../icons/martini';
|
|
1643
1641
|
// Maximize aliases
|
|
1644
1642
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1643
|
+
// Medal aliases
|
|
1644
|
+
export { default as MedalIcon } from '../icons/medal';
|
|
1645
1645
|
// MegaphoneOff aliases
|
|
1646
1646
|
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1647
|
-
// Meh aliases
|
|
1648
|
-
export { default as MehIcon } from '../icons/meh';
|
|
1649
1647
|
// Megaphone aliases
|
|
1650
1648
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1649
|
+
// Meh aliases
|
|
1650
|
+
export { default as MehIcon } from '../icons/meh';
|
|
1651
|
+
// Menu aliases
|
|
1652
|
+
export { default as MenuIcon } from '../icons/menu';
|
|
1651
1653
|
// MemoryStick aliases
|
|
1652
1654
|
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1653
1655
|
// Merge aliases
|
|
1654
1656
|
export { default as MergeIcon } from '../icons/merge';
|
|
1655
|
-
// MessageCircleCode aliases
|
|
1656
|
-
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1657
|
-
// Menu aliases
|
|
1658
|
-
export { default as MenuIcon } from '../icons/menu';
|
|
1659
1657
|
// MessageCircleDashed aliases
|
|
1660
1658
|
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1659
|
+
// MessageCircleCode aliases
|
|
1660
|
+
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1661
1661
|
// MessageCircleHeart aliases
|
|
1662
1662
|
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1663
1663
|
// MessageCircleOff aliases
|
|
1664
1664
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1665
|
-
// MessageCircleMore aliases
|
|
1666
|
-
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1667
1665
|
// MessageCirclePlus aliases
|
|
1668
1666
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1667
|
+
// MessageCircleMore aliases
|
|
1668
|
+
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1669
1669
|
// MessageCircleReply aliases
|
|
1670
1670
|
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1671
1671
|
// MessageCircleWarning aliases
|
|
1672
1672
|
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1673
|
-
// MessageCircle aliases
|
|
1674
|
-
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1675
1673
|
// MessageCircleX aliases
|
|
1676
1674
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1675
|
+
// MessageCircle aliases
|
|
1676
|
+
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1677
1677
|
// MessageSquareCode aliases
|
|
1678
1678
|
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1679
|
-
// MessageSquareDiff aliases
|
|
1680
|
-
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1681
1679
|
// MessageSquareDashed aliases
|
|
1682
1680
|
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1681
|
+
// MessageSquareDiff aliases
|
|
1682
|
+
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1683
1683
|
// MessageSquareDot aliases
|
|
1684
1684
|
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1685
|
-
// MessageSquareLock aliases
|
|
1686
|
-
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1687
1685
|
// MessageSquareHeart aliases
|
|
1688
1686
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1687
|
+
// MessageSquareLock aliases
|
|
1688
|
+
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1689
1689
|
// MessageSquareMore aliases
|
|
1690
1690
|
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1691
|
-
// MessageSquareOff aliases
|
|
1692
|
-
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1693
1691
|
// MessageSquarePlus aliases
|
|
1694
1692
|
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1695
|
-
//
|
|
1696
|
-
export { default as
|
|
1693
|
+
// MessageSquareOff aliases
|
|
1694
|
+
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1697
1695
|
// MessageSquareReply aliases
|
|
1698
1696
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1697
|
+
// MessageSquareQuote aliases
|
|
1698
|
+
export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote';
|
|
1699
1699
|
// MessageSquareShare aliases
|
|
1700
1700
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1701
1701
|
// MessageSquareText aliases
|
|
@@ -1706,20 +1706,20 @@ export { default as MessageSquareWarningIcon } from '../icons/message-square-war
|
|
|
1706
1706
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1707
1707
|
// MessageSquare aliases
|
|
1708
1708
|
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1709
|
-
// MicOff aliases
|
|
1710
|
-
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1711
1709
|
// MessagesSquare aliases
|
|
1712
1710
|
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1713
|
-
//
|
|
1714
|
-
export { default as
|
|
1711
|
+
// MicOff aliases
|
|
1712
|
+
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1715
1713
|
// Mic aliases
|
|
1716
1714
|
export { default as MicIcon } from '../icons/mic';
|
|
1715
|
+
// Microchip aliases
|
|
1716
|
+
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1717
1717
|
// Microscope aliases
|
|
1718
1718
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1719
|
-
// Microwave aliases
|
|
1720
|
-
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1721
1719
|
// Milestone aliases
|
|
1722
1720
|
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1721
|
+
// Microwave aliases
|
|
1722
|
+
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1723
1723
|
// MilkOff aliases
|
|
1724
1724
|
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1725
1725
|
// Milk aliases
|
|
@@ -1732,52 +1732,52 @@ export { default as MinimizeIcon } from '../icons/minimize';
|
|
|
1732
1732
|
export { default as MinusIcon } from '../icons/minus';
|
|
1733
1733
|
// MonitorCheck aliases
|
|
1734
1734
|
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1735
|
-
// MonitorCog aliases
|
|
1736
|
-
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1737
1735
|
// MonitorDot aliases
|
|
1738
1736
|
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1737
|
+
// MonitorCog aliases
|
|
1738
|
+
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1739
1739
|
// MonitorDown aliases
|
|
1740
1740
|
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1741
|
-
// MonitorPause aliases
|
|
1742
|
-
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1743
1741
|
// MonitorOff aliases
|
|
1744
1742
|
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1743
|
+
// MonitorPause aliases
|
|
1744
|
+
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1745
1745
|
// MonitorPlay aliases
|
|
1746
1746
|
export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
1747
1747
|
// MonitorSmartphone aliases
|
|
1748
1748
|
export { default as MonitorSmartphoneIcon } from '../icons/monitor-smartphone';
|
|
1749
|
-
// MonitorStop aliases
|
|
1750
|
-
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1751
1749
|
// MonitorSpeaker aliases
|
|
1752
1750
|
export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
1753
1751
|
// MonitorUp aliases
|
|
1754
1752
|
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1755
|
-
//
|
|
1756
|
-
export { default as
|
|
1753
|
+
// MonitorStop aliases
|
|
1754
|
+
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1757
1755
|
// MonitorX aliases
|
|
1758
1756
|
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1759
|
-
//
|
|
1760
|
-
export { default as
|
|
1757
|
+
// Monitor aliases
|
|
1758
|
+
export { default as MonitorIcon } from '../icons/monitor';
|
|
1761
1759
|
// MoonStar aliases
|
|
1762
1760
|
export { default as MoonStarIcon } from '../icons/moon-star';
|
|
1763
|
-
//
|
|
1764
|
-
export { default as
|
|
1761
|
+
// Moon aliases
|
|
1762
|
+
export { default as MoonIcon } from '../icons/moon';
|
|
1765
1763
|
// MountainSnow aliases
|
|
1766
1764
|
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1765
|
+
// Mountain aliases
|
|
1766
|
+
export { default as MountainIcon } from '../icons/mountain';
|
|
1767
1767
|
// MouseOff aliases
|
|
1768
1768
|
export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
1769
1769
|
// MousePointer2 aliases
|
|
1770
1770
|
export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
1771
1771
|
// MousePointerBan aliases
|
|
1772
1772
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1773
|
-
// MousePointer aliases
|
|
1774
|
-
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1775
1773
|
// MousePointerClick aliases
|
|
1776
1774
|
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1777
|
-
//
|
|
1778
|
-
export { default as
|
|
1775
|
+
// MousePointer aliases
|
|
1776
|
+
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1779
1777
|
// Mouse aliases
|
|
1780
1778
|
export { default as MouseIcon } from '../icons/mouse';
|
|
1779
|
+
// MoveDiagonal2 aliases
|
|
1780
|
+
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1781
1781
|
// MoveDiagonal aliases
|
|
1782
1782
|
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1783
1783
|
// MoveDownLeft aliases
|
|
@@ -1796,28 +1796,28 @@ export { default as MoveRightIcon } from '../icons/move-right';
|
|
|
1796
1796
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1797
1797
|
// MoveUpRight aliases
|
|
1798
1798
|
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1799
|
-
// MoveUp aliases
|
|
1800
|
-
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1801
1799
|
// MoveVertical aliases
|
|
1802
1800
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1803
|
-
//
|
|
1804
|
-
export { default as
|
|
1801
|
+
// MoveUp aliases
|
|
1802
|
+
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1805
1803
|
// Move aliases
|
|
1806
1804
|
export { default as MoveIcon } from '../icons/move';
|
|
1807
1805
|
// Music2 aliases
|
|
1808
1806
|
export { default as Music2Icon } from '../icons/music-2';
|
|
1807
|
+
// Music3 aliases
|
|
1808
|
+
export { default as Music3Icon } from '../icons/music-3';
|
|
1809
1809
|
// Music4 aliases
|
|
1810
1810
|
export { default as Music4Icon } from '../icons/music-4';
|
|
1811
|
-
// Navigation2 aliases
|
|
1812
|
-
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1813
|
-
// Navigation2Off aliases
|
|
1814
|
-
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1815
1811
|
// Music aliases
|
|
1816
1812
|
export { default as MusicIcon } from '../icons/music';
|
|
1817
|
-
//
|
|
1818
|
-
export { default as
|
|
1813
|
+
// Navigation2Off aliases
|
|
1814
|
+
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1815
|
+
// Navigation2 aliases
|
|
1816
|
+
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1819
1817
|
// NavigationOff aliases
|
|
1820
1818
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1819
|
+
// Navigation aliases
|
|
1820
|
+
export { default as NavigationIcon } from '../icons/navigation';
|
|
1821
1821
|
// Network aliases
|
|
1822
1822
|
export { default as NetworkIcon } from '../icons/network';
|
|
1823
1823
|
// Newspaper aliases
|
|
@@ -1828,30 +1828,30 @@ export { default as NfcIcon } from '../icons/nfc';
|
|
|
1828
1828
|
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1829
1829
|
// NotebookPen aliases
|
|
1830
1830
|
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1831
|
+
// NotebookText aliases
|
|
1832
|
+
export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
1831
1833
|
// NotebookTabs aliases
|
|
1832
1834
|
export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
1833
1835
|
// Notebook aliases
|
|
1834
1836
|
export { default as NotebookIcon } from '../icons/notebook';
|
|
1835
|
-
// NotebookText aliases
|
|
1836
|
-
export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
1837
1837
|
// NotepadTextDashed aliases
|
|
1838
1838
|
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1839
|
-
// NotepadText aliases
|
|
1840
|
-
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1841
1839
|
// NutOff aliases
|
|
1842
1840
|
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1843
|
-
//
|
|
1844
|
-
export { default as
|
|
1845
|
-
// Octagon aliases
|
|
1846
|
-
export { default as OctagonIcon } from '../icons/octagon';
|
|
1841
|
+
// NotepadText aliases
|
|
1842
|
+
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1847
1843
|
// OctagonMinus aliases
|
|
1848
1844
|
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1845
|
+
// Octagon aliases
|
|
1846
|
+
export { default as OctagonIcon } from '../icons/octagon';
|
|
1847
|
+
// Nut aliases
|
|
1848
|
+
export { default as NutIcon } from '../icons/nut';
|
|
1849
|
+
// Option aliases
|
|
1850
|
+
export { default as OptionIcon } from '../icons/option';
|
|
1849
1851
|
// Omega aliases
|
|
1850
1852
|
export { default as OmegaIcon } from '../icons/omega';
|
|
1851
1853
|
// Orbit aliases
|
|
1852
1854
|
export { default as OrbitIcon } from '../icons/orbit';
|
|
1853
|
-
// Option aliases
|
|
1854
|
-
export { default as OptionIcon } from '../icons/option';
|
|
1855
1855
|
// Origami aliases
|
|
1856
1856
|
export { default as OrigamiIcon } from '../icons/origami';
|
|
1857
1857
|
// Package2 aliases
|
|
@@ -1864,30 +1864,30 @@ export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
|
1864
1864
|
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1865
1865
|
// PackagePlus aliases
|
|
1866
1866
|
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1867
|
-
// PackageX aliases
|
|
1868
|
-
export { default as PackageXIcon } from '../icons/package-x';
|
|
1869
1867
|
// PackageSearch aliases
|
|
1870
1868
|
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1871
|
-
//
|
|
1872
|
-
export { default as
|
|
1869
|
+
// PackageX aliases
|
|
1870
|
+
export { default as PackageXIcon } from '../icons/package-x';
|
|
1873
1871
|
// PaintBucket aliases
|
|
1874
1872
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1873
|
+
// Package aliases
|
|
1874
|
+
export { default as PackageIcon } from '../icons/package';
|
|
1875
1875
|
// PaintRoller aliases
|
|
1876
1876
|
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1877
|
+
// Palette aliases
|
|
1878
|
+
export { default as PaletteIcon } from '../icons/palette';
|
|
1877
1879
|
// Paintbrush aliases
|
|
1878
1880
|
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1879
1881
|
// Panda aliases
|
|
1880
1882
|
export { default as PandaIcon } from '../icons/panda';
|
|
1881
|
-
// Palette aliases
|
|
1882
|
-
export { default as PaletteIcon } from '../icons/palette';
|
|
1883
1883
|
// PanelBottomClose aliases
|
|
1884
1884
|
export { default as PanelBottomCloseIcon } from '../icons/panel-bottom-close';
|
|
1885
1885
|
// PanelBottomOpen aliases
|
|
1886
1886
|
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1887
|
-
// PanelRightClose aliases
|
|
1888
|
-
export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
1889
1887
|
// PanelBottom aliases
|
|
1890
1888
|
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1889
|
+
// PanelRightClose aliases
|
|
1890
|
+
export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
1891
1891
|
// PanelRightOpen aliases
|
|
1892
1892
|
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1893
1893
|
// PanelRight aliases
|
|
@@ -1914,34 +1914,34 @@ export { default as PartyPopperIcon } from '../icons/party-popper';
|
|
|
1914
1914
|
export { default as PauseIcon } from '../icons/pause';
|
|
1915
1915
|
// PawPrint aliases
|
|
1916
1916
|
export { default as PawPrintIcon } from '../icons/paw-print';
|
|
1917
|
-
//
|
|
1918
|
-
export { default as
|
|
1917
|
+
// PcCase aliases
|
|
1918
|
+
export { default as PcCaseIcon } from '../icons/pc-case';
|
|
1919
1919
|
// PenTool aliases
|
|
1920
1920
|
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
1921
|
+
// PenOff aliases
|
|
1922
|
+
export { default as PenOffIcon } from '../icons/pen-off';
|
|
1921
1923
|
// PencilLine aliases
|
|
1922
1924
|
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
1923
1925
|
// PencilOff aliases
|
|
1924
1926
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
1925
|
-
// PcCase aliases
|
|
1926
|
-
export { default as PcCaseIcon } from '../icons/pc-case';
|
|
1927
1927
|
// Pencil aliases
|
|
1928
1928
|
export { default as PencilIcon } from '../icons/pencil';
|
|
1929
1929
|
// PencilRuler aliases
|
|
1930
1930
|
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
1931
|
-
// Percent aliases
|
|
1932
|
-
export { default as PercentIcon } from '../icons/percent';
|
|
1933
1931
|
// Pentagon aliases
|
|
1934
1932
|
export { default as PentagonIcon } from '../icons/pentagon';
|
|
1933
|
+
// Percent aliases
|
|
1934
|
+
export { default as PercentIcon } from '../icons/percent';
|
|
1935
1935
|
// PersonStanding aliases
|
|
1936
1936
|
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1937
1937
|
// PhilippinePeso aliases
|
|
1938
1938
|
export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
1939
1939
|
// PhoneCall aliases
|
|
1940
1940
|
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1941
|
-
// PhoneIncoming aliases
|
|
1942
|
-
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1943
1941
|
// PhoneForwarded aliases
|
|
1944
1942
|
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1943
|
+
// PhoneIncoming aliases
|
|
1944
|
+
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1945
1945
|
// PhoneMissed aliases
|
|
1946
1946
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
1947
1947
|
// PhoneOff aliases
|
|
@@ -1960,52 +1960,52 @@ export { default as PickaxeIcon } from '../icons/pickaxe';
|
|
|
1960
1960
|
export { default as PictureInPicture2Icon } from '../icons/picture-in-picture-2';
|
|
1961
1961
|
// PictureInPicture aliases
|
|
1962
1962
|
export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
1963
|
-
// PilcrowLeft aliases
|
|
1964
|
-
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1965
1963
|
// PiggyBank aliases
|
|
1966
1964
|
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
1967
|
-
//
|
|
1968
|
-
export { default as
|
|
1969
|
-
// Pilcrow aliases
|
|
1970
|
-
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
1965
|
+
// PilcrowLeft aliases
|
|
1966
|
+
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1971
1967
|
// PillBottle aliases
|
|
1972
1968
|
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
1973
|
-
//
|
|
1974
|
-
export { default as
|
|
1975
|
-
//
|
|
1976
|
-
export { default as
|
|
1969
|
+
// Pilcrow aliases
|
|
1970
|
+
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
1971
|
+
// PilcrowRight aliases
|
|
1972
|
+
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
1977
1973
|
// Pin aliases
|
|
1978
1974
|
export { default as PinIcon } from '../icons/pin';
|
|
1975
|
+
// PinOff aliases
|
|
1976
|
+
export { default as PinOffIcon } from '../icons/pin-off';
|
|
1977
|
+
// Pill aliases
|
|
1978
|
+
export { default as PillIcon } from '../icons/pill';
|
|
1979
1979
|
// Pipette aliases
|
|
1980
1980
|
export { default as PipetteIcon } from '../icons/pipette';
|
|
1981
|
+
// Pizza aliases
|
|
1982
|
+
export { default as PizzaIcon } from '../icons/pizza';
|
|
1981
1983
|
// PlaneLanding aliases
|
|
1982
1984
|
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
1983
1985
|
// PlaneTakeoff aliases
|
|
1984
1986
|
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
1985
|
-
// Pizza aliases
|
|
1986
|
-
export { default as PizzaIcon } from '../icons/pizza';
|
|
1987
1987
|
// Plane aliases
|
|
1988
1988
|
export { default as PlaneIcon } from '../icons/plane';
|
|
1989
|
-
//
|
|
1990
|
-
export { default as
|
|
1989
|
+
// Play aliases
|
|
1990
|
+
export { default as PlayIcon } from '../icons/play';
|
|
1991
1991
|
// Plug2 aliases
|
|
1992
1992
|
export { default as Plug2Icon } from '../icons/plug-2';
|
|
1993
|
+
// Plug aliases
|
|
1994
|
+
export { default as PlugIcon } from '../icons/plug';
|
|
1993
1995
|
// Plus aliases
|
|
1994
1996
|
export { default as PlusIcon } from '../icons/plus';
|
|
1995
|
-
// Play aliases
|
|
1996
|
-
export { default as PlayIcon } from '../icons/play';
|
|
1997
|
-
// Pocket aliases
|
|
1998
|
-
export { default as PocketIcon } from '../icons/pocket';
|
|
1999
1997
|
// PocketKnife aliases
|
|
2000
1998
|
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
1999
|
+
// Pocket aliases
|
|
2000
|
+
export { default as PocketIcon } from '../icons/pocket';
|
|
2001
2001
|
// Podcast aliases
|
|
2002
2002
|
export { default as PodcastIcon } from '../icons/podcast';
|
|
2003
2003
|
// PointerOff aliases
|
|
2004
2004
|
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2005
|
-
// Popcorn aliases
|
|
2006
|
-
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2007
2005
|
// Popsicle aliases
|
|
2008
2006
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2007
|
+
// Popcorn aliases
|
|
2008
|
+
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2009
2009
|
// Pointer aliases
|
|
2010
2010
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2011
2011
|
// PoundSterling aliases
|
|
@@ -2014,22 +2014,22 @@ export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
|
2014
2014
|
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2015
2015
|
// Power aliases
|
|
2016
2016
|
export { default as PowerIcon } from '../icons/power';
|
|
2017
|
-
// PrinterCheck aliases
|
|
2018
|
-
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2019
2017
|
// Presentation aliases
|
|
2020
2018
|
export { default as PresentationIcon } from '../icons/presentation';
|
|
2019
|
+
// PrinterCheck aliases
|
|
2020
|
+
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2021
2021
|
// Printer aliases
|
|
2022
2022
|
export { default as PrinterIcon } from '../icons/printer';
|
|
2023
2023
|
// Projector aliases
|
|
2024
2024
|
export { default as ProjectorIcon } from '../icons/projector';
|
|
2025
2025
|
// Proportions aliases
|
|
2026
2026
|
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2027
|
+
// Puzzle aliases
|
|
2028
|
+
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2027
2029
|
// Pyramid aliases
|
|
2028
2030
|
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2029
2031
|
// QrCode aliases
|
|
2030
2032
|
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2031
|
-
// Puzzle aliases
|
|
2032
|
-
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2033
2033
|
// Quote aliases
|
|
2034
2034
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2035
2035
|
// Rabbit aliases
|
|
@@ -2038,10 +2038,10 @@ export { default as RabbitIcon } from '../icons/rabbit';
|
|
|
2038
2038
|
export { default as RadarIcon } from '../icons/radar';
|
|
2039
2039
|
// Radiation aliases
|
|
2040
2040
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2041
|
-
// Radical aliases
|
|
2042
|
-
export { default as RadicalIcon } from '../icons/radical';
|
|
2043
2041
|
// RadioReceiver aliases
|
|
2044
2042
|
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2043
|
+
// Radical aliases
|
|
2044
|
+
export { default as RadicalIcon } from '../icons/radical';
|
|
2045
2045
|
// RadioTower aliases
|
|
2046
2046
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2047
2047
|
// Radio aliases
|
|
@@ -2050,20 +2050,20 @@ export { default as RadioIcon } from '../icons/radio';
|
|
|
2050
2050
|
export { default as RadiusIcon } from '../icons/radius';
|
|
2051
2051
|
// RailSymbol aliases
|
|
2052
2052
|
export { default as RailSymbolIcon } from '../icons/rail-symbol';
|
|
2053
|
-
// Rat aliases
|
|
2054
|
-
export { default as RatIcon } from '../icons/rat';
|
|
2055
2053
|
// Rainbow aliases
|
|
2056
2054
|
export { default as RainbowIcon } from '../icons/rainbow';
|
|
2055
|
+
// Rat aliases
|
|
2056
|
+
export { default as RatIcon } from '../icons/rat';
|
|
2057
2057
|
// Ratio aliases
|
|
2058
2058
|
export { default as RatioIcon } from '../icons/ratio';
|
|
2059
2059
|
// ReceiptCent aliases
|
|
2060
2060
|
export { default as ReceiptCentIcon } from '../icons/receipt-cent';
|
|
2061
|
+
// ReceiptIndianRupee aliases
|
|
2062
|
+
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2061
2063
|
// ReceiptEuro aliases
|
|
2062
2064
|
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2063
2065
|
// ReceiptJapaneseYen aliases
|
|
2064
2066
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2065
|
-
// ReceiptIndianRupee aliases
|
|
2066
|
-
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2067
2067
|
// ReceiptPoundSterling aliases
|
|
2068
2068
|
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2069
2069
|
// ReceiptRussianRuble aliases
|
|
@@ -2072,10 +2072,10 @@ export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-rub
|
|
|
2072
2072
|
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2073
2073
|
// ReceiptText aliases
|
|
2074
2074
|
export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
2075
|
-
// Receipt aliases
|
|
2076
|
-
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2077
2075
|
// ReceiptTurkishLira aliases
|
|
2078
2076
|
export { default as ReceiptTurkishLiraIcon } from '../icons/receipt-turkish-lira';
|
|
2077
|
+
// Receipt aliases
|
|
2078
|
+
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2079
2079
|
// RectangleCircle aliases
|
|
2080
2080
|
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2081
2081
|
// RectangleGoggles aliases
|
|
@@ -2086,40 +2086,40 @@ export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizonta
|
|
|
2086
2086
|
export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
2087
2087
|
// Recycle aliases
|
|
2088
2088
|
export { default as RecycleIcon } from '../icons/recycle';
|
|
2089
|
-
// Redo2 aliases
|
|
2090
|
-
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2091
|
-
// RefreshCcwDot aliases
|
|
2092
|
-
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2093
2089
|
// RedoDot aliases
|
|
2094
2090
|
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2091
|
+
// Redo2 aliases
|
|
2092
|
+
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2095
2093
|
// Redo aliases
|
|
2096
2094
|
export { default as RedoIcon } from '../icons/redo';
|
|
2097
|
-
//
|
|
2098
|
-
export { default as
|
|
2095
|
+
// RefreshCcwDot aliases
|
|
2096
|
+
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2099
2097
|
// RefreshCcw aliases
|
|
2100
2098
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2101
|
-
//
|
|
2102
|
-
export { default as
|
|
2099
|
+
// RefreshCwOff aliases
|
|
2100
|
+
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2103
2101
|
// RefreshCw aliases
|
|
2104
2102
|
export { default as RefreshCwIcon } from '../icons/refresh-cw';
|
|
2103
|
+
// Refrigerator aliases
|
|
2104
|
+
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2105
2105
|
// Regex aliases
|
|
2106
2106
|
export { default as RegexIcon } from '../icons/regex';
|
|
2107
2107
|
// RemoveFormatting aliases
|
|
2108
2108
|
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2109
2109
|
// Repeat2 aliases
|
|
2110
2110
|
export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
2111
|
-
// Repeat1 aliases
|
|
2112
|
-
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2113
2111
|
// Repeat aliases
|
|
2114
2112
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2113
|
+
// Repeat1 aliases
|
|
2114
|
+
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2115
2115
|
// ReplaceAll aliases
|
|
2116
2116
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2117
2117
|
// Replace aliases
|
|
2118
2118
|
export { default as ReplaceIcon } from '../icons/replace';
|
|
2119
|
-
// ReplyAll aliases
|
|
2120
|
-
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2121
2119
|
// Reply aliases
|
|
2122
2120
|
export { default as ReplyIcon } from '../icons/reply';
|
|
2121
|
+
// ReplyAll aliases
|
|
2122
|
+
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2123
2123
|
// Rewind aliases
|
|
2124
2124
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2125
2125
|
// Ribbon aliases
|
|
@@ -2136,54 +2136,54 @@ export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
|
2136
2136
|
export { default as RotateCcwSquareIcon } from '../icons/rotate-ccw-square';
|
|
2137
2137
|
// RotateCcw aliases
|
|
2138
2138
|
export { default as RotateCcwIcon } from '../icons/rotate-ccw';
|
|
2139
|
-
// RotateCw aliases
|
|
2140
|
-
export { default as RotateCwIcon } from '../icons/rotate-cw';
|
|
2141
2139
|
// RotateCwSquare aliases
|
|
2142
2140
|
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2143
|
-
//
|
|
2144
|
-
export { default as
|
|
2141
|
+
// RotateCw aliases
|
|
2142
|
+
export { default as RotateCwIcon } from '../icons/rotate-cw';
|
|
2145
2143
|
// Route aliases
|
|
2146
2144
|
export { default as RouteIcon } from '../icons/route';
|
|
2147
|
-
//
|
|
2148
|
-
export { default as
|
|
2145
|
+
// RouteOff aliases
|
|
2146
|
+
export { default as RouteOffIcon } from '../icons/route-off';
|
|
2149
2147
|
// Rows4 aliases
|
|
2150
2148
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2149
|
+
// Router aliases
|
|
2150
|
+
export { default as RouterIcon } from '../icons/router';
|
|
2151
2151
|
// Rss aliases
|
|
2152
2152
|
export { default as RssIcon } from '../icons/rss';
|
|
2153
|
-
// Ruler aliases
|
|
2154
|
-
export { default as RulerIcon } from '../icons/ruler';
|
|
2155
2153
|
// RulerDimensionLine aliases
|
|
2156
2154
|
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2155
|
+
// Ruler aliases
|
|
2156
|
+
export { default as RulerIcon } from '../icons/ruler';
|
|
2157
2157
|
// RussianRuble aliases
|
|
2158
2158
|
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2159
|
-
// Salad aliases
|
|
2160
|
-
export { default as SaladIcon } from '../icons/salad';
|
|
2161
|
-
// Sandwich aliases
|
|
2162
|
-
export { default as SandwichIcon } from '../icons/sandwich';
|
|
2163
2159
|
// Sailboat aliases
|
|
2164
2160
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2161
|
+
// Sandwich aliases
|
|
2162
|
+
export { default as SandwichIcon } from '../icons/sandwich';
|
|
2163
|
+
// Salad aliases
|
|
2164
|
+
export { default as SaladIcon } from '../icons/salad';
|
|
2165
2165
|
// SatelliteDish aliases
|
|
2166
2166
|
export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
2167
2167
|
// Satellite aliases
|
|
2168
2168
|
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2169
2169
|
// SaudiRiyal aliases
|
|
2170
2170
|
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2171
|
-
// Save aliases
|
|
2172
|
-
export { default as SaveIcon } from '../icons/save';
|
|
2173
2171
|
// SaveAll aliases
|
|
2174
2172
|
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2175
2173
|
// SaveOff aliases
|
|
2176
2174
|
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2175
|
+
// Save aliases
|
|
2176
|
+
export { default as SaveIcon } from '../icons/save';
|
|
2177
2177
|
// Scale aliases
|
|
2178
2178
|
export { default as ScaleIcon } from '../icons/scale';
|
|
2179
2179
|
// Scaling aliases
|
|
2180
2180
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2181
2181
|
// ScanBarcode aliases
|
|
2182
2182
|
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2183
|
-
// ScanFace aliases
|
|
2184
|
-
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2185
2183
|
// ScanEye aliases
|
|
2186
2184
|
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2185
|
+
// ScanFace aliases
|
|
2186
|
+
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2187
2187
|
// ScanHeart aliases
|
|
2188
2188
|
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2189
2189
|
// ScanLine aliases
|
|
@@ -2192,10 +2192,10 @@ export { default as ScanLineIcon } from '../icons/scan-line';
|
|
|
2192
2192
|
export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
2193
2193
|
// ScanSearch aliases
|
|
2194
2194
|
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2195
|
-
// Scan aliases
|
|
2196
|
-
export { default as ScanIcon } from '../icons/scan';
|
|
2197
2195
|
// ScanText aliases
|
|
2198
2196
|
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2197
|
+
// Scan aliases
|
|
2198
|
+
export { default as ScanIcon } from '../icons/scan';
|
|
2199
2199
|
// School aliases
|
|
2200
2200
|
export { default as SchoolIcon } from '../icons/school';
|
|
2201
2201
|
// ScissorsLineDashed aliases
|
|
@@ -2212,30 +2212,30 @@ export { default as ScrollTextIcon } from '../icons/scroll-text';
|
|
|
2212
2212
|
export { default as ScrollIcon } from '../icons/scroll';
|
|
2213
2213
|
// SearchCheck aliases
|
|
2214
2214
|
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2215
|
-
// SearchCode aliases
|
|
2216
|
-
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2217
2215
|
// SearchSlash aliases
|
|
2218
2216
|
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2217
|
+
// SearchCode aliases
|
|
2218
|
+
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2219
2219
|
// SearchX aliases
|
|
2220
2220
|
export { default as SearchXIcon } from '../icons/search-x';
|
|
2221
2221
|
// Search aliases
|
|
2222
2222
|
export { default as SearchIcon } from '../icons/search';
|
|
2223
2223
|
// Section aliases
|
|
2224
2224
|
export { default as SectionIcon } from '../icons/section';
|
|
2225
|
+
// SendToBack aliases
|
|
2226
|
+
export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
2225
2227
|
// Send aliases
|
|
2226
2228
|
export { default as SendIcon } from '../icons/send';
|
|
2227
2229
|
// SeparatorHorizontal aliases
|
|
2228
2230
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2229
|
-
// SendToBack aliases
|
|
2230
|
-
export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
2231
2231
|
// SeparatorVertical aliases
|
|
2232
2232
|
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2233
2233
|
// ServerCog aliases
|
|
2234
2234
|
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2235
|
-
// ServerOff aliases
|
|
2236
|
-
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2237
2235
|
// ServerCrash aliases
|
|
2238
2236
|
export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
2237
|
+
// ServerOff aliases
|
|
2238
|
+
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2239
2239
|
// Server aliases
|
|
2240
2240
|
export { default as ServerIcon } from '../icons/server';
|
|
2241
2241
|
// Settings2 aliases
|
|
@@ -2254,48 +2254,48 @@ export { default as SheetIcon } from '../icons/sheet';
|
|
|
2254
2254
|
export { default as ShellIcon } from '../icons/shell';
|
|
2255
2255
|
// ShieldAlert aliases
|
|
2256
2256
|
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2257
|
-
// ShieldCheck aliases
|
|
2258
|
-
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2259
2257
|
// ShieldBan aliases
|
|
2260
2258
|
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2261
|
-
//
|
|
2262
|
-
export { default as
|
|
2263
|
-
// ShieldMinus aliases
|
|
2264
|
-
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2259
|
+
// ShieldCheck aliases
|
|
2260
|
+
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2265
2261
|
// ShieldHalf aliases
|
|
2266
2262
|
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2263
|
+
// ShieldEllipsis aliases
|
|
2264
|
+
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2267
2265
|
// ShieldOff aliases
|
|
2268
2266
|
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2269
2267
|
// ShieldPlus aliases
|
|
2270
2268
|
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2271
2269
|
// ShieldUser aliases
|
|
2272
2270
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2273
|
-
//
|
|
2274
|
-
export { default as
|
|
2271
|
+
// ShieldMinus aliases
|
|
2272
|
+
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2275
2273
|
// ShipWheel aliases
|
|
2276
2274
|
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2277
2275
|
// Ship aliases
|
|
2278
2276
|
export { default as ShipIcon } from '../icons/ship';
|
|
2277
|
+
// Shield aliases
|
|
2278
|
+
export { default as ShieldIcon } from '../icons/shield';
|
|
2279
2279
|
// Shirt aliases
|
|
2280
2280
|
export { default as ShirtIcon } from '../icons/shirt';
|
|
2281
|
-
// ShoppingCart aliases
|
|
2282
|
-
export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
2283
|
-
// ShoppingBasket aliases
|
|
2284
|
-
export { default as ShoppingBasketIcon } from '../icons/shopping-basket';
|
|
2285
2281
|
// ShoppingBag aliases
|
|
2286
2282
|
export { default as ShoppingBagIcon } from '../icons/shopping-bag';
|
|
2283
|
+
// ShoppingBasket aliases
|
|
2284
|
+
export { default as ShoppingBasketIcon } from '../icons/shopping-basket';
|
|
2285
|
+
// ShoppingCart aliases
|
|
2286
|
+
export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
2287
2287
|
// Shovel aliases
|
|
2288
2288
|
export { default as ShovelIcon } from '../icons/shovel';
|
|
2289
|
-
// Shredder aliases
|
|
2290
|
-
export { default as ShredderIcon } from '../icons/shredder';
|
|
2291
2289
|
// ShowerHead aliases
|
|
2292
2290
|
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2291
|
+
// Shredder aliases
|
|
2292
|
+
export { default as ShredderIcon } from '../icons/shredder';
|
|
2293
2293
|
// Shrimp aliases
|
|
2294
2294
|
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2295
|
-
// Shrink aliases
|
|
2296
|
-
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2297
2295
|
// Shrub aliases
|
|
2298
2296
|
export { default as ShrubIcon } from '../icons/shrub';
|
|
2297
|
+
// Shrink aliases
|
|
2298
|
+
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2299
2299
|
// Shuffle aliases
|
|
2300
2300
|
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2301
2301
|
// Sigma aliases
|
|
@@ -2306,32 +2306,32 @@ export { default as SignalHighIcon } from '../icons/signal-high';
|
|
|
2306
2306
|
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2307
2307
|
// SignalMedium aliases
|
|
2308
2308
|
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2309
|
-
// Signal aliases
|
|
2310
|
-
export { default as SignalIcon } from '../icons/signal';
|
|
2311
2309
|
// SignalZero aliases
|
|
2312
2310
|
export { default as SignalZeroIcon } from '../icons/signal-zero';
|
|
2311
|
+
// Signal aliases
|
|
2312
|
+
export { default as SignalIcon } from '../icons/signal';
|
|
2313
|
+
// Signature aliases
|
|
2314
|
+
export { default as SignatureIcon } from '../icons/signature';
|
|
2313
2315
|
// SignpostBig aliases
|
|
2314
2316
|
export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
2315
2317
|
// Signpost aliases
|
|
2316
2318
|
export { default as SignpostIcon } from '../icons/signpost';
|
|
2317
|
-
// Signature aliases
|
|
2318
|
-
export { default as SignatureIcon } from '../icons/signature';
|
|
2319
2319
|
// Siren aliases
|
|
2320
2320
|
export { default as SirenIcon } from '../icons/siren';
|
|
2321
|
-
// SkipForward aliases
|
|
2322
|
-
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2323
2321
|
// SkipBack aliases
|
|
2324
2322
|
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2325
|
-
//
|
|
2326
|
-
export { default as
|
|
2327
|
-
// Slice aliases
|
|
2328
|
-
export { default as SliceIcon } from '../icons/slice';
|
|
2323
|
+
// SkipForward aliases
|
|
2324
|
+
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2329
2325
|
// Slack aliases
|
|
2330
2326
|
export { default as SlackIcon } from '../icons/slack';
|
|
2331
2327
|
// Slash aliases
|
|
2332
2328
|
export { default as SlashIcon } from '../icons/slash';
|
|
2329
|
+
// Skull aliases
|
|
2330
|
+
export { default as SkullIcon } from '../icons/skull';
|
|
2333
2331
|
// SlidersHorizontal aliases
|
|
2334
2332
|
export { default as SlidersHorizontalIcon } from '../icons/sliders-horizontal';
|
|
2333
|
+
// Slice aliases
|
|
2334
|
+
export { default as SliceIcon } from '../icons/slice';
|
|
2335
2335
|
// SmartphoneCharging aliases
|
|
2336
2336
|
export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging';
|
|
2337
2337
|
// SmartphoneNfc aliases
|
|
@@ -2340,28 +2340,28 @@ export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
|
2340
2340
|
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2341
2341
|
// SmilePlus aliases
|
|
2342
2342
|
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2343
|
-
// Snail aliases
|
|
2344
|
-
export { default as SnailIcon } from '../icons/snail';
|
|
2345
2343
|
// Smile aliases
|
|
2346
2344
|
export { default as SmileIcon } from '../icons/smile';
|
|
2345
|
+
// Snail aliases
|
|
2346
|
+
export { default as SnailIcon } from '../icons/snail';
|
|
2347
2347
|
// Snowflake aliases
|
|
2348
2348
|
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2349
2349
|
// SoapDispenserDroplet aliases
|
|
2350
2350
|
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2351
|
-
// Sofa aliases
|
|
2352
|
-
export { default as SofaIcon } from '../icons/sofa';
|
|
2353
2351
|
// Soup aliases
|
|
2354
2352
|
export { default as SoupIcon } from '../icons/soup';
|
|
2355
2353
|
// Space aliases
|
|
2356
2354
|
export { default as SpaceIcon } from '../icons/space';
|
|
2357
|
-
//
|
|
2358
|
-
export { default as
|
|
2355
|
+
// Sofa aliases
|
|
2356
|
+
export { default as SofaIcon } from '../icons/sofa';
|
|
2359
2357
|
// Sparkle aliases
|
|
2360
2358
|
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2361
|
-
//
|
|
2362
|
-
export { default as
|
|
2359
|
+
// Spade aliases
|
|
2360
|
+
export { default as SpadeIcon } from '../icons/spade';
|
|
2363
2361
|
// Speaker aliases
|
|
2364
2362
|
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2363
|
+
// Speech aliases
|
|
2364
|
+
export { default as SpeechIcon } from '../icons/speech';
|
|
2365
2365
|
// SpellCheck2 aliases
|
|
2366
2366
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2367
2367
|
// SpellCheck aliases
|
|
@@ -2370,20 +2370,20 @@ export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
|
2370
2370
|
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2371
2371
|
// Spline aliases
|
|
2372
2372
|
export { default as SplineIcon } from '../icons/spline';
|
|
2373
|
-
// Split aliases
|
|
2374
|
-
export { default as SplitIcon } from '../icons/split';
|
|
2375
2373
|
// Spool aliases
|
|
2376
2374
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2375
|
+
// Split aliases
|
|
2376
|
+
export { default as SplitIcon } from '../icons/split';
|
|
2377
2377
|
// Spotlight aliases
|
|
2378
2378
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2379
2379
|
// SprayCan aliases
|
|
2380
2380
|
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2381
|
-
// Sprout aliases
|
|
2382
|
-
export { default as SproutIcon } from '../icons/sprout';
|
|
2383
2381
|
// SquareDashedBottomCode aliases
|
|
2384
2382
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2385
2383
|
// SquareDashedBottom aliases
|
|
2386
2384
|
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2385
|
+
// Sprout aliases
|
|
2386
|
+
export { default as SproutIcon } from '../icons/sprout';
|
|
2387
2387
|
// SquareDashedTopSolid aliases
|
|
2388
2388
|
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2389
2389
|
// SquarePause aliases
|
|
@@ -2400,20 +2400,20 @@ export { default as SquareSquareIcon } from '../icons/square-square';
|
|
|
2400
2400
|
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2401
2401
|
// Square aliases
|
|
2402
2402
|
export { default as SquareIcon } from '../icons/square';
|
|
2403
|
+
// SquaresExclude aliases
|
|
2404
|
+
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2403
2405
|
// SquaresIntersect aliases
|
|
2404
2406
|
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2405
2407
|
// SquaresSubtract aliases
|
|
2406
2408
|
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2407
|
-
// SquaresExclude aliases
|
|
2408
|
-
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2409
2409
|
// SquaresUnite aliases
|
|
2410
2410
|
export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
2411
|
+
// SquircleDashed aliases
|
|
2412
|
+
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2411
2413
|
// Squircle aliases
|
|
2412
2414
|
export { default as SquircleIcon } from '../icons/squircle';
|
|
2413
2415
|
// Squirrel aliases
|
|
2414
2416
|
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2415
|
-
// SquircleDashed aliases
|
|
2416
|
-
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2417
2417
|
// Stamp aliases
|
|
2418
2418
|
export { default as StampIcon } from '../icons/stamp';
|
|
2419
2419
|
// StarHalf aliases
|
|
@@ -2424,10 +2424,10 @@ export { default as StarOffIcon } from '../icons/star-off';
|
|
|
2424
2424
|
export { default as StarIcon } from '../icons/star';
|
|
2425
2425
|
// StepBack aliases
|
|
2426
2426
|
export { default as StepBackIcon } from '../icons/step-back';
|
|
2427
|
-
// Stethoscope aliases
|
|
2428
|
-
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2429
2427
|
// StepForward aliases
|
|
2430
2428
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2429
|
+
// Stethoscope aliases
|
|
2430
|
+
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2431
2431
|
// Sticker aliases
|
|
2432
2432
|
export { default as StickerIcon } from '../icons/sticker';
|
|
2433
2433
|
// StickyNote aliases
|
|
@@ -2440,10 +2440,10 @@ export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
|
2440
2440
|
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2441
2441
|
// Strikethrough aliases
|
|
2442
2442
|
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2443
|
-
// SunDim aliases
|
|
2444
|
-
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2445
2443
|
// Subscript aliases
|
|
2446
2444
|
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2445
|
+
// SunDim aliases
|
|
2446
|
+
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2447
2447
|
// SunMedium aliases
|
|
2448
2448
|
export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
2449
2449
|
// SunMoon aliases
|
|
@@ -2452,32 +2452,32 @@ export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
|
2452
2452
|
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2453
2453
|
// Sun aliases
|
|
2454
2454
|
export { default as SunIcon } from '../icons/sun';
|
|
2455
|
-
// Sunset aliases
|
|
2456
|
-
export { default as SunsetIcon } from '../icons/sunset';
|
|
2457
2455
|
// Sunrise aliases
|
|
2458
2456
|
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2459
2457
|
// Superscript aliases
|
|
2460
2458
|
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2459
|
+
// Sunset aliases
|
|
2460
|
+
export { default as SunsetIcon } from '../icons/sunset';
|
|
2461
2461
|
// SwatchBook aliases
|
|
2462
2462
|
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2463
2463
|
// SwissFranc aliases
|
|
2464
2464
|
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2465
|
+
// SwitchCamera aliases
|
|
2466
|
+
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2465
2467
|
// Sword aliases
|
|
2466
2468
|
export { default as SwordIcon } from '../icons/sword';
|
|
2467
2469
|
// Swords aliases
|
|
2468
2470
|
export { default as SwordsIcon } from '../icons/swords';
|
|
2469
|
-
// Syringe aliases
|
|
2470
|
-
export { default as SyringeIcon } from '../icons/syringe';
|
|
2471
|
-
// SwitchCamera aliases
|
|
2472
|
-
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2473
2471
|
// Table2 aliases
|
|
2474
2472
|
export { default as Table2Icon } from '../icons/table-2';
|
|
2475
2473
|
// TableCellsMerge aliases
|
|
2476
2474
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2477
|
-
// TableColumnsSplit aliases
|
|
2478
|
-
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2479
2475
|
// TableCellsSplit aliases
|
|
2480
2476
|
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2477
|
+
// Syringe aliases
|
|
2478
|
+
export { default as SyringeIcon } from '../icons/syringe';
|
|
2479
|
+
// TableColumnsSplit aliases
|
|
2480
|
+
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2481
2481
|
// TableOfContents aliases
|
|
2482
2482
|
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2483
2483
|
// TableProperties aliases
|
|
@@ -2490,10 +2490,10 @@ export { default as TableIcon } from '../icons/table';
|
|
|
2490
2490
|
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2491
2491
|
// Tablet aliases
|
|
2492
2492
|
export { default as TabletIcon } from '../icons/tablet';
|
|
2493
|
-
// Tag aliases
|
|
2494
|
-
export { default as TagIcon } from '../icons/tag';
|
|
2495
2493
|
// Tablets aliases
|
|
2496
2494
|
export { default as TabletsIcon } from '../icons/tablets';
|
|
2495
|
+
// Tag aliases
|
|
2496
|
+
export { default as TagIcon } from '../icons/tag';
|
|
2497
2497
|
// Tags aliases
|
|
2498
2498
|
export { default as TagsIcon } from '../icons/tags';
|
|
2499
2499
|
// Tally1 aliases
|
|
@@ -2502,10 +2502,10 @@ export { default as Tally1Icon } from '../icons/tally-1';
|
|
|
2502
2502
|
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2503
2503
|
// Tally3 aliases
|
|
2504
2504
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2505
|
-
// Tally4 aliases
|
|
2506
|
-
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2507
2505
|
// Tally5 aliases
|
|
2508
2506
|
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2507
|
+
// Tally4 aliases
|
|
2508
|
+
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2509
2509
|
// Tangent aliases
|
|
2510
2510
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2511
2511
|
// Target aliases
|
|
@@ -2520,10 +2520,10 @@ export { default as TentIcon } from '../icons/tent';
|
|
|
2520
2520
|
export { default as TerminalIcon } from '../icons/terminal';
|
|
2521
2521
|
// TestTube aliases
|
|
2522
2522
|
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2523
|
-
// TestTubes aliases
|
|
2524
|
-
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2525
2523
|
// TextCursorInput aliases
|
|
2526
2524
|
export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
2525
|
+
// TestTubes aliases
|
|
2526
|
+
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2527
2527
|
// TextCursor aliases
|
|
2528
2528
|
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2529
2529
|
// TextQuote aliases
|
|
@@ -2536,12 +2536,10 @@ export { default as TextIcon } from '../icons/text';
|
|
|
2536
2536
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2537
2537
|
// ThermometerSun aliases
|
|
2538
2538
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2539
|
-
// ThermometerSnowflake aliases
|
|
2540
|
-
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2541
2539
|
// Thermometer aliases
|
|
2542
2540
|
export { default as ThermometerIcon } from '../icons/thermometer';
|
|
2543
|
-
//
|
|
2544
|
-
export { default as
|
|
2541
|
+
// ThermometerSnowflake aliases
|
|
2542
|
+
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2545
2543
|
// ThumbsUp aliases
|
|
2546
2544
|
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2547
2545
|
// TicketCheck aliases
|
|
@@ -2550,24 +2548,26 @@ export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
|
2550
2548
|
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2551
2549
|
// TicketPercent aliases
|
|
2552
2550
|
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2551
|
+
// ThumbsDown aliases
|
|
2552
|
+
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2553
2553
|
// TicketPlus aliases
|
|
2554
2554
|
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2555
2555
|
// TicketSlash aliases
|
|
2556
2556
|
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2557
2557
|
// TicketX aliases
|
|
2558
2558
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2559
|
-
// Tickets aliases
|
|
2560
|
-
export { default as TicketsIcon } from '../icons/tickets';
|
|
2561
|
-
// TicketsPlane aliases
|
|
2562
|
-
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2563
2559
|
// Ticket aliases
|
|
2564
2560
|
export { default as TicketIcon } from '../icons/ticket';
|
|
2561
|
+
// TicketsPlane aliases
|
|
2562
|
+
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2563
|
+
// Tickets aliases
|
|
2564
|
+
export { default as TicketsIcon } from '../icons/tickets';
|
|
2565
2565
|
// TimerOff aliases
|
|
2566
2566
|
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2567
|
-
// TimerReset aliases
|
|
2568
|
-
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2569
2567
|
// Timer aliases
|
|
2570
2568
|
export { default as TimerIcon } from '../icons/timer';
|
|
2569
|
+
// TimerReset aliases
|
|
2570
|
+
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2571
2571
|
// ToggleLeft aliases
|
|
2572
2572
|
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2573
2573
|
// ToggleRight aliases
|
|
@@ -2582,12 +2582,12 @@ export { default as TornadoIcon } from '../icons/tornado';
|
|
|
2582
2582
|
export { default as TorusIcon } from '../icons/torus';
|
|
2583
2583
|
// TouchpadOff aliases
|
|
2584
2584
|
export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
2585
|
-
// TowerControl aliases
|
|
2586
|
-
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2587
2585
|
// Touchpad aliases
|
|
2588
2586
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2589
2587
|
// ToyBrick aliases
|
|
2590
2588
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2589
|
+
// TowerControl aliases
|
|
2590
|
+
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2591
2591
|
// Tractor aliases
|
|
2592
2592
|
export { default as TractorIcon } from '../icons/tractor';
|
|
2593
2593
|
// TrafficCone aliases
|
|
@@ -2598,100 +2598,102 @@ export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
|
2598
2598
|
export { default as TrainFrontIcon } from '../icons/train-front';
|
|
2599
2599
|
// TrainTrack aliases
|
|
2600
2600
|
export { default as TrainTrackIcon } from '../icons/train-track';
|
|
2601
|
-
// Trash2 aliases
|
|
2602
|
-
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2603
2601
|
// Transgender aliases
|
|
2604
2602
|
export { default as TransgenderIcon } from '../icons/transgender';
|
|
2605
|
-
//
|
|
2606
|
-
export { default as
|
|
2603
|
+
// Trash2 aliases
|
|
2604
|
+
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2607
2605
|
// Trash aliases
|
|
2608
2606
|
export { default as TrashIcon } from '../icons/trash';
|
|
2607
|
+
// TreeDeciduous aliases
|
|
2608
|
+
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2609
2609
|
// TreePine aliases
|
|
2610
2610
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2611
2611
|
// Trees aliases
|
|
2612
2612
|
export { default as TreesIcon } from '../icons/trees';
|
|
2613
2613
|
// Trello aliases
|
|
2614
2614
|
export { default as TrelloIcon } from '../icons/trello';
|
|
2615
|
-
// TrendingUpDown aliases
|
|
2616
|
-
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2617
2615
|
// TrendingDown aliases
|
|
2618
2616
|
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2617
|
+
// TrendingUpDown aliases
|
|
2618
|
+
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2619
2619
|
// TrendingUp aliases
|
|
2620
2620
|
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2621
2621
|
// TriangleDashed aliases
|
|
2622
2622
|
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2623
2623
|
// TriangleRight aliases
|
|
2624
2624
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2625
|
-
// Trophy aliases
|
|
2626
|
-
export { default as TrophyIcon } from '../icons/trophy';
|
|
2627
2625
|
// Triangle aliases
|
|
2628
2626
|
export { default as TriangleIcon } from '../icons/triangle';
|
|
2627
|
+
// Trophy aliases
|
|
2628
|
+
export { default as TrophyIcon } from '../icons/trophy';
|
|
2629
2629
|
// TruckElectric aliases
|
|
2630
2630
|
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2631
|
-
// TurkishLira aliases
|
|
2632
|
-
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2633
2631
|
// Truck aliases
|
|
2634
2632
|
export { default as TruckIcon } from '../icons/truck';
|
|
2633
|
+
// TurkishLira aliases
|
|
2634
|
+
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2635
|
+
// Turntable aliases
|
|
2636
|
+
export { default as TurntableIcon } from '../icons/turntable';
|
|
2635
2637
|
// Turtle aliases
|
|
2636
2638
|
export { default as TurtleIcon } from '../icons/turtle';
|
|
2637
|
-
// Tv aliases
|
|
2638
|
-
export { default as TvIcon } from '../icons/tv';
|
|
2639
2639
|
// TvMinimalPlay aliases
|
|
2640
2640
|
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2641
|
+
// Tv aliases
|
|
2642
|
+
export { default as TvIcon } from '../icons/tv';
|
|
2641
2643
|
// Twitch aliases
|
|
2642
2644
|
export { default as TwitchIcon } from '../icons/twitch';
|
|
2643
2645
|
// Twitter aliases
|
|
2644
2646
|
export { default as TwitterIcon } from '../icons/twitter';
|
|
2645
|
-
// TypeOutline aliases
|
|
2646
|
-
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2647
2647
|
// Type aliases
|
|
2648
2648
|
export { default as TypeIcon } from '../icons/type';
|
|
2649
|
+
// TypeOutline aliases
|
|
2650
|
+
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2649
2651
|
// UmbrellaOff aliases
|
|
2650
2652
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2651
2653
|
// Umbrella aliases
|
|
2652
2654
|
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2653
|
-
// Undo2 aliases
|
|
2654
|
-
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2655
2655
|
// Underline aliases
|
|
2656
2656
|
export { default as UnderlineIcon } from '../icons/underline';
|
|
2657
2657
|
// UndoDot aliases
|
|
2658
2658
|
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2659
2659
|
// Undo aliases
|
|
2660
2660
|
export { default as UndoIcon } from '../icons/undo';
|
|
2661
|
+
// Undo2 aliases
|
|
2662
|
+
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2661
2663
|
// UnfoldHorizontal aliases
|
|
2662
2664
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2665
|
+
// UnfoldVertical aliases
|
|
2666
|
+
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2663
2667
|
// Ungroup aliases
|
|
2664
2668
|
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2665
2669
|
// Unlink2 aliases
|
|
2666
2670
|
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2667
|
-
// UnfoldVertical aliases
|
|
2668
|
-
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2669
2671
|
// Unlink aliases
|
|
2670
2672
|
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2671
2673
|
// Unplug aliases
|
|
2672
2674
|
export { default as UnplugIcon } from '../icons/unplug';
|
|
2673
|
-
// Usb aliases
|
|
2674
|
-
export { default as UsbIcon } from '../icons/usb';
|
|
2675
2675
|
// Upload aliases
|
|
2676
2676
|
export { default as UploadIcon } from '../icons/upload';
|
|
2677
|
-
//
|
|
2678
|
-
export { default as
|
|
2677
|
+
// Usb aliases
|
|
2678
|
+
export { default as UsbIcon } from '../icons/usb';
|
|
2679
2679
|
// UserCheck aliases
|
|
2680
2680
|
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2681
2681
|
// UserLock aliases
|
|
2682
2682
|
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2683
|
+
// UserCog aliases
|
|
2684
|
+
export { default as UserCogIcon } from '../icons/user-cog';
|
|
2683
2685
|
// UserMinus aliases
|
|
2684
2686
|
export { default as UserMinusIcon } from '../icons/user-minus';
|
|
2685
2687
|
// UserPen aliases
|
|
2686
2688
|
export { default as UserPenIcon } from '../icons/user-pen';
|
|
2687
2689
|
// UserPlus aliases
|
|
2688
2690
|
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2689
|
-
// UserRoundPen aliases
|
|
2690
|
-
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2691
2691
|
// UserRoundSearch aliases
|
|
2692
2692
|
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2693
2693
|
// UserSearch aliases
|
|
2694
2694
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2695
|
+
// UserRoundPen aliases
|
|
2696
|
+
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2695
2697
|
// UserStar aliases
|
|
2696
2698
|
export { default as UserStarIcon } from '../icons/user-star';
|
|
2697
2699
|
// UserX aliases
|
|
@@ -2702,10 +2704,10 @@ export { default as UserIcon } from '../icons/user';
|
|
|
2702
2704
|
export { default as UsersIcon } from '../icons/users';
|
|
2703
2705
|
// UtilityPole aliases
|
|
2704
2706
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2705
|
-
// Vault aliases
|
|
2706
|
-
export { default as VaultIcon } from '../icons/vault';
|
|
2707
2707
|
// Variable aliases
|
|
2708
2708
|
export { default as VariableIcon } from '../icons/variable';
|
|
2709
|
+
// Vault aliases
|
|
2710
|
+
export { default as VaultIcon } from '../icons/vault';
|
|
2709
2711
|
// VectorSquare aliases
|
|
2710
2712
|
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2711
2713
|
// Vegan aliases
|
|
@@ -2732,80 +2734,80 @@ export { default as ViewIcon } from '../icons/view';
|
|
|
2732
2734
|
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2733
2735
|
// Volleyball aliases
|
|
2734
2736
|
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2737
|
+
// Volume2 aliases
|
|
2738
|
+
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2735
2739
|
// Volume1 aliases
|
|
2736
2740
|
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2737
2741
|
// VolumeOff aliases
|
|
2738
2742
|
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2739
|
-
// Volume2 aliases
|
|
2740
|
-
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2741
|
-
// Volume aliases
|
|
2742
|
-
export { default as VolumeIcon } from '../icons/volume';
|
|
2743
2743
|
// VolumeX aliases
|
|
2744
2744
|
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2745
|
-
//
|
|
2746
|
-
export { default as
|
|
2745
|
+
// Volume aliases
|
|
2746
|
+
export { default as VolumeIcon } from '../icons/volume';
|
|
2747
2747
|
// Vote aliases
|
|
2748
2748
|
export { default as VoteIcon } from '../icons/vote';
|
|
2749
|
-
//
|
|
2750
|
-
export { default as
|
|
2749
|
+
// WalletCards aliases
|
|
2750
|
+
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2751
2751
|
// Wallpaper aliases
|
|
2752
2752
|
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2753
|
-
//
|
|
2754
|
-
export { default as
|
|
2753
|
+
// Wallet aliases
|
|
2754
|
+
export { default as WalletIcon } from '../icons/wallet';
|
|
2755
2755
|
// Warehouse aliases
|
|
2756
2756
|
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2757
|
+
// Wand aliases
|
|
2758
|
+
export { default as WandIcon } from '../icons/wand';
|
|
2757
2759
|
// WashingMachine aliases
|
|
2758
2760
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2759
2761
|
// Watch aliases
|
|
2760
2762
|
export { default as WatchIcon } from '../icons/watch';
|
|
2761
2763
|
// WavesLadder aliases
|
|
2762
2764
|
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2763
|
-
// Waypoints aliases
|
|
2764
|
-
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2765
2765
|
// Waves aliases
|
|
2766
2766
|
export { default as WavesIcon } from '../icons/waves';
|
|
2767
|
+
// Waypoints aliases
|
|
2768
|
+
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2767
2769
|
// Webcam aliases
|
|
2768
2770
|
export { default as WebcamIcon } from '../icons/webcam';
|
|
2771
|
+
// WebhookOff aliases
|
|
2772
|
+
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2769
2773
|
// Webhook aliases
|
|
2770
2774
|
export { default as WebhookIcon } from '../icons/webhook';
|
|
2771
2775
|
// Weight aliases
|
|
2772
2776
|
export { default as WeightIcon } from '../icons/weight';
|
|
2773
|
-
// WebhookOff aliases
|
|
2774
|
-
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2775
2777
|
// WheatOff aliases
|
|
2776
2778
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2777
2779
|
// Wheat aliases
|
|
2778
2780
|
export { default as WheatIcon } from '../icons/wheat';
|
|
2779
2781
|
// WholeWord aliases
|
|
2780
2782
|
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2781
|
-
// WifiHigh aliases
|
|
2782
|
-
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2783
2783
|
// WifiCog aliases
|
|
2784
2784
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2785
|
+
// WifiHigh aliases
|
|
2786
|
+
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2787
|
+
// WifiLow aliases
|
|
2788
|
+
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2785
2789
|
// WifiOff aliases
|
|
2786
2790
|
export { default as WifiOffIcon } from '../icons/wifi-off';
|
|
2787
2791
|
// WifiPen aliases
|
|
2788
2792
|
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2789
|
-
// WifiLow aliases
|
|
2790
|
-
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2791
2793
|
// WifiSync aliases
|
|
2792
2794
|
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2793
|
-
// WifiZero aliases
|
|
2794
|
-
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2795
2795
|
// Wifi aliases
|
|
2796
2796
|
export { default as WifiIcon } from '../icons/wifi';
|
|
2797
2797
|
// WindArrowDown aliases
|
|
2798
2798
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2799
|
-
//
|
|
2800
|
-
export { default as
|
|
2799
|
+
// WifiZero aliases
|
|
2800
|
+
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2801
2801
|
// Wind aliases
|
|
2802
2802
|
export { default as WindIcon } from '../icons/wind';
|
|
2803
|
+
// WineOff aliases
|
|
2804
|
+
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2805
|
+
// Workflow aliases
|
|
2806
|
+
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2803
2807
|
// Wine aliases
|
|
2804
2808
|
export { default as WineIcon } from '../icons/wine';
|
|
2805
2809
|
// Worm aliases
|
|
2806
2810
|
export { default as WormIcon } from '../icons/worm';
|
|
2807
|
-
// Workflow aliases
|
|
2808
|
-
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2809
2811
|
// WrapText aliases
|
|
2810
2812
|
export { default as WrapTextIcon } from '../icons/wrap-text';
|
|
2811
2813
|
// Wrench aliases
|
|
@@ -2816,83 +2818,128 @@ export { default as XIcon } from '../icons/x';
|
|
|
2816
2818
|
export { default as YoutubeIcon } from '../icons/youtube';
|
|
2817
2819
|
// ZapOff aliases
|
|
2818
2820
|
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2819
|
-
// Zap aliases
|
|
2820
|
-
export { default as ZapIcon } from '../icons/zap';
|
|
2821
|
-
// ZoomIn aliases
|
|
2822
|
-
export { default as ZoomInIcon } from '../icons/zoom-in';
|
|
2823
2821
|
// ZoomOut aliases
|
|
2824
2822
|
export { default as ZoomOutIcon } from '../icons/zoom-out';
|
|
2825
|
-
//
|
|
2826
|
-
export { default as
|
|
2823
|
+
// ZoomIn aliases
|
|
2824
|
+
export { default as ZoomInIcon } from '../icons/zoom-in';
|
|
2825
|
+
// Zap aliases
|
|
2826
|
+
export { default as ZapIcon } from '../icons/zap';
|
|
2827
2827
|
// ArrowDown01 aliases
|
|
2828
2828
|
export { default as ArrowDown01Icon } from '../icons/arrow-down-0-1';
|
|
2829
|
+
// ArrowDown10 aliases
|
|
2830
|
+
export { default as ArrowDown10Icon } from '../icons/arrow-down-1-0';
|
|
2829
2831
|
// ArrowUp01 aliases
|
|
2830
2832
|
export { default as ArrowUp01Icon } from '../icons/arrow-up-0-1';
|
|
2831
2833
|
// ArrowUp10 aliases
|
|
2832
2834
|
export { default as ArrowUp10Icon } from '../icons/arrow-up-1-0';
|
|
2833
2835
|
// AlarmClockCheck aliases
|
|
2834
2836
|
export { default as AlarmClockCheckIcon } from '../icons/alarm-clock-check';
|
|
2835
|
-
export {
|
|
2837
|
+
export {
|
|
2838
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockCheck} instead. This alias will be removed in v1.0 */
|
|
2839
|
+
default as AlarmCheckIcon
|
|
2840
|
+
} from '../icons/alarm-clock-check';
|
|
2836
2841
|
// AlarmClockPlus aliases
|
|
2837
2842
|
export { default as AlarmClockPlusIcon } from '../icons/alarm-clock-plus';
|
|
2838
|
-
export {
|
|
2843
|
+
export {
|
|
2844
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
|
|
2845
|
+
default as AlarmPlusIcon
|
|
2846
|
+
} from '../icons/alarm-clock-plus';
|
|
2839
2847
|
// AlarmClockMinus aliases
|
|
2840
2848
|
export { default as AlarmClockMinusIcon } from '../icons/alarm-clock-minus';
|
|
2841
|
-
export {
|
|
2849
|
+
export {
|
|
2850
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. This alias will be removed in v1.0 */
|
|
2851
|
+
default as AlarmMinusIcon
|
|
2852
|
+
} from '../icons/alarm-clock-minus';
|
|
2842
2853
|
// ArrowDownAZ aliases
|
|
2843
2854
|
export { default as ArrowDownAZIcon } from '../icons/arrow-down-a-z';
|
|
2844
|
-
export {
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2855
|
+
export {
|
|
2856
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
2857
|
+
default as ArrowDownAzIcon
|
|
2858
|
+
} from '../icons/arrow-down-a-z';
|
|
2848
2859
|
// ArrowDownZA aliases
|
|
2849
2860
|
export { default as ArrowDownZAIcon } from '../icons/arrow-down-z-a';
|
|
2850
|
-
export {
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2861
|
+
export {
|
|
2862
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. This alias will be removed in v1.0 */
|
|
2863
|
+
default as ArrowDownZaIcon
|
|
2864
|
+
} from '../icons/arrow-down-z-a';
|
|
2865
|
+
// ArrowDownWideNarrow aliases
|
|
2866
|
+
export { default as ArrowDownWideNarrowIcon } from '../icons/arrow-down-wide-narrow';
|
|
2867
|
+
export {
|
|
2868
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
2869
|
+
default as SortDescIcon
|
|
2870
|
+
} from '../icons/arrow-down-wide-narrow';
|
|
2854
2871
|
// ArrowUpNarrowWide aliases
|
|
2855
2872
|
export { default as ArrowUpNarrowWideIcon } from '../icons/arrow-up-narrow-wide';
|
|
2856
|
-
export {
|
|
2873
|
+
export {
|
|
2874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
2875
|
+
default as SortAscIcon
|
|
2876
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
2877
|
+
// ArrowUpAZ aliases
|
|
2878
|
+
export { default as ArrowUpAZIcon } from '../icons/arrow-up-a-z';
|
|
2879
|
+
export {
|
|
2880
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. This alias will be removed in v1.0 */
|
|
2881
|
+
default as ArrowUpAzIcon
|
|
2882
|
+
} from '../icons/arrow-up-a-z';
|
|
2857
2883
|
// ArrowUpZA aliases
|
|
2858
2884
|
export { default as ArrowUpZAIcon } from '../icons/arrow-up-z-a';
|
|
2859
|
-
export {
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2885
|
+
export {
|
|
2886
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
2887
|
+
default as ArrowUpZaIcon
|
|
2888
|
+
} from '../icons/arrow-up-z-a';
|
|
2863
2889
|
// BadgeCheck aliases
|
|
2864
2890
|
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
2865
|
-
export {
|
|
2891
|
+
export {
|
|
2892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
|
|
2893
|
+
default as VerifiedIcon
|
|
2894
|
+
} from '../icons/badge-check';
|
|
2895
|
+
// Axis3d aliases
|
|
2896
|
+
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2897
|
+
export {
|
|
2898
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
|
|
2899
|
+
default as Axis3DIcon
|
|
2900
|
+
} from '../icons/axis-3d';
|
|
2866
2901
|
// BadgeQuestionMark aliases
|
|
2867
2902
|
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
2868
|
-
export {
|
|
2903
|
+
export {
|
|
2904
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. This alias will be removed in v1.0 */
|
|
2905
|
+
default as BadgeHelpIcon
|
|
2906
|
+
} from '../icons/badge-question-mark';
|
|
2869
2907
|
// BetweenHorizontalEnd aliases
|
|
2870
2908
|
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
2871
2909
|
export {
|
|
2872
2910
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
2873
2911
|
default as BetweenHorizonalEndIcon
|
|
2874
2912
|
} from '../icons/between-horizontal-end';
|
|
2875
|
-
// BookDashed aliases
|
|
2876
|
-
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
2877
|
-
export { default as BookTemplateIcon } from '../icons/book-dashed';
|
|
2878
2913
|
// BetweenHorizontalStart aliases
|
|
2879
2914
|
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
2880
2915
|
export {
|
|
2881
2916
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
2882
2917
|
default as BetweenHorizonalStartIcon
|
|
2883
2918
|
} from '../icons/between-horizontal-start';
|
|
2919
|
+
// BookDashed aliases
|
|
2920
|
+
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
2921
|
+
export {
|
|
2922
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. This alias will be removed in v1.0.0 */
|
|
2923
|
+
default as BookTemplateIcon
|
|
2924
|
+
} from '../icons/book-dashed';
|
|
2884
2925
|
// Captions aliases
|
|
2885
2926
|
export { default as CaptionsIcon } from '../icons/captions';
|
|
2886
|
-
export {
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2927
|
+
export {
|
|
2928
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. This alias will be removed in v1.0 */
|
|
2929
|
+
default as SubtitlesIcon
|
|
2930
|
+
} from '../icons/captions';
|
|
2890
2931
|
// ChartArea aliases
|
|
2891
2932
|
export { default as ChartAreaIcon } from '../icons/chart-area';
|
|
2892
2933
|
export {
|
|
2893
2934
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
2894
2935
|
default as AreaChartIcon
|
|
2895
2936
|
} from '../icons/chart-area';
|
|
2937
|
+
// Braces aliases
|
|
2938
|
+
export { default as BracesIcon } from '../icons/braces';
|
|
2939
|
+
export {
|
|
2940
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. This alias will be removed in v1.0 */
|
|
2941
|
+
default as CurlyBracesIcon
|
|
2942
|
+
} from '../icons/braces';
|
|
2896
2943
|
// ChartBarBig aliases
|
|
2897
2944
|
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
2898
2945
|
export {
|
|
@@ -2905,24 +2952,30 @@ export {
|
|
|
2905
2952
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
2906
2953
|
default as BarChartHorizontalIcon
|
|
2907
2954
|
} from '../icons/chart-bar';
|
|
2908
|
-
// ChartCandlestick aliases
|
|
2909
|
-
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
2910
|
-
export {
|
|
2911
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
2912
|
-
default as CandlestickChartIcon
|
|
2913
|
-
} from '../icons/chart-candlestick';
|
|
2914
2955
|
// ChartColumnBig aliases
|
|
2915
2956
|
export { default as ChartColumnBigIcon } from '../icons/chart-column-big';
|
|
2916
2957
|
export {
|
|
2917
2958
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnBig} instead. This alias will be removed in v1.0 */
|
|
2918
2959
|
default as BarChartBigIcon
|
|
2919
2960
|
} from '../icons/chart-column-big';
|
|
2961
|
+
// ChartCandlestick aliases
|
|
2962
|
+
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
2963
|
+
export {
|
|
2964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
2965
|
+
default as CandlestickChartIcon
|
|
2966
|
+
} from '../icons/chart-candlestick';
|
|
2920
2967
|
// ChartColumnIncreasing aliases
|
|
2921
2968
|
export { default as ChartColumnIncreasingIcon } from '../icons/chart-column-increasing';
|
|
2922
2969
|
export {
|
|
2923
2970
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
2924
2971
|
default as BarChart4Icon
|
|
2925
2972
|
} from '../icons/chart-column-increasing';
|
|
2973
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
2974
|
+
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
2975
|
+
export {
|
|
2976
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
2977
|
+
default as BarChartIcon
|
|
2978
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
2926
2979
|
// ChartColumn aliases
|
|
2927
2980
|
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
2928
2981
|
export {
|
|
@@ -2935,12 +2988,6 @@ export {
|
|
|
2935
2988
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. This alias will be removed in v1.0 */
|
|
2936
2989
|
default as LineChartIcon
|
|
2937
2990
|
} from '../icons/chart-line';
|
|
2938
|
-
// ChartNoAxesColumnIncreasing aliases
|
|
2939
|
-
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
2940
|
-
export {
|
|
2941
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
2942
|
-
default as BarChartIcon
|
|
2943
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
2944
2991
|
// ChartNoAxesColumn aliases
|
|
2945
2992
|
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
2946
2993
|
export {
|
|
@@ -2965,88 +3012,172 @@ export {
|
|
|
2965
3012
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
2966
3013
|
default as ScatterChartIcon
|
|
2967
3014
|
} from '../icons/chart-scatter';
|
|
2968
|
-
// CircleArrowDown aliases
|
|
2969
|
-
export { default as CircleArrowDownIcon } from '../icons/circle-arrow-down';
|
|
2970
|
-
export { default as ArrowDownCircleIcon } from '../icons/circle-arrow-down';
|
|
2971
3015
|
// CircleAlert aliases
|
|
2972
3016
|
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
2973
|
-
export {
|
|
3017
|
+
export {
|
|
3018
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
3019
|
+
default as AlertCircleIcon
|
|
3020
|
+
} from '../icons/circle-alert';
|
|
3021
|
+
// CircleArrowDown aliases
|
|
3022
|
+
export { default as CircleArrowDownIcon } from '../icons/circle-arrow-down';
|
|
3023
|
+
export {
|
|
3024
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
3025
|
+
default as ArrowDownCircleIcon
|
|
3026
|
+
} from '../icons/circle-arrow-down';
|
|
2974
3027
|
// CircleArrowLeft aliases
|
|
2975
3028
|
export { default as CircleArrowLeftIcon } from '../icons/circle-arrow-left';
|
|
2976
|
-
export {
|
|
3029
|
+
export {
|
|
3030
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
3031
|
+
default as ArrowLeftCircleIcon
|
|
3032
|
+
} from '../icons/circle-arrow-left';
|
|
2977
3033
|
// CircleArrowOutDownLeft aliases
|
|
2978
3034
|
export { default as CircleArrowOutDownLeftIcon } from '../icons/circle-arrow-out-down-left';
|
|
2979
|
-
export {
|
|
3035
|
+
export {
|
|
3036
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
3037
|
+
default as ArrowDownLeftFromCircleIcon
|
|
3038
|
+
} from '../icons/circle-arrow-out-down-left';
|
|
2980
3039
|
// CircleArrowOutDownRight aliases
|
|
2981
3040
|
export { default as CircleArrowOutDownRightIcon } from '../icons/circle-arrow-out-down-right';
|
|
2982
|
-
export {
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
3041
|
+
export {
|
|
3042
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3043
|
+
default as ArrowDownRightFromCircleIcon
|
|
3044
|
+
} from '../icons/circle-arrow-out-down-right';
|
|
2986
3045
|
// CircleArrowOutUpRight aliases
|
|
2987
3046
|
export { default as CircleArrowOutUpRightIcon } from '../icons/circle-arrow-out-up-right';
|
|
2988
|
-
export {
|
|
3047
|
+
export {
|
|
3048
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3049
|
+
default as ArrowUpRightFromCircleIcon
|
|
3050
|
+
} from '../icons/circle-arrow-out-up-right';
|
|
2989
3051
|
// CircleArrowRight aliases
|
|
2990
3052
|
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
2991
|
-
export {
|
|
3053
|
+
export {
|
|
3054
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
3055
|
+
default as ArrowRightCircleIcon
|
|
3056
|
+
} from '../icons/circle-arrow-right';
|
|
3057
|
+
// CircleArrowOutUpLeft aliases
|
|
3058
|
+
export { default as CircleArrowOutUpLeftIcon } from '../icons/circle-arrow-out-up-left';
|
|
3059
|
+
export {
|
|
3060
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
3061
|
+
default as ArrowUpLeftFromCircleIcon
|
|
3062
|
+
} from '../icons/circle-arrow-out-up-left';
|
|
2992
3063
|
// CircleArrowUp aliases
|
|
2993
3064
|
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
2994
|
-
export {
|
|
3065
|
+
export {
|
|
3066
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
3067
|
+
default as ArrowUpCircleIcon
|
|
3068
|
+
} from '../icons/circle-arrow-up';
|
|
2995
3069
|
// CircleCheckBig aliases
|
|
2996
3070
|
export { default as CircleCheckBigIcon } from '../icons/circle-check-big';
|
|
2997
|
-
export {
|
|
3071
|
+
export {
|
|
3072
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
3073
|
+
default as CheckCircleIcon
|
|
3074
|
+
} from '../icons/circle-check-big';
|
|
2998
3075
|
// CircleCheck aliases
|
|
2999
3076
|
export { default as CircleCheckIcon } from '../icons/circle-check';
|
|
3000
|
-
export {
|
|
3077
|
+
export {
|
|
3078
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. This alias will be removed in v1.0 */
|
|
3079
|
+
default as CheckCircle2Icon
|
|
3080
|
+
} from '../icons/circle-check';
|
|
3001
3081
|
// CircleChevronDown aliases
|
|
3002
3082
|
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3003
|
-
export {
|
|
3083
|
+
export {
|
|
3084
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. This alias will be removed in v1.0 */
|
|
3085
|
+
default as ChevronDownCircleIcon
|
|
3086
|
+
} from '../icons/circle-chevron-down';
|
|
3004
3087
|
// CircleChevronLeft aliases
|
|
3005
3088
|
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3006
|
-
export {
|
|
3089
|
+
export {
|
|
3090
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3091
|
+
default as ChevronLeftCircleIcon
|
|
3092
|
+
} from '../icons/circle-chevron-left';
|
|
3007
3093
|
// CircleChevronRight aliases
|
|
3008
3094
|
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3009
|
-
export {
|
|
3095
|
+
export {
|
|
3096
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
3097
|
+
default as ChevronRightCircleIcon
|
|
3098
|
+
} from '../icons/circle-chevron-right';
|
|
3010
3099
|
// CircleChevronUp aliases
|
|
3011
3100
|
export { default as CircleChevronUpIcon } from '../icons/circle-chevron-up';
|
|
3012
|
-
export {
|
|
3101
|
+
export {
|
|
3102
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. This alias will be removed in v1.0 */
|
|
3103
|
+
default as ChevronUpCircleIcon
|
|
3104
|
+
} from '../icons/circle-chevron-up';
|
|
3013
3105
|
// CircleDivide aliases
|
|
3014
3106
|
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3015
|
-
export {
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3107
|
+
export {
|
|
3108
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
3109
|
+
default as DivideCircleIcon
|
|
3110
|
+
} from '../icons/circle-divide';
|
|
3019
3111
|
// CircleParkingOff aliases
|
|
3020
3112
|
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3021
|
-
export {
|
|
3113
|
+
export {
|
|
3114
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
3115
|
+
default as ParkingCircleOffIcon
|
|
3116
|
+
} from '../icons/circle-parking-off';
|
|
3022
3117
|
// CircleGauge aliases
|
|
3023
3118
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3024
|
-
export {
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3119
|
+
export {
|
|
3120
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
3121
|
+
default as GaugeCircleIcon
|
|
3122
|
+
} from '../icons/circle-gauge';
|
|
3123
|
+
// CircleMinus aliases
|
|
3124
|
+
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3125
|
+
export {
|
|
3126
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
3127
|
+
default as MinusCircleIcon
|
|
3128
|
+
} from '../icons/circle-minus';
|
|
3028
3129
|
// CirclePause aliases
|
|
3029
3130
|
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3030
|
-
export {
|
|
3131
|
+
export {
|
|
3132
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. This alias will be removed in v1.0 */
|
|
3133
|
+
default as PauseCircleIcon
|
|
3134
|
+
} from '../icons/circle-pause';
|
|
3135
|
+
// CircleParking aliases
|
|
3136
|
+
export { default as CircleParkingIcon } from '../icons/circle-parking';
|
|
3137
|
+
export {
|
|
3138
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. This alias will be removed in v1.0 */
|
|
3139
|
+
default as ParkingCircleIcon
|
|
3140
|
+
} from '../icons/circle-parking';
|
|
3031
3141
|
// CirclePercent aliases
|
|
3032
3142
|
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3033
|
-
export {
|
|
3143
|
+
export {
|
|
3144
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
3145
|
+
default as PercentCircleIcon
|
|
3146
|
+
} from '../icons/circle-percent';
|
|
3034
3147
|
// CirclePlay aliases
|
|
3035
3148
|
export { default as CirclePlayIcon } from '../icons/circle-play';
|
|
3036
|
-
export {
|
|
3149
|
+
export {
|
|
3150
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
3151
|
+
default as PlayCircleIcon
|
|
3152
|
+
} from '../icons/circle-play';
|
|
3037
3153
|
// CirclePower aliases
|
|
3038
3154
|
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3039
|
-
export {
|
|
3155
|
+
export {
|
|
3156
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePower} instead. This alias will be removed in v1.0 */
|
|
3157
|
+
default as PowerCircleIcon
|
|
3158
|
+
} from '../icons/circle-power';
|
|
3040
3159
|
// CirclePlus aliases
|
|
3041
3160
|
export { default as CirclePlusIcon } from '../icons/circle-plus';
|
|
3042
|
-
export {
|
|
3161
|
+
export {
|
|
3162
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
3163
|
+
default as PlusCircleIcon
|
|
3164
|
+
} from '../icons/circle-plus';
|
|
3043
3165
|
// CircleQuestionMark aliases
|
|
3044
3166
|
export { default as CircleQuestionMarkIcon } from '../icons/circle-question-mark';
|
|
3045
|
-
export {
|
|
3046
|
-
|
|
3167
|
+
export {
|
|
3168
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3169
|
+
default as HelpCircleIcon
|
|
3170
|
+
} from '../icons/circle-question-mark';
|
|
3171
|
+
export {
|
|
3172
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3173
|
+
default as CircleHelpIcon
|
|
3174
|
+
} from '../icons/circle-question-mark';
|
|
3047
3175
|
// CircleSlash2 aliases
|
|
3048
3176
|
export { default as CircleSlash2Icon } from '../icons/circle-slash-2';
|
|
3049
|
-
export {
|
|
3177
|
+
export {
|
|
3178
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
3179
|
+
default as CircleSlashedIcon
|
|
3180
|
+
} from '../icons/circle-slash-2';
|
|
3050
3181
|
// CircleUserRound aliases
|
|
3051
3182
|
export { default as CircleUserRoundIcon } from '../icons/circle-user-round';
|
|
3052
3183
|
export {
|
|
@@ -3055,50 +3186,86 @@ export {
|
|
|
3055
3186
|
} from '../icons/circle-user-round';
|
|
3056
3187
|
// CircleStop aliases
|
|
3057
3188
|
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3058
|
-
export {
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3189
|
+
export {
|
|
3190
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
3191
|
+
default as StopCircleIcon
|
|
3192
|
+
} from '../icons/circle-stop';
|
|
3062
3193
|
// CircleUser aliases
|
|
3063
3194
|
export { default as CircleUserIcon } from '../icons/circle-user';
|
|
3064
|
-
export {
|
|
3195
|
+
export {
|
|
3196
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
3197
|
+
default as UserCircleIcon
|
|
3198
|
+
} from '../icons/circle-user';
|
|
3199
|
+
// CircleX aliases
|
|
3200
|
+
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3201
|
+
export {
|
|
3202
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
3203
|
+
default as XCircleIcon
|
|
3204
|
+
} from '../icons/circle-x';
|
|
3065
3205
|
// ClipboardPenLine aliases
|
|
3066
3206
|
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3067
|
-
export {
|
|
3207
|
+
export {
|
|
3208
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. This alias will be removed in v1.0 */
|
|
3209
|
+
default as ClipboardSignatureIcon
|
|
3210
|
+
} from '../icons/clipboard-pen-line';
|
|
3068
3211
|
// ClipboardPen aliases
|
|
3069
3212
|
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3070
|
-
export {
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3213
|
+
export {
|
|
3214
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. This alias will be removed in v1.0 */
|
|
3215
|
+
default as ClipboardEditIcon
|
|
3216
|
+
} from '../icons/clipboard-pen';
|
|
3074
3217
|
// CloudDownload aliases
|
|
3075
3218
|
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3076
|
-
export {
|
|
3219
|
+
export {
|
|
3220
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. This alias will be removed in v1.0 */
|
|
3221
|
+
default as DownloadCloudIcon
|
|
3222
|
+
} from '../icons/cloud-download';
|
|
3223
|
+
// CloudUpload aliases
|
|
3224
|
+
export { default as CloudUploadIcon } from '../icons/cloud-upload';
|
|
3225
|
+
export {
|
|
3226
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
3227
|
+
default as UploadCloudIcon
|
|
3228
|
+
} from '../icons/cloud-upload';
|
|
3077
3229
|
// CodeXml aliases
|
|
3078
3230
|
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3079
3231
|
export {
|
|
3080
3232
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
3081
3233
|
default as Code2Icon
|
|
3082
3234
|
} from '../icons/code-xml';
|
|
3083
|
-
// Columns3Cog aliases
|
|
3084
|
-
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3085
|
-
export { default as ColumnsSettingsIcon } from '../icons/columns-3-cog';
|
|
3086
|
-
export { default as TableConfigIcon } from '../icons/columns-3-cog';
|
|
3087
3235
|
// Columns2 aliases
|
|
3088
3236
|
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3089
|
-
export {
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3237
|
+
export {
|
|
3238
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
3239
|
+
default as ColumnsIcon
|
|
3240
|
+
} from '../icons/columns-2';
|
|
3241
|
+
// Columns3Cog aliases
|
|
3242
|
+
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3243
|
+
export {
|
|
3244
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
3245
|
+
default as ColumnsSettingsIcon
|
|
3246
|
+
} from '../icons/columns-3-cog';
|
|
3247
|
+
export {
|
|
3248
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
3249
|
+
default as TableConfigIcon
|
|
3250
|
+
} from '../icons/columns-3-cog';
|
|
3093
3251
|
// ContactRound aliases
|
|
3094
3252
|
export { default as ContactRoundIcon } from '../icons/contact-round';
|
|
3095
3253
|
export {
|
|
3096
3254
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
3097
3255
|
default as Contact2Icon
|
|
3098
3256
|
} from '../icons/contact-round';
|
|
3257
|
+
// Columns3 aliases
|
|
3258
|
+
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3259
|
+
export {
|
|
3260
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
3261
|
+
default as PanelsLeftRightIcon
|
|
3262
|
+
} from '../icons/columns-3';
|
|
3099
3263
|
// DiamondPercent aliases
|
|
3100
3264
|
export { default as DiamondPercentIcon } from '../icons/diamond-percent';
|
|
3101
|
-
export {
|
|
3265
|
+
export {
|
|
3266
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
3267
|
+
default as PercentDiamondIcon
|
|
3268
|
+
} from '../icons/diamond-percent';
|
|
3102
3269
|
// Earth aliases
|
|
3103
3270
|
export { default as EarthIcon } from '../icons/earth';
|
|
3104
3271
|
export {
|
|
@@ -3107,58 +3274,82 @@ export {
|
|
|
3107
3274
|
} from '../icons/earth';
|
|
3108
3275
|
// EllipsisVertical aliases
|
|
3109
3276
|
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3110
|
-
export {
|
|
3277
|
+
export {
|
|
3278
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
3279
|
+
default as MoreVerticalIcon
|
|
3280
|
+
} from '../icons/ellipsis-vertical';
|
|
3281
|
+
// FileAxis3d aliases
|
|
3282
|
+
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3283
|
+
export {
|
|
3284
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
3285
|
+
default as FileAxis3DIcon
|
|
3286
|
+
} from '../icons/file-axis-3d';
|
|
3111
3287
|
// Ellipsis aliases
|
|
3112
3288
|
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3113
|
-
export {
|
|
3289
|
+
export {
|
|
3290
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
3291
|
+
default as MoreHorizontalIcon
|
|
3292
|
+
} from '../icons/ellipsis';
|
|
3114
3293
|
// FileChartColumnIncreasing aliases
|
|
3115
3294
|
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3116
3295
|
export {
|
|
3117
3296
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3118
3297
|
default as FileBarChartIcon
|
|
3119
3298
|
} from '../icons/file-chart-column-increasing';
|
|
3120
|
-
//
|
|
3121
|
-
export { default as
|
|
3122
|
-
export {
|
|
3299
|
+
// FileChartLine aliases
|
|
3300
|
+
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3301
|
+
export {
|
|
3302
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
3303
|
+
default as FileLineChartIcon
|
|
3304
|
+
} from '../icons/file-chart-line';
|
|
3123
3305
|
// FileChartColumn aliases
|
|
3124
3306
|
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3125
3307
|
export {
|
|
3126
3308
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
3127
3309
|
default as FileBarChart2Icon
|
|
3128
3310
|
} from '../icons/file-chart-column';
|
|
3129
|
-
//
|
|
3130
|
-
export { default as
|
|
3311
|
+
// FileChartPie aliases
|
|
3312
|
+
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3131
3313
|
export {
|
|
3132
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3133
|
-
default as
|
|
3134
|
-
} from '../icons/file-chart-
|
|
3314
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
3315
|
+
default as FilePieChartIcon
|
|
3316
|
+
} from '../icons/file-chart-pie';
|
|
3135
3317
|
// FileCog aliases
|
|
3136
3318
|
export { default as FileCogIcon } from '../icons/file-cog';
|
|
3137
3319
|
export {
|
|
3138
3320
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. This alias will be removed in v1.0 */
|
|
3139
3321
|
default as FileCog2Icon
|
|
3140
3322
|
} from '../icons/file-cog';
|
|
3323
|
+
// FilePen aliases
|
|
3324
|
+
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3325
|
+
export {
|
|
3326
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
3327
|
+
default as FileEditIcon
|
|
3328
|
+
} from '../icons/file-pen';
|
|
3141
3329
|
// FilePenLine aliases
|
|
3142
3330
|
export { default as FilePenLineIcon } from '../icons/file-pen-line';
|
|
3143
|
-
export { default as FileSignatureIcon } from '../icons/file-pen-line';
|
|
3144
|
-
// FileChartPie aliases
|
|
3145
|
-
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3146
3331
|
export {
|
|
3147
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3148
|
-
default as
|
|
3149
|
-
} from '../icons/file-
|
|
3150
|
-
// FilePen aliases
|
|
3151
|
-
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3152
|
-
export { default as FileEditIcon } from '../icons/file-pen';
|
|
3332
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
3333
|
+
default as FileSignatureIcon
|
|
3334
|
+
} from '../icons/file-pen-line';
|
|
3153
3335
|
// FilePlay aliases
|
|
3154
3336
|
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3155
|
-
export {
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3337
|
+
export {
|
|
3338
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
3339
|
+
default as FileVideoIcon
|
|
3340
|
+
} from '../icons/file-play';
|
|
3159
3341
|
// FileVideoCamera aliases
|
|
3160
3342
|
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3161
|
-
export {
|
|
3343
|
+
export {
|
|
3344
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. This alias will be removed in v1.0 */
|
|
3345
|
+
default as FileVideo2Icon
|
|
3346
|
+
} from '../icons/file-video-camera';
|
|
3347
|
+
// FileQuestionMark aliases
|
|
3348
|
+
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3349
|
+
export {
|
|
3350
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3351
|
+
default as FileQuestionIcon
|
|
3352
|
+
} from '../icons/file-question-mark';
|
|
3162
3353
|
// FolderCog aliases
|
|
3163
3354
|
export { default as FolderCogIcon } from '../icons/folder-cog';
|
|
3164
3355
|
export {
|
|
@@ -3167,13 +3358,22 @@ export {
|
|
|
3167
3358
|
} from '../icons/folder-cog';
|
|
3168
3359
|
// FolderPen aliases
|
|
3169
3360
|
export { default as FolderPenIcon } from '../icons/folder-pen';
|
|
3170
|
-
export {
|
|
3361
|
+
export {
|
|
3362
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. This alias will be removed in v1.0 */
|
|
3363
|
+
default as FolderEditIcon
|
|
3364
|
+
} from '../icons/folder-pen';
|
|
3171
3365
|
// FunnelX aliases
|
|
3172
3366
|
export { default as FunnelXIcon } from '../icons/funnel-x';
|
|
3173
3367
|
export {
|
|
3174
3368
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
3175
3369
|
default as FilterXIcon
|
|
3176
3370
|
} from '../icons/funnel-x';
|
|
3371
|
+
// GitCommitHorizontal aliases
|
|
3372
|
+
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3373
|
+
export {
|
|
3374
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
3375
|
+
default as GitCommitIcon
|
|
3376
|
+
} from '../icons/git-commit-horizontal';
|
|
3177
3377
|
// Funnel aliases
|
|
3178
3378
|
export { default as FunnelIcon } from '../icons/funnel';
|
|
3179
3379
|
export {
|
|
@@ -3182,29 +3382,56 @@ export {
|
|
|
3182
3382
|
} from '../icons/funnel';
|
|
3183
3383
|
// Grid2x2Check aliases
|
|
3184
3384
|
export { default as Grid2x2CheckIcon } from '../icons/grid-2x2-check';
|
|
3185
|
-
export {
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
// Grid2x2Plus aliases
|
|
3190
|
-
export { default as Grid2x2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3191
|
-
export { default as Grid2X2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3385
|
+
export {
|
|
3386
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
3387
|
+
default as Grid2X2CheckIcon
|
|
3388
|
+
} from '../icons/grid-2x2-check';
|
|
3192
3389
|
// Grid2x2X aliases
|
|
3193
3390
|
export { default as Grid2x2XIcon } from '../icons/grid-2x2-x';
|
|
3194
|
-
export {
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
export { default as Grid3X3Icon } from '../icons/grid-3x3';
|
|
3391
|
+
export {
|
|
3392
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. This alias will be removed in v1.0 */
|
|
3393
|
+
default as Grid2X2XIcon
|
|
3394
|
+
} from '../icons/grid-2x2-x';
|
|
3199
3395
|
// Grid2x2 aliases
|
|
3200
3396
|
export { default as Grid2x2Icon } from '../icons/grid-2x2';
|
|
3201
|
-
export {
|
|
3397
|
+
export {
|
|
3398
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
3399
|
+
default as Grid2X2Icon
|
|
3400
|
+
} from '../icons/grid-2x2';
|
|
3401
|
+
// Grid2x2Plus aliases
|
|
3402
|
+
export { default as Grid2x2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3403
|
+
export {
|
|
3404
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. This alias will be removed in v1.0 */
|
|
3405
|
+
default as Grid2X2PlusIcon
|
|
3406
|
+
} from '../icons/grid-2x2-plus';
|
|
3407
|
+
// Grid3x3 aliases
|
|
3408
|
+
export { default as Grid3x3Icon } from '../icons/grid-3x3';
|
|
3409
|
+
export {
|
|
3410
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
3411
|
+
default as GridIcon
|
|
3412
|
+
} from '../icons/grid-3x3';
|
|
3413
|
+
export {
|
|
3414
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
3415
|
+
default as Grid3X3Icon
|
|
3416
|
+
} from '../icons/grid-3x3';
|
|
3417
|
+
// HandGrab aliases
|
|
3418
|
+
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3419
|
+
export {
|
|
3420
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
3421
|
+
default as GrabIcon
|
|
3422
|
+
} from '../icons/hand-grab';
|
|
3202
3423
|
// HandHelping aliases
|
|
3203
3424
|
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3204
|
-
export {
|
|
3425
|
+
export {
|
|
3426
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
3427
|
+
default as HelpingHandIcon
|
|
3428
|
+
} from '../icons/hand-helping';
|
|
3205
3429
|
// House aliases
|
|
3206
3430
|
export { default as HouseIcon } from '../icons/house';
|
|
3207
|
-
export {
|
|
3431
|
+
export {
|
|
3432
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
3433
|
+
default as HomeIcon
|
|
3434
|
+
} from '../icons/house';
|
|
3208
3435
|
// IceCreamBowl aliases
|
|
3209
3436
|
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3210
3437
|
export {
|
|
@@ -3213,292 +3440,550 @@ export {
|
|
|
3213
3440
|
} from '../icons/ice-cream-bowl';
|
|
3214
3441
|
// IceCreamCone aliases
|
|
3215
3442
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3216
|
-
export {
|
|
3443
|
+
export {
|
|
3444
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
3445
|
+
default as IceCreamIcon
|
|
3446
|
+
} from '../icons/ice-cream-cone';
|
|
3447
|
+
// IndentIncrease aliases
|
|
3448
|
+
export { default as IndentIncreaseIcon } from '../icons/indent-increase';
|
|
3449
|
+
export {
|
|
3450
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentIncrease} instead. This alias will be removed in v1.0 */
|
|
3451
|
+
default as IndentIcon
|
|
3452
|
+
} from '../icons/indent-increase';
|
|
3217
3453
|
// IndentDecrease aliases
|
|
3218
3454
|
export { default as IndentDecreaseIcon } from '../icons/indent-decrease';
|
|
3219
|
-
export {
|
|
3455
|
+
export {
|
|
3456
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentDecrease} instead. This alias will be removed in v1.0 */
|
|
3457
|
+
default as OutdentIcon
|
|
3458
|
+
} from '../icons/indent-decrease';
|
|
3220
3459
|
// LaptopMinimal aliases
|
|
3221
3460
|
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3222
3461
|
export {
|
|
3223
3462
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. This alias will be removed in v1.0 */
|
|
3224
3463
|
default as Laptop2Icon
|
|
3225
3464
|
} from '../icons/laptop-minimal';
|
|
3226
|
-
// IndentIncrease aliases
|
|
3227
|
-
export { default as IndentIncreaseIcon } from '../icons/indent-increase';
|
|
3228
|
-
export { default as IndentIcon } from '../icons/indent-increase';
|
|
3229
3465
|
// Layers aliases
|
|
3230
3466
|
export { default as LayersIcon } from '../icons/layers';
|
|
3231
|
-
export {
|
|
3467
|
+
export {
|
|
3468
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
3469
|
+
default as Layers3Icon
|
|
3470
|
+
} from '../icons/layers';
|
|
3232
3471
|
// LoaderCircle aliases
|
|
3233
3472
|
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3234
|
-
export {
|
|
3473
|
+
export {
|
|
3474
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
3475
|
+
default as Loader2Icon
|
|
3476
|
+
} from '../icons/loader-circle';
|
|
3235
3477
|
// LockKeyholeOpen aliases
|
|
3236
3478
|
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3237
|
-
export {
|
|
3479
|
+
export {
|
|
3480
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
3481
|
+
default as UnlockKeyholeIcon
|
|
3482
|
+
} from '../icons/lock-keyhole-open';
|
|
3238
3483
|
// LockOpen aliases
|
|
3239
3484
|
export { default as LockOpenIcon } from '../icons/lock-open';
|
|
3240
|
-
export {
|
|
3485
|
+
export {
|
|
3486
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. This alias will be removed in v1.0 */
|
|
3487
|
+
default as UnlockIcon
|
|
3488
|
+
} from '../icons/lock-open';
|
|
3241
3489
|
// MailQuestionMark aliases
|
|
3242
3490
|
export { default as MailQuestionMarkIcon } from '../icons/mail-question-mark';
|
|
3243
|
-
export { default as MailQuestionIcon } from '../icons/mail-question-mark';
|
|
3244
|
-
// MapPinPen aliases
|
|
3245
|
-
export { default as MapPinPenIcon } from '../icons/map-pin-pen';
|
|
3246
3491
|
export {
|
|
3247
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3248
|
-
default as
|
|
3249
|
-
} from '../icons/
|
|
3492
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3493
|
+
default as MailQuestionIcon
|
|
3494
|
+
} from '../icons/mail-question-mark';
|
|
3250
3495
|
// MessageCircleQuestionMark aliases
|
|
3251
3496
|
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3252
|
-
export {
|
|
3497
|
+
export {
|
|
3498
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3499
|
+
default as MessageCircleQuestionIcon
|
|
3500
|
+
} from '../icons/message-circle-question-mark';
|
|
3253
3501
|
// MicVocal aliases
|
|
3254
3502
|
export { default as MicVocalIcon } from '../icons/mic-vocal';
|
|
3255
3503
|
export {
|
|
3256
3504
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. This alias will be removed in v1.0 */
|
|
3257
3505
|
default as Mic2Icon
|
|
3258
3506
|
} from '../icons/mic-vocal';
|
|
3507
|
+
// MapPinPen aliases
|
|
3508
|
+
export { default as MapPinPenIcon } from '../icons/map-pin-pen';
|
|
3509
|
+
export {
|
|
3510
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. This alias will be removed in v1.0 */
|
|
3511
|
+
default as LocationEditIcon
|
|
3512
|
+
} from '../icons/map-pin-pen';
|
|
3259
3513
|
// Move3d aliases
|
|
3260
3514
|
export { default as Move3dIcon } from '../icons/move-3d';
|
|
3261
|
-
export {
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3515
|
+
export {
|
|
3516
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
3517
|
+
default as Move3DIcon
|
|
3518
|
+
} from '../icons/move-3d';
|
|
3265
3519
|
// OctagonPause aliases
|
|
3266
3520
|
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3267
|
-
export {
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3521
|
+
export {
|
|
3522
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
3523
|
+
default as PauseOctagonIcon
|
|
3524
|
+
} from '../icons/octagon-pause';
|
|
3525
|
+
// OctagonAlert aliases
|
|
3526
|
+
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3527
|
+
export {
|
|
3528
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
3529
|
+
default as AlertOctagonIcon
|
|
3530
|
+
} from '../icons/octagon-alert';
|
|
3271
3531
|
// OctagonX aliases
|
|
3272
3532
|
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3273
|
-
export {
|
|
3533
|
+
export {
|
|
3534
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. This alias will be removed in v1.0 */
|
|
3535
|
+
default as XOctagonIcon
|
|
3536
|
+
} from '../icons/octagon-x';
|
|
3274
3537
|
// PanelBottomDashed aliases
|
|
3275
3538
|
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3276
|
-
export {
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3539
|
+
export {
|
|
3540
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
3541
|
+
default as PanelBottomInactiveIcon
|
|
3542
|
+
} from '../icons/panel-bottom-dashed';
|
|
3280
3543
|
// PanelLeftClose aliases
|
|
3281
3544
|
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3282
|
-
export {
|
|
3545
|
+
export {
|
|
3546
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
3547
|
+
default as SidebarCloseIcon
|
|
3548
|
+
} from '../icons/panel-left-close';
|
|
3549
|
+
// PaintbrushVertical aliases
|
|
3550
|
+
export { default as PaintbrushVerticalIcon } from '../icons/paintbrush-vertical';
|
|
3551
|
+
export {
|
|
3552
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
3553
|
+
default as Paintbrush2Icon
|
|
3554
|
+
} from '../icons/paintbrush-vertical';
|
|
3283
3555
|
// PanelLeftDashed aliases
|
|
3284
3556
|
export { default as PanelLeftDashedIcon } from '../icons/panel-left-dashed';
|
|
3285
|
-
export {
|
|
3557
|
+
export {
|
|
3558
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
3559
|
+
default as PanelLeftInactiveIcon
|
|
3560
|
+
} from '../icons/panel-left-dashed';
|
|
3561
|
+
// PanelLeftOpen aliases
|
|
3562
|
+
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3563
|
+
export {
|
|
3564
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
3565
|
+
default as SidebarOpenIcon
|
|
3566
|
+
} from '../icons/panel-left-open';
|
|
3286
3567
|
// PanelRightDashed aliases
|
|
3287
3568
|
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3288
|
-
export {
|
|
3569
|
+
export {
|
|
3570
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
3571
|
+
default as PanelRightInactiveIcon
|
|
3572
|
+
} from '../icons/panel-right-dashed';
|
|
3289
3573
|
// PanelLeft aliases
|
|
3290
3574
|
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3291
|
-
export {
|
|
3575
|
+
export {
|
|
3576
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
3577
|
+
default as SidebarIcon
|
|
3578
|
+
} from '../icons/panel-left';
|
|
3292
3579
|
// PanelTopDashed aliases
|
|
3293
3580
|
export { default as PanelTopDashedIcon } from '../icons/panel-top-dashed';
|
|
3294
|
-
export {
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3581
|
+
export {
|
|
3582
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. This alias will be removed in v1.0 */
|
|
3583
|
+
default as PanelTopInactiveIcon
|
|
3584
|
+
} from '../icons/panel-top-dashed';
|
|
3298
3585
|
// PenLine aliases
|
|
3299
3586
|
export { default as PenLineIcon } from '../icons/pen-line';
|
|
3300
3587
|
export {
|
|
3301
3588
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
3302
3589
|
default as Edit3Icon
|
|
3303
3590
|
} from '../icons/pen-line';
|
|
3591
|
+
// PanelsTopLeft aliases
|
|
3592
|
+
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3593
|
+
export {
|
|
3594
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
3595
|
+
default as LayoutIcon
|
|
3596
|
+
} from '../icons/panels-top-left';
|
|
3304
3597
|
// Pen aliases
|
|
3305
3598
|
export { default as PenIcon } from '../icons/pen';
|
|
3306
3599
|
export {
|
|
3307
3600
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
3308
3601
|
default as Edit2Icon
|
|
3309
3602
|
} from '../icons/pen';
|
|
3310
|
-
// PlugZap aliases
|
|
3311
|
-
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3312
|
-
export { default as PlugZap2Icon } from '../icons/plug-zap';
|
|
3313
3603
|
// RectangleEllipsis aliases
|
|
3314
3604
|
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3315
|
-
export {
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3605
|
+
export {
|
|
3606
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
3607
|
+
default as FormInputIcon
|
|
3608
|
+
} from '../icons/rectangle-ellipsis';
|
|
3609
|
+
// PlugZap aliases
|
|
3610
|
+
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3611
|
+
export {
|
|
3612
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
3613
|
+
default as PlugZap2Icon
|
|
3614
|
+
} from '../icons/plug-zap';
|
|
3319
3615
|
// Rotate3d aliases
|
|
3320
3616
|
export { default as Rotate3dIcon } from '../icons/rotate-3d';
|
|
3321
|
-
export {
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3617
|
+
export {
|
|
3618
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. This alias will be removed in v1.0 */
|
|
3619
|
+
default as Rotate3DIcon
|
|
3620
|
+
} from '../icons/rotate-3d';
|
|
3621
|
+
// Rows2 aliases
|
|
3622
|
+
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3623
|
+
export {
|
|
3624
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
3625
|
+
default as RowsIcon
|
|
3626
|
+
} from '../icons/rows-2';
|
|
3325
3627
|
// Rows3 aliases
|
|
3326
3628
|
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3327
|
-
export {
|
|
3629
|
+
export {
|
|
3630
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
3631
|
+
default as PanelsTopBottomIcon
|
|
3632
|
+
} from '../icons/rows-3';
|
|
3633
|
+
// Scale3d aliases
|
|
3634
|
+
export { default as Scale3dIcon } from '../icons/scale-3d';
|
|
3635
|
+
export {
|
|
3636
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
3637
|
+
default as Scale3DIcon
|
|
3638
|
+
} from '../icons/scale-3d';
|
|
3328
3639
|
// SendHorizontal aliases
|
|
3329
3640
|
export { default as SendHorizontalIcon } from '../icons/send-horizontal';
|
|
3330
3641
|
export {
|
|
3331
3642
|
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
3332
3643
|
default as SendHorizonalIcon
|
|
3333
3644
|
} from '../icons/send-horizontal';
|
|
3334
|
-
// ShieldX aliases
|
|
3335
|
-
export { default as ShieldXIcon } from '../icons/shield-x';
|
|
3336
|
-
export { default as ShieldCloseIcon } from '../icons/shield-x';
|
|
3337
|
-
// SlidersVertical aliases
|
|
3338
|
-
export { default as SlidersVerticalIcon } from '../icons/sliders-vertical';
|
|
3339
|
-
export { default as SlidersIcon } from '../icons/sliders-vertical';
|
|
3340
3645
|
// ShieldQuestionMark aliases
|
|
3341
3646
|
export { default as ShieldQuestionMarkIcon } from '../icons/shield-question-mark';
|
|
3342
|
-
export {
|
|
3647
|
+
export {
|
|
3648
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3649
|
+
default as ShieldQuestionIcon
|
|
3650
|
+
} from '../icons/shield-question-mark';
|
|
3651
|
+
// SlidersVertical aliases
|
|
3652
|
+
export { default as SlidersVerticalIcon } from '../icons/sliders-vertical';
|
|
3653
|
+
export {
|
|
3654
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. This alias will be removed in v1.0 */
|
|
3655
|
+
default as SlidersIcon
|
|
3656
|
+
} from '../icons/sliders-vertical';
|
|
3343
3657
|
// Sparkles aliases
|
|
3344
3658
|
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3345
|
-
export {
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3659
|
+
export {
|
|
3660
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
3661
|
+
default as StarsIcon
|
|
3662
|
+
} from '../icons/sparkles';
|
|
3663
|
+
// ShieldX aliases
|
|
3664
|
+
export { default as ShieldXIcon } from '../icons/shield-x';
|
|
3665
|
+
export {
|
|
3666
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
3667
|
+
default as ShieldCloseIcon
|
|
3668
|
+
} from '../icons/shield-x';
|
|
3349
3669
|
// SquareArrowDownLeft aliases
|
|
3350
3670
|
export { default as SquareArrowDownLeftIcon } from '../icons/square-arrow-down-left';
|
|
3351
|
-
export {
|
|
3671
|
+
export {
|
|
3672
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
|
|
3673
|
+
default as ArrowDownLeftSquareIcon
|
|
3674
|
+
} from '../icons/square-arrow-down-left';
|
|
3675
|
+
// SquareActivity aliases
|
|
3676
|
+
export { default as SquareActivityIcon } from '../icons/square-activity';
|
|
3677
|
+
export {
|
|
3678
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. This alias will be removed in v1.0 */
|
|
3679
|
+
default as ActivitySquareIcon
|
|
3680
|
+
} from '../icons/square-activity';
|
|
3352
3681
|
// SquareArrowDownRight aliases
|
|
3353
3682
|
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
3354
|
-
export {
|
|
3683
|
+
export {
|
|
3684
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
3685
|
+
default as ArrowDownRightSquareIcon
|
|
3686
|
+
} from '../icons/square-arrow-down-right';
|
|
3355
3687
|
// SquareArrowDown aliases
|
|
3356
3688
|
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3357
|
-
export {
|
|
3689
|
+
export {
|
|
3690
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
3691
|
+
default as ArrowDownSquareIcon
|
|
3692
|
+
} from '../icons/square-arrow-down';
|
|
3358
3693
|
// SquareArrowLeft aliases
|
|
3359
3694
|
export { default as SquareArrowLeftIcon } from '../icons/square-arrow-left';
|
|
3360
|
-
export {
|
|
3695
|
+
export {
|
|
3696
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
|
|
3697
|
+
default as ArrowLeftSquareIcon
|
|
3698
|
+
} from '../icons/square-arrow-left';
|
|
3361
3699
|
// SquareArrowOutDownLeft aliases
|
|
3362
3700
|
export { default as SquareArrowOutDownLeftIcon } from '../icons/square-arrow-out-down-left';
|
|
3363
|
-
export {
|
|
3701
|
+
export {
|
|
3702
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
3703
|
+
default as ArrowDownLeftFromSquareIcon
|
|
3704
|
+
} from '../icons/square-arrow-out-down-left';
|
|
3364
3705
|
// SquareArrowOutDownRight aliases
|
|
3365
3706
|
export { default as SquareArrowOutDownRightIcon } from '../icons/square-arrow-out-down-right';
|
|
3366
|
-
export {
|
|
3707
|
+
export {
|
|
3708
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3709
|
+
default as ArrowDownRightFromSquareIcon
|
|
3710
|
+
} from '../icons/square-arrow-out-down-right';
|
|
3367
3711
|
// SquareArrowOutUpLeft aliases
|
|
3368
3712
|
export { default as SquareArrowOutUpLeftIcon } from '../icons/square-arrow-out-up-left';
|
|
3369
|
-
export {
|
|
3713
|
+
export {
|
|
3714
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
3715
|
+
default as ArrowUpLeftFromSquareIcon
|
|
3716
|
+
} from '../icons/square-arrow-out-up-left';
|
|
3370
3717
|
// SquareArrowOutUpRight aliases
|
|
3371
3718
|
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
3372
|
-
export {
|
|
3719
|
+
export {
|
|
3720
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3721
|
+
default as ArrowUpRightFromSquareIcon
|
|
3722
|
+
} from '../icons/square-arrow-out-up-right';
|
|
3373
3723
|
// SquareArrowRight aliases
|
|
3374
3724
|
export { default as SquareArrowRightIcon } from '../icons/square-arrow-right';
|
|
3375
|
-
export {
|
|
3725
|
+
export {
|
|
3726
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. This alias will be removed in v1.0 */
|
|
3727
|
+
default as ArrowRightSquareIcon
|
|
3728
|
+
} from '../icons/square-arrow-right';
|
|
3376
3729
|
// SquareArrowUpLeft aliases
|
|
3377
3730
|
export { default as SquareArrowUpLeftIcon } from '../icons/square-arrow-up-left';
|
|
3378
|
-
export {
|
|
3731
|
+
export {
|
|
3732
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
3733
|
+
default as ArrowUpLeftSquareIcon
|
|
3734
|
+
} from '../icons/square-arrow-up-left';
|
|
3379
3735
|
// SquareArrowUpRight aliases
|
|
3380
3736
|
export { default as SquareArrowUpRightIcon } from '../icons/square-arrow-up-right';
|
|
3381
|
-
export {
|
|
3737
|
+
export {
|
|
3738
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
3739
|
+
default as ArrowUpRightSquareIcon
|
|
3740
|
+
} from '../icons/square-arrow-up-right';
|
|
3382
3741
|
// SquareArrowUp aliases
|
|
3383
3742
|
export { default as SquareArrowUpIcon } from '../icons/square-arrow-up';
|
|
3384
|
-
export {
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3743
|
+
export {
|
|
3744
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
3745
|
+
default as ArrowUpSquareIcon
|
|
3746
|
+
} from '../icons/square-arrow-up';
|
|
3388
3747
|
// SquareAsterisk aliases
|
|
3389
3748
|
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3390
|
-
export {
|
|
3749
|
+
export {
|
|
3750
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
3751
|
+
default as AsteriskSquareIcon
|
|
3752
|
+
} from '../icons/square-asterisk';
|
|
3753
|
+
// SquareBottomDashedScissors aliases
|
|
3754
|
+
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
3755
|
+
export {
|
|
3756
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. This alias will be removed in v1.0 */
|
|
3757
|
+
default as ScissorsSquareDashedBottomIcon
|
|
3758
|
+
} from '../icons/square-bottom-dashed-scissors';
|
|
3391
3759
|
// SquareChartGantt aliases
|
|
3392
3760
|
export { default as SquareChartGanttIcon } from '../icons/square-chart-gantt';
|
|
3393
|
-
export {
|
|
3394
|
-
|
|
3761
|
+
export {
|
|
3762
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
3763
|
+
default as GanttChartSquareIcon
|
|
3764
|
+
} from '../icons/square-chart-gantt';
|
|
3765
|
+
export {
|
|
3766
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
3767
|
+
default as SquareGanttChartIcon
|
|
3768
|
+
} from '../icons/square-chart-gantt';
|
|
3395
3769
|
// SquareCheckBig aliases
|
|
3396
3770
|
export { default as SquareCheckBigIcon } from '../icons/square-check-big';
|
|
3397
|
-
export {
|
|
3771
|
+
export {
|
|
3772
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. This alias will be removed in v1.0 */
|
|
3773
|
+
default as CheckSquareIcon
|
|
3774
|
+
} from '../icons/square-check-big';
|
|
3398
3775
|
// SquareCheck aliases
|
|
3399
3776
|
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3400
|
-
export {
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
// SquareChevronUp aliases
|
|
3405
|
-
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
3406
|
-
export { default as ChevronUpSquareIcon } from '../icons/square-chevron-up';
|
|
3777
|
+
export {
|
|
3778
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. This alias will be removed in v1.0 */
|
|
3779
|
+
default as CheckSquare2Icon
|
|
3780
|
+
} from '../icons/square-check';
|
|
3407
3781
|
// SquareChevronDown aliases
|
|
3408
3782
|
export { default as SquareChevronDownIcon } from '../icons/square-chevron-down';
|
|
3409
|
-
export {
|
|
3783
|
+
export {
|
|
3784
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
3785
|
+
default as ChevronDownSquareIcon
|
|
3786
|
+
} from '../icons/square-chevron-down';
|
|
3787
|
+
// SquareChevronLeft aliases
|
|
3788
|
+
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
3789
|
+
export {
|
|
3790
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3791
|
+
default as ChevronLeftSquareIcon
|
|
3792
|
+
} from '../icons/square-chevron-left';
|
|
3410
3793
|
// SquareChevronRight aliases
|
|
3411
3794
|
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
3412
|
-
export {
|
|
3795
|
+
export {
|
|
3796
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
3797
|
+
default as ChevronRightSquareIcon
|
|
3798
|
+
} from '../icons/square-chevron-right';
|
|
3799
|
+
// SquareChevronUp aliases
|
|
3800
|
+
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
3801
|
+
export {
|
|
3802
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
3803
|
+
default as ChevronUpSquareIcon
|
|
3804
|
+
} from '../icons/square-chevron-up';
|
|
3413
3805
|
// SquareCode aliases
|
|
3414
3806
|
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
3415
|
-
export {
|
|
3807
|
+
export {
|
|
3808
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. This alias will be removed in v1.0 */
|
|
3809
|
+
default as CodeSquareIcon
|
|
3810
|
+
} from '../icons/square-code';
|
|
3416
3811
|
// SquareDashedKanban aliases
|
|
3417
3812
|
export { default as SquareDashedKanbanIcon } from '../icons/square-dashed-kanban';
|
|
3418
|
-
export {
|
|
3813
|
+
export {
|
|
3814
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. This alias will be removed in v1.0 */
|
|
3815
|
+
default as KanbanSquareDashedIcon
|
|
3816
|
+
} from '../icons/square-dashed-kanban';
|
|
3419
3817
|
// SquareDashed aliases
|
|
3420
3818
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
3421
|
-
export {
|
|
3819
|
+
export {
|
|
3820
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
3821
|
+
default as BoxSelectIcon
|
|
3822
|
+
} from '../icons/square-dashed';
|
|
3422
3823
|
// SquareDashedMousePointer aliases
|
|
3423
3824
|
export { default as SquareDashedMousePointerIcon } from '../icons/square-dashed-mouse-pointer';
|
|
3424
|
-
export {
|
|
3825
|
+
export {
|
|
3826
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
3827
|
+
default as MousePointerSquareDashedIcon
|
|
3828
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
3425
3829
|
// SquareDivide aliases
|
|
3426
3830
|
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
3427
|
-
export {
|
|
3831
|
+
export {
|
|
3832
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. This alias will be removed in v1.0 */
|
|
3833
|
+
default as DivideSquareIcon
|
|
3834
|
+
} from '../icons/square-divide';
|
|
3428
3835
|
// SquareDot aliases
|
|
3429
3836
|
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
3430
|
-
export {
|
|
3837
|
+
export {
|
|
3838
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. This alias will be removed in v1.0 */
|
|
3839
|
+
default as DotSquareIcon
|
|
3840
|
+
} from '../icons/square-dot';
|
|
3431
3841
|
// SquareEqual aliases
|
|
3432
3842
|
export { default as SquareEqualIcon } from '../icons/square-equal';
|
|
3433
|
-
export {
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3843
|
+
export {
|
|
3844
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
3845
|
+
default as EqualSquareIcon
|
|
3846
|
+
} from '../icons/square-equal';
|
|
3437
3847
|
// SquareFunction aliases
|
|
3438
3848
|
export { default as SquareFunctionIcon } from '../icons/square-function';
|
|
3439
|
-
export {
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3849
|
+
export {
|
|
3850
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
3851
|
+
default as FunctionSquareIcon
|
|
3852
|
+
} from '../icons/square-function';
|
|
3853
|
+
// SquareKanban aliases
|
|
3854
|
+
export { default as SquareKanbanIcon } from '../icons/square-kanban';
|
|
3855
|
+
export {
|
|
3856
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
3857
|
+
default as KanbanSquareIcon
|
|
3858
|
+
} from '../icons/square-kanban';
|
|
3443
3859
|
// SquareLibrary aliases
|
|
3444
3860
|
export { default as SquareLibraryIcon } from '../icons/square-library';
|
|
3445
|
-
export {
|
|
3861
|
+
export {
|
|
3862
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. This alias will be removed in v1.0 */
|
|
3863
|
+
default as LibrarySquareIcon
|
|
3864
|
+
} from '../icons/square-library';
|
|
3865
|
+
// SquareM aliases
|
|
3866
|
+
export { default as SquareMIcon } from '../icons/square-m';
|
|
3867
|
+
export {
|
|
3868
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
3869
|
+
default as MSquareIcon
|
|
3870
|
+
} from '../icons/square-m';
|
|
3446
3871
|
// SquareMenu aliases
|
|
3447
3872
|
export { default as SquareMenuIcon } from '../icons/square-menu';
|
|
3448
|
-
export {
|
|
3873
|
+
export {
|
|
3874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
3875
|
+
default as MenuSquareIcon
|
|
3876
|
+
} from '../icons/square-menu';
|
|
3449
3877
|
// SquareMinus aliases
|
|
3450
3878
|
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
3451
|
-
export {
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3879
|
+
export {
|
|
3880
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
3881
|
+
default as MinusSquareIcon
|
|
3882
|
+
} from '../icons/square-minus';
|
|
3455
3883
|
// SquareParkingOff aliases
|
|
3456
3884
|
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
3457
|
-
export {
|
|
3885
|
+
export {
|
|
3886
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. This alias will be removed in v1.0 */
|
|
3887
|
+
default as ParkingSquareOffIcon
|
|
3888
|
+
} from '../icons/square-parking-off';
|
|
3889
|
+
// SquareMousePointer aliases
|
|
3890
|
+
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
3891
|
+
export {
|
|
3892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
3893
|
+
default as InspectIcon
|
|
3894
|
+
} from '../icons/square-mouse-pointer';
|
|
3458
3895
|
// SquareParking aliases
|
|
3459
3896
|
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
3460
|
-
export {
|
|
3897
|
+
export {
|
|
3898
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. This alias will be removed in v1.0 */
|
|
3899
|
+
default as ParkingSquareIcon
|
|
3900
|
+
} from '../icons/square-parking';
|
|
3461
3901
|
// SquarePen aliases
|
|
3462
3902
|
export { default as SquarePenIcon } from '../icons/square-pen';
|
|
3463
|
-
export {
|
|
3464
|
-
|
|
3465
|
-
|
|
3903
|
+
export {
|
|
3904
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
3905
|
+
default as PenBoxIcon
|
|
3906
|
+
} from '../icons/square-pen';
|
|
3907
|
+
export {
|
|
3908
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
3909
|
+
default as EditIcon
|
|
3910
|
+
} from '../icons/square-pen';
|
|
3911
|
+
export {
|
|
3912
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
3913
|
+
default as PenSquareIcon
|
|
3914
|
+
} from '../icons/square-pen';
|
|
3466
3915
|
// SquarePercent aliases
|
|
3467
3916
|
export { default as SquarePercentIcon } from '../icons/square-percent';
|
|
3468
|
-
export {
|
|
3917
|
+
export {
|
|
3918
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
3919
|
+
default as PercentSquareIcon
|
|
3920
|
+
} from '../icons/square-percent';
|
|
3469
3921
|
// SquarePi aliases
|
|
3470
3922
|
export { default as SquarePiIcon } from '../icons/square-pi';
|
|
3471
|
-
export {
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3923
|
+
export {
|
|
3924
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
3925
|
+
default as PiSquareIcon
|
|
3926
|
+
} from '../icons/square-pi';
|
|
3475
3927
|
// SquarePilcrow aliases
|
|
3476
3928
|
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
3477
|
-
export {
|
|
3929
|
+
export {
|
|
3930
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
3931
|
+
default as PilcrowSquareIcon
|
|
3932
|
+
} from '../icons/square-pilcrow';
|
|
3933
|
+
// SquarePlay aliases
|
|
3934
|
+
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
3935
|
+
export {
|
|
3936
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
3937
|
+
default as PlaySquareIcon
|
|
3938
|
+
} from '../icons/square-play';
|
|
3478
3939
|
// SquarePlus aliases
|
|
3479
3940
|
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
3480
|
-
export {
|
|
3941
|
+
export {
|
|
3942
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
3943
|
+
default as PlusSquareIcon
|
|
3944
|
+
} from '../icons/square-plus';
|
|
3481
3945
|
// SquareScissors aliases
|
|
3482
3946
|
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
3483
|
-
export {
|
|
3947
|
+
export {
|
|
3948
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
3949
|
+
default as ScissorsSquareIcon
|
|
3950
|
+
} from '../icons/square-scissors';
|
|
3484
3951
|
// SquarePower aliases
|
|
3485
3952
|
export { default as SquarePowerIcon } from '../icons/square-power';
|
|
3486
|
-
export {
|
|
3953
|
+
export {
|
|
3954
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. This alias will be removed in v1.0 */
|
|
3955
|
+
default as PowerSquareIcon
|
|
3956
|
+
} from '../icons/square-power';
|
|
3957
|
+
// SquareSigma aliases
|
|
3958
|
+
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
3959
|
+
export {
|
|
3960
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
3961
|
+
default as SigmaSquareIcon
|
|
3962
|
+
} from '../icons/square-sigma';
|
|
3487
3963
|
// SquareSlash aliases
|
|
3488
3964
|
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
3489
|
-
export {
|
|
3965
|
+
export {
|
|
3966
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
3967
|
+
default as SlashSquareIcon
|
|
3968
|
+
} from '../icons/square-slash';
|
|
3490
3969
|
// SquareSplitHorizontal aliases
|
|
3491
3970
|
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
3492
|
-
export {
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
// SquareSplitVertical aliases
|
|
3497
|
-
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
3498
|
-
export { default as SplitSquareVerticalIcon } from '../icons/square-split-vertical';
|
|
3971
|
+
export {
|
|
3972
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
3973
|
+
default as SplitSquareHorizontalIcon
|
|
3974
|
+
} from '../icons/square-split-horizontal';
|
|
3499
3975
|
// SquareTerminal aliases
|
|
3500
3976
|
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
3501
|
-
export {
|
|
3977
|
+
export {
|
|
3978
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
3979
|
+
default as TerminalSquareIcon
|
|
3980
|
+
} from '../icons/square-terminal';
|
|
3981
|
+
// SquareSplitVertical aliases
|
|
3982
|
+
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
3983
|
+
export {
|
|
3984
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
3985
|
+
default as SplitSquareVerticalIcon
|
|
3986
|
+
} from '../icons/square-split-vertical';
|
|
3502
3987
|
// SquareUserRound aliases
|
|
3503
3988
|
export { default as SquareUserRoundIcon } from '../icons/square-user-round';
|
|
3504
3989
|
export {
|
|
@@ -3507,31 +3992,52 @@ export {
|
|
|
3507
3992
|
} from '../icons/square-user-round';
|
|
3508
3993
|
// SquareX aliases
|
|
3509
3994
|
export { default as SquareXIcon } from '../icons/square-x';
|
|
3510
|
-
export {
|
|
3995
|
+
export {
|
|
3996
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
3997
|
+
default as XSquareIcon
|
|
3998
|
+
} from '../icons/square-x';
|
|
3511
3999
|
// SquareUser aliases
|
|
3512
4000
|
export { default as SquareUserIcon } from '../icons/square-user';
|
|
3513
|
-
export {
|
|
4001
|
+
export {
|
|
4002
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
4003
|
+
default as UserSquareIcon
|
|
4004
|
+
} from '../icons/square-user';
|
|
3514
4005
|
// TestTubeDiagonal aliases
|
|
3515
4006
|
export { default as TestTubeDiagonalIcon } from '../icons/test-tube-diagonal';
|
|
3516
|
-
export {
|
|
4007
|
+
export {
|
|
4008
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
4009
|
+
default as TestTube2Icon
|
|
4010
|
+
} from '../icons/test-tube-diagonal';
|
|
3517
4011
|
// TextSelect aliases
|
|
3518
4012
|
export { default as TextSelectIcon } from '../icons/text-select';
|
|
3519
|
-
export {
|
|
4013
|
+
export {
|
|
4014
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
4015
|
+
default as TextSelectionIcon
|
|
4016
|
+
} from '../icons/text-select';
|
|
3520
4017
|
// TramFront aliases
|
|
3521
4018
|
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
3522
|
-
export {
|
|
4019
|
+
export {
|
|
4020
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|
|
4021
|
+
default as TrainIcon
|
|
4022
|
+
} from '../icons/tram-front';
|
|
3523
4023
|
// TreePalm aliases
|
|
3524
4024
|
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
3525
|
-
export {
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
4025
|
+
export {
|
|
4026
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. This alias will be removed in v1.0 */
|
|
4027
|
+
default as PalmtreeIcon
|
|
4028
|
+
} from '../icons/tree-palm';
|
|
3529
4029
|
// TvMinimal aliases
|
|
3530
4030
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
3531
4031
|
export {
|
|
3532
4032
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|
|
3533
4033
|
default as Tv2Icon
|
|
3534
4034
|
} from '../icons/tv-minimal';
|
|
4035
|
+
// TriangleAlert aliases
|
|
4036
|
+
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4037
|
+
export {
|
|
4038
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
4039
|
+
default as AlertTriangleIcon
|
|
4040
|
+
} from '../icons/triangle-alert';
|
|
3535
4041
|
// University aliases
|
|
3536
4042
|
export { default as UniversityIcon } from '../icons/university';
|
|
3537
4043
|
export {
|
|
@@ -3562,27 +4068,36 @@ export {
|
|
|
3562
4068
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
3563
4069
|
default as UserPlus2Icon
|
|
3564
4070
|
} from '../icons/user-round-plus';
|
|
3565
|
-
// UserRoundX aliases
|
|
3566
|
-
export { default as UserRoundXIcon } from '../icons/user-round-x';
|
|
3567
|
-
export {
|
|
3568
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
3569
|
-
default as UserX2Icon
|
|
3570
|
-
} from '../icons/user-round-x';
|
|
3571
4071
|
// UserRound aliases
|
|
3572
4072
|
export { default as UserRoundIcon } from '../icons/user-round';
|
|
3573
4073
|
export {
|
|
3574
4074
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
3575
4075
|
default as User2Icon
|
|
3576
4076
|
} from '../icons/user-round';
|
|
3577
|
-
//
|
|
3578
|
-
export { default as
|
|
3579
|
-
export {
|
|
4077
|
+
// UserRoundX aliases
|
|
4078
|
+
export { default as UserRoundXIcon } from '../icons/user-round-x';
|
|
4079
|
+
export {
|
|
4080
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
4081
|
+
default as UserX2Icon
|
|
4082
|
+
} from '../icons/user-round-x';
|
|
3580
4083
|
// UsersRound aliases
|
|
3581
4084
|
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
3582
4085
|
export {
|
|
3583
4086
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. This alias will be removed in v1.0 */
|
|
3584
4087
|
default as Users2Icon
|
|
3585
4088
|
} from '../icons/users-round';
|
|
4089
|
+
// UtensilsCrossed aliases
|
|
4090
|
+
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4091
|
+
export {
|
|
4092
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. This alias will be removed in v1.0 */
|
|
4093
|
+
default as ForkKnifeCrossedIcon
|
|
4094
|
+
} from '../icons/utensils-crossed';
|
|
4095
|
+
// Utensils aliases
|
|
4096
|
+
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4097
|
+
export {
|
|
4098
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
4099
|
+
default as ForkKnifeIcon
|
|
4100
|
+
} from '../icons/utensils';
|
|
3586
4101
|
// WalletMinimal aliases
|
|
3587
4102
|
export { default as WalletMinimalIcon } from '../icons/wallet-minimal';
|
|
3588
4103
|
export {
|
|
@@ -3595,7 +4110,4 @@ export {
|
|
|
3595
4110
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. This alias will be removed in v1.0 */
|
|
3596
4111
|
default as Wand2Icon
|
|
3597
4112
|
} from '../icons/wand-sparkles';
|
|
3598
|
-
// Utensils aliases
|
|
3599
|
-
export { default as UtensilsIcon } from '../icons/utensils';
|
|
3600
|
-
export { default as ForkKnifeIcon } from '../icons/utensils';
|
|
3601
4113
|
|