@lucide/astro 1.0.1 → 1.1.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 +5 -4
- package/src/aliases/aliases.ts +116 -116
- package/src/aliases/prefixed.ts +768 -766
- package/src/aliases/suffixed.ts +1047 -1045
- package/src/icons/arrow-big-down-dash.ts +2 -2
- package/src/icons/arrow-big-down.ts +2 -2
- package/src/icons/arrow-big-left-dash.ts +2 -2
- package/src/icons/arrow-big-left.ts +2 -2
- package/src/icons/arrow-big-right-dash.ts +2 -2
- package/src/icons/arrow-big-right.ts +2 -2
- package/src/icons/arrow-big-up-dash.ts +2 -2
- package/src/icons/arrow-big-up.ts +2 -2
- package/src/icons/circle-user-round.ts +2 -2
- package/src/icons/index.ts +122 -121
- package/src/icons/milestone.ts +2 -2
- package/src/icons/road.ts +18 -0
- package/src/icons/signpost.ts +2 -2
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// AArrowDown aliases
|
|
2
2
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
|
-
// ALargeSmall aliases
|
|
4
|
-
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
5
3
|
// AArrowUp aliases
|
|
6
4
|
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
5
|
+
// ALargeSmall aliases
|
|
6
|
+
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
7
7
|
// Accessibility aliases
|
|
8
8
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
9
9
|
// Activity aliases
|
|
@@ -20,40 +20,40 @@ export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
|
20
20
|
export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
21
21
|
// Album aliases
|
|
22
22
|
export { default as AlbumIcon } from '../icons/album';
|
|
23
|
-
// AlignCenterVertical aliases
|
|
24
|
-
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
25
23
|
// AlignCenterHorizontal aliases
|
|
26
24
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
25
|
+
// AlignCenterVertical aliases
|
|
26
|
+
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
27
|
+
// AlignEndHorizontal aliases
|
|
28
|
+
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
27
29
|
// AlignEndVertical aliases
|
|
28
30
|
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
29
31
|
// AlignHorizontalDistributeCenter aliases
|
|
30
32
|
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
31
|
-
// AlignEndHorizontal aliases
|
|
32
|
-
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
33
33
|
// AlignHorizontalDistributeEnd aliases
|
|
34
34
|
export { default as AlignHorizontalDistributeEndIcon } from '../icons/align-horizontal-distribute-end';
|
|
35
|
+
// AlignHorizontalDistributeStart aliases
|
|
36
|
+
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
35
37
|
// AlignHorizontalJustifyCenter aliases
|
|
36
38
|
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
37
39
|
// AlignHorizontalJustifyEnd aliases
|
|
38
40
|
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
39
|
-
// AlignHorizontalDistributeStart aliases
|
|
40
|
-
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
41
41
|
// AlignHorizontalJustifyStart aliases
|
|
42
42
|
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
43
43
|
// AlignHorizontalSpaceAround aliases
|
|
44
44
|
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
45
|
-
// AlignStartHorizontal aliases
|
|
46
|
-
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
47
45
|
// AlignHorizontalSpaceBetween aliases
|
|
48
46
|
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
47
|
+
// AlignStartHorizontal aliases
|
|
48
|
+
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
49
49
|
// AlignStartVertical aliases
|
|
50
50
|
export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical';
|
|
51
51
|
// AlignVerticalDistributeCenter aliases
|
|
52
52
|
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
53
|
-
// AlignVerticalJustifyCenter aliases
|
|
54
|
-
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
55
53
|
// AlignVerticalDistributeEnd aliases
|
|
56
54
|
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
55
|
+
// AlignVerticalJustifyCenter aliases
|
|
56
|
+
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
57
57
|
// AlignVerticalDistributeStart aliases
|
|
58
58
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
59
59
|
// AlignVerticalJustifyEnd aliases
|
|
@@ -66,56 +66,56 @@ export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical
|
|
|
66
66
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
67
67
|
// Ambulance aliases
|
|
68
68
|
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
69
|
-
// Ampersand aliases
|
|
70
|
-
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
71
69
|
// Ampersands aliases
|
|
72
70
|
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
71
|
+
// Ampersand aliases
|
|
72
|
+
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
73
73
|
// Amphora aliases
|
|
74
74
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
75
|
-
// Anchor aliases
|
|
76
|
-
export { default as AnchorIcon } from '../icons/anchor';
|
|
77
75
|
// Angry aliases
|
|
78
76
|
export { default as AngryIcon } from '../icons/angry';
|
|
77
|
+
// Anchor aliases
|
|
78
|
+
export { default as AnchorIcon } from '../icons/anchor';
|
|
79
79
|
// Antenna aliases
|
|
80
80
|
export { default as AntennaIcon } from '../icons/antenna';
|
|
81
|
+
// Anvil aliases
|
|
82
|
+
export { default as AnvilIcon } from '../icons/anvil';
|
|
81
83
|
// Annoyed aliases
|
|
82
84
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
83
85
|
// Aperture aliases
|
|
84
86
|
export { default as ApertureIcon } from '../icons/aperture';
|
|
85
|
-
// Anvil aliases
|
|
86
|
-
export { default as AnvilIcon } from '../icons/anvil';
|
|
87
|
-
// AppWindowMac aliases
|
|
88
|
-
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
89
87
|
// AppWindow aliases
|
|
90
88
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
91
|
-
//
|
|
92
|
-
export { default as
|
|
89
|
+
// AppWindowMac aliases
|
|
90
|
+
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
93
91
|
// ArchiveRestore aliases
|
|
94
92
|
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
95
|
-
//
|
|
96
|
-
export { default as
|
|
93
|
+
// Apple aliases
|
|
94
|
+
export { default as AppleIcon } from '../icons/apple';
|
|
97
95
|
// ArchiveX aliases
|
|
98
96
|
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
99
|
-
//
|
|
100
|
-
export { default as
|
|
97
|
+
// Archive aliases
|
|
98
|
+
export { default as ArchiveIcon } from '../icons/archive';
|
|
101
99
|
// Armchair aliases
|
|
102
100
|
export { default as ArmchairIcon } from '../icons/armchair';
|
|
101
|
+
// ArrowBigDownDash aliases
|
|
102
|
+
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
103
|
+
// ArrowBigDown aliases
|
|
104
|
+
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
103
105
|
// ArrowBigLeftDash aliases
|
|
104
106
|
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
105
107
|
// ArrowBigLeft aliases
|
|
106
108
|
export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
107
|
-
//
|
|
108
|
-
export { default as
|
|
109
|
+
// ArrowBigRight aliases
|
|
110
|
+
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
109
111
|
// ArrowBigRightDash aliases
|
|
110
112
|
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
111
113
|
// ArrowBigUpDash aliases
|
|
112
114
|
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
113
|
-
// ArrowBigRight aliases
|
|
114
|
-
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
115
|
-
// ArrowDownFromLine aliases
|
|
116
|
-
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
117
115
|
// ArrowBigUp aliases
|
|
118
116
|
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
117
|
+
// ArrowDownFromLine aliases
|
|
118
|
+
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
119
119
|
// ArrowDownLeft aliases
|
|
120
120
|
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
121
121
|
// ArrowDownNarrowWide aliases
|
|
@@ -124,10 +124,10 @@ export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-w
|
|
|
124
124
|
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
125
125
|
// ArrowDownToDot aliases
|
|
126
126
|
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
127
|
-
// ArrowDownUp aliases
|
|
128
|
-
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
129
127
|
// ArrowDownToLine aliases
|
|
130
128
|
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
129
|
+
// ArrowDownUp aliases
|
|
130
|
+
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
131
131
|
// ArrowDown aliases
|
|
132
132
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
133
133
|
// ArrowLeftFromLine aliases
|
|
@@ -140,16 +140,16 @@ export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
|
140
140
|
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
141
141
|
// ArrowRightFromLine aliases
|
|
142
142
|
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
143
|
-
// ArrowRightToLine aliases
|
|
144
|
-
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
145
143
|
// ArrowRightLeft aliases
|
|
146
144
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
147
|
-
//
|
|
148
|
-
export { default as
|
|
145
|
+
// ArrowRightToLine aliases
|
|
146
|
+
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
149
147
|
// ArrowRight aliases
|
|
150
148
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
151
149
|
// ArrowUpFromDot aliases
|
|
152
150
|
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
151
|
+
// ArrowUpDown aliases
|
|
152
|
+
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
153
153
|
// ArrowUpFromLine aliases
|
|
154
154
|
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
155
155
|
// ArrowUpLeft aliases
|
|
@@ -160,30 +160,30 @@ export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
|
160
160
|
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
161
161
|
// ArrowUpWideNarrow aliases
|
|
162
162
|
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
163
|
-
// AtSign aliases
|
|
164
|
-
export { default as AtSignIcon } from '../icons/at-sign';
|
|
165
163
|
// ArrowUp aliases
|
|
166
164
|
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
167
|
-
// ArrowsUpFromLine aliases
|
|
168
|
-
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
169
165
|
// Asterisk aliases
|
|
170
166
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
167
|
+
// ArrowsUpFromLine aliases
|
|
168
|
+
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
169
|
+
// AtSign aliases
|
|
170
|
+
export { default as AtSignIcon } from '../icons/at-sign';
|
|
171
171
|
// Atom aliases
|
|
172
172
|
export { default as AtomIcon } from '../icons/atom';
|
|
173
173
|
// AudioLines aliases
|
|
174
174
|
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
175
175
|
// AudioWaveform aliases
|
|
176
176
|
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
177
|
-
// Axe aliases
|
|
178
|
-
export { default as AxeIcon } from '../icons/axe';
|
|
179
177
|
// Award aliases
|
|
180
178
|
export { default as AwardIcon } from '../icons/award';
|
|
179
|
+
// Axe aliases
|
|
180
|
+
export { default as AxeIcon } from '../icons/axe';
|
|
181
181
|
// Baby aliases
|
|
182
182
|
export { default as BabyIcon } from '../icons/baby';
|
|
183
|
-
// Backpack aliases
|
|
184
|
-
export { default as BackpackIcon } from '../icons/backpack';
|
|
185
183
|
// BadgeAlert aliases
|
|
186
184
|
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
185
|
+
// Backpack aliases
|
|
186
|
+
export { default as BackpackIcon } from '../icons/backpack';
|
|
187
187
|
// BadgeCent aliases
|
|
188
188
|
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
189
189
|
// BadgeDollarSign aliases
|
|
@@ -220,102 +220,102 @@ export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
|
220
220
|
export { default as BalloonIcon } from '../icons/balloon';
|
|
221
221
|
// Ban aliases
|
|
222
222
|
export { default as BanIcon } from '../icons/ban';
|
|
223
|
+
// Bandage aliases
|
|
224
|
+
export { default as BandageIcon } from '../icons/bandage';
|
|
223
225
|
// Banana aliases
|
|
224
226
|
export { default as BananaIcon } from '../icons/banana';
|
|
225
227
|
// BanknoteArrowDown aliases
|
|
226
228
|
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
227
|
-
// Bandage aliases
|
|
228
|
-
export { default as BandageIcon } from '../icons/bandage';
|
|
229
|
-
// BanknoteArrowUp aliases
|
|
230
|
-
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
231
229
|
// BanknoteX aliases
|
|
232
230
|
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
231
|
+
// BanknoteArrowUp aliases
|
|
232
|
+
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
233
|
+
// Banknote aliases
|
|
234
|
+
export { default as BanknoteIcon } from '../icons/banknote';
|
|
233
235
|
// Barcode aliases
|
|
234
236
|
export { default as BarcodeIcon } from '../icons/barcode';
|
|
235
237
|
// Barrel aliases
|
|
236
238
|
export { default as BarrelIcon } from '../icons/barrel';
|
|
237
|
-
// Banknote aliases
|
|
238
|
-
export { default as BanknoteIcon } from '../icons/banknote';
|
|
239
239
|
// Baseline aliases
|
|
240
240
|
export { default as BaselineIcon } from '../icons/baseline';
|
|
241
|
-
// BatteryCharging aliases
|
|
242
|
-
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
243
|
-
// BatteryFull aliases
|
|
244
|
-
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
245
241
|
// Bath aliases
|
|
246
242
|
export { default as BathIcon } from '../icons/bath';
|
|
243
|
+
// BatteryCharging aliases
|
|
244
|
+
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
247
245
|
// BatteryLow aliases
|
|
248
246
|
export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
249
|
-
//
|
|
250
|
-
export { default as
|
|
247
|
+
// BatteryFull aliases
|
|
248
|
+
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
251
249
|
// BatteryPlus aliases
|
|
252
250
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
251
|
+
// BatteryMedium aliases
|
|
252
|
+
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
253
253
|
// BatteryWarning aliases
|
|
254
254
|
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
255
255
|
// Battery aliases
|
|
256
256
|
export { default as BatteryIcon } from '../icons/battery';
|
|
257
|
-
// BeanOff aliases
|
|
258
|
-
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
259
257
|
// Beaker aliases
|
|
260
258
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
259
|
+
// BeanOff aliases
|
|
260
|
+
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
261
261
|
// Bean aliases
|
|
262
262
|
export { default as BeanIcon } from '../icons/bean';
|
|
263
263
|
// BedDouble aliases
|
|
264
264
|
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
265
|
-
// Bed aliases
|
|
266
|
-
export { default as BedIcon } from '../icons/bed';
|
|
267
265
|
// BedSingle aliases
|
|
268
266
|
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
269
267
|
// Beef aliases
|
|
270
268
|
export { default as BeefIcon } from '../icons/beef';
|
|
269
|
+
// Bed aliases
|
|
270
|
+
export { default as BedIcon } from '../icons/bed';
|
|
271
271
|
// BeerOff aliases
|
|
272
272
|
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
273
273
|
// Beer aliases
|
|
274
274
|
export { default as BeerIcon } from '../icons/beer';
|
|
275
|
+
// BellElectric aliases
|
|
276
|
+
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
275
277
|
// BellDot aliases
|
|
276
278
|
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
277
279
|
// BellMinus aliases
|
|
278
280
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
279
|
-
// BellElectric aliases
|
|
280
|
-
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
281
281
|
// BellPlus aliases
|
|
282
282
|
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
283
283
|
// BellOff aliases
|
|
284
284
|
export { default as BellOffIcon } from '../icons/bell-off';
|
|
285
285
|
// BellRing aliases
|
|
286
286
|
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
287
|
-
// BetweenVerticalEnd aliases
|
|
288
|
-
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
289
287
|
// Bell aliases
|
|
290
288
|
export { default as BellIcon } from '../icons/bell';
|
|
289
|
+
// BetweenVerticalEnd aliases
|
|
290
|
+
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
291
291
|
// BetweenVerticalStart aliases
|
|
292
292
|
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
293
293
|
// BicepsFlexed aliases
|
|
294
294
|
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
295
295
|
// Bike aliases
|
|
296
296
|
export { default as BikeIcon } from '../icons/bike';
|
|
297
|
+
// Biohazard aliases
|
|
298
|
+
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
297
299
|
// Binary aliases
|
|
298
300
|
export { default as BinaryIcon } from '../icons/binary';
|
|
299
301
|
// Binoculars aliases
|
|
300
302
|
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
301
|
-
// Biohazard aliases
|
|
302
|
-
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
303
|
-
// Bird aliases
|
|
304
|
-
export { default as BirdIcon } from '../icons/bird';
|
|
305
303
|
// Birdhouse aliases
|
|
306
304
|
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
305
|
+
// Bird aliases
|
|
306
|
+
export { default as BirdIcon } from '../icons/bird';
|
|
307
307
|
// Bitcoin aliases
|
|
308
308
|
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
309
|
-
// Blend aliases
|
|
310
|
-
export { default as BlendIcon } from '../icons/blend';
|
|
311
309
|
// Blinds aliases
|
|
312
310
|
export { default as BlindsIcon } from '../icons/blinds';
|
|
311
|
+
// Blend aliases
|
|
312
|
+
export { default as BlendIcon } from '../icons/blend';
|
|
313
313
|
// Blocks aliases
|
|
314
314
|
export { default as BlocksIcon } from '../icons/blocks';
|
|
315
|
-
// BluetoothConnected aliases
|
|
316
|
-
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
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
|
|
@@ -328,46 +328,46 @@ export { default as BoltIcon } from '../icons/bolt';
|
|
|
328
328
|
export { default as BombIcon } from '../icons/bomb';
|
|
329
329
|
// Bone aliases
|
|
330
330
|
export { default as BoneIcon } from '../icons/bone';
|
|
331
|
+
// BookAlert aliases
|
|
332
|
+
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
331
333
|
// BookA aliases
|
|
332
334
|
export { default as BookAIcon } from '../icons/book-a';
|
|
333
335
|
// BookAudio aliases
|
|
334
336
|
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
335
|
-
// BookAlert aliases
|
|
336
|
-
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
337
|
-
// BookCopy aliases
|
|
338
|
-
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
339
337
|
// BookCheck aliases
|
|
340
338
|
export { default as BookCheckIcon } from '../icons/book-check';
|
|
341
339
|
// BookDown aliases
|
|
342
340
|
export { default as BookDownIcon } from '../icons/book-down';
|
|
343
|
-
//
|
|
344
|
-
export { default as
|
|
341
|
+
// BookCopy aliases
|
|
342
|
+
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
345
343
|
// BookImage aliases
|
|
346
344
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
347
|
-
//
|
|
348
|
-
export { default as
|
|
345
|
+
// BookHeadphones aliases
|
|
346
|
+
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
349
347
|
// BookKey aliases
|
|
350
348
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
351
|
-
//
|
|
352
|
-
export { default as
|
|
349
|
+
// BookHeart aliases
|
|
350
|
+
export { default as BookHeartIcon } from '../icons/book-heart';
|
|
353
351
|
// BookLock aliases
|
|
354
352
|
export { default as BookLockIcon } from '../icons/book-lock';
|
|
353
|
+
// BookMarked aliases
|
|
354
|
+
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
355
355
|
// BookMinus aliases
|
|
356
356
|
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
357
357
|
// BookOpenCheck aliases
|
|
358
358
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
359
|
-
// BookOpen aliases
|
|
360
|
-
export { default as BookOpenIcon } from '../icons/book-open';
|
|
361
359
|
// BookOpenText aliases
|
|
362
360
|
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
361
|
+
// BookOpen aliases
|
|
362
|
+
export { default as BookOpenIcon } from '../icons/book-open';
|
|
363
363
|
// BookPlus aliases
|
|
364
364
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
365
365
|
// BookSearch aliases
|
|
366
366
|
export { default as BookSearchIcon } from '../icons/book-search';
|
|
367
|
-
// BookText aliases
|
|
368
|
-
export { default as BookTextIcon } from '../icons/book-text';
|
|
369
367
|
// BookType aliases
|
|
370
368
|
export { default as BookTypeIcon } from '../icons/book-type';
|
|
369
|
+
// BookText aliases
|
|
370
|
+
export { default as BookTextIcon } from '../icons/book-text';
|
|
371
371
|
// BookUp2 aliases
|
|
372
372
|
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
373
373
|
// BookUp aliases
|
|
@@ -398,32 +398,32 @@ export { default as BotOffIcon } from '../icons/bot-off';
|
|
|
398
398
|
export { default as BotIcon } from '../icons/bot';
|
|
399
399
|
// BottleWine aliases
|
|
400
400
|
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
401
|
-
// BowArrow aliases
|
|
402
|
-
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
403
401
|
// Box aliases
|
|
404
402
|
export { default as BoxIcon } from '../icons/box';
|
|
405
|
-
//
|
|
406
|
-
export { default as
|
|
403
|
+
// BowArrow aliases
|
|
404
|
+
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
407
405
|
// Boxes aliases
|
|
408
406
|
export { default as BoxesIcon } from '../icons/boxes';
|
|
409
|
-
// BrainCog aliases
|
|
410
|
-
export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
411
407
|
// Brackets aliases
|
|
412
408
|
export { default as BracketsIcon } from '../icons/brackets';
|
|
409
|
+
// BrainCircuit aliases
|
|
410
|
+
export { default as BrainCircuitIcon } from '../icons/brain-circuit';
|
|
413
411
|
// Brain aliases
|
|
414
412
|
export { default as BrainIcon } from '../icons/brain';
|
|
413
|
+
// BrainCog aliases
|
|
414
|
+
export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
415
415
|
// BrickWallFire aliases
|
|
416
416
|
export { default as BrickWallFireIcon } from '../icons/brick-wall-fire';
|
|
417
|
-
// BrickWall aliases
|
|
418
|
-
export { default as BrickWallIcon } from '../icons/brick-wall';
|
|
419
417
|
// BrickWallShield aliases
|
|
420
418
|
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
419
|
+
// BrickWall aliases
|
|
420
|
+
export { default as BrickWallIcon } from '../icons/brick-wall';
|
|
421
421
|
// BriefcaseBusiness aliases
|
|
422
422
|
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
423
|
-
// BriefcaseMedical aliases
|
|
424
|
-
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
425
423
|
// BriefcaseConveyorBelt aliases
|
|
426
424
|
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
425
|
+
// BriefcaseMedical aliases
|
|
426
|
+
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
427
427
|
// Briefcase aliases
|
|
428
428
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
429
429
|
// BringToFront aliases
|
|
@@ -440,10 +440,10 @@ export { default as BugOffIcon } from '../icons/bug-off';
|
|
|
440
440
|
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
441
441
|
// Bug aliases
|
|
442
442
|
export { default as BugIcon } from '../icons/bug';
|
|
443
|
-
// Building2 aliases
|
|
444
|
-
export { default as Building2Icon } from '../icons/building-2';
|
|
445
443
|
// Building aliases
|
|
446
444
|
export { default as BuildingIcon } from '../icons/building';
|
|
445
|
+
// Building2 aliases
|
|
446
|
+
export { default as Building2Icon } from '../icons/building-2';
|
|
447
447
|
// BusFront aliases
|
|
448
448
|
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
449
449
|
// Bus aliases
|
|
@@ -458,16 +458,16 @@ 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
|
-
// CalendarCheck2 aliases
|
|
468
|
-
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
469
467
|
// CalendarCheck aliases
|
|
470
468
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
469
|
+
// CalendarCheck2 aliases
|
|
470
|
+
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
471
471
|
// CalendarClock aliases
|
|
472
472
|
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
473
473
|
// CalendarCog aliases
|
|
@@ -476,52 +476,52 @@ export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
|
476
476
|
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
477
477
|
// CalendarFold aliases
|
|
478
478
|
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
479
|
-
// CalendarMinus2 aliases
|
|
480
|
-
export { default as CalendarMinus2Icon } from '../icons/calendar-minus-2';
|
|
481
479
|
// CalendarHeart aliases
|
|
482
480
|
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
481
|
+
// CalendarMinus2 aliases
|
|
482
|
+
export { default as CalendarMinus2Icon } from '../icons/calendar-minus-2';
|
|
483
483
|
// CalendarMinus aliases
|
|
484
484
|
export { default as CalendarMinusIcon } from '../icons/calendar-minus';
|
|
485
|
-
// CalendarPlus2 aliases
|
|
486
|
-
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
487
485
|
// CalendarOff aliases
|
|
488
486
|
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
487
|
+
// CalendarPlus2 aliases
|
|
488
|
+
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
489
489
|
// CalendarPlus aliases
|
|
490
490
|
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
491
|
-
// CalendarSearch aliases
|
|
492
|
-
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
493
491
|
// CalendarRange aliases
|
|
494
492
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
493
|
+
// CalendarSearch aliases
|
|
494
|
+
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
495
495
|
// CalendarSync aliases
|
|
496
496
|
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
497
|
-
// CalendarX2 aliases
|
|
498
|
-
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
499
497
|
// CalendarX aliases
|
|
500
498
|
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
499
|
+
// CalendarX2 aliases
|
|
500
|
+
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
501
501
|
// Calendar aliases
|
|
502
502
|
export { default as CalendarIcon } from '../icons/calendar';
|
|
503
503
|
// Calendars aliases
|
|
504
504
|
export { default as CalendarsIcon } from '../icons/calendars';
|
|
505
505
|
// CameraOff aliases
|
|
506
506
|
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
507
|
-
// Camera aliases
|
|
508
|
-
export { default as CameraIcon } from '../icons/camera';
|
|
509
507
|
// CandyCane aliases
|
|
510
508
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
509
|
+
// Camera aliases
|
|
510
|
+
export { default as CameraIcon } from '../icons/camera';
|
|
511
511
|
// CandyOff aliases
|
|
512
512
|
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
513
|
-
// Candy aliases
|
|
514
|
-
export { default as CandyIcon } from '../icons/candy';
|
|
515
513
|
// CannabisOff aliases
|
|
516
514
|
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
515
|
+
// Candy aliases
|
|
516
|
+
export { default as CandyIcon } from '../icons/candy';
|
|
517
517
|
// Cannabis aliases
|
|
518
518
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
519
|
+
// CarTaxiFront aliases
|
|
520
|
+
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
519
521
|
// CaptionsOff aliases
|
|
520
522
|
export { default as CaptionsOffIcon } from '../icons/captions-off';
|
|
521
523
|
// CarFront aliases
|
|
522
524
|
export { default as CarFrontIcon } from '../icons/car-front';
|
|
523
|
-
// CarTaxiFront aliases
|
|
524
|
-
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
525
525
|
// Car aliases
|
|
526
526
|
export { default as CarIcon } from '../icons/car';
|
|
527
527
|
// Caravan aliases
|
|
@@ -530,28 +530,28 @@ export { default as CaravanIcon } from '../icons/caravan';
|
|
|
530
530
|
export { default as CardSimIcon } from '../icons/card-sim';
|
|
531
531
|
// Carrot aliases
|
|
532
532
|
export { default as CarrotIcon } from '../icons/carrot';
|
|
533
|
+
// CaseLower aliases
|
|
534
|
+
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
533
535
|
// CaseSensitive aliases
|
|
534
536
|
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
535
537
|
// CaseUpper aliases
|
|
536
538
|
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
537
539
|
// CassetteTape aliases
|
|
538
540
|
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
539
|
-
//
|
|
540
|
-
export { default as
|
|
541
|
+
// Cast aliases
|
|
542
|
+
export { default as CastIcon } from '../icons/cast';
|
|
541
543
|
// Castle aliases
|
|
542
544
|
export { default as CastleIcon } from '../icons/castle';
|
|
543
545
|
// Cat aliases
|
|
544
546
|
export { default as CatIcon } from '../icons/cat';
|
|
545
|
-
// Cast aliases
|
|
546
|
-
export { default as CastIcon } from '../icons/cast';
|
|
547
547
|
// CctvOff aliases
|
|
548
548
|
export { default as CctvOffIcon } from '../icons/cctv-off';
|
|
549
549
|
// Cctv aliases
|
|
550
550
|
export { default as CctvIcon } from '../icons/cctv';
|
|
551
|
-
// ChartBarIncreasing aliases
|
|
552
|
-
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
553
551
|
// ChartBarDecreasing aliases
|
|
554
552
|
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
553
|
+
// ChartBarIncreasing aliases
|
|
554
|
+
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
555
555
|
// ChartBarStacked aliases
|
|
556
556
|
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
557
557
|
// ChartColumnDecreasing aliases
|
|
@@ -560,28 +560,28 @@ export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decr
|
|
|
560
560
|
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
561
561
|
// ChartGantt aliases
|
|
562
562
|
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
563
|
-
// ChartNoAxesColumnDecreasing aliases
|
|
564
|
-
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
565
563
|
// ChartNetwork aliases
|
|
566
564
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
565
|
+
// ChartNoAxesColumnDecreasing aliases
|
|
566
|
+
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
567
|
+
// ChartSpline aliases
|
|
568
|
+
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
567
569
|
// ChartNoAxesCombined aliases
|
|
568
570
|
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
569
571
|
// CheckCheck aliases
|
|
570
572
|
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
571
|
-
// ChartSpline aliases
|
|
572
|
-
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
573
|
-
// Check aliases
|
|
574
|
-
export { default as CheckIcon } from '../icons/check';
|
|
575
573
|
// CheckLine aliases
|
|
576
574
|
export { default as CheckLineIcon } from '../icons/check-line';
|
|
575
|
+
// Check aliases
|
|
576
|
+
export { default as CheckIcon } from '../icons/check';
|
|
577
577
|
// ChefHat aliases
|
|
578
578
|
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
579
579
|
// Cherry aliases
|
|
580
580
|
export { default as CherryIcon } from '../icons/cherry';
|
|
581
|
-
// ChessKing aliases
|
|
582
|
-
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
583
581
|
// ChessBishop aliases
|
|
584
582
|
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
583
|
+
// ChessKing aliases
|
|
584
|
+
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
585
585
|
// ChessKnight aliases
|
|
586
586
|
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
587
587
|
// ChessPawn aliases
|
|
@@ -590,16 +590,16 @@ export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
|
590
590
|
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
591
591
|
// ChessRook aliases
|
|
592
592
|
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
593
|
-
// ChevronFirst aliases
|
|
594
|
-
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
595
593
|
// ChevronDown aliases
|
|
596
594
|
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
595
|
+
// ChevronFirst aliases
|
|
596
|
+
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
597
597
|
// ChevronLast aliases
|
|
598
598
|
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
599
|
-
// ChevronRight aliases
|
|
600
|
-
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
601
599
|
// ChevronLeft aliases
|
|
602
600
|
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
601
|
+
// ChevronRight aliases
|
|
602
|
+
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
603
603
|
// ChevronUp aliases
|
|
604
604
|
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
605
605
|
// ChevronsDownUp aliases
|
|
@@ -624,10 +624,10 @@ export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
|
624
624
|
export { default as ChurchIcon } from '../icons/church';
|
|
625
625
|
// CigaretteOff aliases
|
|
626
626
|
export { default as CigaretteOffIcon } from '../icons/cigarette-off';
|
|
627
|
-
// CircleDollarSign aliases
|
|
628
|
-
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
629
627
|
// Cigarette aliases
|
|
630
628
|
export { default as CigaretteIcon } from '../icons/cigarette';
|
|
629
|
+
// CircleDollarSign aliases
|
|
630
|
+
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
631
631
|
// CircleDashed aliases
|
|
632
632
|
export { default as CircleDashedIcon } from '../icons/circle-dashed';
|
|
633
633
|
// CircleDotDashed aliases
|
|
@@ -636,34 +636,34 @@ export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
|
636
636
|
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
637
637
|
// CircleEllipsis aliases
|
|
638
638
|
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
639
|
-
// CircleFadingArrowUp aliases
|
|
640
|
-
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
641
639
|
// CircleEqual aliases
|
|
642
640
|
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
641
|
+
// CircleFadingArrowUp aliases
|
|
642
|
+
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
643
643
|
// CircleFadingPlus aliases
|
|
644
644
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
645
|
-
// CirclePile aliases
|
|
646
|
-
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
647
645
|
// CircleOff aliases
|
|
648
646
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
647
|
+
// CirclePile aliases
|
|
648
|
+
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
649
649
|
// CirclePoundSterling aliases
|
|
650
650
|
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
651
651
|
// CircleSmall aliases
|
|
652
652
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
653
653
|
// CircleSlash aliases
|
|
654
654
|
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
655
|
-
// Circle aliases
|
|
656
|
-
export { default as CircleIcon } from '../icons/circle';
|
|
657
655
|
// CircleStar aliases
|
|
658
656
|
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
659
|
-
//
|
|
660
|
-
export { default as
|
|
657
|
+
// Circle aliases
|
|
658
|
+
export { default as CircleIcon } from '../icons/circle';
|
|
661
659
|
// CircuitBoard aliases
|
|
662
660
|
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
663
|
-
//
|
|
664
|
-
export { default as
|
|
661
|
+
// Citrus aliases
|
|
662
|
+
export { default as CitrusIcon } from '../icons/citrus';
|
|
665
663
|
// Clapperboard aliases
|
|
666
664
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
665
|
+
// ClipboardCheck aliases
|
|
666
|
+
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
667
667
|
// ClipboardClock aliases
|
|
668
668
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
669
669
|
// ClipboardCopy aliases
|
|
@@ -674,26 +674,26 @@ export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
|
674
674
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
675
675
|
// ClipboardPaste aliases
|
|
676
676
|
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
677
|
-
// ClipboardPlus aliases
|
|
678
|
-
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
679
677
|
// ClipboardType aliases
|
|
680
678
|
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
679
|
+
// ClipboardPlus aliases
|
|
680
|
+
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
681
681
|
// ClipboardX aliases
|
|
682
682
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
683
683
|
// Clipboard aliases
|
|
684
684
|
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
685
685
|
// Clock1 aliases
|
|
686
686
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
687
|
-
// Clock10 aliases
|
|
688
|
-
export { default as Clock10Icon } from '../icons/clock-10';
|
|
689
687
|
// Clock11 aliases
|
|
690
688
|
export { default as Clock11Icon } from '../icons/clock-11';
|
|
689
|
+
// Clock10 aliases
|
|
690
|
+
export { default as Clock10Icon } from '../icons/clock-10';
|
|
691
691
|
// Clock12 aliases
|
|
692
692
|
export { default as Clock12Icon } from '../icons/clock-12';
|
|
693
|
-
// Clock3 aliases
|
|
694
|
-
export { default as Clock3Icon } from '../icons/clock-3';
|
|
695
693
|
// Clock2 aliases
|
|
696
694
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
695
|
+
// Clock3 aliases
|
|
696
|
+
export { default as Clock3Icon } from '../icons/clock-3';
|
|
697
697
|
// Clock4 aliases
|
|
698
698
|
export { default as Clock4Icon } from '../icons/clock-4';
|
|
699
699
|
// Clock5 aliases
|
|
@@ -710,42 +710,42 @@ export { default as Clock9Icon } from '../icons/clock-9';
|
|
|
710
710
|
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
711
711
|
// ClockArrowDown aliases
|
|
712
712
|
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
713
|
-
// ClockCheck aliases
|
|
714
|
-
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
715
713
|
// ClockArrowUp aliases
|
|
716
714
|
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
717
|
-
//
|
|
718
|
-
export { default as
|
|
719
|
-
// Clock aliases
|
|
720
|
-
export { default as ClockIcon } from '../icons/clock';
|
|
715
|
+
// ClockCheck aliases
|
|
716
|
+
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
721
717
|
// ClockPlus aliases
|
|
722
718
|
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
723
719
|
// ClosedCaption aliases
|
|
724
720
|
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
721
|
+
// ClockFading aliases
|
|
722
|
+
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
723
|
+
// Clock aliases
|
|
724
|
+
export { default as ClockIcon } from '../icons/clock';
|
|
725
725
|
// CloudAlert aliases
|
|
726
726
|
export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
727
|
-
// CloudBackup aliases
|
|
728
|
-
export { default as CloudBackupIcon } from '../icons/cloud-backup';
|
|
729
727
|
// CloudCheck aliases
|
|
730
728
|
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
731
729
|
// CloudCog aliases
|
|
732
730
|
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
733
|
-
//
|
|
734
|
-
export { default as
|
|
731
|
+
// CloudBackup aliases
|
|
732
|
+
export { default as CloudBackupIcon } from '../icons/cloud-backup';
|
|
735
733
|
// CloudDrizzle aliases
|
|
736
734
|
export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
735
|
+
// CloudFog aliases
|
|
736
|
+
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
737
737
|
// CloudHail aliases
|
|
738
738
|
export { default as CloudHailIcon } from '../icons/cloud-hail';
|
|
739
739
|
// CloudLightning aliases
|
|
740
740
|
export { default as CloudLightningIcon } from '../icons/cloud-lightning';
|
|
741
|
-
// CloudMoonRain aliases
|
|
742
|
-
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
743
741
|
// CloudMoon aliases
|
|
744
742
|
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
745
|
-
//
|
|
746
|
-
export { default as
|
|
743
|
+
// CloudMoonRain aliases
|
|
744
|
+
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
747
745
|
// CloudOff aliases
|
|
748
746
|
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
747
|
+
// CloudRainWind aliases
|
|
748
|
+
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
749
749
|
// CloudRain aliases
|
|
750
750
|
export { default as CloudRainIcon } from '../icons/cloud-rain';
|
|
751
751
|
// CloudSnow aliases
|
|
@@ -756,28 +756,28 @@ export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
|
756
756
|
export { default as CloudSunIcon } from '../icons/cloud-sun';
|
|
757
757
|
// CloudSync aliases
|
|
758
758
|
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
759
|
-
// Cloud aliases
|
|
760
|
-
export { default as CloudIcon } from '../icons/cloud';
|
|
761
|
-
// Clover aliases
|
|
762
|
-
export { default as CloverIcon } from '../icons/clover';
|
|
763
759
|
// Cloudy aliases
|
|
764
760
|
export { default as CloudyIcon } from '../icons/cloudy';
|
|
761
|
+
// Clover aliases
|
|
762
|
+
export { default as CloverIcon } from '../icons/clover';
|
|
763
|
+
// Cloud aliases
|
|
764
|
+
export { default as CloudIcon } from '../icons/cloud';
|
|
765
765
|
// Club aliases
|
|
766
766
|
export { default as ClubIcon } from '../icons/club';
|
|
767
|
-
// Code aliases
|
|
768
|
-
export { default as CodeIcon } from '../icons/code';
|
|
769
|
-
// Coffee aliases
|
|
770
|
-
export { default as CoffeeIcon } from '../icons/coffee';
|
|
771
767
|
// Cog aliases
|
|
772
768
|
export { default as CogIcon } from '../icons/cog';
|
|
769
|
+
// Code aliases
|
|
770
|
+
export { default as CodeIcon } from '../icons/code';
|
|
773
771
|
// Coins aliases
|
|
774
772
|
export { default as CoinsIcon } from '../icons/coins';
|
|
773
|
+
// Coffee aliases
|
|
774
|
+
export { default as CoffeeIcon } from '../icons/coffee';
|
|
775
775
|
// Columns4 aliases
|
|
776
776
|
export { default as Columns4Icon } from '../icons/columns-4';
|
|
777
|
-
// Command aliases
|
|
778
|
-
export { default as CommandIcon } from '../icons/command';
|
|
779
777
|
// Combine aliases
|
|
780
778
|
export { default as CombineIcon } from '../icons/combine';
|
|
779
|
+
// Command aliases
|
|
780
|
+
export { default as CommandIcon } from '../icons/command';
|
|
781
781
|
// Compass aliases
|
|
782
782
|
export { default as CompassIcon } from '../icons/compass';
|
|
783
783
|
// Component aliases
|
|
@@ -786,60 +786,60 @@ export { default as ComponentIcon } from '../icons/component';
|
|
|
786
786
|
export { default as ComputerIcon } from '../icons/computer';
|
|
787
787
|
// ConciergeBell aliases
|
|
788
788
|
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
789
|
+
// Cone aliases
|
|
790
|
+
export { default as ConeIcon } from '../icons/cone';
|
|
789
791
|
// Construction aliases
|
|
790
792
|
export { default as ConstructionIcon } from '../icons/construction';
|
|
791
793
|
// Contact aliases
|
|
792
794
|
export { default as ContactIcon } from '../icons/contact';
|
|
793
|
-
// Cone aliases
|
|
794
|
-
export { default as ConeIcon } from '../icons/cone';
|
|
795
795
|
// Container aliases
|
|
796
796
|
export { default as ContainerIcon } from '../icons/container';
|
|
797
797
|
// Contrast aliases
|
|
798
798
|
export { default as ContrastIcon } from '../icons/contrast';
|
|
799
|
-
// Cookie aliases
|
|
800
|
-
export { default as CookieIcon } from '../icons/cookie';
|
|
801
799
|
// CookingPot aliases
|
|
802
800
|
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
801
|
+
// Cookie aliases
|
|
802
|
+
export { default as CookieIcon } from '../icons/cookie';
|
|
803
803
|
// CopyCheck aliases
|
|
804
804
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
805
805
|
// CopyMinus aliases
|
|
806
806
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
807
807
|
// CopyPlus aliases
|
|
808
808
|
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
809
|
-
// CopySlash aliases
|
|
810
|
-
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
811
809
|
// CopyX aliases
|
|
812
810
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
811
|
+
// CopySlash aliases
|
|
812
|
+
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
813
813
|
// Copy aliases
|
|
814
814
|
export { default as CopyIcon } from '../icons/copy';
|
|
815
815
|
// Copyleft aliases
|
|
816
816
|
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
817
817
|
// Copyright aliases
|
|
818
818
|
export { default as CopyrightIcon } from '../icons/copyright';
|
|
819
|
-
// CornerDownRight aliases
|
|
820
|
-
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
821
819
|
// CornerDownLeft aliases
|
|
822
820
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
821
|
+
// CornerDownRight aliases
|
|
822
|
+
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
823
823
|
// CornerLeftDown aliases
|
|
824
824
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
825
825
|
// CornerLeftUp aliases
|
|
826
826
|
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
827
827
|
// CornerRightUp aliases
|
|
828
828
|
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
829
|
-
// CornerUpLeft aliases
|
|
830
|
-
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
831
829
|
// CornerRightDown aliases
|
|
832
830
|
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
833
831
|
// CornerUpRight aliases
|
|
834
832
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
833
|
+
// CornerUpLeft aliases
|
|
834
|
+
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
835
835
|
// Cpu aliases
|
|
836
836
|
export { default as CpuIcon } from '../icons/cpu';
|
|
837
837
|
// CreativeCommons aliases
|
|
838
838
|
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
839
|
-
// Croissant aliases
|
|
840
|
-
export { default as CroissantIcon } from '../icons/croissant';
|
|
841
839
|
// CreditCard aliases
|
|
842
840
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
841
|
+
// Croissant aliases
|
|
842
|
+
export { default as CroissantIcon } from '../icons/croissant';
|
|
843
843
|
// Crop aliases
|
|
844
844
|
export { default as CropIcon } from '../icons/crop';
|
|
845
845
|
// Cross aliases
|
|
@@ -848,80 +848,80 @@ export { default as CrossIcon } from '../icons/cross';
|
|
|
848
848
|
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
849
849
|
// Crown aliases
|
|
850
850
|
export { default as CrownIcon } from '../icons/crown';
|
|
851
|
+
// CupSoda aliases
|
|
852
|
+
export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
851
853
|
// Cuboid aliases
|
|
852
854
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
853
855
|
// Currency aliases
|
|
854
856
|
export { default as CurrencyIcon } from '../icons/currency';
|
|
855
857
|
// Cylinder aliases
|
|
856
858
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
857
|
-
// CupSoda aliases
|
|
858
|
-
export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
859
|
-
// Dam aliases
|
|
860
|
-
export { default as DamIcon } from '../icons/dam';
|
|
861
859
|
// DatabaseBackup aliases
|
|
862
860
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
863
|
-
//
|
|
864
|
-
export { default as
|
|
865
|
-
// DatabaseZap aliases
|
|
866
|
-
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
861
|
+
// Dam aliases
|
|
862
|
+
export { default as DamIcon } from '../icons/dam';
|
|
867
863
|
// DatabaseSearch aliases
|
|
868
864
|
export { default as DatabaseSearchIcon } from '../icons/database-search';
|
|
865
|
+
// DatabaseZap aliases
|
|
866
|
+
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
867
|
+
// Database aliases
|
|
868
|
+
export { default as DatabaseIcon } from '../icons/database';
|
|
869
869
|
// DecimalsArrowLeft aliases
|
|
870
870
|
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
871
|
-
// DecimalsArrowRight aliases
|
|
872
|
-
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
873
871
|
// Delete aliases
|
|
874
872
|
export { default as DeleteIcon } from '../icons/delete';
|
|
873
|
+
// DecimalsArrowRight aliases
|
|
874
|
+
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
875
875
|
// Dessert aliases
|
|
876
876
|
export { default as DessertIcon } from '../icons/dessert';
|
|
877
877
|
// DiamondMinus aliases
|
|
878
878
|
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
879
|
-
// Diameter aliases
|
|
880
|
-
export { default as DiameterIcon } from '../icons/diameter';
|
|
881
879
|
// DiamondPlus aliases
|
|
882
880
|
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
881
|
+
// Diameter aliases
|
|
882
|
+
export { default as DiameterIcon } from '../icons/diameter';
|
|
883
883
|
// Diamond aliases
|
|
884
884
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
885
885
|
// Dice1 aliases
|
|
886
886
|
export { default as Dice1Icon } from '../icons/dice-1';
|
|
887
887
|
// Dice3 aliases
|
|
888
888
|
export { default as Dice3Icon } from '../icons/dice-3';
|
|
889
|
+
// Dice5 aliases
|
|
890
|
+
export { default as Dice5Icon } from '../icons/dice-5';
|
|
889
891
|
// Dice2 aliases
|
|
890
892
|
export { default as Dice2Icon } from '../icons/dice-2';
|
|
891
893
|
// Dice4 aliases
|
|
892
894
|
export { default as Dice4Icon } from '../icons/dice-4';
|
|
893
|
-
// Dice5 aliases
|
|
894
|
-
export { default as Dice5Icon } from '../icons/dice-5';
|
|
895
895
|
// Dice6 aliases
|
|
896
896
|
export { default as Dice6Icon } from '../icons/dice-6';
|
|
897
897
|
// Dices aliases
|
|
898
898
|
export { default as DicesIcon } from '../icons/dices';
|
|
899
|
-
// Diff aliases
|
|
900
|
-
export { default as DiffIcon } from '../icons/diff';
|
|
901
899
|
// Disc2 aliases
|
|
902
900
|
export { default as Disc2Icon } from '../icons/disc-2';
|
|
901
|
+
// Diff aliases
|
|
902
|
+
export { default as DiffIcon } from '../icons/diff';
|
|
903
903
|
// Disc3 aliases
|
|
904
904
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
905
905
|
// DiscAlbum aliases
|
|
906
906
|
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
907
907
|
// Disc aliases
|
|
908
908
|
export { default as DiscIcon } from '../icons/disc';
|
|
909
|
-
// DnaOff aliases
|
|
910
|
-
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
911
909
|
// Divide aliases
|
|
912
910
|
export { default as DivideIcon } from '../icons/divide';
|
|
911
|
+
// DnaOff aliases
|
|
912
|
+
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
913
913
|
// Dna aliases
|
|
914
914
|
export { default as DnaIcon } from '../icons/dna';
|
|
915
915
|
// Dock aliases
|
|
916
916
|
export { default as DockIcon } from '../icons/dock';
|
|
917
917
|
// Dog aliases
|
|
918
918
|
export { default as DogIcon } from '../icons/dog';
|
|
919
|
-
// Donut aliases
|
|
920
|
-
export { default as DonutIcon } from '../icons/donut';
|
|
921
|
-
// DollarSign aliases
|
|
922
|
-
export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
923
919
|
// DoorClosedLocked aliases
|
|
924
920
|
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
921
|
+
// DollarSign aliases
|
|
922
|
+
export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
923
|
+
// Donut aliases
|
|
924
|
+
export { default as DonutIcon } from '../icons/donut';
|
|
925
925
|
// DoorClosed aliases
|
|
926
926
|
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
927
927
|
// DoorOpen aliases
|
|
@@ -938,22 +938,22 @@ export { default as DramaIcon } from '../icons/drama';
|
|
|
938
938
|
export { default as DrillIcon } from '../icons/drill';
|
|
939
939
|
// Drone aliases
|
|
940
940
|
export { default as DroneIcon } from '../icons/drone';
|
|
941
|
-
// DropletOff aliases
|
|
942
|
-
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
943
941
|
// Droplet aliases
|
|
944
942
|
export { default as DropletIcon } from '../icons/droplet';
|
|
945
|
-
// Drum aliases
|
|
946
|
-
export { default as DrumIcon } from '../icons/drum';
|
|
947
943
|
// Droplets aliases
|
|
948
944
|
export { default as DropletsIcon } from '../icons/droplets';
|
|
949
|
-
//
|
|
950
|
-
export { default as
|
|
945
|
+
// DropletOff aliases
|
|
946
|
+
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
947
|
+
// Drum aliases
|
|
948
|
+
export { default as DrumIcon } from '../icons/drum';
|
|
951
949
|
// Drumstick aliases
|
|
952
950
|
export { default as DrumstickIcon } from '../icons/drumstick';
|
|
953
|
-
//
|
|
954
|
-
export { default as
|
|
951
|
+
// Dumbbell aliases
|
|
952
|
+
export { default as DumbbellIcon } from '../icons/dumbbell';
|
|
955
953
|
// EarOff aliases
|
|
956
954
|
export { default as EarOffIcon } from '../icons/ear-off';
|
|
955
|
+
// Ear aliases
|
|
956
|
+
export { default as EarIcon } from '../icons/ear';
|
|
957
957
|
// EarthLock aliases
|
|
958
958
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
959
959
|
// Eclipse aliases
|
|
@@ -964,52 +964,52 @@ export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
|
964
964
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
965
965
|
// Egg aliases
|
|
966
966
|
export { default as EggIcon } from '../icons/egg';
|
|
967
|
+
// Ellipse aliases
|
|
968
|
+
export { default as EllipseIcon } from '../icons/ellipse';
|
|
969
|
+
// EqualNot aliases
|
|
970
|
+
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
967
971
|
// EqualApproximately aliases
|
|
968
972
|
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
969
973
|
// Equal aliases
|
|
970
974
|
export { default as EqualIcon } from '../icons/equal';
|
|
971
975
|
// Eraser aliases
|
|
972
976
|
export { default as EraserIcon } from '../icons/eraser';
|
|
973
|
-
// EqualNot aliases
|
|
974
|
-
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
975
|
-
// Ellipse aliases
|
|
976
|
-
export { default as EllipseIcon } from '../icons/ellipse';
|
|
977
|
-
// EthernetPort aliases
|
|
978
|
-
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
979
977
|
// Euro aliases
|
|
980
978
|
export { default as EuroIcon } from '../icons/euro';
|
|
979
|
+
// EthernetPort aliases
|
|
980
|
+
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
981
981
|
// Expand aliases
|
|
982
982
|
export { default as ExpandIcon } from '../icons/expand';
|
|
983
|
-
// EvCharger aliases
|
|
984
|
-
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
985
983
|
// ExternalLink aliases
|
|
986
984
|
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
985
|
+
// EvCharger aliases
|
|
986
|
+
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
987
987
|
// EyeClosed aliases
|
|
988
988
|
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
989
|
-
// Eye aliases
|
|
990
|
-
export { default as EyeIcon } from '../icons/eye';
|
|
991
989
|
// EyeOff aliases
|
|
992
990
|
export { default as EyeOffIcon } from '../icons/eye-off';
|
|
991
|
+
// Eye aliases
|
|
992
|
+
export { default as EyeIcon } from '../icons/eye';
|
|
993
|
+
// Fan aliases
|
|
994
|
+
export { default as FanIcon } from '../icons/fan';
|
|
993
995
|
// Factory aliases
|
|
994
996
|
export { default as FactoryIcon } from '../icons/factory';
|
|
995
997
|
// FastForward aliases
|
|
996
998
|
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
997
|
-
// Fan aliases
|
|
998
|
-
export { default as FanIcon } from '../icons/fan';
|
|
999
999
|
// Feather aliases
|
|
1000
1000
|
export { default as FeatherIcon } from '../icons/feather';
|
|
1001
1001
|
// Fence aliases
|
|
1002
1002
|
export { default as FenceIcon } from '../icons/fence';
|
|
1003
|
-
// FileArchive aliases
|
|
1004
|
-
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1005
1003
|
// FerrisWheel aliases
|
|
1006
1004
|
export { default as FerrisWheelIcon } from '../icons/ferris-wheel';
|
|
1005
|
+
// FileArchive aliases
|
|
1006
|
+
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1007
1007
|
// FileBox aliases
|
|
1008
1008
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1009
|
-
// FileCheck aliases
|
|
1010
|
-
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1011
1009
|
// FileClock aliases
|
|
1012
1010
|
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1011
|
+
// FileCheck aliases
|
|
1012
|
+
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1013
1013
|
// FileCode aliases
|
|
1014
1014
|
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1015
1015
|
// FileDiff aliases
|
|
@@ -1024,14 +1024,14 @@ export { default as FileImageIcon } from '../icons/file-image';
|
|
|
1024
1024
|
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1025
1025
|
// FileInput aliases
|
|
1026
1026
|
export { default as FileInputIcon } from '../icons/file-input';
|
|
1027
|
-
// FileMusic aliases
|
|
1028
|
-
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1029
|
-
// FilePlus aliases
|
|
1030
|
-
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1031
1027
|
// FileMinus aliases
|
|
1032
1028
|
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1029
|
+
// FileMusic aliases
|
|
1030
|
+
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1033
1031
|
// FileOutput aliases
|
|
1034
1032
|
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1033
|
+
// FilePlus aliases
|
|
1034
|
+
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1035
1035
|
// FileScan aliases
|
|
1036
1036
|
export { default as FileScanIcon } from '../icons/file-scan';
|
|
1037
1037
|
// FileSearch aliases
|
|
@@ -1066,18 +1066,18 @@ export { default as FilesIcon } from '../icons/files';
|
|
|
1066
1066
|
export { default as FilmIcon } from '../icons/film';
|
|
1067
1067
|
// FireExtinguisher aliases
|
|
1068
1068
|
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1069
|
-
// FishOff aliases
|
|
1070
|
-
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1071
1069
|
// FishSymbol aliases
|
|
1072
1070
|
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1071
|
+
// FishOff aliases
|
|
1072
|
+
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1073
1073
|
// Fish aliases
|
|
1074
1074
|
export { default as FishIcon } from '../icons/fish';
|
|
1075
|
+
// FishingRod aliases
|
|
1076
|
+
export { default as FishingRodIcon } from '../icons/fishing-rod';
|
|
1075
1077
|
// FishingHook aliases
|
|
1076
1078
|
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1077
1079
|
// FlagOff aliases
|
|
1078
1080
|
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1079
|
-
// FishingRod aliases
|
|
1080
|
-
export { default as FishingRodIcon } from '../icons/fishing-rod';
|
|
1081
1081
|
// FlagTriangleLeft aliases
|
|
1082
1082
|
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1083
1083
|
// FlagTriangleRight aliases
|
|
@@ -1088,10 +1088,10 @@ export { default as FlagIcon } from '../icons/flag';
|
|
|
1088
1088
|
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1089
1089
|
// Flame aliases
|
|
1090
1090
|
export { default as FlameIcon } from '../icons/flame';
|
|
1091
|
-
// FlashlightOff aliases
|
|
1092
|
-
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1093
1091
|
// Flashlight aliases
|
|
1094
1092
|
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1093
|
+
// FlashlightOff aliases
|
|
1094
|
+
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1095
1095
|
// FlaskConicalOff aliases
|
|
1096
1096
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1097
1097
|
// FlaskConical aliases
|
|
@@ -1102,70 +1102,70 @@ export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
|
1102
1102
|
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1103
1103
|
// FlipVertical2 aliases
|
|
1104
1104
|
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1105
|
-
// Flower aliases
|
|
1106
|
-
export { default as FlowerIcon } from '../icons/flower';
|
|
1107
|
-
// Focus aliases
|
|
1108
|
-
export { default as FocusIcon } from '../icons/focus';
|
|
1109
1105
|
// Flower2 aliases
|
|
1110
1106
|
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1107
|
+
// Focus aliases
|
|
1108
|
+
export { default as FocusIcon } from '../icons/focus';
|
|
1109
|
+
// Flower aliases
|
|
1110
|
+
export { default as FlowerIcon } from '../icons/flower';
|
|
1111
1111
|
// FoldHorizontal aliases
|
|
1112
1112
|
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1113
|
+
// FolderArchive aliases
|
|
1114
|
+
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1113
1115
|
// FoldVertical aliases
|
|
1114
1116
|
export { default as FoldVerticalIcon } from '../icons/fold-vertical';
|
|
1115
1117
|
// FolderCheck aliases
|
|
1116
1118
|
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1117
|
-
// FolderArchive aliases
|
|
1118
|
-
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1119
|
-
// FolderClock aliases
|
|
1120
|
-
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1121
1119
|
// FolderClosed aliases
|
|
1122
1120
|
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1123
1121
|
// FolderCode aliases
|
|
1124
1122
|
export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
1125
1123
|
// FolderDot aliases
|
|
1126
1124
|
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1125
|
+
// FolderClock aliases
|
|
1126
|
+
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1127
1127
|
// FolderDown aliases
|
|
1128
1128
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1129
1129
|
// FolderGit2 aliases
|
|
1130
1130
|
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1131
1131
|
// FolderGit aliases
|
|
1132
1132
|
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1133
|
-
// FolderHeart aliases
|
|
1134
|
-
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1135
1133
|
// FolderInput aliases
|
|
1136
1134
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1135
|
+
// FolderHeart aliases
|
|
1136
|
+
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1137
1137
|
// FolderKey aliases
|
|
1138
1138
|
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1139
1139
|
// FolderKanban aliases
|
|
1140
1140
|
export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
1141
|
+
// FolderMinus aliases
|
|
1142
|
+
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1141
1143
|
// FolderLock aliases
|
|
1142
1144
|
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1143
1145
|
// FolderOpenDot aliases
|
|
1144
1146
|
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1145
|
-
// FolderMinus aliases
|
|
1146
|
-
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1147
1147
|
// FolderOpen aliases
|
|
1148
1148
|
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1149
1149
|
// FolderOutput aliases
|
|
1150
1150
|
export { default as FolderOutputIcon } from '../icons/folder-output';
|
|
1151
1151
|
// FolderPlus aliases
|
|
1152
1152
|
export { default as FolderPlusIcon } from '../icons/folder-plus';
|
|
1153
|
-
// FolderSearch2 aliases
|
|
1154
|
-
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1155
1153
|
// FolderRoot aliases
|
|
1156
1154
|
export { default as FolderRootIcon } from '../icons/folder-root';
|
|
1155
|
+
// FolderSearch2 aliases
|
|
1156
|
+
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1157
1157
|
// FolderSearch aliases
|
|
1158
1158
|
export { default as FolderSearchIcon } from '../icons/folder-search';
|
|
1159
|
-
// FolderSync aliases
|
|
1160
|
-
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1161
1159
|
// FolderSymlink aliases
|
|
1162
1160
|
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1161
|
+
// FolderSync aliases
|
|
1162
|
+
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1163
1163
|
// FolderTree aliases
|
|
1164
1164
|
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1165
|
-
// FolderUp aliases
|
|
1166
|
-
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1167
1165
|
// FolderX aliases
|
|
1168
1166
|
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1167
|
+
// FolderUp aliases
|
|
1168
|
+
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1169
1169
|
// Folder aliases
|
|
1170
1170
|
export { default as FolderIcon } from '../icons/folder';
|
|
1171
1171
|
// Folders aliases
|
|
@@ -1174,12 +1174,12 @@ export { default as FoldersIcon } from '../icons/folders';
|
|
|
1174
1174
|
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1175
1175
|
// Forklift aliases
|
|
1176
1176
|
export { default as ForkliftIcon } from '../icons/forklift';
|
|
1177
|
-
// Forward aliases
|
|
1178
|
-
export { default as ForwardIcon } from '../icons/forward';
|
|
1179
1177
|
// Form aliases
|
|
1180
1178
|
export { default as FormIcon } from '../icons/form';
|
|
1181
1179
|
// Frame aliases
|
|
1182
1180
|
export { default as FrameIcon } from '../icons/frame';
|
|
1181
|
+
// Forward aliases
|
|
1182
|
+
export { default as ForwardIcon } from '../icons/forward';
|
|
1183
1183
|
// Frown aliases
|
|
1184
1184
|
export { default as FrownIcon } from '../icons/frown';
|
|
1185
1185
|
// Fuel aliases
|
|
@@ -1190,14 +1190,14 @@ export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
|
1190
1190
|
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1191
1191
|
// GalleryHorizontalEnd aliases
|
|
1192
1192
|
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1193
|
-
// GalleryHorizontal aliases
|
|
1194
|
-
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1195
1193
|
// GalleryThumbnails aliases
|
|
1196
1194
|
export { default as GalleryThumbnailsIcon } from '../icons/gallery-thumbnails';
|
|
1197
|
-
//
|
|
1198
|
-
export { default as
|
|
1195
|
+
// GalleryHorizontal aliases
|
|
1196
|
+
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1199
1197
|
// GalleryVertical aliases
|
|
1200
1198
|
export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
1199
|
+
// GalleryVerticalEnd aliases
|
|
1200
|
+
export { default as GalleryVerticalEndIcon } from '../icons/gallery-vertical-end';
|
|
1201
1201
|
// Gamepad2 aliases
|
|
1202
1202
|
export { default as Gamepad2Icon } from '../icons/gamepad-2';
|
|
1203
1203
|
// GamepadDirectional aliases
|
|
@@ -1212,40 +1212,40 @@ export { default as GavelIcon } from '../icons/gavel';
|
|
|
1212
1212
|
export { default as GemIcon } from '../icons/gem';
|
|
1213
1213
|
// GeorgianLari aliases
|
|
1214
1214
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1215
|
-
// Ghost aliases
|
|
1216
|
-
export { default as GhostIcon } from '../icons/ghost';
|
|
1217
1215
|
// Gift aliases
|
|
1218
1216
|
export { default as GiftIcon } from '../icons/gift';
|
|
1219
|
-
//
|
|
1220
|
-
export { default as
|
|
1217
|
+
// Ghost aliases
|
|
1218
|
+
export { default as GhostIcon } from '../icons/ghost';
|
|
1221
1219
|
// GitBranchPlus aliases
|
|
1222
1220
|
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1223
1221
|
// GitBranch aliases
|
|
1224
1222
|
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1223
|
+
// GitBranchMinus aliases
|
|
1224
|
+
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1225
|
+
// GitCommitVertical aliases
|
|
1226
|
+
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1225
1227
|
// GitCompareArrows aliases
|
|
1226
1228
|
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1227
1229
|
// GitCompare aliases
|
|
1228
1230
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1229
|
-
// GitCommitVertical aliases
|
|
1230
|
-
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1231
1231
|
// GitFork aliases
|
|
1232
1232
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1233
1233
|
// GitMergeConflict aliases
|
|
1234
1234
|
export { default as GitMergeConflictIcon } from '../icons/git-merge-conflict';
|
|
1235
1235
|
// GitGraph aliases
|
|
1236
1236
|
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1237
|
-
// GitPullRequestArrow aliases
|
|
1238
|
-
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1239
1237
|
// GitMerge aliases
|
|
1240
1238
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1241
|
-
//
|
|
1242
|
-
export { default as
|
|
1243
|
-
// GitPullRequestCreate aliases
|
|
1244
|
-
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1239
|
+
// GitPullRequestArrow aliases
|
|
1240
|
+
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1245
1241
|
// GitPullRequestClosed aliases
|
|
1246
1242
|
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1243
|
+
// GitPullRequestCreateArrow aliases
|
|
1244
|
+
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1247
1245
|
// GitPullRequestDraft aliases
|
|
1248
1246
|
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1247
|
+
// GitPullRequestCreate aliases
|
|
1248
|
+
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1249
1249
|
// GitPullRequest aliases
|
|
1250
1250
|
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1251
1251
|
// GlassWater aliases
|
|
@@ -1258,16 +1258,16 @@ export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
|
1258
1258
|
export { default as GlobeOffIcon } from '../icons/globe-off';
|
|
1259
1259
|
// GlobeX aliases
|
|
1260
1260
|
export { default as GlobeXIcon } from '../icons/globe-x';
|
|
1261
|
-
// Goal aliases
|
|
1262
|
-
export { default as GoalIcon } from '../icons/goal';
|
|
1263
1261
|
// Globe aliases
|
|
1264
1262
|
export { default as GlobeIcon } from '../icons/globe';
|
|
1263
|
+
// Goal aliases
|
|
1264
|
+
export { default as GoalIcon } from '../icons/goal';
|
|
1265
|
+
// GraduationCap aliases
|
|
1266
|
+
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1265
1267
|
// Gpu aliases
|
|
1266
1268
|
export { default as GpuIcon } from '../icons/gpu';
|
|
1267
1269
|
// Grape aliases
|
|
1268
1270
|
export { default as GrapeIcon } from '../icons/grape';
|
|
1269
|
-
// GraduationCap aliases
|
|
1270
|
-
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1271
1271
|
// Grid3x2 aliases
|
|
1272
1272
|
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1273
1273
|
// GripHorizontal aliases
|
|
@@ -1282,38 +1282,38 @@ export { default as GroupIcon } from '../icons/group';
|
|
|
1282
1282
|
export { default as GuitarIcon } from '../icons/guitar';
|
|
1283
1283
|
// Ham aliases
|
|
1284
1284
|
export { default as HamIcon } from '../icons/ham';
|
|
1285
|
-
// Hammer aliases
|
|
1286
|
-
export { default as HammerIcon } from '../icons/hammer';
|
|
1287
1285
|
// Hamburger aliases
|
|
1288
1286
|
export { default as HamburgerIcon } from '../icons/hamburger';
|
|
1289
1287
|
// HandCoins aliases
|
|
1290
1288
|
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1289
|
+
// Hammer aliases
|
|
1290
|
+
export { default as HammerIcon } from '../icons/hammer';
|
|
1291
1291
|
// HandFist aliases
|
|
1292
1292
|
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1293
|
-
// HandMetal aliases
|
|
1294
|
-
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1295
1293
|
// HandHeart aliases
|
|
1296
1294
|
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1295
|
+
// HandMetal aliases
|
|
1296
|
+
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1297
1297
|
// HandPlatter aliases
|
|
1298
1298
|
export { default as HandPlatterIcon } from '../icons/hand-platter';
|
|
1299
1299
|
// Hand aliases
|
|
1300
1300
|
export { default as HandIcon } from '../icons/hand';
|
|
1301
1301
|
// Handbag aliases
|
|
1302
1302
|
export { default as HandbagIcon } from '../icons/handbag';
|
|
1303
|
-
// Handshake aliases
|
|
1304
|
-
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1305
1303
|
// HardDriveDownload aliases
|
|
1306
1304
|
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1305
|
+
// Handshake aliases
|
|
1306
|
+
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1307
1307
|
// HardDriveUpload aliases
|
|
1308
1308
|
export { default as HardDriveUploadIcon } from '../icons/hard-drive-upload';
|
|
1309
1309
|
// HardDrive aliases
|
|
1310
1310
|
export { default as HardDriveIcon } from '../icons/hard-drive';
|
|
1311
1311
|
// HardHat aliases
|
|
1312
1312
|
export { default as HardHatIcon } from '../icons/hard-hat';
|
|
1313
|
-
// Haze aliases
|
|
1314
|
-
export { default as HazeIcon } from '../icons/haze';
|
|
1315
1313
|
// HatGlasses aliases
|
|
1316
1314
|
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1315
|
+
// Haze aliases
|
|
1316
|
+
export { default as HazeIcon } from '../icons/haze';
|
|
1317
1317
|
// Hash aliases
|
|
1318
1318
|
export { default as HashIcon } from '../icons/hash';
|
|
1319
1319
|
// Hd aliases
|
|
@@ -1344,26 +1344,26 @@ export { default as HeadsetIcon } from '../icons/headset';
|
|
|
1344
1344
|
export { default as HeartCrackIcon } from '../icons/heart-crack';
|
|
1345
1345
|
// HeartHandshake aliases
|
|
1346
1346
|
export { default as HeartHandshakeIcon } from '../icons/heart-handshake';
|
|
1347
|
-
// HeartOff aliases
|
|
1348
|
-
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1349
1347
|
// HeartMinus aliases
|
|
1350
1348
|
export { default as HeartMinusIcon } from '../icons/heart-minus';
|
|
1351
|
-
//
|
|
1352
|
-
export { default as
|
|
1349
|
+
// HeartOff aliases
|
|
1350
|
+
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1353
1351
|
// HeartPlus aliases
|
|
1354
1352
|
export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
1353
|
+
// HeartPulse aliases
|
|
1354
|
+
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1355
1355
|
// Heart aliases
|
|
1356
1356
|
export { default as HeartIcon } from '../icons/heart';
|
|
1357
1357
|
// Heater aliases
|
|
1358
1358
|
export { default as HeaterIcon } from '../icons/heater';
|
|
1359
1359
|
// Helicopter aliases
|
|
1360
1360
|
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1361
|
-
// History aliases
|
|
1362
|
-
export { default as HistoryIcon } from '../icons/history';
|
|
1363
1361
|
// Hexagon aliases
|
|
1364
1362
|
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1365
1363
|
// Highlighter aliases
|
|
1366
1364
|
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1365
|
+
// History aliases
|
|
1366
|
+
export { default as HistoryIcon } from '../icons/history';
|
|
1367
1367
|
// HopOff aliases
|
|
1368
1368
|
export { default as HopOffIcon } from '../icons/hop-off';
|
|
1369
1369
|
// Hop aliases
|
|
@@ -1376,10 +1376,10 @@ export { default as HotelIcon } from '../icons/hotel';
|
|
|
1376
1376
|
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1377
1377
|
// HouseHeart aliases
|
|
1378
1378
|
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1379
|
-
// HouseWifi aliases
|
|
1380
|
-
export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
1381
1379
|
// HousePlug aliases
|
|
1382
1380
|
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1381
|
+
// HouseWifi aliases
|
|
1382
|
+
export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
1383
1383
|
// HousePlus aliases
|
|
1384
1384
|
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1385
1385
|
// IdCardLanyard aliases
|
|
@@ -1388,64 +1388,64 @@ export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
|
1388
1388
|
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1389
1389
|
// IdCard aliases
|
|
1390
1390
|
export { default as IdCardIcon } from '../icons/id-card';
|
|
1391
|
-
// ImagePlay aliases
|
|
1392
|
-
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1393
1391
|
// ImageMinus aliases
|
|
1394
1392
|
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1395
1393
|
// ImageOff aliases
|
|
1396
1394
|
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1395
|
+
// ImagePlay aliases
|
|
1396
|
+
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1397
1397
|
// ImagePlus aliases
|
|
1398
1398
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1399
1399
|
// ImageUp aliases
|
|
1400
1400
|
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1401
|
-
// ImageUpscale aliases
|
|
1402
|
-
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1403
1401
|
// Image aliases
|
|
1404
1402
|
export { default as ImageIcon } from '../icons/image';
|
|
1405
|
-
//
|
|
1406
|
-
export { default as
|
|
1407
|
-
// Inbox aliases
|
|
1408
|
-
export { default as InboxIcon } from '../icons/inbox';
|
|
1403
|
+
// ImageUpscale aliases
|
|
1404
|
+
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1409
1405
|
// Import aliases
|
|
1410
1406
|
export { default as ImportIcon } from '../icons/import';
|
|
1407
|
+
// Images aliases
|
|
1408
|
+
export { default as ImagesIcon } from '../icons/images';
|
|
1411
1409
|
// IndianRupee aliases
|
|
1412
1410
|
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1413
|
-
//
|
|
1414
|
-
export { default as
|
|
1411
|
+
// Inbox aliases
|
|
1412
|
+
export { default as InboxIcon } from '../icons/inbox';
|
|
1415
1413
|
// Info aliases
|
|
1416
1414
|
export { default as InfoIcon } from '../icons/info';
|
|
1417
|
-
//
|
|
1418
|
-
export { default as
|
|
1415
|
+
// Infinity aliases
|
|
1416
|
+
export { default as InfinityIcon } from '../icons/infinity';
|
|
1419
1417
|
// Italic aliases
|
|
1420
1418
|
export { default as ItalicIcon } from '../icons/italic';
|
|
1421
|
-
//
|
|
1422
|
-
export { default as
|
|
1423
|
-
// IterationCw aliases
|
|
1424
|
-
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1419
|
+
// InspectionPanel aliases
|
|
1420
|
+
export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
1425
1421
|
// IterationCcw aliases
|
|
1426
1422
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1427
1423
|
// Joystick aliases
|
|
1428
1424
|
export { default as JoystickIcon } from '../icons/joystick';
|
|
1425
|
+
// IterationCw aliases
|
|
1426
|
+
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1429
1427
|
// Kanban aliases
|
|
1430
1428
|
export { default as KanbanIcon } from '../icons/kanban';
|
|
1431
|
-
//
|
|
1432
|
-
export { default as
|
|
1429
|
+
// JapaneseYen aliases
|
|
1430
|
+
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1433
1431
|
// KeyRound aliases
|
|
1434
1432
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1435
1433
|
// Kayak aliases
|
|
1436
1434
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1435
|
+
// KeySquare aliases
|
|
1436
|
+
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1437
1437
|
// Key aliases
|
|
1438
1438
|
export { default as KeyIcon } from '../icons/key';
|
|
1439
1439
|
// KeyboardMusic aliases
|
|
1440
1440
|
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1441
|
+
// Keyboard aliases
|
|
1442
|
+
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1441
1443
|
// KeyboardOff aliases
|
|
1442
1444
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1443
1445
|
// LampCeiling aliases
|
|
1444
1446
|
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1445
1447
|
// LampDesk aliases
|
|
1446
1448
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1447
|
-
// Keyboard aliases
|
|
1448
|
-
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1449
1449
|
// LampFloor aliases
|
|
1450
1450
|
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1451
1451
|
// LampWallDown aliases
|
|
@@ -1454,16 +1454,16 @@ export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
|
1454
1454
|
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1455
1455
|
// Lamp aliases
|
|
1456
1456
|
export { default as LampIcon } from '../icons/lamp';
|
|
1457
|
-
// LandPlot aliases
|
|
1458
|
-
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1459
1457
|
// Landmark aliases
|
|
1460
1458
|
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1461
|
-
//
|
|
1462
|
-
export { default as
|
|
1459
|
+
// LandPlot aliases
|
|
1460
|
+
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1463
1461
|
// LaptopMinimalCheck aliases
|
|
1464
1462
|
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1465
1463
|
// Laptop aliases
|
|
1466
1464
|
export { default as LaptopIcon } from '../icons/laptop';
|
|
1465
|
+
// Languages aliases
|
|
1466
|
+
export { default as LanguagesIcon } from '../icons/languages';
|
|
1467
1467
|
// LassoSelect aliases
|
|
1468
1468
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1469
1469
|
// Lasso aliases
|
|
@@ -1474,130 +1474,130 @@ export { default as LaughIcon } from '../icons/laugh';
|
|
|
1474
1474
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1475
1475
|
// LayersPlus aliases
|
|
1476
1476
|
export { default as LayersPlusIcon } from '../icons/layers-plus';
|
|
1477
|
-
// LayoutList aliases
|
|
1478
|
-
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1479
|
-
// LayoutDashboard aliases
|
|
1480
|
-
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1481
1477
|
// LayoutGrid aliases
|
|
1482
1478
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1479
|
+
// LayoutDashboard aliases
|
|
1480
|
+
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1481
|
+
// LayoutList aliases
|
|
1482
|
+
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1483
1483
|
// LayoutPanelLeft aliases
|
|
1484
1484
|
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1485
1485
|
// LayoutPanelTop aliases
|
|
1486
1486
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1487
1487
|
// LayoutTemplate aliases
|
|
1488
1488
|
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1489
|
-
// Leaf aliases
|
|
1490
|
-
export { default as LeafIcon } from '../icons/leaf';
|
|
1491
1489
|
// LeafyGreen aliases
|
|
1492
1490
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1491
|
+
// Leaf aliases
|
|
1492
|
+
export { default as LeafIcon } from '../icons/leaf';
|
|
1493
1493
|
// Lectern aliases
|
|
1494
1494
|
export { default as LecternIcon } from '../icons/lectern';
|
|
1495
|
-
// LensConcave aliases
|
|
1496
|
-
export { default as LensConcaveIcon } from '../icons/lens-concave';
|
|
1497
1495
|
// LensConvex aliases
|
|
1498
1496
|
export { default as LensConvexIcon } from '../icons/lens-convex';
|
|
1497
|
+
// LensConcave aliases
|
|
1498
|
+
export { default as LensConcaveIcon } from '../icons/lens-concave';
|
|
1499
1499
|
// LibraryBig aliases
|
|
1500
1500
|
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1501
|
-
// LifeBuoy aliases
|
|
1502
|
-
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1503
1501
|
// Library aliases
|
|
1504
1502
|
export { default as LibraryIcon } from '../icons/library';
|
|
1505
1503
|
// Ligature aliases
|
|
1506
1504
|
export { default as LigatureIcon } from '../icons/ligature';
|
|
1505
|
+
// LifeBuoy aliases
|
|
1506
|
+
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1507
1507
|
// LightbulbOff aliases
|
|
1508
1508
|
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1509
1509
|
// Lightbulb aliases
|
|
1510
1510
|
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1511
|
-
// LineSquiggle aliases
|
|
1512
|
-
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1513
1511
|
// LineDotRightHorizontal aliases
|
|
1514
1512
|
export { default as LineDotRightHorizontalIcon } from '../icons/line-dot-right-horizontal';
|
|
1515
1513
|
// Link2Off aliases
|
|
1516
1514
|
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1515
|
+
// LineSquiggle aliases
|
|
1516
|
+
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1517
1517
|
// Link2 aliases
|
|
1518
1518
|
export { default as Link2Icon } from '../icons/link-2';
|
|
1519
|
-
// ListChecks aliases
|
|
1520
|
-
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1521
1519
|
// Link aliases
|
|
1522
1520
|
export { default as LinkIcon } from '../icons/link';
|
|
1523
1521
|
// ListCheck aliases
|
|
1524
1522
|
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1525
|
-
//
|
|
1526
|
-
export { default as
|
|
1523
|
+
// ListChecks aliases
|
|
1524
|
+
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1527
1525
|
// ListChevronsDownUp aliases
|
|
1528
1526
|
export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-up';
|
|
1529
1527
|
// ListCollapse aliases
|
|
1530
1528
|
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1529
|
+
// ListChevronsUpDown aliases
|
|
1530
|
+
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1531
1531
|
// ListEnd aliases
|
|
1532
1532
|
export { default as ListEndIcon } from '../icons/list-end';
|
|
1533
1533
|
// ListFilterPlus aliases
|
|
1534
1534
|
export { default as ListFilterPlusIcon } from '../icons/list-filter-plus';
|
|
1535
|
-
// ListFilter aliases
|
|
1536
|
-
export { default as ListFilterIcon } from '../icons/list-filter';
|
|
1537
1535
|
// ListMinus aliases
|
|
1538
1536
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1539
1537
|
// ListMusic aliases
|
|
1540
1538
|
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1541
|
-
//
|
|
1542
|
-
export { default as
|
|
1539
|
+
// ListFilter aliases
|
|
1540
|
+
export { default as ListFilterIcon } from '../icons/list-filter';
|
|
1543
1541
|
// ListPlus aliases
|
|
1544
1542
|
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1543
|
+
// ListOrdered aliases
|
|
1544
|
+
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1545
1545
|
// ListRestart aliases
|
|
1546
1546
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1547
|
-
// ListTodo aliases
|
|
1548
|
-
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1549
1547
|
// ListStart aliases
|
|
1550
1548
|
export { default as ListStartIcon } from '../icons/list-start';
|
|
1549
|
+
// ListTodo aliases
|
|
1550
|
+
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1551
1551
|
// ListTree aliases
|
|
1552
1552
|
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1553
|
-
// ListVideo aliases
|
|
1554
|
-
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1555
|
-
// List aliases
|
|
1556
|
-
export { default as ListIcon } from '../icons/list';
|
|
1557
1553
|
// ListX aliases
|
|
1558
1554
|
export { default as ListXIcon } from '../icons/list-x';
|
|
1559
|
-
//
|
|
1560
|
-
export { default as
|
|
1561
|
-
// LocateOff aliases
|
|
1562
|
-
export { default as LocateOffIcon } from '../icons/locate-off';
|
|
1555
|
+
// ListVideo aliases
|
|
1556
|
+
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1563
1557
|
// Loader aliases
|
|
1564
1558
|
export { default as LoaderIcon } from '../icons/loader';
|
|
1559
|
+
// LoaderPinwheel aliases
|
|
1560
|
+
export { default as LoaderPinwheelIcon } from '../icons/loader-pinwheel';
|
|
1561
|
+
// List aliases
|
|
1562
|
+
export { default as ListIcon } from '../icons/list';
|
|
1565
1563
|
// LocateFixed aliases
|
|
1566
1564
|
export { default as LocateFixedIcon } from '../icons/locate-fixed';
|
|
1567
|
-
//
|
|
1568
|
-
export { default as
|
|
1565
|
+
// LocateOff aliases
|
|
1566
|
+
export { default as LocateOffIcon } from '../icons/locate-off';
|
|
1569
1567
|
// Locate aliases
|
|
1570
1568
|
export { default as LocateIcon } from '../icons/locate';
|
|
1571
1569
|
// LockKeyhole aliases
|
|
1572
1570
|
export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
1571
|
+
// Lock aliases
|
|
1572
|
+
export { default as LockIcon } from '../icons/lock';
|
|
1573
|
+
// Logs aliases
|
|
1574
|
+
export { default as LogsIcon } from '../icons/logs';
|
|
1573
1575
|
// LogIn aliases
|
|
1574
1576
|
export { default as LogInIcon } from '../icons/log-in';
|
|
1575
1577
|
// LogOut aliases
|
|
1576
1578
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1577
1579
|
// Lollipop aliases
|
|
1578
1580
|
export { default as LollipopIcon } from '../icons/lollipop';
|
|
1579
|
-
// Logs aliases
|
|
1580
|
-
export { default as LogsIcon } from '../icons/logs';
|
|
1581
|
-
// Luggage aliases
|
|
1582
|
-
export { default as LuggageIcon } from '../icons/luggage';
|
|
1583
1581
|
// Magnet aliases
|
|
1584
1582
|
export { default as MagnetIcon } from '../icons/magnet';
|
|
1583
|
+
// Luggage aliases
|
|
1584
|
+
export { default as LuggageIcon } from '../icons/luggage';
|
|
1585
1585
|
// MailCheck aliases
|
|
1586
1586
|
export { default as MailCheckIcon } from '../icons/mail-check';
|
|
1587
1587
|
// MailMinus aliases
|
|
1588
1588
|
export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
1589
|
-
// MailOpen aliases
|
|
1590
|
-
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1591
1589
|
// MailPlus aliases
|
|
1592
1590
|
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1593
|
-
//
|
|
1594
|
-
export { default as
|
|
1591
|
+
// MailOpen aliases
|
|
1592
|
+
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1595
1593
|
// MailWarning aliases
|
|
1596
1594
|
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1597
|
-
//
|
|
1598
|
-
export { default as
|
|
1595
|
+
// MailSearch aliases
|
|
1596
|
+
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1599
1597
|
// MailX aliases
|
|
1600
1598
|
export { default as MailXIcon } from '../icons/mail-x';
|
|
1599
|
+
// Mail aliases
|
|
1600
|
+
export { default as MailIcon } from '../icons/mail';
|
|
1601
1601
|
// Mailbox aliases
|
|
1602
1602
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1603
1603
|
// Mails aliases
|
|
@@ -1610,62 +1610,62 @@ export { default as MapMinusIcon } from '../icons/map-minus';
|
|
|
1610
1610
|
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1611
1611
|
// MapPinHouse aliases
|
|
1612
1612
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1613
|
-
// MapPinMinus aliases
|
|
1614
|
-
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1615
1613
|
// MapPinMinusInside aliases
|
|
1616
1614
|
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1615
|
+
// MapPinMinus aliases
|
|
1616
|
+
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1617
1617
|
// MapPinOff aliases
|
|
1618
1618
|
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1619
|
-
// MapPinPlus aliases
|
|
1620
|
-
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1621
1619
|
// MapPinPlusInside aliases
|
|
1622
1620
|
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1623
|
-
//
|
|
1624
|
-
export { default as
|
|
1621
|
+
// MapPinPlus aliases
|
|
1622
|
+
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1625
1623
|
// MapPinXInside aliases
|
|
1626
1624
|
export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
1627
|
-
//
|
|
1628
|
-
export { default as
|
|
1629
|
-
// MapPlus aliases
|
|
1630
|
-
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1625
|
+
// MapPinX aliases
|
|
1626
|
+
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1631
1627
|
// MapPin aliases
|
|
1632
1628
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1629
|
+
// MapPinned aliases
|
|
1630
|
+
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1633
1631
|
// Map aliases
|
|
1634
1632
|
export { default as MapIcon } from '../icons/map';
|
|
1635
|
-
//
|
|
1636
|
-
export { default as
|
|
1633
|
+
// MapPlus aliases
|
|
1634
|
+
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1637
1635
|
// MarsStroke aliases
|
|
1638
1636
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1639
1637
|
// Martini aliases
|
|
1640
1638
|
export { default as MartiniIcon } from '../icons/martini';
|
|
1641
|
-
//
|
|
1642
|
-
export { default as
|
|
1639
|
+
// Mars aliases
|
|
1640
|
+
export { default as MarsIcon } from '../icons/mars';
|
|
1643
1641
|
// Maximize aliases
|
|
1644
1642
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1645
|
-
//
|
|
1646
|
-
export { default as
|
|
1643
|
+
// Maximize2 aliases
|
|
1644
|
+
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1647
1645
|
// Medal aliases
|
|
1648
1646
|
export { default as MedalIcon } from '../icons/medal';
|
|
1649
1647
|
// Megaphone aliases
|
|
1650
1648
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1649
|
+
// MegaphoneOff aliases
|
|
1650
|
+
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1651
1651
|
// Meh aliases
|
|
1652
1652
|
export { default as MehIcon } from '../icons/meh';
|
|
1653
1653
|
// MemoryStick aliases
|
|
1654
1654
|
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1655
|
+
// Menu aliases
|
|
1656
|
+
export { default as MenuIcon } from '../icons/menu';
|
|
1655
1657
|
// Merge aliases
|
|
1656
1658
|
export { default as MergeIcon } from '../icons/merge';
|
|
1657
1659
|
// MessageCircleCheck aliases
|
|
1658
1660
|
export { default as MessageCircleCheckIcon } from '../icons/message-circle-check';
|
|
1659
|
-
// Menu aliases
|
|
1660
|
-
export { default as MenuIcon } from '../icons/menu';
|
|
1661
1661
|
// MessageCircleCode aliases
|
|
1662
1662
|
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1663
|
+
// MessageCircleDashed aliases
|
|
1664
|
+
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1663
1665
|
// MessageCircleMore aliases
|
|
1664
1666
|
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1665
1667
|
// MessageCircleHeart aliases
|
|
1666
1668
|
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1667
|
-
// MessageCircleDashed aliases
|
|
1668
|
-
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1669
1669
|
// MessageCircleOff aliases
|
|
1670
1670
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1671
1671
|
// MessageCirclePlus aliases
|
|
@@ -1674,14 +1674,14 @@ export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
|
1674
1674
|
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1675
1675
|
// MessageCircleX aliases
|
|
1676
1676
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1677
|
-
// MessageCircle aliases
|
|
1678
|
-
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1679
1677
|
// MessageCircleWarning aliases
|
|
1680
1678
|
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1681
|
-
//
|
|
1682
|
-
export { default as
|
|
1679
|
+
// MessageCircle aliases
|
|
1680
|
+
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1683
1681
|
// MessageSquareCheck aliases
|
|
1684
1682
|
export { default as MessageSquareCheckIcon } from '../icons/message-square-check';
|
|
1683
|
+
// MessageSquareCode aliases
|
|
1684
|
+
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1685
1685
|
// MessageSquareDashed aliases
|
|
1686
1686
|
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1687
1687
|
// MessageSquareDiff aliases
|
|
@@ -1692,10 +1692,10 @@ export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
|
1692
1692
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1693
1693
|
// MessageSquareLock aliases
|
|
1694
1694
|
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1695
|
-
// MessageSquareOff aliases
|
|
1696
|
-
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1697
1695
|
// MessageSquareMore aliases
|
|
1698
1696
|
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1697
|
+
// MessageSquareOff aliases
|
|
1698
|
+
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1699
1699
|
// MessageSquarePlus aliases
|
|
1700
1700
|
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1701
1701
|
// MessageSquareQuote aliases
|
|
@@ -1704,48 +1704,48 @@ export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote
|
|
|
1704
1704
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1705
1705
|
// MessageSquareShare aliases
|
|
1706
1706
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1707
|
-
// MessageSquareText aliases
|
|
1708
|
-
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1709
1707
|
// MessageSquareWarning aliases
|
|
1710
1708
|
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1711
|
-
//
|
|
1712
|
-
export { default as
|
|
1709
|
+
// MessageSquareText aliases
|
|
1710
|
+
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1713
1711
|
// MessageSquareX aliases
|
|
1714
1712
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1713
|
+
// MessageSquare aliases
|
|
1714
|
+
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1715
1715
|
// MessagesSquare aliases
|
|
1716
1716
|
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1717
1717
|
// Metronome aliases
|
|
1718
1718
|
export { default as MetronomeIcon } from '../icons/metronome';
|
|
1719
|
-
// MicOff aliases
|
|
1720
|
-
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1721
1719
|
// Mic aliases
|
|
1722
1720
|
export { default as MicIcon } from '../icons/mic';
|
|
1723
1721
|
// Microchip aliases
|
|
1724
1722
|
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1723
|
+
// MicOff aliases
|
|
1724
|
+
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1725
1725
|
// Microscope aliases
|
|
1726
1726
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1727
1727
|
// Microwave aliases
|
|
1728
1728
|
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1729
|
-
// Milestone aliases
|
|
1730
|
-
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1731
|
-
// Minimize2 aliases
|
|
1732
|
-
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1733
1729
|
// MilkOff aliases
|
|
1734
1730
|
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1735
1731
|
// Milk aliases
|
|
1736
1732
|
export { default as MilkIcon } from '../icons/milk';
|
|
1737
|
-
//
|
|
1738
|
-
export { default as
|
|
1733
|
+
// Milestone aliases
|
|
1734
|
+
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1735
|
+
// Minimize2 aliases
|
|
1736
|
+
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1739
1737
|
// Minimize aliases
|
|
1740
1738
|
export { default as MinimizeIcon } from '../icons/minimize';
|
|
1739
|
+
// Minus aliases
|
|
1740
|
+
export { default as MinusIcon } from '../icons/minus';
|
|
1741
1741
|
// MirrorRectangular aliases
|
|
1742
1742
|
export { default as MirrorRectangularIcon } from '../icons/mirror-rectangular';
|
|
1743
|
+
// MonitorCheck aliases
|
|
1744
|
+
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1743
1745
|
// MirrorRound aliases
|
|
1744
1746
|
export { default as MirrorRoundIcon } from '../icons/mirror-round';
|
|
1745
1747
|
// MonitorCloud aliases
|
|
1746
1748
|
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1747
|
-
// MonitorCheck aliases
|
|
1748
|
-
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1749
1749
|
// MonitorCog aliases
|
|
1750
1750
|
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1751
1751
|
// MonitorDot aliases
|
|
@@ -1754,30 +1754,30 @@ export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
|
1754
1754
|
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1755
1755
|
// MonitorOff aliases
|
|
1756
1756
|
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1757
|
-
// MonitorPause aliases
|
|
1758
|
-
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1759
1757
|
// MonitorPlay aliases
|
|
1760
1758
|
export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
1761
|
-
//
|
|
1762
|
-
export { default as
|
|
1759
|
+
// MonitorPause aliases
|
|
1760
|
+
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1763
1761
|
// MonitorSmartphone aliases
|
|
1764
1762
|
export { default as MonitorSmartphoneIcon } from '../icons/monitor-smartphone';
|
|
1763
|
+
// MonitorSpeaker aliases
|
|
1764
|
+
export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
1765
1765
|
// MonitorStop aliases
|
|
1766
1766
|
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1767
1767
|
// MonitorUp aliases
|
|
1768
1768
|
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1769
|
-
// MonitorX aliases
|
|
1770
|
-
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1771
1769
|
// Monitor aliases
|
|
1772
1770
|
export { default as MonitorIcon } from '../icons/monitor';
|
|
1771
|
+
// MonitorX aliases
|
|
1772
|
+
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1773
1773
|
// MoonStar aliases
|
|
1774
1774
|
export { default as MoonStarIcon } from '../icons/moon-star';
|
|
1775
1775
|
// Moon aliases
|
|
1776
1776
|
export { default as MoonIcon } from '../icons/moon';
|
|
1777
|
-
// Motorbike aliases
|
|
1778
|
-
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1779
1777
|
// MountainSnow aliases
|
|
1780
1778
|
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1779
|
+
// Motorbike aliases
|
|
1780
|
+
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1781
1781
|
// Mountain aliases
|
|
1782
1782
|
export { default as MountainIcon } from '../icons/mountain';
|
|
1783
1783
|
// MouseLeft aliases
|
|
@@ -1788,32 +1788,32 @@ export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
|
1788
1788
|
export { default as MousePointer2OffIcon } from '../icons/mouse-pointer-2-off';
|
|
1789
1789
|
// MousePointer2 aliases
|
|
1790
1790
|
export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
1791
|
-
// MousePointerClick aliases
|
|
1792
|
-
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1793
1791
|
// MousePointerBan aliases
|
|
1794
1792
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1793
|
+
// MousePointerClick aliases
|
|
1794
|
+
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1795
1795
|
// MousePointer aliases
|
|
1796
1796
|
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1797
1797
|
// MouseRight aliases
|
|
1798
1798
|
export { default as MouseRightIcon } from '../icons/mouse-right';
|
|
1799
1799
|
// Mouse aliases
|
|
1800
1800
|
export { default as MouseIcon } from '../icons/mouse';
|
|
1801
|
+
// MoveDownLeft aliases
|
|
1802
|
+
export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
1801
1803
|
// MoveDiagonal2 aliases
|
|
1802
1804
|
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1803
1805
|
// MoveDiagonal aliases
|
|
1804
1806
|
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1805
|
-
// MoveDownLeft aliases
|
|
1806
|
-
export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
1807
1807
|
// MoveDownRight aliases
|
|
1808
1808
|
export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
1809
1809
|
// MoveHorizontal aliases
|
|
1810
1810
|
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1811
1811
|
// MoveDown aliases
|
|
1812
1812
|
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1813
|
-
// MoveRight aliases
|
|
1814
|
-
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1815
1813
|
// MoveLeft aliases
|
|
1816
1814
|
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1815
|
+
// MoveRight aliases
|
|
1816
|
+
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1817
1817
|
// MoveUpLeft aliases
|
|
1818
1818
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1819
1819
|
// MoveUpRight aliases
|
|
@@ -1832,24 +1832,24 @@ export { default as Music3Icon } from '../icons/music-3';
|
|
|
1832
1832
|
export { default as Music4Icon } from '../icons/music-4';
|
|
1833
1833
|
// Music aliases
|
|
1834
1834
|
export { default as MusicIcon } from '../icons/music';
|
|
1835
|
+
// Navigation2 aliases
|
|
1836
|
+
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1835
1837
|
// Navigation2Off aliases
|
|
1836
1838
|
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1837
1839
|
// NavigationOff aliases
|
|
1838
1840
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1839
|
-
//
|
|
1840
|
-
export { default as
|
|
1841
|
+
// Network aliases
|
|
1842
|
+
export { default as NetworkIcon } from '../icons/network';
|
|
1841
1843
|
// Navigation aliases
|
|
1842
1844
|
export { default as NavigationIcon } from '../icons/navigation';
|
|
1843
1845
|
// Newspaper aliases
|
|
1844
1846
|
export { default as NewspaperIcon } from '../icons/newspaper';
|
|
1845
|
-
// Network aliases
|
|
1846
|
-
export { default as NetworkIcon } from '../icons/network';
|
|
1847
1847
|
// Nfc aliases
|
|
1848
1848
|
export { default as NfcIcon } from '../icons/nfc';
|
|
1849
|
-
// NotebookPen aliases
|
|
1850
|
-
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1851
1849
|
// NonBinary aliases
|
|
1852
1850
|
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1851
|
+
// NotebookPen aliases
|
|
1852
|
+
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1853
1853
|
// NotebookTabs aliases
|
|
1854
1854
|
export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
1855
1855
|
// NotebookText aliases
|
|
@@ -1862,80 +1862,80 @@ export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
|
1862
1862
|
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1863
1863
|
// NutOff aliases
|
|
1864
1864
|
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1865
|
-
// Octagon aliases
|
|
1866
|
-
export { default as OctagonIcon } from '../icons/octagon';
|
|
1867
|
-
// OctagonMinus aliases
|
|
1868
|
-
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1869
1865
|
// Nut aliases
|
|
1870
1866
|
export { default as NutIcon } from '../icons/nut';
|
|
1867
|
+
// OctagonMinus aliases
|
|
1868
|
+
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1869
|
+
// Octagon aliases
|
|
1870
|
+
export { default as OctagonIcon } from '../icons/octagon';
|
|
1871
1871
|
// Omega aliases
|
|
1872
1872
|
export { default as OmegaIcon } from '../icons/omega';
|
|
1873
|
+
// Origami aliases
|
|
1874
|
+
export { default as OrigamiIcon } from '../icons/origami';
|
|
1873
1875
|
// Option aliases
|
|
1874
1876
|
export { default as OptionIcon } from '../icons/option';
|
|
1875
1877
|
// Orbit aliases
|
|
1876
1878
|
export { default as OrbitIcon } from '../icons/orbit';
|
|
1877
|
-
// Origami aliases
|
|
1878
|
-
export { default as OrigamiIcon } from '../icons/origami';
|
|
1879
1879
|
// Package2 aliases
|
|
1880
1880
|
export { default as Package2Icon } from '../icons/package-2';
|
|
1881
1881
|
// PackageCheck aliases
|
|
1882
1882
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1883
|
-
// PackageOpen aliases
|
|
1884
|
-
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1885
1883
|
// PackageMinus aliases
|
|
1886
1884
|
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1887
|
-
//
|
|
1888
|
-
export { default as
|
|
1885
|
+
// PackageOpen aliases
|
|
1886
|
+
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1889
1887
|
// PackageSearch aliases
|
|
1890
1888
|
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1889
|
+
// PackagePlus aliases
|
|
1890
|
+
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1891
1891
|
// PackageX aliases
|
|
1892
1892
|
export { default as PackageXIcon } from '../icons/package-x';
|
|
1893
1893
|
// Package aliases
|
|
1894
1894
|
export { default as PackageIcon } from '../icons/package';
|
|
1895
1895
|
// PaintBucket aliases
|
|
1896
1896
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1897
|
-
// Paintbrush aliases
|
|
1898
|
-
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1899
1897
|
// PaintRoller aliases
|
|
1900
1898
|
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1901
|
-
//
|
|
1902
|
-
export { default as
|
|
1899
|
+
// Paintbrush aliases
|
|
1900
|
+
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1903
1901
|
// Palette aliases
|
|
1904
1902
|
export { default as PaletteIcon } from '../icons/palette';
|
|
1903
|
+
// Panda aliases
|
|
1904
|
+
export { default as PandaIcon } from '../icons/panda';
|
|
1905
1905
|
// PanelBottomClose aliases
|
|
1906
1906
|
export { default as PanelBottomCloseIcon } from '../icons/panel-bottom-close';
|
|
1907
|
-
// PanelBottom aliases
|
|
1908
|
-
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1909
1907
|
// PanelBottomOpen aliases
|
|
1910
1908
|
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1911
1909
|
// PanelLeftRightDashed aliases
|
|
1912
1910
|
export { default as PanelLeftRightDashedIcon } from '../icons/panel-left-right-dashed';
|
|
1911
|
+
// PanelBottom aliases
|
|
1912
|
+
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1913
1913
|
// PanelRightClose aliases
|
|
1914
1914
|
export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
1915
|
-
// PanelRightOpen aliases
|
|
1916
|
-
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1917
1915
|
// PanelRight aliases
|
|
1918
1916
|
export { default as PanelRightIcon } from '../icons/panel-right';
|
|
1917
|
+
// PanelRightOpen aliases
|
|
1918
|
+
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1919
1919
|
// PanelTopBottomDashed aliases
|
|
1920
1920
|
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1921
|
-
// PanelTopClose aliases
|
|
1922
|
-
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1923
1921
|
// PanelTopOpen aliases
|
|
1924
1922
|
export { default as PanelTopOpenIcon } from '../icons/panel-top-open';
|
|
1923
|
+
// PanelTopClose aliases
|
|
1924
|
+
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1925
1925
|
// PanelTop aliases
|
|
1926
1926
|
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1927
1927
|
// PanelsLeftBottom aliases
|
|
1928
1928
|
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1929
1929
|
// PanelsRightBottom aliases
|
|
1930
1930
|
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1931
|
-
// ParkingMeter aliases
|
|
1932
|
-
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1933
|
-
// Parentheses aliases
|
|
1934
|
-
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
1935
1931
|
// Paperclip aliases
|
|
1936
1932
|
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1933
|
+
// Parentheses aliases
|
|
1934
|
+
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
1937
1935
|
// PartyPopper aliases
|
|
1938
1936
|
export { default as PartyPopperIcon } from '../icons/party-popper';
|
|
1937
|
+
// ParkingMeter aliases
|
|
1938
|
+
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1939
1939
|
// Pause aliases
|
|
1940
1940
|
export { default as PauseIcon } from '../icons/pause';
|
|
1941
1941
|
// PawPrint aliases
|
|
@@ -1950,28 +1950,28 @@ export { default as PenToolIcon } from '../icons/pen-tool';
|
|
|
1950
1950
|
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
1951
1951
|
// PencilOff aliases
|
|
1952
1952
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
1953
|
-
// Pencil aliases
|
|
1954
|
-
export { default as PencilIcon } from '../icons/pencil';
|
|
1955
1953
|
// PencilRuler aliases
|
|
1956
1954
|
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
1957
|
-
//
|
|
1958
|
-
export { default as
|
|
1955
|
+
// Pencil aliases
|
|
1956
|
+
export { default as PencilIcon } from '../icons/pencil';
|
|
1959
1957
|
// Pentagon aliases
|
|
1960
1958
|
export { default as PentagonIcon } from '../icons/pentagon';
|
|
1959
|
+
// Percent aliases
|
|
1960
|
+
export { default as PercentIcon } from '../icons/percent';
|
|
1961
1961
|
// PersonStanding aliases
|
|
1962
1962
|
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1963
|
+
// PhoneForwarded aliases
|
|
1964
|
+
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1963
1965
|
// PhilippinePeso aliases
|
|
1964
1966
|
export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
1965
1967
|
// PhoneCall aliases
|
|
1966
1968
|
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1967
|
-
// PhoneForwarded aliases
|
|
1968
|
-
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1969
1969
|
// PhoneMissed aliases
|
|
1970
1970
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
1971
|
-
// PhoneIncoming aliases
|
|
1972
|
-
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1973
1971
|
// PhoneOff aliases
|
|
1974
1972
|
export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
1973
|
+
// PhoneIncoming aliases
|
|
1974
|
+
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1975
1975
|
// PhoneOutgoing aliases
|
|
1976
1976
|
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
1977
1977
|
// Phone aliases
|
|
@@ -1982,48 +1982,48 @@ export { default as PianoIcon } from '../icons/piano';
|
|
|
1982
1982
|
export { default as PiIcon } from '../icons/pi';
|
|
1983
1983
|
// Pickaxe aliases
|
|
1984
1984
|
export { default as PickaxeIcon } from '../icons/pickaxe';
|
|
1985
|
-
// PictureInPicture aliases
|
|
1986
|
-
export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
1987
1985
|
// PictureInPicture2 aliases
|
|
1988
1986
|
export { default as PictureInPicture2Icon } from '../icons/picture-in-picture-2';
|
|
1987
|
+
// PictureInPicture aliases
|
|
1988
|
+
export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
1989
1989
|
// PiggyBank aliases
|
|
1990
1990
|
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
1991
|
+
// PilcrowLeft aliases
|
|
1992
|
+
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1991
1993
|
// PilcrowRight aliases
|
|
1992
1994
|
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
1995
|
+
// Pilcrow aliases
|
|
1996
|
+
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
1993
1997
|
// PillBottle aliases
|
|
1994
1998
|
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
1995
|
-
// PilcrowLeft aliases
|
|
1996
|
-
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1997
1999
|
// Pill aliases
|
|
1998
2000
|
export { default as PillIcon } from '../icons/pill';
|
|
1999
|
-
// PinOff aliases
|
|
2000
|
-
export { default as PinOffIcon } from '../icons/pin-off';
|
|
2001
|
-
// Pilcrow aliases
|
|
2002
|
-
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
2003
2001
|
// Pin aliases
|
|
2004
2002
|
export { default as PinIcon } from '../icons/pin';
|
|
2005
|
-
//
|
|
2006
|
-
export { default as
|
|
2003
|
+
// PinOff aliases
|
|
2004
|
+
export { default as PinOffIcon } from '../icons/pin-off';
|
|
2007
2005
|
// Pizza aliases
|
|
2008
2006
|
export { default as PizzaIcon } from '../icons/pizza';
|
|
2009
|
-
//
|
|
2010
|
-
export { default as
|
|
2007
|
+
// Pipette aliases
|
|
2008
|
+
export { default as PipetteIcon } from '../icons/pipette';
|
|
2011
2009
|
// PlaneLanding aliases
|
|
2012
2010
|
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
2013
|
-
//
|
|
2014
|
-
export { default as
|
|
2011
|
+
// PlaneTakeoff aliases
|
|
2012
|
+
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
2015
2013
|
// Play aliases
|
|
2016
2014
|
export { default as PlayIcon } from '../icons/play';
|
|
2015
|
+
// Plane aliases
|
|
2016
|
+
export { default as PlaneIcon } from '../icons/plane';
|
|
2017
2017
|
// Plug2 aliases
|
|
2018
2018
|
export { default as Plug2Icon } from '../icons/plug-2';
|
|
2019
|
-
// Plus aliases
|
|
2020
|
-
export { default as PlusIcon } from '../icons/plus';
|
|
2021
|
-
// Podcast aliases
|
|
2022
|
-
export { default as PodcastIcon } from '../icons/podcast';
|
|
2023
2019
|
// Plug aliases
|
|
2024
2020
|
export { default as PlugIcon } from '../icons/plug';
|
|
2021
|
+
// Plus aliases
|
|
2022
|
+
export { default as PlusIcon } from '../icons/plus';
|
|
2025
2023
|
// PocketKnife aliases
|
|
2026
2024
|
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2025
|
+
// Podcast aliases
|
|
2026
|
+
export { default as PodcastIcon } from '../icons/podcast';
|
|
2027
2027
|
// Pointer aliases
|
|
2028
2028
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2029
2029
|
// PointerOff aliases
|
|
@@ -2032,14 +2032,14 @@ export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
|
2032
2032
|
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2033
2033
|
// Popsicle aliases
|
|
2034
2034
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2035
|
+
// PowerOff aliases
|
|
2036
|
+
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2035
2037
|
// PoundSterling aliases
|
|
2036
2038
|
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2037
2039
|
// Power aliases
|
|
2038
2040
|
export { default as PowerIcon } from '../icons/power';
|
|
2039
2041
|
// Presentation aliases
|
|
2040
2042
|
export { default as PresentationIcon } from '../icons/presentation';
|
|
2041
|
-
// PowerOff aliases
|
|
2042
|
-
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2043
2043
|
// PrinterCheck aliases
|
|
2044
2044
|
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2045
2045
|
// PrinterX aliases
|
|
@@ -2048,58 +2048,58 @@ export { default as PrinterXIcon } from '../icons/printer-x';
|
|
|
2048
2048
|
export { default as PrinterIcon } from '../icons/printer';
|
|
2049
2049
|
// Projector aliases
|
|
2050
2050
|
export { default as ProjectorIcon } from '../icons/projector';
|
|
2051
|
-
// Proportions aliases
|
|
2052
|
-
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2053
2051
|
// Puzzle aliases
|
|
2054
2052
|
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2053
|
+
// Proportions aliases
|
|
2054
|
+
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2055
2055
|
// Pyramid aliases
|
|
2056
2056
|
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2057
2057
|
// QrCode aliases
|
|
2058
2058
|
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2059
2059
|
// Quote aliases
|
|
2060
2060
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2061
|
-
// Rabbit aliases
|
|
2062
|
-
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2063
2061
|
// Radar aliases
|
|
2064
2062
|
export { default as RadarIcon } from '../icons/radar';
|
|
2065
|
-
//
|
|
2066
|
-
export { default as
|
|
2063
|
+
// Rabbit aliases
|
|
2064
|
+
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2067
2065
|
// Radical aliases
|
|
2068
2066
|
export { default as RadicalIcon } from '../icons/radical';
|
|
2067
|
+
// Radiation aliases
|
|
2068
|
+
export { default as RadiationIcon } from '../icons/radiation';
|
|
2069
2069
|
// RadioReceiver aliases
|
|
2070
2070
|
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2071
2071
|
// RadioTower aliases
|
|
2072
2072
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2073
|
-
// Radio aliases
|
|
2074
|
-
export { default as RadioIcon } from '../icons/radio';
|
|
2075
|
-
// Radius aliases
|
|
2076
|
-
export { default as RadiusIcon } from '../icons/radius';
|
|
2077
2073
|
// Rainbow aliases
|
|
2078
2074
|
export { default as RainbowIcon } from '../icons/rainbow';
|
|
2075
|
+
// Radius aliases
|
|
2076
|
+
export { default as RadiusIcon } from '../icons/radius';
|
|
2077
|
+
// Radio aliases
|
|
2078
|
+
export { default as RadioIcon } from '../icons/radio';
|
|
2079
2079
|
// Rat aliases
|
|
2080
2080
|
export { default as RatIcon } from '../icons/rat';
|
|
2081
|
-
// Ratio aliases
|
|
2082
|
-
export { default as RatioIcon } from '../icons/ratio';
|
|
2083
2081
|
// ReceiptCent aliases
|
|
2084
2082
|
export { default as ReceiptCentIcon } from '../icons/receipt-cent';
|
|
2083
|
+
// Ratio aliases
|
|
2084
|
+
export { default as RatioIcon } from '../icons/ratio';
|
|
2085
2085
|
// ReceiptEuro aliases
|
|
2086
2086
|
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2087
2087
|
// ReceiptIndianRupee aliases
|
|
2088
2088
|
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2089
|
-
// ReceiptJapaneseYen aliases
|
|
2090
|
-
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2091
2089
|
// ReceiptPoundSterling aliases
|
|
2092
2090
|
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2091
|
+
// ReceiptJapaneseYen aliases
|
|
2092
|
+
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2093
|
+
// ReceiptSwissFranc aliases
|
|
2094
|
+
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2093
2095
|
// ReceiptRussianRuble aliases
|
|
2094
2096
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2095
2097
|
// ReceiptText aliases
|
|
2096
2098
|
export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
2097
|
-
// ReceiptSwissFranc aliases
|
|
2098
|
-
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2099
|
-
// Receipt aliases
|
|
2100
|
-
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2101
2099
|
// ReceiptTurkishLira aliases
|
|
2102
2100
|
export { default as ReceiptTurkishLiraIcon } from '../icons/receipt-turkish-lira';
|
|
2101
|
+
// Receipt aliases
|
|
2102
|
+
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2103
2103
|
// RectangleCircle aliases
|
|
2104
2104
|
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2105
2105
|
// RectangleHorizontal aliases
|
|
@@ -2108,14 +2108,14 @@ export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizonta
|
|
|
2108
2108
|
export { default as RectangleGogglesIcon } from '../icons/rectangle-goggles';
|
|
2109
2109
|
// RectangleVertical aliases
|
|
2110
2110
|
export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
2111
|
-
// Redo2 aliases
|
|
2112
|
-
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2113
2111
|
// Recycle aliases
|
|
2114
2112
|
export { default as RecycleIcon } from '../icons/recycle';
|
|
2115
|
-
//
|
|
2116
|
-
export { default as
|
|
2113
|
+
// Redo2 aliases
|
|
2114
|
+
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2117
2115
|
// Redo aliases
|
|
2118
2116
|
export { default as RedoIcon } from '../icons/redo';
|
|
2117
|
+
// RedoDot aliases
|
|
2118
|
+
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2119
2119
|
// RefreshCcwDot aliases
|
|
2120
2120
|
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2121
2121
|
// RefreshCcw aliases
|
|
@@ -2138,26 +2138,28 @@ export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
|
2138
2138
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2139
2139
|
// ReplaceAll aliases
|
|
2140
2140
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2141
|
+
// Replace aliases
|
|
2142
|
+
export { default as ReplaceIcon } from '../icons/replace';
|
|
2141
2143
|
// ReplyAll aliases
|
|
2142
2144
|
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2143
2145
|
// Reply aliases
|
|
2144
2146
|
export { default as ReplyIcon } from '../icons/reply';
|
|
2145
|
-
// Replace aliases
|
|
2146
|
-
export { default as ReplaceIcon } from '../icons/replace';
|
|
2147
2147
|
// Rewind aliases
|
|
2148
2148
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2149
|
-
// Rocket aliases
|
|
2150
|
-
export { default as RocketIcon } from '../icons/rocket';
|
|
2151
2149
|
// Ribbon aliases
|
|
2152
2150
|
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2151
|
+
// Road aliases
|
|
2152
|
+
export { default as RoadIcon } from '../icons/road';
|
|
2153
|
+
// Rocket aliases
|
|
2154
|
+
export { default as RocketIcon } from '../icons/rocket';
|
|
2153
2155
|
// RockingChair aliases
|
|
2154
2156
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2157
|
+
// Rose aliases
|
|
2158
|
+
export { default as RoseIcon } from '../icons/rose';
|
|
2155
2159
|
// RollerCoaster aliases
|
|
2156
2160
|
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2157
2161
|
// RotateCcwKey aliases
|
|
2158
2162
|
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2159
|
-
// Rose aliases
|
|
2160
|
-
export { default as RoseIcon } from '../icons/rose';
|
|
2161
2163
|
// RotateCcw aliases
|
|
2162
2164
|
export { default as RotateCcwIcon } from '../icons/rotate-ccw';
|
|
2163
2165
|
// RotateCcwSquare aliases
|
|
@@ -2172,92 +2174,92 @@ export { default as RouteOffIcon } from '../icons/route-off';
|
|
|
2172
2174
|
export { default as RouteIcon } from '../icons/route';
|
|
2173
2175
|
// Router aliases
|
|
2174
2176
|
export { default as RouterIcon } from '../icons/router';
|
|
2175
|
-
// Rss aliases
|
|
2176
|
-
export { default as RssIcon } from '../icons/rss';
|
|
2177
2177
|
// Rows4 aliases
|
|
2178
2178
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2179
|
+
// Rss aliases
|
|
2180
|
+
export { default as RssIcon } from '../icons/rss';
|
|
2179
2181
|
// RulerDimensionLine aliases
|
|
2180
2182
|
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2181
2183
|
// Ruler aliases
|
|
2182
2184
|
export { default as RulerIcon } from '../icons/ruler';
|
|
2183
2185
|
// RussianRuble aliases
|
|
2184
2186
|
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2185
|
-
// Salad aliases
|
|
2186
|
-
export { default as SaladIcon } from '../icons/salad';
|
|
2187
2187
|
// Sailboat aliases
|
|
2188
2188
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2189
|
+
// Salad aliases
|
|
2190
|
+
export { default as SaladIcon } from '../icons/salad';
|
|
2189
2191
|
// Sandwich aliases
|
|
2190
2192
|
export { default as SandwichIcon } from '../icons/sandwich';
|
|
2191
|
-
// Satellite aliases
|
|
2192
|
-
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2193
2193
|
// SatelliteDish aliases
|
|
2194
2194
|
export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
2195
2195
|
// SaudiRiyal aliases
|
|
2196
2196
|
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2197
2197
|
// SaveAll aliases
|
|
2198
2198
|
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2199
|
-
//
|
|
2200
|
-
export { default as
|
|
2199
|
+
// Satellite aliases
|
|
2200
|
+
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2201
2201
|
// SaveOff aliases
|
|
2202
2202
|
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2203
|
+
// Save aliases
|
|
2204
|
+
export { default as SaveIcon } from '../icons/save';
|
|
2203
2205
|
// Scaling aliases
|
|
2204
2206
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2205
|
-
// Scale aliases
|
|
2206
|
-
export { default as ScaleIcon } from '../icons/scale';
|
|
2207
2207
|
// ScanBarcode aliases
|
|
2208
2208
|
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2209
|
+
// Scale aliases
|
|
2210
|
+
export { default as ScaleIcon } from '../icons/scale';
|
|
2209
2211
|
// ScanEye aliases
|
|
2210
2212
|
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2211
2213
|
// ScanFace aliases
|
|
2212
2214
|
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2213
|
-
// ScanLine aliases
|
|
2214
|
-
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2215
2215
|
// ScanHeart aliases
|
|
2216
2216
|
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2217
|
-
//
|
|
2218
|
-
export { default as
|
|
2217
|
+
// ScanLine aliases
|
|
2218
|
+
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2219
2219
|
// ScanQrCode aliases
|
|
2220
2220
|
export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
2221
|
+
// ScanSearch aliases
|
|
2222
|
+
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2221
2223
|
// ScanText aliases
|
|
2222
2224
|
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2223
2225
|
// Scan aliases
|
|
2224
2226
|
export { default as ScanIcon } from '../icons/scan';
|
|
2225
2227
|
// School aliases
|
|
2226
2228
|
export { default as SchoolIcon } from '../icons/school';
|
|
2227
|
-
// Scissors aliases
|
|
2228
|
-
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2229
2229
|
// ScissorsLineDashed aliases
|
|
2230
2230
|
export { default as ScissorsLineDashedIcon } from '../icons/scissors-line-dashed';
|
|
2231
|
-
//
|
|
2232
|
-
export { default as
|
|
2231
|
+
// Scissors aliases
|
|
2232
|
+
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2233
2233
|
// Scooter aliases
|
|
2234
2234
|
export { default as ScooterIcon } from '../icons/scooter';
|
|
2235
|
-
//
|
|
2236
|
-
export { default as
|
|
2235
|
+
// ScreenShareOff aliases
|
|
2236
|
+
export { default as ScreenShareOffIcon } from '../icons/screen-share-off';
|
|
2237
2237
|
// ScreenShare aliases
|
|
2238
2238
|
export { default as ScreenShareIcon } from '../icons/screen-share';
|
|
2239
2239
|
// ScrollText aliases
|
|
2240
2240
|
export { default as ScrollTextIcon } from '../icons/scroll-text';
|
|
2241
|
+
// Scroll aliases
|
|
2242
|
+
export { default as ScrollIcon } from '../icons/scroll';
|
|
2241
2243
|
// SearchAlert aliases
|
|
2242
2244
|
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2243
|
-
// SearchCode aliases
|
|
2244
|
-
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2245
2245
|
// SearchCheck aliases
|
|
2246
2246
|
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2247
|
+
// SearchCode aliases
|
|
2248
|
+
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2247
2249
|
// SearchSlash aliases
|
|
2248
2250
|
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2249
2251
|
// SearchX aliases
|
|
2250
2252
|
export { default as SearchXIcon } from '../icons/search-x';
|
|
2251
|
-
// Section aliases
|
|
2252
|
-
export { default as SectionIcon } from '../icons/section';
|
|
2253
2253
|
// Search aliases
|
|
2254
2254
|
export { default as SearchIcon } from '../icons/search';
|
|
2255
|
+
// Section aliases
|
|
2256
|
+
export { default as SectionIcon } from '../icons/section';
|
|
2255
2257
|
// SendToBack aliases
|
|
2256
2258
|
export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
2257
|
-
// Send aliases
|
|
2258
|
-
export { default as SendIcon } from '../icons/send';
|
|
2259
2259
|
// SeparatorHorizontal aliases
|
|
2260
2260
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2261
|
+
// Send aliases
|
|
2262
|
+
export { default as SendIcon } from '../icons/send';
|
|
2261
2263
|
// SeparatorVertical aliases
|
|
2262
2264
|
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2263
2265
|
// ServerCog aliases
|
|
@@ -2268,10 +2270,10 @@ export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
|
2268
2270
|
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2269
2271
|
// Server aliases
|
|
2270
2272
|
export { default as ServerIcon } from '../icons/server';
|
|
2271
|
-
// Settings aliases
|
|
2272
|
-
export { default as SettingsIcon } from '../icons/settings';
|
|
2273
2273
|
// Settings2 aliases
|
|
2274
2274
|
export { default as Settings2Icon } from '../icons/settings-2';
|
|
2275
|
+
// Settings aliases
|
|
2276
|
+
export { default as SettingsIcon } from '../icons/settings';
|
|
2275
2277
|
// Shapes aliases
|
|
2276
2278
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2277
2279
|
// Share2 aliases
|
|
@@ -2284,66 +2286,66 @@ export { default as SheetIcon } from '../icons/sheet';
|
|
|
2284
2286
|
export { default as ShellIcon } from '../icons/shell';
|
|
2285
2287
|
// ShelvingUnit aliases
|
|
2286
2288
|
export { default as ShelvingUnitIcon } from '../icons/shelving-unit';
|
|
2287
|
-
// ShieldBan aliases
|
|
2288
|
-
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2289
2289
|
// ShieldAlert aliases
|
|
2290
2290
|
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2291
|
+
// ShieldBan aliases
|
|
2292
|
+
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2291
2293
|
// ShieldCheck aliases
|
|
2292
2294
|
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2293
|
-
// ShieldHalf aliases
|
|
2294
|
-
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2295
2295
|
// ShieldEllipsis aliases
|
|
2296
2296
|
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2297
|
-
//
|
|
2298
|
-
export { default as
|
|
2297
|
+
// ShieldHalf aliases
|
|
2298
|
+
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2299
2299
|
// ShieldMinus aliases
|
|
2300
2300
|
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2301
2301
|
// ShieldPlus aliases
|
|
2302
2302
|
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2303
|
+
// ShieldOff aliases
|
|
2304
|
+
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2303
2305
|
// ShieldUser aliases
|
|
2304
2306
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2305
|
-
// ShipWheel aliases
|
|
2306
|
-
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2307
2307
|
// Shield aliases
|
|
2308
2308
|
export { default as ShieldIcon } from '../icons/shield';
|
|
2309
|
+
// ShipWheel aliases
|
|
2310
|
+
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2311
|
+
// Shirt aliases
|
|
2312
|
+
export { default as ShirtIcon } from '../icons/shirt';
|
|
2309
2313
|
// Ship aliases
|
|
2310
2314
|
export { default as ShipIcon } from '../icons/ship';
|
|
2311
2315
|
// ShoppingBag aliases
|
|
2312
2316
|
export { default as ShoppingBagIcon } from '../icons/shopping-bag';
|
|
2313
|
-
// ShoppingBasket aliases
|
|
2314
|
-
export { default as ShoppingBasketIcon } from '../icons/shopping-basket';
|
|
2315
|
-
// Shirt aliases
|
|
2316
|
-
export { default as ShirtIcon } from '../icons/shirt';
|
|
2317
2317
|
// ShoppingCart aliases
|
|
2318
2318
|
export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
2319
|
+
// ShoppingBasket aliases
|
|
2320
|
+
export { default as ShoppingBasketIcon } from '../icons/shopping-basket';
|
|
2319
2321
|
// Shovel aliases
|
|
2320
2322
|
export { default as ShovelIcon } from '../icons/shovel';
|
|
2323
|
+
// ShowerHead aliases
|
|
2324
|
+
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2321
2325
|
// Shredder aliases
|
|
2322
2326
|
export { default as ShredderIcon } from '../icons/shredder';
|
|
2323
2327
|
// Shrimp aliases
|
|
2324
2328
|
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2325
|
-
// ShowerHead aliases
|
|
2326
|
-
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2327
2329
|
// Shrink aliases
|
|
2328
2330
|
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2329
2331
|
// Shrub aliases
|
|
2330
2332
|
export { default as ShrubIcon } from '../icons/shrub';
|
|
2333
|
+
// Shuffle aliases
|
|
2334
|
+
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2331
2335
|
// Sigma aliases
|
|
2332
2336
|
export { default as SigmaIcon } from '../icons/sigma';
|
|
2337
|
+
// SignalHigh aliases
|
|
2338
|
+
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2333
2339
|
// SignalLow aliases
|
|
2334
2340
|
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2335
|
-
// Shuffle aliases
|
|
2336
|
-
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2337
2341
|
// SignalMedium aliases
|
|
2338
2342
|
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2339
|
-
// SignalHigh aliases
|
|
2340
|
-
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2341
2343
|
// SignalZero aliases
|
|
2342
2344
|
export { default as SignalZeroIcon } from '../icons/signal-zero';
|
|
2343
|
-
// Signature aliases
|
|
2344
|
-
export { default as SignatureIcon } from '../icons/signature';
|
|
2345
2345
|
// Signal aliases
|
|
2346
2346
|
export { default as SignalIcon } from '../icons/signal';
|
|
2347
|
+
// Signature aliases
|
|
2348
|
+
export { default as SignatureIcon } from '../icons/signature';
|
|
2347
2349
|
// SignpostBig aliases
|
|
2348
2350
|
export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
2349
2351
|
// Signpost aliases
|
|
@@ -2354,10 +2356,10 @@ export { default as SirenIcon } from '../icons/siren';
|
|
|
2354
2356
|
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2355
2357
|
// SkipForward aliases
|
|
2356
2358
|
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2357
|
-
// Slash aliases
|
|
2358
|
-
export { default as SlashIcon } from '../icons/slash';
|
|
2359
2359
|
// Skull aliases
|
|
2360
2360
|
export { default as SkullIcon } from '../icons/skull';
|
|
2361
|
+
// Slash aliases
|
|
2362
|
+
export { default as SlashIcon } from '../icons/slash';
|
|
2361
2363
|
// Slice aliases
|
|
2362
2364
|
export { default as SliceIcon } from '../icons/slice';
|
|
2363
2365
|
// SlidersHorizontal aliases
|
|
@@ -2370,134 +2372,134 @@ export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
|
2370
2372
|
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2371
2373
|
// SmilePlus aliases
|
|
2372
2374
|
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2373
|
-
// Snail aliases
|
|
2374
|
-
export { default as SnailIcon } from '../icons/snail';
|
|
2375
2375
|
// Smile aliases
|
|
2376
2376
|
export { default as SmileIcon } from '../icons/smile';
|
|
2377
|
-
//
|
|
2378
|
-
export { default as
|
|
2377
|
+
// Snail aliases
|
|
2378
|
+
export { default as SnailIcon } from '../icons/snail';
|
|
2379
2379
|
// SoapDispenserDroplet aliases
|
|
2380
2380
|
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2381
|
+
// Snowflake aliases
|
|
2382
|
+
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2381
2383
|
// Sofa aliases
|
|
2382
2384
|
export { default as SofaIcon } from '../icons/sofa';
|
|
2383
2385
|
// SolarPanel aliases
|
|
2384
2386
|
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2385
2387
|
// Soup aliases
|
|
2386
2388
|
export { default as SoupIcon } from '../icons/soup';
|
|
2387
|
-
// Space aliases
|
|
2388
|
-
export { default as SpaceIcon } from '../icons/space';
|
|
2389
2389
|
// Spade aliases
|
|
2390
2390
|
export { default as SpadeIcon } from '../icons/spade';
|
|
2391
2391
|
// Sparkle aliases
|
|
2392
2392
|
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2393
|
-
//
|
|
2394
|
-
export { default as
|
|
2393
|
+
// Space aliases
|
|
2394
|
+
export { default as SpaceIcon } from '../icons/space';
|
|
2395
2395
|
// Speaker aliases
|
|
2396
2396
|
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2397
|
+
// Speech aliases
|
|
2398
|
+
export { default as SpeechIcon } from '../icons/speech';
|
|
2397
2399
|
// SpellCheck2 aliases
|
|
2398
2400
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2399
|
-
// SplinePointer aliases
|
|
2400
|
-
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2401
2401
|
// SpellCheck aliases
|
|
2402
2402
|
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2403
|
+
// SplinePointer aliases
|
|
2404
|
+
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2403
2405
|
// Spline aliases
|
|
2404
2406
|
export { default as SplineIcon } from '../icons/spline';
|
|
2405
|
-
// Spool aliases
|
|
2406
|
-
export { default as SpoolIcon } from '../icons/spool';
|
|
2407
2407
|
// Split aliases
|
|
2408
2408
|
export { default as SplitIcon } from '../icons/split';
|
|
2409
|
+
// Spool aliases
|
|
2410
|
+
export { default as SpoolIcon } from '../icons/spool';
|
|
2409
2411
|
// Spotlight aliases
|
|
2410
2412
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2411
|
-
// Sprout aliases
|
|
2412
|
-
export { default as SproutIcon } from '../icons/sprout';
|
|
2413
2413
|
// SprayCan aliases
|
|
2414
2414
|
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2415
|
+
// Sprout aliases
|
|
2416
|
+
export { default as SproutIcon } from '../icons/sprout';
|
|
2415
2417
|
// SquareArrowRightEnter aliases
|
|
2416
2418
|
export { default as SquareArrowRightEnterIcon } from '../icons/square-arrow-right-enter';
|
|
2417
|
-
// SquareDashedBottomCode aliases
|
|
2418
|
-
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2419
2419
|
// SquareArrowRightExit aliases
|
|
2420
2420
|
export { default as SquareArrowRightExitIcon } from '../icons/square-arrow-right-exit';
|
|
2421
2421
|
// SquareDashedBottom aliases
|
|
2422
2422
|
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2423
|
+
// SquareDashedBottomCode aliases
|
|
2424
|
+
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2423
2425
|
// SquareDashedTopSolid aliases
|
|
2424
2426
|
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2425
|
-
// SquareRadical aliases
|
|
2426
|
-
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2427
2427
|
// SquarePause aliases
|
|
2428
2428
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2429
|
+
// SquareRadical aliases
|
|
2430
|
+
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2429
2431
|
// SquareRoundCorner aliases
|
|
2430
2432
|
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2431
2433
|
// SquareSquare aliases
|
|
2432
2434
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2433
|
-
// SquareStack aliases
|
|
2434
|
-
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2435
2435
|
// SquareStar aliases
|
|
2436
2436
|
export { default as SquareStarIcon } from '../icons/square-star';
|
|
2437
|
-
//
|
|
2438
|
-
export { default as
|
|
2437
|
+
// SquareStack aliases
|
|
2438
|
+
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2439
2439
|
// SquareStop aliases
|
|
2440
2440
|
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2441
|
-
//
|
|
2442
|
-
export { default as
|
|
2441
|
+
// Square aliases
|
|
2442
|
+
export { default as SquareIcon } from '../icons/square';
|
|
2443
2443
|
// SquaresExclude aliases
|
|
2444
2444
|
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2445
|
+
// SquaresIntersect aliases
|
|
2446
|
+
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2445
2447
|
// SquaresUnite aliases
|
|
2446
2448
|
export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
2447
2449
|
// SquaresSubtract aliases
|
|
2448
2450
|
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2449
2451
|
// SquircleDashed aliases
|
|
2450
2452
|
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2451
|
-
// Squircle aliases
|
|
2452
|
-
export { default as SquircleIcon } from '../icons/squircle';
|
|
2453
2453
|
// Squirrel aliases
|
|
2454
2454
|
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2455
|
+
// Squircle aliases
|
|
2456
|
+
export { default as SquircleIcon } from '../icons/squircle';
|
|
2455
2457
|
// Stamp aliases
|
|
2456
2458
|
export { default as StampIcon } from '../icons/stamp';
|
|
2457
2459
|
// StarHalf aliases
|
|
2458
2460
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2459
|
-
// StarOff aliases
|
|
2460
|
-
export { default as StarOffIcon } from '../icons/star-off';
|
|
2461
2461
|
// Star aliases
|
|
2462
2462
|
export { default as StarIcon } from '../icons/star';
|
|
2463
|
+
// StarOff aliases
|
|
2464
|
+
export { default as StarOffIcon } from '../icons/star-off';
|
|
2463
2465
|
// StepBack aliases
|
|
2464
2466
|
export { default as StepBackIcon } from '../icons/step-back';
|
|
2465
|
-
// Stethoscope aliases
|
|
2466
|
-
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2467
2467
|
// StepForward aliases
|
|
2468
2468
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2469
|
+
// Stethoscope aliases
|
|
2470
|
+
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2469
2471
|
// StickyNote aliases
|
|
2470
2472
|
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2471
|
-
// Stone aliases
|
|
2472
|
-
export { default as StoneIcon } from '../icons/stone';
|
|
2473
2473
|
// Sticker aliases
|
|
2474
2474
|
export { default as StickerIcon } from '../icons/sticker';
|
|
2475
|
+
// Stone aliases
|
|
2476
|
+
export { default as StoneIcon } from '../icons/stone';
|
|
2475
2477
|
// Store aliases
|
|
2476
2478
|
export { default as StoreIcon } from '../icons/store';
|
|
2477
2479
|
// StretchHorizontal aliases
|
|
2478
2480
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2479
|
-
// Strikethrough aliases
|
|
2480
|
-
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2481
2481
|
// StretchVertical aliases
|
|
2482
2482
|
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2483
|
+
// Strikethrough aliases
|
|
2484
|
+
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2483
2485
|
// Subscript aliases
|
|
2484
2486
|
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2485
2487
|
// SunDim aliases
|
|
2486
2488
|
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2487
2489
|
// SunMedium aliases
|
|
2488
2490
|
export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
2489
|
-
// SunSnow aliases
|
|
2490
|
-
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2491
2491
|
// SunMoon aliases
|
|
2492
2492
|
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2493
|
+
// SunSnow aliases
|
|
2494
|
+
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2493
2495
|
// Sun aliases
|
|
2494
2496
|
export { default as SunIcon } from '../icons/sun';
|
|
2495
2497
|
// Sunrise aliases
|
|
2496
2498
|
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2497
|
-
// Superscript aliases
|
|
2498
|
-
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2499
2499
|
// Sunset aliases
|
|
2500
2500
|
export { default as SunsetIcon } from '../icons/sunset';
|
|
2501
|
+
// Superscript aliases
|
|
2502
|
+
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2501
2503
|
// SwatchBook aliases
|
|
2502
2504
|
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2503
2505
|
// SwissFranc aliases
|
|
@@ -2506,28 +2508,28 @@ export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
|
2506
2508
|
export { default as SwordIcon } from '../icons/sword';
|
|
2507
2509
|
// SwitchCamera aliases
|
|
2508
2510
|
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2509
|
-
// Syringe aliases
|
|
2510
|
-
export { default as SyringeIcon } from '../icons/syringe';
|
|
2511
2511
|
// Swords aliases
|
|
2512
2512
|
export { default as SwordsIcon } from '../icons/swords';
|
|
2513
|
-
//
|
|
2514
|
-
export { default as
|
|
2513
|
+
// Syringe aliases
|
|
2514
|
+
export { default as SyringeIcon } from '../icons/syringe';
|
|
2515
2515
|
// TableCellsMerge aliases
|
|
2516
2516
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2517
|
-
//
|
|
2518
|
-
export { default as
|
|
2519
|
-
// TableOfContents aliases
|
|
2520
|
-
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2517
|
+
// Table2 aliases
|
|
2518
|
+
export { default as Table2Icon } from '../icons/table-2';
|
|
2521
2519
|
// TableCellsSplit aliases
|
|
2522
2520
|
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2521
|
+
// TableColumnsSplit aliases
|
|
2522
|
+
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2523
2523
|
// TableProperties aliases
|
|
2524
2524
|
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2525
|
+
// TableOfContents aliases
|
|
2526
|
+
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2525
2527
|
// TableRowsSplit aliases
|
|
2526
2528
|
export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
2527
|
-
// TabletSmartphone aliases
|
|
2528
|
-
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2529
2529
|
// Table aliases
|
|
2530
2530
|
export { default as TableIcon } from '../icons/table';
|
|
2531
|
+
// TabletSmartphone aliases
|
|
2532
|
+
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2531
2533
|
// Tablet aliases
|
|
2532
2534
|
export { default as TabletIcon } from '../icons/tablet';
|
|
2533
2535
|
// Tablets aliases
|
|
@@ -2538,82 +2540,82 @@ export { default as TagIcon } from '../icons/tag';
|
|
|
2538
2540
|
export { default as TagsIcon } from '../icons/tags';
|
|
2539
2541
|
// Tally1 aliases
|
|
2540
2542
|
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2541
|
-
// Tally2 aliases
|
|
2542
|
-
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2543
2543
|
// Tally3 aliases
|
|
2544
2544
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2545
|
-
//
|
|
2546
|
-
export { default as
|
|
2545
|
+
// Tally2 aliases
|
|
2546
|
+
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2547
2547
|
// Tally4 aliases
|
|
2548
2548
|
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2549
2549
|
// Tangent aliases
|
|
2550
2550
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2551
|
+
// Tally5 aliases
|
|
2552
|
+
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2551
2553
|
// Target aliases
|
|
2552
2554
|
export { default as TargetIcon } from '../icons/target';
|
|
2553
|
-
// TentTree aliases
|
|
2554
|
-
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2555
2555
|
// Telescope aliases
|
|
2556
2556
|
export { default as TelescopeIcon } from '../icons/telescope';
|
|
2557
|
+
// TentTree aliases
|
|
2558
|
+
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2557
2559
|
// Tent aliases
|
|
2558
2560
|
export { default as TentIcon } from '../icons/tent';
|
|
2559
2561
|
// Terminal aliases
|
|
2560
2562
|
export { default as TerminalIcon } from '../icons/terminal';
|
|
2561
|
-
// TestTube aliases
|
|
2562
|
-
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2563
2563
|
// TestTubes aliases
|
|
2564
2564
|
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2565
|
-
//
|
|
2566
|
-
export { default as
|
|
2565
|
+
// TestTube aliases
|
|
2566
|
+
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2567
2567
|
// TextCursorInput aliases
|
|
2568
2568
|
export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
2569
2569
|
// TextQuote aliases
|
|
2570
2570
|
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2571
2571
|
// TextSearch aliases
|
|
2572
2572
|
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2573
|
+
// TextCursor aliases
|
|
2574
|
+
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2573
2575
|
// Theater aliases
|
|
2574
2576
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2575
2577
|
// ThermometerSnowflake aliases
|
|
2576
2578
|
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2577
2579
|
// ThermometerSun aliases
|
|
2578
2580
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2579
|
-
// ThumbsDown aliases
|
|
2580
|
-
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2581
2581
|
// Thermometer aliases
|
|
2582
2582
|
export { default as ThermometerIcon } from '../icons/thermometer';
|
|
2583
|
+
// ThumbsDown aliases
|
|
2584
|
+
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2583
2585
|
// ThumbsUp aliases
|
|
2584
2586
|
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2585
|
-
// TicketMinus aliases
|
|
2586
|
-
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2587
2587
|
// TicketCheck aliases
|
|
2588
2588
|
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2589
|
-
//
|
|
2590
|
-
export { default as
|
|
2589
|
+
// TicketMinus aliases
|
|
2590
|
+
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2591
2591
|
// TicketPercent aliases
|
|
2592
2592
|
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2593
|
+
// TicketPlus aliases
|
|
2594
|
+
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2595
|
+
// TicketSlash aliases
|
|
2596
|
+
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2593
2597
|
// TicketX aliases
|
|
2594
2598
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2595
2599
|
// Ticket aliases
|
|
2596
2600
|
export { default as TicketIcon } from '../icons/ticket';
|
|
2597
|
-
// TicketSlash aliases
|
|
2598
|
-
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2599
2601
|
// TicketsPlane aliases
|
|
2600
2602
|
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2601
2603
|
// Tickets aliases
|
|
2602
2604
|
export { default as TicketsIcon } from '../icons/tickets';
|
|
2603
|
-
// TimerReset aliases
|
|
2604
|
-
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2605
|
-
// Timer aliases
|
|
2606
|
-
export { default as TimerIcon } from '../icons/timer';
|
|
2607
2605
|
// TimerOff aliases
|
|
2608
2606
|
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2607
|
+
// TimerReset aliases
|
|
2608
|
+
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2609
2609
|
// ToggleLeft aliases
|
|
2610
2610
|
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2611
|
+
// Timer aliases
|
|
2612
|
+
export { default as TimerIcon } from '../icons/timer';
|
|
2613
|
+
// Toilet aliases
|
|
2614
|
+
export { default as ToiletIcon } from '../icons/toilet';
|
|
2611
2615
|
// ToggleRight aliases
|
|
2612
2616
|
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2613
2617
|
// ToolCase aliases
|
|
2614
2618
|
export { default as ToolCaseIcon } from '../icons/tool-case';
|
|
2615
|
-
// Toilet aliases
|
|
2616
|
-
export { default as ToiletIcon } from '../icons/toilet';
|
|
2617
2619
|
// Toolbox aliases
|
|
2618
2620
|
export { default as ToolboxIcon } from '../icons/toolbox';
|
|
2619
2621
|
// Tornado aliases
|
|
@@ -2624,70 +2626,70 @@ export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
|
2624
2626
|
export { default as TorusIcon } from '../icons/torus';
|
|
2625
2627
|
// Touchpad aliases
|
|
2626
2628
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2627
|
-
// TowerControl aliases
|
|
2628
|
-
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2629
2629
|
// TowelRack aliases
|
|
2630
2630
|
export { default as TowelRackIcon } from '../icons/towel-rack';
|
|
2631
|
+
// TowerControl aliases
|
|
2632
|
+
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2631
2633
|
// ToyBrick aliases
|
|
2632
2634
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2633
2635
|
// Tractor aliases
|
|
2634
2636
|
export { default as TractorIcon } from '../icons/tractor';
|
|
2637
|
+
// TrainFrontTunnel aliases
|
|
2638
|
+
export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
2635
2639
|
// TrafficCone aliases
|
|
2636
2640
|
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2637
2641
|
// TrainFront aliases
|
|
2638
2642
|
export { default as TrainFrontIcon } from '../icons/train-front';
|
|
2639
|
-
// TrainFrontTunnel aliases
|
|
2640
|
-
export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
2641
2643
|
// TrainTrack aliases
|
|
2642
2644
|
export { default as TrainTrackIcon } from '../icons/train-track';
|
|
2643
|
-
// Trash aliases
|
|
2644
|
-
export { default as TrashIcon } from '../icons/trash';
|
|
2645
|
-
// Trash2 aliases
|
|
2646
|
-
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2647
2645
|
// Transgender aliases
|
|
2648
2646
|
export { default as TransgenderIcon } from '../icons/transgender';
|
|
2649
|
-
//
|
|
2650
|
-
export { default as
|
|
2647
|
+
// Trash2 aliases
|
|
2648
|
+
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2651
2649
|
// TreeDeciduous aliases
|
|
2652
2650
|
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2651
|
+
// Trash aliases
|
|
2652
|
+
export { default as TrashIcon } from '../icons/trash';
|
|
2653
2653
|
// Trees aliases
|
|
2654
2654
|
export { default as TreesIcon } from '../icons/trees';
|
|
2655
|
+
// TreePine aliases
|
|
2656
|
+
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2655
2657
|
// TrendingDown aliases
|
|
2656
2658
|
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2657
2659
|
// TrendingUp aliases
|
|
2658
2660
|
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2659
2661
|
// TrendingUpDown aliases
|
|
2660
2662
|
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2661
|
-
// Triangle aliases
|
|
2662
|
-
export { default as TriangleIcon } from '../icons/triangle';
|
|
2663
|
-
// TriangleDashed aliases
|
|
2664
|
-
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2665
2663
|
// TriangleRight aliases
|
|
2666
2664
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2665
|
+
// TriangleDashed aliases
|
|
2666
|
+
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2667
|
+
// Triangle aliases
|
|
2668
|
+
export { default as TriangleIcon } from '../icons/triangle';
|
|
2667
2669
|
// Trophy aliases
|
|
2668
2670
|
export { default as TrophyIcon } from '../icons/trophy';
|
|
2669
2671
|
// TruckElectric aliases
|
|
2670
2672
|
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2671
2673
|
// Truck aliases
|
|
2672
2674
|
export { default as TruckIcon } from '../icons/truck';
|
|
2673
|
-
// TurkishLira aliases
|
|
2674
|
-
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2675
|
-
// Turtle aliases
|
|
2676
|
-
export { default as TurtleIcon } from '../icons/turtle';
|
|
2677
2675
|
// Turntable aliases
|
|
2678
2676
|
export { default as TurntableIcon } from '../icons/turntable';
|
|
2677
|
+
// TurkishLira aliases
|
|
2678
|
+
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2679
2679
|
// TvMinimalPlay aliases
|
|
2680
2680
|
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2681
|
+
// Turtle aliases
|
|
2682
|
+
export { default as TurtleIcon } from '../icons/turtle';
|
|
2681
2683
|
// Tv aliases
|
|
2682
2684
|
export { default as TvIcon } from '../icons/tv';
|
|
2683
|
-
// Type aliases
|
|
2684
|
-
export { default as TypeIcon } from '../icons/type';
|
|
2685
2685
|
// TypeOutline aliases
|
|
2686
2686
|
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2687
|
-
//
|
|
2688
|
-
export { default as
|
|
2687
|
+
// Type aliases
|
|
2688
|
+
export { default as TypeIcon } from '../icons/type';
|
|
2689
2689
|
// UmbrellaOff aliases
|
|
2690
2690
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2691
|
+
// Umbrella aliases
|
|
2692
|
+
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2691
2693
|
// Underline aliases
|
|
2692
2694
|
export { default as UnderlineIcon } from '../icons/underline';
|
|
2693
2695
|
// UndoDot aliases
|
|
@@ -2698,20 +2700,20 @@ export { default as Undo2Icon } from '../icons/undo-2';
|
|
|
2698
2700
|
export { default as UndoIcon } from '../icons/undo';
|
|
2699
2701
|
// UnfoldHorizontal aliases
|
|
2700
2702
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2701
|
-
// Ungroup aliases
|
|
2702
|
-
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2703
|
-
// Unlink aliases
|
|
2704
|
-
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2705
2703
|
// UnfoldVertical aliases
|
|
2706
2704
|
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2705
|
+
// Ungroup aliases
|
|
2706
|
+
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2707
2707
|
// Unlink2 aliases
|
|
2708
2708
|
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2709
|
+
// Unlink aliases
|
|
2710
|
+
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2711
|
+
// Unplug aliases
|
|
2712
|
+
export { default as UnplugIcon } from '../icons/unplug';
|
|
2709
2713
|
// Upload aliases
|
|
2710
2714
|
export { default as UploadIcon } from '../icons/upload';
|
|
2711
2715
|
// Usb aliases
|
|
2712
2716
|
export { default as UsbIcon } from '../icons/usb';
|
|
2713
|
-
// Unplug aliases
|
|
2714
|
-
export { default as UnplugIcon } from '../icons/unplug';
|
|
2715
2717
|
// UserCheck aliases
|
|
2716
2718
|
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2717
2719
|
// UserCog aliases
|
|
@@ -2724,30 +2726,30 @@ export { default as UserLockIcon } from '../icons/user-lock';
|
|
|
2724
2726
|
export { default as UserMinusIcon } from '../icons/user-minus';
|
|
2725
2727
|
// UserPen aliases
|
|
2726
2728
|
export { default as UserPenIcon } from '../icons/user-pen';
|
|
2729
|
+
// UserPlus aliases
|
|
2730
|
+
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2727
2731
|
// UserRoundKey aliases
|
|
2728
2732
|
export { default as UserRoundKeyIcon } from '../icons/user-round-key';
|
|
2729
2733
|
// UserRoundPen aliases
|
|
2730
2734
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2731
2735
|
// UserRoundSearch aliases
|
|
2732
2736
|
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2733
|
-
// UserPlus aliases
|
|
2734
|
-
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2735
2737
|
// UserSearch aliases
|
|
2736
2738
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2737
2739
|
// UserStar aliases
|
|
2738
2740
|
export { default as UserStarIcon } from '../icons/user-star';
|
|
2739
|
-
// User aliases
|
|
2740
|
-
export { default as UserIcon } from '../icons/user';
|
|
2741
2741
|
// UserX aliases
|
|
2742
2742
|
export { default as UserXIcon } from '../icons/user-x';
|
|
2743
|
-
//
|
|
2744
|
-
export { default as
|
|
2743
|
+
// User aliases
|
|
2744
|
+
export { default as UserIcon } from '../icons/user';
|
|
2745
2745
|
// UtilityPole aliases
|
|
2746
2746
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2747
|
-
//
|
|
2748
|
-
export { default as
|
|
2747
|
+
// Users aliases
|
|
2748
|
+
export { default as UsersIcon } from '../icons/users';
|
|
2749
2749
|
// Van aliases
|
|
2750
2750
|
export { default as VanIcon } from '../icons/van';
|
|
2751
|
+
// Variable aliases
|
|
2752
|
+
export { default as VariableIcon } from '../icons/variable';
|
|
2751
2753
|
// Vault aliases
|
|
2752
2754
|
export { default as VaultIcon } from '../icons/vault';
|
|
2753
2755
|
// VectorSquare aliases
|
|
@@ -2756,10 +2758,10 @@ export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
|
2756
2758
|
export { default as VeganIcon } from '../icons/vegan';
|
|
2757
2759
|
// VenetianMask aliases
|
|
2758
2760
|
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2759
|
-
// VenusAndMars aliases
|
|
2760
|
-
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2761
2761
|
// Venus aliases
|
|
2762
2762
|
export { default as VenusIcon } from '../icons/venus';
|
|
2763
|
+
// VenusAndMars aliases
|
|
2764
|
+
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2763
2765
|
// VibrateOff aliases
|
|
2764
2766
|
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2765
2767
|
// Vibrate aliases
|
|
@@ -2770,68 +2772,68 @@ export { default as VideoOffIcon } from '../icons/video-off';
|
|
|
2770
2772
|
export { default as VideoIcon } from '../icons/video';
|
|
2771
2773
|
// Videotape aliases
|
|
2772
2774
|
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2773
|
-
// View aliases
|
|
2774
|
-
export { default as ViewIcon } from '../icons/view';
|
|
2775
|
-
// Volleyball aliases
|
|
2776
|
-
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2777
|
-
// Volume2 aliases
|
|
2778
|
-
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2779
2775
|
// Voicemail aliases
|
|
2780
2776
|
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2781
2777
|
// Volume1 aliases
|
|
2782
2778
|
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2779
|
+
// View aliases
|
|
2780
|
+
export { default as ViewIcon } from '../icons/view';
|
|
2781
|
+
// Volleyball aliases
|
|
2782
|
+
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2783
2783
|
// VolumeX aliases
|
|
2784
2784
|
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2785
|
+
// Volume2 aliases
|
|
2786
|
+
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2785
2787
|
// Volume aliases
|
|
2786
2788
|
export { default as VolumeIcon } from '../icons/volume';
|
|
2787
2789
|
// VolumeOff aliases
|
|
2788
2790
|
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2789
|
-
// WalletCards aliases
|
|
2790
|
-
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2791
2791
|
// Vote aliases
|
|
2792
2792
|
export { default as VoteIcon } from '../icons/vote';
|
|
2793
2793
|
// Wallet aliases
|
|
2794
2794
|
export { default as WalletIcon } from '../icons/wallet';
|
|
2795
|
-
//
|
|
2796
|
-
export { default as
|
|
2795
|
+
// WalletCards aliases
|
|
2796
|
+
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2797
2797
|
// Wallpaper aliases
|
|
2798
2798
|
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2799
|
+
// Wand aliases
|
|
2800
|
+
export { default as WandIcon } from '../icons/wand';
|
|
2801
|
+
// Watch aliases
|
|
2802
|
+
export { default as WatchIcon } from '../icons/watch';
|
|
2799
2803
|
// Warehouse aliases
|
|
2800
2804
|
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2801
2805
|
// WashingMachine aliases
|
|
2802
2806
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2803
2807
|
// WavesArrowDown aliases
|
|
2804
2808
|
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2805
|
-
// Watch aliases
|
|
2806
|
-
export { default as WatchIcon } from '../icons/watch';
|
|
2807
|
-
// WavesArrowUp aliases
|
|
2808
|
-
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2809
2809
|
// WavesLadder aliases
|
|
2810
2810
|
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2811
|
-
// Webcam aliases
|
|
2812
|
-
export { default as WebcamIcon } from '../icons/webcam';
|
|
2813
2811
|
// Waves aliases
|
|
2814
2812
|
export { default as WavesIcon } from '../icons/waves';
|
|
2815
|
-
//
|
|
2816
|
-
export { default as
|
|
2813
|
+
// WavesArrowUp aliases
|
|
2814
|
+
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2817
2815
|
// Waypoints aliases
|
|
2818
2816
|
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2819
|
-
//
|
|
2820
|
-
export { default as
|
|
2817
|
+
// Webcam aliases
|
|
2818
|
+
export { default as WebcamIcon } from '../icons/webcam';
|
|
2819
|
+
// WebhookOff aliases
|
|
2820
|
+
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2821
2821
|
// Webhook aliases
|
|
2822
2822
|
export { default as WebhookIcon } from '../icons/webhook';
|
|
2823
|
+
// WeightTilde aliases
|
|
2824
|
+
export { default as WeightTildeIcon } from '../icons/weight-tilde';
|
|
2823
2825
|
// Weight aliases
|
|
2824
2826
|
export { default as WeightIcon } from '../icons/weight';
|
|
2825
2827
|
// WheatOff aliases
|
|
2826
2828
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2827
2829
|
// Wheat aliases
|
|
2828
2830
|
export { default as WheatIcon } from '../icons/wheat';
|
|
2829
|
-
// WifiHigh aliases
|
|
2830
|
-
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2831
2831
|
// WholeWord aliases
|
|
2832
2832
|
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2833
2833
|
// WifiCog aliases
|
|
2834
2834
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2835
|
+
// WifiHigh aliases
|
|
2836
|
+
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2835
2837
|
// WifiLow aliases
|
|
2836
2838
|
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2837
2839
|
// WifiOff aliases
|
|
@@ -2850,30 +2852,30 @@ export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
|
2850
2852
|
export { default as WindIcon } from '../icons/wind';
|
|
2851
2853
|
// WineOff aliases
|
|
2852
2854
|
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2853
|
-
// Wine aliases
|
|
2854
|
-
export { default as WineIcon } from '../icons/wine';
|
|
2855
2855
|
// Workflow aliases
|
|
2856
2856
|
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2857
|
-
// Wrench aliases
|
|
2858
|
-
export { default as WrenchIcon } from '../icons/wrench';
|
|
2859
2857
|
// Worm aliases
|
|
2860
2858
|
export { default as WormIcon } from '../icons/worm';
|
|
2859
|
+
// Wine aliases
|
|
2860
|
+
export { default as WineIcon } from '../icons/wine';
|
|
2861
|
+
// Wrench aliases
|
|
2862
|
+
export { default as WrenchIcon } from '../icons/wrench';
|
|
2861
2863
|
// XLineTop aliases
|
|
2862
2864
|
export { default as XLineTopIcon } from '../icons/x-line-top';
|
|
2863
2865
|
// X aliases
|
|
2864
2866
|
export { default as XIcon } from '../icons/x';
|
|
2867
|
+
// Zap aliases
|
|
2868
|
+
export { default as ZapIcon } from '../icons/zap';
|
|
2865
2869
|
// ZapOff aliases
|
|
2866
2870
|
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2867
2871
|
// ZodiacAquarius aliases
|
|
2868
2872
|
export { default as ZodiacAquariusIcon } from '../icons/zodiac-aquarius';
|
|
2869
2873
|
// ZodiacAries aliases
|
|
2870
2874
|
export { default as ZodiacAriesIcon } from '../icons/zodiac-aries';
|
|
2871
|
-
// Zap aliases
|
|
2872
|
-
export { default as ZapIcon } from '../icons/zap';
|
|
2873
|
-
// ZodiacCapricorn aliases
|
|
2874
|
-
export { default as ZodiacCapricornIcon } from '../icons/zodiac-capricorn';
|
|
2875
2875
|
// ZodiacCancer aliases
|
|
2876
2876
|
export { default as ZodiacCancerIcon } from '../icons/zodiac-cancer';
|
|
2877
|
+
// ZodiacCapricorn aliases
|
|
2878
|
+
export { default as ZodiacCapricornIcon } from '../icons/zodiac-capricorn';
|
|
2877
2879
|
// ZodiacGemini aliases
|
|
2878
2880
|
export { default as ZodiacGeminiIcon } from '../icons/zodiac-gemini';
|
|
2879
2881
|
// ZodiacLeo aliases
|
|
@@ -2922,18 +2924,18 @@ export {
|
|
|
2922
2924
|
/** @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 */
|
|
2923
2925
|
default as AlarmPlusIcon
|
|
2924
2926
|
} from '../icons/alarm-clock-plus';
|
|
2925
|
-
// ArrowDownWideNarrow aliases
|
|
2926
|
-
export { default as ArrowDownWideNarrowIcon } from '../icons/arrow-down-wide-narrow';
|
|
2927
|
-
export {
|
|
2928
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
2929
|
-
default as SortDescIcon
|
|
2930
|
-
} from '../icons/arrow-down-wide-narrow';
|
|
2931
2927
|
// ArrowDownAZ aliases
|
|
2932
2928
|
export { default as ArrowDownAZIcon } from '../icons/arrow-down-a-z';
|
|
2933
2929
|
export {
|
|
2934
2930
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
2935
2931
|
default as ArrowDownAzIcon
|
|
2936
2932
|
} from '../icons/arrow-down-a-z';
|
|
2933
|
+
// ArrowDownWideNarrow aliases
|
|
2934
|
+
export { default as ArrowDownWideNarrowIcon } from '../icons/arrow-down-wide-narrow';
|
|
2935
|
+
export {
|
|
2936
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
2937
|
+
default as SortDescIcon
|
|
2938
|
+
} from '../icons/arrow-down-wide-narrow';
|
|
2937
2939
|
// ArrowDownZA aliases
|
|
2938
2940
|
export { default as ArrowDownZAIcon } from '../icons/arrow-down-z-a';
|
|
2939
2941
|
export {
|
|
@@ -2964,30 +2966,30 @@ export {
|
|
|
2964
2966
|
/** @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 */
|
|
2965
2967
|
default as Axis3DIcon
|
|
2966
2968
|
} from '../icons/axis-3d';
|
|
2967
|
-
// BadgeQuestionMark aliases
|
|
2968
|
-
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
2969
|
-
export {
|
|
2970
|
-
/** @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 */
|
|
2971
|
-
default as BadgeHelpIcon
|
|
2972
|
-
} from '../icons/badge-question-mark';
|
|
2973
2969
|
// BadgeCheck aliases
|
|
2974
2970
|
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
2975
2971
|
export {
|
|
2976
2972
|
/** @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 */
|
|
2977
2973
|
default as VerifiedIcon
|
|
2978
2974
|
} from '../icons/badge-check';
|
|
2979
|
-
//
|
|
2980
|
-
export { default as
|
|
2975
|
+
// BadgeQuestionMark aliases
|
|
2976
|
+
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
2981
2977
|
export {
|
|
2982
|
-
/** @deprecated
|
|
2983
|
-
default as
|
|
2984
|
-
} from '../icons/
|
|
2978
|
+
/** @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 */
|
|
2979
|
+
default as BadgeHelpIcon
|
|
2980
|
+
} from '../icons/badge-question-mark';
|
|
2985
2981
|
// BetweenHorizontalStart aliases
|
|
2986
2982
|
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
2987
2983
|
export {
|
|
2988
2984
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
2989
2985
|
default as BetweenHorizonalStartIcon
|
|
2990
2986
|
} from '../icons/between-horizontal-start';
|
|
2987
|
+
// BetweenHorizontalEnd aliases
|
|
2988
|
+
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
2989
|
+
export {
|
|
2990
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
2991
|
+
default as BetweenHorizonalEndIcon
|
|
2992
|
+
} from '../icons/between-horizontal-end';
|
|
2991
2993
|
// BookDashed aliases
|
|
2992
2994
|
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
2993
2995
|
export {
|
|
@@ -3018,18 +3020,24 @@ export {
|
|
|
3018
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 */
|
|
3019
3021
|
default as BarChartHorizontalBigIcon
|
|
3020
3022
|
} from '../icons/chart-bar-big';
|
|
3023
|
+
// ChartBar aliases
|
|
3024
|
+
export { default as ChartBarIcon } from '../icons/chart-bar';
|
|
3025
|
+
export {
|
|
3026
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
3027
|
+
default as BarChartHorizontalIcon
|
|
3028
|
+
} from '../icons/chart-bar';
|
|
3021
3029
|
// ChartCandlestick aliases
|
|
3022
3030
|
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
3023
3031
|
export {
|
|
3024
3032
|
/** @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 */
|
|
3025
3033
|
default as CandlestickChartIcon
|
|
3026
3034
|
} from '../icons/chart-candlestick';
|
|
3027
|
-
//
|
|
3028
|
-
export { default as
|
|
3035
|
+
// ChartColumn aliases
|
|
3036
|
+
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3029
3037
|
export {
|
|
3030
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3031
|
-
default as
|
|
3032
|
-
} from '../icons/chart-
|
|
3038
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
3039
|
+
default as BarChart3Icon
|
|
3040
|
+
} from '../icons/chart-column';
|
|
3033
3041
|
// ChartColumnBig aliases
|
|
3034
3042
|
export { default as ChartColumnBigIcon } from '../icons/chart-column-big';
|
|
3035
3043
|
export {
|
|
@@ -3048,24 +3056,12 @@ export {
|
|
|
3048
3056
|
/** @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 */
|
|
3049
3057
|
default as LineChartIcon
|
|
3050
3058
|
} from '../icons/chart-line';
|
|
3051
|
-
// ChartColumn aliases
|
|
3052
|
-
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3053
|
-
export {
|
|
3054
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
3055
|
-
default as BarChart3Icon
|
|
3056
|
-
} from '../icons/chart-column';
|
|
3057
3059
|
// ChartNoAxesColumnIncreasing aliases
|
|
3058
3060
|
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
3059
3061
|
export {
|
|
3060
3062
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3061
3063
|
default as BarChartIcon
|
|
3062
3064
|
} from '../icons/chart-no-axes-column-increasing';
|
|
3063
|
-
// ChartPie aliases
|
|
3064
|
-
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3065
|
-
export {
|
|
3066
|
-
/** @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 */
|
|
3067
|
-
default as PieChartIcon
|
|
3068
|
-
} from '../icons/chart-pie';
|
|
3069
3065
|
// ChartNoAxesColumn aliases
|
|
3070
3066
|
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
3071
3067
|
export {
|
|
@@ -3078,6 +3074,12 @@ export {
|
|
|
3078
3074
|
/** @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 */
|
|
3079
3075
|
default as GanttChartIcon
|
|
3080
3076
|
} from '../icons/chart-no-axes-gantt';
|
|
3077
|
+
// ChartPie aliases
|
|
3078
|
+
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3079
|
+
export {
|
|
3080
|
+
/** @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
|
+
default as PieChartIcon
|
|
3082
|
+
} from '../icons/chart-pie';
|
|
3081
3083
|
// ChartScatter aliases
|
|
3082
3084
|
export { default as ChartScatterIcon } from '../icons/chart-scatter';
|
|
3083
3085
|
export {
|
|
@@ -3102,36 +3104,30 @@ export {
|
|
|
3102
3104
|
/** @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 */
|
|
3103
3105
|
default as ArrowLeftCircleIcon
|
|
3104
3106
|
} from '../icons/circle-arrow-left';
|
|
3105
|
-
// CircleArrowOutDownRight aliases
|
|
3106
|
-
export { default as CircleArrowOutDownRightIcon } from '../icons/circle-arrow-out-down-right';
|
|
3107
|
-
export {
|
|
3108
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3109
|
-
default as ArrowDownRightFromCircleIcon
|
|
3110
|
-
} from '../icons/circle-arrow-out-down-right';
|
|
3111
3107
|
// CircleArrowOutDownLeft aliases
|
|
3112
3108
|
export { default as CircleArrowOutDownLeftIcon } from '../icons/circle-arrow-out-down-left';
|
|
3113
3109
|
export {
|
|
3114
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 */
|
|
3115
3111
|
default as ArrowDownLeftFromCircleIcon
|
|
3116
3112
|
} from '../icons/circle-arrow-out-down-left';
|
|
3117
|
-
// CircleArrowOutUpRight aliases
|
|
3118
|
-
export { default as CircleArrowOutUpRightIcon } from '../icons/circle-arrow-out-up-right';
|
|
3119
|
-
export {
|
|
3120
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3121
|
-
default as ArrowUpRightFromCircleIcon
|
|
3122
|
-
} from '../icons/circle-arrow-out-up-right';
|
|
3123
3113
|
// CircleArrowOutUpLeft aliases
|
|
3124
3114
|
export { default as CircleArrowOutUpLeftIcon } from '../icons/circle-arrow-out-up-left';
|
|
3125
3115
|
export {
|
|
3126
3116
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
3127
3117
|
default as ArrowUpLeftFromCircleIcon
|
|
3128
3118
|
} from '../icons/circle-arrow-out-up-left';
|
|
3129
|
-
//
|
|
3130
|
-
export { default as
|
|
3119
|
+
// CircleArrowOutDownRight aliases
|
|
3120
|
+
export { default as CircleArrowOutDownRightIcon } from '../icons/circle-arrow-out-down-right';
|
|
3131
3121
|
export {
|
|
3132
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3133
|
-
default as
|
|
3134
|
-
} from '../icons/circle-arrow-
|
|
3122
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3123
|
+
default as ArrowDownRightFromCircleIcon
|
|
3124
|
+
} from '../icons/circle-arrow-out-down-right';
|
|
3125
|
+
// CircleArrowOutUpRight aliases
|
|
3126
|
+
export { default as CircleArrowOutUpRightIcon } from '../icons/circle-arrow-out-up-right';
|
|
3127
|
+
export {
|
|
3128
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3129
|
+
default as ArrowUpRightFromCircleIcon
|
|
3130
|
+
} from '../icons/circle-arrow-out-up-right';
|
|
3135
3131
|
// CircleArrowRight aliases
|
|
3136
3132
|
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3137
3133
|
export {
|
|
@@ -3144,30 +3140,36 @@ export {
|
|
|
3144
3140
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
3145
3141
|
default as CheckCircleIcon
|
|
3146
3142
|
} from '../icons/circle-check-big';
|
|
3147
|
-
// CircleChevronDown aliases
|
|
3148
|
-
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3149
|
-
export {
|
|
3150
|
-
/** @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 */
|
|
3151
|
-
default as ChevronDownCircleIcon
|
|
3152
|
-
} from '../icons/circle-chevron-down';
|
|
3153
|
-
// CircleChevronRight aliases
|
|
3154
|
-
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3155
|
-
export {
|
|
3156
|
-
/** @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 */
|
|
3157
|
-
default as ChevronRightCircleIcon
|
|
3158
|
-
} from '../icons/circle-chevron-right';
|
|
3159
3143
|
// CircleCheck aliases
|
|
3160
3144
|
export { default as CircleCheckIcon } from '../icons/circle-check';
|
|
3161
3145
|
export {
|
|
3162
3146
|
/** @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 */
|
|
3163
3147
|
default as CheckCircle2Icon
|
|
3164
3148
|
} from '../icons/circle-check';
|
|
3149
|
+
// CircleArrowUp aliases
|
|
3150
|
+
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
3151
|
+
export {
|
|
3152
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
3153
|
+
default as ArrowUpCircleIcon
|
|
3154
|
+
} from '../icons/circle-arrow-up';
|
|
3155
|
+
// CircleChevronDown aliases
|
|
3156
|
+
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3157
|
+
export {
|
|
3158
|
+
/** @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 */
|
|
3159
|
+
default as ChevronDownCircleIcon
|
|
3160
|
+
} from '../icons/circle-chevron-down';
|
|
3165
3161
|
// CircleChevronLeft aliases
|
|
3166
3162
|
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3167
3163
|
export {
|
|
3168
3164
|
/** @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 */
|
|
3169
3165
|
default as ChevronLeftCircleIcon
|
|
3170
3166
|
} from '../icons/circle-chevron-left';
|
|
3167
|
+
// CircleChevronRight aliases
|
|
3168
|
+
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3169
|
+
export {
|
|
3170
|
+
/** @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 */
|
|
3171
|
+
default as ChevronRightCircleIcon
|
|
3172
|
+
} from '../icons/circle-chevron-right';
|
|
3171
3173
|
// CircleChevronUp aliases
|
|
3172
3174
|
export { default as CircleChevronUpIcon } from '../icons/circle-chevron-up';
|
|
3173
3175
|
export {
|
|
@@ -3186,18 +3188,18 @@ export {
|
|
|
3186
3188
|
/** @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 */
|
|
3187
3189
|
default as GaugeCircleIcon
|
|
3188
3190
|
} from '../icons/circle-gauge';
|
|
3189
|
-
// CircleMinus aliases
|
|
3190
|
-
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3191
|
-
export {
|
|
3192
|
-
/** @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 */
|
|
3193
|
-
default as MinusCircleIcon
|
|
3194
|
-
} from '../icons/circle-minus';
|
|
3195
3191
|
// CircleParkingOff aliases
|
|
3196
3192
|
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3197
3193
|
export {
|
|
3198
3194
|
/** @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 */
|
|
3199
3195
|
default as ParkingCircleOffIcon
|
|
3200
3196
|
} from '../icons/circle-parking-off';
|
|
3197
|
+
// CircleMinus aliases
|
|
3198
|
+
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3199
|
+
export {
|
|
3200
|
+
/** @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 */
|
|
3201
|
+
default as MinusCircleIcon
|
|
3202
|
+
} from '../icons/circle-minus';
|
|
3201
3203
|
// CircleParking aliases
|
|
3202
3204
|
export { default as CircleParkingIcon } from '../icons/circle-parking';
|
|
3203
3205
|
export {
|
|
@@ -3216,24 +3218,24 @@ export {
|
|
|
3216
3218
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
3217
3219
|
default as PercentCircleIcon
|
|
3218
3220
|
} from '../icons/circle-percent';
|
|
3219
|
-
// CirclePower aliases
|
|
3220
|
-
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3221
|
-
export {
|
|
3222
|
-
/** @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 */
|
|
3223
|
-
default as PowerCircleIcon
|
|
3224
|
-
} from '../icons/circle-power';
|
|
3225
3221
|
// CirclePlay aliases
|
|
3226
3222
|
export { default as CirclePlayIcon } from '../icons/circle-play';
|
|
3227
3223
|
export {
|
|
3228
3224
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
3229
3225
|
default as PlayCircleIcon
|
|
3230
3226
|
} from '../icons/circle-play';
|
|
3231
|
-
//
|
|
3232
|
-
export { default as
|
|
3227
|
+
// CirclePlus aliases
|
|
3228
|
+
export { default as CirclePlusIcon } from '../icons/circle-plus';
|
|
3233
3229
|
export {
|
|
3234
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3235
|
-
default as
|
|
3236
|
-
} from '../icons/circle-
|
|
3230
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
3231
|
+
default as PlusCircleIcon
|
|
3232
|
+
} from '../icons/circle-plus';
|
|
3233
|
+
// CirclePower aliases
|
|
3234
|
+
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3235
|
+
export {
|
|
3236
|
+
/** @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 */
|
|
3237
|
+
default as PowerCircleIcon
|
|
3238
|
+
} from '../icons/circle-power';
|
|
3237
3239
|
// CircleQuestionMark aliases
|
|
3238
3240
|
export { default as CircleQuestionMarkIcon } from '../icons/circle-question-mark';
|
|
3239
3241
|
export {
|
|
@@ -3244,66 +3246,66 @@ export {
|
|
|
3244
3246
|
/** @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 */
|
|
3245
3247
|
default as CircleHelpIcon
|
|
3246
3248
|
} from '../icons/circle-question-mark';
|
|
3247
|
-
//
|
|
3248
|
-
export { default as
|
|
3249
|
+
// CircleStop aliases
|
|
3250
|
+
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3249
3251
|
export {
|
|
3250
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3251
|
-
default as
|
|
3252
|
-
} from '../icons/circle-
|
|
3252
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
3253
|
+
default as StopCircleIcon
|
|
3254
|
+
} from '../icons/circle-stop';
|
|
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
|
+
// CircleUserRound aliases
|
|
3262
|
+
export { default as CircleUserRoundIcon } from '../icons/circle-user-round';
|
|
3263
|
+
export {
|
|
3264
|
+
/** @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 */
|
|
3265
|
+
default as UserCircle2Icon
|
|
3266
|
+
} from '../icons/circle-user-round';
|
|
3253
3267
|
// CircleUser aliases
|
|
3254
3268
|
export { default as CircleUserIcon } from '../icons/circle-user';
|
|
3255
3269
|
export {
|
|
3256
3270
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
3257
3271
|
default as UserCircleIcon
|
|
3258
3272
|
} from '../icons/circle-user';
|
|
3259
|
-
// CircleStop aliases
|
|
3260
|
-
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3261
|
-
export {
|
|
3262
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
3263
|
-
default as StopCircleIcon
|
|
3264
|
-
} from '../icons/circle-stop';
|
|
3265
3273
|
// CircleX aliases
|
|
3266
3274
|
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3267
3275
|
export {
|
|
3268
3276
|
/** @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 */
|
|
3269
3277
|
default as XCircleIcon
|
|
3270
3278
|
} from '../icons/circle-x';
|
|
3271
|
-
// CircleUserRound aliases
|
|
3272
|
-
export { default as CircleUserRoundIcon } from '../icons/circle-user-round';
|
|
3273
|
-
export {
|
|
3274
|
-
/** @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 */
|
|
3275
|
-
default as UserCircle2Icon
|
|
3276
|
-
} from '../icons/circle-user-round';
|
|
3277
|
-
// ClipboardPen aliases
|
|
3278
|
-
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3279
|
-
export {
|
|
3280
|
-
/** @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 */
|
|
3281
|
-
default as ClipboardEditIcon
|
|
3282
|
-
} from '../icons/clipboard-pen';
|
|
3283
3279
|
// ClipboardPenLine aliases
|
|
3284
3280
|
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3285
3281
|
export {
|
|
3286
3282
|
/** @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 */
|
|
3287
3283
|
default as ClipboardSignatureIcon
|
|
3288
3284
|
} from '../icons/clipboard-pen-line';
|
|
3285
|
+
// CloudDownload aliases
|
|
3286
|
+
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3287
|
+
export {
|
|
3288
|
+
/** @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 */
|
|
3289
|
+
default as DownloadCloudIcon
|
|
3290
|
+
} from '../icons/cloud-download';
|
|
3289
3291
|
// CloudUpload aliases
|
|
3290
3292
|
export { default as CloudUploadIcon } from '../icons/cloud-upload';
|
|
3291
3293
|
export {
|
|
3292
3294
|
/** @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 */
|
|
3293
3295
|
default as UploadCloudIcon
|
|
3294
3296
|
} from '../icons/cloud-upload';
|
|
3295
|
-
//
|
|
3296
|
-
export { default as
|
|
3297
|
+
// ClipboardPen aliases
|
|
3298
|
+
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3297
3299
|
export {
|
|
3298
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3299
|
-
default as
|
|
3300
|
-
} from '../icons/
|
|
3301
|
-
//
|
|
3302
|
-
export { default as
|
|
3300
|
+
/** @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 */
|
|
3301
|
+
default as ClipboardEditIcon
|
|
3302
|
+
} from '../icons/clipboard-pen';
|
|
3303
|
+
// Columns2 aliases
|
|
3304
|
+
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3303
3305
|
export {
|
|
3304
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3305
|
-
default as
|
|
3306
|
-
} from '../icons/
|
|
3306
|
+
/** @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 */
|
|
3307
|
+
default as ColumnsIcon
|
|
3308
|
+
} from '../icons/columns-2';
|
|
3307
3309
|
// Columns3Cog aliases
|
|
3308
3310
|
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3309
3311
|
export {
|
|
@@ -3314,12 +3316,12 @@ export {
|
|
|
3314
3316
|
/** @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 */
|
|
3315
3317
|
default as TableConfigIcon
|
|
3316
3318
|
} from '../icons/columns-3-cog';
|
|
3317
|
-
//
|
|
3318
|
-
export { default as
|
|
3319
|
+
// CodeXml aliases
|
|
3320
|
+
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3319
3321
|
export {
|
|
3320
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3321
|
-
default as
|
|
3322
|
-
} from '../icons/
|
|
3322
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
3323
|
+
default as Code2Icon
|
|
3324
|
+
} from '../icons/code-xml';
|
|
3323
3325
|
// Columns3 aliases
|
|
3324
3326
|
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3325
3327
|
export {
|
|
@@ -3338,42 +3340,48 @@ export {
|
|
|
3338
3340
|
/** @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 */
|
|
3339
3341
|
default as PercentDiamondIcon
|
|
3340
3342
|
} from '../icons/diamond-percent';
|
|
3343
|
+
// Ellipsis aliases
|
|
3344
|
+
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3345
|
+
export {
|
|
3346
|
+
/** @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 */
|
|
3347
|
+
default as MoreHorizontalIcon
|
|
3348
|
+
} from '../icons/ellipsis';
|
|
3341
3349
|
// Earth aliases
|
|
3342
3350
|
export { default as EarthIcon } from '../icons/earth';
|
|
3343
3351
|
export {
|
|
3344
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 */
|
|
3345
3353
|
default as Globe2Icon
|
|
3346
3354
|
} from '../icons/earth';
|
|
3347
|
-
// EllipsisVertical aliases
|
|
3348
|
-
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3349
|
-
export {
|
|
3350
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
3351
|
-
default as MoreVerticalIcon
|
|
3352
|
-
} from '../icons/ellipsis-vertical';
|
|
3353
3355
|
// FileAxis3d aliases
|
|
3354
3356
|
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3355
3357
|
export {
|
|
3356
3358
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
3357
3359
|
default as FileAxis3DIcon
|
|
3358
3360
|
} from '../icons/file-axis-3d';
|
|
3359
|
-
// Ellipsis aliases
|
|
3360
|
-
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3361
|
-
export {
|
|
3362
|
-
/** @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 */
|
|
3363
|
-
default as MoreHorizontalIcon
|
|
3364
|
-
} from '../icons/ellipsis';
|
|
3365
3361
|
// FileBadge aliases
|
|
3366
3362
|
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
3367
3363
|
export {
|
|
3368
3364
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. This alias will be removed in v1.0 */
|
|
3369
3365
|
default as FileBadge2Icon
|
|
3370
3366
|
} from '../icons/file-badge';
|
|
3367
|
+
// EllipsisVertical aliases
|
|
3368
|
+
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3369
|
+
export {
|
|
3370
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
3371
|
+
default as MoreVerticalIcon
|
|
3372
|
+
} from '../icons/ellipsis-vertical';
|
|
3371
3373
|
// FileBracesCorner aliases
|
|
3372
3374
|
export { default as FileBracesCornerIcon } from '../icons/file-braces-corner';
|
|
3373
3375
|
export {
|
|
3374
3376
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
3375
3377
|
default as FileJson2Icon
|
|
3376
3378
|
} from '../icons/file-braces-corner';
|
|
3379
|
+
// FileBraces aliases
|
|
3380
|
+
export { default as FileBracesIcon } from '../icons/file-braces';
|
|
3381
|
+
export {
|
|
3382
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
3383
|
+
default as FileJsonIcon
|
|
3384
|
+
} from '../icons/file-braces';
|
|
3377
3385
|
// FileChartColumnIncreasing aliases
|
|
3378
3386
|
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3379
3387
|
export {
|
|
@@ -3386,12 +3394,6 @@ export {
|
|
|
3386
3394
|
/** @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 */
|
|
3387
3395
|
default as FileBarChart2Icon
|
|
3388
3396
|
} from '../icons/file-chart-column';
|
|
3389
|
-
// FileBraces aliases
|
|
3390
|
-
export { default as FileBracesIcon } from '../icons/file-braces';
|
|
3391
|
-
export {
|
|
3392
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
3393
|
-
default as FileJsonIcon
|
|
3394
|
-
} from '../icons/file-braces';
|
|
3395
3397
|
// FileChartLine aliases
|
|
3396
3398
|
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3397
3399
|
export {
|
|
@@ -3410,12 +3412,6 @@ export {
|
|
|
3410
3412
|
/** @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 */
|
|
3411
3413
|
default as FileCode2Icon
|
|
3412
3414
|
} from '../icons/file-code-corner';
|
|
3413
|
-
// FileExclamationPoint aliases
|
|
3414
|
-
export { default as FileExclamationPointIcon } from '../icons/file-exclamation-point';
|
|
3415
|
-
export {
|
|
3416
|
-
/** @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 */
|
|
3417
|
-
default as FileWarningIcon
|
|
3418
|
-
} from '../icons/file-exclamation-point';
|
|
3419
3415
|
// FileCheckCorner aliases
|
|
3420
3416
|
export { default as FileCheckCornerIcon } from '../icons/file-check-corner';
|
|
3421
3417
|
export {
|
|
@@ -3438,6 +3434,12 @@ export {
|
|
|
3438
3434
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileHeadphone} instead. This alias will be removed in v1.0 */
|
|
3439
3435
|
default as FileAudio2Icon
|
|
3440
3436
|
} from '../icons/file-headphone';
|
|
3437
|
+
// FileExclamationPoint aliases
|
|
3438
|
+
export { default as FileExclamationPointIcon } from '../icons/file-exclamation-point';
|
|
3439
|
+
export {
|
|
3440
|
+
/** @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 */
|
|
3441
|
+
default as FileWarningIcon
|
|
3442
|
+
} from '../icons/file-exclamation-point';
|
|
3441
3443
|
// FileKey aliases
|
|
3442
3444
|
export { default as FileKeyIcon } from '../icons/file-key';
|
|
3443
3445
|
export {
|
|
@@ -3450,42 +3452,48 @@ export {
|
|
|
3450
3452
|
/** @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 */
|
|
3451
3453
|
default as FileLock2Icon
|
|
3452
3454
|
} from '../icons/file-lock';
|
|
3453
|
-
// FileMinusCorner aliases
|
|
3454
|
-
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3455
|
-
export {
|
|
3456
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
3457
|
-
default as FileMinus2Icon
|
|
3458
|
-
} from '../icons/file-minus-corner';
|
|
3459
3455
|
// FilePenLine aliases
|
|
3460
3456
|
export { default as FilePenLineIcon } from '../icons/file-pen-line';
|
|
3461
3457
|
export {
|
|
3462
3458
|
/** @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 */
|
|
3463
3459
|
default as FileSignatureIcon
|
|
3464
3460
|
} from '../icons/file-pen-line';
|
|
3461
|
+
// FileMinusCorner aliases
|
|
3462
|
+
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3463
|
+
export {
|
|
3464
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
3465
|
+
default as FileMinus2Icon
|
|
3466
|
+
} from '../icons/file-minus-corner';
|
|
3465
3467
|
// FilePen aliases
|
|
3466
3468
|
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3467
3469
|
export {
|
|
3468
3470
|
/** @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 */
|
|
3469
3471
|
default as FileEditIcon
|
|
3470
3472
|
} from '../icons/file-pen';
|
|
3471
|
-
// FilePlusCorner aliases
|
|
3472
|
-
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3473
|
-
export {
|
|
3474
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
3475
|
-
default as FilePlus2Icon
|
|
3476
|
-
} from '../icons/file-plus-corner';
|
|
3477
3473
|
// FilePlay aliases
|
|
3478
3474
|
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3479
3475
|
export {
|
|
3480
3476
|
/** @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 */
|
|
3481
3477
|
default as FileVideoIcon
|
|
3482
3478
|
} from '../icons/file-play';
|
|
3479
|
+
// FilePlusCorner aliases
|
|
3480
|
+
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3481
|
+
export {
|
|
3482
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
3483
|
+
default as FilePlus2Icon
|
|
3484
|
+
} from '../icons/file-plus-corner';
|
|
3483
3485
|
// FileQuestionMark aliases
|
|
3484
3486
|
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3485
3487
|
export {
|
|
3486
3488
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3487
3489
|
default as FileQuestionIcon
|
|
3488
3490
|
} from '../icons/file-question-mark';
|
|
3491
|
+
// FileSearchCorner aliases
|
|
3492
|
+
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3493
|
+
export {
|
|
3494
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. This alias will be removed in v1.0 */
|
|
3495
|
+
default as FileSearch2Icon
|
|
3496
|
+
} from '../icons/file-search-corner';
|
|
3489
3497
|
// FileTypeCorner aliases
|
|
3490
3498
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3491
3499
|
export {
|
|
@@ -3498,12 +3506,6 @@ export {
|
|
|
3498
3506
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. This alias will be removed in v1.0 */
|
|
3499
3507
|
default as FileVolume2Icon
|
|
3500
3508
|
} from '../icons/file-signal';
|
|
3501
|
-
// FileSearchCorner aliases
|
|
3502
|
-
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3503
|
-
export {
|
|
3504
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. This alias will be removed in v1.0 */
|
|
3505
|
-
default as FileSearch2Icon
|
|
3506
|
-
} from '../icons/file-search-corner';
|
|
3507
3509
|
// FileVideoCamera aliases
|
|
3508
3510
|
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3509
3511
|
export {
|
|
@@ -3586,48 +3588,48 @@ export {
|
|
|
3586
3588
|
/** @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 */
|
|
3587
3589
|
default as Grid3X3Icon
|
|
3588
3590
|
} from '../icons/grid-3x3';
|
|
3589
|
-
// HandGrab aliases
|
|
3590
|
-
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3591
|
-
export {
|
|
3592
|
-
/** @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 */
|
|
3593
|
-
default as GrabIcon
|
|
3594
|
-
} from '../icons/hand-grab';
|
|
3595
3591
|
// HandHelping aliases
|
|
3596
3592
|
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3597
3593
|
export {
|
|
3598
3594
|
/** @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 */
|
|
3599
3595
|
default as HelpingHandIcon
|
|
3600
3596
|
} from '../icons/hand-helping';
|
|
3601
|
-
//
|
|
3602
|
-
export { default as
|
|
3597
|
+
// HandGrab aliases
|
|
3598
|
+
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3603
3599
|
export {
|
|
3604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3605
|
-
default as
|
|
3606
|
-
} from '../icons/
|
|
3600
|
+
/** @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
|
+
default as GrabIcon
|
|
3602
|
+
} from '../icons/hand-grab';
|
|
3607
3603
|
// House aliases
|
|
3608
3604
|
export { default as HouseIcon } from '../icons/house';
|
|
3609
3605
|
export {
|
|
3610
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 */
|
|
3611
3607
|
default as HomeIcon
|
|
3612
3608
|
} from '../icons/house';
|
|
3609
|
+
// IceCreamBowl aliases
|
|
3610
|
+
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3611
|
+
export {
|
|
3612
|
+
/** @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 */
|
|
3613
|
+
default as IceCream2Icon
|
|
3614
|
+
} from '../icons/ice-cream-bowl';
|
|
3613
3615
|
// IceCreamCone aliases
|
|
3614
3616
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3615
3617
|
export {
|
|
3616
3618
|
/** @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 */
|
|
3617
3619
|
default as IceCreamIcon
|
|
3618
3620
|
} from '../icons/ice-cream-cone';
|
|
3619
|
-
// Layers aliases
|
|
3620
|
-
export { default as LayersIcon } from '../icons/layers';
|
|
3621
|
-
export {
|
|
3622
|
-
/** @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 */
|
|
3623
|
-
default as Layers3Icon
|
|
3624
|
-
} from '../icons/layers';
|
|
3625
3621
|
// LaptopMinimal aliases
|
|
3626
3622
|
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3627
3623
|
export {
|
|
3628
3624
|
/** @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 */
|
|
3629
3625
|
default as Laptop2Icon
|
|
3630
3626
|
} from '../icons/laptop-minimal';
|
|
3627
|
+
// Layers aliases
|
|
3628
|
+
export { default as LayersIcon } from '../icons/layers';
|
|
3629
|
+
export {
|
|
3630
|
+
/** @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 */
|
|
3631
|
+
default as Layers3Icon
|
|
3632
|
+
} from '../icons/layers';
|
|
3631
3633
|
// ListIndentDecrease aliases
|
|
3632
3634
|
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3633
3635
|
export {
|
|
@@ -3648,18 +3650,18 @@ export {
|
|
|
3648
3650
|
/** @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 */
|
|
3649
3651
|
default as IndentIncreaseIcon
|
|
3650
3652
|
} from '../icons/list-indent-increase';
|
|
3651
|
-
// LoaderCircle aliases
|
|
3652
|
-
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3653
|
-
export {
|
|
3654
|
-
/** @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 */
|
|
3655
|
-
default as Loader2Icon
|
|
3656
|
-
} from '../icons/loader-circle';
|
|
3657
3653
|
// LockKeyholeOpen aliases
|
|
3658
3654
|
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3659
3655
|
export {
|
|
3660
3656
|
/** @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 */
|
|
3661
3657
|
default as UnlockKeyholeIcon
|
|
3662
3658
|
} from '../icons/lock-keyhole-open';
|
|
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';
|
|
3663
3665
|
// LockOpen aliases
|
|
3664
3666
|
export { default as LockOpenIcon } from '../icons/lock-open';
|
|
3665
3667
|
export {
|
|
@@ -3672,30 +3674,30 @@ export {
|
|
|
3672
3674
|
/** @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 */
|
|
3673
3675
|
default as MailQuestionIcon
|
|
3674
3676
|
} from '../icons/mail-question-mark';
|
|
3675
|
-
// MessageCircleQuestionMark aliases
|
|
3676
|
-
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3677
|
-
export {
|
|
3678
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3679
|
-
default as MessageCircleQuestionIcon
|
|
3680
|
-
} from '../icons/message-circle-question-mark';
|
|
3681
3677
|
// MapPinPen aliases
|
|
3682
3678
|
export { default as MapPinPenIcon } from '../icons/map-pin-pen';
|
|
3683
3679
|
export {
|
|
3684
3680
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. This alias will be removed in v1.0 */
|
|
3685
3681
|
default as LocationEditIcon
|
|
3686
3682
|
} from '../icons/map-pin-pen';
|
|
3687
|
-
//
|
|
3688
|
-
export { default as
|
|
3683
|
+
// MessageCircleQuestionMark aliases
|
|
3684
|
+
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3689
3685
|
export {
|
|
3690
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3691
|
-
default as
|
|
3692
|
-
} from '../icons/
|
|
3686
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3687
|
+
default as MessageCircleQuestionIcon
|
|
3688
|
+
} from '../icons/message-circle-question-mark';
|
|
3693
3689
|
// MicVocal aliases
|
|
3694
3690
|
export { default as MicVocalIcon } from '../icons/mic-vocal';
|
|
3695
3691
|
export {
|
|
3696
3692
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. This alias will be removed in v1.0 */
|
|
3697
3693
|
default as Mic2Icon
|
|
3698
3694
|
} from '../icons/mic-vocal';
|
|
3695
|
+
// Move3d aliases
|
|
3696
|
+
export { default as Move3dIcon } from '../icons/move-3d';
|
|
3697
|
+
export {
|
|
3698
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
3699
|
+
default as Move3DIcon
|
|
3700
|
+
} from '../icons/move-3d';
|
|
3699
3701
|
// OctagonAlert aliases
|
|
3700
3702
|
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3701
3703
|
export {
|
|
@@ -3714,30 +3716,18 @@ export {
|
|
|
3714
3716
|
/** @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 */
|
|
3715
3717
|
default as XOctagonIcon
|
|
3716
3718
|
} from '../icons/octagon-x';
|
|
3717
|
-
// PanelBottomDashed aliases
|
|
3718
|
-
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3719
|
-
export {
|
|
3720
|
-
/** @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 */
|
|
3721
|
-
default as PanelBottomInactiveIcon
|
|
3722
|
-
} from '../icons/panel-bottom-dashed';
|
|
3723
3719
|
// PaintbrushVertical aliases
|
|
3724
3720
|
export { default as PaintbrushVerticalIcon } from '../icons/paintbrush-vertical';
|
|
3725
3721
|
export {
|
|
3726
3722
|
/** @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 */
|
|
3727
3723
|
default as Paintbrush2Icon
|
|
3728
3724
|
} from '../icons/paintbrush-vertical';
|
|
3729
|
-
//
|
|
3730
|
-
export { default as
|
|
3731
|
-
export {
|
|
3732
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
3733
|
-
default as SidebarCloseIcon
|
|
3734
|
-
} from '../icons/panel-left-close';
|
|
3735
|
-
// PanelLeft aliases
|
|
3736
|
-
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3725
|
+
// PanelBottomDashed aliases
|
|
3726
|
+
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3737
3727
|
export {
|
|
3738
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3739
|
-
default as
|
|
3740
|
-
} from '../icons/panel-
|
|
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';
|
|
3741
3731
|
// PanelLeftDashed aliases
|
|
3742
3732
|
export { default as PanelLeftDashedIcon } from '../icons/panel-left-dashed';
|
|
3743
3733
|
export {
|
|
@@ -3750,12 +3740,18 @@ export {
|
|
|
3750
3740
|
/** @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 */
|
|
3751
3741
|
default as SidebarOpenIcon
|
|
3752
3742
|
} from '../icons/panel-left-open';
|
|
3753
|
-
//
|
|
3754
|
-
export { default as
|
|
3743
|
+
// PanelLeftClose aliases
|
|
3744
|
+
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3755
3745
|
export {
|
|
3756
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3757
|
-
default as
|
|
3758
|
-
} from '../icons/panel-
|
|
3746
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
3747
|
+
default as SidebarCloseIcon
|
|
3748
|
+
} from '../icons/panel-left-close';
|
|
3749
|
+
// PanelLeft aliases
|
|
3750
|
+
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3751
|
+
export {
|
|
3752
|
+
/** @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 */
|
|
3753
|
+
default as SidebarIcon
|
|
3754
|
+
} from '../icons/panel-left';
|
|
3759
3755
|
// PanelTopDashed aliases
|
|
3760
3756
|
export { default as PanelTopDashedIcon } from '../icons/panel-top-dashed';
|
|
3761
3757
|
export {
|
|
@@ -3771,9 +3767,21 @@ export {
|
|
|
3771
3767
|
// PenLine aliases
|
|
3772
3768
|
export { default as PenLineIcon } from '../icons/pen-line';
|
|
3773
3769
|
export {
|
|
3774
|
-
/** @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 */
|
|
3775
|
-
default as Edit3Icon
|
|
3776
|
-
} from '../icons/pen-line';
|
|
3770
|
+
/** @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 */
|
|
3771
|
+
default as Edit3Icon
|
|
3772
|
+
} from '../icons/pen-line';
|
|
3773
|
+
// PanelRightDashed aliases
|
|
3774
|
+
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3775
|
+
export {
|
|
3776
|
+
/** @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 */
|
|
3777
|
+
default as PanelRightInactiveIcon
|
|
3778
|
+
} from '../icons/panel-right-dashed';
|
|
3779
|
+
// PlugZap aliases
|
|
3780
|
+
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3781
|
+
export {
|
|
3782
|
+
/** @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 */
|
|
3783
|
+
default as PlugZap2Icon
|
|
3784
|
+
} from '../icons/plug-zap';
|
|
3777
3785
|
// Pen aliases
|
|
3778
3786
|
export { default as PenIcon } from '../icons/pen';
|
|
3779
3787
|
export {
|
|
@@ -3786,12 +3794,6 @@ export {
|
|
|
3786
3794
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
3787
3795
|
default as FormInputIcon
|
|
3788
3796
|
} from '../icons/rectangle-ellipsis';
|
|
3789
|
-
// PlugZap aliases
|
|
3790
|
-
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3791
|
-
export {
|
|
3792
|
-
/** @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 */
|
|
3793
|
-
default as PlugZap2Icon
|
|
3794
|
-
} from '../icons/plug-zap';
|
|
3795
3797
|
// Rotate3d aliases
|
|
3796
3798
|
export { default as Rotate3dIcon } from '../icons/rotate-3d';
|
|
3797
3799
|
export {
|
|
@@ -3804,18 +3806,18 @@ export {
|
|
|
3804
3806
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
3805
3807
|
default as RowsIcon
|
|
3806
3808
|
} from '../icons/rows-2';
|
|
3807
|
-
// Rows3 aliases
|
|
3808
|
-
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3809
|
-
export {
|
|
3810
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
3811
|
-
default as PanelsTopBottomIcon
|
|
3812
|
-
} from '../icons/rows-3';
|
|
3813
3809
|
// Scale3d aliases
|
|
3814
3810
|
export { default as Scale3dIcon } from '../icons/scale-3d';
|
|
3815
3811
|
export {
|
|
3816
3812
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
3817
3813
|
default as Scale3DIcon
|
|
3818
3814
|
} from '../icons/scale-3d';
|
|
3815
|
+
// Rows3 aliases
|
|
3816
|
+
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3817
|
+
export {
|
|
3818
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
3819
|
+
default as PanelsTopBottomIcon
|
|
3820
|
+
} from '../icons/rows-3';
|
|
3819
3821
|
// SendHorizontal aliases
|
|
3820
3822
|
export { default as SendHorizontalIcon } from '../icons/send-horizontal';
|
|
3821
3823
|
export {
|
|
@@ -3828,36 +3830,42 @@ export {
|
|
|
3828
3830
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3829
3831
|
default as ShieldQuestionIcon
|
|
3830
3832
|
} from '../icons/shield-question-mark';
|
|
3831
|
-
// ShieldX aliases
|
|
3832
|
-
export { default as ShieldXIcon } from '../icons/shield-x';
|
|
3833
|
-
export {
|
|
3834
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
3835
|
-
default as ShieldCloseIcon
|
|
3836
|
-
} from '../icons/shield-x';
|
|
3837
3833
|
// SlidersVertical aliases
|
|
3838
3834
|
export { default as SlidersVerticalIcon } from '../icons/sliders-vertical';
|
|
3839
3835
|
export {
|
|
3840
3836
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. This alias will be removed in v1.0 */
|
|
3841
3837
|
default as SlidersIcon
|
|
3842
3838
|
} from '../icons/sliders-vertical';
|
|
3839
|
+
// ShieldX aliases
|
|
3840
|
+
export { default as ShieldXIcon } from '../icons/shield-x';
|
|
3841
|
+
export {
|
|
3842
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
3843
|
+
default as ShieldCloseIcon
|
|
3844
|
+
} from '../icons/shield-x';
|
|
3843
3845
|
// Sparkles aliases
|
|
3844
3846
|
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3845
3847
|
export {
|
|
3846
3848
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
3847
3849
|
default as StarsIcon
|
|
3848
3850
|
} from '../icons/sparkles';
|
|
3851
|
+
// SquareActivity aliases
|
|
3852
|
+
export { default as SquareActivityIcon } from '../icons/square-activity';
|
|
3853
|
+
export {
|
|
3854
|
+
/** @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 */
|
|
3855
|
+
default as ActivitySquareIcon
|
|
3856
|
+
} from '../icons/square-activity';
|
|
3849
3857
|
// SquareArrowDownLeft aliases
|
|
3850
3858
|
export { default as SquareArrowDownLeftIcon } from '../icons/square-arrow-down-left';
|
|
3851
3859
|
export {
|
|
3852
3860
|
/** @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 */
|
|
3853
3861
|
default as ArrowDownLeftSquareIcon
|
|
3854
3862
|
} from '../icons/square-arrow-down-left';
|
|
3855
|
-
//
|
|
3856
|
-
export { default as
|
|
3863
|
+
// SquareArrowDown aliases
|
|
3864
|
+
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3857
3865
|
export {
|
|
3858
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3859
|
-
default as
|
|
3860
|
-
} from '../icons/square-
|
|
3866
|
+
/** @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 */
|
|
3867
|
+
default as ArrowDownSquareIcon
|
|
3868
|
+
} from '../icons/square-arrow-down';
|
|
3861
3869
|
// SquareArrowDownRight aliases
|
|
3862
3870
|
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
3863
3871
|
export {
|
|
@@ -3870,12 +3878,6 @@ export {
|
|
|
3870
3878
|
/** @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 */
|
|
3871
3879
|
default as ArrowLeftSquareIcon
|
|
3872
3880
|
} from '../icons/square-arrow-left';
|
|
3873
|
-
// SquareArrowDown aliases
|
|
3874
|
-
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3875
|
-
export {
|
|
3876
|
-
/** @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 */
|
|
3877
|
-
default as ArrowDownSquareIcon
|
|
3878
|
-
} from '../icons/square-arrow-down';
|
|
3879
3881
|
// SquareArrowOutDownLeft aliases
|
|
3880
3882
|
export { default as SquareArrowOutDownLeftIcon } from '../icons/square-arrow-out-down-left';
|
|
3881
3883
|
export {
|
|
@@ -3894,6 +3896,12 @@ export {
|
|
|
3894
3896
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3895
3897
|
default as ArrowDownRightFromSquareIcon
|
|
3896
3898
|
} from '../icons/square-arrow-out-down-right';
|
|
3899
|
+
// SquareArrowOutUpRight aliases
|
|
3900
|
+
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
3901
|
+
export {
|
|
3902
|
+
/** @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 */
|
|
3903
|
+
default as ArrowUpRightFromSquareIcon
|
|
3904
|
+
} from '../icons/square-arrow-out-up-right';
|
|
3897
3905
|
// SquareArrowUpLeft aliases
|
|
3898
3906
|
export { default as SquareArrowUpLeftIcon } from '../icons/square-arrow-up-left';
|
|
3899
3907
|
export {
|
|
@@ -3906,12 +3914,6 @@ export {
|
|
|
3906
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 */
|
|
3907
3915
|
default as ArrowRightSquareIcon
|
|
3908
3916
|
} from '../icons/square-arrow-right';
|
|
3909
|
-
// SquareArrowOutUpRight aliases
|
|
3910
|
-
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
3911
|
-
export {
|
|
3912
|
-
/** @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 */
|
|
3913
|
-
default as ArrowUpRightFromSquareIcon
|
|
3914
|
-
} from '../icons/square-arrow-out-up-right';
|
|
3915
3917
|
// SquareArrowUpRight aliases
|
|
3916
3918
|
export { default as SquareArrowUpRightIcon } from '../icons/square-arrow-up-right';
|
|
3917
3919
|
export {
|
|
@@ -3924,6 +3926,12 @@ export {
|
|
|
3924
3926
|
/** @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 */
|
|
3925
3927
|
default as ArrowUpSquareIcon
|
|
3926
3928
|
} from '../icons/square-arrow-up';
|
|
3929
|
+
// SquareAsterisk aliases
|
|
3930
|
+
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3931
|
+
export {
|
|
3932
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
3933
|
+
default as AsteriskSquareIcon
|
|
3934
|
+
} from '../icons/square-asterisk';
|
|
3927
3935
|
// SquareBottomDashedScissors aliases
|
|
3928
3936
|
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
3929
3937
|
export {
|
|
@@ -3936,12 +3944,6 @@ export {
|
|
|
3936
3944
|
/** @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 */
|
|
3937
3945
|
default as FlipHorizontalIcon
|
|
3938
3946
|
} from '../icons/square-centerline-dashed-horizontal';
|
|
3939
|
-
// SquareAsterisk aliases
|
|
3940
|
-
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3941
|
-
export {
|
|
3942
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
3943
|
-
default as AsteriskSquareIcon
|
|
3944
|
-
} from '../icons/square-asterisk';
|
|
3945
3947
|
// SquareCenterlineDashedVertical aliases
|
|
3946
3948
|
export { default as SquareCenterlineDashedVerticalIcon } from '../icons/square-centerline-dashed-vertical';
|
|
3947
3949
|
export {
|
|
@@ -3988,6 +3990,12 @@ export {
|
|
|
3988
3990
|
/** @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 */
|
|
3989
3991
|
default as ChevronRightSquareIcon
|
|
3990
3992
|
} from '../icons/square-chevron-right';
|
|
3993
|
+
// SquareChevronUp aliases
|
|
3994
|
+
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
3995
|
+
export {
|
|
3996
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
3997
|
+
default as ChevronUpSquareIcon
|
|
3998
|
+
} from '../icons/square-chevron-up';
|
|
3991
3999
|
// SquareCode aliases
|
|
3992
4000
|
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
3993
4001
|
export {
|
|
@@ -4000,30 +4008,24 @@ export {
|
|
|
4000
4008
|
/** @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 */
|
|
4001
4009
|
default as KanbanSquareDashedIcon
|
|
4002
4010
|
} from '../icons/square-dashed-kanban';
|
|
4003
|
-
// SquareChevronUp aliases
|
|
4004
|
-
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
4005
|
-
export {
|
|
4006
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
4007
|
-
default as ChevronUpSquareIcon
|
|
4008
|
-
} from '../icons/square-chevron-up';
|
|
4009
4011
|
// SquareDashed aliases
|
|
4010
4012
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
4011
4013
|
export {
|
|
4012
4014
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
4013
4015
|
default as BoxSelectIcon
|
|
4014
4016
|
} from '../icons/square-dashed';
|
|
4015
|
-
// SquareDot aliases
|
|
4016
|
-
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4017
|
-
export {
|
|
4018
|
-
/** @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 */
|
|
4019
|
-
default as DotSquareIcon
|
|
4020
|
-
} from '../icons/square-dot';
|
|
4021
4017
|
// SquareDashedMousePointer aliases
|
|
4022
4018
|
export { default as SquareDashedMousePointerIcon } from '../icons/square-dashed-mouse-pointer';
|
|
4023
4019
|
export {
|
|
4024
4020
|
/** @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 */
|
|
4025
4021
|
default as MousePointerSquareDashedIcon
|
|
4026
4022
|
} from '../icons/square-dashed-mouse-pointer';
|
|
4023
|
+
// SquareDot aliases
|
|
4024
|
+
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4025
|
+
export {
|
|
4026
|
+
/** @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 */
|
|
4027
|
+
default as DotSquareIcon
|
|
4028
|
+
} from '../icons/square-dot';
|
|
4027
4029
|
// SquareDivide aliases
|
|
4028
4030
|
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
4029
4031
|
export {
|
|
@@ -4036,18 +4038,18 @@ export {
|
|
|
4036
4038
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
4037
4039
|
default as EqualSquareIcon
|
|
4038
4040
|
} from '../icons/square-equal';
|
|
4039
|
-
// SquareKanban aliases
|
|
4040
|
-
export { default as SquareKanbanIcon } from '../icons/square-kanban';
|
|
4041
|
-
export {
|
|
4042
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
4043
|
-
default as KanbanSquareIcon
|
|
4044
|
-
} from '../icons/square-kanban';
|
|
4045
4041
|
// SquareFunction aliases
|
|
4046
4042
|
export { default as SquareFunctionIcon } from '../icons/square-function';
|
|
4047
4043
|
export {
|
|
4048
4044
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
4049
4045
|
default as FunctionSquareIcon
|
|
4050
4046
|
} from '../icons/square-function';
|
|
4047
|
+
// SquareKanban aliases
|
|
4048
|
+
export { default as SquareKanbanIcon } from '../icons/square-kanban';
|
|
4049
|
+
export {
|
|
4050
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
4051
|
+
default as KanbanSquareIcon
|
|
4052
|
+
} from '../icons/square-kanban';
|
|
4051
4053
|
// SquareLibrary aliases
|
|
4052
4054
|
export { default as SquareLibraryIcon } from '../icons/square-library';
|
|
4053
4055
|
export {
|
|
@@ -4060,18 +4062,18 @@ export {
|
|
|
4060
4062
|
/** @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 */
|
|
4061
4063
|
default as MenuSquareIcon
|
|
4062
4064
|
} from '../icons/square-menu';
|
|
4063
|
-
// SquareM aliases
|
|
4064
|
-
export { default as SquareMIcon } from '../icons/square-m';
|
|
4065
|
-
export {
|
|
4066
|
-
/** @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 */
|
|
4067
|
-
default as MSquareIcon
|
|
4068
|
-
} from '../icons/square-m';
|
|
4069
4065
|
// SquareMinus aliases
|
|
4070
4066
|
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
4071
4067
|
export {
|
|
4072
4068
|
/** @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 */
|
|
4073
4069
|
default as MinusSquareIcon
|
|
4074
4070
|
} from '../icons/square-minus';
|
|
4071
|
+
// SquareM aliases
|
|
4072
|
+
export { default as SquareMIcon } from '../icons/square-m';
|
|
4073
|
+
export {
|
|
4074
|
+
/** @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 */
|
|
4075
|
+
default as MSquareIcon
|
|
4076
|
+
} from '../icons/square-m';
|
|
4075
4077
|
// SquareMousePointer aliases
|
|
4076
4078
|
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4077
4079
|
export {
|
|
@@ -4104,36 +4106,42 @@ export {
|
|
|
4104
4106
|
/** @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 */
|
|
4105
4107
|
default as PenSquareIcon
|
|
4106
4108
|
} from '../icons/square-pen';
|
|
4107
|
-
// SquarePi aliases
|
|
4108
|
-
export { default as SquarePiIcon } from '../icons/square-pi';
|
|
4109
|
-
export {
|
|
4110
|
-
/** @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 */
|
|
4111
|
-
default as PiSquareIcon
|
|
4112
|
-
} from '../icons/square-pi';
|
|
4113
4109
|
// SquarePercent aliases
|
|
4114
4110
|
export { default as SquarePercentIcon } from '../icons/square-percent';
|
|
4115
4111
|
export {
|
|
4116
4112
|
/** @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 */
|
|
4117
4113
|
default as PercentSquareIcon
|
|
4118
4114
|
} from '../icons/square-percent';
|
|
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';
|
|
4119
4121
|
// SquarePilcrow aliases
|
|
4120
4122
|
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4121
4123
|
export {
|
|
4122
4124
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
4123
4125
|
default as PilcrowSquareIcon
|
|
4124
4126
|
} from '../icons/square-pilcrow';
|
|
4125
|
-
//
|
|
4126
|
-
export { default as
|
|
4127
|
+
// SquarePlus aliases
|
|
4128
|
+
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4127
4129
|
export {
|
|
4128
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4129
|
-
default as
|
|
4130
|
-
} from '../icons/square-
|
|
4130
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
4131
|
+
default as PlusSquareIcon
|
|
4132
|
+
} from '../icons/square-plus';
|
|
4131
4133
|
// SquarePlay aliases
|
|
4132
4134
|
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4133
4135
|
export {
|
|
4134
4136
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
4135
4137
|
default as PlaySquareIcon
|
|
4136
4138
|
} from '../icons/square-play';
|
|
4139
|
+
// SquarePower aliases
|
|
4140
|
+
export { default as SquarePowerIcon } from '../icons/square-power';
|
|
4141
|
+
export {
|
|
4142
|
+
/** @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 */
|
|
4143
|
+
default as PowerSquareIcon
|
|
4144
|
+
} from '../icons/square-power';
|
|
4137
4145
|
// SquareScissors aliases
|
|
4138
4146
|
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4139
4147
|
export {
|
|
@@ -4146,12 +4154,6 @@ export {
|
|
|
4146
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 */
|
|
4147
4155
|
default as SigmaSquareIcon
|
|
4148
4156
|
} from '../icons/square-sigma';
|
|
4149
|
-
// SquarePlus aliases
|
|
4150
|
-
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4151
|
-
export {
|
|
4152
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
4153
|
-
default as PlusSquareIcon
|
|
4154
|
-
} from '../icons/square-plus';
|
|
4155
4157
|
// SquareSlash aliases
|
|
4156
4158
|
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
4157
4159
|
export {
|
|
@@ -4164,36 +4166,36 @@ export {
|
|
|
4164
4166
|
/** @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 */
|
|
4165
4167
|
default as SplitSquareHorizontalIcon
|
|
4166
4168
|
} from '../icons/square-split-horizontal';
|
|
4167
|
-
// SquareTerminal aliases
|
|
4168
|
-
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4169
|
-
export {
|
|
4170
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
4171
|
-
default as TerminalSquareIcon
|
|
4172
|
-
} from '../icons/square-terminal';
|
|
4173
4169
|
// SquareSplitVertical aliases
|
|
4174
4170
|
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4175
4171
|
export {
|
|
4176
4172
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
4177
4173
|
default as SplitSquareVerticalIcon
|
|
4178
4174
|
} from '../icons/square-split-vertical';
|
|
4175
|
+
// SquareTerminal aliases
|
|
4176
|
+
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4177
|
+
export {
|
|
4178
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
4179
|
+
default as TerminalSquareIcon
|
|
4180
|
+
} from '../icons/square-terminal';
|
|
4179
4181
|
// SquareUserRound aliases
|
|
4180
4182
|
export { default as SquareUserRoundIcon } from '../icons/square-user-round';
|
|
4181
4183
|
export {
|
|
4182
4184
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
4183
4185
|
default as UserSquare2Icon
|
|
4184
4186
|
} from '../icons/square-user-round';
|
|
4185
|
-
// SquareUser aliases
|
|
4186
|
-
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4187
|
-
export {
|
|
4188
|
-
/** @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 */
|
|
4189
|
-
default as UserSquareIcon
|
|
4190
|
-
} from '../icons/square-user';
|
|
4191
4187
|
// SquareX aliases
|
|
4192
4188
|
export { default as SquareXIcon } from '../icons/square-x';
|
|
4193
4189
|
export {
|
|
4194
4190
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
4195
4191
|
default as XSquareIcon
|
|
4196
4192
|
} from '../icons/square-x';
|
|
4193
|
+
// SquareUser aliases
|
|
4194
|
+
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4195
|
+
export {
|
|
4196
|
+
/** @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
|
+
default as UserSquareIcon
|
|
4198
|
+
} from '../icons/square-user';
|
|
4197
4199
|
// TextAlignCenter aliases
|
|
4198
4200
|
export { default as TextAlignCenterIcon } from '../icons/text-align-center';
|
|
4199
4201
|
export {
|
|
@@ -4228,18 +4230,6 @@ export {
|
|
|
4228
4230
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
|
|
4229
4231
|
default as AlignLeftIcon
|
|
4230
4232
|
} from '../icons/text-align-start';
|
|
4231
|
-
// TextSelect aliases
|
|
4232
|
-
export { default as TextSelectIcon } from '../icons/text-select';
|
|
4233
|
-
export {
|
|
4234
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
4235
|
-
default as TextSelectionIcon
|
|
4236
|
-
} from '../icons/text-select';
|
|
4237
|
-
// TramFront aliases
|
|
4238
|
-
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4239
|
-
export {
|
|
4240
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|
|
4241
|
-
default as TrainIcon
|
|
4242
|
-
} from '../icons/tram-front';
|
|
4243
4233
|
// TextInitial aliases
|
|
4244
4234
|
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4245
4235
|
export {
|
|
@@ -4252,6 +4242,18 @@ export {
|
|
|
4252
4242
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. This alias will be removed in v1.0 */
|
|
4253
4243
|
default as WrapTextIcon
|
|
4254
4244
|
} from '../icons/text-wrap';
|
|
4245
|
+
// TextSelect aliases
|
|
4246
|
+
export { default as TextSelectIcon } from '../icons/text-select';
|
|
4247
|
+
export {
|
|
4248
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
4249
|
+
default as TextSelectionIcon
|
|
4250
|
+
} from '../icons/text-select';
|
|
4251
|
+
// TramFront aliases
|
|
4252
|
+
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4253
|
+
export {
|
|
4254
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|
|
4255
|
+
default as TrainIcon
|
|
4256
|
+
} from '../icons/tram-front';
|
|
4255
4257
|
// TreePalm aliases
|
|
4256
4258
|
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4257
4259
|
export {
|
|
@@ -4270,18 +4272,24 @@ export {
|
|
|
4270
4272
|
/** @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 */
|
|
4271
4273
|
default as Tv2Icon
|
|
4272
4274
|
} from '../icons/tv-minimal';
|
|
4275
|
+
// University aliases
|
|
4276
|
+
export { default as UniversityIcon } from '../icons/university';
|
|
4277
|
+
export {
|
|
4278
|
+
/** @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 */
|
|
4279
|
+
default as School2Icon
|
|
4280
|
+
} from '../icons/university';
|
|
4273
4281
|
// UserRoundCheck aliases
|
|
4274
4282
|
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4275
4283
|
export {
|
|
4276
4284
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
4277
4285
|
default as UserCheck2Icon
|
|
4278
4286
|
} from '../icons/user-round-check';
|
|
4279
|
-
//
|
|
4280
|
-
export { default as
|
|
4287
|
+
// UserRoundCog aliases
|
|
4288
|
+
export { default as UserRoundCogIcon } from '../icons/user-round-cog';
|
|
4281
4289
|
export {
|
|
4282
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4283
|
-
default as
|
|
4284
|
-
} from '../icons/
|
|
4290
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
4291
|
+
default as UserCog2Icon
|
|
4292
|
+
} from '../icons/user-round-cog';
|
|
4285
4293
|
// UserRoundMinus aliases
|
|
4286
4294
|
export { default as UserRoundMinusIcon } from '../icons/user-round-minus';
|
|
4287
4295
|
export {
|
|
@@ -4294,12 +4302,12 @@ export {
|
|
|
4294
4302
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
4295
4303
|
default as UserX2Icon
|
|
4296
4304
|
} from '../icons/user-round-x';
|
|
4297
|
-
//
|
|
4298
|
-
export { default as
|
|
4305
|
+
// UserRoundPlus aliases
|
|
4306
|
+
export { default as UserRoundPlusIcon } from '../icons/user-round-plus';
|
|
4299
4307
|
export {
|
|
4300
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4301
|
-
default as
|
|
4302
|
-
} from '../icons/user-round-
|
|
4308
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
4309
|
+
default as UserPlus2Icon
|
|
4310
|
+
} from '../icons/user-round-plus';
|
|
4303
4311
|
// UserRound aliases
|
|
4304
4312
|
export { default as UserRoundIcon } from '../icons/user-round';
|
|
4305
4313
|
export {
|
|
@@ -4312,12 +4320,6 @@ export {
|
|
|
4312
4320
|
/** @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 */
|
|
4313
4321
|
default as Users2Icon
|
|
4314
4322
|
} from '../icons/users-round';
|
|
4315
|
-
// UserRoundPlus aliases
|
|
4316
|
-
export { default as UserRoundPlusIcon } from '../icons/user-round-plus';
|
|
4317
|
-
export {
|
|
4318
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
4319
|
-
default as UserPlus2Icon
|
|
4320
|
-
} from '../icons/user-round-plus';
|
|
4321
4323
|
// UtensilsCrossed aliases
|
|
4322
4324
|
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4323
4325
|
export {
|
|
@@ -4330,16 +4332,16 @@ export {
|
|
|
4330
4332
|
/** @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 */
|
|
4331
4333
|
default as Wallet2Icon
|
|
4332
4334
|
} from '../icons/wallet-minimal';
|
|
4333
|
-
// WandSparkles aliases
|
|
4334
|
-
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4335
|
-
export {
|
|
4336
|
-
/** @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 */
|
|
4337
|
-
default as Wand2Icon
|
|
4338
|
-
} from '../icons/wand-sparkles';
|
|
4339
4335
|
// Utensils aliases
|
|
4340
4336
|
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4341
4337
|
export {
|
|
4342
4338
|
/** @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 */
|
|
4343
4339
|
default as ForkKnifeIcon
|
|
4344
4340
|
} from '../icons/utensils';
|
|
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';
|
|
4345
4347
|
|