@lucide/astro 0.575.0 → 0.577.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 +52 -52
- package/src/aliases/prefixed.ts +540 -510
- package/src/aliases/suffixed.ts +906 -876
- package/src/icons/cuboid.ts +2 -2
- package/src/icons/ellipse.ts +18 -0
- package/src/icons/fishing-rod.ts +18 -0
- package/src/icons/index.ts +143 -128
- package/src/icons/package-check.ts +2 -2
- package/src/icons/package-minus.ts +2 -2
- package/src/icons/package-plus.ts +2 -2
- package/src/icons/package-search.ts +2 -2
- package/src/icons/package-x.ts +2 -2
- package/src/icons/receipt-cent.ts +2 -2
- package/src/icons/receipt-euro.ts +2 -2
- package/src/icons/receipt-indian-rupee.ts +2 -2
- package/src/icons/receipt-japanese-yen.ts +2 -2
- package/src/icons/receipt-pound-sterling.ts +2 -2
- package/src/icons/receipt-russian-ruble.ts +2 -2
- package/src/icons/receipt-swiss-franc.ts +2 -2
- package/src/icons/receipt-turkish-lira.ts +2 -2
- package/src/icons/receipt.ts +2 -2
- package/src/icons/zodiac-aquarius.ts +18 -0
- package/src/icons/zodiac-aries.ts +18 -0
- package/src/icons/zodiac-cancer.ts +18 -0
- package/src/icons/zodiac-capricorn.ts +18 -0
- package/src/icons/zodiac-gemini.ts +18 -0
- package/src/icons/zodiac-leo.ts +18 -0
- package/src/icons/zodiac-libra.ts +18 -0
- package/src/icons/zodiac-ophiuchus.ts +18 -0
- package/src/icons/zodiac-pisces.ts +18 -0
- package/src/icons/zodiac-sagittarius.ts +18 -0
- package/src/icons/zodiac-scorpio.ts +18 -0
- package/src/icons/zodiac-taurus.ts +18 -0
- package/src/icons/zodiac-virgo.ts +18 -0
package/src/aliases/suffixed.ts
CHANGED
|
@@ -2,24 +2,26 @@
|
|
|
2
2
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
3
|
// ALargeSmall aliases
|
|
4
4
|
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
5
|
-
// Activity aliases
|
|
6
|
-
export { default as ActivityIcon } from '../icons/activity';
|
|
7
5
|
// Accessibility aliases
|
|
8
6
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
7
|
+
// AArrowUp aliases
|
|
8
|
+
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
9
|
+
// Activity aliases
|
|
10
|
+
export { default as ActivityIcon } from '../icons/activity';
|
|
9
11
|
// AirVent aliases
|
|
10
12
|
export { default as AirVentIcon } from '../icons/air-vent';
|
|
11
13
|
// Airplay aliases
|
|
12
14
|
export { default as AirplayIcon } from '../icons/airplay';
|
|
13
|
-
// AlarmClock aliases
|
|
14
|
-
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
15
15
|
// AlarmClockOff aliases
|
|
16
16
|
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
17
|
+
// AlarmClock aliases
|
|
18
|
+
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
17
19
|
// AlarmSmoke aliases
|
|
18
20
|
export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
19
|
-
// Album aliases
|
|
20
|
-
export { default as AlbumIcon } from '../icons/album';
|
|
21
21
|
// AlignCenterHorizontal aliases
|
|
22
22
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
23
|
+
// Album aliases
|
|
24
|
+
export { default as AlbumIcon } from '../icons/album';
|
|
23
25
|
// AlignCenterVertical aliases
|
|
24
26
|
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
25
27
|
// AlignEndHorizontal aliases
|
|
@@ -50,12 +52,12 @@ export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical
|
|
|
50
52
|
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
51
53
|
// AlignVerticalDistributeEnd aliases
|
|
52
54
|
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
53
|
-
// AlignVerticalJustifyEnd aliases
|
|
54
|
-
export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-justify-end';
|
|
55
55
|
// AlignVerticalDistributeStart aliases
|
|
56
56
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
57
57
|
// AlignVerticalJustifyCenter aliases
|
|
58
58
|
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
59
|
+
// AlignVerticalJustifyEnd aliases
|
|
60
|
+
export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-justify-end';
|
|
59
61
|
// AlignVerticalJustifyStart aliases
|
|
60
62
|
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
61
63
|
// AlignVerticalSpaceAround aliases
|
|
@@ -64,84 +66,84 @@ export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical
|
|
|
64
66
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
65
67
|
// Ambulance aliases
|
|
66
68
|
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
67
|
-
// Ampersands aliases
|
|
68
|
-
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
69
69
|
// Ampersand aliases
|
|
70
70
|
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
71
|
+
// Ampersands aliases
|
|
72
|
+
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
71
73
|
// Amphora aliases
|
|
72
74
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
73
|
-
// Angry aliases
|
|
74
|
-
export { default as AngryIcon } from '../icons/angry';
|
|
75
75
|
// Anchor aliases
|
|
76
76
|
export { default as AnchorIcon } from '../icons/anchor';
|
|
77
|
+
// Angry aliases
|
|
78
|
+
export { default as AngryIcon } from '../icons/angry';
|
|
77
79
|
// Annoyed aliases
|
|
78
80
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
79
81
|
// Antenna aliases
|
|
80
82
|
export { default as AntennaIcon } from '../icons/antenna';
|
|
81
83
|
// Anvil aliases
|
|
82
84
|
export { default as AnvilIcon } from '../icons/anvil';
|
|
85
|
+
// AppWindowMac aliases
|
|
86
|
+
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
83
87
|
// Aperture aliases
|
|
84
88
|
export { default as ApertureIcon } from '../icons/aperture';
|
|
85
89
|
// AppWindow aliases
|
|
86
90
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
87
|
-
// AppWindowMac aliases
|
|
88
|
-
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
89
91
|
// Apple aliases
|
|
90
92
|
export { default as AppleIcon } from '../icons/apple';
|
|
91
93
|
// ArchiveRestore aliases
|
|
92
94
|
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
93
|
-
// Archive aliases
|
|
94
|
-
export { default as ArchiveIcon } from '../icons/archive';
|
|
95
95
|
// ArchiveX aliases
|
|
96
96
|
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
97
|
+
// Archive aliases
|
|
98
|
+
export { default as ArchiveIcon } from '../icons/archive';
|
|
97
99
|
// Armchair aliases
|
|
98
100
|
export { default as ArmchairIcon } from '../icons/armchair';
|
|
99
101
|
// ArrowBigDownDash aliases
|
|
100
102
|
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
101
|
-
// ArrowBigLeft aliases
|
|
102
|
-
export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
103
|
-
// ArrowBigLeftDash aliases
|
|
104
|
-
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
105
103
|
// ArrowBigDown aliases
|
|
106
104
|
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
105
|
+
// ArrowBigLeftDash aliases
|
|
106
|
+
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
107
|
+
// ArrowBigLeft aliases
|
|
108
|
+
export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
107
109
|
// ArrowBigRightDash aliases
|
|
108
110
|
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
109
|
-
// ArrowBigRight aliases
|
|
110
|
-
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
111
111
|
// ArrowBigUpDash aliases
|
|
112
112
|
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
113
|
+
// ArrowBigRight aliases
|
|
114
|
+
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
113
115
|
// ArrowBigUp aliases
|
|
114
116
|
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
117
|
+
// ArrowDownFromLine aliases
|
|
118
|
+
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
115
119
|
// ArrowDownLeft aliases
|
|
116
120
|
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
117
|
-
// ArrowDownRight aliases
|
|
118
|
-
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
119
121
|
// ArrowDownNarrowWide aliases
|
|
120
122
|
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
121
|
-
//
|
|
122
|
-
export { default as
|
|
123
|
+
// ArrowDownRight aliases
|
|
124
|
+
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
123
125
|
// ArrowDownToDot aliases
|
|
124
126
|
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
125
127
|
// ArrowDownToLine aliases
|
|
126
128
|
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
129
|
+
// ArrowDownUp aliases
|
|
130
|
+
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
127
131
|
// ArrowLeftFromLine aliases
|
|
128
132
|
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
129
133
|
// ArrowDown aliases
|
|
130
134
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
131
|
-
// ArrowDownUp aliases
|
|
132
|
-
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
133
135
|
// ArrowLeftRight aliases
|
|
134
136
|
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
135
137
|
// ArrowLeftToLine aliases
|
|
136
138
|
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
137
139
|
// ArrowLeft aliases
|
|
138
140
|
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
139
|
-
// ArrowRightToLine aliases
|
|
140
|
-
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
141
|
-
// ArrowRightLeft aliases
|
|
142
|
-
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
143
141
|
// ArrowRightFromLine aliases
|
|
144
142
|
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
143
|
+
// ArrowRightLeft aliases
|
|
144
|
+
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
145
|
+
// ArrowRightToLine aliases
|
|
146
|
+
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
145
147
|
// ArrowRight aliases
|
|
146
148
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
147
149
|
// ArrowUpDown aliases
|
|
@@ -166,14 +168,14 @@ export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
|
166
168
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
167
169
|
// AtSign aliases
|
|
168
170
|
export { default as AtSignIcon } from '../icons/at-sign';
|
|
169
|
-
// AudioLines aliases
|
|
170
|
-
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
171
171
|
// Atom aliases
|
|
172
172
|
export { default as AtomIcon } from '../icons/atom';
|
|
173
|
-
//
|
|
174
|
-
export { default as
|
|
173
|
+
// AudioLines aliases
|
|
174
|
+
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
175
175
|
// Award aliases
|
|
176
176
|
export { default as AwardIcon } from '../icons/award';
|
|
177
|
+
// AudioWaveform aliases
|
|
178
|
+
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
177
179
|
// Axe aliases
|
|
178
180
|
export { default as AxeIcon } from '../icons/axe';
|
|
179
181
|
// Baby aliases
|
|
@@ -198,24 +200,24 @@ export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
|
198
200
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
199
201
|
// BadgePercent aliases
|
|
200
202
|
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
201
|
-
// BadgePlus aliases
|
|
202
|
-
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
203
203
|
// BadgePoundSterling aliases
|
|
204
204
|
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
205
|
+
// BadgePlus aliases
|
|
206
|
+
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
205
207
|
// BadgeRussianRuble aliases
|
|
206
208
|
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
207
|
-
// BadgeSwissFranc aliases
|
|
208
|
-
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
209
209
|
// BadgeTurkishLira aliases
|
|
210
210
|
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
211
211
|
// BadgeX aliases
|
|
212
212
|
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
213
|
+
// BadgeSwissFranc aliases
|
|
214
|
+
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
213
215
|
// Badge aliases
|
|
214
216
|
export { default as BadgeIcon } from '../icons/badge';
|
|
215
|
-
// Balloon aliases
|
|
216
|
-
export { default as BalloonIcon } from '../icons/balloon';
|
|
217
217
|
// BaggageClaim aliases
|
|
218
218
|
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
219
|
+
// Balloon aliases
|
|
220
|
+
export { default as BalloonIcon } from '../icons/balloon';
|
|
219
221
|
// Ban aliases
|
|
220
222
|
export { default as BanIcon } from '../icons/ban';
|
|
221
223
|
// Banana aliases
|
|
@@ -230,8 +232,6 @@ export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
|
230
232
|
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
231
233
|
// Banknote aliases
|
|
232
234
|
export { default as BanknoteIcon } from '../icons/banknote';
|
|
233
|
-
// AArrowUp aliases
|
|
234
|
-
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
235
235
|
// Barcode aliases
|
|
236
236
|
export { default as BarcodeIcon } from '../icons/barcode';
|
|
237
237
|
// Barrel aliases
|
|
@@ -308,24 +308,24 @@ export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
|
308
308
|
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
309
309
|
// Blend aliases
|
|
310
310
|
export { default as BlendIcon } from '../icons/blend';
|
|
311
|
-
// Blocks aliases
|
|
312
|
-
export { default as BlocksIcon } from '../icons/blocks';
|
|
313
|
-
// BluetoothConnected aliases
|
|
314
|
-
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
315
311
|
// Blinds aliases
|
|
316
312
|
export { default as BlindsIcon } from '../icons/blinds';
|
|
313
|
+
// Blocks aliases
|
|
314
|
+
export { default as BlocksIcon } from '../icons/blocks';
|
|
317
315
|
// BluetoothOff aliases
|
|
318
316
|
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
317
|
+
// BluetoothConnected aliases
|
|
318
|
+
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
319
319
|
// BluetoothSearching aliases
|
|
320
320
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
321
321
|
// Bluetooth aliases
|
|
322
322
|
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
323
|
-
// Bolt aliases
|
|
324
|
-
export { default as BoltIcon } from '../icons/bolt';
|
|
325
323
|
// Bold aliases
|
|
326
324
|
export { default as BoldIcon } from '../icons/bold';
|
|
327
325
|
// Bomb aliases
|
|
328
326
|
export { default as BombIcon } from '../icons/bomb';
|
|
327
|
+
// Bolt aliases
|
|
328
|
+
export { default as BoltIcon } from '../icons/bolt';
|
|
329
329
|
// Bone aliases
|
|
330
330
|
export { default as BoneIcon } from '../icons/bone';
|
|
331
331
|
// BookA aliases
|
|
@@ -340,28 +340,28 @@ export { default as BookCheckIcon } from '../icons/book-check';
|
|
|
340
340
|
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
341
341
|
// BookDown aliases
|
|
342
342
|
export { default as BookDownIcon } from '../icons/book-down';
|
|
343
|
-
// BookHeart aliases
|
|
344
|
-
export { default as BookHeartIcon } from '../icons/book-heart';
|
|
345
343
|
// BookHeadphones aliases
|
|
346
344
|
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
345
|
+
// BookHeart aliases
|
|
346
|
+
export { default as BookHeartIcon } from '../icons/book-heart';
|
|
347
347
|
// BookImage aliases
|
|
348
348
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
349
349
|
// BookKey aliases
|
|
350
350
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
351
351
|
// BookLock aliases
|
|
352
352
|
export { default as BookLockIcon } from '../icons/book-lock';
|
|
353
|
-
// BookMinus aliases
|
|
354
|
-
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
355
353
|
// BookMarked aliases
|
|
356
354
|
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
357
|
-
//
|
|
358
|
-
export { default as
|
|
355
|
+
// BookMinus aliases
|
|
356
|
+
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
359
357
|
// BookOpenCheck aliases
|
|
360
358
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
361
|
-
//
|
|
362
|
-
export { default as
|
|
359
|
+
// BookOpenText aliases
|
|
360
|
+
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
363
361
|
// BookPlus aliases
|
|
364
362
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
363
|
+
// BookOpen aliases
|
|
364
|
+
export { default as BookOpenIcon } from '../icons/book-open';
|
|
365
365
|
// BookSearch aliases
|
|
366
366
|
export { default as BookSearchIcon } from '../icons/book-search';
|
|
367
367
|
// BookText aliases
|
|
@@ -372,64 +372,64 @@ export { default as BookTypeIcon } from '../icons/book-type';
|
|
|
372
372
|
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
373
373
|
// BookUp aliases
|
|
374
374
|
export { default as BookUpIcon } from '../icons/book-up';
|
|
375
|
-
// BookX aliases
|
|
376
|
-
export { default as BookXIcon } from '../icons/book-x';
|
|
377
375
|
// BookUser aliases
|
|
378
376
|
export { default as BookUserIcon } from '../icons/book-user';
|
|
377
|
+
// BookX aliases
|
|
378
|
+
export { default as BookXIcon } from '../icons/book-x';
|
|
379
379
|
// Book aliases
|
|
380
380
|
export { default as BookIcon } from '../icons/book';
|
|
381
|
-
// BookmarkMinus aliases
|
|
382
|
-
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
383
381
|
// BookmarkCheck aliases
|
|
384
382
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
385
383
|
// BookmarkPlus aliases
|
|
386
384
|
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
385
|
+
// BookmarkMinus aliases
|
|
386
|
+
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
387
387
|
// BookmarkX aliases
|
|
388
388
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
389
|
-
// BoomBox aliases
|
|
390
|
-
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
391
389
|
// Bookmark aliases
|
|
392
390
|
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
391
|
+
// BoomBox aliases
|
|
392
|
+
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
393
393
|
// BotMessageSquare aliases
|
|
394
394
|
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
395
395
|
// BotOff aliases
|
|
396
396
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
397
|
-
// BottleWine aliases
|
|
398
|
-
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
399
397
|
// Bot aliases
|
|
400
398
|
export { default as BotIcon } from '../icons/bot';
|
|
401
|
-
//
|
|
402
|
-
export { default as
|
|
403
|
-
// Boxes aliases
|
|
404
|
-
export { default as BoxesIcon } from '../icons/boxes';
|
|
399
|
+
// BottleWine aliases
|
|
400
|
+
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
405
401
|
// Box aliases
|
|
406
402
|
export { default as BoxIcon } from '../icons/box';
|
|
407
|
-
//
|
|
408
|
-
export { default as
|
|
403
|
+
// Boxes aliases
|
|
404
|
+
export { default as BoxesIcon } from '../icons/boxes';
|
|
405
|
+
// BowArrow aliases
|
|
406
|
+
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
409
407
|
// BrainCircuit aliases
|
|
410
408
|
export { default as BrainCircuitIcon } from '../icons/brain-circuit';
|
|
411
|
-
//
|
|
412
|
-
export { default as
|
|
409
|
+
// Brackets aliases
|
|
410
|
+
export { default as BracketsIcon } from '../icons/brackets';
|
|
413
411
|
// BrainCog aliases
|
|
414
412
|
export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
413
|
+
// Brain aliases
|
|
414
|
+
export { default as BrainIcon } from '../icons/brain';
|
|
415
415
|
// BrickWallShield aliases
|
|
416
416
|
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
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';
|
|
427
|
-
//
|
|
428
|
-
export { default as
|
|
425
|
+
// BriefcaseMedical aliases
|
|
426
|
+
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
429
427
|
// Briefcase aliases
|
|
430
428
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
431
429
|
// BringToFront aliases
|
|
432
430
|
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
431
|
+
// BrushCleaning aliases
|
|
432
|
+
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
433
433
|
// Brush aliases
|
|
434
434
|
export { default as BrushIcon } from '../icons/brush';
|
|
435
435
|
// Bubbles aliases
|
|
@@ -458,24 +458,24 @@ export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
|
458
458
|
export { default as CakeIcon } from '../icons/cake';
|
|
459
459
|
// Calculator aliases
|
|
460
460
|
export { default as CalculatorIcon } from '../icons/calculator';
|
|
461
|
-
// CalendarArrowDown aliases
|
|
462
|
-
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
463
461
|
// Calendar1 aliases
|
|
464
462
|
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
463
|
+
// CalendarArrowDown aliases
|
|
464
|
+
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
465
465
|
// CalendarArrowUp aliases
|
|
466
466
|
export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
467
467
|
// CalendarCheck2 aliases
|
|
468
468
|
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
469
|
-
// CalendarCog aliases
|
|
470
|
-
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
471
469
|
// CalendarCheck aliases
|
|
472
470
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
473
471
|
// CalendarClock aliases
|
|
474
472
|
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
475
|
-
//
|
|
476
|
-
export { default as
|
|
473
|
+
// CalendarCog aliases
|
|
474
|
+
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
477
475
|
// CalendarDays aliases
|
|
478
476
|
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
477
|
+
// CalendarFold aliases
|
|
478
|
+
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
479
479
|
// CalendarHeart aliases
|
|
480
480
|
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
481
481
|
// CalendarMinus2 aliases
|
|
@@ -484,10 +484,10 @@ export { default as CalendarMinus2Icon } from '../icons/calendar-minus-2';
|
|
|
484
484
|
export { default as CalendarMinusIcon } from '../icons/calendar-minus';
|
|
485
485
|
// CalendarOff aliases
|
|
486
486
|
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
487
|
-
// CalendarPlus aliases
|
|
488
|
-
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
489
487
|
// CalendarPlus2 aliases
|
|
490
488
|
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
489
|
+
// CalendarPlus aliases
|
|
490
|
+
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
491
491
|
// CalendarRange aliases
|
|
492
492
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
493
493
|
// CalendarSearch aliases
|
|
@@ -498,14 +498,14 @@ export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
|
498
498
|
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
499
499
|
// CalendarX aliases
|
|
500
500
|
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
501
|
-
// Calendar aliases
|
|
502
|
-
export { default as CalendarIcon } from '../icons/calendar';
|
|
503
501
|
// Calendars aliases
|
|
504
502
|
export { default as CalendarsIcon } from '../icons/calendars';
|
|
505
|
-
//
|
|
506
|
-
export { default as
|
|
503
|
+
// Calendar aliases
|
|
504
|
+
export { default as CalendarIcon } from '../icons/calendar';
|
|
507
505
|
// CameraOff aliases
|
|
508
506
|
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
507
|
+
// Camera aliases
|
|
508
|
+
export { default as CameraIcon } from '../icons/camera';
|
|
509
509
|
// CandyCane aliases
|
|
510
510
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
511
511
|
// CandyOff aliases
|
|
@@ -534,10 +534,10 @@ export { default as CarrotIcon } from '../icons/carrot';
|
|
|
534
534
|
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
535
535
|
// CaseSensitive aliases
|
|
536
536
|
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
537
|
-
// CassetteTape aliases
|
|
538
|
-
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
539
537
|
// CaseUpper aliases
|
|
540
538
|
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
539
|
+
// CassetteTape aliases
|
|
540
|
+
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
541
541
|
// Cast aliases
|
|
542
542
|
export { default as CastIcon } from '../icons/cast';
|
|
543
543
|
// Castle aliases
|
|
@@ -558,48 +558,48 @@ export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decr
|
|
|
558
558
|
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
559
559
|
// ChartGantt aliases
|
|
560
560
|
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
561
|
-
// ChartNoAxesColumnDecreasing aliases
|
|
562
|
-
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
563
561
|
// ChartNetwork aliases
|
|
564
562
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
565
563
|
// ChartNoAxesCombined aliases
|
|
566
564
|
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
565
|
+
// ChartNoAxesColumnDecreasing aliases
|
|
566
|
+
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
567
567
|
// CheckCheck aliases
|
|
568
568
|
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
569
569
|
// ChartSpline aliases
|
|
570
570
|
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
571
571
|
// CheckLine aliases
|
|
572
572
|
export { default as CheckLineIcon } from '../icons/check-line';
|
|
573
|
-
// Cherry aliases
|
|
574
|
-
export { default as CherryIcon } from '../icons/cherry';
|
|
575
573
|
// Check aliases
|
|
576
574
|
export { default as CheckIcon } from '../icons/check';
|
|
577
575
|
// ChefHat aliases
|
|
578
576
|
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
577
|
+
// Cherry aliases
|
|
578
|
+
export { default as CherryIcon } from '../icons/cherry';
|
|
579
579
|
// ChessBishop aliases
|
|
580
580
|
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
581
581
|
// ChessKing aliases
|
|
582
582
|
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
583
583
|
// ChessKnight aliases
|
|
584
584
|
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
585
|
-
// ChessQueen aliases
|
|
586
|
-
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
587
585
|
// ChessPawn aliases
|
|
588
586
|
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
589
587
|
// ChessRook aliases
|
|
590
588
|
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
589
|
+
// ChessQueen aliases
|
|
590
|
+
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
591
591
|
// ChevronDown aliases
|
|
592
592
|
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
593
|
-
// ChevronLast aliases
|
|
594
|
-
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
595
593
|
// ChevronFirst aliases
|
|
596
594
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
595
|
+
// ChevronLast aliases
|
|
596
|
+
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
597
597
|
// ChevronLeft aliases
|
|
598
598
|
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
599
|
-
// ChevronUp aliases
|
|
600
|
-
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
601
599
|
// ChevronRight aliases
|
|
602
600
|
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
601
|
+
// ChevronUp aliases
|
|
602
|
+
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
603
603
|
// ChevronsDownUp aliases
|
|
604
604
|
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
605
605
|
// ChevronsDown aliases
|
|
@@ -616,38 +616,38 @@ export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
|
616
616
|
export { default as ChevronsRightIcon } from '../icons/chevrons-right';
|
|
617
617
|
// ChevronsUpDown aliases
|
|
618
618
|
export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
619
|
-
// Church aliases
|
|
620
|
-
export { default as ChurchIcon } from '../icons/church';
|
|
621
619
|
// ChevronsUp aliases
|
|
622
620
|
export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
621
|
+
// Church aliases
|
|
622
|
+
export { default as ChurchIcon } from '../icons/church';
|
|
623
623
|
// CigaretteOff aliases
|
|
624
624
|
export { default as CigaretteOffIcon } from '../icons/cigarette-off';
|
|
625
625
|
// Cigarette aliases
|
|
626
626
|
export { default as CigaretteIcon } from '../icons/cigarette';
|
|
627
|
-
// CircleDollarSign aliases
|
|
628
|
-
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
629
627
|
// CircleDashed aliases
|
|
630
628
|
export { default as CircleDashedIcon } from '../icons/circle-dashed';
|
|
631
|
-
//
|
|
632
|
-
export { default as
|
|
629
|
+
// CircleDollarSign aliases
|
|
630
|
+
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
633
631
|
// CircleDotDashed aliases
|
|
634
632
|
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
633
|
+
// CircleDot aliases
|
|
634
|
+
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
635
635
|
// CircleEllipsis aliases
|
|
636
636
|
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
637
|
-
// CircleEqual aliases
|
|
638
|
-
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
639
637
|
// CircleFadingArrowUp aliases
|
|
640
638
|
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
639
|
+
// CircleEqual aliases
|
|
640
|
+
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
641
641
|
// CircleFadingPlus aliases
|
|
642
642
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
643
|
-
// CirclePile aliases
|
|
644
|
-
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
645
643
|
// CircleOff aliases
|
|
646
644
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
647
|
-
//
|
|
648
|
-
export { default as
|
|
645
|
+
// CirclePile aliases
|
|
646
|
+
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
649
647
|
// CirclePoundSterling aliases
|
|
650
648
|
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
649
|
+
// CircleSlash aliases
|
|
650
|
+
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
651
651
|
// CircleSmall aliases
|
|
652
652
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
653
653
|
// CircleStar aliases
|
|
@@ -662,60 +662,60 @@ export { default as CitrusIcon } from '../icons/citrus';
|
|
|
662
662
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
663
663
|
// ClipboardCheck aliases
|
|
664
664
|
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
665
|
-
// ClipboardCopy aliases
|
|
666
|
-
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
667
665
|
// ClipboardClock aliases
|
|
668
666
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
667
|
+
// ClipboardCopy aliases
|
|
668
|
+
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
669
669
|
// ClipboardList aliases
|
|
670
670
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
671
671
|
// ClipboardMinus aliases
|
|
672
672
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
673
|
-
// ClipboardPlus aliases
|
|
674
|
-
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
675
673
|
// ClipboardPaste aliases
|
|
676
674
|
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
675
|
+
// ClipboardPlus aliases
|
|
676
|
+
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
677
677
|
// ClipboardType aliases
|
|
678
678
|
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
679
679
|
// ClipboardX aliases
|
|
680
680
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
681
681
|
// Clipboard aliases
|
|
682
682
|
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
683
|
-
// Clock10 aliases
|
|
684
|
-
export { default as Clock10Icon } from '../icons/clock-10';
|
|
685
683
|
// Clock1 aliases
|
|
686
684
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
685
|
+
// Clock10 aliases
|
|
686
|
+
export { default as Clock10Icon } from '../icons/clock-10';
|
|
687
687
|
// Clock12 aliases
|
|
688
688
|
export { default as Clock12Icon } from '../icons/clock-12';
|
|
689
689
|
// Clock11 aliases
|
|
690
690
|
export { default as Clock11Icon } from '../icons/clock-11';
|
|
691
691
|
// Clock2 aliases
|
|
692
692
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
693
|
+
// Clock3 aliases
|
|
694
|
+
export { default as Clock3Icon } from '../icons/clock-3';
|
|
693
695
|
// Clock4 aliases
|
|
694
696
|
export { default as Clock4Icon } from '../icons/clock-4';
|
|
697
|
+
// Clock6 aliases
|
|
698
|
+
export { default as Clock6Icon } from '../icons/clock-6';
|
|
695
699
|
// Clock5 aliases
|
|
696
700
|
export { default as Clock5Icon } from '../icons/clock-5';
|
|
697
|
-
// Clock3 aliases
|
|
698
|
-
export { default as Clock3Icon } from '../icons/clock-3';
|
|
699
701
|
// Clock7 aliases
|
|
700
702
|
export { default as Clock7Icon } from '../icons/clock-7';
|
|
701
|
-
// Clock6 aliases
|
|
702
|
-
export { default as Clock6Icon } from '../icons/clock-6';
|
|
703
703
|
// Clock8 aliases
|
|
704
704
|
export { default as Clock8Icon } from '../icons/clock-8';
|
|
705
|
-
// ClockAlert aliases
|
|
706
|
-
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
707
705
|
// Clock9 aliases
|
|
708
706
|
export { default as Clock9Icon } from '../icons/clock-9';
|
|
707
|
+
// ClockAlert aliases
|
|
708
|
+
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
709
709
|
// ClockArrowDown aliases
|
|
710
710
|
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
711
711
|
// ClockArrowUp aliases
|
|
712
712
|
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
713
713
|
// ClockCheck aliases
|
|
714
714
|
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
715
|
-
// ClockPlus aliases
|
|
716
|
-
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
717
715
|
// ClockFading aliases
|
|
718
716
|
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
717
|
+
// ClockPlus aliases
|
|
718
|
+
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
719
719
|
// Clock aliases
|
|
720
720
|
export { default as ClockIcon } from '../icons/clock';
|
|
721
721
|
// ClosedCaption aliases
|
|
@@ -734,12 +734,12 @@ export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
|
734
734
|
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
735
735
|
// CloudHail aliases
|
|
736
736
|
export { default as CloudHailIcon } from '../icons/cloud-hail';
|
|
737
|
-
// CloudMoon aliases
|
|
738
|
-
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
739
737
|
// CloudLightning aliases
|
|
740
738
|
export { default as CloudLightningIcon } from '../icons/cloud-lightning';
|
|
741
739
|
// CloudMoonRain aliases
|
|
742
740
|
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
741
|
+
// CloudMoon aliases
|
|
742
|
+
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
743
743
|
// CloudOff aliases
|
|
744
744
|
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
745
745
|
// CloudRainWind aliases
|
|
@@ -762,26 +762,26 @@ export { default as CloudyIcon } from '../icons/cloudy';
|
|
|
762
762
|
export { default as CloverIcon } from '../icons/clover';
|
|
763
763
|
// Club aliases
|
|
764
764
|
export { default as ClubIcon } from '../icons/club';
|
|
765
|
-
// Code aliases
|
|
766
|
-
export { default as CodeIcon } from '../icons/code';
|
|
767
765
|
// Codepen aliases
|
|
768
766
|
export { default as CodepenIcon } from '../icons/codepen';
|
|
767
|
+
// Code aliases
|
|
768
|
+
export { default as CodeIcon } from '../icons/code';
|
|
769
769
|
// Codesandbox aliases
|
|
770
770
|
export { default as CodesandboxIcon } from '../icons/codesandbox';
|
|
771
|
+
// Coffee aliases
|
|
772
|
+
export { default as CoffeeIcon } from '../icons/coffee';
|
|
771
773
|
// Cog aliases
|
|
772
774
|
export { default as CogIcon } from '../icons/cog';
|
|
773
775
|
// Coins aliases
|
|
774
776
|
export { default as CoinsIcon } from '../icons/coins';
|
|
775
|
-
// Coffee aliases
|
|
776
|
-
export { default as CoffeeIcon } from '../icons/coffee';
|
|
777
777
|
// Columns4 aliases
|
|
778
778
|
export { default as Columns4Icon } from '../icons/columns-4';
|
|
779
779
|
// Combine aliases
|
|
780
780
|
export { default as CombineIcon } from '../icons/combine';
|
|
781
|
-
// Command aliases
|
|
782
|
-
export { default as CommandIcon } from '../icons/command';
|
|
783
781
|
// Compass aliases
|
|
784
782
|
export { default as CompassIcon } from '../icons/compass';
|
|
783
|
+
// Command aliases
|
|
784
|
+
export { default as CommandIcon } from '../icons/command';
|
|
785
785
|
// Component aliases
|
|
786
786
|
export { default as ComponentIcon } from '../icons/component';
|
|
787
787
|
// Computer aliases
|
|
@@ -792,18 +792,18 @@ export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
|
792
792
|
export { default as ConeIcon } from '../icons/cone';
|
|
793
793
|
// Construction aliases
|
|
794
794
|
export { default as ConstructionIcon } from '../icons/construction';
|
|
795
|
-
// Container aliases
|
|
796
|
-
export { default as ContainerIcon } from '../icons/container';
|
|
797
795
|
// Contact aliases
|
|
798
796
|
export { default as ContactIcon } from '../icons/contact';
|
|
797
|
+
// Container aliases
|
|
798
|
+
export { default as ContainerIcon } from '../icons/container';
|
|
799
799
|
// Contrast aliases
|
|
800
800
|
export { default as ContrastIcon } from '../icons/contrast';
|
|
801
|
+
// Cookie aliases
|
|
802
|
+
export { default as CookieIcon } from '../icons/cookie';
|
|
801
803
|
// CookingPot aliases
|
|
802
804
|
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
803
805
|
// CopyCheck aliases
|
|
804
806
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
805
|
-
// Cookie aliases
|
|
806
|
-
export { default as CookieIcon } from '../icons/cookie';
|
|
807
807
|
// CopyMinus aliases
|
|
808
808
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
809
809
|
// CopyPlus aliases
|
|
@@ -822,10 +822,10 @@ export { default as CopyrightIcon } from '../icons/copyright';
|
|
|
822
822
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
823
823
|
// CornerDownRight aliases
|
|
824
824
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
825
|
-
// CornerLeftUp aliases
|
|
826
|
-
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
827
825
|
// CornerLeftDown aliases
|
|
828
826
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
827
|
+
// CornerLeftUp aliases
|
|
828
|
+
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
829
829
|
// CornerRightDown aliases
|
|
830
830
|
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
831
831
|
// CornerRightUp aliases
|
|
@@ -834,32 +834,32 @@ export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
|
834
834
|
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
835
835
|
// CornerUpRight aliases
|
|
836
836
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
837
|
-
// Cpu aliases
|
|
838
|
-
export { default as CpuIcon } from '../icons/cpu';
|
|
839
837
|
// CreativeCommons aliases
|
|
840
838
|
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
839
|
+
// Cpu aliases
|
|
840
|
+
export { default as CpuIcon } from '../icons/cpu';
|
|
841
841
|
// CreditCard aliases
|
|
842
842
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
843
843
|
// Croissant aliases
|
|
844
844
|
export { default as CroissantIcon } from '../icons/croissant';
|
|
845
845
|
// Crop aliases
|
|
846
846
|
export { default as CropIcon } from '../icons/crop';
|
|
847
|
-
// Crosshair aliases
|
|
848
|
-
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
849
847
|
// Cross aliases
|
|
850
848
|
export { default as CrossIcon } from '../icons/cross';
|
|
849
|
+
// Crosshair aliases
|
|
850
|
+
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
851
851
|
// Crown aliases
|
|
852
852
|
export { default as CrownIcon } from '../icons/crown';
|
|
853
853
|
// Cuboid aliases
|
|
854
854
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
855
|
-
// Dam aliases
|
|
856
|
-
export { default as DamIcon } from '../icons/dam';
|
|
857
855
|
// CupSoda aliases
|
|
858
856
|
export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
859
|
-
// Currency aliases
|
|
860
|
-
export { default as CurrencyIcon } from '../icons/currency';
|
|
861
857
|
// Cylinder aliases
|
|
862
858
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
859
|
+
// Currency aliases
|
|
860
|
+
export { default as CurrencyIcon } from '../icons/currency';
|
|
861
|
+
// Dam aliases
|
|
862
|
+
export { default as DamIcon } from '../icons/dam';
|
|
863
863
|
// DatabaseBackup aliases
|
|
864
864
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
865
865
|
// DatabaseSearch aliases
|
|
@@ -868,36 +868,36 @@ export { default as DatabaseSearchIcon } from '../icons/database-search';
|
|
|
868
868
|
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
869
869
|
// Database aliases
|
|
870
870
|
export { default as DatabaseIcon } from '../icons/database';
|
|
871
|
-
// DecimalsArrowRight aliases
|
|
872
|
-
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
873
871
|
// DecimalsArrowLeft aliases
|
|
874
872
|
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
873
|
+
// DecimalsArrowRight aliases
|
|
874
|
+
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
875
875
|
// Delete aliases
|
|
876
876
|
export { default as DeleteIcon } from '../icons/delete';
|
|
877
877
|
// Dessert aliases
|
|
878
878
|
export { default as DessertIcon } from '../icons/dessert';
|
|
879
879
|
// Diameter aliases
|
|
880
880
|
export { default as DiameterIcon } from '../icons/diameter';
|
|
881
|
-
// DiamondMinus aliases
|
|
882
|
-
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
883
881
|
// DiamondPlus aliases
|
|
884
882
|
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
883
|
+
// DiamondMinus aliases
|
|
884
|
+
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
885
885
|
// Diamond aliases
|
|
886
886
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
887
|
-
// Dice1 aliases
|
|
888
|
-
export { default as Dice1Icon } from '../icons/dice-1';
|
|
889
887
|
// Dice2 aliases
|
|
890
888
|
export { default as Dice2Icon } from '../icons/dice-2';
|
|
891
889
|
// Dice3 aliases
|
|
892
890
|
export { default as Dice3Icon } from '../icons/dice-3';
|
|
891
|
+
// Dice1 aliases
|
|
892
|
+
export { default as Dice1Icon } from '../icons/dice-1';
|
|
893
893
|
// Dice4 aliases
|
|
894
894
|
export { default as Dice4Icon } from '../icons/dice-4';
|
|
895
|
-
// Dice5 aliases
|
|
896
|
-
export { default as Dice5Icon } from '../icons/dice-5';
|
|
897
895
|
// Dice6 aliases
|
|
898
896
|
export { default as Dice6Icon } from '../icons/dice-6';
|
|
899
897
|
// Dices aliases
|
|
900
898
|
export { default as DicesIcon } from '../icons/dices';
|
|
899
|
+
// Dice5 aliases
|
|
900
|
+
export { default as Dice5Icon } from '../icons/dice-5';
|
|
901
901
|
// Diff aliases
|
|
902
902
|
export { default as DiffIcon } from '../icons/diff';
|
|
903
903
|
// Disc3 aliases
|
|
@@ -914,8 +914,6 @@ export { default as DivideIcon } from '../icons/divide';
|
|
|
914
914
|
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
915
915
|
// Dna aliases
|
|
916
916
|
export { default as DnaIcon } from '../icons/dna';
|
|
917
|
-
// Dog aliases
|
|
918
|
-
export { default as DogIcon } from '../icons/dog';
|
|
919
917
|
// Dock aliases
|
|
920
918
|
export { default as DockIcon } from '../icons/dock';
|
|
921
919
|
// DollarSign aliases
|
|
@@ -926,20 +924,22 @@ export { default as DonutIcon } from '../icons/donut';
|
|
|
926
924
|
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
927
925
|
// DoorClosed aliases
|
|
928
926
|
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
927
|
+
// Dog aliases
|
|
928
|
+
export { default as DogIcon } from '../icons/dog';
|
|
929
929
|
// DoorOpen aliases
|
|
930
930
|
export { default as DoorOpenIcon } from '../icons/door-open';
|
|
931
931
|
// Dot aliases
|
|
932
932
|
export { default as DotIcon } from '../icons/dot';
|
|
933
933
|
// Download aliases
|
|
934
934
|
export { default as DownloadIcon } from '../icons/download';
|
|
935
|
-
// DraftingCompass aliases
|
|
936
|
-
export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
937
935
|
// Drama aliases
|
|
938
936
|
export { default as DramaIcon } from '../icons/drama';
|
|
939
|
-
//
|
|
940
|
-
export { default as
|
|
937
|
+
// DraftingCompass aliases
|
|
938
|
+
export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
941
939
|
// Drill aliases
|
|
942
940
|
export { default as DrillIcon } from '../icons/drill';
|
|
941
|
+
// Dribbble aliases
|
|
942
|
+
export { default as DribbbleIcon } from '../icons/dribbble';
|
|
943
943
|
// Drone aliases
|
|
944
944
|
export { default as DroneIcon } from '../icons/drone';
|
|
945
945
|
// DropletOff aliases
|
|
@@ -952,52 +952,54 @@ export { default as DropletsIcon } from '../icons/droplets';
|
|
|
952
952
|
export { default as DrumIcon } from '../icons/drum';
|
|
953
953
|
// Drumstick aliases
|
|
954
954
|
export { default as DrumstickIcon } from '../icons/drumstick';
|
|
955
|
-
// EarOff aliases
|
|
956
|
-
export { default as EarOffIcon } from '../icons/ear-off';
|
|
957
955
|
// Dumbbell aliases
|
|
958
956
|
export { default as DumbbellIcon } from '../icons/dumbbell';
|
|
957
|
+
// EarOff aliases
|
|
958
|
+
export { default as EarOffIcon } from '../icons/ear-off';
|
|
959
959
|
// Ear aliases
|
|
960
960
|
export { default as EarIcon } from '../icons/ear';
|
|
961
961
|
// EarthLock aliases
|
|
962
962
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
963
|
-
// EggFried aliases
|
|
964
|
-
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
965
963
|
// Eclipse aliases
|
|
966
964
|
export { default as EclipseIcon } from '../icons/eclipse';
|
|
967
|
-
//
|
|
968
|
-
export { default as
|
|
965
|
+
// EggFried aliases
|
|
966
|
+
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
969
967
|
// EggOff aliases
|
|
970
968
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
969
|
+
// Egg aliases
|
|
970
|
+
export { default as EggIcon } from '../icons/egg';
|
|
971
|
+
// Ellipse aliases
|
|
972
|
+
export { default as EllipseIcon } from '../icons/ellipse';
|
|
971
973
|
// EqualApproximately aliases
|
|
972
974
|
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
973
975
|
// EqualNot aliases
|
|
974
976
|
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
975
977
|
// Equal aliases
|
|
976
978
|
export { default as EqualIcon } from '../icons/equal';
|
|
977
|
-
// Eraser aliases
|
|
978
|
-
export { default as EraserIcon } from '../icons/eraser';
|
|
979
979
|
// EthernetPort aliases
|
|
980
980
|
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
981
|
-
//
|
|
982
|
-
export { default as
|
|
981
|
+
// Eraser aliases
|
|
982
|
+
export { default as EraserIcon } from '../icons/eraser';
|
|
983
983
|
// Euro aliases
|
|
984
984
|
export { default as EuroIcon } from '../icons/euro';
|
|
985
|
-
// ExternalLink aliases
|
|
986
|
-
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
987
985
|
// Expand aliases
|
|
988
986
|
export { default as ExpandIcon } from '../icons/expand';
|
|
987
|
+
// ExternalLink aliases
|
|
988
|
+
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
989
|
+
// EvCharger aliases
|
|
990
|
+
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
989
991
|
// EyeClosed aliases
|
|
990
992
|
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
991
|
-
// Facebook aliases
|
|
992
|
-
export { default as FacebookIcon } from '../icons/facebook';
|
|
993
993
|
// EyeOff aliases
|
|
994
994
|
export { default as EyeOffIcon } from '../icons/eye-off';
|
|
995
995
|
// Eye aliases
|
|
996
996
|
export { default as EyeIcon } from '../icons/eye';
|
|
997
|
-
//
|
|
998
|
-
export { default as
|
|
997
|
+
// Facebook aliases
|
|
998
|
+
export { default as FacebookIcon } from '../icons/facebook';
|
|
999
999
|
// Fan aliases
|
|
1000
1000
|
export { default as FanIcon } from '../icons/fan';
|
|
1001
|
+
// Factory aliases
|
|
1002
|
+
export { default as FactoryIcon } from '../icons/factory';
|
|
1001
1003
|
// FastForward aliases
|
|
1002
1004
|
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
1003
1005
|
// Feather aliases
|
|
@@ -1006,18 +1008,18 @@ export { default as FeatherIcon } from '../icons/feather';
|
|
|
1006
1008
|
export { default as FenceIcon } from '../icons/fence';
|
|
1007
1009
|
// FerrisWheel aliases
|
|
1008
1010
|
export { default as FerrisWheelIcon } from '../icons/ferris-wheel';
|
|
1009
|
-
// Figma aliases
|
|
1010
|
-
export { default as FigmaIcon } from '../icons/figma';
|
|
1011
1011
|
// FileBox aliases
|
|
1012
1012
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1013
|
+
// Figma aliases
|
|
1014
|
+
export { default as FigmaIcon } from '../icons/figma';
|
|
1013
1015
|
// FileArchive aliases
|
|
1014
1016
|
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1015
1017
|
// FileCheck aliases
|
|
1016
1018
|
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1017
|
-
// FileClock aliases
|
|
1018
|
-
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1019
1019
|
// FileCode aliases
|
|
1020
1020
|
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1021
|
+
// FileClock aliases
|
|
1022
|
+
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1021
1023
|
// FileDiff aliases
|
|
1022
1024
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1023
1025
|
// FileDigit aliases
|
|
@@ -1030,54 +1032,56 @@ export { default as FileHeartIcon } from '../icons/file-heart';
|
|
|
1030
1032
|
export { default as FileImageIcon } from '../icons/file-image';
|
|
1031
1033
|
// FileInput aliases
|
|
1032
1034
|
export { default as FileInputIcon } from '../icons/file-input';
|
|
1033
|
-
// FileMinus aliases
|
|
1034
|
-
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1035
1035
|
// FileMusic aliases
|
|
1036
1036
|
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1037
|
+
// FileMinus aliases
|
|
1038
|
+
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1037
1039
|
// FileOutput aliases
|
|
1038
1040
|
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1039
1041
|
// FilePlus aliases
|
|
1040
1042
|
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1041
|
-
// FileSearch aliases
|
|
1042
|
-
export { default as FileSearchIcon } from '../icons/file-search';
|
|
1043
1043
|
// FileScan aliases
|
|
1044
1044
|
export { default as FileScanIcon } from '../icons/file-scan';
|
|
1045
|
+
// FileSearch aliases
|
|
1046
|
+
export { default as FileSearchIcon } from '../icons/file-search';
|
|
1045
1047
|
// FileSliders aliases
|
|
1046
1048
|
export { default as FileSlidersIcon } from '../icons/file-sliders';
|
|
1047
|
-
// FileSpreadsheet aliases
|
|
1048
|
-
export { default as FileSpreadsheetIcon } from '../icons/file-spreadsheet';
|
|
1049
1049
|
// FileStack aliases
|
|
1050
1050
|
export { default as FileStackIcon } from '../icons/file-stack';
|
|
1051
|
+
// FileSpreadsheet aliases
|
|
1052
|
+
export { default as FileSpreadsheetIcon } from '../icons/file-spreadsheet';
|
|
1051
1053
|
// FileSymlink aliases
|
|
1052
1054
|
export { default as FileSymlinkIcon } from '../icons/file-symlink';
|
|
1053
1055
|
// FileTerminal aliases
|
|
1054
1056
|
export { default as FileTerminalIcon } from '../icons/file-terminal';
|
|
1055
|
-
// FileType aliases
|
|
1056
|
-
export { default as FileTypeIcon } from '../icons/file-type';
|
|
1057
1057
|
// FileText aliases
|
|
1058
1058
|
export { default as FileTextIcon } from '../icons/file-text';
|
|
1059
|
+
// FileType aliases
|
|
1060
|
+
export { default as FileTypeIcon } from '../icons/file-type';
|
|
1059
1061
|
// FileUp aliases
|
|
1060
1062
|
export { default as FileUpIcon } from '../icons/file-up';
|
|
1061
1063
|
// FileUser aliases
|
|
1062
1064
|
export { default as FileUserIcon } from '../icons/file-user';
|
|
1063
1065
|
// FileVolume aliases
|
|
1064
1066
|
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1065
|
-
// File aliases
|
|
1066
|
-
export { default as FileIcon } from '../icons/file';
|
|
1067
1067
|
// FileX aliases
|
|
1068
1068
|
export { default as FileXIcon } from '../icons/file-x';
|
|
1069
|
-
//
|
|
1070
|
-
export { default as
|
|
1069
|
+
// File aliases
|
|
1070
|
+
export { default as FileIcon } from '../icons/file';
|
|
1071
1071
|
// Film aliases
|
|
1072
1072
|
export { default as FilmIcon } from '../icons/film';
|
|
1073
|
-
//
|
|
1074
|
-
export { default as
|
|
1073
|
+
// Files aliases
|
|
1074
|
+
export { default as FilesIcon } from '../icons/files';
|
|
1075
1075
|
// FishOff aliases
|
|
1076
1076
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1077
1077
|
// FishSymbol aliases
|
|
1078
1078
|
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1079
|
+
// FireExtinguisher aliases
|
|
1080
|
+
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1079
1081
|
// Fish aliases
|
|
1080
1082
|
export { default as FishIcon } from '../icons/fish';
|
|
1083
|
+
// FishingRod aliases
|
|
1084
|
+
export { default as FishingRodIcon } from '../icons/fishing-rod';
|
|
1081
1085
|
// FishingHook aliases
|
|
1082
1086
|
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1083
1087
|
// FlagOff aliases
|
|
@@ -1086,10 +1090,10 @@ export { default as FlagOffIcon } from '../icons/flag-off';
|
|
|
1086
1090
|
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1087
1091
|
// FlagTriangleRight aliases
|
|
1088
1092
|
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1089
|
-
// FlameKindling aliases
|
|
1090
|
-
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1091
1093
|
// Flag aliases
|
|
1092
1094
|
export { default as FlagIcon } from '../icons/flag';
|
|
1095
|
+
// FlameKindling aliases
|
|
1096
|
+
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1093
1097
|
// Flame aliases
|
|
1094
1098
|
export { default as FlameIcon } from '../icons/flame';
|
|
1095
1099
|
// FlashlightOff aliases
|
|
@@ -1100,10 +1104,10 @@ export { default as FlashlightIcon } from '../icons/flashlight';
|
|
|
1100
1104
|
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1101
1105
|
// FlaskConicalOff aliases
|
|
1102
1106
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1103
|
-
// FlipHorizontal2 aliases
|
|
1104
|
-
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1105
1107
|
// FlaskRound aliases
|
|
1106
1108
|
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1109
|
+
// FlipHorizontal2 aliases
|
|
1110
|
+
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1107
1111
|
// FlipVertical2 aliases
|
|
1108
1112
|
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1109
1113
|
// Flower2 aliases
|
|
@@ -1144,10 +1148,10 @@ export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
|
1144
1148
|
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1145
1149
|
// FolderLock aliases
|
|
1146
1150
|
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1147
|
-
// FolderOpenDot aliases
|
|
1148
|
-
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1149
1151
|
// FolderMinus aliases
|
|
1150
1152
|
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1153
|
+
// FolderOpenDot aliases
|
|
1154
|
+
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1151
1155
|
// FolderOpen aliases
|
|
1152
1156
|
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1153
1157
|
// FolderOutput aliases
|
|
@@ -1168,10 +1172,10 @@ export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
|
1168
1172
|
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1169
1173
|
// FolderUp aliases
|
|
1170
1174
|
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1171
|
-
// Folder aliases
|
|
1172
|
-
export { default as FolderIcon } from '../icons/folder';
|
|
1173
1175
|
// FolderX aliases
|
|
1174
1176
|
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1177
|
+
// Folder aliases
|
|
1178
|
+
export { default as FolderIcon } from '../icons/folder';
|
|
1175
1179
|
// Folders aliases
|
|
1176
1180
|
export { default as FoldersIcon } from '../icons/folders';
|
|
1177
1181
|
// Footprints aliases
|
|
@@ -1184,10 +1188,10 @@ export { default as FormIcon } from '../icons/form';
|
|
|
1184
1188
|
export { default as ForwardIcon } from '../icons/forward';
|
|
1185
1189
|
// Frame aliases
|
|
1186
1190
|
export { default as FrameIcon } from '../icons/frame';
|
|
1187
|
-
// Framer aliases
|
|
1188
|
-
export { default as FramerIcon } from '../icons/framer';
|
|
1189
1191
|
// Frown aliases
|
|
1190
1192
|
export { default as FrownIcon } from '../icons/frown';
|
|
1193
|
+
// Framer aliases
|
|
1194
|
+
export { default as FramerIcon } from '../icons/framer';
|
|
1191
1195
|
// Fuel aliases
|
|
1192
1196
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1193
1197
|
// Fullscreen aliases
|
|
@@ -1210,42 +1214,42 @@ export { default as Gamepad2Icon } from '../icons/gamepad-2';
|
|
|
1210
1214
|
export { default as GamepadDirectionalIcon } from '../icons/gamepad-directional';
|
|
1211
1215
|
// Gamepad aliases
|
|
1212
1216
|
export { default as GamepadIcon } from '../icons/gamepad';
|
|
1213
|
-
// Gavel aliases
|
|
1214
|
-
export { default as GavelIcon } from '../icons/gavel';
|
|
1215
1217
|
// Gauge aliases
|
|
1216
1218
|
export { default as GaugeIcon } from '../icons/gauge';
|
|
1217
1219
|
// Gem aliases
|
|
1218
1220
|
export { default as GemIcon } from '../icons/gem';
|
|
1221
|
+
// Gavel aliases
|
|
1222
|
+
export { default as GavelIcon } from '../icons/gavel';
|
|
1219
1223
|
// GeorgianLari aliases
|
|
1220
1224
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1221
|
-
// Gift aliases
|
|
1222
|
-
export { default as GiftIcon } from '../icons/gift';
|
|
1223
1225
|
// Ghost aliases
|
|
1224
1226
|
export { default as GhostIcon } from '../icons/ghost';
|
|
1225
|
-
// GitBranchPlus aliases
|
|
1226
|
-
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1227
1227
|
// GitBranchMinus aliases
|
|
1228
1228
|
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1229
|
+
// Gift aliases
|
|
1230
|
+
export { default as GiftIcon } from '../icons/gift';
|
|
1231
|
+
// GitBranchPlus aliases
|
|
1232
|
+
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1229
1233
|
// GitBranch aliases
|
|
1230
1234
|
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1231
1235
|
// GitCommitVertical aliases
|
|
1232
1236
|
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1237
|
+
// GitCompareArrows aliases
|
|
1238
|
+
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1233
1239
|
// GitCompare aliases
|
|
1234
1240
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1235
1241
|
// GitFork aliases
|
|
1236
1242
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1237
|
-
// GitCompareArrows aliases
|
|
1238
|
-
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1239
1243
|
// GitGraph aliases
|
|
1240
1244
|
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1241
1245
|
// GitMergeConflict aliases
|
|
1242
1246
|
export { default as GitMergeConflictIcon } from '../icons/git-merge-conflict';
|
|
1243
1247
|
// GitMerge aliases
|
|
1244
1248
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1245
|
-
// GitPullRequestArrow aliases
|
|
1246
|
-
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1247
1249
|
// GitPullRequestClosed aliases
|
|
1248
1250
|
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1251
|
+
// GitPullRequestArrow aliases
|
|
1252
|
+
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1249
1253
|
// GitPullRequestCreateArrow aliases
|
|
1250
1254
|
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1251
1255
|
// GitPullRequestCreate aliases
|
|
@@ -1256,48 +1260,48 @@ export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-dr
|
|
|
1256
1260
|
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1257
1261
|
// Github aliases
|
|
1258
1262
|
export { default as GithubIcon } from '../icons/github';
|
|
1259
|
-
// GlassWater aliases
|
|
1260
|
-
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1261
1263
|
// Gitlab aliases
|
|
1262
1264
|
export { default as GitlabIcon } from '../icons/gitlab';
|
|
1265
|
+
// GlassWater aliases
|
|
1266
|
+
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1263
1267
|
// GlobeLock aliases
|
|
1264
1268
|
export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
1265
1269
|
// Glasses aliases
|
|
1266
1270
|
export { default as GlassesIcon } from '../icons/glasses';
|
|
1267
|
-
// GlobeX aliases
|
|
1268
|
-
export { default as GlobeXIcon } from '../icons/globe-x';
|
|
1269
1271
|
// GlobeOff aliases
|
|
1270
1272
|
export { default as GlobeOffIcon } from '../icons/globe-off';
|
|
1273
|
+
// GlobeX aliases
|
|
1274
|
+
export { default as GlobeXIcon } from '../icons/globe-x';
|
|
1271
1275
|
// Globe aliases
|
|
1272
1276
|
export { default as GlobeIcon } from '../icons/globe';
|
|
1273
|
-
// Gpu aliases
|
|
1274
|
-
export { default as GpuIcon } from '../icons/gpu';
|
|
1275
1277
|
// Goal aliases
|
|
1276
1278
|
export { default as GoalIcon } from '../icons/goal';
|
|
1279
|
+
// Gpu aliases
|
|
1280
|
+
export { default as GpuIcon } from '../icons/gpu';
|
|
1277
1281
|
// GraduationCap aliases
|
|
1278
1282
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1279
1283
|
// Grape aliases
|
|
1280
1284
|
export { default as GrapeIcon } from '../icons/grape';
|
|
1281
|
-
// Grid3x2 aliases
|
|
1282
|
-
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1283
1285
|
// GripHorizontal aliases
|
|
1284
1286
|
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1287
|
+
// Grid3x2 aliases
|
|
1288
|
+
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1285
1289
|
// Grip aliases
|
|
1286
1290
|
export { default as GripIcon } from '../icons/grip';
|
|
1287
1291
|
// GripVertical aliases
|
|
1288
1292
|
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1289
1293
|
// Group aliases
|
|
1290
1294
|
export { default as GroupIcon } from '../icons/group';
|
|
1291
|
-
// Ham aliases
|
|
1292
|
-
export { default as HamIcon } from '../icons/ham';
|
|
1293
1295
|
// Guitar aliases
|
|
1294
1296
|
export { default as GuitarIcon } from '../icons/guitar';
|
|
1297
|
+
// Ham aliases
|
|
1298
|
+
export { default as HamIcon } from '../icons/ham';
|
|
1295
1299
|
// Hamburger aliases
|
|
1296
1300
|
export { default as HamburgerIcon } from '../icons/hamburger';
|
|
1297
|
-
// HandCoins aliases
|
|
1298
|
-
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1299
1301
|
// Hammer aliases
|
|
1300
1302
|
export { default as HammerIcon } from '../icons/hammer';
|
|
1303
|
+
// HandCoins aliases
|
|
1304
|
+
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1301
1305
|
// HandFist aliases
|
|
1302
1306
|
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1303
1307
|
// HandHeart aliases
|
|
@@ -1310,10 +1314,10 @@ export { default as HandPlatterIcon } from '../icons/hand-platter';
|
|
|
1310
1314
|
export { default as HandIcon } from '../icons/hand';
|
|
1311
1315
|
// Handbag aliases
|
|
1312
1316
|
export { default as HandbagIcon } from '../icons/handbag';
|
|
1313
|
-
// HardDriveDownload aliases
|
|
1314
|
-
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1315
1317
|
// Handshake aliases
|
|
1316
1318
|
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1319
|
+
// HardDriveDownload aliases
|
|
1320
|
+
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1317
1321
|
// HardDriveUpload aliases
|
|
1318
1322
|
export { default as HardDriveUploadIcon } from '../icons/hard-drive-upload';
|
|
1319
1323
|
// HardDrive aliases
|
|
@@ -1326,10 +1330,10 @@ export { default as HashIcon } from '../icons/hash';
|
|
|
1326
1330
|
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1327
1331
|
// Haze aliases
|
|
1328
1332
|
export { default as HazeIcon } from '../icons/haze';
|
|
1329
|
-
// HdmiPort aliases
|
|
1330
|
-
export { default as HdmiPortIcon } from '../icons/hdmi-port';
|
|
1331
1333
|
// Hd aliases
|
|
1332
1334
|
export { default as HdIcon } from '../icons/hd';
|
|
1335
|
+
// HdmiPort aliases
|
|
1336
|
+
export { default as HdmiPortIcon } from '../icons/hdmi-port';
|
|
1333
1337
|
// Heading1 aliases
|
|
1334
1338
|
export { default as Heading1Icon } from '../icons/heading-1';
|
|
1335
1339
|
// Heading2 aliases
|
|
@@ -1344,22 +1348,22 @@ export { default as Heading5Icon } from '../icons/heading-5';
|
|
|
1344
1348
|
export { default as Heading6Icon } from '../icons/heading-6';
|
|
1345
1349
|
// Heading aliases
|
|
1346
1350
|
export { default as HeadingIcon } from '../icons/heading';
|
|
1347
|
-
// Headphones aliases
|
|
1348
|
-
export { default as HeadphonesIcon } from '../icons/headphones';
|
|
1349
1351
|
// HeadphoneOff aliases
|
|
1350
1352
|
export { default as HeadphoneOffIcon } from '../icons/headphone-off';
|
|
1353
|
+
// Headphones aliases
|
|
1354
|
+
export { default as HeadphonesIcon } from '../icons/headphones';
|
|
1351
1355
|
// Headset aliases
|
|
1352
1356
|
export { default as HeadsetIcon } from '../icons/headset';
|
|
1353
|
-
// HeartCrack aliases
|
|
1354
|
-
export { default as HeartCrackIcon } from '../icons/heart-crack';
|
|
1355
1357
|
// HeartHandshake aliases
|
|
1356
1358
|
export { default as HeartHandshakeIcon } from '../icons/heart-handshake';
|
|
1359
|
+
// HeartCrack aliases
|
|
1360
|
+
export { default as HeartCrackIcon } from '../icons/heart-crack';
|
|
1357
1361
|
// HeartMinus aliases
|
|
1358
1362
|
export { default as HeartMinusIcon } from '../icons/heart-minus';
|
|
1359
|
-
// HeartPulse aliases
|
|
1360
|
-
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1361
1363
|
// HeartOff aliases
|
|
1362
1364
|
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1365
|
+
// HeartPulse aliases
|
|
1366
|
+
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1363
1367
|
// HeartPlus aliases
|
|
1364
1368
|
export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
1365
1369
|
// Heart aliases
|
|
@@ -1370,16 +1374,16 @@ export { default as HeaterIcon } from '../icons/heater';
|
|
|
1370
1374
|
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1371
1375
|
// Hexagon aliases
|
|
1372
1376
|
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1373
|
-
// History aliases
|
|
1374
|
-
export { default as HistoryIcon } from '../icons/history';
|
|
1375
1377
|
// Highlighter aliases
|
|
1376
1378
|
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1379
|
+
// History aliases
|
|
1380
|
+
export { default as HistoryIcon } from '../icons/history';
|
|
1377
1381
|
// HopOff aliases
|
|
1378
1382
|
export { default as HopOffIcon } from '../icons/hop-off';
|
|
1379
|
-
// Hospital aliases
|
|
1380
|
-
export { default as HospitalIcon } from '../icons/hospital';
|
|
1381
1383
|
// Hop aliases
|
|
1382
1384
|
export { default as HopIcon } from '../icons/hop';
|
|
1385
|
+
// Hospital aliases
|
|
1386
|
+
export { default as HospitalIcon } from '../icons/hospital';
|
|
1383
1387
|
// Hotel aliases
|
|
1384
1388
|
export { default as HotelIcon } from '../icons/hotel';
|
|
1385
1389
|
// Hourglass aliases
|
|
@@ -1404,16 +1408,16 @@ export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
|
1404
1408
|
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1405
1409
|
// ImagePlay aliases
|
|
1406
1410
|
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1407
|
-
// ImageUp aliases
|
|
1408
|
-
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1409
1411
|
// ImagePlus aliases
|
|
1410
1412
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1413
|
+
// ImageUp aliases
|
|
1414
|
+
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1411
1415
|
// ImageUpscale aliases
|
|
1412
1416
|
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1413
|
-
// Images aliases
|
|
1414
|
-
export { default as ImagesIcon } from '../icons/images';
|
|
1415
1417
|
// Image aliases
|
|
1416
1418
|
export { default as ImageIcon } from '../icons/image';
|
|
1419
|
+
// Images aliases
|
|
1420
|
+
export { default as ImagesIcon } from '../icons/images';
|
|
1417
1421
|
// Import aliases
|
|
1418
1422
|
export { default as ImportIcon } from '../icons/import';
|
|
1419
1423
|
// Inbox aliases
|
|
@@ -1436,20 +1440,20 @@ export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
|
1436
1440
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1437
1441
|
// JapaneseYen aliases
|
|
1438
1442
|
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1439
|
-
// Joystick aliases
|
|
1440
|
-
export { default as JoystickIcon } from '../icons/joystick';
|
|
1441
1443
|
// Kanban aliases
|
|
1442
1444
|
export { default as KanbanIcon } from '../icons/kanban';
|
|
1445
|
+
// Joystick aliases
|
|
1446
|
+
export { default as JoystickIcon } from '../icons/joystick';
|
|
1443
1447
|
// Kayak aliases
|
|
1444
1448
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1445
1449
|
// KeyRound aliases
|
|
1446
1450
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1447
1451
|
// KeySquare aliases
|
|
1448
1452
|
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1449
|
-
// KeyboardMusic aliases
|
|
1450
|
-
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1451
1453
|
// Key aliases
|
|
1452
1454
|
export { default as KeyIcon } from '../icons/key';
|
|
1455
|
+
// KeyboardMusic aliases
|
|
1456
|
+
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1453
1457
|
// KeyboardOff aliases
|
|
1454
1458
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1455
1459
|
// Keyboard aliases
|
|
@@ -1468,10 +1472,10 @@ export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
|
1468
1472
|
export { default as LampIcon } from '../icons/lamp';
|
|
1469
1473
|
// LandPlot aliases
|
|
1470
1474
|
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1471
|
-
// Landmark aliases
|
|
1472
|
-
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1473
1475
|
// Languages aliases
|
|
1474
1476
|
export { default as LanguagesIcon } from '../icons/languages';
|
|
1477
|
+
// Landmark aliases
|
|
1478
|
+
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1475
1479
|
// LaptopMinimalCheck aliases
|
|
1476
1480
|
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1477
1481
|
// Laptop aliases
|
|
@@ -1480,10 +1484,10 @@ export { default as LaptopIcon } from '../icons/laptop';
|
|
|
1480
1484
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1481
1485
|
// Lasso aliases
|
|
1482
1486
|
export { default as LassoIcon } from '../icons/lasso';
|
|
1483
|
-
// Layers2 aliases
|
|
1484
|
-
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1485
1487
|
// Laugh aliases
|
|
1486
1488
|
export { default as LaughIcon } from '../icons/laugh';
|
|
1489
|
+
// Layers2 aliases
|
|
1490
|
+
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1487
1491
|
// LayersPlus aliases
|
|
1488
1492
|
export { default as LayersPlusIcon } from '../icons/layers-plus';
|
|
1489
1493
|
// LayoutDashboard aliases
|
|
@@ -1492,44 +1496,44 @@ export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
|
1492
1496
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1493
1497
|
// LayoutList aliases
|
|
1494
1498
|
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1495
|
-
// LayoutPanelTop aliases
|
|
1496
|
-
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1497
1499
|
// LayoutPanelLeft aliases
|
|
1498
1500
|
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1501
|
+
// LayoutPanelTop aliases
|
|
1502
|
+
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1499
1503
|
// LayoutTemplate aliases
|
|
1500
1504
|
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1501
1505
|
// Leaf aliases
|
|
1502
1506
|
export { default as LeafIcon } from '../icons/leaf';
|
|
1503
1507
|
// LeafyGreen aliases
|
|
1504
1508
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1505
|
-
// LensConvex aliases
|
|
1506
|
-
export { default as LensConvexIcon } from '../icons/lens-convex';
|
|
1507
|
-
// LensConcave aliases
|
|
1508
|
-
export { default as LensConcaveIcon } from '../icons/lens-concave';
|
|
1509
1509
|
// Lectern aliases
|
|
1510
1510
|
export { default as LecternIcon } from '../icons/lectern';
|
|
1511
|
+
// LensConcave aliases
|
|
1512
|
+
export { default as LensConcaveIcon } from '../icons/lens-concave';
|
|
1513
|
+
// LensConvex aliases
|
|
1514
|
+
export { default as LensConvexIcon } from '../icons/lens-convex';
|
|
1511
1515
|
// LibraryBig aliases
|
|
1512
1516
|
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1513
1517
|
// Library aliases
|
|
1514
1518
|
export { default as LibraryIcon } from '../icons/library';
|
|
1515
|
-
// Ligature aliases
|
|
1516
|
-
export { default as LigatureIcon } from '../icons/ligature';
|
|
1517
1519
|
// LifeBuoy aliases
|
|
1518
1520
|
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1519
|
-
//
|
|
1520
|
-
export { default as
|
|
1521
|
+
// Ligature aliases
|
|
1522
|
+
export { default as LigatureIcon } from '../icons/ligature';
|
|
1521
1523
|
// LightbulbOff aliases
|
|
1522
1524
|
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1525
|
+
// Lightbulb aliases
|
|
1526
|
+
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1523
1527
|
// LineDotRightHorizontal aliases
|
|
1524
1528
|
export { default as LineDotRightHorizontalIcon } from '../icons/line-dot-right-horizontal';
|
|
1525
1529
|
// LineSquiggle aliases
|
|
1526
1530
|
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1527
1531
|
// Link2Off aliases
|
|
1528
1532
|
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1529
|
-
// Link aliases
|
|
1530
|
-
export { default as LinkIcon } from '../icons/link';
|
|
1531
1533
|
// Link2 aliases
|
|
1532
1534
|
export { default as Link2Icon } from '../icons/link-2';
|
|
1535
|
+
// Link aliases
|
|
1536
|
+
export { default as LinkIcon } from '../icons/link';
|
|
1533
1537
|
// Linkedin aliases
|
|
1534
1538
|
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1535
1539
|
// ListCheck aliases
|
|
@@ -1540,10 +1544,10 @@ export { default as ListChecksIcon } from '../icons/list-checks';
|
|
|
1540
1544
|
export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-up';
|
|
1541
1545
|
// ListChevronsUpDown aliases
|
|
1542
1546
|
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1543
|
-
// ListEnd aliases
|
|
1544
|
-
export { default as ListEndIcon } from '../icons/list-end';
|
|
1545
1547
|
// ListCollapse aliases
|
|
1546
1548
|
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1549
|
+
// ListEnd aliases
|
|
1550
|
+
export { default as ListEndIcon } from '../icons/list-end';
|
|
1547
1551
|
// ListFilterPlus aliases
|
|
1548
1552
|
export { default as ListFilterPlusIcon } from '../icons/list-filter-plus';
|
|
1549
1553
|
// ListFilter aliases
|
|
@@ -1552,10 +1556,10 @@ export { default as ListFilterIcon } from '../icons/list-filter';
|
|
|
1552
1556
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1553
1557
|
// ListMusic aliases
|
|
1554
1558
|
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1555
|
-
// ListOrdered aliases
|
|
1556
|
-
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1557
1559
|
// ListPlus aliases
|
|
1558
1560
|
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1561
|
+
// ListOrdered aliases
|
|
1562
|
+
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1559
1563
|
// ListRestart aliases
|
|
1560
1564
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1561
1565
|
// ListStart aliases
|
|
@@ -1566,36 +1570,36 @@ export { default as ListTodoIcon } from '../icons/list-todo';
|
|
|
1566
1570
|
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1567
1571
|
// ListVideo aliases
|
|
1568
1572
|
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1569
|
-
// List aliases
|
|
1570
|
-
export { default as ListIcon } from '../icons/list';
|
|
1571
|
-
// LoaderPinwheel aliases
|
|
1572
|
-
export { default as LoaderPinwheelIcon } from '../icons/loader-pinwheel';
|
|
1573
1573
|
// ListX aliases
|
|
1574
1574
|
export { default as ListXIcon } from '../icons/list-x';
|
|
1575
|
-
//
|
|
1576
|
-
export { default as
|
|
1575
|
+
// LoaderPinwheel aliases
|
|
1576
|
+
export { default as LoaderPinwheelIcon } from '../icons/loader-pinwheel';
|
|
1577
|
+
// List aliases
|
|
1578
|
+
export { default as ListIcon } from '../icons/list';
|
|
1577
1579
|
// Loader aliases
|
|
1578
1580
|
export { default as LoaderIcon } from '../icons/loader';
|
|
1581
|
+
// LocateFixed aliases
|
|
1582
|
+
export { default as LocateFixedIcon } from '../icons/locate-fixed';
|
|
1579
1583
|
// LocateOff aliases
|
|
1580
1584
|
export { default as LocateOffIcon } from '../icons/locate-off';
|
|
1585
|
+
// Locate aliases
|
|
1586
|
+
export { default as LocateIcon } from '../icons/locate';
|
|
1581
1587
|
// LockKeyhole aliases
|
|
1582
1588
|
export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
1583
|
-
// LogIn aliases
|
|
1584
|
-
export { default as LogInIcon } from '../icons/log-in';
|
|
1585
1589
|
// Lock aliases
|
|
1586
1590
|
export { default as LockIcon } from '../icons/lock';
|
|
1587
|
-
//
|
|
1588
|
-
export { default as
|
|
1591
|
+
// LogIn aliases
|
|
1592
|
+
export { default as LogInIcon } from '../icons/log-in';
|
|
1589
1593
|
// LogOut aliases
|
|
1590
1594
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1591
1595
|
// Logs aliases
|
|
1592
1596
|
export { default as LogsIcon } from '../icons/logs';
|
|
1593
1597
|
// Lollipop aliases
|
|
1594
1598
|
export { default as LollipopIcon } from '../icons/lollipop';
|
|
1595
|
-
// Magnet aliases
|
|
1596
|
-
export { default as MagnetIcon } from '../icons/magnet';
|
|
1597
1599
|
// Luggage aliases
|
|
1598
1600
|
export { default as LuggageIcon } from '../icons/luggage';
|
|
1601
|
+
// Magnet aliases
|
|
1602
|
+
export { default as MagnetIcon } from '../icons/magnet';
|
|
1599
1603
|
// MailMinus aliases
|
|
1600
1604
|
export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
1601
1605
|
// MailCheck aliases
|
|
@@ -1608,12 +1612,12 @@ export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
|
1608
1612
|
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1609
1613
|
// MailWarning aliases
|
|
1610
1614
|
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1611
|
-
// Mailbox aliases
|
|
1612
|
-
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1613
1615
|
// MailX aliases
|
|
1614
1616
|
export { default as MailXIcon } from '../icons/mail-x';
|
|
1615
1617
|
// Mail aliases
|
|
1616
1618
|
export { default as MailIcon } from '../icons/mail';
|
|
1619
|
+
// Mailbox aliases
|
|
1620
|
+
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1617
1621
|
// Mails aliases
|
|
1618
1622
|
export { default as MailsIcon } from '../icons/mails';
|
|
1619
1623
|
// MapMinus aliases
|
|
@@ -1622,18 +1626,18 @@ export { default as MapMinusIcon } from '../icons/map-minus';
|
|
|
1622
1626
|
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1623
1627
|
// MapPinCheck aliases
|
|
1624
1628
|
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1625
|
-
// MapPinMinusInside aliases
|
|
1626
|
-
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1627
1629
|
// MapPinHouse aliases
|
|
1628
1630
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1631
|
+
// MapPinMinusInside aliases
|
|
1632
|
+
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1629
1633
|
// MapPinMinus aliases
|
|
1630
1634
|
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1631
1635
|
// MapPinOff aliases
|
|
1632
1636
|
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1633
|
-
// MapPinPlus aliases
|
|
1634
|
-
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1635
1637
|
// MapPinPlusInside aliases
|
|
1636
1638
|
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1639
|
+
// MapPinPlus aliases
|
|
1640
|
+
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1637
1641
|
// MapPinX aliases
|
|
1638
1642
|
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1639
1643
|
// MapPinXInside aliases
|
|
@@ -1642,26 +1646,26 @@ export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
|
1642
1646
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1643
1647
|
// MapPinned aliases
|
|
1644
1648
|
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1649
|
+
// MapPlus aliases
|
|
1650
|
+
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1645
1651
|
// Map aliases
|
|
1646
1652
|
export { default as MapIcon } from '../icons/map';
|
|
1647
1653
|
// MarsStroke aliases
|
|
1648
1654
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1649
|
-
// MapPlus aliases
|
|
1650
|
-
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1651
1655
|
// Mars aliases
|
|
1652
1656
|
export { default as MarsIcon } from '../icons/mars';
|
|
1653
|
-
// Maximize2 aliases
|
|
1654
|
-
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1655
1657
|
// Martini aliases
|
|
1656
1658
|
export { default as MartiniIcon } from '../icons/martini';
|
|
1659
|
+
// Maximize2 aliases
|
|
1660
|
+
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1657
1661
|
// Maximize aliases
|
|
1658
1662
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1663
|
+
// Medal aliases
|
|
1664
|
+
export { default as MedalIcon } from '../icons/medal';
|
|
1659
1665
|
// MegaphoneOff aliases
|
|
1660
1666
|
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1661
1667
|
// Megaphone aliases
|
|
1662
1668
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1663
|
-
// Medal aliases
|
|
1664
|
-
export { default as MedalIcon } from '../icons/medal';
|
|
1665
1669
|
// Meh aliases
|
|
1666
1670
|
export { default as MehIcon } from '../icons/meh';
|
|
1667
1671
|
// MemoryStick aliases
|
|
@@ -1682,12 +1686,12 @@ export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart
|
|
|
1682
1686
|
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1683
1687
|
// MessageCircleOff aliases
|
|
1684
1688
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1685
|
-
// MessageCircleWarning aliases
|
|
1686
|
-
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1687
|
-
// MessageCircleReply aliases
|
|
1688
|
-
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1689
1689
|
// MessageCirclePlus aliases
|
|
1690
1690
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1691
|
+
// MessageCircleReply aliases
|
|
1692
|
+
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1693
|
+
// MessageCircleWarning aliases
|
|
1694
|
+
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1691
1695
|
// MessageCircleX aliases
|
|
1692
1696
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1693
1697
|
// MessageCircle aliases
|
|
@@ -1696,56 +1700,56 @@ export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
|
1696
1700
|
export { default as MessageSquareCheckIcon } from '../icons/message-square-check';
|
|
1697
1701
|
// MessageSquareCode aliases
|
|
1698
1702
|
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1699
|
-
// MessageSquareDiff aliases
|
|
1700
|
-
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1701
1703
|
// MessageSquareDashed aliases
|
|
1702
1704
|
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1705
|
+
// MessageSquareDiff aliases
|
|
1706
|
+
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1707
|
+
// MessageSquareDot aliases
|
|
1708
|
+
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1703
1709
|
// MessageSquareHeart aliases
|
|
1704
1710
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1705
1711
|
// MessageSquareLock aliases
|
|
1706
1712
|
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1707
|
-
// MessageSquareDot aliases
|
|
1708
|
-
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1709
1713
|
// MessageSquareMore aliases
|
|
1710
1714
|
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1711
|
-
// MessageSquarePlus aliases
|
|
1712
|
-
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1713
1715
|
// MessageSquareOff aliases
|
|
1714
1716
|
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1717
|
+
// MessageSquarePlus aliases
|
|
1718
|
+
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1715
1719
|
// MessageSquareQuote aliases
|
|
1716
1720
|
export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote';
|
|
1717
1721
|
// MessageSquareReply aliases
|
|
1718
1722
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1719
1723
|
// MessageSquareShare aliases
|
|
1720
1724
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1721
|
-
// MessageSquareWarning aliases
|
|
1722
|
-
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1723
1725
|
// MessageSquareText aliases
|
|
1724
1726
|
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1727
|
+
// MessageSquareWarning aliases
|
|
1728
|
+
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1725
1729
|
// MessageSquareX aliases
|
|
1726
1730
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1727
1731
|
// MessageSquare aliases
|
|
1728
1732
|
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1729
1733
|
// MessagesSquare aliases
|
|
1730
1734
|
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1731
|
-
// Metronome aliases
|
|
1732
|
-
export { default as MetronomeIcon } from '../icons/metronome';
|
|
1733
1735
|
// MicOff aliases
|
|
1734
1736
|
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1737
|
+
// Metronome aliases
|
|
1738
|
+
export { default as MetronomeIcon } from '../icons/metronome';
|
|
1735
1739
|
// Mic aliases
|
|
1736
1740
|
export { default as MicIcon } from '../icons/mic';
|
|
1737
1741
|
// Microchip aliases
|
|
1738
1742
|
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1739
|
-
// Microwave aliases
|
|
1740
|
-
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1741
1743
|
// Microscope aliases
|
|
1742
1744
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1745
|
+
// Microwave aliases
|
|
1746
|
+
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1743
1747
|
// Milestone aliases
|
|
1744
1748
|
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1745
|
-
// MilkOff aliases
|
|
1746
|
-
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1747
1749
|
// Milk aliases
|
|
1748
1750
|
export { default as MilkIcon } from '../icons/milk';
|
|
1751
|
+
// MilkOff aliases
|
|
1752
|
+
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1749
1753
|
// Minimize2 aliases
|
|
1750
1754
|
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1751
1755
|
// Minimize aliases
|
|
@@ -1762,102 +1766,102 @@ export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
|
1762
1766
|
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1763
1767
|
// MonitorCog aliases
|
|
1764
1768
|
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1765
|
-
// MonitorDown aliases
|
|
1766
|
-
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1767
1769
|
// MonitorDot aliases
|
|
1768
1770
|
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1769
|
-
// MonitorPause aliases
|
|
1770
|
-
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1771
1771
|
// MonitorOff aliases
|
|
1772
1772
|
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1773
|
+
// MonitorDown aliases
|
|
1774
|
+
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1773
1775
|
// MonitorPlay aliases
|
|
1774
1776
|
export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
1775
1777
|
// MonitorSmartphone aliases
|
|
1776
1778
|
export { default as MonitorSmartphoneIcon } from '../icons/monitor-smartphone';
|
|
1779
|
+
// MonitorPause aliases
|
|
1780
|
+
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1777
1781
|
// MonitorSpeaker aliases
|
|
1778
1782
|
export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
1779
1783
|
// MonitorStop aliases
|
|
1780
1784
|
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1781
1785
|
// MonitorUp aliases
|
|
1782
1786
|
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1783
|
-
// Monitor aliases
|
|
1784
|
-
export { default as MonitorIcon } from '../icons/monitor';
|
|
1785
1787
|
// MonitorX aliases
|
|
1786
1788
|
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1789
|
+
// Monitor aliases
|
|
1790
|
+
export { default as MonitorIcon } from '../icons/monitor';
|
|
1787
1791
|
// MoonStar aliases
|
|
1788
1792
|
export { default as MoonStarIcon } from '../icons/moon-star';
|
|
1789
1793
|
// Moon aliases
|
|
1790
1794
|
export { default as MoonIcon } from '../icons/moon';
|
|
1791
1795
|
// Motorbike aliases
|
|
1792
1796
|
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1793
|
-
// MountainSnow aliases
|
|
1794
|
-
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1795
1797
|
// Mountain aliases
|
|
1796
1798
|
export { default as MountainIcon } from '../icons/mountain';
|
|
1797
|
-
//
|
|
1798
|
-
export { default as
|
|
1799
|
+
// MountainSnow aliases
|
|
1800
|
+
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1799
1801
|
// MouseLeft aliases
|
|
1800
1802
|
export { default as MouseLeftIcon } from '../icons/mouse-left';
|
|
1801
|
-
//
|
|
1802
|
-
export { default as
|
|
1803
|
+
// MouseOff aliases
|
|
1804
|
+
export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
1803
1805
|
// MousePointer2Off aliases
|
|
1804
1806
|
export { default as MousePointer2OffIcon } from '../icons/mouse-pointer-2-off';
|
|
1807
|
+
// MousePointer2 aliases
|
|
1808
|
+
export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
1805
1809
|
// MousePointerBan aliases
|
|
1806
1810
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1807
|
-
// MousePointerClick aliases
|
|
1808
|
-
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1809
1811
|
// MousePointer aliases
|
|
1810
1812
|
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1813
|
+
// MousePointerClick aliases
|
|
1814
|
+
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1811
1815
|
// MouseRight aliases
|
|
1812
1816
|
export { default as MouseRightIcon } from '../icons/mouse-right';
|
|
1813
1817
|
// Mouse aliases
|
|
1814
1818
|
export { default as MouseIcon } from '../icons/mouse';
|
|
1815
|
-
// MoveDiagonal2 aliases
|
|
1816
|
-
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1817
1819
|
// MoveDiagonal aliases
|
|
1818
1820
|
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1821
|
+
// MoveDiagonal2 aliases
|
|
1822
|
+
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1819
1823
|
// MoveDownLeft aliases
|
|
1820
1824
|
export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
1821
|
-
// MoveDown aliases
|
|
1822
|
-
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1823
1825
|
// MoveDownRight aliases
|
|
1824
1826
|
export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
1825
|
-
//
|
|
1826
|
-
export { default as
|
|
1827
|
+
// MoveDown aliases
|
|
1828
|
+
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1827
1829
|
// MoveLeft aliases
|
|
1828
1830
|
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1831
|
+
// MoveHorizontal aliases
|
|
1832
|
+
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1829
1833
|
// MoveRight aliases
|
|
1830
1834
|
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1835
|
+
// MoveUpRight aliases
|
|
1836
|
+
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1831
1837
|
// MoveUpLeft aliases
|
|
1832
1838
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1833
1839
|
// MoveUp aliases
|
|
1834
1840
|
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1835
|
-
// MoveUpRight aliases
|
|
1836
|
-
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1837
1841
|
// MoveVertical aliases
|
|
1838
1842
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1839
1843
|
// Move aliases
|
|
1840
1844
|
export { default as MoveIcon } from '../icons/move';
|
|
1841
1845
|
// Music2 aliases
|
|
1842
1846
|
export { default as Music2Icon } from '../icons/music-2';
|
|
1843
|
-
// Music4 aliases
|
|
1844
|
-
export { default as Music4Icon } from '../icons/music-4';
|
|
1845
1847
|
// Music3 aliases
|
|
1846
1848
|
export { default as Music3Icon } from '../icons/music-3';
|
|
1849
|
+
// Music4 aliases
|
|
1850
|
+
export { default as Music4Icon } from '../icons/music-4';
|
|
1847
1851
|
// Music aliases
|
|
1848
1852
|
export { default as MusicIcon } from '../icons/music';
|
|
1849
1853
|
// Navigation2Off aliases
|
|
1850
1854
|
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1855
|
+
// Navigation2 aliases
|
|
1856
|
+
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1851
1857
|
// NavigationOff aliases
|
|
1852
1858
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1853
1859
|
// Navigation aliases
|
|
1854
1860
|
export { default as NavigationIcon } from '../icons/navigation';
|
|
1855
|
-
// Navigation2 aliases
|
|
1856
|
-
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1857
|
-
// Newspaper aliases
|
|
1858
|
-
export { default as NewspaperIcon } from '../icons/newspaper';
|
|
1859
1861
|
// Network aliases
|
|
1860
1862
|
export { default as NetworkIcon } from '../icons/network';
|
|
1863
|
+
// Newspaper aliases
|
|
1864
|
+
export { default as NewspaperIcon } from '../icons/newspaper';
|
|
1861
1865
|
// Nfc aliases
|
|
1862
1866
|
export { default as NfcIcon } from '../icons/nfc';
|
|
1863
1867
|
// NonBinary aliases
|
|
@@ -1870,36 +1874,36 @@ export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
|
1870
1874
|
export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
1871
1875
|
// Notebook aliases
|
|
1872
1876
|
export { default as NotebookIcon } from '../icons/notebook';
|
|
1873
|
-
// NotepadTextDashed aliases
|
|
1874
|
-
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1875
1877
|
// NotepadText aliases
|
|
1876
1878
|
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1879
|
+
// NotepadTextDashed aliases
|
|
1880
|
+
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1877
1881
|
// NutOff aliases
|
|
1878
1882
|
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1879
1883
|
// Nut aliases
|
|
1880
1884
|
export { default as NutIcon } from '../icons/nut';
|
|
1881
1885
|
// OctagonMinus aliases
|
|
1882
1886
|
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1887
|
+
// Omega aliases
|
|
1888
|
+
export { default as OmegaIcon } from '../icons/omega';
|
|
1883
1889
|
// Octagon aliases
|
|
1884
1890
|
export { default as OctagonIcon } from '../icons/octagon';
|
|
1885
1891
|
// Option aliases
|
|
1886
1892
|
export { default as OptionIcon } from '../icons/option';
|
|
1887
|
-
// Omega aliases
|
|
1888
|
-
export { default as OmegaIcon } from '../icons/omega';
|
|
1889
1893
|
// Orbit aliases
|
|
1890
1894
|
export { default as OrbitIcon } from '../icons/orbit';
|
|
1891
1895
|
// Origami aliases
|
|
1892
1896
|
export { default as OrigamiIcon } from '../icons/origami';
|
|
1893
|
-
// Package2 aliases
|
|
1894
|
-
export { default as Package2Icon } from '../icons/package-2';
|
|
1895
1897
|
// PackageCheck aliases
|
|
1896
1898
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1899
|
+
// Package2 aliases
|
|
1900
|
+
export { default as Package2Icon } from '../icons/package-2';
|
|
1897
1901
|
// PackageMinus aliases
|
|
1898
1902
|
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1899
|
-
// PackagePlus aliases
|
|
1900
|
-
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1901
1903
|
// PackageOpen aliases
|
|
1902
1904
|
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1905
|
+
// PackagePlus aliases
|
|
1906
|
+
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1903
1907
|
// PackageSearch aliases
|
|
1904
1908
|
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1905
1909
|
// PackageX aliases
|
|
@@ -1910,10 +1914,10 @@ export { default as PackageIcon } from '../icons/package';
|
|
|
1910
1914
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1911
1915
|
// PaintRoller aliases
|
|
1912
1916
|
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1913
|
-
// Paintbrush aliases
|
|
1914
|
-
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1915
1917
|
// Palette aliases
|
|
1916
1918
|
export { default as PaletteIcon } from '../icons/palette';
|
|
1919
|
+
// Paintbrush aliases
|
|
1920
|
+
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1917
1921
|
// Panda aliases
|
|
1918
1922
|
export { default as PandaIcon } from '../icons/panda';
|
|
1919
1923
|
// PanelBottomClose aliases
|
|
@@ -1934,18 +1938,18 @@ export { default as PanelRightIcon } from '../icons/panel-right';
|
|
|
1934
1938
|
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1935
1939
|
// PanelTopClose aliases
|
|
1936
1940
|
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1937
|
-
// PanelsLeftBottom aliases
|
|
1938
|
-
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1939
1941
|
// PanelTopOpen aliases
|
|
1940
1942
|
export { default as PanelTopOpenIcon } from '../icons/panel-top-open';
|
|
1941
|
-
// PanelsRightBottom aliases
|
|
1942
|
-
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1943
1943
|
// PanelTop aliases
|
|
1944
1944
|
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1945
|
-
//
|
|
1946
|
-
export { default as
|
|
1945
|
+
// PanelsLeftBottom aliases
|
|
1946
|
+
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1947
|
+
// PanelsRightBottom aliases
|
|
1948
|
+
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1947
1949
|
// Parentheses aliases
|
|
1948
1950
|
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
1951
|
+
// Paperclip aliases
|
|
1952
|
+
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1949
1953
|
// ParkingMeter aliases
|
|
1950
1954
|
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1951
1955
|
// PartyPopper aliases
|
|
@@ -1962,10 +1966,10 @@ export { default as PenOffIcon } from '../icons/pen-off';
|
|
|
1962
1966
|
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
1963
1967
|
// PencilLine aliases
|
|
1964
1968
|
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
1965
|
-
// PencilRuler aliases
|
|
1966
|
-
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
1967
1969
|
// PencilOff aliases
|
|
1968
1970
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
1971
|
+
// PencilRuler aliases
|
|
1972
|
+
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
1969
1973
|
// Pencil aliases
|
|
1970
1974
|
export { default as PencilIcon } from '../icons/pencil';
|
|
1971
1975
|
// Pentagon aliases
|
|
@@ -1974,10 +1978,10 @@ export { default as PentagonIcon } from '../icons/pentagon';
|
|
|
1974
1978
|
export { default as PercentIcon } from '../icons/percent';
|
|
1975
1979
|
// PersonStanding aliases
|
|
1976
1980
|
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1977
|
-
// PhoneCall aliases
|
|
1978
|
-
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1979
1981
|
// PhilippinePeso aliases
|
|
1980
1982
|
export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
1983
|
+
// PhoneCall aliases
|
|
1984
|
+
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1981
1985
|
// PhoneForwarded aliases
|
|
1982
1986
|
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1983
1987
|
// PhoneIncoming aliases
|
|
@@ -2012,40 +2016,40 @@ export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
|
2012
2016
|
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
2013
2017
|
// PinOff aliases
|
|
2014
2018
|
export { default as PinOffIcon } from '../icons/pin-off';
|
|
2015
|
-
// Pill aliases
|
|
2016
|
-
export { default as PillIcon } from '../icons/pill';
|
|
2017
2019
|
// Pin aliases
|
|
2018
2020
|
export { default as PinIcon } from '../icons/pin';
|
|
2019
2021
|
// Pipette aliases
|
|
2020
2022
|
export { default as PipetteIcon } from '../icons/pipette';
|
|
2021
|
-
//
|
|
2022
|
-
export { default as
|
|
2023
|
+
// Pill aliases
|
|
2024
|
+
export { default as PillIcon } from '../icons/pill';
|
|
2023
2025
|
// Pizza aliases
|
|
2024
2026
|
export { default as PizzaIcon } from '../icons/pizza';
|
|
2027
|
+
// PlaneLanding aliases
|
|
2028
|
+
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
2025
2029
|
// PlaneTakeoff aliases
|
|
2026
2030
|
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
2027
2031
|
// Plane aliases
|
|
2028
2032
|
export { default as PlaneIcon } from '../icons/plane';
|
|
2029
|
-
// Play aliases
|
|
2030
|
-
export { default as PlayIcon } from '../icons/play';
|
|
2031
|
-
// PocketKnife aliases
|
|
2032
|
-
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2033
2033
|
// Plug2 aliases
|
|
2034
2034
|
export { default as Plug2Icon } from '../icons/plug-2';
|
|
2035
|
+
// Play aliases
|
|
2036
|
+
export { default as PlayIcon } from '../icons/play';
|
|
2035
2037
|
// Plug aliases
|
|
2036
2038
|
export { default as PlugIcon } from '../icons/plug';
|
|
2037
2039
|
// Plus aliases
|
|
2038
2040
|
export { default as PlusIcon } from '../icons/plus';
|
|
2041
|
+
// PocketKnife aliases
|
|
2042
|
+
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2039
2043
|
// Pocket aliases
|
|
2040
2044
|
export { default as PocketIcon } from '../icons/pocket';
|
|
2041
2045
|
// Podcast aliases
|
|
2042
2046
|
export { default as PodcastIcon } from '../icons/podcast';
|
|
2043
2047
|
// PointerOff aliases
|
|
2044
2048
|
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2045
|
-
// Popcorn aliases
|
|
2046
|
-
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2047
2049
|
// Pointer aliases
|
|
2048
2050
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2051
|
+
// Popcorn aliases
|
|
2052
|
+
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2049
2053
|
// Popsicle aliases
|
|
2050
2054
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2051
2055
|
// PoundSterling aliases
|
|
@@ -2056,14 +2060,14 @@ export { default as PowerOffIcon } from '../icons/power-off';
|
|
|
2056
2060
|
export { default as PowerIcon } from '../icons/power';
|
|
2057
2061
|
// Presentation aliases
|
|
2058
2062
|
export { default as PresentationIcon } from '../icons/presentation';
|
|
2059
|
-
// PrinterX aliases
|
|
2060
|
-
export { default as PrinterXIcon } from '../icons/printer-x';
|
|
2061
2063
|
// PrinterCheck aliases
|
|
2062
2064
|
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2063
|
-
//
|
|
2064
|
-
export { default as
|
|
2065
|
+
// PrinterX aliases
|
|
2066
|
+
export { default as PrinterXIcon } from '../icons/printer-x';
|
|
2065
2067
|
// Printer aliases
|
|
2066
2068
|
export { default as PrinterIcon } from '../icons/printer';
|
|
2069
|
+
// Projector aliases
|
|
2070
|
+
export { default as ProjectorIcon } from '../icons/projector';
|
|
2067
2071
|
// Proportions aliases
|
|
2068
2072
|
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2069
2073
|
// Puzzle aliases
|
|
@@ -2074,16 +2078,16 @@ export { default as PyramidIcon } from '../icons/pyramid';
|
|
|
2074
2078
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2075
2079
|
// QrCode aliases
|
|
2076
2080
|
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2077
|
-
// Radar aliases
|
|
2078
|
-
export { default as RadarIcon } from '../icons/radar';
|
|
2079
2081
|
// Rabbit aliases
|
|
2080
2082
|
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2083
|
+
// Radar aliases
|
|
2084
|
+
export { default as RadarIcon } from '../icons/radar';
|
|
2081
2085
|
// Radiation aliases
|
|
2082
2086
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2083
|
-
// Radical aliases
|
|
2084
|
-
export { default as RadicalIcon } from '../icons/radical';
|
|
2085
2087
|
// RadioReceiver aliases
|
|
2086
2088
|
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2089
|
+
// Radical aliases
|
|
2090
|
+
export { default as RadicalIcon } from '../icons/radical';
|
|
2087
2091
|
// RadioTower aliases
|
|
2088
2092
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2089
2093
|
// Radio aliases
|
|
@@ -2100,22 +2104,22 @@ export { default as RatIcon } from '../icons/rat';
|
|
|
2100
2104
|
export { default as RatioIcon } from '../icons/ratio';
|
|
2101
2105
|
// ReceiptCent aliases
|
|
2102
2106
|
export { default as ReceiptCentIcon } from '../icons/receipt-cent';
|
|
2103
|
-
// ReceiptIndianRupee aliases
|
|
2104
|
-
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2105
2107
|
// ReceiptEuro aliases
|
|
2106
2108
|
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2109
|
+
// ReceiptIndianRupee aliases
|
|
2110
|
+
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2107
2111
|
// ReceiptJapaneseYen aliases
|
|
2108
2112
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2109
2113
|
// ReceiptPoundSterling aliases
|
|
2110
2114
|
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2111
|
-
// ReceiptSwissFranc aliases
|
|
2112
|
-
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2113
2115
|
// ReceiptRussianRuble aliases
|
|
2114
2116
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2115
|
-
//
|
|
2116
|
-
export { default as
|
|
2117
|
+
// ReceiptSwissFranc aliases
|
|
2118
|
+
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2117
2119
|
// ReceiptText aliases
|
|
2118
2120
|
export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
2121
|
+
// ReceiptTurkishLira aliases
|
|
2122
|
+
export { default as ReceiptTurkishLiraIcon } from '../icons/receipt-turkish-lira';
|
|
2119
2123
|
// Receipt aliases
|
|
2120
2124
|
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2121
2125
|
// RectangleCircle aliases
|
|
@@ -2128,22 +2132,22 @@ export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizonta
|
|
|
2128
2132
|
export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
2129
2133
|
// Recycle aliases
|
|
2130
2134
|
export { default as RecycleIcon } from '../icons/recycle';
|
|
2135
|
+
// RedoDot aliases
|
|
2136
|
+
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2131
2137
|
// Redo2 aliases
|
|
2132
2138
|
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2133
2139
|
// Redo aliases
|
|
2134
2140
|
export { default as RedoIcon } from '../icons/redo';
|
|
2135
|
-
// RedoDot aliases
|
|
2136
|
-
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2137
2141
|
// RefreshCcwDot aliases
|
|
2138
2142
|
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2139
2143
|
// RefreshCcw aliases
|
|
2140
2144
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2141
2145
|
// RefreshCwOff aliases
|
|
2142
2146
|
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2143
|
-
// Refrigerator aliases
|
|
2144
|
-
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2145
2147
|
// RefreshCw aliases
|
|
2146
2148
|
export { default as RefreshCwIcon } from '../icons/refresh-cw';
|
|
2149
|
+
// Refrigerator aliases
|
|
2150
|
+
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2147
2151
|
// Regex aliases
|
|
2148
2152
|
export { default as RegexIcon } from '../icons/regex';
|
|
2149
2153
|
// RemoveFormatting aliases
|
|
@@ -2152,24 +2156,24 @@ export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
|
2152
2156
|
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2153
2157
|
// Repeat2 aliases
|
|
2154
2158
|
export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
2155
|
-
// ReplaceAll aliases
|
|
2156
|
-
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2157
2159
|
// Repeat aliases
|
|
2158
2160
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2159
|
-
//
|
|
2160
|
-
export { default as
|
|
2161
|
+
// ReplaceAll aliases
|
|
2162
|
+
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2161
2163
|
// Replace aliases
|
|
2162
2164
|
export { default as ReplaceIcon } from '../icons/replace';
|
|
2165
|
+
// ReplyAll aliases
|
|
2166
|
+
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2163
2167
|
// Reply aliases
|
|
2164
2168
|
export { default as ReplyIcon } from '../icons/reply';
|
|
2165
2169
|
// Rewind aliases
|
|
2166
2170
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2167
|
-
// Ribbon aliases
|
|
2168
|
-
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2169
|
-
// RockingChair aliases
|
|
2170
|
-
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2171
2171
|
// Rocket aliases
|
|
2172
2172
|
export { default as RocketIcon } from '../icons/rocket';
|
|
2173
|
+
// RockingChair aliases
|
|
2174
|
+
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2175
|
+
// Ribbon aliases
|
|
2176
|
+
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2173
2177
|
// RollerCoaster aliases
|
|
2174
2178
|
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2175
2179
|
// Rose aliases
|
|
@@ -2180,10 +2184,10 @@ export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
|
2180
2184
|
export { default as RotateCcwSquareIcon } from '../icons/rotate-ccw-square';
|
|
2181
2185
|
// RotateCcw aliases
|
|
2182
2186
|
export { default as RotateCcwIcon } from '../icons/rotate-ccw';
|
|
2183
|
-
// RotateCwSquare aliases
|
|
2184
|
-
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2185
2187
|
// RotateCw aliases
|
|
2186
2188
|
export { default as RotateCwIcon } from '../icons/rotate-cw';
|
|
2189
|
+
// RotateCwSquare aliases
|
|
2190
|
+
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2187
2191
|
// RouteOff aliases
|
|
2188
2192
|
export { default as RouteOffIcon } from '../icons/route-off';
|
|
2189
2193
|
// Route aliases
|
|
@@ -2194,12 +2198,12 @@ export { default as RouterIcon } from '../icons/router';
|
|
|
2194
2198
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2195
2199
|
// Rss aliases
|
|
2196
2200
|
export { default as RssIcon } from '../icons/rss';
|
|
2201
|
+
// RulerDimensionLine aliases
|
|
2202
|
+
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2197
2203
|
// Ruler aliases
|
|
2198
2204
|
export { default as RulerIcon } from '../icons/ruler';
|
|
2199
2205
|
// RussianRuble aliases
|
|
2200
2206
|
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2201
|
-
// RulerDimensionLine aliases
|
|
2202
|
-
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2203
2207
|
// Sailboat aliases
|
|
2204
2208
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2205
2209
|
// Salad aliases
|
|
@@ -2218,18 +2222,18 @@ export { default as SaveAllIcon } from '../icons/save-all';
|
|
|
2218
2222
|
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2219
2223
|
// Save aliases
|
|
2220
2224
|
export { default as SaveIcon } from '../icons/save';
|
|
2221
|
-
// ScanBarcode aliases
|
|
2222
|
-
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2223
2225
|
// Scale aliases
|
|
2224
2226
|
export { default as ScaleIcon } from '../icons/scale';
|
|
2225
2227
|
// Scaling aliases
|
|
2226
2228
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2229
|
+
// ScanBarcode aliases
|
|
2230
|
+
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2227
2231
|
// ScanEye aliases
|
|
2228
2232
|
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2229
|
-
// ScanFace aliases
|
|
2230
|
-
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2231
2233
|
// ScanHeart aliases
|
|
2232
2234
|
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2235
|
+
// ScanFace aliases
|
|
2236
|
+
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2233
2237
|
// ScanLine aliases
|
|
2234
2238
|
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2235
2239
|
// ScanQrCode aliases
|
|
@@ -2246,64 +2250,64 @@ export { default as SchoolIcon } from '../icons/school';
|
|
|
2246
2250
|
export { default as ScissorsLineDashedIcon } from '../icons/scissors-line-dashed';
|
|
2247
2251
|
// Scissors aliases
|
|
2248
2252
|
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2249
|
-
// Scooter aliases
|
|
2250
|
-
export { default as ScooterIcon } from '../icons/scooter';
|
|
2251
2253
|
// ScreenShareOff aliases
|
|
2252
2254
|
export { default as ScreenShareOffIcon } from '../icons/screen-share-off';
|
|
2255
|
+
// Scooter aliases
|
|
2256
|
+
export { default as ScooterIcon } from '../icons/scooter';
|
|
2253
2257
|
// ScreenShare aliases
|
|
2254
2258
|
export { default as ScreenShareIcon } from '../icons/screen-share';
|
|
2255
2259
|
// ScrollText aliases
|
|
2256
2260
|
export { default as ScrollTextIcon } from '../icons/scroll-text';
|
|
2257
|
-
// Scroll aliases
|
|
2258
|
-
export { default as ScrollIcon } from '../icons/scroll';
|
|
2259
2261
|
// SearchAlert aliases
|
|
2260
2262
|
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2263
|
+
// Scroll aliases
|
|
2264
|
+
export { default as ScrollIcon } from '../icons/scroll';
|
|
2261
2265
|
// SearchCheck aliases
|
|
2262
2266
|
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2263
2267
|
// SearchCode aliases
|
|
2264
2268
|
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2265
|
-
// SearchX aliases
|
|
2266
|
-
export { default as SearchXIcon } from '../icons/search-x';
|
|
2267
2269
|
// SearchSlash aliases
|
|
2268
2270
|
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2269
|
-
//
|
|
2270
|
-
export { default as
|
|
2271
|
+
// SearchX aliases
|
|
2272
|
+
export { default as SearchXIcon } from '../icons/search-x';
|
|
2271
2273
|
// Search aliases
|
|
2272
2274
|
export { default as SearchIcon } from '../icons/search';
|
|
2273
|
-
//
|
|
2274
|
-
export { default as
|
|
2275
|
+
// Section aliases
|
|
2276
|
+
export { default as SectionIcon } from '../icons/section';
|
|
2275
2277
|
// Send aliases
|
|
2276
2278
|
export { default as SendIcon } from '../icons/send';
|
|
2277
|
-
//
|
|
2278
|
-
export { default as
|
|
2279
|
-
// ServerCog aliases
|
|
2280
|
-
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2279
|
+
// SendToBack aliases
|
|
2280
|
+
export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
2281
2281
|
// SeparatorHorizontal aliases
|
|
2282
2282
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2283
|
-
//
|
|
2284
|
-
export { default as
|
|
2283
|
+
// SeparatorVertical aliases
|
|
2284
|
+
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2285
2285
|
// ServerCrash aliases
|
|
2286
2286
|
export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
2287
|
+
// ServerCog aliases
|
|
2288
|
+
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2287
2289
|
// Server aliases
|
|
2288
2290
|
export { default as ServerIcon } from '../icons/server';
|
|
2291
|
+
// ServerOff aliases
|
|
2292
|
+
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2289
2293
|
// Settings2 aliases
|
|
2290
2294
|
export { default as Settings2Icon } from '../icons/settings-2';
|
|
2291
2295
|
// Settings aliases
|
|
2292
2296
|
export { default as SettingsIcon } from '../icons/settings';
|
|
2293
2297
|
// Shapes aliases
|
|
2294
2298
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2295
|
-
// Share aliases
|
|
2296
|
-
export { default as ShareIcon } from '../icons/share';
|
|
2297
2299
|
// Share2 aliases
|
|
2298
2300
|
export { default as Share2Icon } from '../icons/share-2';
|
|
2301
|
+
// Share aliases
|
|
2302
|
+
export { default as ShareIcon } from '../icons/share';
|
|
2299
2303
|
// Sheet aliases
|
|
2300
2304
|
export { default as SheetIcon } from '../icons/sheet';
|
|
2301
2305
|
// Shell aliases
|
|
2302
2306
|
export { default as ShellIcon } from '../icons/shell';
|
|
2303
|
-
// ShieldAlert aliases
|
|
2304
|
-
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2305
2307
|
// ShelvingUnit aliases
|
|
2306
2308
|
export { default as ShelvingUnitIcon } from '../icons/shelving-unit';
|
|
2309
|
+
// ShieldAlert aliases
|
|
2310
|
+
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2307
2311
|
// ShieldBan aliases
|
|
2308
2312
|
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2309
2313
|
// ShieldCheck aliases
|
|
@@ -2312,52 +2316,52 @@ export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
|
2312
2316
|
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2313
2317
|
// ShieldHalf aliases
|
|
2314
2318
|
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2315
|
-
// ShieldMinus aliases
|
|
2316
|
-
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2317
2319
|
// ShieldOff aliases
|
|
2318
2320
|
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2321
|
+
// ShieldMinus aliases
|
|
2322
|
+
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2319
2323
|
// ShieldPlus aliases
|
|
2320
2324
|
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2321
2325
|
// ShieldUser aliases
|
|
2322
2326
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2323
2327
|
// Shield aliases
|
|
2324
2328
|
export { default as ShieldIcon } from '../icons/shield';
|
|
2325
|
-
// Ship aliases
|
|
2326
|
-
export { default as ShipIcon } from '../icons/ship';
|
|
2327
2329
|
// ShipWheel aliases
|
|
2328
2330
|
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2331
|
+
// Ship aliases
|
|
2332
|
+
export { default as ShipIcon } from '../icons/ship';
|
|
2329
2333
|
// Shirt aliases
|
|
2330
2334
|
export { default as ShirtIcon } from '../icons/shirt';
|
|
2331
2335
|
// ShoppingBag aliases
|
|
2332
2336
|
export { default as ShoppingBagIcon } from '../icons/shopping-bag';
|
|
2333
|
-
// Shovel aliases
|
|
2334
|
-
export { default as ShovelIcon } from '../icons/shovel';
|
|
2335
2337
|
// ShoppingBasket aliases
|
|
2336
2338
|
export { default as ShoppingBasketIcon } from '../icons/shopping-basket';
|
|
2337
2339
|
// ShoppingCart aliases
|
|
2338
2340
|
export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
2339
|
-
//
|
|
2340
|
-
export { default as
|
|
2341
|
-
// Shrink aliases
|
|
2342
|
-
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2341
|
+
// Shovel aliases
|
|
2342
|
+
export { default as ShovelIcon } from '../icons/shovel';
|
|
2343
2343
|
// Shredder aliases
|
|
2344
2344
|
export { default as ShredderIcon } from '../icons/shredder';
|
|
2345
|
+
// ShowerHead aliases
|
|
2346
|
+
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2345
2347
|
// Shrimp aliases
|
|
2346
2348
|
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2347
|
-
//
|
|
2348
|
-
export { default as
|
|
2349
|
+
// Shrink aliases
|
|
2350
|
+
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2349
2351
|
// Shrub aliases
|
|
2350
2352
|
export { default as ShrubIcon } from '../icons/shrub';
|
|
2353
|
+
// Shuffle aliases
|
|
2354
|
+
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2351
2355
|
// Sigma aliases
|
|
2352
2356
|
export { default as SigmaIcon } from '../icons/sigma';
|
|
2353
2357
|
// SignalHigh aliases
|
|
2354
2358
|
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2359
|
+
// SignalLow aliases
|
|
2360
|
+
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2355
2361
|
// SignalMedium aliases
|
|
2356
2362
|
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2357
2363
|
// SignalZero aliases
|
|
2358
2364
|
export { default as SignalZeroIcon } from '../icons/signal-zero';
|
|
2359
|
-
// SignalLow aliases
|
|
2360
|
-
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2361
2365
|
// Signal aliases
|
|
2362
2366
|
export { default as SignalIcon } from '../icons/signal';
|
|
2363
2367
|
// Signature aliases
|
|
@@ -2382,10 +2386,10 @@ export { default as SlashIcon } from '../icons/slash';
|
|
|
2382
2386
|
export { default as SliceIcon } from '../icons/slice';
|
|
2383
2387
|
// SlidersHorizontal aliases
|
|
2384
2388
|
export { default as SlidersHorizontalIcon } from '../icons/sliders-horizontal';
|
|
2385
|
-
// SmartphoneCharging aliases
|
|
2386
|
-
export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging';
|
|
2387
2389
|
// SmartphoneNfc aliases
|
|
2388
2390
|
export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
2391
|
+
// SmartphoneCharging aliases
|
|
2392
|
+
export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging';
|
|
2389
2393
|
// Smartphone aliases
|
|
2390
2394
|
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2391
2395
|
// SmilePlus aliases
|
|
@@ -2396,60 +2400,60 @@ export { default as SmileIcon } from '../icons/smile';
|
|
|
2396
2400
|
export { default as SnailIcon } from '../icons/snail';
|
|
2397
2401
|
// Snowflake aliases
|
|
2398
2402
|
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2399
|
-
// Sofa aliases
|
|
2400
|
-
export { default as SofaIcon } from '../icons/sofa';
|
|
2401
2403
|
// SoapDispenserDroplet aliases
|
|
2402
2404
|
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2405
|
+
// Sofa aliases
|
|
2406
|
+
export { default as SofaIcon } from '../icons/sofa';
|
|
2403
2407
|
// SolarPanel aliases
|
|
2404
2408
|
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2405
|
-
// Space aliases
|
|
2406
|
-
export { default as SpaceIcon } from '../icons/space';
|
|
2407
2409
|
// Soup aliases
|
|
2408
2410
|
export { default as SoupIcon } from '../icons/soup';
|
|
2411
|
+
// Space aliases
|
|
2412
|
+
export { default as SpaceIcon } from '../icons/space';
|
|
2413
|
+
// Spade aliases
|
|
2414
|
+
export { default as SpadeIcon } from '../icons/spade';
|
|
2409
2415
|
// Sparkle aliases
|
|
2410
2416
|
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2411
2417
|
// Speaker aliases
|
|
2412
2418
|
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2413
|
-
// Spade aliases
|
|
2414
|
-
export { default as SpadeIcon } from '../icons/spade';
|
|
2415
2419
|
// Speech aliases
|
|
2416
2420
|
export { default as SpeechIcon } from '../icons/speech';
|
|
2417
2421
|
// SpellCheck aliases
|
|
2418
2422
|
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2419
|
-
// SplinePointer aliases
|
|
2420
|
-
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2421
2423
|
// SpellCheck2 aliases
|
|
2422
2424
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2425
|
+
// SplinePointer aliases
|
|
2426
|
+
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2423
2427
|
// Spline aliases
|
|
2424
2428
|
export { default as SplineIcon } from '../icons/spline';
|
|
2425
|
-
// Split aliases
|
|
2426
|
-
export { default as SplitIcon } from '../icons/split';
|
|
2427
2429
|
// Spool aliases
|
|
2428
2430
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2431
|
+
// Split aliases
|
|
2432
|
+
export { default as SplitIcon } from '../icons/split';
|
|
2429
2433
|
// Spotlight aliases
|
|
2430
2434
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2431
|
-
// SprayCan aliases
|
|
2432
|
-
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2433
2435
|
// Sprout aliases
|
|
2434
2436
|
export { default as SproutIcon } from '../icons/sprout';
|
|
2435
2437
|
// SquareArrowRightEnter aliases
|
|
2436
2438
|
export { default as SquareArrowRightEnterIcon } from '../icons/square-arrow-right-enter';
|
|
2439
|
+
// SprayCan aliases
|
|
2440
|
+
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2437
2441
|
// SquareArrowRightExit aliases
|
|
2438
2442
|
export { default as SquareArrowRightExitIcon } from '../icons/square-arrow-right-exit';
|
|
2439
2443
|
// SquareDashedBottomCode aliases
|
|
2440
2444
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2441
|
-
// SquareDashedBottom aliases
|
|
2442
|
-
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2443
2445
|
// SquareDashedTopSolid aliases
|
|
2444
2446
|
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2447
|
+
// SquareDashedBottom aliases
|
|
2448
|
+
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2445
2449
|
// SquarePause aliases
|
|
2446
2450
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2447
2451
|
// SquareRadical aliases
|
|
2448
2452
|
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2449
|
-
// SquareRoundCorner aliases
|
|
2450
|
-
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2451
2453
|
// SquareSquare aliases
|
|
2452
2454
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2455
|
+
// SquareRoundCorner aliases
|
|
2456
|
+
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2453
2457
|
// SquareStack aliases
|
|
2454
2458
|
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2455
2459
|
// SquareStar aliases
|
|
@@ -2462,84 +2466,84 @@ export { default as SquareIcon } from '../icons/square';
|
|
|
2462
2466
|
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2463
2467
|
// SquaresIntersect aliases
|
|
2464
2468
|
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2465
|
-
// SquaresSubtract aliases
|
|
2466
|
-
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2467
2469
|
// SquaresUnite aliases
|
|
2468
2470
|
export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
2471
|
+
// SquaresSubtract aliases
|
|
2472
|
+
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2469
2473
|
// SquircleDashed aliases
|
|
2470
2474
|
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2471
2475
|
// Squircle aliases
|
|
2472
2476
|
export { default as SquircleIcon } from '../icons/squircle';
|
|
2473
2477
|
// Squirrel aliases
|
|
2474
2478
|
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2479
|
+
// Stamp aliases
|
|
2480
|
+
export { default as StampIcon } from '../icons/stamp';
|
|
2475
2481
|
// StarHalf aliases
|
|
2476
2482
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2477
2483
|
// StarOff aliases
|
|
2478
2484
|
export { default as StarOffIcon } from '../icons/star-off';
|
|
2479
|
-
// Stamp aliases
|
|
2480
|
-
export { default as StampIcon } from '../icons/stamp';
|
|
2481
|
-
// Star aliases
|
|
2482
|
-
export { default as StarIcon } from '../icons/star';
|
|
2483
2485
|
// StepBack aliases
|
|
2484
2486
|
export { default as StepBackIcon } from '../icons/step-back';
|
|
2487
|
+
// Star aliases
|
|
2488
|
+
export { default as StarIcon } from '../icons/star';
|
|
2485
2489
|
// StepForward aliases
|
|
2486
2490
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2487
|
-
// Sticker aliases
|
|
2488
|
-
export { default as StickerIcon } from '../icons/sticker';
|
|
2489
2491
|
// Stethoscope aliases
|
|
2490
2492
|
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2493
|
+
// Sticker aliases
|
|
2494
|
+
export { default as StickerIcon } from '../icons/sticker';
|
|
2491
2495
|
// StickyNote aliases
|
|
2492
2496
|
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2493
2497
|
// Stone aliases
|
|
2494
2498
|
export { default as StoneIcon } from '../icons/stone';
|
|
2495
2499
|
// Store aliases
|
|
2496
2500
|
export { default as StoreIcon } from '../icons/store';
|
|
2497
|
-
// StretchVertical aliases
|
|
2498
|
-
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2499
2501
|
// StretchHorizontal aliases
|
|
2500
2502
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2503
|
+
// StretchVertical aliases
|
|
2504
|
+
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2505
|
+
// Subscript aliases
|
|
2506
|
+
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2501
2507
|
// Strikethrough aliases
|
|
2502
2508
|
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2503
2509
|
// SunDim aliases
|
|
2504
2510
|
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2505
|
-
// Subscript aliases
|
|
2506
|
-
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2507
2511
|
// SunMedium aliases
|
|
2508
2512
|
export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
2509
|
-
// SunSnow aliases
|
|
2510
|
-
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2511
2513
|
// SunMoon aliases
|
|
2512
2514
|
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2515
|
+
// SunSnow aliases
|
|
2516
|
+
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2513
2517
|
// Sun aliases
|
|
2514
2518
|
export { default as SunIcon } from '../icons/sun';
|
|
2515
2519
|
// Sunrise aliases
|
|
2516
2520
|
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2517
|
-
// Sunset aliases
|
|
2518
|
-
export { default as SunsetIcon } from '../icons/sunset';
|
|
2519
2521
|
// Superscript aliases
|
|
2520
2522
|
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2523
|
+
// Sunset aliases
|
|
2524
|
+
export { default as SunsetIcon } from '../icons/sunset';
|
|
2521
2525
|
// SwatchBook aliases
|
|
2522
2526
|
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2523
|
-
// SwitchCamera aliases
|
|
2524
|
-
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2525
2527
|
// SwissFranc aliases
|
|
2526
2528
|
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2529
|
+
// SwitchCamera aliases
|
|
2530
|
+
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2527
2531
|
// Sword aliases
|
|
2528
2532
|
export { default as SwordIcon } from '../icons/sword';
|
|
2529
2533
|
// Syringe aliases
|
|
2530
2534
|
export { default as SyringeIcon } from '../icons/syringe';
|
|
2531
|
-
// Swords aliases
|
|
2532
|
-
export { default as SwordsIcon } from '../icons/swords';
|
|
2533
2535
|
// Table2 aliases
|
|
2534
2536
|
export { default as Table2Icon } from '../icons/table-2';
|
|
2537
|
+
// Swords aliases
|
|
2538
|
+
export { default as SwordsIcon } from '../icons/swords';
|
|
2535
2539
|
// TableCellsMerge aliases
|
|
2536
2540
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2537
2541
|
// TableCellsSplit aliases
|
|
2538
2542
|
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2539
|
-
// TableColumnsSplit aliases
|
|
2540
|
-
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2541
2543
|
// TableOfContents aliases
|
|
2542
2544
|
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2545
|
+
// TableColumnsSplit aliases
|
|
2546
|
+
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2543
2547
|
// TableProperties aliases
|
|
2544
2548
|
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2545
2549
|
// TableRowsSplit aliases
|
|
@@ -2548,30 +2552,30 @@ export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
|
2548
2552
|
export { default as TableIcon } from '../icons/table';
|
|
2549
2553
|
// TabletSmartphone aliases
|
|
2550
2554
|
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2555
|
+
// Tablet aliases
|
|
2556
|
+
export { default as TabletIcon } from '../icons/tablet';
|
|
2551
2557
|
// Tablets aliases
|
|
2552
2558
|
export { default as TabletsIcon } from '../icons/tablets';
|
|
2553
2559
|
// Tag aliases
|
|
2554
2560
|
export { default as TagIcon } from '../icons/tag';
|
|
2555
|
-
// Tablet aliases
|
|
2556
|
-
export { default as TabletIcon } from '../icons/tablet';
|
|
2557
2561
|
// Tags aliases
|
|
2558
2562
|
export { default as TagsIcon } from '../icons/tags';
|
|
2563
|
+
// Tally1 aliases
|
|
2564
|
+
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2559
2565
|
// Tally2 aliases
|
|
2560
2566
|
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2561
2567
|
// Tally3 aliases
|
|
2562
2568
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2563
|
-
//
|
|
2564
|
-
export { default as
|
|
2569
|
+
// Tally4 aliases
|
|
2570
|
+
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2565
2571
|
// Tally5 aliases
|
|
2566
2572
|
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2567
2573
|
// Tangent aliases
|
|
2568
2574
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2569
|
-
// Tally4 aliases
|
|
2570
|
-
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2571
|
-
// Target aliases
|
|
2572
|
-
export { default as TargetIcon } from '../icons/target';
|
|
2573
2575
|
// Telescope aliases
|
|
2574
2576
|
export { default as TelescopeIcon } from '../icons/telescope';
|
|
2577
|
+
// Target aliases
|
|
2578
|
+
export { default as TargetIcon } from '../icons/target';
|
|
2575
2579
|
// TentTree aliases
|
|
2576
2580
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2577
2581
|
// Tent aliases
|
|
@@ -2588,54 +2592,54 @@ export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
|
2588
2592
|
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2589
2593
|
// TextQuote aliases
|
|
2590
2594
|
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2591
|
-
// Theater aliases
|
|
2592
|
-
export { default as TheaterIcon } from '../icons/theater';
|
|
2593
2595
|
// TextSearch aliases
|
|
2594
2596
|
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2595
|
-
//
|
|
2596
|
-
export { default as
|
|
2597
|
+
// Theater aliases
|
|
2598
|
+
export { default as TheaterIcon } from '../icons/theater';
|
|
2597
2599
|
// ThermometerSun aliases
|
|
2598
2600
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2601
|
+
// ThermometerSnowflake aliases
|
|
2602
|
+
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2599
2603
|
// Thermometer aliases
|
|
2600
2604
|
export { default as ThermometerIcon } from '../icons/thermometer';
|
|
2601
|
-
// TicketCheck aliases
|
|
2602
|
-
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2603
2605
|
// ThumbsDown aliases
|
|
2604
2606
|
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2605
2607
|
// ThumbsUp aliases
|
|
2606
2608
|
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2609
|
+
// TicketCheck aliases
|
|
2610
|
+
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2607
2611
|
// TicketMinus aliases
|
|
2608
2612
|
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2609
|
-
// TicketPercent aliases
|
|
2610
|
-
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2611
|
-
// TicketSlash aliases
|
|
2612
|
-
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2613
2613
|
// TicketPlus aliases
|
|
2614
2614
|
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2615
|
+
// TicketPercent aliases
|
|
2616
|
+
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2615
2617
|
// TicketX aliases
|
|
2616
2618
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2617
|
-
//
|
|
2618
|
-
export { default as
|
|
2619
|
+
// TicketSlash aliases
|
|
2620
|
+
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2619
2621
|
// TicketsPlane aliases
|
|
2620
2622
|
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2623
|
+
// Ticket aliases
|
|
2624
|
+
export { default as TicketIcon } from '../icons/ticket';
|
|
2621
2625
|
// Tickets aliases
|
|
2622
2626
|
export { default as TicketsIcon } from '../icons/tickets';
|
|
2623
2627
|
// TimerOff aliases
|
|
2624
2628
|
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2625
2629
|
// TimerReset aliases
|
|
2626
2630
|
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2627
|
-
// ToggleLeft aliases
|
|
2628
|
-
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2629
2631
|
// Timer aliases
|
|
2630
2632
|
export { default as TimerIcon } from '../icons/timer';
|
|
2631
|
-
//
|
|
2632
|
-
export { default as
|
|
2633
|
+
// ToggleLeft aliases
|
|
2634
|
+
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2633
2635
|
// Toilet aliases
|
|
2634
2636
|
export { default as ToiletIcon } from '../icons/toilet';
|
|
2635
|
-
//
|
|
2636
|
-
export { default as
|
|
2637
|
+
// ToggleRight aliases
|
|
2638
|
+
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2637
2639
|
// ToolCase aliases
|
|
2638
2640
|
export { default as ToolCaseIcon } from '../icons/tool-case';
|
|
2641
|
+
// Toolbox aliases
|
|
2642
|
+
export { default as ToolboxIcon } from '../icons/toolbox';
|
|
2639
2643
|
// Torus aliases
|
|
2640
2644
|
export { default as TorusIcon } from '../icons/torus';
|
|
2641
2645
|
// Tornado aliases
|
|
@@ -2656,10 +2660,10 @@ export { default as TractorIcon } from '../icons/tractor';
|
|
|
2656
2660
|
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2657
2661
|
// TrainFrontTunnel aliases
|
|
2658
2662
|
export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
2659
|
-
// TrainTrack aliases
|
|
2660
|
-
export { default as TrainTrackIcon } from '../icons/train-track';
|
|
2661
2663
|
// TrainFront aliases
|
|
2662
2664
|
export { default as TrainFrontIcon } from '../icons/train-front';
|
|
2665
|
+
// TrainTrack aliases
|
|
2666
|
+
export { default as TrainTrackIcon } from '../icons/train-track';
|
|
2663
2667
|
// Transgender aliases
|
|
2664
2668
|
export { default as TransgenderIcon } from '../icons/transgender';
|
|
2665
2669
|
// Trash2 aliases
|
|
@@ -2668,12 +2672,12 @@ export { default as Trash2Icon } from '../icons/trash-2';
|
|
|
2668
2672
|
export { default as TrashIcon } from '../icons/trash';
|
|
2669
2673
|
// TreeDeciduous aliases
|
|
2670
2674
|
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2675
|
+
// Trello aliases
|
|
2676
|
+
export { default as TrelloIcon } from '../icons/trello';
|
|
2671
2677
|
// TreePine aliases
|
|
2672
2678
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2673
2679
|
// Trees aliases
|
|
2674
2680
|
export { default as TreesIcon } from '../icons/trees';
|
|
2675
|
-
// Trello aliases
|
|
2676
|
-
export { default as TrelloIcon } from '../icons/trello';
|
|
2677
2681
|
// TrendingDown aliases
|
|
2678
2682
|
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2679
2683
|
// TrendingUpDown aliases
|
|
@@ -2688,10 +2692,10 @@ export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
|
2688
2692
|
export { default as TriangleIcon } from '../icons/triangle';
|
|
2689
2693
|
// Trophy aliases
|
|
2690
2694
|
export { default as TrophyIcon } from '../icons/trophy';
|
|
2691
|
-
// TruckElectric aliases
|
|
2692
|
-
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2693
2695
|
// Truck aliases
|
|
2694
2696
|
export { default as TruckIcon } from '../icons/truck';
|
|
2697
|
+
// TruckElectric aliases
|
|
2698
|
+
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2695
2699
|
// TurkishLira aliases
|
|
2696
2700
|
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2697
2701
|
// Turntable aliases
|
|
@@ -2708,10 +2712,10 @@ export { default as TwitchIcon } from '../icons/twitch';
|
|
|
2708
2712
|
export { default as TwitterIcon } from '../icons/twitter';
|
|
2709
2713
|
// TypeOutline aliases
|
|
2710
2714
|
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2711
|
-
// Type aliases
|
|
2712
|
-
export { default as TypeIcon } from '../icons/type';
|
|
2713
2715
|
// UmbrellaOff aliases
|
|
2714
2716
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2717
|
+
// Type aliases
|
|
2718
|
+
export { default as TypeIcon } from '../icons/type';
|
|
2715
2719
|
// Umbrella aliases
|
|
2716
2720
|
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2717
2721
|
// Underline aliases
|
|
@@ -2720,10 +2724,10 @@ export { default as UnderlineIcon } from '../icons/underline';
|
|
|
2720
2724
|
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2721
2725
|
// UndoDot aliases
|
|
2722
2726
|
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2723
|
-
// UnfoldHorizontal aliases
|
|
2724
|
-
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2725
2727
|
// Undo aliases
|
|
2726
2728
|
export { default as UndoIcon } from '../icons/undo';
|
|
2729
|
+
// UnfoldHorizontal aliases
|
|
2730
|
+
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2727
2731
|
// UnfoldVertical aliases
|
|
2728
2732
|
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2729
2733
|
// Ungroup aliases
|
|
@@ -2738,10 +2742,10 @@ export { default as UnplugIcon } from '../icons/unplug';
|
|
|
2738
2742
|
export { default as UploadIcon } from '../icons/upload';
|
|
2739
2743
|
// Usb aliases
|
|
2740
2744
|
export { default as UsbIcon } from '../icons/usb';
|
|
2741
|
-
// UserCog aliases
|
|
2742
|
-
export { default as UserCogIcon } from '../icons/user-cog';
|
|
2743
2745
|
// UserCheck aliases
|
|
2744
2746
|
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2747
|
+
// UserCog aliases
|
|
2748
|
+
export { default as UserCogIcon } from '../icons/user-cog';
|
|
2745
2749
|
// UserKey aliases
|
|
2746
2750
|
export { default as UserKeyIcon } from '../icons/user-key';
|
|
2747
2751
|
// UserLock aliases
|
|
@@ -2756,30 +2760,30 @@ export { default as UserPlusIcon } from '../icons/user-plus';
|
|
|
2756
2760
|
export { default as UserRoundKeyIcon } from '../icons/user-round-key';
|
|
2757
2761
|
// UserRoundPen aliases
|
|
2758
2762
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2759
|
-
// UserRoundSearch aliases
|
|
2760
|
-
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2761
2763
|
// UserSearch aliases
|
|
2762
2764
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2763
2765
|
// UserStar aliases
|
|
2764
2766
|
export { default as UserStarIcon } from '../icons/user-star';
|
|
2765
|
-
//
|
|
2766
|
-
export { default as
|
|
2767
|
+
// UserRoundSearch aliases
|
|
2768
|
+
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2767
2769
|
// UserX aliases
|
|
2768
2770
|
export { default as UserXIcon } from '../icons/user-x';
|
|
2769
|
-
//
|
|
2770
|
-
export { default as
|
|
2771
|
+
// User aliases
|
|
2772
|
+
export { default as UserIcon } from '../icons/user';
|
|
2771
2773
|
// UtilityPole aliases
|
|
2772
2774
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2773
|
-
//
|
|
2774
|
-
export { default as
|
|
2775
|
+
// Users aliases
|
|
2776
|
+
export { default as UsersIcon } from '../icons/users';
|
|
2775
2777
|
// Variable aliases
|
|
2776
2778
|
export { default as VariableIcon } from '../icons/variable';
|
|
2779
|
+
// Van aliases
|
|
2780
|
+
export { default as VanIcon } from '../icons/van';
|
|
2777
2781
|
// Vault aliases
|
|
2778
2782
|
export { default as VaultIcon } from '../icons/vault';
|
|
2779
|
-
// Vegan aliases
|
|
2780
|
-
export { default as VeganIcon } from '../icons/vegan';
|
|
2781
2783
|
// VectorSquare aliases
|
|
2782
2784
|
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2785
|
+
// Vegan aliases
|
|
2786
|
+
export { default as VeganIcon } from '../icons/vegan';
|
|
2783
2787
|
// VenusAndMars aliases
|
|
2784
2788
|
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2785
2789
|
// VenetianMask aliases
|
|
@@ -2792,48 +2796,48 @@ export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
|
2792
2796
|
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2793
2797
|
// VideoOff aliases
|
|
2794
2798
|
export { default as VideoOffIcon } from '../icons/video-off';
|
|
2795
|
-
// Video aliases
|
|
2796
|
-
export { default as VideoIcon } from '../icons/video';
|
|
2797
2799
|
// Videotape aliases
|
|
2798
2800
|
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2799
|
-
//
|
|
2800
|
-
export { default as
|
|
2801
|
+
// Video aliases
|
|
2802
|
+
export { default as VideoIcon } from '../icons/video';
|
|
2801
2803
|
// View aliases
|
|
2802
2804
|
export { default as ViewIcon } from '../icons/view';
|
|
2805
|
+
// Voicemail aliases
|
|
2806
|
+
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2803
2807
|
// Volleyball aliases
|
|
2804
2808
|
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2805
|
-
// Volume2 aliases
|
|
2806
|
-
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2807
2809
|
// Volume1 aliases
|
|
2808
2810
|
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2811
|
+
// Volume2 aliases
|
|
2812
|
+
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2809
2813
|
// VolumeOff aliases
|
|
2810
2814
|
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2811
2815
|
// VolumeX aliases
|
|
2812
2816
|
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2813
2817
|
// Volume aliases
|
|
2814
2818
|
export { default as VolumeIcon } from '../icons/volume';
|
|
2815
|
-
// WalletCards aliases
|
|
2816
|
-
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2817
2819
|
// Vote aliases
|
|
2818
2820
|
export { default as VoteIcon } from '../icons/vote';
|
|
2819
|
-
//
|
|
2820
|
-
export { default as
|
|
2821
|
+
// WalletCards aliases
|
|
2822
|
+
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2821
2823
|
// Wallet aliases
|
|
2822
2824
|
export { default as WalletIcon } from '../icons/wallet';
|
|
2823
|
-
//
|
|
2824
|
-
export { default as
|
|
2825
|
+
// Wallpaper aliases
|
|
2826
|
+
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2825
2827
|
// Wand aliases
|
|
2826
2828
|
export { default as WandIcon } from '../icons/wand';
|
|
2829
|
+
// Warehouse aliases
|
|
2830
|
+
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2827
2831
|
// WashingMachine aliases
|
|
2828
2832
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2829
2833
|
// Watch aliases
|
|
2830
2834
|
export { default as WatchIcon } from '../icons/watch';
|
|
2835
|
+
// WavesArrowDown aliases
|
|
2836
|
+
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2831
2837
|
// WavesArrowUp aliases
|
|
2832
2838
|
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2833
2839
|
// WavesLadder aliases
|
|
2834
2840
|
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2835
|
-
// WavesArrowDown aliases
|
|
2836
|
-
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2837
2841
|
// Waves aliases
|
|
2838
2842
|
export { default as WavesIcon } from '../icons/waves';
|
|
2839
2843
|
// Waypoints aliases
|
|
@@ -2850,18 +2854,18 @@ export { default as WeightTildeIcon } from '../icons/weight-tilde';
|
|
|
2850
2854
|
export { default as WeightIcon } from '../icons/weight';
|
|
2851
2855
|
// WheatOff aliases
|
|
2852
2856
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2853
|
-
// Wheat aliases
|
|
2854
|
-
export { default as WheatIcon } from '../icons/wheat';
|
|
2855
2857
|
// WholeWord aliases
|
|
2856
2858
|
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2859
|
+
// Wheat aliases
|
|
2860
|
+
export { default as WheatIcon } from '../icons/wheat';
|
|
2857
2861
|
// WifiCog aliases
|
|
2858
2862
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2863
|
+
// WifiHigh aliases
|
|
2864
|
+
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2859
2865
|
// WifiLow aliases
|
|
2860
2866
|
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2861
2867
|
// WifiOff aliases
|
|
2862
2868
|
export { default as WifiOffIcon } from '../icons/wifi-off';
|
|
2863
|
-
// WifiHigh aliases
|
|
2864
|
-
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2865
2869
|
// WifiPen aliases
|
|
2866
2870
|
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2867
2871
|
// WifiSync aliases
|
|
@@ -2870,14 +2874,14 @@ export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
|
2870
2874
|
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2871
2875
|
// Wifi aliases
|
|
2872
2876
|
export { default as WifiIcon } from '../icons/wifi';
|
|
2873
|
-
// Wind aliases
|
|
2874
|
-
export { default as WindIcon } from '../icons/wind';
|
|
2875
2877
|
// WindArrowDown aliases
|
|
2876
2878
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2877
|
-
//
|
|
2878
|
-
export { default as
|
|
2879
|
+
// Wind aliases
|
|
2880
|
+
export { default as WindIcon } from '../icons/wind';
|
|
2879
2881
|
// WineOff aliases
|
|
2880
2882
|
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2883
|
+
// Wine aliases
|
|
2884
|
+
export { default as WineIcon } from '../icons/wine';
|
|
2881
2885
|
// Workflow aliases
|
|
2882
2886
|
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2883
2887
|
// Worm aliases
|
|
@@ -2886,18 +2890,44 @@ export { default as WormIcon } from '../icons/worm';
|
|
|
2886
2890
|
export { default as WrenchIcon } from '../icons/wrench';
|
|
2887
2891
|
// XLineTop aliases
|
|
2888
2892
|
export { default as XLineTopIcon } from '../icons/x-line-top';
|
|
2889
|
-
// Youtube aliases
|
|
2890
|
-
export { default as YoutubeIcon } from '../icons/youtube';
|
|
2891
2893
|
// X aliases
|
|
2892
2894
|
export { default as XIcon } from '../icons/x';
|
|
2895
|
+
// Youtube aliases
|
|
2896
|
+
export { default as YoutubeIcon } from '../icons/youtube';
|
|
2893
2897
|
// ZapOff aliases
|
|
2894
2898
|
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2899
|
+
// Zap aliases
|
|
2900
|
+
export { default as ZapIcon } from '../icons/zap';
|
|
2901
|
+
// ZodiacAquarius aliases
|
|
2902
|
+
export { default as ZodiacAquariusIcon } from '../icons/zodiac-aquarius';
|
|
2903
|
+
// ZodiacAries aliases
|
|
2904
|
+
export { default as ZodiacAriesIcon } from '../icons/zodiac-aries';
|
|
2905
|
+
// ZodiacCancer aliases
|
|
2906
|
+
export { default as ZodiacCancerIcon } from '../icons/zodiac-cancer';
|
|
2907
|
+
// ZodiacCapricorn aliases
|
|
2908
|
+
export { default as ZodiacCapricornIcon } from '../icons/zodiac-capricorn';
|
|
2909
|
+
// ZodiacGemini aliases
|
|
2910
|
+
export { default as ZodiacGeminiIcon } from '../icons/zodiac-gemini';
|
|
2911
|
+
// ZodiacLeo aliases
|
|
2912
|
+
export { default as ZodiacLeoIcon } from '../icons/zodiac-leo';
|
|
2913
|
+
// ZodiacLibra aliases
|
|
2914
|
+
export { default as ZodiacLibraIcon } from '../icons/zodiac-libra';
|
|
2915
|
+
// ZodiacOphiuchus aliases
|
|
2916
|
+
export { default as ZodiacOphiuchusIcon } from '../icons/zodiac-ophiuchus';
|
|
2917
|
+
// ZodiacPisces aliases
|
|
2918
|
+
export { default as ZodiacPiscesIcon } from '../icons/zodiac-pisces';
|
|
2919
|
+
// ZodiacSagittarius aliases
|
|
2920
|
+
export { default as ZodiacSagittariusIcon } from '../icons/zodiac-sagittarius';
|
|
2921
|
+
// ZodiacScorpio aliases
|
|
2922
|
+
export { default as ZodiacScorpioIcon } from '../icons/zodiac-scorpio';
|
|
2923
|
+
// ZodiacVirgo aliases
|
|
2924
|
+
export { default as ZodiacVirgoIcon } from '../icons/zodiac-virgo';
|
|
2925
|
+
// ZodiacTaurus aliases
|
|
2926
|
+
export { default as ZodiacTaurusIcon } from '../icons/zodiac-taurus';
|
|
2895
2927
|
// ZoomIn aliases
|
|
2896
2928
|
export { default as ZoomInIcon } from '../icons/zoom-in';
|
|
2897
2929
|
// ZoomOut aliases
|
|
2898
2930
|
export { default as ZoomOutIcon } from '../icons/zoom-out';
|
|
2899
|
-
// Zap aliases
|
|
2900
|
-
export { default as ZapIcon } from '../icons/zap';
|
|
2901
2931
|
// ArrowDown01 aliases
|
|
2902
2932
|
export { default as ArrowDown01Icon } from '../icons/arrow-down-0-1';
|
|
2903
2933
|
// ArrowDown10 aliases
|
|
@@ -2906,24 +2936,24 @@ export { default as ArrowDown10Icon } from '../icons/arrow-down-1-0';
|
|
|
2906
2936
|
export { default as ArrowUp01Icon } from '../icons/arrow-up-0-1';
|
|
2907
2937
|
// ArrowUp10 aliases
|
|
2908
2938
|
export { default as ArrowUp10Icon } from '../icons/arrow-up-1-0';
|
|
2909
|
-
//
|
|
2910
|
-
export { default as
|
|
2939
|
+
// AlarmClockMinus aliases
|
|
2940
|
+
export { default as AlarmClockMinusIcon } from '../icons/alarm-clock-minus';
|
|
2911
2941
|
export {
|
|
2912
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
2913
|
-
default as
|
|
2914
|
-
} from '../icons/alarm-clock-
|
|
2942
|
+
/** @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 */
|
|
2943
|
+
default as AlarmMinusIcon
|
|
2944
|
+
} from '../icons/alarm-clock-minus';
|
|
2915
2945
|
// AlarmClockPlus aliases
|
|
2916
2946
|
export { default as AlarmClockPlusIcon } from '../icons/alarm-clock-plus';
|
|
2917
2947
|
export {
|
|
2918
2948
|
/** @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 */
|
|
2919
2949
|
default as AlarmPlusIcon
|
|
2920
2950
|
} from '../icons/alarm-clock-plus';
|
|
2921
|
-
//
|
|
2922
|
-
export { default as
|
|
2951
|
+
// AlarmClockCheck aliases
|
|
2952
|
+
export { default as AlarmClockCheckIcon } from '../icons/alarm-clock-check';
|
|
2923
2953
|
export {
|
|
2924
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
2925
|
-
default as
|
|
2926
|
-
} from '../icons/alarm-clock-
|
|
2954
|
+
/** @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 */
|
|
2955
|
+
default as AlarmCheckIcon
|
|
2956
|
+
} from '../icons/alarm-clock-check';
|
|
2927
2957
|
// ArrowDownAZ aliases
|
|
2928
2958
|
export { default as ArrowDownAZIcon } from '../icons/arrow-down-a-z';
|
|
2929
2959
|
export {
|
|
@@ -2954,54 +2984,54 @@ export {
|
|
|
2954
2984
|
/** @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 */
|
|
2955
2985
|
default as SortAscIcon
|
|
2956
2986
|
} from '../icons/arrow-up-narrow-wide';
|
|
2957
|
-
// Axis3d aliases
|
|
2958
|
-
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2959
|
-
export {
|
|
2960
|
-
/** @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 */
|
|
2961
|
-
default as Axis3DIcon
|
|
2962
|
-
} from '../icons/axis-3d';
|
|
2963
2987
|
// ArrowUpZA aliases
|
|
2964
2988
|
export { default as ArrowUpZAIcon } from '../icons/arrow-up-z-a';
|
|
2965
2989
|
export {
|
|
2966
2990
|
/** @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 */
|
|
2967
2991
|
default as ArrowUpZaIcon
|
|
2968
2992
|
} from '../icons/arrow-up-z-a';
|
|
2993
|
+
// Axis3d aliases
|
|
2994
|
+
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2995
|
+
export {
|
|
2996
|
+
/** @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 */
|
|
2997
|
+
default as Axis3DIcon
|
|
2998
|
+
} from '../icons/axis-3d';
|
|
2969
2999
|
// BadgeCheck aliases
|
|
2970
3000
|
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
2971
3001
|
export {
|
|
2972
3002
|
/** @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 */
|
|
2973
3003
|
default as VerifiedIcon
|
|
2974
3004
|
} from '../icons/badge-check';
|
|
2975
|
-
// BetweenHorizontalEnd aliases
|
|
2976
|
-
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
2977
|
-
export {
|
|
2978
|
-
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
2979
|
-
default as BetweenHorizonalEndIcon
|
|
2980
|
-
} from '../icons/between-horizontal-end';
|
|
2981
3005
|
// BadgeQuestionMark aliases
|
|
2982
3006
|
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
2983
3007
|
export {
|
|
2984
3008
|
/** @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 */
|
|
2985
3009
|
default as BadgeHelpIcon
|
|
2986
3010
|
} from '../icons/badge-question-mark';
|
|
3011
|
+
// BetweenHorizontalEnd aliases
|
|
3012
|
+
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
3013
|
+
export {
|
|
3014
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
3015
|
+
default as BetweenHorizonalEndIcon
|
|
3016
|
+
} from '../icons/between-horizontal-end';
|
|
2987
3017
|
// BetweenHorizontalStart aliases
|
|
2988
3018
|
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
2989
3019
|
export {
|
|
2990
3020
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
2991
3021
|
default as BetweenHorizonalStartIcon
|
|
2992
3022
|
} from '../icons/between-horizontal-start';
|
|
2993
|
-
// Braces aliases
|
|
2994
|
-
export { default as BracesIcon } from '../icons/braces';
|
|
2995
|
-
export {
|
|
2996
|
-
/** @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 */
|
|
2997
|
-
default as CurlyBracesIcon
|
|
2998
|
-
} from '../icons/braces';
|
|
2999
3023
|
// BookDashed aliases
|
|
3000
3024
|
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
3001
3025
|
export {
|
|
3002
3026
|
/** @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 */
|
|
3003
3027
|
default as BookTemplateIcon
|
|
3004
3028
|
} from '../icons/book-dashed';
|
|
3029
|
+
// Braces aliases
|
|
3030
|
+
export { default as BracesIcon } from '../icons/braces';
|
|
3031
|
+
export {
|
|
3032
|
+
/** @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 */
|
|
3033
|
+
default as CurlyBracesIcon
|
|
3034
|
+
} from '../icons/braces';
|
|
3005
3035
|
// Captions aliases
|
|
3006
3036
|
export { default as CaptionsIcon } from '../icons/captions';
|
|
3007
3037
|
export {
|
|
@@ -3014,12 +3044,6 @@ export {
|
|
|
3014
3044
|
/** @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 */
|
|
3015
3045
|
default as AreaChartIcon
|
|
3016
3046
|
} from '../icons/chart-area';
|
|
3017
|
-
// ChartBarBig aliases
|
|
3018
|
-
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
3019
|
-
export {
|
|
3020
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
3021
|
-
default as BarChartHorizontalBigIcon
|
|
3022
|
-
} from '../icons/chart-bar-big';
|
|
3023
3047
|
// ChartBar aliases
|
|
3024
3048
|
export { default as ChartBarIcon } from '../icons/chart-bar';
|
|
3025
3049
|
export {
|
|
@@ -3032,6 +3056,12 @@ export {
|
|
|
3032
3056
|
/** @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 */
|
|
3033
3057
|
default as CandlestickChartIcon
|
|
3034
3058
|
} from '../icons/chart-candlestick';
|
|
3059
|
+
// ChartBarBig aliases
|
|
3060
|
+
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
3061
|
+
export {
|
|
3062
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
3063
|
+
default as BarChartHorizontalBigIcon
|
|
3064
|
+
} from '../icons/chart-bar-big';
|
|
3035
3065
|
// ChartColumnBig aliases
|
|
3036
3066
|
export { default as ChartColumnBigIcon } from '../icons/chart-column-big';
|
|
3037
3067
|
export {
|
|
@@ -3044,12 +3074,6 @@ export {
|
|
|
3044
3074
|
/** @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 */
|
|
3045
3075
|
default as BarChart4Icon
|
|
3046
3076
|
} from '../icons/chart-column-increasing';
|
|
3047
|
-
// ChartLine aliases
|
|
3048
|
-
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3049
|
-
export {
|
|
3050
|
-
/** @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 */
|
|
3051
|
-
default as LineChartIcon
|
|
3052
|
-
} from '../icons/chart-line';
|
|
3053
3077
|
// ChartColumn aliases
|
|
3054
3078
|
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3055
3079
|
export {
|
|
@@ -3074,24 +3098,30 @@ export {
|
|
|
3074
3098
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
3075
3099
|
default as GanttChartIcon
|
|
3076
3100
|
} from '../icons/chart-no-axes-gantt';
|
|
3101
|
+
// ChartLine aliases
|
|
3102
|
+
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3103
|
+
export {
|
|
3104
|
+
/** @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 */
|
|
3105
|
+
default as LineChartIcon
|
|
3106
|
+
} from '../icons/chart-line';
|
|
3077
3107
|
// ChartPie aliases
|
|
3078
3108
|
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3079
3109
|
export {
|
|
3080
3110
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
3081
3111
|
default as PieChartIcon
|
|
3082
3112
|
} from '../icons/chart-pie';
|
|
3083
|
-
// Chromium aliases
|
|
3084
|
-
export { default as ChromiumIcon } from '../icons/chromium';
|
|
3085
|
-
export {
|
|
3086
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Chromium} instead. This alias will be removed in v1.0 */
|
|
3087
|
-
default as ChromeIcon
|
|
3088
|
-
} from '../icons/chromium';
|
|
3089
3113
|
// ChartScatter aliases
|
|
3090
3114
|
export { default as ChartScatterIcon } from '../icons/chart-scatter';
|
|
3091
3115
|
export {
|
|
3092
3116
|
/** @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 */
|
|
3093
3117
|
default as ScatterChartIcon
|
|
3094
3118
|
} from '../icons/chart-scatter';
|
|
3119
|
+
// Chromium aliases
|
|
3120
|
+
export { default as ChromiumIcon } from '../icons/chromium';
|
|
3121
|
+
export {
|
|
3122
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Chromium} instead. This alias will be removed in v1.0 */
|
|
3123
|
+
default as ChromeIcon
|
|
3124
|
+
} from '../icons/chromium';
|
|
3095
3125
|
// CircleAlert aliases
|
|
3096
3126
|
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3097
3127
|
export {
|
|
@@ -3104,18 +3134,18 @@ export {
|
|
|
3104
3134
|
/** @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 */
|
|
3105
3135
|
default as ArrowDownCircleIcon
|
|
3106
3136
|
} from '../icons/circle-arrow-down';
|
|
3107
|
-
// CircleArrowOutDownLeft aliases
|
|
3108
|
-
export { default as CircleArrowOutDownLeftIcon } from '../icons/circle-arrow-out-down-left';
|
|
3109
|
-
export {
|
|
3110
|
-
/** @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 */
|
|
3111
|
-
default as ArrowDownLeftFromCircleIcon
|
|
3112
|
-
} from '../icons/circle-arrow-out-down-left';
|
|
3113
3137
|
// CircleArrowLeft aliases
|
|
3114
3138
|
export { default as CircleArrowLeftIcon } from '../icons/circle-arrow-left';
|
|
3115
3139
|
export {
|
|
3116
3140
|
/** @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 */
|
|
3117
3141
|
default as ArrowLeftCircleIcon
|
|
3118
3142
|
} from '../icons/circle-arrow-left';
|
|
3143
|
+
// CircleArrowOutDownLeft aliases
|
|
3144
|
+
export { default as CircleArrowOutDownLeftIcon } from '../icons/circle-arrow-out-down-left';
|
|
3145
|
+
export {
|
|
3146
|
+
/** @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 */
|
|
3147
|
+
default as ArrowDownLeftFromCircleIcon
|
|
3148
|
+
} from '../icons/circle-arrow-out-down-left';
|
|
3119
3149
|
// CircleArrowOutDownRight aliases
|
|
3120
3150
|
export { default as CircleArrowOutDownRightIcon } from '../icons/circle-arrow-out-down-right';
|
|
3121
3151
|
export {
|
|
@@ -3158,54 +3188,54 @@ export {
|
|
|
3158
3188
|
/** @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 */
|
|
3159
3189
|
default as CheckCircle2Icon
|
|
3160
3190
|
} from '../icons/circle-check';
|
|
3161
|
-
// CircleChevronDown aliases
|
|
3162
|
-
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3163
|
-
export {
|
|
3164
|
-
/** @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 */
|
|
3165
|
-
default as ChevronDownCircleIcon
|
|
3166
|
-
} from '../icons/circle-chevron-down';
|
|
3167
3191
|
// CircleChevronLeft aliases
|
|
3168
3192
|
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3169
3193
|
export {
|
|
3170
3194
|
/** @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 */
|
|
3171
3195
|
default as ChevronLeftCircleIcon
|
|
3172
3196
|
} from '../icons/circle-chevron-left';
|
|
3197
|
+
// CircleChevronDown aliases
|
|
3198
|
+
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3199
|
+
export {
|
|
3200
|
+
/** @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 */
|
|
3201
|
+
default as ChevronDownCircleIcon
|
|
3202
|
+
} from '../icons/circle-chevron-down';
|
|
3173
3203
|
// CircleChevronRight aliases
|
|
3174
3204
|
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3175
3205
|
export {
|
|
3176
3206
|
/** @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 */
|
|
3177
3207
|
default as ChevronRightCircleIcon
|
|
3178
3208
|
} from '../icons/circle-chevron-right';
|
|
3179
|
-
// CircleDivide aliases
|
|
3180
|
-
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3181
|
-
export {
|
|
3182
|
-
/** @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 */
|
|
3183
|
-
default as DivideCircleIcon
|
|
3184
|
-
} from '../icons/circle-divide';
|
|
3185
3209
|
// CircleChevronUp aliases
|
|
3186
3210
|
export { default as CircleChevronUpIcon } from '../icons/circle-chevron-up';
|
|
3187
3211
|
export {
|
|
3188
3212
|
/** @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 */
|
|
3189
3213
|
default as ChevronUpCircleIcon
|
|
3190
3214
|
} from '../icons/circle-chevron-up';
|
|
3215
|
+
// CircleDivide aliases
|
|
3216
|
+
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3217
|
+
export {
|
|
3218
|
+
/** @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 */
|
|
3219
|
+
default as DivideCircleIcon
|
|
3220
|
+
} from '../icons/circle-divide';
|
|
3191
3221
|
// CircleGauge aliases
|
|
3192
3222
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3193
3223
|
export {
|
|
3194
3224
|
/** @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 */
|
|
3195
3225
|
default as GaugeCircleIcon
|
|
3196
3226
|
} from '../icons/circle-gauge';
|
|
3197
|
-
// CircleParkingOff aliases
|
|
3198
|
-
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3199
|
-
export {
|
|
3200
|
-
/** @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 */
|
|
3201
|
-
default as ParkingCircleOffIcon
|
|
3202
|
-
} from '../icons/circle-parking-off';
|
|
3203
3227
|
// CircleMinus aliases
|
|
3204
3228
|
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3205
3229
|
export {
|
|
3206
3230
|
/** @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 */
|
|
3207
3231
|
default as MinusCircleIcon
|
|
3208
3232
|
} from '../icons/circle-minus';
|
|
3233
|
+
// CircleParkingOff aliases
|
|
3234
|
+
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3235
|
+
export {
|
|
3236
|
+
/** @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 */
|
|
3237
|
+
default as ParkingCircleOffIcon
|
|
3238
|
+
} from '../icons/circle-parking-off';
|
|
3209
3239
|
// CircleParking aliases
|
|
3210
3240
|
export { default as CircleParkingIcon } from '../icons/circle-parking';
|
|
3211
3241
|
export {
|
|
@@ -3242,6 +3272,12 @@ export {
|
|
|
3242
3272
|
/** @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 */
|
|
3243
3273
|
default as PowerCircleIcon
|
|
3244
3274
|
} from '../icons/circle-power';
|
|
3275
|
+
// CircleSlash2 aliases
|
|
3276
|
+
export { default as CircleSlash2Icon } from '../icons/circle-slash-2';
|
|
3277
|
+
export {
|
|
3278
|
+
/** @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 */
|
|
3279
|
+
default as CircleSlashedIcon
|
|
3280
|
+
} from '../icons/circle-slash-2';
|
|
3245
3281
|
// CircleQuestionMark aliases
|
|
3246
3282
|
export { default as CircleQuestionMarkIcon } from '../icons/circle-question-mark';
|
|
3247
3283
|
export {
|
|
@@ -3252,12 +3288,6 @@ export {
|
|
|
3252
3288
|
/** @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 */
|
|
3253
3289
|
default as CircleHelpIcon
|
|
3254
3290
|
} from '../icons/circle-question-mark';
|
|
3255
|
-
// CircleSlash2 aliases
|
|
3256
|
-
export { default as CircleSlash2Icon } from '../icons/circle-slash-2';
|
|
3257
|
-
export {
|
|
3258
|
-
/** @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 */
|
|
3259
|
-
default as CircleSlashedIcon
|
|
3260
|
-
} from '../icons/circle-slash-2';
|
|
3261
3291
|
// CircleStop aliases
|
|
3262
3292
|
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3263
3293
|
export {
|
|
@@ -3270,6 +3300,12 @@ export {
|
|
|
3270
3300
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. This alias will be removed in v1.0 */
|
|
3271
3301
|
default as UserCircle2Icon
|
|
3272
3302
|
} from '../icons/circle-user-round';
|
|
3303
|
+
// CircleX aliases
|
|
3304
|
+
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3305
|
+
export {
|
|
3306
|
+
/** @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 */
|
|
3307
|
+
default as XCircleIcon
|
|
3308
|
+
} from '../icons/circle-x';
|
|
3273
3309
|
// CircleUser aliases
|
|
3274
3310
|
export { default as CircleUserIcon } from '../icons/circle-user';
|
|
3275
3311
|
export {
|
|
@@ -3282,30 +3318,18 @@ export {
|
|
|
3282
3318
|
/** @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 */
|
|
3283
3319
|
default as ClipboardSignatureIcon
|
|
3284
3320
|
} from '../icons/clipboard-pen-line';
|
|
3285
|
-
// CircleX aliases
|
|
3286
|
-
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3287
|
-
export {
|
|
3288
|
-
/** @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 */
|
|
3289
|
-
default as XCircleIcon
|
|
3290
|
-
} from '../icons/circle-x';
|
|
3291
|
-
// ClipboardPen aliases
|
|
3292
|
-
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3293
|
-
export {
|
|
3294
|
-
/** @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 */
|
|
3295
|
-
default as ClipboardEditIcon
|
|
3296
|
-
} from '../icons/clipboard-pen';
|
|
3297
3321
|
// CloudDownload aliases
|
|
3298
3322
|
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3299
3323
|
export {
|
|
3300
3324
|
/** @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 */
|
|
3301
3325
|
default as DownloadCloudIcon
|
|
3302
3326
|
} from '../icons/cloud-download';
|
|
3303
|
-
//
|
|
3304
|
-
export { default as
|
|
3327
|
+
// ClipboardPen aliases
|
|
3328
|
+
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3305
3329
|
export {
|
|
3306
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3307
|
-
default as
|
|
3308
|
-
} from '../icons/
|
|
3330
|
+
/** @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 */
|
|
3331
|
+
default as ClipboardEditIcon
|
|
3332
|
+
} from '../icons/clipboard-pen';
|
|
3309
3333
|
// CodeXml aliases
|
|
3310
3334
|
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3311
3335
|
export {
|
|
@@ -3318,6 +3342,12 @@ export {
|
|
|
3318
3342
|
/** @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 */
|
|
3319
3343
|
default as ColumnsIcon
|
|
3320
3344
|
} from '../icons/columns-2';
|
|
3345
|
+
// CloudUpload aliases
|
|
3346
|
+
export { default as CloudUploadIcon } from '../icons/cloud-upload';
|
|
3347
|
+
export {
|
|
3348
|
+
/** @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 */
|
|
3349
|
+
default as UploadCloudIcon
|
|
3350
|
+
} from '../icons/cloud-upload';
|
|
3321
3351
|
// Columns3Cog aliases
|
|
3322
3352
|
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3323
3353
|
export {
|
|
@@ -3328,30 +3358,24 @@ export {
|
|
|
3328
3358
|
/** @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 */
|
|
3329
3359
|
default as TableConfigIcon
|
|
3330
3360
|
} from '../icons/columns-3-cog';
|
|
3331
|
-
// Columns3 aliases
|
|
3332
|
-
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3333
|
-
export {
|
|
3334
|
-
/** @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 */
|
|
3335
|
-
default as PanelsLeftRightIcon
|
|
3336
|
-
} from '../icons/columns-3';
|
|
3337
3361
|
// ContactRound aliases
|
|
3338
3362
|
export { default as ContactRoundIcon } from '../icons/contact-round';
|
|
3339
3363
|
export {
|
|
3340
3364
|
/** @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 */
|
|
3341
3365
|
default as Contact2Icon
|
|
3342
3366
|
} from '../icons/contact-round';
|
|
3367
|
+
// Columns3 aliases
|
|
3368
|
+
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3369
|
+
export {
|
|
3370
|
+
/** @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 */
|
|
3371
|
+
default as PanelsLeftRightIcon
|
|
3372
|
+
} from '../icons/columns-3';
|
|
3343
3373
|
// DiamondPercent aliases
|
|
3344
3374
|
export { default as DiamondPercentIcon } from '../icons/diamond-percent';
|
|
3345
3375
|
export {
|
|
3346
3376
|
/** @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 */
|
|
3347
3377
|
default as PercentDiamondIcon
|
|
3348
3378
|
} from '../icons/diamond-percent';
|
|
3349
|
-
// Earth aliases
|
|
3350
|
-
export { default as EarthIcon } from '../icons/earth';
|
|
3351
|
-
export {
|
|
3352
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
3353
|
-
default as Globe2Icon
|
|
3354
|
-
} from '../icons/earth';
|
|
3355
3379
|
// EllipsisVertical aliases
|
|
3356
3380
|
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3357
3381
|
export {
|
|
@@ -3364,6 +3388,12 @@ export {
|
|
|
3364
3388
|
/** @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 */
|
|
3365
3389
|
default as MoreHorizontalIcon
|
|
3366
3390
|
} from '../icons/ellipsis';
|
|
3391
|
+
// Earth aliases
|
|
3392
|
+
export { default as EarthIcon } from '../icons/earth';
|
|
3393
|
+
export {
|
|
3394
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
3395
|
+
default as Globe2Icon
|
|
3396
|
+
} from '../icons/earth';
|
|
3367
3397
|
// FileAxis3d aliases
|
|
3368
3398
|
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3369
3399
|
export {
|
|
@@ -3400,36 +3430,42 @@ export {
|
|
|
3400
3430
|
/** @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 */
|
|
3401
3431
|
default as FileBarChart2Icon
|
|
3402
3432
|
} from '../icons/file-chart-column';
|
|
3403
|
-
// FileChartLine aliases
|
|
3404
|
-
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3405
|
-
export {
|
|
3406
|
-
/** @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 */
|
|
3407
|
-
default as FileLineChartIcon
|
|
3408
|
-
} from '../icons/file-chart-line';
|
|
3409
3433
|
// FileChartPie aliases
|
|
3410
3434
|
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3411
3435
|
export {
|
|
3412
3436
|
/** @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 */
|
|
3413
3437
|
default as FilePieChartIcon
|
|
3414
3438
|
} from '../icons/file-chart-pie';
|
|
3415
|
-
// FileCodeCorner aliases
|
|
3416
|
-
export { default as FileCodeCornerIcon } from '../icons/file-code-corner';
|
|
3417
|
-
export {
|
|
3418
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. This alias will be removed in v1.0 */
|
|
3419
|
-
default as FileCode2Icon
|
|
3420
|
-
} from '../icons/file-code-corner';
|
|
3421
3439
|
// FileCheckCorner aliases
|
|
3422
3440
|
export { default as FileCheckCornerIcon } from '../icons/file-check-corner';
|
|
3423
3441
|
export {
|
|
3424
3442
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. This alias will be removed in v1.0 */
|
|
3425
3443
|
default as FileCheck2Icon
|
|
3426
3444
|
} from '../icons/file-check-corner';
|
|
3445
|
+
// FileChartLine aliases
|
|
3446
|
+
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3447
|
+
export {
|
|
3448
|
+
/** @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 */
|
|
3449
|
+
default as FileLineChartIcon
|
|
3450
|
+
} from '../icons/file-chart-line';
|
|
3451
|
+
// FileCodeCorner aliases
|
|
3452
|
+
export { default as FileCodeCornerIcon } from '../icons/file-code-corner';
|
|
3453
|
+
export {
|
|
3454
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. This alias will be removed in v1.0 */
|
|
3455
|
+
default as FileCode2Icon
|
|
3456
|
+
} from '../icons/file-code-corner';
|
|
3427
3457
|
// FileCog aliases
|
|
3428
3458
|
export { default as FileCogIcon } from '../icons/file-cog';
|
|
3429
3459
|
export {
|
|
3430
3460
|
/** @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 */
|
|
3431
3461
|
default as FileCog2Icon
|
|
3432
3462
|
} from '../icons/file-cog';
|
|
3463
|
+
// FileExclamationPoint aliases
|
|
3464
|
+
export { default as FileExclamationPointIcon } from '../icons/file-exclamation-point';
|
|
3465
|
+
export {
|
|
3466
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. This alias will be removed in v1.0 */
|
|
3467
|
+
default as FileWarningIcon
|
|
3468
|
+
} from '../icons/file-exclamation-point';
|
|
3433
3469
|
// FileHeadphone aliases
|
|
3434
3470
|
export { default as FileHeadphoneIcon } from '../icons/file-headphone';
|
|
3435
3471
|
export {
|
|
@@ -3446,12 +3482,12 @@ export {
|
|
|
3446
3482
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. This alias will be removed in v1.0 */
|
|
3447
3483
|
default as FileKey2Icon
|
|
3448
3484
|
} from '../icons/file-key';
|
|
3449
|
-
//
|
|
3450
|
-
export { default as
|
|
3485
|
+
// FileLock aliases
|
|
3486
|
+
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3451
3487
|
export {
|
|
3452
|
-
/** @deprecated The
|
|
3453
|
-
default as
|
|
3454
|
-
} from '../icons/file-
|
|
3488
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. This alias will be removed in v1.0 */
|
|
3489
|
+
default as FileLock2Icon
|
|
3490
|
+
} from '../icons/file-lock';
|
|
3455
3491
|
// FileMinusCorner aliases
|
|
3456
3492
|
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3457
3493
|
export {
|
|
@@ -3464,24 +3500,18 @@ export {
|
|
|
3464
3500
|
/** @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 */
|
|
3465
3501
|
default as FileSignatureIcon
|
|
3466
3502
|
} from '../icons/file-pen-line';
|
|
3467
|
-
//
|
|
3468
|
-
export { default as
|
|
3503
|
+
// FilePen aliases
|
|
3504
|
+
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3469
3505
|
export {
|
|
3470
|
-
/** @deprecated The icon was
|
|
3471
|
-
default as
|
|
3472
|
-
} from '../icons/file-
|
|
3506
|
+
/** @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 */
|
|
3507
|
+
default as FileEditIcon
|
|
3508
|
+
} from '../icons/file-pen';
|
|
3473
3509
|
// FilePlay aliases
|
|
3474
3510
|
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3475
3511
|
export {
|
|
3476
3512
|
/** @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 */
|
|
3477
3513
|
default as FileVideoIcon
|
|
3478
3514
|
} from '../icons/file-play';
|
|
3479
|
-
// FilePen aliases
|
|
3480
|
-
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3481
|
-
export {
|
|
3482
|
-
/** @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 */
|
|
3483
|
-
default as FileEditIcon
|
|
3484
|
-
} from '../icons/file-pen';
|
|
3485
3515
|
// FilePlusCorner aliases
|
|
3486
3516
|
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3487
3517
|
export {
|
|
@@ -3512,30 +3542,36 @@ export {
|
|
|
3512
3542
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
3513
3543
|
default as FileType2Icon
|
|
3514
3544
|
} from '../icons/file-type-corner';
|
|
3545
|
+
// FileVideoCamera aliases
|
|
3546
|
+
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3547
|
+
export {
|
|
3548
|
+
/** @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 */
|
|
3549
|
+
default as FileVideo2Icon
|
|
3550
|
+
} from '../icons/file-video-camera';
|
|
3515
3551
|
// FileXCorner aliases
|
|
3516
3552
|
export { default as FileXCornerIcon } from '../icons/file-x-corner';
|
|
3517
3553
|
export {
|
|
3518
3554
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. This alias will be removed in v1.0 */
|
|
3519
3555
|
default as FileX2Icon
|
|
3520
3556
|
} from '../icons/file-x-corner';
|
|
3557
|
+
// FingerprintPattern aliases
|
|
3558
|
+
export { default as FingerprintPatternIcon } from '../icons/fingerprint-pattern';
|
|
3559
|
+
export {
|
|
3560
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. This alias will be removed in v1.0 */
|
|
3561
|
+
default as FingerprintIcon
|
|
3562
|
+
} from '../icons/fingerprint-pattern';
|
|
3521
3563
|
// FolderCog aliases
|
|
3522
3564
|
export { default as FolderCogIcon } from '../icons/folder-cog';
|
|
3523
3565
|
export {
|
|
3524
3566
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
|
|
3525
3567
|
default as FolderCog2Icon
|
|
3526
3568
|
} from '../icons/folder-cog';
|
|
3527
|
-
//
|
|
3528
|
-
export { default as
|
|
3529
|
-
export {
|
|
3530
|
-
/** @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 */
|
|
3531
|
-
default as FileVideo2Icon
|
|
3532
|
-
} from '../icons/file-video-camera';
|
|
3533
|
-
// FingerprintPattern aliases
|
|
3534
|
-
export { default as FingerprintPatternIcon } from '../icons/fingerprint-pattern';
|
|
3569
|
+
// FolderPen aliases
|
|
3570
|
+
export { default as FolderPenIcon } from '../icons/folder-pen';
|
|
3535
3571
|
export {
|
|
3536
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3537
|
-
default as
|
|
3538
|
-
} from '../icons/
|
|
3572
|
+
/** @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 */
|
|
3573
|
+
default as FolderEditIcon
|
|
3574
|
+
} from '../icons/folder-pen';
|
|
3539
3575
|
// FunnelX aliases
|
|
3540
3576
|
export { default as FunnelXIcon } from '../icons/funnel-x';
|
|
3541
3577
|
export {
|
|
@@ -3548,24 +3584,18 @@ export {
|
|
|
3548
3584
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
3549
3585
|
default as FilterIcon
|
|
3550
3586
|
} from '../icons/funnel';
|
|
3551
|
-
//
|
|
3552
|
-
export { default as
|
|
3587
|
+
// GitCommitHorizontal aliases
|
|
3588
|
+
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3553
3589
|
export {
|
|
3554
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3555
|
-
default as
|
|
3556
|
-
} from '../icons/
|
|
3590
|
+
/** @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 */
|
|
3591
|
+
default as GitCommitIcon
|
|
3592
|
+
} from '../icons/git-commit-horizontal';
|
|
3557
3593
|
// Grid2x2Check aliases
|
|
3558
3594
|
export { default as Grid2x2CheckIcon } from '../icons/grid-2x2-check';
|
|
3559
3595
|
export {
|
|
3560
3596
|
/** @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 */
|
|
3561
3597
|
default as Grid2X2CheckIcon
|
|
3562
3598
|
} from '../icons/grid-2x2-check';
|
|
3563
|
-
// GitCommitHorizontal aliases
|
|
3564
|
-
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3565
|
-
export {
|
|
3566
|
-
/** @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 */
|
|
3567
|
-
default as GitCommitIcon
|
|
3568
|
-
} from '../icons/git-commit-horizontal';
|
|
3569
3599
|
// Grid2x2Plus aliases
|
|
3570
3600
|
export { default as Grid2x2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3571
3601
|
export {
|
|
@@ -3578,6 +3608,12 @@ export {
|
|
|
3578
3608
|
/** @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 */
|
|
3579
3609
|
default as Grid2X2XIcon
|
|
3580
3610
|
} from '../icons/grid-2x2-x';
|
|
3611
|
+
// Grid2x2 aliases
|
|
3612
|
+
export { default as Grid2x2Icon } from '../icons/grid-2x2';
|
|
3613
|
+
export {
|
|
3614
|
+
/** @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 */
|
|
3615
|
+
default as Grid2X2Icon
|
|
3616
|
+
} from '../icons/grid-2x2';
|
|
3581
3617
|
// Grid3x3 aliases
|
|
3582
3618
|
export { default as Grid3x3Icon } from '../icons/grid-3x3';
|
|
3583
3619
|
export {
|
|
@@ -3588,48 +3624,48 @@ export {
|
|
|
3588
3624
|
/** @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 */
|
|
3589
3625
|
default as Grid3X3Icon
|
|
3590
3626
|
} from '../icons/grid-3x3';
|
|
3591
|
-
// Grid2x2 aliases
|
|
3592
|
-
export { default as Grid2x2Icon } from '../icons/grid-2x2';
|
|
3593
|
-
export {
|
|
3594
|
-
/** @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 */
|
|
3595
|
-
default as Grid2X2Icon
|
|
3596
|
-
} from '../icons/grid-2x2';
|
|
3597
3627
|
// HandGrab aliases
|
|
3598
3628
|
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3599
3629
|
export {
|
|
3600
3630
|
/** @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 */
|
|
3601
3631
|
default as GrabIcon
|
|
3602
3632
|
} from '../icons/hand-grab';
|
|
3603
|
-
// House aliases
|
|
3604
|
-
export { default as HouseIcon } from '../icons/house';
|
|
3605
|
-
export {
|
|
3606
|
-
/** @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 */
|
|
3607
|
-
default as HomeIcon
|
|
3608
|
-
} from '../icons/house';
|
|
3609
3633
|
// HandHelping aliases
|
|
3610
3634
|
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3611
3635
|
export {
|
|
3612
3636
|
/** @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 */
|
|
3613
3637
|
default as HelpingHandIcon
|
|
3614
3638
|
} from '../icons/hand-helping';
|
|
3615
|
-
//
|
|
3616
|
-
export { default as
|
|
3639
|
+
// House aliases
|
|
3640
|
+
export { default as HouseIcon } from '../icons/house';
|
|
3617
3641
|
export {
|
|
3618
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3619
|
-
default as
|
|
3620
|
-
} from '../icons/
|
|
3642
|
+
/** @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 */
|
|
3643
|
+
default as HomeIcon
|
|
3644
|
+
} from '../icons/house';
|
|
3621
3645
|
// LaptopMinimal aliases
|
|
3622
3646
|
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3623
3647
|
export {
|
|
3624
3648
|
/** @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 */
|
|
3625
3649
|
default as Laptop2Icon
|
|
3626
3650
|
} from '../icons/laptop-minimal';
|
|
3651
|
+
// IceCreamBowl aliases
|
|
3652
|
+
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3653
|
+
export {
|
|
3654
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
3655
|
+
default as IceCream2Icon
|
|
3656
|
+
} from '../icons/ice-cream-bowl';
|
|
3627
3657
|
// IceCreamCone aliases
|
|
3628
3658
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3629
3659
|
export {
|
|
3630
3660
|
/** @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 */
|
|
3631
3661
|
default as IceCreamIcon
|
|
3632
3662
|
} from '../icons/ice-cream-cone';
|
|
3663
|
+
// Layers aliases
|
|
3664
|
+
export { default as LayersIcon } from '../icons/layers';
|
|
3665
|
+
export {
|
|
3666
|
+
/** @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 */
|
|
3667
|
+
default as Layers3Icon
|
|
3668
|
+
} from '../icons/layers';
|
|
3633
3669
|
// ListIndentDecrease aliases
|
|
3634
3670
|
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3635
3671
|
export {
|
|
@@ -3640,12 +3676,12 @@ export {
|
|
|
3640
3676
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
3641
3677
|
default as IndentDecreaseIcon
|
|
3642
3678
|
} from '../icons/list-indent-decrease';
|
|
3643
|
-
//
|
|
3644
|
-
export { default as
|
|
3679
|
+
// LoaderCircle aliases
|
|
3680
|
+
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3645
3681
|
export {
|
|
3646
|
-
/** @deprecated The icon was
|
|
3647
|
-
default as
|
|
3648
|
-
} from '../icons/
|
|
3682
|
+
/** @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 */
|
|
3683
|
+
default as Loader2Icon
|
|
3684
|
+
} from '../icons/loader-circle';
|
|
3649
3685
|
// ListIndentIncrease aliases
|
|
3650
3686
|
export { default as ListIndentIncreaseIcon } from '../icons/list-indent-increase';
|
|
3651
3687
|
export {
|
|
@@ -3656,30 +3692,24 @@ export {
|
|
|
3656
3692
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. This alias will be removed in v1.0 */
|
|
3657
3693
|
default as IndentIncreaseIcon
|
|
3658
3694
|
} from '../icons/list-indent-increase';
|
|
3659
|
-
// LoaderCircle aliases
|
|
3660
|
-
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3661
|
-
export {
|
|
3662
|
-
/** @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 */
|
|
3663
|
-
default as Loader2Icon
|
|
3664
|
-
} from '../icons/loader-circle';
|
|
3665
3695
|
// LockKeyholeOpen aliases
|
|
3666
3696
|
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3667
3697
|
export {
|
|
3668
3698
|
/** @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 */
|
|
3669
3699
|
default as UnlockKeyholeIcon
|
|
3670
3700
|
} from '../icons/lock-keyhole-open';
|
|
3671
|
-
// LockOpen aliases
|
|
3672
|
-
export { default as LockOpenIcon } from '../icons/lock-open';
|
|
3673
|
-
export {
|
|
3674
|
-
/** @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 */
|
|
3675
|
-
default as UnlockIcon
|
|
3676
|
-
} from '../icons/lock-open';
|
|
3677
3701
|
// MailQuestionMark aliases
|
|
3678
3702
|
export { default as MailQuestionMarkIcon } from '../icons/mail-question-mark';
|
|
3679
3703
|
export {
|
|
3680
3704
|
/** @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 */
|
|
3681
3705
|
default as MailQuestionIcon
|
|
3682
3706
|
} from '../icons/mail-question-mark';
|
|
3707
|
+
// LockOpen aliases
|
|
3708
|
+
export { default as LockOpenIcon } from '../icons/lock-open';
|
|
3709
|
+
export {
|
|
3710
|
+
/** @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 */
|
|
3711
|
+
default as UnlockIcon
|
|
3712
|
+
} from '../icons/lock-open';
|
|
3683
3713
|
// MapPinPen aliases
|
|
3684
3714
|
export { default as MapPinPenIcon } from '../icons/map-pin-pen';
|
|
3685
3715
|
export {
|
|
@@ -3722,18 +3752,18 @@ export {
|
|
|
3722
3752
|
/** @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 */
|
|
3723
3753
|
default as XOctagonIcon
|
|
3724
3754
|
} from '../icons/octagon-x';
|
|
3725
|
-
// PanelBottomDashed aliases
|
|
3726
|
-
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3727
|
-
export {
|
|
3728
|
-
/** @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 */
|
|
3729
|
-
default as PanelBottomInactiveIcon
|
|
3730
|
-
} from '../icons/panel-bottom-dashed';
|
|
3731
3755
|
// PaintbrushVertical aliases
|
|
3732
3756
|
export { default as PaintbrushVerticalIcon } from '../icons/paintbrush-vertical';
|
|
3733
3757
|
export {
|
|
3734
3758
|
/** @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 */
|
|
3735
3759
|
default as Paintbrush2Icon
|
|
3736
3760
|
} from '../icons/paintbrush-vertical';
|
|
3761
|
+
// PanelBottomDashed aliases
|
|
3762
|
+
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3763
|
+
export {
|
|
3764
|
+
/** @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 */
|
|
3765
|
+
default as PanelBottomInactiveIcon
|
|
3766
|
+
} from '../icons/panel-bottom-dashed';
|
|
3737
3767
|
// PanelLeftClose aliases
|
|
3738
3768
|
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3739
3769
|
export {
|
|
@@ -3746,24 +3776,24 @@ export {
|
|
|
3746
3776
|
/** @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 */
|
|
3747
3777
|
default as SidebarOpenIcon
|
|
3748
3778
|
} from '../icons/panel-left-open';
|
|
3749
|
-
//
|
|
3750
|
-
export { default as
|
|
3779
|
+
// PanelLeft aliases
|
|
3780
|
+
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3751
3781
|
export {
|
|
3752
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3753
|
-
default as
|
|
3754
|
-
} from '../icons/panel-
|
|
3782
|
+
/** @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 */
|
|
3783
|
+
default as SidebarIcon
|
|
3784
|
+
} from '../icons/panel-left';
|
|
3755
3785
|
// PanelLeftDashed aliases
|
|
3756
3786
|
export { default as PanelLeftDashedIcon } from '../icons/panel-left-dashed';
|
|
3757
3787
|
export {
|
|
3758
3788
|
/** @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 */
|
|
3759
3789
|
default as PanelLeftInactiveIcon
|
|
3760
3790
|
} from '../icons/panel-left-dashed';
|
|
3761
|
-
//
|
|
3762
|
-
export { default as
|
|
3791
|
+
// PanelRightDashed aliases
|
|
3792
|
+
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3763
3793
|
export {
|
|
3764
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3765
|
-
default as
|
|
3766
|
-
} from '../icons/panel-
|
|
3794
|
+
/** @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 */
|
|
3795
|
+
default as PanelRightInactiveIcon
|
|
3796
|
+
} from '../icons/panel-right-dashed';
|
|
3767
3797
|
// PanelTopDashed aliases
|
|
3768
3798
|
export { default as PanelTopDashedIcon } from '../icons/panel-top-dashed';
|
|
3769
3799
|
export {
|
|
@@ -3782,18 +3812,18 @@ export {
|
|
|
3782
3812
|
/** @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 */
|
|
3783
3813
|
default as Edit3Icon
|
|
3784
3814
|
} from '../icons/pen-line';
|
|
3785
|
-
// PlugZap aliases
|
|
3786
|
-
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3787
|
-
export {
|
|
3788
|
-
/** @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 */
|
|
3789
|
-
default as PlugZap2Icon
|
|
3790
|
-
} from '../icons/plug-zap';
|
|
3791
3815
|
// Pen aliases
|
|
3792
3816
|
export { default as PenIcon } from '../icons/pen';
|
|
3793
3817
|
export {
|
|
3794
3818
|
/** @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 */
|
|
3795
3819
|
default as Edit2Icon
|
|
3796
3820
|
} from '../icons/pen';
|
|
3821
|
+
// PlugZap aliases
|
|
3822
|
+
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3823
|
+
export {
|
|
3824
|
+
/** @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 */
|
|
3825
|
+
default as PlugZap2Icon
|
|
3826
|
+
} from '../icons/plug-zap';
|
|
3797
3827
|
// RectangleEllipsis aliases
|
|
3798
3828
|
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3799
3829
|
export {
|
|
@@ -3860,30 +3890,30 @@ export {
|
|
|
3860
3890
|
/** @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 */
|
|
3861
3891
|
default as ActivitySquareIcon
|
|
3862
3892
|
} from '../icons/square-activity';
|
|
3863
|
-
// SquareArrowDownRight aliases
|
|
3864
|
-
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
3865
|
-
export {
|
|
3866
|
-
/** @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 */
|
|
3867
|
-
default as ArrowDownRightSquareIcon
|
|
3868
|
-
} from '../icons/square-arrow-down-right';
|
|
3869
3893
|
// SquareArrowDownLeft aliases
|
|
3870
3894
|
export { default as SquareArrowDownLeftIcon } from '../icons/square-arrow-down-left';
|
|
3871
3895
|
export {
|
|
3872
3896
|
/** @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 */
|
|
3873
3897
|
default as ArrowDownLeftSquareIcon
|
|
3874
3898
|
} from '../icons/square-arrow-down-left';
|
|
3875
|
-
//
|
|
3876
|
-
export { default as
|
|
3899
|
+
// SquareArrowDownRight aliases
|
|
3900
|
+
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
3877
3901
|
export {
|
|
3878
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3879
|
-
default as
|
|
3880
|
-
} from '../icons/square-arrow-down';
|
|
3902
|
+
/** @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 */
|
|
3903
|
+
default as ArrowDownRightSquareIcon
|
|
3904
|
+
} from '../icons/square-arrow-down-right';
|
|
3881
3905
|
// SquareArrowLeft aliases
|
|
3882
3906
|
export { default as SquareArrowLeftIcon } from '../icons/square-arrow-left';
|
|
3883
3907
|
export {
|
|
3884
3908
|
/** @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 */
|
|
3885
3909
|
default as ArrowLeftSquareIcon
|
|
3886
3910
|
} from '../icons/square-arrow-left';
|
|
3911
|
+
// SquareArrowDown aliases
|
|
3912
|
+
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3913
|
+
export {
|
|
3914
|
+
/** @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 */
|
|
3915
|
+
default as ArrowDownSquareIcon
|
|
3916
|
+
} from '../icons/square-arrow-down';
|
|
3887
3917
|
// SquareArrowOutDownLeft aliases
|
|
3888
3918
|
export { default as SquareArrowOutDownLeftIcon } from '../icons/square-arrow-out-down-left';
|
|
3889
3919
|
export {
|
|
@@ -3908,30 +3938,30 @@ export {
|
|
|
3908
3938
|
/** @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 */
|
|
3909
3939
|
default as ArrowUpRightFromSquareIcon
|
|
3910
3940
|
} from '../icons/square-arrow-out-up-right';
|
|
3911
|
-
// SquareArrowRight aliases
|
|
3912
|
-
export { default as SquareArrowRightIcon } from '../icons/square-arrow-right';
|
|
3913
|
-
export {
|
|
3914
|
-
/** @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 */
|
|
3915
|
-
default as ArrowRightSquareIcon
|
|
3916
|
-
} from '../icons/square-arrow-right';
|
|
3917
|
-
// SquareArrowUpRight aliases
|
|
3918
|
-
export { default as SquareArrowUpRightIcon } from '../icons/square-arrow-up-right';
|
|
3919
|
-
export {
|
|
3920
|
-
/** @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 */
|
|
3921
|
-
default as ArrowUpRightSquareIcon
|
|
3922
|
-
} from '../icons/square-arrow-up-right';
|
|
3923
3941
|
// SquareArrowUpLeft aliases
|
|
3924
3942
|
export { default as SquareArrowUpLeftIcon } from '../icons/square-arrow-up-left';
|
|
3925
3943
|
export {
|
|
3926
3944
|
/** @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 */
|
|
3927
3945
|
default as ArrowUpLeftSquareIcon
|
|
3928
3946
|
} from '../icons/square-arrow-up-left';
|
|
3947
|
+
// SquareArrowRight aliases
|
|
3948
|
+
export { default as SquareArrowRightIcon } from '../icons/square-arrow-right';
|
|
3949
|
+
export {
|
|
3950
|
+
/** @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 */
|
|
3951
|
+
default as ArrowRightSquareIcon
|
|
3952
|
+
} from '../icons/square-arrow-right';
|
|
3929
3953
|
// SquareArrowUp aliases
|
|
3930
3954
|
export { default as SquareArrowUpIcon } from '../icons/square-arrow-up';
|
|
3931
3955
|
export {
|
|
3932
3956
|
/** @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 */
|
|
3933
3957
|
default as ArrowUpSquareIcon
|
|
3934
3958
|
} from '../icons/square-arrow-up';
|
|
3959
|
+
// SquareArrowUpRight aliases
|
|
3960
|
+
export { default as SquareArrowUpRightIcon } from '../icons/square-arrow-up-right';
|
|
3961
|
+
export {
|
|
3962
|
+
/** @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 */
|
|
3963
|
+
default as ArrowUpRightSquareIcon
|
|
3964
|
+
} from '../icons/square-arrow-up-right';
|
|
3935
3965
|
// SquareAsterisk aliases
|
|
3936
3966
|
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3937
3967
|
export {
|
|
@@ -3944,12 +3974,6 @@ export {
|
|
|
3944
3974
|
/** @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 */
|
|
3945
3975
|
default as ScissorsSquareDashedBottomIcon
|
|
3946
3976
|
} from '../icons/square-bottom-dashed-scissors';
|
|
3947
|
-
// SquareCenterlineDashedHorizontal aliases
|
|
3948
|
-
export { default as SquareCenterlineDashedHorizontalIcon } from '../icons/square-centerline-dashed-horizontal';
|
|
3949
|
-
export {
|
|
3950
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. This alias will be removed in v1.0 */
|
|
3951
|
-
default as FlipHorizontalIcon
|
|
3952
|
-
} from '../icons/square-centerline-dashed-horizontal';
|
|
3953
3977
|
// SquareCenterlineDashedVertical aliases
|
|
3954
3978
|
export { default as SquareCenterlineDashedVerticalIcon } from '../icons/square-centerline-dashed-vertical';
|
|
3955
3979
|
export {
|
|
@@ -3966,6 +3990,12 @@ export {
|
|
|
3966
3990
|
/** @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 */
|
|
3967
3991
|
default as SquareGanttChartIcon
|
|
3968
3992
|
} from '../icons/square-chart-gantt';
|
|
3993
|
+
// SquareCenterlineDashedHorizontal aliases
|
|
3994
|
+
export { default as SquareCenterlineDashedHorizontalIcon } from '../icons/square-centerline-dashed-horizontal';
|
|
3995
|
+
export {
|
|
3996
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. This alias will be removed in v1.0 */
|
|
3997
|
+
default as FlipHorizontalIcon
|
|
3998
|
+
} from '../icons/square-centerline-dashed-horizontal';
|
|
3969
3999
|
// SquareCheckBig aliases
|
|
3970
4000
|
export { default as SquareCheckBigIcon } from '../icons/square-check-big';
|
|
3971
4001
|
export {
|
|
@@ -3978,24 +4008,30 @@ export {
|
|
|
3978
4008
|
/** @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 */
|
|
3979
4009
|
default as CheckSquare2Icon
|
|
3980
4010
|
} from '../icons/square-check';
|
|
3981
|
-
// SquareChevronLeft aliases
|
|
3982
|
-
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
3983
|
-
export {
|
|
3984
|
-
/** @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 */
|
|
3985
|
-
default as ChevronLeftSquareIcon
|
|
3986
|
-
} from '../icons/square-chevron-left';
|
|
3987
4011
|
// SquareChevronDown aliases
|
|
3988
4012
|
export { default as SquareChevronDownIcon } from '../icons/square-chevron-down';
|
|
3989
4013
|
export {
|
|
3990
4014
|
/** @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 */
|
|
3991
4015
|
default as ChevronDownSquareIcon
|
|
3992
4016
|
} from '../icons/square-chevron-down';
|
|
4017
|
+
// SquareChevronLeft aliases
|
|
4018
|
+
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
4019
|
+
export {
|
|
4020
|
+
/** @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 */
|
|
4021
|
+
default as ChevronLeftSquareIcon
|
|
4022
|
+
} from '../icons/square-chevron-left';
|
|
3993
4023
|
// SquareChevronRight aliases
|
|
3994
4024
|
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
3995
4025
|
export {
|
|
3996
4026
|
/** @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 */
|
|
3997
4027
|
default as ChevronRightSquareIcon
|
|
3998
4028
|
} from '../icons/square-chevron-right';
|
|
4029
|
+
// SquareCode aliases
|
|
4030
|
+
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
4031
|
+
export {
|
|
4032
|
+
/** @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 */
|
|
4033
|
+
default as CodeSquareIcon
|
|
4034
|
+
} from '../icons/square-code';
|
|
3999
4035
|
// SquareChevronUp aliases
|
|
4000
4036
|
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
4001
4037
|
export {
|
|
@@ -4008,24 +4044,12 @@ export {
|
|
|
4008
4044
|
/** @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 */
|
|
4009
4045
|
default as KanbanSquareDashedIcon
|
|
4010
4046
|
} from '../icons/square-dashed-kanban';
|
|
4011
|
-
// SquareCode aliases
|
|
4012
|
-
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
4013
|
-
export {
|
|
4014
|
-
/** @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 */
|
|
4015
|
-
default as CodeSquareIcon
|
|
4016
|
-
} from '../icons/square-code';
|
|
4017
4047
|
// SquareDashedMousePointer aliases
|
|
4018
4048
|
export { default as SquareDashedMousePointerIcon } from '../icons/square-dashed-mouse-pointer';
|
|
4019
4049
|
export {
|
|
4020
4050
|
/** @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 */
|
|
4021
4051
|
default as MousePointerSquareDashedIcon
|
|
4022
4052
|
} from '../icons/square-dashed-mouse-pointer';
|
|
4023
|
-
// SquareDivide aliases
|
|
4024
|
-
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
4025
|
-
export {
|
|
4026
|
-
/** @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 */
|
|
4027
|
-
default as DivideSquareIcon
|
|
4028
|
-
} from '../icons/square-divide';
|
|
4029
4053
|
// SquareDashed aliases
|
|
4030
4054
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
4031
4055
|
export {
|
|
@@ -4038,6 +4062,12 @@ export {
|
|
|
4038
4062
|
/** @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 */
|
|
4039
4063
|
default as DotSquareIcon
|
|
4040
4064
|
} from '../icons/square-dot';
|
|
4065
|
+
// SquareDivide aliases
|
|
4066
|
+
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
4067
|
+
export {
|
|
4068
|
+
/** @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 */
|
|
4069
|
+
default as DivideSquareIcon
|
|
4070
|
+
} from '../icons/square-divide';
|
|
4041
4071
|
// SquareEqual aliases
|
|
4042
4072
|
export { default as SquareEqualIcon } from '../icons/square-equal';
|
|
4043
4073
|
export {
|
|
@@ -4068,30 +4098,30 @@ export {
|
|
|
4068
4098
|
/** @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 */
|
|
4069
4099
|
default as MSquareIcon
|
|
4070
4100
|
} from '../icons/square-m';
|
|
4071
|
-
// SquareMinus aliases
|
|
4072
|
-
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
4073
|
-
export {
|
|
4074
|
-
/** @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 */
|
|
4075
|
-
default as MinusSquareIcon
|
|
4076
|
-
} from '../icons/square-minus';
|
|
4077
4101
|
// SquareMenu aliases
|
|
4078
4102
|
export { default as SquareMenuIcon } from '../icons/square-menu';
|
|
4079
4103
|
export {
|
|
4080
4104
|
/** @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 */
|
|
4081
4105
|
default as MenuSquareIcon
|
|
4082
4106
|
} from '../icons/square-menu';
|
|
4083
|
-
//
|
|
4084
|
-
export { default as
|
|
4107
|
+
// SquareMinus aliases
|
|
4108
|
+
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
4085
4109
|
export {
|
|
4086
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4087
|
-
default as
|
|
4088
|
-
} from '../icons/square-
|
|
4110
|
+
/** @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 */
|
|
4111
|
+
default as MinusSquareIcon
|
|
4112
|
+
} from '../icons/square-minus';
|
|
4089
4113
|
// SquareMousePointer aliases
|
|
4090
4114
|
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4091
4115
|
export {
|
|
4092
4116
|
/** @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 */
|
|
4093
4117
|
default as InspectIcon
|
|
4094
4118
|
} from '../icons/square-mouse-pointer';
|
|
4119
|
+
// SquareParkingOff aliases
|
|
4120
|
+
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
4121
|
+
export {
|
|
4122
|
+
/** @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 */
|
|
4123
|
+
default as ParkingSquareOffIcon
|
|
4124
|
+
} from '../icons/square-parking-off';
|
|
4095
4125
|
// SquareParking aliases
|
|
4096
4126
|
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
4097
4127
|
export {
|
|
@@ -4112,18 +4142,18 @@ export {
|
|
|
4112
4142
|
/** @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 */
|
|
4113
4143
|
default as PenSquareIcon
|
|
4114
4144
|
} from '../icons/square-pen';
|
|
4115
|
-
// SquarePi aliases
|
|
4116
|
-
export { default as SquarePiIcon } from '../icons/square-pi';
|
|
4117
|
-
export {
|
|
4118
|
-
/** @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 */
|
|
4119
|
-
default as PiSquareIcon
|
|
4120
|
-
} from '../icons/square-pi';
|
|
4121
4145
|
// SquarePercent aliases
|
|
4122
4146
|
export { default as SquarePercentIcon } from '../icons/square-percent';
|
|
4123
4147
|
export {
|
|
4124
4148
|
/** @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 */
|
|
4125
4149
|
default as PercentSquareIcon
|
|
4126
4150
|
} from '../icons/square-percent';
|
|
4151
|
+
// SquarePi aliases
|
|
4152
|
+
export { default as SquarePiIcon } from '../icons/square-pi';
|
|
4153
|
+
export {
|
|
4154
|
+
/** @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 */
|
|
4155
|
+
default as PiSquareIcon
|
|
4156
|
+
} from '../icons/square-pi';
|
|
4127
4157
|
// SquarePilcrow aliases
|
|
4128
4158
|
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4129
4159
|
export {
|
|
@@ -4148,30 +4178,30 @@ export {
|
|
|
4148
4178
|
/** @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 */
|
|
4149
4179
|
default as PowerSquareIcon
|
|
4150
4180
|
} from '../icons/square-power';
|
|
4151
|
-
// SquareSigma aliases
|
|
4152
|
-
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4153
|
-
export {
|
|
4154
|
-
/** @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 */
|
|
4155
|
-
default as SigmaSquareIcon
|
|
4156
|
-
} from '../icons/square-sigma';
|
|
4157
|
-
// SquareSplitHorizontal aliases
|
|
4158
|
-
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4159
|
-
export {
|
|
4160
|
-
/** @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 */
|
|
4161
|
-
default as SplitSquareHorizontalIcon
|
|
4162
|
-
} from '../icons/square-split-horizontal';
|
|
4163
4181
|
// SquareScissors aliases
|
|
4164
4182
|
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4165
4183
|
export {
|
|
4166
4184
|
/** @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 */
|
|
4167
4185
|
default as ScissorsSquareIcon
|
|
4168
4186
|
} from '../icons/square-scissors';
|
|
4187
|
+
// SquareSigma aliases
|
|
4188
|
+
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4189
|
+
export {
|
|
4190
|
+
/** @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 */
|
|
4191
|
+
default as SigmaSquareIcon
|
|
4192
|
+
} from '../icons/square-sigma';
|
|
4169
4193
|
// SquareSlash aliases
|
|
4170
4194
|
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
4171
4195
|
export {
|
|
4172
4196
|
/** @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 */
|
|
4173
4197
|
default as SlashSquareIcon
|
|
4174
4198
|
} from '../icons/square-slash';
|
|
4199
|
+
// SquareSplitHorizontal aliases
|
|
4200
|
+
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4201
|
+
export {
|
|
4202
|
+
/** @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 */
|
|
4203
|
+
default as SplitSquareHorizontalIcon
|
|
4204
|
+
} from '../icons/square-split-horizontal';
|
|
4175
4205
|
// SquareSplitVertical aliases
|
|
4176
4206
|
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4177
4207
|
export {
|
|
@@ -4196,12 +4226,6 @@ export {
|
|
|
4196
4226
|
/** @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 */
|
|
4197
4227
|
default as UserSquareIcon
|
|
4198
4228
|
} from '../icons/square-user';
|
|
4199
|
-
// TestTubeDiagonal aliases
|
|
4200
|
-
export { default as TestTubeDiagonalIcon } from '../icons/test-tube-diagonal';
|
|
4201
|
-
export {
|
|
4202
|
-
/** @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 */
|
|
4203
|
-
default as TestTube2Icon
|
|
4204
|
-
} from '../icons/test-tube-diagonal';
|
|
4205
4229
|
// SquareX aliases
|
|
4206
4230
|
export { default as SquareXIcon } from '../icons/square-x';
|
|
4207
4231
|
export {
|
|
@@ -4214,18 +4238,24 @@ export {
|
|
|
4214
4238
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. This alias will be removed in v1.0 */
|
|
4215
4239
|
default as AlignCenterIcon
|
|
4216
4240
|
} from '../icons/text-align-center';
|
|
4217
|
-
//
|
|
4218
|
-
export { default as
|
|
4241
|
+
// TestTubeDiagonal aliases
|
|
4242
|
+
export { default as TestTubeDiagonalIcon } from '../icons/test-tube-diagonal';
|
|
4219
4243
|
export {
|
|
4220
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4221
|
-
default as
|
|
4222
|
-
} from '../icons/
|
|
4244
|
+
/** @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 */
|
|
4245
|
+
default as TestTube2Icon
|
|
4246
|
+
} from '../icons/test-tube-diagonal';
|
|
4223
4247
|
// TextAlignJustify aliases
|
|
4224
4248
|
export { default as TextAlignJustifyIcon } from '../icons/text-align-justify';
|
|
4225
4249
|
export {
|
|
4226
4250
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|
|
4227
4251
|
default as AlignJustifyIcon
|
|
4228
4252
|
} from '../icons/text-align-justify';
|
|
4253
|
+
// TextAlignEnd aliases
|
|
4254
|
+
export { default as TextAlignEndIcon } from '../icons/text-align-end';
|
|
4255
|
+
export {
|
|
4256
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
4257
|
+
default as AlignRightIcon
|
|
4258
|
+
} from '../icons/text-align-end';
|
|
4229
4259
|
// TextAlignStart aliases
|
|
4230
4260
|
export { default as TextAlignStartIcon } from '../icons/text-align-start';
|
|
4231
4261
|
export {
|
|
@@ -4266,24 +4296,24 @@ export {
|
|
|
4266
4296
|
/** @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 */
|
|
4267
4297
|
default as PalmtreeIcon
|
|
4268
4298
|
} from '../icons/tree-palm';
|
|
4269
|
-
//
|
|
4270
|
-
export { default as
|
|
4299
|
+
// TriangleAlert aliases
|
|
4300
|
+
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4271
4301
|
export {
|
|
4272
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4273
|
-
default as
|
|
4274
|
-
} from '../icons/
|
|
4302
|
+
/** @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 */
|
|
4303
|
+
default as AlertTriangleIcon
|
|
4304
|
+
} from '../icons/triangle-alert';
|
|
4275
4305
|
// TvMinimal aliases
|
|
4276
4306
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
4277
4307
|
export {
|
|
4278
4308
|
/** @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 */
|
|
4279
4309
|
default as Tv2Icon
|
|
4280
4310
|
} from '../icons/tv-minimal';
|
|
4281
|
-
//
|
|
4282
|
-
export { default as
|
|
4311
|
+
// University aliases
|
|
4312
|
+
export { default as UniversityIcon } from '../icons/university';
|
|
4283
4313
|
export {
|
|
4284
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4285
|
-
default as
|
|
4286
|
-
} from '../icons/
|
|
4314
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
4315
|
+
default as School2Icon
|
|
4316
|
+
} from '../icons/university';
|
|
4287
4317
|
// UserRoundCheck aliases
|
|
4288
4318
|
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4289
4319
|
export {
|
|
@@ -4326,28 +4356,28 @@ export {
|
|
|
4326
4356
|
/** @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 */
|
|
4327
4357
|
default as Users2Icon
|
|
4328
4358
|
} from '../icons/users-round';
|
|
4329
|
-
// Utensils aliases
|
|
4330
|
-
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4331
|
-
export {
|
|
4332
|
-
/** @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 */
|
|
4333
|
-
default as ForkKnifeIcon
|
|
4334
|
-
} from '../icons/utensils';
|
|
4335
4359
|
// UtensilsCrossed aliases
|
|
4336
4360
|
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4337
4361
|
export {
|
|
4338
4362
|
/** @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 */
|
|
4339
4363
|
default as ForkKnifeCrossedIcon
|
|
4340
4364
|
} from '../icons/utensils-crossed';
|
|
4341
|
-
// WandSparkles aliases
|
|
4342
|
-
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4343
|
-
export {
|
|
4344
|
-
/** @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 */
|
|
4345
|
-
default as Wand2Icon
|
|
4346
|
-
} from '../icons/wand-sparkles';
|
|
4347
4365
|
// WalletMinimal aliases
|
|
4348
4366
|
export { default as WalletMinimalIcon } from '../icons/wallet-minimal';
|
|
4349
4367
|
export {
|
|
4350
4368
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
4351
4369
|
default as Wallet2Icon
|
|
4352
4370
|
} from '../icons/wallet-minimal';
|
|
4371
|
+
// Utensils aliases
|
|
4372
|
+
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4373
|
+
export {
|
|
4374
|
+
/** @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 */
|
|
4375
|
+
default as ForkKnifeIcon
|
|
4376
|
+
} from '../icons/utensils';
|
|
4377
|
+
// WandSparkles aliases
|
|
4378
|
+
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4379
|
+
export {
|
|
4380
|
+
/** @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 */
|
|
4381
|
+
default as Wand2Icon
|
|
4382
|
+
} from '../icons/wand-sparkles';
|
|
4353
4383
|
|