@lucide/astro 1.26.0 → 1.28.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 +2 -2
- package/src/aliases/aliases.ts +110 -98
- package/src/aliases/prefixed.ts +705 -683
- package/src/aliases/suffixed.ts +1023 -1001
- package/src/icons/a-large-small.ts +1 -1
- package/src/icons/ambulance.ts +1 -1
- package/src/icons/barrel.ts +2 -2
- package/src/icons/bone-fracture.ts +1 -1
- package/src/icons/bot-off.ts +1 -1
- package/src/icons/calendar-1.ts +2 -2
- package/src/icons/calendar-arrow-down.ts +2 -2
- package/src/icons/calendar-arrow-up.ts +2 -2
- package/src/icons/calendar-check-2.ts +2 -2
- package/src/icons/calendar-check.ts +2 -2
- package/src/icons/calendar-clock.ts +2 -2
- package/src/icons/calendar-cog.ts +2 -2
- package/src/icons/calendar-days.ts +2 -2
- package/src/icons/calendar-fold.ts +2 -2
- package/src/icons/calendar-heart.ts +2 -2
- package/src/icons/calendar-minus-2.ts +2 -2
- package/src/icons/calendar-minus.ts +2 -2
- package/src/icons/calendar-off.ts +2 -2
- package/src/icons/calendar-plus-2.ts +2 -2
- package/src/icons/calendar-plus.ts +2 -2
- package/src/icons/calendar-range.ts +2 -2
- package/src/icons/calendar-search.ts +2 -2
- package/src/icons/calendar-sync.ts +2 -2
- package/src/icons/calendar-x-2.ts +2 -2
- package/src/icons/calendar-x.ts +2 -2
- package/src/icons/calendar.ts +2 -2
- package/src/icons/captions.ts +1 -1
- package/src/icons/circle-fading-plus.ts +1 -1
- package/src/icons/contact-round.ts +2 -2
- package/src/icons/contact.ts +2 -2
- package/src/icons/diamond-minus.ts +1 -1
- package/src/icons/diamond-plus.ts +1 -1
- package/src/icons/feather.ts +2 -2
- package/src/icons/flag-triangle-left.ts +1 -1
- package/src/icons/gamepad-directional.ts +1 -1
- package/src/icons/git-merge-conflict.ts +1 -1
- package/src/icons/id-card-lanyard.ts +1 -1
- package/src/icons/index.ts +172 -165
- package/src/icons/keyboard-off.ts +1 -1
- package/src/icons/layers-plus.ts +1 -1
- package/src/icons/layout-freeform.ts +18 -0
- package/src/icons/lens-convex.ts +1 -1
- package/src/icons/line-squiggle.ts +1 -1
- package/src/icons/mic-audio-lines.ts +18 -0
- package/src/icons/mic-signal.ts +18 -0
- package/src/icons/mirror-rectangular.ts +1 -1
- package/src/icons/mirror-round.ts +1 -1
- package/src/icons/mosque.ts +18 -0
- package/src/icons/pilcrow-right.ts +1 -1
- package/src/icons/{history.ts → rotate-ccw-clock.ts} +4 -4
- package/src/icons/rotate-cw-fading-clock.ts +18 -0
- package/src/icons/{podcast.ts → scan-square.ts} +4 -4
- package/src/icons/scooter.ts +1 -1
- package/src/icons/search-alert.ts +1 -1
- package/src/icons/spline-pointer.ts +1 -1
- package/src/icons/square-arrow-right-enter.ts +1 -1
- package/src/icons/square-arrow-right-exit.ts +1 -1
- package/src/icons/square-bottom-dashed-scissors.ts +2 -2
- package/src/icons/square-off.ts +18 -0
- package/src/icons/square-scissors.ts +2 -2
- package/src/icons/squares-exclude.ts +1 -1
- package/src/icons/squares-intersect.ts +1 -1
- package/src/icons/squares-subtract.ts +1 -1
- package/src/icons/squares-unite.ts +1 -1
- package/src/icons/toilet.ts +1 -1
- package/src/icons/toolbox.ts +2 -2
- package/src/icons/trophy.ts +2 -2
- package/src/icons/truck.ts +1 -1
- package/src/icons/user-shield.ts +18 -0
- package/src/icons/van.ts +1 -1
- package/src/icons/zap-off.ts +2 -2
- package/src/icons/zap.ts +2 -2
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// AArrowDown aliases
|
|
2
2
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
|
+
// AArrowUp aliases
|
|
4
|
+
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
3
5
|
// ALargeSmall aliases
|
|
4
6
|
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
5
7
|
// Accessibility aliases
|
|
6
8
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
7
|
-
// AArrowUp aliases
|
|
8
|
-
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
9
9
|
// Activity aliases
|
|
10
10
|
export { default as ActivityIcon } from '../icons/activity';
|
|
11
11
|
// Ad aliases
|
|
@@ -24,38 +24,38 @@ export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
|
24
24
|
export { default as AlbumIcon } from '../icons/album';
|
|
25
25
|
// AlignCenterHorizontal aliases
|
|
26
26
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
27
|
-
// AlignCenterVertical aliases
|
|
28
|
-
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
29
|
-
// AlignEndVertical aliases
|
|
30
|
-
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
31
27
|
// AlignEndHorizontal aliases
|
|
32
28
|
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
33
29
|
// AlignHorizontalDistributeCenter aliases
|
|
34
30
|
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
35
|
-
//
|
|
36
|
-
export { default as
|
|
31
|
+
// AlignEndVertical aliases
|
|
32
|
+
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
33
|
+
// AlignCenterVertical aliases
|
|
34
|
+
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
37
35
|
// AlignHorizontalDistributeStart aliases
|
|
38
36
|
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
37
|
+
// AlignHorizontalDistributeEnd aliases
|
|
38
|
+
export { default as AlignHorizontalDistributeEndIcon } from '../icons/align-horizontal-distribute-end';
|
|
39
39
|
// AlignHorizontalJustifyEnd aliases
|
|
40
40
|
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
41
|
+
// AlignHorizontalJustifyCenter aliases
|
|
42
|
+
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
41
43
|
// AlignHorizontalJustifyStart aliases
|
|
42
44
|
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
43
45
|
// AlignHorizontalSpaceAround aliases
|
|
44
46
|
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
45
|
-
// AlignHorizontalJustifyCenter aliases
|
|
46
|
-
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
47
47
|
// AlignHorizontalSpaceBetween aliases
|
|
48
48
|
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
49
|
-
// AlignStartVertical aliases
|
|
50
|
-
export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical';
|
|
51
49
|
// AlignStartHorizontal aliases
|
|
52
50
|
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
51
|
+
// AlignStartVertical aliases
|
|
52
|
+
export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical';
|
|
53
|
+
// AlignVerticalDistributeCenter aliases
|
|
54
|
+
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
53
55
|
// AlignVerticalDistributeEnd aliases
|
|
54
56
|
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
55
57
|
// AlignVerticalDistributeStart aliases
|
|
56
58
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
57
|
-
// AlignVerticalDistributeCenter aliases
|
|
58
|
-
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
59
59
|
// AlignVerticalJustifyCenter aliases
|
|
60
60
|
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
61
61
|
// AlignVerticalJustifyEnd aliases
|
|
@@ -64,46 +64,46 @@ export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-
|
|
|
64
64
|
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
65
65
|
// AlignVerticalSpaceAround aliases
|
|
66
66
|
export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical-space-around';
|
|
67
|
-
// Ambulance aliases
|
|
68
|
-
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
69
67
|
// AlignVerticalSpaceBetween aliases
|
|
70
68
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
69
|
+
// Ambulance aliases
|
|
70
|
+
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
71
71
|
// Ampersand aliases
|
|
72
72
|
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
73
73
|
// Ampersands aliases
|
|
74
74
|
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
75
75
|
// Amphora aliases
|
|
76
76
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
77
|
-
// Antenna aliases
|
|
78
|
-
export { default as AntennaIcon } from '../icons/antenna';
|
|
79
77
|
// Anchor aliases
|
|
80
78
|
export { default as AnchorIcon } from '../icons/anchor';
|
|
81
79
|
// Angry aliases
|
|
82
80
|
export { default as AngryIcon } from '../icons/angry';
|
|
83
|
-
//
|
|
84
|
-
export { default as
|
|
81
|
+
// Antenna aliases
|
|
82
|
+
export { default as AntennaIcon } from '../icons/antenna';
|
|
85
83
|
// Annoyed aliases
|
|
86
84
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
85
|
+
// Anvil aliases
|
|
86
|
+
export { default as AnvilIcon } from '../icons/anvil';
|
|
87
87
|
// Aperture aliases
|
|
88
88
|
export { default as ApertureIcon } from '../icons/aperture';
|
|
89
89
|
// AppWindowMac aliases
|
|
90
90
|
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
91
|
-
// Apple aliases
|
|
92
|
-
export { default as AppleIcon } from '../icons/apple';
|
|
93
91
|
// AppWindow aliases
|
|
94
92
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
95
93
|
// ArchiveRestore aliases
|
|
96
94
|
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
95
|
+
// Archive aliases
|
|
96
|
+
export { default as ArchiveIcon } from '../icons/archive';
|
|
97
|
+
// Apple aliases
|
|
98
|
+
export { default as AppleIcon } from '../icons/apple';
|
|
97
99
|
// ArchiveX aliases
|
|
98
100
|
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
99
101
|
// Armchair aliases
|
|
100
102
|
export { default as ArmchairIcon } from '../icons/armchair';
|
|
101
|
-
// Archive aliases
|
|
102
|
-
export { default as ArchiveIcon } from '../icons/archive';
|
|
103
|
-
// ArrowBigDown aliases
|
|
104
|
-
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
105
103
|
// ArrowBigDownDash aliases
|
|
106
104
|
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
105
|
+
// ArrowBigDown aliases
|
|
106
|
+
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
107
107
|
// ArrowBigLeftDash aliases
|
|
108
108
|
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
109
109
|
// ArrowBigLeft aliases
|
|
@@ -124,18 +124,18 @@ export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
|
124
124
|
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
125
125
|
// ArrowDownRight aliases
|
|
126
126
|
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
127
|
-
// ArrowDownToDot aliases
|
|
128
|
-
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
129
127
|
// ArrowDownToLine aliases
|
|
130
128
|
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
129
|
+
// ArrowDownToDot aliases
|
|
130
|
+
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
131
131
|
// ArrowDownUp aliases
|
|
132
132
|
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
133
133
|
// ArrowDown aliases
|
|
134
134
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
135
|
-
// ArrowLeftRight aliases
|
|
136
|
-
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
137
135
|
// ArrowLeftFromLine aliases
|
|
138
136
|
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
137
|
+
// ArrowLeftRight aliases
|
|
138
|
+
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
139
139
|
// ArrowLeftToLine aliases
|
|
140
140
|
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
141
141
|
// ArrowLeft aliases
|
|
@@ -148,20 +148,20 @@ export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
|
148
148
|
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
149
149
|
// ArrowRight aliases
|
|
150
150
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
151
|
-
// ArrowUpFromDot aliases
|
|
152
|
-
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
153
151
|
// ArrowUpDown aliases
|
|
154
152
|
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
155
153
|
// ArrowUpFromLine aliases
|
|
156
154
|
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
155
|
+
// ArrowUpFromDot aliases
|
|
156
|
+
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
157
157
|
// ArrowUpLeft aliases
|
|
158
158
|
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
159
159
|
// ArrowUpRight aliases
|
|
160
160
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
161
|
-
// ArrowUpToLine aliases
|
|
162
|
-
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
163
161
|
// ArrowUpWideNarrow aliases
|
|
164
162
|
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
163
|
+
// ArrowUpToLine aliases
|
|
164
|
+
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
165
165
|
// ArrowUp aliases
|
|
166
166
|
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
167
167
|
// ArrowsUpFromLine aliases
|
|
@@ -202,42 +202,42 @@ export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
|
202
202
|
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
203
203
|
// BadgeMinus aliases
|
|
204
204
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
205
|
-
// BadgePercent aliases
|
|
206
|
-
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
207
205
|
// BadgePlus aliases
|
|
208
206
|
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
207
|
+
// BadgePercent aliases
|
|
208
|
+
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
209
209
|
// BadgePoundSterling aliases
|
|
210
210
|
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
211
211
|
// BadgeRussianRuble aliases
|
|
212
212
|
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
213
213
|
// BadgeSwissFranc aliases
|
|
214
214
|
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
215
|
-
// BadgeTurkishLira aliases
|
|
216
|
-
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
217
|
-
// Badge aliases
|
|
218
|
-
export { default as BadgeIcon } from '../icons/badge';
|
|
219
215
|
// BadgeX aliases
|
|
220
216
|
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
217
|
+
// BadgeTurkishLira aliases
|
|
218
|
+
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
221
219
|
// BaggageClaim aliases
|
|
222
220
|
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
223
|
-
// Ban aliases
|
|
224
|
-
export { default as BanIcon } from '../icons/ban';
|
|
225
221
|
// Balloon aliases
|
|
226
222
|
export { default as BalloonIcon } from '../icons/balloon';
|
|
227
|
-
//
|
|
228
|
-
export { default as
|
|
223
|
+
// Badge aliases
|
|
224
|
+
export { default as BadgeIcon } from '../icons/badge';
|
|
225
|
+
// Ban aliases
|
|
226
|
+
export { default as BanIcon } from '../icons/ban';
|
|
229
227
|
// Banana aliases
|
|
230
228
|
export { default as BananaIcon } from '../icons/banana';
|
|
229
|
+
// Bandage aliases
|
|
230
|
+
export { default as BandageIcon } from '../icons/bandage';
|
|
231
231
|
// BanknoteArrowDown aliases
|
|
232
232
|
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
233
|
-
// BanknoteArrowUp aliases
|
|
234
|
-
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
235
233
|
// BanknoteCheck aliases
|
|
236
234
|
export { default as BanknoteCheckIcon } from '../icons/banknote-check';
|
|
237
235
|
// BanknoteX aliases
|
|
238
236
|
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
239
237
|
// Banknote aliases
|
|
240
238
|
export { default as BanknoteIcon } from '../icons/banknote';
|
|
239
|
+
// BanknoteArrowUp aliases
|
|
240
|
+
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
241
241
|
// Barcode aliases
|
|
242
242
|
export { default as BarcodeIcon } from '../icons/barcode';
|
|
243
243
|
// Barrel aliases
|
|
@@ -250,10 +250,10 @@ export { default as BathIcon } from '../icons/bath';
|
|
|
250
250
|
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
251
251
|
// BatteryFull aliases
|
|
252
252
|
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
253
|
-
// BatteryMedium aliases
|
|
254
|
-
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
255
253
|
// BatteryLow aliases
|
|
256
254
|
export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
255
|
+
// BatteryMedium aliases
|
|
256
|
+
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
257
257
|
// BatteryPlus aliases
|
|
258
258
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
259
259
|
// BatteryWarning aliases
|
|
@@ -262,34 +262,34 @@ export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
|
262
262
|
export { default as BatteryIcon } from '../icons/battery';
|
|
263
263
|
// Beaker aliases
|
|
264
264
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
265
|
-
// Bean aliases
|
|
266
|
-
export { default as BeanIcon } from '../icons/bean';
|
|
267
265
|
// BeanOff aliases
|
|
268
266
|
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
267
|
+
// Bean aliases
|
|
268
|
+
export { default as BeanIcon } from '../icons/bean';
|
|
269
269
|
// BedDouble aliases
|
|
270
270
|
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
271
271
|
// BedSingle aliases
|
|
272
272
|
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
273
|
-
// Beef aliases
|
|
274
|
-
export { default as BeefIcon } from '../icons/beef';
|
|
275
273
|
// Bed aliases
|
|
276
274
|
export { default as BedIcon } from '../icons/bed';
|
|
277
275
|
// BeefOff aliases
|
|
278
276
|
export { default as BeefOffIcon } from '../icons/beef-off';
|
|
279
|
-
//
|
|
280
|
-
export { default as
|
|
277
|
+
// Beef aliases
|
|
278
|
+
export { default as BeefIcon } from '../icons/beef';
|
|
281
279
|
// BeerOff aliases
|
|
282
280
|
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
281
|
+
// Beer aliases
|
|
282
|
+
export { default as BeerIcon } from '../icons/beer';
|
|
283
283
|
// BellDot aliases
|
|
284
284
|
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
285
|
-
// BellCheck aliases
|
|
286
|
-
export { default as BellCheckIcon } from '../icons/bell-check';
|
|
287
285
|
// BellElectric aliases
|
|
288
286
|
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
289
287
|
// BellMinus aliases
|
|
290
288
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
291
289
|
// BellOff aliases
|
|
292
290
|
export { default as BellOffIcon } from '../icons/bell-off';
|
|
291
|
+
// BellCheck aliases
|
|
292
|
+
export { default as BellCheckIcon } from '../icons/bell-check';
|
|
293
293
|
// BellPlus aliases
|
|
294
294
|
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
295
295
|
// BellRing aliases
|
|
@@ -306,24 +306,24 @@ export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
|
306
306
|
export { default as BikeIcon } from '../icons/bike';
|
|
307
307
|
// Binary aliases
|
|
308
308
|
export { default as BinaryIcon } from '../icons/binary';
|
|
309
|
+
// Binoculars aliases
|
|
310
|
+
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
309
311
|
// Biohazard aliases
|
|
310
312
|
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
311
313
|
// Bird aliases
|
|
312
314
|
export { default as BirdIcon } from '../icons/bird';
|
|
313
|
-
// Binoculars aliases
|
|
314
|
-
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
315
|
-
// Birdhouse aliases
|
|
316
|
-
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
317
315
|
// Bitcoin aliases
|
|
318
316
|
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
317
|
+
// Birdhouse aliases
|
|
318
|
+
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
319
319
|
// Blend aliases
|
|
320
320
|
export { default as BlendIcon } from '../icons/blend';
|
|
321
321
|
// Blender aliases
|
|
322
322
|
export { default as BlenderIcon } from '../icons/blender';
|
|
323
|
-
// Blinds aliases
|
|
324
|
-
export { default as BlindsIcon } from '../icons/blinds';
|
|
325
323
|
// Blocks aliases
|
|
326
324
|
export { default as BlocksIcon } from '../icons/blocks';
|
|
325
|
+
// Blinds aliases
|
|
326
|
+
export { default as BlindsIcon } from '../icons/blinds';
|
|
327
327
|
// BluetoothConnected aliases
|
|
328
328
|
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
329
329
|
// BluetoothOff aliases
|
|
@@ -334,26 +334,26 @@ export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching'
|
|
|
334
334
|
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
335
335
|
// Bold aliases
|
|
336
336
|
export { default as BoldIcon } from '../icons/bold';
|
|
337
|
-
// Bomb aliases
|
|
338
|
-
export { default as BombIcon } from '../icons/bomb';
|
|
339
337
|
// Bolt aliases
|
|
340
338
|
export { default as BoltIcon } from '../icons/bolt';
|
|
341
339
|
// BoneFracture aliases
|
|
342
340
|
export { default as BoneFractureIcon } from '../icons/bone-fracture';
|
|
343
|
-
//
|
|
344
|
-
export { default as
|
|
341
|
+
// Bomb aliases
|
|
342
|
+
export { default as BombIcon } from '../icons/bomb';
|
|
345
343
|
// BookA aliases
|
|
346
344
|
export { default as BookAIcon } from '../icons/book-a';
|
|
345
|
+
// Bone aliases
|
|
346
|
+
export { default as BoneIcon } from '../icons/bone';
|
|
347
|
+
// BookAudio aliases
|
|
348
|
+
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
347
349
|
// BookAlert aliases
|
|
348
350
|
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
349
351
|
// BookCheck aliases
|
|
350
352
|
export { default as BookCheckIcon } from '../icons/book-check';
|
|
351
|
-
// BookAudio aliases
|
|
352
|
-
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
353
|
-
// BookDown aliases
|
|
354
|
-
export { default as BookDownIcon } from '../icons/book-down';
|
|
355
353
|
// BookCopy aliases
|
|
356
354
|
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
355
|
+
// BookDown aliases
|
|
356
|
+
export { default as BookDownIcon } from '../icons/book-down';
|
|
357
357
|
// BookHeadphones aliases
|
|
358
358
|
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
359
359
|
// BookHeart aliases
|
|
@@ -364,16 +364,16 @@ export { default as BookImageIcon } from '../icons/book-image';
|
|
|
364
364
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
365
365
|
// BookLock aliases
|
|
366
366
|
export { default as BookLockIcon } from '../icons/book-lock';
|
|
367
|
+
// BookMarked aliases
|
|
368
|
+
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
367
369
|
// BookMinus aliases
|
|
368
370
|
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
369
371
|
// BookOpenCheck aliases
|
|
370
372
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
371
|
-
// BookMarked aliases
|
|
372
|
-
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
373
|
-
// BookOpenText aliases
|
|
374
|
-
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
375
373
|
// BookOpen aliases
|
|
376
374
|
export { default as BookOpenIcon } from '../icons/book-open';
|
|
375
|
+
// BookOpenText aliases
|
|
376
|
+
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
377
377
|
// BookPlus aliases
|
|
378
378
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
379
379
|
// BookSearch aliases
|
|
@@ -386,16 +386,16 @@ export { default as BookTypeIcon } from '../icons/book-type';
|
|
|
386
386
|
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
387
387
|
// BookUser aliases
|
|
388
388
|
export { default as BookUserIcon } from '../icons/book-user';
|
|
389
|
+
// BookUp aliases
|
|
390
|
+
export { default as BookUpIcon } from '../icons/book-up';
|
|
389
391
|
// BookX aliases
|
|
390
392
|
export { default as BookXIcon } from '../icons/book-x';
|
|
393
|
+
// BookmarkMinus aliases
|
|
394
|
+
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
391
395
|
// Book aliases
|
|
392
396
|
export { default as BookIcon } from '../icons/book';
|
|
393
|
-
// BookUp aliases
|
|
394
|
-
export { default as BookUpIcon } from '../icons/book-up';
|
|
395
397
|
// BookmarkCheck aliases
|
|
396
398
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
397
|
-
// BookmarkMinus aliases
|
|
398
|
-
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
399
399
|
// BookmarkOff aliases
|
|
400
400
|
export { default as BookmarkOffIcon } from '../icons/bookmark-off';
|
|
401
401
|
// BookmarkPlus aliases
|
|
@@ -406,46 +406,46 @@ export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
|
406
406
|
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
407
407
|
// BotMessageSquare aliases
|
|
408
408
|
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
409
|
+
// Bot aliases
|
|
410
|
+
export { default as BotIcon } from '../icons/bot';
|
|
409
411
|
// BotOff aliases
|
|
410
412
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
411
413
|
// BoomBox aliases
|
|
412
414
|
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
413
|
-
// Bot aliases
|
|
414
|
-
export { default as BotIcon } from '../icons/bot';
|
|
415
|
-
// BowArrow aliases
|
|
416
|
-
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
417
415
|
// BottleWine aliases
|
|
418
416
|
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
419
|
-
// Boxes aliases
|
|
420
|
-
export { default as BoxesIcon } from '../icons/boxes';
|
|
421
417
|
// Box aliases
|
|
422
418
|
export { default as BoxIcon } from '../icons/box';
|
|
419
|
+
// Boxes aliases
|
|
420
|
+
export { default as BoxesIcon } from '../icons/boxes';
|
|
421
|
+
// BowArrow aliases
|
|
422
|
+
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
423
423
|
// Brackets aliases
|
|
424
424
|
export { default as BracketsIcon } from '../icons/brackets';
|
|
425
425
|
// BrainCircuit aliases
|
|
426
426
|
export { default as BrainCircuitIcon } from '../icons/brain-circuit';
|
|
427
427
|
// BrainCog aliases
|
|
428
428
|
export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
429
|
-
// Brain aliases
|
|
430
|
-
export { default as BrainIcon } from '../icons/brain';
|
|
431
429
|
// BrickWallFire aliases
|
|
432
430
|
export { default as BrickWallFireIcon } from '../icons/brick-wall-fire';
|
|
433
431
|
// BrickWallShield aliases
|
|
434
432
|
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
433
|
+
// Brain aliases
|
|
434
|
+
export { default as BrainIcon } from '../icons/brain';
|
|
435
435
|
// BrickWall aliases
|
|
436
436
|
export { default as BrickWallIcon } from '../icons/brick-wall';
|
|
437
437
|
// BriefcaseBusiness aliases
|
|
438
438
|
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
439
439
|
// BriefcaseConveyorBelt aliases
|
|
440
440
|
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
441
|
-
// BriefcaseMedical aliases
|
|
442
|
-
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
443
441
|
// Briefcase aliases
|
|
444
442
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
445
|
-
//
|
|
446
|
-
export { default as
|
|
443
|
+
// BriefcaseMedical aliases
|
|
444
|
+
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
447
445
|
// BringToFront aliases
|
|
448
446
|
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
447
|
+
// Broccoli aliases
|
|
448
|
+
export { default as BroccoliIcon } from '../icons/broccoli';
|
|
449
449
|
// BrushCleaning aliases
|
|
450
450
|
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
451
451
|
// Brush aliases
|
|
@@ -466,80 +466,82 @@ export { default as BuildingIcon } from '../icons/building';
|
|
|
466
466
|
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
467
467
|
// Bus aliases
|
|
468
468
|
export { default as BusIcon } from '../icons/bus';
|
|
469
|
-
// Cable aliases
|
|
470
|
-
export { default as CableIcon } from '../icons/cable';
|
|
471
469
|
// CableCar aliases
|
|
472
470
|
export { default as CableCarIcon } from '../icons/cable-car';
|
|
473
|
-
// Cake aliases
|
|
474
|
-
export { default as CakeIcon } from '../icons/cake';
|
|
475
|
-
// Calendar1 aliases
|
|
476
|
-
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
477
471
|
// CakeSlice aliases
|
|
478
472
|
export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
479
473
|
// Calculator aliases
|
|
480
474
|
export { default as CalculatorIcon } from '../icons/calculator';
|
|
475
|
+
// Cable aliases
|
|
476
|
+
export { default as CableIcon } from '../icons/cable';
|
|
477
|
+
// Calendar1 aliases
|
|
478
|
+
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
481
479
|
// CalendarArrowDown aliases
|
|
482
480
|
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
483
|
-
//
|
|
484
|
-
export { default as
|
|
481
|
+
// Cake aliases
|
|
482
|
+
export { default as CakeIcon } from '../icons/cake';
|
|
485
483
|
// CalendarArrowUp aliases
|
|
486
484
|
export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
487
|
-
//
|
|
488
|
-
export { default as
|
|
485
|
+
// CalendarCheck2 aliases
|
|
486
|
+
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
489
487
|
// CalendarClock aliases
|
|
490
488
|
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
489
|
+
// CalendarCheck aliases
|
|
490
|
+
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
491
491
|
// CalendarCog aliases
|
|
492
492
|
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
493
493
|
// CalendarDays aliases
|
|
494
494
|
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
495
495
|
// CalendarFold aliases
|
|
496
496
|
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
497
|
-
// CalendarHeart aliases
|
|
498
|
-
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
499
497
|
// CalendarMinus2 aliases
|
|
500
498
|
export { default as CalendarMinus2Icon } from '../icons/calendar-minus-2';
|
|
499
|
+
// CalendarOff aliases
|
|
500
|
+
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
501
|
+
// CalendarHeart aliases
|
|
502
|
+
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
501
503
|
// CalendarMinus aliases
|
|
502
504
|
export { default as CalendarMinusIcon } from '../icons/calendar-minus';
|
|
503
505
|
// CalendarPlus2 aliases
|
|
504
506
|
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
505
|
-
// CalendarOff aliases
|
|
506
|
-
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
507
|
-
// CalendarSearch aliases
|
|
508
|
-
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
509
507
|
// CalendarPlus aliases
|
|
510
508
|
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
511
|
-
//
|
|
512
|
-
export { default as
|
|
509
|
+
// CalendarSearch aliases
|
|
510
|
+
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
513
511
|
// CalendarRange aliases
|
|
514
512
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
515
|
-
//
|
|
516
|
-
export { default as
|
|
513
|
+
// CalendarSync aliases
|
|
514
|
+
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
517
515
|
// CalendarX aliases
|
|
518
516
|
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
517
|
+
// CalendarX2 aliases
|
|
518
|
+
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
519
519
|
// Calendar aliases
|
|
520
520
|
export { default as CalendarIcon } from '../icons/calendar';
|
|
521
521
|
// Calendars aliases
|
|
522
522
|
export { default as CalendarsIcon } from '../icons/calendars';
|
|
523
|
+
// CameraOff aliases
|
|
524
|
+
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
523
525
|
// Camera aliases
|
|
524
526
|
export { default as CameraIcon } from '../icons/camera';
|
|
525
527
|
// CandyCane aliases
|
|
526
528
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
527
|
-
// CameraOff aliases
|
|
528
|
-
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
529
|
-
// CandyOff aliases
|
|
530
|
-
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
531
529
|
// Candy aliases
|
|
532
530
|
export { default as CandyIcon } from '../icons/candy';
|
|
531
|
+
// CandyOff aliases
|
|
532
|
+
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
533
|
+
// CannabisOff aliases
|
|
534
|
+
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
533
535
|
// Cannabis aliases
|
|
534
536
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
535
537
|
// CaptionsOff aliases
|
|
536
538
|
export { default as CaptionsOffIcon } from '../icons/captions-off';
|
|
537
|
-
// CannabisOff aliases
|
|
538
|
-
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
539
539
|
// CarFront aliases
|
|
540
540
|
export { default as CarFrontIcon } from '../icons/car-front';
|
|
541
541
|
// CarTaxiFront aliases
|
|
542
542
|
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
543
|
+
// Caravan aliases
|
|
544
|
+
export { default as CaravanIcon } from '../icons/caravan';
|
|
543
545
|
// Car aliases
|
|
544
546
|
export { default as CarIcon } from '../icons/car';
|
|
545
547
|
// CardSim aliases
|
|
@@ -548,8 +550,6 @@ export { default as CardSimIcon } from '../icons/card-sim';
|
|
|
548
550
|
export { default as CarrotIcon } from '../icons/carrot';
|
|
549
551
|
// CaseLower aliases
|
|
550
552
|
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
551
|
-
// Caravan aliases
|
|
552
|
-
export { default as CaravanIcon } from '../icons/caravan';
|
|
553
553
|
// CaseSensitive aliases
|
|
554
554
|
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
555
555
|
// CaseUpper aliases
|
|
@@ -566,12 +566,12 @@ export { default as CatIcon } from '../icons/cat';
|
|
|
566
566
|
export { default as CctvOffIcon } from '../icons/cctv-off';
|
|
567
567
|
// Cctv aliases
|
|
568
568
|
export { default as CctvIcon } from '../icons/cctv';
|
|
569
|
-
// ChartBarDecreasing aliases
|
|
570
|
-
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
571
|
-
// ChartBarStacked aliases
|
|
572
|
-
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
573
569
|
// ChartBarIncreasing aliases
|
|
574
570
|
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
571
|
+
// ChartBarStacked aliases
|
|
572
|
+
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
573
|
+
// ChartBarDecreasing aliases
|
|
574
|
+
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
575
575
|
// ChartColumnDecreasing aliases
|
|
576
576
|
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
577
577
|
// ChartColumnStacked aliases
|
|
@@ -580,56 +580,56 @@ export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked
|
|
|
580
580
|
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
581
581
|
// ChartNetwork aliases
|
|
582
582
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
583
|
-
// ChartNoAxesCombined aliases
|
|
584
|
-
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
585
583
|
// ChartNoAxesColumnDecreasing aliases
|
|
586
584
|
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
587
|
-
// CheckCheck aliases
|
|
588
|
-
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
589
585
|
// ChartSpline aliases
|
|
590
586
|
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
591
|
-
//
|
|
592
|
-
export { default as
|
|
587
|
+
// ChartNoAxesCombined aliases
|
|
588
|
+
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
593
589
|
// CheckLine aliases
|
|
594
590
|
export { default as CheckLineIcon } from '../icons/check-line';
|
|
595
|
-
//
|
|
596
|
-
export { default as
|
|
591
|
+
// CheckCheck aliases
|
|
592
|
+
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
597
593
|
// Check aliases
|
|
598
594
|
export { default as CheckIcon } from '../icons/check';
|
|
595
|
+
// ChefHat aliases
|
|
596
|
+
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
597
|
+
// Cherry aliases
|
|
598
|
+
export { default as CherryIcon } from '../icons/cherry';
|
|
599
599
|
// ChessBishop aliases
|
|
600
600
|
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
601
601
|
// ChessKing aliases
|
|
602
602
|
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
603
|
-
// ChessPawn aliases
|
|
604
|
-
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
605
|
-
// ChessRook aliases
|
|
606
|
-
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
607
603
|
// ChessKnight aliases
|
|
608
604
|
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
605
|
+
// ChessPawn aliases
|
|
606
|
+
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
609
607
|
// ChessQueen aliases
|
|
610
608
|
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
611
|
-
//
|
|
612
|
-
export { default as
|
|
609
|
+
// ChessRook aliases
|
|
610
|
+
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
613
611
|
// ChevronFirst aliases
|
|
614
612
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
615
|
-
//
|
|
616
|
-
export { default as
|
|
617
|
-
// ChevronLeft aliases
|
|
618
|
-
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
613
|
+
// ChevronDown aliases
|
|
614
|
+
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
619
615
|
// ChevronLast aliases
|
|
620
616
|
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
617
|
+
// ChevronLeft aliases
|
|
618
|
+
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
621
619
|
// ChevronUp aliases
|
|
622
620
|
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
623
|
-
// ChevronsDown aliases
|
|
624
|
-
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
625
621
|
// ChevronsDownUp aliases
|
|
626
622
|
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
623
|
+
// ChevronRight aliases
|
|
624
|
+
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
625
|
+
// ChevronsDown aliases
|
|
626
|
+
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
627
627
|
// ChevronsLeftRightEllipsis aliases
|
|
628
628
|
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
629
|
-
// ChevronsLeftRight aliases
|
|
630
|
-
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
631
629
|
// ChevronsLeft aliases
|
|
632
630
|
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
631
|
+
// ChevronsLeftRight aliases
|
|
632
|
+
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
633
633
|
// ChevronsRightLeft aliases
|
|
634
634
|
export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
635
635
|
// ChevronsRight aliases
|
|
@@ -652,38 +652,38 @@ export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
|
652
652
|
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
653
653
|
// CircleDot aliases
|
|
654
654
|
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
655
|
-
// CircleEqual aliases
|
|
656
|
-
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
657
655
|
// CircleEllipsis aliases
|
|
658
656
|
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
657
|
+
// CircleEqual aliases
|
|
658
|
+
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
659
659
|
// CircleEuro aliases
|
|
660
660
|
export { default as CircleEuroIcon } from '../icons/circle-euro';
|
|
661
|
-
// CircleFadingPlus aliases
|
|
662
|
-
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
663
661
|
// CircleFadingArrowUp aliases
|
|
664
662
|
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
665
|
-
//
|
|
666
|
-
export { default as
|
|
663
|
+
// CircleFadingPlus aliases
|
|
664
|
+
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
667
665
|
// CircleOff aliases
|
|
668
666
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
669
|
-
//
|
|
670
|
-
export { default as
|
|
671
|
-
// CircleStar aliases
|
|
672
|
-
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
667
|
+
// CirclePile aliases
|
|
668
|
+
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
673
669
|
// CirclePoundSterling aliases
|
|
674
670
|
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
671
|
+
// CircleSlash aliases
|
|
672
|
+
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
675
673
|
// CircleSmall aliases
|
|
676
674
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
675
|
+
// CircleStar aliases
|
|
676
|
+
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
677
677
|
// Circle aliases
|
|
678
678
|
export { default as CircleIcon } from '../icons/circle';
|
|
679
|
-
//
|
|
680
|
-
export { default as
|
|
679
|
+
// Citrus aliases
|
|
680
|
+
export { default as CitrusIcon } from '../icons/citrus';
|
|
681
681
|
// Clapperboard aliases
|
|
682
682
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
683
|
+
// CircuitBoard aliases
|
|
684
|
+
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
683
685
|
// ClipboardCheck aliases
|
|
684
686
|
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
685
|
-
// Citrus aliases
|
|
686
|
-
export { default as CitrusIcon } from '../icons/citrus';
|
|
687
687
|
// ClipboardClock aliases
|
|
688
688
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
689
689
|
// ClipboardCopy aliases
|
|
@@ -692,22 +692,22 @@ export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
|
692
692
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
693
693
|
// ClipboardMinus aliases
|
|
694
694
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
695
|
-
// ClipboardPlus aliases
|
|
696
|
-
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
697
695
|
// ClipboardPaste aliases
|
|
698
696
|
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
697
|
+
// ClipboardPlus aliases
|
|
698
|
+
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
699
699
|
// ClipboardType aliases
|
|
700
700
|
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
701
|
-
// ClipboardX aliases
|
|
702
|
-
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
703
701
|
// Clipboard aliases
|
|
704
702
|
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
703
|
+
// ClipboardX aliases
|
|
704
|
+
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
705
705
|
// Clock1 aliases
|
|
706
706
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
707
|
-
// Clock11 aliases
|
|
708
|
-
export { default as Clock11Icon } from '../icons/clock-11';
|
|
709
707
|
// Clock10 aliases
|
|
710
708
|
export { default as Clock10Icon } from '../icons/clock-10';
|
|
709
|
+
// Clock11 aliases
|
|
710
|
+
export { default as Clock11Icon } from '../icons/clock-11';
|
|
711
711
|
// Clock2 aliases
|
|
712
712
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
713
713
|
// Clock12 aliases
|
|
@@ -724,22 +724,22 @@ export { default as Clock6Icon } from '../icons/clock-6';
|
|
|
724
724
|
export { default as Clock7Icon } from '../icons/clock-7';
|
|
725
725
|
// Clock8 aliases
|
|
726
726
|
export { default as Clock8Icon } from '../icons/clock-8';
|
|
727
|
-
// Clock9 aliases
|
|
728
|
-
export { default as Clock9Icon } from '../icons/clock-9';
|
|
729
727
|
// ClockAlert aliases
|
|
730
728
|
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
729
|
+
// Clock9 aliases
|
|
730
|
+
export { default as Clock9Icon } from '../icons/clock-9';
|
|
731
731
|
// ClockArrowDown aliases
|
|
732
732
|
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
733
|
-
// ClockArrowLeft aliases
|
|
734
|
-
export { default as ClockArrowLeftIcon } from '../icons/clock-arrow-left';
|
|
735
733
|
// ClockArrowUp aliases
|
|
736
734
|
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
737
735
|
// ClockArrowRight aliases
|
|
738
736
|
export { default as ClockArrowRightIcon } from '../icons/clock-arrow-right';
|
|
739
|
-
//
|
|
740
|
-
export { default as
|
|
737
|
+
// ClockArrowLeft aliases
|
|
738
|
+
export { default as ClockArrowLeftIcon } from '../icons/clock-arrow-left';
|
|
741
739
|
// ClockFading aliases
|
|
742
740
|
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
741
|
+
// ClockCheck aliases
|
|
742
|
+
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
743
743
|
// Clock aliases
|
|
744
744
|
export { default as ClockIcon } from '../icons/clock';
|
|
745
745
|
// ClockPlus aliases
|
|
@@ -768,54 +768,54 @@ export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
|
768
768
|
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
769
769
|
// CloudOff aliases
|
|
770
770
|
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
771
|
-
// CloudSnow aliases
|
|
772
|
-
export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
773
771
|
// CloudRainWind aliases
|
|
774
772
|
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
775
773
|
// CloudRain aliases
|
|
776
774
|
export { default as CloudRainIcon } from '../icons/cloud-rain';
|
|
775
|
+
// CloudSnow aliases
|
|
776
|
+
export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
777
777
|
// CloudSunRain aliases
|
|
778
778
|
export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
779
|
+
// CloudSync aliases
|
|
780
|
+
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
779
781
|
// CloudSun aliases
|
|
780
782
|
export { default as CloudSunIcon } from '../icons/cloud-sun';
|
|
781
|
-
// Cloud aliases
|
|
782
|
-
export { default as CloudIcon } from '../icons/cloud';
|
|
783
783
|
// Cloudy aliases
|
|
784
784
|
export { default as CloudyIcon } from '../icons/cloudy';
|
|
785
|
-
//
|
|
786
|
-
export { default as
|
|
785
|
+
// Cloud aliases
|
|
786
|
+
export { default as CloudIcon } from '../icons/cloud';
|
|
787
787
|
// Clover aliases
|
|
788
788
|
export { default as CloverIcon } from '../icons/clover';
|
|
789
789
|
// Club aliases
|
|
790
790
|
export { default as ClubIcon } from '../icons/club';
|
|
791
|
-
// Code aliases
|
|
792
|
-
export { default as CodeIcon } from '../icons/code';
|
|
793
791
|
// Coffee aliases
|
|
794
792
|
export { default as CoffeeIcon } from '../icons/coffee';
|
|
793
|
+
// Code aliases
|
|
794
|
+
export { default as CodeIcon } from '../icons/code';
|
|
795
795
|
// Cog aliases
|
|
796
796
|
export { default as CogIcon } from '../icons/cog';
|
|
797
797
|
// Columns4 aliases
|
|
798
798
|
export { default as Columns4Icon } from '../icons/columns-4';
|
|
799
799
|
// Coins aliases
|
|
800
800
|
export { default as CoinsIcon } from '../icons/coins';
|
|
801
|
-
// Command aliases
|
|
802
|
-
export { default as CommandIcon } from '../icons/command';
|
|
803
801
|
// Combine aliases
|
|
804
802
|
export { default as CombineIcon } from '../icons/combine';
|
|
805
|
-
//
|
|
806
|
-
export { default as
|
|
803
|
+
// Command aliases
|
|
804
|
+
export { default as CommandIcon } from '../icons/command';
|
|
807
805
|
// Component aliases
|
|
808
806
|
export { default as ComponentIcon } from '../icons/component';
|
|
809
|
-
//
|
|
810
|
-
export { default as
|
|
807
|
+
// Compass aliases
|
|
808
|
+
export { default as CompassIcon } from '../icons/compass';
|
|
811
809
|
// Computer aliases
|
|
812
810
|
export { default as ComputerIcon } from '../icons/computer';
|
|
811
|
+
// ConciergeBell aliases
|
|
812
|
+
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
813
|
+
// Construction aliases
|
|
814
|
+
export { default as ConstructionIcon } from '../icons/construction';
|
|
813
815
|
// Cone aliases
|
|
814
816
|
export { default as ConeIcon } from '../icons/cone';
|
|
815
817
|
// Contact aliases
|
|
816
818
|
export { default as ContactIcon } from '../icons/contact';
|
|
817
|
-
// Construction aliases
|
|
818
|
-
export { default as ConstructionIcon } from '../icons/construction';
|
|
819
819
|
// Container aliases
|
|
820
820
|
export { default as ContainerIcon } from '../icons/container';
|
|
821
821
|
// Contrast aliases
|
|
@@ -824,54 +824,54 @@ export { default as ContrastIcon } from '../icons/contrast';
|
|
|
824
824
|
export { default as CookieIcon } from '../icons/cookie';
|
|
825
825
|
// CookingPot aliases
|
|
826
826
|
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
827
|
+
// CopyPlus aliases
|
|
828
|
+
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
827
829
|
// CopyCheck aliases
|
|
828
830
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
829
831
|
// CopyMinus aliases
|
|
830
832
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
831
833
|
// CopySlash aliases
|
|
832
834
|
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
833
|
-
// CopyPlus aliases
|
|
834
|
-
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
835
|
-
// Copy aliases
|
|
836
|
-
export { default as CopyIcon } from '../icons/copy';
|
|
837
835
|
// CopyX aliases
|
|
838
836
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
839
837
|
// Copyleft aliases
|
|
840
838
|
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
839
|
+
// Copy aliases
|
|
840
|
+
export { default as CopyIcon } from '../icons/copy';
|
|
841
841
|
// CornerDownLeft aliases
|
|
842
842
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
843
|
-
// Copyright aliases
|
|
844
|
-
export { default as CopyrightIcon } from '../icons/copyright';
|
|
845
843
|
// CornerDownRight aliases
|
|
846
844
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
845
|
+
// Copyright aliases
|
|
846
|
+
export { default as CopyrightIcon } from '../icons/copyright';
|
|
847
847
|
// CornerLeftDown aliases
|
|
848
848
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
849
849
|
// CornerLeftUp aliases
|
|
850
850
|
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
851
851
|
// CornerRightDown aliases
|
|
852
852
|
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
853
|
-
// CornerUpLeft aliases
|
|
854
|
-
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
855
853
|
// CornerRightUp aliases
|
|
856
854
|
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
855
|
+
// CornerUpLeft aliases
|
|
856
|
+
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
857
857
|
// CornerUpRight aliases
|
|
858
858
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
859
859
|
// Cpu aliases
|
|
860
860
|
export { default as CpuIcon } from '../icons/cpu';
|
|
861
861
|
// CreativeCommons aliases
|
|
862
862
|
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
863
|
-
// Croissant aliases
|
|
864
|
-
export { default as CroissantIcon } from '../icons/croissant';
|
|
865
863
|
// CreditCard aliases
|
|
866
864
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
865
|
+
// Croissant aliases
|
|
866
|
+
export { default as CroissantIcon } from '../icons/croissant';
|
|
867
867
|
// Crop aliases
|
|
868
868
|
export { default as CropIcon } from '../icons/crop';
|
|
869
869
|
// Cross aliases
|
|
870
870
|
export { default as CrossIcon } from '../icons/cross';
|
|
871
|
-
// Crosshair aliases
|
|
872
|
-
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
873
871
|
// Crown aliases
|
|
874
872
|
export { default as CrownIcon } from '../icons/crown';
|
|
873
|
+
// Crosshair aliases
|
|
874
|
+
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
875
875
|
// Cuboid aliases
|
|
876
876
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
877
877
|
// CupSoda aliases
|
|
@@ -882,12 +882,12 @@ export { default as CurrencyIcon } from '../icons/currency';
|
|
|
882
882
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
883
883
|
// Dam aliases
|
|
884
884
|
export { default as DamIcon } from '../icons/dam';
|
|
885
|
+
// DatabaseArrowUp aliases
|
|
886
|
+
export { default as DatabaseArrowUpIcon } from '../icons/database-arrow-up';
|
|
885
887
|
// DatabaseArrowDown aliases
|
|
886
888
|
export { default as DatabaseArrowDownIcon } from '../icons/database-arrow-down';
|
|
887
889
|
// DatabaseBackup aliases
|
|
888
890
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
889
|
-
// DatabaseArrowUp aliases
|
|
890
|
-
export { default as DatabaseArrowUpIcon } from '../icons/database-arrow-up';
|
|
891
891
|
// DatabaseCheck aliases
|
|
892
892
|
export { default as DatabaseCheckIcon } from '../icons/database-check';
|
|
893
893
|
// DatabaseMinus aliases
|
|
@@ -896,18 +896,18 @@ export { default as DatabaseMinusIcon } from '../icons/database-minus';
|
|
|
896
896
|
export { default as DatabasePlusIcon } from '../icons/database-plus';
|
|
897
897
|
// DatabaseSearch aliases
|
|
898
898
|
export { default as DatabaseSearchIcon } from '../icons/database-search';
|
|
899
|
-
// DatabaseX aliases
|
|
900
|
-
export { default as DatabaseXIcon } from '../icons/database-x';
|
|
901
|
-
// DatabaseZap aliases
|
|
902
|
-
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
903
899
|
// Database aliases
|
|
904
900
|
export { default as DatabaseIcon } from '../icons/database';
|
|
905
901
|
// DecimalsArrowLeft aliases
|
|
906
902
|
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
907
|
-
//
|
|
908
|
-
export { default as
|
|
903
|
+
// DatabaseX aliases
|
|
904
|
+
export { default as DatabaseXIcon } from '../icons/database-x';
|
|
905
|
+
// DatabaseZap aliases
|
|
906
|
+
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
909
907
|
// DecimalsArrowRight aliases
|
|
910
908
|
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
909
|
+
// Delete aliases
|
|
910
|
+
export { default as DeleteIcon } from '../icons/delete';
|
|
911
911
|
// Dessert aliases
|
|
912
912
|
export { default as DessertIcon } from '../icons/dessert';
|
|
913
913
|
// Diameter aliases
|
|
@@ -916,38 +916,38 @@ export { default as DiameterIcon } from '../icons/diameter';
|
|
|
916
916
|
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
917
917
|
// DiamondPlus aliases
|
|
918
918
|
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
919
|
-
// Diamond aliases
|
|
920
|
-
export { default as DiamondIcon } from '../icons/diamond';
|
|
921
919
|
// Dice1 aliases
|
|
922
920
|
export { default as Dice1Icon } from '../icons/dice-1';
|
|
921
|
+
// Diamond aliases
|
|
922
|
+
export { default as DiamondIcon } from '../icons/diamond';
|
|
923
923
|
// Dice2 aliases
|
|
924
924
|
export { default as Dice2Icon } from '../icons/dice-2';
|
|
925
|
-
// Dice4 aliases
|
|
926
|
-
export { default as Dice4Icon } from '../icons/dice-4';
|
|
927
925
|
// Dice3 aliases
|
|
928
926
|
export { default as Dice3Icon } from '../icons/dice-3';
|
|
927
|
+
// Dice4 aliases
|
|
928
|
+
export { default as Dice4Icon } from '../icons/dice-4';
|
|
929
929
|
// Dice5 aliases
|
|
930
930
|
export { default as Dice5Icon } from '../icons/dice-5';
|
|
931
|
-
// Diff aliases
|
|
932
|
-
export { default as DiffIcon } from '../icons/diff';
|
|
933
931
|
// Dice6 aliases
|
|
934
932
|
export { default as Dice6Icon } from '../icons/dice-6';
|
|
935
933
|
// Dices aliases
|
|
936
934
|
export { default as DicesIcon } from '../icons/dices';
|
|
935
|
+
// Diff aliases
|
|
936
|
+
export { default as DiffIcon } from '../icons/diff';
|
|
937
937
|
// Disc2 aliases
|
|
938
938
|
export { default as Disc2Icon } from '../icons/disc-2';
|
|
939
939
|
// Disc3 aliases
|
|
940
940
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
941
941
|
// DiscAlbum aliases
|
|
942
942
|
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
943
|
-
// Divide aliases
|
|
944
|
-
export { default as DivideIcon } from '../icons/divide';
|
|
945
943
|
// Disc aliases
|
|
946
944
|
export { default as DiscIcon } from '../icons/disc';
|
|
947
945
|
// DnaOff aliases
|
|
948
946
|
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
949
947
|
// Dna aliases
|
|
950
948
|
export { default as DnaIcon } from '../icons/dna';
|
|
949
|
+
// Divide aliases
|
|
950
|
+
export { default as DivideIcon } from '../icons/divide';
|
|
951
951
|
// Dock aliases
|
|
952
952
|
export { default as DockIcon } from '../icons/dock';
|
|
953
953
|
// Dog aliases
|
|
@@ -958,12 +958,12 @@ export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
|
958
958
|
export { default as DonutIcon } from '../icons/donut';
|
|
959
959
|
// DoorClosedLocked aliases
|
|
960
960
|
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
961
|
-
// Dot aliases
|
|
962
|
-
export { default as DotIcon } from '../icons/dot';
|
|
963
961
|
// DoorClosed aliases
|
|
964
962
|
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
965
963
|
// DoorOpen aliases
|
|
966
964
|
export { default as DoorOpenIcon } from '../icons/door-open';
|
|
965
|
+
// Dot aliases
|
|
966
|
+
export { default as DotIcon } from '../icons/dot';
|
|
967
967
|
// Download aliases
|
|
968
968
|
export { default as DownloadIcon } from '../icons/download';
|
|
969
969
|
// DraftingCompass aliases
|
|
@@ -972,10 +972,10 @@ export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
|
972
972
|
export { default as DramaIcon } from '../icons/drama';
|
|
973
973
|
// Drill aliases
|
|
974
974
|
export { default as DrillIcon } from '../icons/drill';
|
|
975
|
-
// Drone aliases
|
|
976
|
-
export { default as DroneIcon } from '../icons/drone';
|
|
977
975
|
// DropletOff aliases
|
|
978
976
|
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
977
|
+
// Drone aliases
|
|
978
|
+
export { default as DroneIcon } from '../icons/drone';
|
|
979
979
|
// Droplet aliases
|
|
980
980
|
export { default as DropletIcon } from '../icons/droplet';
|
|
981
981
|
// Droplets aliases
|
|
@@ -990,18 +990,18 @@ export { default as DumbbellIcon } from '../icons/dumbbell';
|
|
|
990
990
|
export { default as EarOffIcon } from '../icons/ear-off';
|
|
991
991
|
// Ear aliases
|
|
992
992
|
export { default as EarIcon } from '../icons/ear';
|
|
993
|
-
// Eclipse aliases
|
|
994
|
-
export { default as EclipseIcon } from '../icons/eclipse';
|
|
995
993
|
// EarthLock aliases
|
|
996
994
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
995
|
+
// Eclipse aliases
|
|
996
|
+
export { default as EclipseIcon } from '../icons/eclipse';
|
|
997
997
|
// EggFried aliases
|
|
998
998
|
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
999
|
+
// EggOff aliases
|
|
1000
|
+
export { default as EggOffIcon } from '../icons/egg-off';
|
|
999
1001
|
// Egg aliases
|
|
1000
1002
|
export { default as EggIcon } from '../icons/egg';
|
|
1001
1003
|
// Ellipse aliases
|
|
1002
1004
|
export { default as EllipseIcon } from '../icons/ellipse';
|
|
1003
|
-
// EggOff aliases
|
|
1004
|
-
export { default as EggOffIcon } from '../icons/egg-off';
|
|
1005
1005
|
// EqualApproximately aliases
|
|
1006
1006
|
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
1007
1007
|
// EqualNot aliases
|
|
@@ -1032,18 +1032,18 @@ export { default as EyeIcon } from '../icons/eye';
|
|
|
1032
1032
|
export { default as FactoryIcon } from '../icons/factory';
|
|
1033
1033
|
// Fan aliases
|
|
1034
1034
|
export { default as FanIcon } from '../icons/fan';
|
|
1035
|
-
// FastForward aliases
|
|
1036
|
-
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
1037
1035
|
// Feather aliases
|
|
1038
1036
|
export { default as FeatherIcon } from '../icons/feather';
|
|
1039
|
-
//
|
|
1040
|
-
export { default as
|
|
1041
|
-
// FileArchive aliases
|
|
1042
|
-
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1037
|
+
// FastForward aliases
|
|
1038
|
+
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
1043
1039
|
// Fence aliases
|
|
1044
1040
|
export { default as FenceIcon } from '../icons/fence';
|
|
1041
|
+
// FerrisWheel aliases
|
|
1042
|
+
export { default as FerrisWheelIcon } from '../icons/ferris-wheel';
|
|
1045
1043
|
// FileBox aliases
|
|
1046
1044
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1045
|
+
// FileArchive aliases
|
|
1046
|
+
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1047
1047
|
// FileCheck aliases
|
|
1048
1048
|
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1049
1049
|
// FileClock aliases
|
|
@@ -1054,110 +1054,110 @@ export { default as FileCodeIcon } from '../icons/file-code';
|
|
|
1054
1054
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1055
1055
|
// FileDigit aliases
|
|
1056
1056
|
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1057
|
-
// FileDown aliases
|
|
1058
|
-
export { default as FileDownIcon } from '../icons/file-down';
|
|
1059
1057
|
// FileHeart aliases
|
|
1060
1058
|
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1059
|
+
// FileDown aliases
|
|
1060
|
+
export { default as FileDownIcon } from '../icons/file-down';
|
|
1061
1061
|
// FileImage aliases
|
|
1062
1062
|
export { default as FileImageIcon } from '../icons/file-image';
|
|
1063
1063
|
// FileInput aliases
|
|
1064
1064
|
export { default as FileInputIcon } from '../icons/file-input';
|
|
1065
|
-
// FileMusic aliases
|
|
1066
|
-
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1067
1065
|
// FileMinus aliases
|
|
1068
1066
|
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1069
1067
|
// FileOutput aliases
|
|
1070
1068
|
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1069
|
+
// FileMusic aliases
|
|
1070
|
+
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1071
1071
|
// FilePlus aliases
|
|
1072
1072
|
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1073
1073
|
// FileScan aliases
|
|
1074
1074
|
export { default as FileScanIcon } from '../icons/file-scan';
|
|
1075
1075
|
// FileSearch aliases
|
|
1076
1076
|
export { default as FileSearchIcon } from '../icons/file-search';
|
|
1077
|
-
// FileSliders aliases
|
|
1078
|
-
export { default as FileSlidersIcon } from '../icons/file-sliders';
|
|
1079
1077
|
// FileSpreadsheet aliases
|
|
1080
1078
|
export { default as FileSpreadsheetIcon } from '../icons/file-spreadsheet';
|
|
1079
|
+
// FileSliders aliases
|
|
1080
|
+
export { default as FileSlidersIcon } from '../icons/file-sliders';
|
|
1081
1081
|
// FileStack aliases
|
|
1082
1082
|
export { default as FileStackIcon } from '../icons/file-stack';
|
|
1083
|
-
// FileSymlink aliases
|
|
1084
|
-
export { default as FileSymlinkIcon } from '../icons/file-symlink';
|
|
1085
1083
|
// FileTerminal aliases
|
|
1086
1084
|
export { default as FileTerminalIcon } from '../icons/file-terminal';
|
|
1085
|
+
// FileSymlink aliases
|
|
1086
|
+
export { default as FileSymlinkIcon } from '../icons/file-symlink';
|
|
1087
|
+
// FileText aliases
|
|
1088
|
+
export { default as FileTextIcon } from '../icons/file-text';
|
|
1087
1089
|
// FileType aliases
|
|
1088
1090
|
export { default as FileTypeIcon } from '../icons/file-type';
|
|
1089
1091
|
// FileUp aliases
|
|
1090
1092
|
export { default as FileUpIcon } from '../icons/file-up';
|
|
1091
|
-
// FileText aliases
|
|
1092
|
-
export { default as FileTextIcon } from '../icons/file-text';
|
|
1093
|
-
// FileVolume aliases
|
|
1094
|
-
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1095
1093
|
// FileUser aliases
|
|
1096
1094
|
export { default as FileUserIcon } from '../icons/file-user';
|
|
1097
|
-
//
|
|
1098
|
-
export { default as
|
|
1095
|
+
// FileVolume aliases
|
|
1096
|
+
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1099
1097
|
// FileX aliases
|
|
1100
1098
|
export { default as FileXIcon } from '../icons/file-x';
|
|
1101
1099
|
// Files aliases
|
|
1102
1100
|
export { default as FilesIcon } from '../icons/files';
|
|
1101
|
+
// File aliases
|
|
1102
|
+
export { default as FileIcon } from '../icons/file';
|
|
1103
1103
|
// Film aliases
|
|
1104
1104
|
export { default as FilmIcon } from '../icons/film';
|
|
1105
1105
|
// FireExtinguisher aliases
|
|
1106
1106
|
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1107
1107
|
// FishOff aliases
|
|
1108
1108
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1109
|
-
// FishSymbol aliases
|
|
1110
|
-
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1111
1109
|
// Fish aliases
|
|
1112
1110
|
export { default as FishIcon } from '../icons/fish';
|
|
1111
|
+
// FishSymbol aliases
|
|
1112
|
+
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1113
1113
|
// FishingHook aliases
|
|
1114
1114
|
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1115
1115
|
// FishingRod aliases
|
|
1116
1116
|
export { default as FishingRodIcon } from '../icons/fishing-rod';
|
|
1117
|
-
// FlagTriangleLeft aliases
|
|
1118
|
-
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1119
1117
|
// FlagOff aliases
|
|
1120
1118
|
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1121
1119
|
// FlagTriangleRight aliases
|
|
1122
1120
|
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1121
|
+
// FlagTriangleLeft aliases
|
|
1122
|
+
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1123
1123
|
// Flag aliases
|
|
1124
1124
|
export { default as FlagIcon } from '../icons/flag';
|
|
1125
1125
|
// FlameKindling aliases
|
|
1126
1126
|
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1127
1127
|
// Flame aliases
|
|
1128
1128
|
export { default as FlameIcon } from '../icons/flame';
|
|
1129
|
-
// FlashlightOff aliases
|
|
1130
|
-
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1131
|
-
// Flashlight aliases
|
|
1132
|
-
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1133
1129
|
// FlaskConicalOff aliases
|
|
1134
1130
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1131
|
+
// Flashlight aliases
|
|
1132
|
+
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1133
|
+
// FlashlightOff aliases
|
|
1134
|
+
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1135
1135
|
// FlaskConical aliases
|
|
1136
1136
|
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1137
1137
|
// FlaskRound aliases
|
|
1138
1138
|
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1139
|
-
// FlipVertical2 aliases
|
|
1140
|
-
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1141
|
-
// Flower aliases
|
|
1142
|
-
export { default as FlowerIcon } from '../icons/flower';
|
|
1143
1139
|
// FlipHorizontal2 aliases
|
|
1144
1140
|
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1141
|
+
// FlipVertical2 aliases
|
|
1142
|
+
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1145
1143
|
// Flower2 aliases
|
|
1146
1144
|
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1145
|
+
// Flower aliases
|
|
1146
|
+
export { default as FlowerIcon } from '../icons/flower';
|
|
1147
1147
|
// Focus aliases
|
|
1148
1148
|
export { default as FocusIcon } from '../icons/focus';
|
|
1149
1149
|
// FoldHorizontal aliases
|
|
1150
1150
|
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1151
1151
|
// FoldVertical aliases
|
|
1152
1152
|
export { default as FoldVerticalIcon } from '../icons/fold-vertical';
|
|
1153
|
-
// FolderArchive aliases
|
|
1154
|
-
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1155
1153
|
// FolderBookmark aliases
|
|
1156
1154
|
export { default as FolderBookmarkIcon } from '../icons/folder-bookmark';
|
|
1157
|
-
//
|
|
1158
|
-
export { default as
|
|
1155
|
+
// FolderArchive aliases
|
|
1156
|
+
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1159
1157
|
// FolderCheck aliases
|
|
1160
1158
|
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1159
|
+
// FolderClock aliases
|
|
1160
|
+
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1161
1161
|
// FolderClosed aliases
|
|
1162
1162
|
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1163
1163
|
// FolderCode aliases
|
|
@@ -1168,10 +1168,10 @@ export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
|
1168
1168
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1169
1169
|
// FolderGit2 aliases
|
|
1170
1170
|
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1171
|
-
// FolderGit aliases
|
|
1172
|
-
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1173
1171
|
// FolderHeart aliases
|
|
1174
1172
|
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1173
|
+
// FolderGit aliases
|
|
1174
|
+
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1175
1175
|
// FolderInput aliases
|
|
1176
1176
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1177
1177
|
// FolderKanban aliases
|
|
@@ -1180,64 +1180,64 @@ export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
|
1180
1180
|
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1181
1181
|
// FolderLock aliases
|
|
1182
1182
|
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1183
|
-
// FolderMinus aliases
|
|
1184
|
-
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1185
1183
|
// FolderOpenDot aliases
|
|
1186
1184
|
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1187
1185
|
// FolderOpen aliases
|
|
1188
1186
|
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1189
1187
|
// FolderOutput aliases
|
|
1190
1188
|
export { default as FolderOutputIcon } from '../icons/folder-output';
|
|
1191
|
-
//
|
|
1192
|
-
export { default as
|
|
1189
|
+
// FolderMinus aliases
|
|
1190
|
+
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1193
1191
|
// FolderRoot aliases
|
|
1194
1192
|
export { default as FolderRootIcon } from '../icons/folder-root';
|
|
1195
|
-
//
|
|
1196
|
-
export { default as
|
|
1193
|
+
// FolderPlus aliases
|
|
1194
|
+
export { default as FolderPlusIcon } from '../icons/folder-plus';
|
|
1197
1195
|
// FolderSearch aliases
|
|
1198
1196
|
export { default as FolderSearchIcon } from '../icons/folder-search';
|
|
1199
|
-
// FolderSync aliases
|
|
1200
|
-
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1201
1197
|
// FolderSymlink aliases
|
|
1202
1198
|
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1199
|
+
// FolderSearch2 aliases
|
|
1200
|
+
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1201
|
+
// FolderSync aliases
|
|
1202
|
+
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1203
|
+
// FolderTree aliases
|
|
1204
|
+
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1203
1205
|
// FolderUp aliases
|
|
1204
1206
|
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1205
1207
|
// FolderX aliases
|
|
1206
1208
|
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1207
|
-
// FolderTree aliases
|
|
1208
|
-
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1209
|
-
// Folders aliases
|
|
1210
|
-
export { default as FoldersIcon } from '../icons/folders';
|
|
1211
|
-
// Footprints aliases
|
|
1212
|
-
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1213
1209
|
// Folder aliases
|
|
1214
1210
|
export { default as FolderIcon } from '../icons/folder';
|
|
1215
|
-
//
|
|
1216
|
-
export { default as
|
|
1211
|
+
// Footprints aliases
|
|
1212
|
+
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1217
1213
|
// Forklift aliases
|
|
1218
1214
|
export { default as ForkliftIcon } from '../icons/forklift';
|
|
1215
|
+
// Folders aliases
|
|
1216
|
+
export { default as FoldersIcon } from '../icons/folders';
|
|
1217
|
+
// Form aliases
|
|
1218
|
+
export { default as FormIcon } from '../icons/form';
|
|
1219
|
+
// Forward aliases
|
|
1220
|
+
export { default as ForwardIcon } from '../icons/forward';
|
|
1219
1221
|
// Frame aliases
|
|
1220
1222
|
export { default as FrameIcon } from '../icons/frame';
|
|
1221
1223
|
// Frown aliases
|
|
1222
1224
|
export { default as FrownIcon } from '../icons/frown';
|
|
1223
|
-
// Forward aliases
|
|
1224
|
-
export { default as ForwardIcon } from '../icons/forward';
|
|
1225
|
-
// Fullscreen aliases
|
|
1226
|
-
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1227
1225
|
// Fuel aliases
|
|
1228
1226
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1229
1227
|
// FunnelPlus aliases
|
|
1230
1228
|
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1231
|
-
//
|
|
1232
|
-
export { default as
|
|
1229
|
+
// Fullscreen aliases
|
|
1230
|
+
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1233
1231
|
// GalleryHorizontalEnd aliases
|
|
1234
1232
|
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1235
1233
|
// GalleryHorizontal aliases
|
|
1236
1234
|
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1237
|
-
// GalleryVertical aliases
|
|
1238
|
-
export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
1239
1235
|
// GalleryVerticalEnd aliases
|
|
1240
1236
|
export { default as GalleryVerticalEndIcon } from '../icons/gallery-vertical-end';
|
|
1237
|
+
// GalleryThumbnails aliases
|
|
1238
|
+
export { default as GalleryThumbnailsIcon } from '../icons/gallery-thumbnails';
|
|
1239
|
+
// GalleryVertical aliases
|
|
1240
|
+
export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
1241
1241
|
// Gamepad2 aliases
|
|
1242
1242
|
export { default as Gamepad2Icon } from '../icons/gamepad-2';
|
|
1243
1243
|
// GamepadDirectional aliases
|
|
@@ -1246,20 +1246,20 @@ export { default as GamepadDirectionalIcon } from '../icons/gamepad-directional'
|
|
|
1246
1246
|
export { default as GamepadIcon } from '../icons/gamepad';
|
|
1247
1247
|
// Gauge aliases
|
|
1248
1248
|
export { default as GaugeIcon } from '../icons/gauge';
|
|
1249
|
-
// Gavel aliases
|
|
1250
|
-
export { default as GavelIcon } from '../icons/gavel';
|
|
1251
|
-
// Ghost aliases
|
|
1252
|
-
export { default as GhostIcon } from '../icons/ghost';
|
|
1253
1249
|
// Gem aliases
|
|
1254
1250
|
export { default as GemIcon } from '../icons/gem';
|
|
1251
|
+
// Gavel aliases
|
|
1252
|
+
export { default as GavelIcon } from '../icons/gavel';
|
|
1255
1253
|
// GeorgianLari aliases
|
|
1256
1254
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1255
|
+
// Ghost aliases
|
|
1256
|
+
export { default as GhostIcon } from '../icons/ghost';
|
|
1257
1257
|
// Gift aliases
|
|
1258
1258
|
export { default as GiftIcon } from '../icons/gift';
|
|
1259
|
-
// GitBranchMinus aliases
|
|
1260
|
-
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1261
1259
|
// GitBranchPlus aliases
|
|
1262
1260
|
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1261
|
+
// GitBranchMinus aliases
|
|
1262
|
+
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1263
1263
|
// GitBranch aliases
|
|
1264
1264
|
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1265
1265
|
// GitCommitVertical aliases
|
|
@@ -1270,10 +1270,10 @@ export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
|
1270
1270
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1271
1271
|
// GitFork aliases
|
|
1272
1272
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1273
|
-
// GitGraph aliases
|
|
1274
|
-
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1275
1273
|
// GitMergeConflict aliases
|
|
1276
1274
|
export { default as GitMergeConflictIcon } from '../icons/git-merge-conflict';
|
|
1275
|
+
// GitGraph aliases
|
|
1276
|
+
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1277
1277
|
// GitMerge aliases
|
|
1278
1278
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1279
1279
|
// GitPullRequestArrow aliases
|
|
@@ -1284,12 +1284,12 @@ export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-c
|
|
|
1284
1284
|
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1285
1285
|
// GitPullRequestCreate aliases
|
|
1286
1286
|
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1287
|
+
// GitPullRequest aliases
|
|
1288
|
+
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1287
1289
|
// GitPullRequestDraft aliases
|
|
1288
1290
|
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1289
1291
|
// GlassWater aliases
|
|
1290
1292
|
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1291
|
-
// GitPullRequest aliases
|
|
1292
|
-
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1293
1293
|
// Glasses aliases
|
|
1294
1294
|
export { default as GlassesIcon } from '../icons/glasses';
|
|
1295
1295
|
// GlobeCheck aliases
|
|
@@ -1312,50 +1312,50 @@ export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
|
1312
1312
|
export { default as GrapeIcon } from '../icons/grape';
|
|
1313
1313
|
// Grid3x2 aliases
|
|
1314
1314
|
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1315
|
-
// GripHorizontal aliases
|
|
1316
|
-
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1317
1315
|
// GripVertical aliases
|
|
1318
1316
|
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1317
|
+
// GripHorizontal aliases
|
|
1318
|
+
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1319
1319
|
// Grip aliases
|
|
1320
1320
|
export { default as GripIcon } from '../icons/grip';
|
|
1321
1321
|
// Group aliases
|
|
1322
1322
|
export { default as GroupIcon } from '../icons/group';
|
|
1323
1323
|
// Guitar aliases
|
|
1324
1324
|
export { default as GuitarIcon } from '../icons/guitar';
|
|
1325
|
-
// Hamburger aliases
|
|
1326
|
-
export { default as HamburgerIcon } from '../icons/hamburger';
|
|
1327
1325
|
// Ham aliases
|
|
1328
1326
|
export { default as HamIcon } from '../icons/ham';
|
|
1329
|
-
//
|
|
1330
|
-
export { default as
|
|
1327
|
+
// Hamburger aliases
|
|
1328
|
+
export { default as HamburgerIcon } from '../icons/hamburger';
|
|
1331
1329
|
// Hammer aliases
|
|
1332
1330
|
export { default as HammerIcon } from '../icons/hammer';
|
|
1331
|
+
// HandCoins aliases
|
|
1332
|
+
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1333
|
+
// HandFist aliases
|
|
1334
|
+
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1333
1335
|
// HandHeart aliases
|
|
1334
1336
|
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1335
1337
|
// HandMetal aliases
|
|
1336
1338
|
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1337
|
-
// HandFist aliases
|
|
1338
|
-
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1339
1339
|
// HandPlatter aliases
|
|
1340
1340
|
export { default as HandPlatterIcon } from '../icons/hand-platter';
|
|
1341
1341
|
// Hand aliases
|
|
1342
1342
|
export { default as HandIcon } from '../icons/hand';
|
|
1343
1343
|
// Handbag aliases
|
|
1344
1344
|
export { default as HandbagIcon } from '../icons/handbag';
|
|
1345
|
-
// Handshake aliases
|
|
1346
|
-
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1347
1345
|
// HardDriveDownload aliases
|
|
1348
1346
|
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1349
|
-
// HardHat aliases
|
|
1350
|
-
export { default as HardHatIcon } from '../icons/hard-hat';
|
|
1351
|
-
// Hash aliases
|
|
1352
|
-
export { default as HashIcon } from '../icons/hash';
|
|
1353
1347
|
// HardDriveUpload aliases
|
|
1354
1348
|
export { default as HardDriveUploadIcon } from '../icons/hard-drive-upload';
|
|
1349
|
+
// Handshake aliases
|
|
1350
|
+
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1355
1351
|
// HardDrive aliases
|
|
1356
1352
|
export { default as HardDriveIcon } from '../icons/hard-drive';
|
|
1357
1353
|
// HatGlasses aliases
|
|
1358
1354
|
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1355
|
+
// Hash aliases
|
|
1356
|
+
export { default as HashIcon } from '../icons/hash';
|
|
1357
|
+
// HardHat aliases
|
|
1358
|
+
export { default as HardHatIcon } from '../icons/hard-hat';
|
|
1359
1359
|
// Haze aliases
|
|
1360
1360
|
export { default as HazeIcon } from '../icons/haze';
|
|
1361
1361
|
// HdmiPort aliases
|
|
@@ -1380,12 +1380,12 @@ export { default as HeadingIcon } from '../icons/heading';
|
|
|
1380
1380
|
export { default as HeadphoneOffIcon } from '../icons/headphone-off';
|
|
1381
1381
|
// Headphones aliases
|
|
1382
1382
|
export { default as HeadphonesIcon } from '../icons/headphones';
|
|
1383
|
+
// Headset aliases
|
|
1384
|
+
export { default as HeadsetIcon } from '../icons/headset';
|
|
1383
1385
|
// HeartCrack aliases
|
|
1384
1386
|
export { default as HeartCrackIcon } from '../icons/heart-crack';
|
|
1385
1387
|
// HeartHandshake aliases
|
|
1386
1388
|
export { default as HeartHandshakeIcon } from '../icons/heart-handshake';
|
|
1387
|
-
// Headset aliases
|
|
1388
|
-
export { default as HeadsetIcon } from '../icons/headset';
|
|
1389
1389
|
// HeartMinus aliases
|
|
1390
1390
|
export { default as HeartMinusIcon } from '../icons/heart-minus';
|
|
1391
1391
|
// HeartOff aliases
|
|
@@ -1394,42 +1394,40 @@ export { default as HeartOffIcon } from '../icons/heart-off';
|
|
|
1394
1394
|
export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
1395
1395
|
// HeartPulse aliases
|
|
1396
1396
|
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1397
|
-
// Heart aliases
|
|
1398
|
-
export { default as HeartIcon } from '../icons/heart';
|
|
1399
1397
|
// HeartX aliases
|
|
1400
1398
|
export { default as HeartXIcon } from '../icons/heart-x';
|
|
1401
1399
|
// Heater aliases
|
|
1402
1400
|
export { default as HeaterIcon } from '../icons/heater';
|
|
1403
|
-
// Helicopter aliases
|
|
1404
|
-
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1405
1401
|
// Hexagon aliases
|
|
1406
1402
|
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1407
|
-
//
|
|
1408
|
-
export { default as
|
|
1409
|
-
//
|
|
1410
|
-
export { default as
|
|
1403
|
+
// Heart aliases
|
|
1404
|
+
export { default as HeartIcon } from '../icons/heart';
|
|
1405
|
+
// Helicopter aliases
|
|
1406
|
+
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1411
1407
|
// Highlighter aliases
|
|
1412
1408
|
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1413
|
-
//
|
|
1414
|
-
export { default as
|
|
1409
|
+
// HopOff aliases
|
|
1410
|
+
export { default as HopOffIcon } from '../icons/hop-off';
|
|
1415
1411
|
// Hospital aliases
|
|
1416
1412
|
export { default as HospitalIcon } from '../icons/hospital';
|
|
1417
1413
|
// Hotel aliases
|
|
1418
1414
|
export { default as HotelIcon } from '../icons/hotel';
|
|
1415
|
+
// Hop aliases
|
|
1416
|
+
export { default as HopIcon } from '../icons/hop';
|
|
1419
1417
|
// Hourglass aliases
|
|
1420
1418
|
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1421
1419
|
// HouseHeart aliases
|
|
1422
1420
|
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1421
|
+
// HousePlus aliases
|
|
1422
|
+
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1423
1423
|
// HousePlug aliases
|
|
1424
1424
|
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1425
1425
|
// HouseWifi aliases
|
|
1426
1426
|
export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
1427
|
-
// IdCardLanyard aliases
|
|
1428
|
-
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1429
|
-
// HousePlus aliases
|
|
1430
|
-
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1431
1427
|
// IdCard aliases
|
|
1432
1428
|
export { default as IdCardIcon } from '../icons/id-card';
|
|
1429
|
+
// IdCardLanyard aliases
|
|
1430
|
+
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1433
1431
|
// ImageDown aliases
|
|
1434
1432
|
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1435
1433
|
// ImageMinus aliases
|
|
@@ -1442,22 +1440,22 @@ export { default as ImagePlayIcon } from '../icons/image-play';
|
|
|
1442
1440
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1443
1441
|
// ImageUp aliases
|
|
1444
1442
|
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1445
|
-
// ImageUpscale aliases
|
|
1446
|
-
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1447
1443
|
// Image aliases
|
|
1448
1444
|
export { default as ImageIcon } from '../icons/image';
|
|
1445
|
+
// ImageUpscale aliases
|
|
1446
|
+
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1449
1447
|
// Images aliases
|
|
1450
1448
|
export { default as ImagesIcon } from '../icons/images';
|
|
1451
1449
|
// Import aliases
|
|
1452
1450
|
export { default as ImportIcon } from '../icons/import';
|
|
1453
|
-
// Inbox aliases
|
|
1454
|
-
export { default as InboxIcon } from '../icons/inbox';
|
|
1455
1451
|
// IndianRupee aliases
|
|
1456
1452
|
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1457
|
-
//
|
|
1458
|
-
export { default as
|
|
1453
|
+
// Inbox aliases
|
|
1454
|
+
export { default as InboxIcon } from '../icons/inbox';
|
|
1459
1455
|
// Info aliases
|
|
1460
1456
|
export { default as InfoIcon } from '../icons/info';
|
|
1457
|
+
// Infinity aliases
|
|
1458
|
+
export { default as InfinityIcon } from '../icons/infinity';
|
|
1461
1459
|
// InspectionPanel aliases
|
|
1462
1460
|
export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
1463
1461
|
// Italic aliases
|
|
@@ -1470,12 +1468,12 @@ export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
|
1470
1468
|
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1471
1469
|
// Joystick aliases
|
|
1472
1470
|
export { default as JoystickIcon } from '../icons/joystick';
|
|
1473
|
-
// Kanban aliases
|
|
1474
|
-
export { default as KanbanIcon } from '../icons/kanban';
|
|
1475
1471
|
// Kayak aliases
|
|
1476
1472
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1477
1473
|
// KeyRound aliases
|
|
1478
1474
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1475
|
+
// Kanban aliases
|
|
1476
|
+
export { default as KanbanIcon } from '../icons/kanban';
|
|
1479
1477
|
// KeySquare aliases
|
|
1480
1478
|
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1481
1479
|
// Key aliases
|
|
@@ -1484,10 +1482,10 @@ export { default as KeyIcon } from '../icons/key';
|
|
|
1484
1482
|
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1485
1483
|
// KeyboardOff aliases
|
|
1486
1484
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1487
|
-
// Keyboard aliases
|
|
1488
|
-
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1489
1485
|
// LampCeiling aliases
|
|
1490
1486
|
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1487
|
+
// Keyboard aliases
|
|
1488
|
+
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1491
1489
|
// LampDesk aliases
|
|
1492
1490
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1493
1491
|
// LampFloor aliases
|
|
@@ -1496,20 +1494,20 @@ export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
|
1496
1494
|
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1497
1495
|
// LampWallUp aliases
|
|
1498
1496
|
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1499
|
-
// Lamp aliases
|
|
1500
|
-
export { default as LampIcon } from '../icons/lamp';
|
|
1501
1497
|
// LandPlot aliases
|
|
1502
1498
|
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1499
|
+
// Lamp aliases
|
|
1500
|
+
export { default as LampIcon } from '../icons/lamp';
|
|
1503
1501
|
// Landmark aliases
|
|
1504
1502
|
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1505
|
-
// LaptopMinimalCheck aliases
|
|
1506
|
-
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1507
1503
|
// Languages aliases
|
|
1508
1504
|
export { default as LanguagesIcon } from '../icons/languages';
|
|
1509
1505
|
// Laptop aliases
|
|
1510
1506
|
export { default as LaptopIcon } from '../icons/laptop';
|
|
1511
1507
|
// LassoSelect aliases
|
|
1512
1508
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1509
|
+
// LaptopMinimalCheck aliases
|
|
1510
|
+
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1513
1511
|
// Lasso aliases
|
|
1514
1512
|
export { default as LassoIcon } from '../icons/lasso';
|
|
1515
1513
|
// Laugh aliases
|
|
@@ -1520,20 +1518,22 @@ export { default as Layers2Icon } from '../icons/layers-2';
|
|
|
1520
1518
|
export { default as LayersMinusIcon } from '../icons/layers-minus';
|
|
1521
1519
|
// LayersPlus aliases
|
|
1522
1520
|
export { default as LayersPlusIcon } from '../icons/layers-plus';
|
|
1521
|
+
// LayoutFreeform aliases
|
|
1522
|
+
export { default as LayoutFreeformIcon } from '../icons/layout-freeform';
|
|
1523
1523
|
// LayoutDashboard aliases
|
|
1524
1524
|
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1525
1525
|
// LayoutGrid aliases
|
|
1526
1526
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1527
|
-
// LayoutList aliases
|
|
1528
|
-
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1529
1527
|
// LayoutPanelLeft aliases
|
|
1530
1528
|
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1529
|
+
// LayoutList aliases
|
|
1530
|
+
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1531
1531
|
// LayoutPanelTop aliases
|
|
1532
1532
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1533
|
-
// Leaf aliases
|
|
1534
|
-
export { default as LeafIcon } from '../icons/leaf';
|
|
1535
1533
|
// LayoutTemplate aliases
|
|
1536
1534
|
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1535
|
+
// Leaf aliases
|
|
1536
|
+
export { default as LeafIcon } from '../icons/leaf';
|
|
1537
1537
|
// LeafyGreen aliases
|
|
1538
1538
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1539
1539
|
// Lectern aliases
|
|
@@ -1562,20 +1562,20 @@ export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
|
1562
1562
|
export { default as LineStyleIcon } from '../icons/line-style';
|
|
1563
1563
|
// Link2Off aliases
|
|
1564
1564
|
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1565
|
-
// Link2 aliases
|
|
1566
|
-
export { default as Link2Icon } from '../icons/link-2';
|
|
1567
1565
|
// Link aliases
|
|
1568
1566
|
export { default as LinkIcon } from '../icons/link';
|
|
1569
|
-
// ListCheck aliases
|
|
1570
|
-
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1571
1567
|
// ListChecks aliases
|
|
1572
1568
|
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1569
|
+
// Link2 aliases
|
|
1570
|
+
export { default as Link2Icon } from '../icons/link-2';
|
|
1571
|
+
// ListCheck aliases
|
|
1572
|
+
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1573
1573
|
// ListChevronsDownUp aliases
|
|
1574
1574
|
export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-up';
|
|
1575
|
-
// ListChevronsUpDown aliases
|
|
1576
|
-
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1577
1575
|
// ListCollapse aliases
|
|
1578
1576
|
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1577
|
+
// ListChevronsUpDown aliases
|
|
1578
|
+
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1579
1579
|
// ListEnd aliases
|
|
1580
1580
|
export { default as ListEndIcon } from '../icons/list-end';
|
|
1581
1581
|
// ListFilterPlus aliases
|
|
@@ -1586,24 +1586,24 @@ export { default as ListFilterIcon } from '../icons/list-filter';
|
|
|
1586
1586
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1587
1587
|
// ListMusic aliases
|
|
1588
1588
|
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1589
|
-
// ListOrdered aliases
|
|
1590
|
-
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1591
1589
|
// ListPlus aliases
|
|
1592
1590
|
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1591
|
+
// ListOrdered aliases
|
|
1592
|
+
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1593
1593
|
// ListRestart aliases
|
|
1594
1594
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1595
|
-
// ListSortDescending aliases
|
|
1596
|
-
export { default as ListSortDescendingIcon } from '../icons/list-sort-descending';
|
|
1597
1595
|
// ListSortAscending aliases
|
|
1598
1596
|
export { default as ListSortAscendingIcon } from '../icons/list-sort-ascending';
|
|
1597
|
+
// ListSortDescending aliases
|
|
1598
|
+
export { default as ListSortDescendingIcon } from '../icons/list-sort-descending';
|
|
1599
|
+
// ListTree aliases
|
|
1600
|
+
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1599
1601
|
// ListStart aliases
|
|
1600
1602
|
export { default as ListStartIcon } from '../icons/list-start';
|
|
1601
1603
|
// ListTodo aliases
|
|
1602
1604
|
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1603
1605
|
// ListVideo aliases
|
|
1604
1606
|
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1605
|
-
// ListTree aliases
|
|
1606
|
-
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1607
1607
|
// ListX aliases
|
|
1608
1608
|
export { default as ListXIcon } from '../icons/list-x';
|
|
1609
1609
|
// List aliases
|
|
@@ -1612,44 +1612,44 @@ export { default as ListIcon } from '../icons/list';
|
|
|
1612
1612
|
export { default as LoaderPinwheelIcon } from '../icons/loader-pinwheel';
|
|
1613
1613
|
// Loader aliases
|
|
1614
1614
|
export { default as LoaderIcon } from '../icons/loader';
|
|
1615
|
+
// LocateFixed aliases
|
|
1616
|
+
export { default as LocateFixedIcon } from '../icons/locate-fixed';
|
|
1615
1617
|
// LocateOff aliases
|
|
1616
1618
|
export { default as LocateOffIcon } from '../icons/locate-off';
|
|
1617
1619
|
// Locate aliases
|
|
1618
1620
|
export { default as LocateIcon } from '../icons/locate';
|
|
1619
|
-
// LocateFixed aliases
|
|
1620
|
-
export { default as LocateFixedIcon } from '../icons/locate-fixed';
|
|
1621
1621
|
// LockKeyhole aliases
|
|
1622
1622
|
export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
1623
1623
|
// Lock aliases
|
|
1624
1624
|
export { default as LockIcon } from '../icons/lock';
|
|
1625
1625
|
// LogIn aliases
|
|
1626
1626
|
export { default as LogInIcon } from '../icons/log-in';
|
|
1627
|
-
// LogOut aliases
|
|
1628
|
-
export { default as LogOutIcon } from '../icons/log-out';
|
|
1629
1627
|
// Logs aliases
|
|
1630
1628
|
export { default as LogsIcon } from '../icons/logs';
|
|
1629
|
+
// LogOut aliases
|
|
1630
|
+
export { default as LogOutIcon } from '../icons/log-out';
|
|
1631
1631
|
// Lollipop aliases
|
|
1632
1632
|
export { default as LollipopIcon } from '../icons/lollipop';
|
|
1633
|
-
// Luggage aliases
|
|
1634
|
-
export { default as LuggageIcon } from '../icons/luggage';
|
|
1635
1633
|
// Magnet aliases
|
|
1636
1634
|
export { default as MagnetIcon } from '../icons/magnet';
|
|
1635
|
+
// Luggage aliases
|
|
1636
|
+
export { default as LuggageIcon } from '../icons/luggage';
|
|
1637
1637
|
// MailCheck aliases
|
|
1638
1638
|
export { default as MailCheckIcon } from '../icons/mail-check';
|
|
1639
1639
|
// MailMinus aliases
|
|
1640
1640
|
export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
1641
1641
|
// MailOpen aliases
|
|
1642
1642
|
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1643
|
-
// MailWarning aliases
|
|
1644
|
-
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1645
1643
|
// MailPlus aliases
|
|
1646
1644
|
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1647
1645
|
// MailSearch aliases
|
|
1648
1646
|
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1649
|
-
//
|
|
1650
|
-
export { default as
|
|
1647
|
+
// MailWarning aliases
|
|
1648
|
+
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1651
1649
|
// MailX aliases
|
|
1652
1650
|
export { default as MailXIcon } from '../icons/mail-x';
|
|
1651
|
+
// Mail aliases
|
|
1652
|
+
export { default as MailIcon } from '../icons/mail';
|
|
1653
1653
|
// Mailbox aliases
|
|
1654
1654
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1655
1655
|
// Mails aliases
|
|
@@ -1658,10 +1658,10 @@ export { default as MailsIcon } from '../icons/mails';
|
|
|
1658
1658
|
export { default as MapMinusIcon } from '../icons/map-minus';
|
|
1659
1659
|
// MapPinCheckInside aliases
|
|
1660
1660
|
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1661
|
-
// MapPinCheck aliases
|
|
1662
|
-
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1663
1661
|
// MapPinHouse aliases
|
|
1664
1662
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1663
|
+
// MapPinCheck aliases
|
|
1664
|
+
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1665
1665
|
// MapPinMinusInside aliases
|
|
1666
1666
|
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1667
1667
|
// MapPinMinus aliases
|
|
@@ -1688,22 +1688,22 @@ export { default as MapPlusIcon } from '../icons/map-plus';
|
|
|
1688
1688
|
export { default as MapIcon } from '../icons/map';
|
|
1689
1689
|
// MarsStroke aliases
|
|
1690
1690
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1691
|
-
// Martini aliases
|
|
1692
|
-
export { default as MartiniIcon } from '../icons/martini';
|
|
1693
1691
|
// Mars aliases
|
|
1694
1692
|
export { default as MarsIcon } from '../icons/mars';
|
|
1695
1693
|
// Maximize2 aliases
|
|
1696
1694
|
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1695
|
+
// Medal aliases
|
|
1696
|
+
export { default as MedalIcon } from '../icons/medal';
|
|
1697
|
+
// Martini aliases
|
|
1698
|
+
export { default as MartiniIcon } from '../icons/martini';
|
|
1697
1699
|
// Maximize aliases
|
|
1698
1700
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1699
1701
|
// MegaphoneOff aliases
|
|
1700
1702
|
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1701
|
-
// Meh aliases
|
|
1702
|
-
export { default as MehIcon } from '../icons/meh';
|
|
1703
1703
|
// Megaphone aliases
|
|
1704
1704
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1705
|
-
//
|
|
1706
|
-
export { default as
|
|
1705
|
+
// Meh aliases
|
|
1706
|
+
export { default as MehIcon } from '../icons/meh';
|
|
1707
1707
|
// MemoryStick aliases
|
|
1708
1708
|
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1709
1709
|
// Menu aliases
|
|
@@ -1714,40 +1714,40 @@ export { default as MergeIcon } from '../icons/merge';
|
|
|
1714
1714
|
export { default as MessageCircleCheckIcon } from '../icons/message-circle-check';
|
|
1715
1715
|
// MessageCircleCode aliases
|
|
1716
1716
|
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1717
|
-
// MessageCircleHeart aliases
|
|
1718
|
-
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1719
1717
|
// MessageCircleDashed aliases
|
|
1720
1718
|
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1721
|
-
//
|
|
1722
|
-
export { default as
|
|
1719
|
+
// MessageCircleHeart aliases
|
|
1720
|
+
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1723
1721
|
// MessageCircleOff aliases
|
|
1724
1722
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1723
|
+
// MessageCircleMore aliases
|
|
1724
|
+
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1725
1725
|
// MessageCirclePlus aliases
|
|
1726
1726
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1727
1727
|
// MessageCircleReply aliases
|
|
1728
1728
|
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1729
|
-
// MessageCircleWarning aliases
|
|
1730
|
-
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1731
1729
|
// MessageCircleX aliases
|
|
1732
1730
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1731
|
+
// MessageCircleWarning aliases
|
|
1732
|
+
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1733
1733
|
// MessageCircle aliases
|
|
1734
1734
|
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1735
1735
|
// MessageSquareCheck aliases
|
|
1736
1736
|
export { default as MessageSquareCheckIcon } from '../icons/message-square-check';
|
|
1737
1737
|
// MessageSquareCode aliases
|
|
1738
1738
|
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1739
|
-
// MessageSquareDot aliases
|
|
1740
|
-
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1741
|
-
// MessageSquareDashed aliases
|
|
1742
|
-
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1743
1739
|
// MessageSquareDiff aliases
|
|
1744
1740
|
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1741
|
+
// MessageSquareDashed aliases
|
|
1742
|
+
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1743
|
+
// MessageSquareDot aliases
|
|
1744
|
+
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1745
1745
|
// MessageSquareHeart aliases
|
|
1746
1746
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1747
|
-
// MessageSquareLock aliases
|
|
1748
|
-
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1749
1747
|
// MessageSquareMore aliases
|
|
1750
1748
|
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1749
|
+
// MessageSquareLock aliases
|
|
1750
|
+
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1751
1751
|
// MessageSquareOff aliases
|
|
1752
1752
|
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1753
1753
|
// MessageSquarePlus aliases
|
|
@@ -1758,18 +1758,20 @@ export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote
|
|
|
1758
1758
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1759
1759
|
// MessageSquareShare aliases
|
|
1760
1760
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1761
|
-
// MessageSquareText aliases
|
|
1762
|
-
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1763
1761
|
// MessageSquareWarning aliases
|
|
1764
1762
|
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1765
|
-
// MessagesSquare aliases
|
|
1766
|
-
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1767
|
-
// MessageSquare aliases
|
|
1768
|
-
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1769
1763
|
// MessageSquareX aliases
|
|
1770
1764
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1765
|
+
// MessageSquareText aliases
|
|
1766
|
+
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1767
|
+
// MessageSquare aliases
|
|
1768
|
+
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1769
|
+
// MessagesSquare aliases
|
|
1770
|
+
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1771
1771
|
// Metronome aliases
|
|
1772
1772
|
export { default as MetronomeIcon } from '../icons/metronome';
|
|
1773
|
+
// MicAudioLines aliases
|
|
1774
|
+
export { default as MicAudioLinesIcon } from '../icons/mic-audio-lines';
|
|
1773
1775
|
// MicOff aliases
|
|
1774
1776
|
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1775
1777
|
// Mic aliases
|
|
@@ -1780,22 +1782,22 @@ export { default as MicrochipIcon } from '../icons/microchip';
|
|
|
1780
1782
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1781
1783
|
// Microwave aliases
|
|
1782
1784
|
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1783
|
-
// MilkOff aliases
|
|
1784
|
-
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1785
1785
|
// Milestone aliases
|
|
1786
1786
|
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1787
1787
|
// Milk aliases
|
|
1788
1788
|
export { default as MilkIcon } from '../icons/milk';
|
|
1789
1789
|
// Minimize2 aliases
|
|
1790
1790
|
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1791
|
+
// MilkOff aliases
|
|
1792
|
+
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1791
1793
|
// Minimize aliases
|
|
1792
1794
|
export { default as MinimizeIcon } from '../icons/minimize';
|
|
1793
1795
|
// Minus aliases
|
|
1794
1796
|
export { default as MinusIcon } from '../icons/minus';
|
|
1795
|
-
// MirrorRectangular aliases
|
|
1796
|
-
export { default as MirrorRectangularIcon } from '../icons/mirror-rectangular';
|
|
1797
1797
|
// MirrorRound aliases
|
|
1798
1798
|
export { default as MirrorRoundIcon } from '../icons/mirror-round';
|
|
1799
|
+
// MirrorRectangular aliases
|
|
1800
|
+
export { default as MirrorRectangularIcon } from '../icons/mirror-rectangular';
|
|
1799
1801
|
// MonitorCheck aliases
|
|
1800
1802
|
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1801
1803
|
// MonitorCloud aliases
|
|
@@ -1804,104 +1806,106 @@ export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
|
1804
1806
|
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1805
1807
|
// MonitorDot aliases
|
|
1806
1808
|
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1807
|
-
// MonitorDown aliases
|
|
1808
|
-
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1809
1809
|
// MonitorOff aliases
|
|
1810
1810
|
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1811
|
+
// MonitorDown aliases
|
|
1812
|
+
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1811
1813
|
// MonitorPause aliases
|
|
1812
1814
|
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1813
|
-
// MonitorSmartphone aliases
|
|
1814
|
-
export { default as MonitorSmartphoneIcon } from '../icons/monitor-smartphone';
|
|
1815
1815
|
// MonitorPlay aliases
|
|
1816
1816
|
export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
1817
|
+
// MonitorSmartphone aliases
|
|
1818
|
+
export { default as MonitorSmartphoneIcon } from '../icons/monitor-smartphone';
|
|
1817
1819
|
// MonitorSpeaker aliases
|
|
1818
1820
|
export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
1819
|
-
// MonitorStop aliases
|
|
1820
|
-
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1821
1821
|
// MonitorUp aliases
|
|
1822
1822
|
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1823
|
+
// MonitorStop aliases
|
|
1824
|
+
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1823
1825
|
// MonitorX aliases
|
|
1824
1826
|
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1825
1827
|
// Monitor aliases
|
|
1826
1828
|
export { default as MonitorIcon } from '../icons/monitor';
|
|
1827
|
-
// Moon aliases
|
|
1828
|
-
export { default as MoonIcon } from '../icons/moon';
|
|
1829
1829
|
// MoonStar aliases
|
|
1830
1830
|
export { default as MoonStarIcon } from '../icons/moon-star';
|
|
1831
|
-
//
|
|
1832
|
-
export { default as
|
|
1831
|
+
// Moon aliases
|
|
1832
|
+
export { default as MoonIcon } from '../icons/moon';
|
|
1833
|
+
// Mosque aliases
|
|
1834
|
+
export { default as MosqueIcon } from '../icons/mosque';
|
|
1833
1835
|
// MountainSnow aliases
|
|
1834
1836
|
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1837
|
+
// Motorbike aliases
|
|
1838
|
+
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1835
1839
|
// Mountain aliases
|
|
1836
1840
|
export { default as MountainIcon } from '../icons/mountain';
|
|
1837
|
-
// MouseOff aliases
|
|
1838
|
-
export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
1839
1841
|
// MouseLeft aliases
|
|
1840
1842
|
export { default as MouseLeftIcon } from '../icons/mouse-left';
|
|
1841
1843
|
// MousePointer2Off aliases
|
|
1842
1844
|
export { default as MousePointer2OffIcon } from '../icons/mouse-pointer-2-off';
|
|
1845
|
+
// MouseOff aliases
|
|
1846
|
+
export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
1843
1847
|
// MousePointer2 aliases
|
|
1844
1848
|
export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
1845
|
-
// MousePointerBan aliases
|
|
1846
|
-
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1847
1849
|
// MousePointerClick aliases
|
|
1848
1850
|
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1851
|
+
// MousePointerBan aliases
|
|
1852
|
+
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1853
|
+
// Mouse aliases
|
|
1854
|
+
export { default as MouseIcon } from '../icons/mouse';
|
|
1849
1855
|
// MousePointer aliases
|
|
1850
1856
|
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1851
1857
|
// MouseRight aliases
|
|
1852
1858
|
export { default as MouseRightIcon } from '../icons/mouse-right';
|
|
1853
|
-
// MoveDiagonal aliases
|
|
1854
|
-
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1855
1859
|
// MoveDiagonal2 aliases
|
|
1856
1860
|
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1857
|
-
//
|
|
1858
|
-
export { default as
|
|
1861
|
+
// MoveDiagonal aliases
|
|
1862
|
+
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1859
1863
|
// MoveDownLeft aliases
|
|
1860
1864
|
export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
1861
1865
|
// MoveDownRight aliases
|
|
1862
1866
|
export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
1863
|
-
// MoveDown aliases
|
|
1864
|
-
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1865
1867
|
// MoveHorizontal aliases
|
|
1866
1868
|
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1867
1869
|
// MoveLeft aliases
|
|
1868
1870
|
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1871
|
+
// MoveDown aliases
|
|
1872
|
+
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1869
1873
|
// MoveRight aliases
|
|
1870
1874
|
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1871
1875
|
// MoveUpLeft aliases
|
|
1872
1876
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1873
|
-
// MoveUpRight aliases
|
|
1874
|
-
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1875
1877
|
// MoveUp aliases
|
|
1876
1878
|
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1879
|
+
// MoveUpRight aliases
|
|
1880
|
+
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1877
1881
|
// MoveVertical aliases
|
|
1878
1882
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1879
|
-
// Move aliases
|
|
1880
|
-
export { default as MoveIcon } from '../icons/move';
|
|
1881
|
-
// Music2 aliases
|
|
1882
|
-
export { default as Music2Icon } from '../icons/music-2';
|
|
1883
1883
|
// Music3 aliases
|
|
1884
1884
|
export { default as Music3Icon } from '../icons/music-3';
|
|
1885
|
+
// Music2 aliases
|
|
1886
|
+
export { default as Music2Icon } from '../icons/music-2';
|
|
1887
|
+
// Move aliases
|
|
1888
|
+
export { default as MoveIcon } from '../icons/move';
|
|
1885
1889
|
// Music4 aliases
|
|
1886
1890
|
export { default as Music4Icon } from '../icons/music-4';
|
|
1887
1891
|
// Music aliases
|
|
1888
1892
|
export { default as MusicIcon } from '../icons/music';
|
|
1889
1893
|
// Navigation2Off aliases
|
|
1890
1894
|
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1891
|
-
// Navigation2 aliases
|
|
1892
|
-
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1893
1895
|
// NavigationOff aliases
|
|
1894
1896
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1895
1897
|
// Navigation aliases
|
|
1896
1898
|
export { default as NavigationIcon } from '../icons/navigation';
|
|
1897
1899
|
// Network aliases
|
|
1898
1900
|
export { default as NetworkIcon } from '../icons/network';
|
|
1901
|
+
// Navigation2 aliases
|
|
1902
|
+
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1899
1903
|
// Newspaper aliases
|
|
1900
1904
|
export { default as NewspaperIcon } from '../icons/newspaper';
|
|
1901
|
-
// Nfc aliases
|
|
1902
|
-
export { default as NfcIcon } from '../icons/nfc';
|
|
1903
1905
|
// NonBinary aliases
|
|
1904
1906
|
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1907
|
+
// Nfc aliases
|
|
1908
|
+
export { default as NfcIcon } from '../icons/nfc';
|
|
1905
1909
|
// NotebookPen aliases
|
|
1906
1910
|
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1907
1911
|
// NotebookTabs aliases
|
|
@@ -1912,16 +1916,18 @@ export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
|
1912
1916
|
export { default as NotebookIcon } from '../icons/notebook';
|
|
1913
1917
|
// NotepadTextDashed aliases
|
|
1914
1918
|
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1915
|
-
// NutOff aliases
|
|
1916
|
-
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1917
1919
|
// NotepadText aliases
|
|
1918
1920
|
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1919
|
-
//
|
|
1920
|
-
export { default as
|
|
1921
|
-
// OctagonMinus aliases
|
|
1922
|
-
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1921
|
+
// NutOff aliases
|
|
1922
|
+
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1923
1923
|
// Octagon aliases
|
|
1924
1924
|
export { default as OctagonIcon } from '../icons/octagon';
|
|
1925
|
+
// OctagonMinus aliases
|
|
1926
|
+
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1927
|
+
// Nut aliases
|
|
1928
|
+
export { default as NutIcon } from '../icons/nut';
|
|
1929
|
+
// Omega aliases
|
|
1930
|
+
export { default as OmegaIcon } from '../icons/omega';
|
|
1925
1931
|
// Option aliases
|
|
1926
1932
|
export { default as OptionIcon } from '../icons/option';
|
|
1927
1933
|
// Orbit aliases
|
|
@@ -1930,36 +1936,34 @@ export { default as OrbitIcon } from '../icons/orbit';
|
|
|
1930
1936
|
export { default as OrigamiIcon } from '../icons/origami';
|
|
1931
1937
|
// Package2 aliases
|
|
1932
1938
|
export { default as Package2Icon } from '../icons/package-2';
|
|
1933
|
-
// Omega aliases
|
|
1934
|
-
export { default as OmegaIcon } from '../icons/omega';
|
|
1935
1939
|
// PackageCheck aliases
|
|
1936
1940
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1937
|
-
// PackageMinus aliases
|
|
1938
|
-
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1939
1941
|
// PackageOpen aliases
|
|
1940
1942
|
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1941
|
-
//
|
|
1942
|
-
export { default as
|
|
1943
|
+
// PackageMinus aliases
|
|
1944
|
+
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1943
1945
|
// PackagePlus aliases
|
|
1944
1946
|
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1947
|
+
// PackageSearch aliases
|
|
1948
|
+
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1945
1949
|
// PackageX aliases
|
|
1946
1950
|
export { default as PackageXIcon } from '../icons/package-x';
|
|
1947
1951
|
// Package aliases
|
|
1948
1952
|
export { default as PackageIcon } from '../icons/package';
|
|
1949
1953
|
// PaintBucket aliases
|
|
1950
1954
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1951
|
-
// PaintRoller aliases
|
|
1952
|
-
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1953
1955
|
// Paintbrush aliases
|
|
1954
1956
|
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1957
|
+
// PaintRoller aliases
|
|
1958
|
+
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1955
1959
|
// Panda aliases
|
|
1956
1960
|
export { default as PandaIcon } from '../icons/panda';
|
|
1957
1961
|
// Palette aliases
|
|
1958
1962
|
export { default as PaletteIcon } from '../icons/palette';
|
|
1959
|
-
// PanelBottomOpen aliases
|
|
1960
|
-
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1961
1963
|
// PanelBottomClose aliases
|
|
1962
1964
|
export { default as PanelBottomCloseIcon } from '../icons/panel-bottom-close';
|
|
1965
|
+
// PanelBottomOpen aliases
|
|
1966
|
+
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1963
1967
|
// PanelBottom aliases
|
|
1964
1968
|
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1965
1969
|
// PanelLeftRightDashed aliases
|
|
@@ -2006,10 +2010,10 @@ export { default as PenOffIcon } from '../icons/pen-off';
|
|
|
2006
2010
|
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
2007
2011
|
// PencilLine aliases
|
|
2008
2012
|
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
2009
|
-
// PencilRuler aliases
|
|
2010
|
-
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
2011
2013
|
// PencilOff aliases
|
|
2012
2014
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
2015
|
+
// PencilRuler aliases
|
|
2016
|
+
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
2013
2017
|
// Pencil aliases
|
|
2014
2018
|
export { default as PencilIcon } from '../icons/pencil';
|
|
2015
2019
|
// PencilSparkles aliases
|
|
@@ -2032,10 +2036,10 @@ export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
|
2032
2036
|
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
2033
2037
|
// PhoneMissed aliases
|
|
2034
2038
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
2035
|
-
// PhoneOff aliases
|
|
2036
|
-
export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
2037
2039
|
// PhoneOutgoing aliases
|
|
2038
2040
|
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
2041
|
+
// PhoneOff aliases
|
|
2042
|
+
export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
2039
2043
|
// Phone aliases
|
|
2040
2044
|
export { default as PhoneIcon } from '../icons/phone';
|
|
2041
2045
|
// Pi aliases
|
|
@@ -2050,10 +2054,10 @@ export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
|
2050
2054
|
export { default as PictureInPicture2Icon } from '../icons/picture-in-picture-2';
|
|
2051
2055
|
// PiggyBank aliases
|
|
2052
2056
|
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
2053
|
-
// PilcrowLeft aliases
|
|
2054
|
-
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
2055
2057
|
// PilcrowRight aliases
|
|
2056
2058
|
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
2059
|
+
// PilcrowLeft aliases
|
|
2060
|
+
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
2057
2061
|
// Pilcrow aliases
|
|
2058
2062
|
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
2059
2063
|
// PillBottle aliases
|
|
@@ -2062,46 +2066,44 @@ export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
|
2062
2066
|
export { default as PillIcon } from '../icons/pill';
|
|
2063
2067
|
// PinOff aliases
|
|
2064
2068
|
export { default as PinOffIcon } from '../icons/pin-off';
|
|
2069
|
+
// Pipette aliases
|
|
2070
|
+
export { default as PipetteIcon } from '../icons/pipette';
|
|
2065
2071
|
// Pin aliases
|
|
2066
2072
|
export { default as PinIcon } from '../icons/pin';
|
|
2067
2073
|
// Pizza aliases
|
|
2068
2074
|
export { default as PizzaIcon } from '../icons/pizza';
|
|
2069
|
-
// Pipette aliases
|
|
2070
|
-
export { default as PipetteIcon } from '../icons/pipette';
|
|
2071
2075
|
// PlaneLanding aliases
|
|
2072
2076
|
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
2073
2077
|
// PlaneTakeoff aliases
|
|
2074
2078
|
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
2075
2079
|
// Plane aliases
|
|
2076
2080
|
export { default as PlaneIcon } from '../icons/plane';
|
|
2077
|
-
// PlayOff aliases
|
|
2078
|
-
export { default as PlayOffIcon } from '../icons/play-off';
|
|
2079
|
-
// Plug2 aliases
|
|
2080
|
-
export { default as Plug2Icon } from '../icons/plug-2';
|
|
2081
2081
|
// Play aliases
|
|
2082
2082
|
export { default as PlayIcon } from '../icons/play';
|
|
2083
|
+
// Plug2 aliases
|
|
2084
|
+
export { default as Plug2Icon } from '../icons/plug-2';
|
|
2085
|
+
// PlayOff aliases
|
|
2086
|
+
export { default as PlayOffIcon } from '../icons/play-off';
|
|
2083
2087
|
// Plug aliases
|
|
2084
2088
|
export { default as PlugIcon } from '../icons/plug';
|
|
2085
|
-
// PocketKnife aliases
|
|
2086
|
-
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2087
2089
|
// Plus aliases
|
|
2088
2090
|
export { default as PlusIcon } from '../icons/plus';
|
|
2089
|
-
//
|
|
2090
|
-
export { default as
|
|
2091
|
+
// PocketKnife aliases
|
|
2092
|
+
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2091
2093
|
// Podium aliases
|
|
2092
2094
|
export { default as PodiumIcon } from '../icons/podium';
|
|
2093
|
-
// Pointer aliases
|
|
2094
|
-
export { default as PointerIcon } from '../icons/pointer';
|
|
2095
2095
|
// PointerOff aliases
|
|
2096
2096
|
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2097
|
+
// Pointer aliases
|
|
2098
|
+
export { default as PointerIcon } from '../icons/pointer';
|
|
2097
2099
|
// Popcorn aliases
|
|
2098
2100
|
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2099
2101
|
// Popsicle aliases
|
|
2100
2102
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2101
|
-
// PoundSterling aliases
|
|
2102
|
-
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2103
2103
|
// PowerOff aliases
|
|
2104
2104
|
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2105
|
+
// PoundSterling aliases
|
|
2106
|
+
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2105
2107
|
// Power aliases
|
|
2106
2108
|
export { default as PowerIcon } from '../icons/power';
|
|
2107
2109
|
// Presentation aliases
|
|
@@ -2116,44 +2118,44 @@ export { default as PrinterIcon } from '../icons/printer';
|
|
|
2116
2118
|
export { default as ProjectorIcon } from '../icons/projector';
|
|
2117
2119
|
// Proportions aliases
|
|
2118
2120
|
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2119
|
-
// Pyramid aliases
|
|
2120
|
-
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2121
|
-
// QrCode aliases
|
|
2122
|
-
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2123
2121
|
// Puzzle aliases
|
|
2124
2122
|
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2125
|
-
//
|
|
2126
|
-
export { default as
|
|
2123
|
+
// QrCode aliases
|
|
2124
|
+
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2127
2125
|
// Quote aliases
|
|
2128
2126
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2127
|
+
// Pyramid aliases
|
|
2128
|
+
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2129
|
+
// Rabbit aliases
|
|
2130
|
+
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2129
2131
|
// Radar aliases
|
|
2130
2132
|
export { default as RadarIcon } from '../icons/radar';
|
|
2131
|
-
// Radical aliases
|
|
2132
|
-
export { default as RadicalIcon } from '../icons/radical';
|
|
2133
2133
|
// Radiation aliases
|
|
2134
2134
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2135
|
+
// Radical aliases
|
|
2136
|
+
export { default as RadicalIcon } from '../icons/radical';
|
|
2135
2137
|
// RadioOff aliases
|
|
2136
2138
|
export { default as RadioOffIcon } from '../icons/radio-off';
|
|
2137
2139
|
// RadioReceiver aliases
|
|
2138
2140
|
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2139
2141
|
// RadioTower aliases
|
|
2140
2142
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2141
|
-
// Radius aliases
|
|
2142
|
-
export { default as RadiusIcon } from '../icons/radius';
|
|
2143
2143
|
// Radio aliases
|
|
2144
2144
|
export { default as RadioIcon } from '../icons/radio';
|
|
2145
|
+
// Radius aliases
|
|
2146
|
+
export { default as RadiusIcon } from '../icons/radius';
|
|
2145
2147
|
// Rainbow aliases
|
|
2146
2148
|
export { default as RainbowIcon } from '../icons/rainbow';
|
|
2147
2149
|
// Rat aliases
|
|
2148
2150
|
export { default as RatIcon } from '../icons/rat';
|
|
2149
2151
|
// Ratio aliases
|
|
2150
2152
|
export { default as RatioIcon } from '../icons/ratio';
|
|
2151
|
-
// ReceiptEuro aliases
|
|
2152
|
-
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2153
2153
|
// ReceiptCent aliases
|
|
2154
2154
|
export { default as ReceiptCentIcon } from '../icons/receipt-cent';
|
|
2155
2155
|
// ReceiptIndianRupee aliases
|
|
2156
2156
|
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2157
|
+
// ReceiptEuro aliases
|
|
2158
|
+
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2157
2159
|
// ReceiptJapaneseYen aliases
|
|
2158
2160
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2159
2161
|
// ReceiptPoundSterling aliases
|
|
@@ -2164,10 +2166,10 @@ export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
|
2164
2166
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2165
2167
|
// ReceiptText aliases
|
|
2166
2168
|
export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
2167
|
-
// Receipt aliases
|
|
2168
|
-
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2169
2169
|
// ReceiptTurkishLira aliases
|
|
2170
2170
|
export { default as ReceiptTurkishLiraIcon } from '../icons/receipt-turkish-lira';
|
|
2171
|
+
// Receipt aliases
|
|
2172
|
+
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2171
2173
|
// RectangleCircle aliases
|
|
2172
2174
|
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2173
2175
|
// RectangleGoggles aliases
|
|
@@ -2180,14 +2182,14 @@ export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
|
2180
2182
|
export { default as RecycleIcon } from '../icons/recycle';
|
|
2181
2183
|
// Redo2 aliases
|
|
2182
2184
|
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2183
|
-
//
|
|
2184
|
-
export { default as
|
|
2185
|
+
// RedoDot aliases
|
|
2186
|
+
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2185
2187
|
// RefreshCcwDot aliases
|
|
2186
2188
|
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2189
|
+
// Redo aliases
|
|
2190
|
+
export { default as RedoIcon } from '../icons/redo';
|
|
2187
2191
|
// RefreshCcw aliases
|
|
2188
2192
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2189
|
-
// RedoDot aliases
|
|
2190
|
-
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2191
2193
|
// RefreshCwOff aliases
|
|
2192
2194
|
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2193
2195
|
// RefreshCw aliases
|
|
@@ -2208,14 +2210,14 @@ export { default as RepeatOffIcon } from '../icons/repeat-off';
|
|
|
2208
2210
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2209
2211
|
// ReplaceAll aliases
|
|
2210
2212
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2211
|
-
// Replace aliases
|
|
2212
|
-
export { default as ReplaceIcon } from '../icons/replace';
|
|
2213
2213
|
// ReplyAll aliases
|
|
2214
2214
|
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2215
|
-
//
|
|
2216
|
-
export { default as
|
|
2215
|
+
// Replace aliases
|
|
2216
|
+
export { default as ReplaceIcon } from '../icons/replace';
|
|
2217
2217
|
// Rewind aliases
|
|
2218
2218
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2219
|
+
// Reply aliases
|
|
2220
|
+
export { default as ReplyIcon } from '../icons/reply';
|
|
2219
2221
|
// Ribbon aliases
|
|
2220
2222
|
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2221
2223
|
// Road aliases
|
|
@@ -2226,14 +2228,16 @@ export { default as RocketIcon } from '../icons/rocket';
|
|
|
2226
2228
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2227
2229
|
// Rose aliases
|
|
2228
2230
|
export { default as RoseIcon } from '../icons/rose';
|
|
2229
|
-
// RotateCcwKey aliases
|
|
2230
|
-
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2231
2231
|
// RollerCoaster aliases
|
|
2232
2232
|
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2233
|
+
// RotateCcwKey aliases
|
|
2234
|
+
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2233
2235
|
// RotateCcwSquare aliases
|
|
2234
2236
|
export { default as RotateCcwSquareIcon } from '../icons/rotate-ccw-square';
|
|
2235
2237
|
// RotateCcw aliases
|
|
2236
2238
|
export { default as RotateCcwIcon } from '../icons/rotate-ccw';
|
|
2239
|
+
// RotateCwFadingClock aliases
|
|
2240
|
+
export { default as RotateCwFadingClockIcon } from '../icons/rotate-cw-fading-clock';
|
|
2237
2241
|
// RotateCwSquare aliases
|
|
2238
2242
|
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2239
2243
|
// RotateCw aliases
|
|
@@ -2252,10 +2256,10 @@ export { default as RssIcon } from '../icons/rss';
|
|
|
2252
2256
|
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2253
2257
|
// Ruler aliases
|
|
2254
2258
|
export { default as RulerIcon } from '../icons/ruler';
|
|
2255
|
-
// RussianRuble aliases
|
|
2256
|
-
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2257
2259
|
// Sailboat aliases
|
|
2258
2260
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2261
|
+
// RussianRuble aliases
|
|
2262
|
+
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2259
2263
|
// Salad aliases
|
|
2260
2264
|
export { default as SaladIcon } from '../icons/salad';
|
|
2261
2265
|
// Sandwich aliases
|
|
@@ -2266,48 +2270,50 @@ export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
|
2266
2270
|
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2267
2271
|
// SaudiRiyal aliases
|
|
2268
2272
|
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2269
|
-
// SaveCheck aliases
|
|
2270
|
-
export { default as SaveCheckIcon } from '../icons/save-check';
|
|
2271
|
-
// SaveOff aliases
|
|
2272
|
-
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2273
2273
|
// SaveAll aliases
|
|
2274
2274
|
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2275
|
+
// SaveCheck aliases
|
|
2276
|
+
export { default as SaveCheckIcon } from '../icons/save-check';
|
|
2275
2277
|
// SavePen aliases
|
|
2276
2278
|
export { default as SavePenIcon } from '../icons/save-pen';
|
|
2277
|
-
//
|
|
2278
|
-
export { default as
|
|
2279
|
-
// Scale aliases
|
|
2280
|
-
export { default as ScaleIcon } from '../icons/scale';
|
|
2279
|
+
// SaveOff aliases
|
|
2280
|
+
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2281
2281
|
// SavePlus aliases
|
|
2282
2282
|
export { default as SavePlusIcon } from '../icons/save-plus';
|
|
2283
|
+
// Save aliases
|
|
2284
|
+
export { default as SaveIcon } from '../icons/save';
|
|
2283
2285
|
// Scaling aliases
|
|
2284
2286
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2285
2287
|
// ScanBarcode aliases
|
|
2286
2288
|
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2289
|
+
// Scale aliases
|
|
2290
|
+
export { default as ScaleIcon } from '../icons/scale';
|
|
2287
2291
|
// ScanBox aliases
|
|
2288
2292
|
export { default as ScanBoxIcon } from '../icons/scan-box';
|
|
2289
2293
|
// ScanEye aliases
|
|
2290
2294
|
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2291
2295
|
// ScanFace aliases
|
|
2292
2296
|
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2297
|
+
// ScanHeart aliases
|
|
2298
|
+
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2293
2299
|
// ScanLine aliases
|
|
2294
2300
|
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2295
2301
|
// ScanQrCode aliases
|
|
2296
2302
|
export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
2297
|
-
// ScanHeart aliases
|
|
2298
|
-
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2299
2303
|
// ScanSearch aliases
|
|
2300
2304
|
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2301
|
-
//
|
|
2302
|
-
export { default as
|
|
2303
|
-
// ScanText aliases
|
|
2304
|
-
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2305
|
+
// ScanSquare aliases
|
|
2306
|
+
export { default as ScanSquareIcon } from '../icons/scan-square';
|
|
2305
2307
|
// Scan aliases
|
|
2306
2308
|
export { default as ScanIcon } from '../icons/scan';
|
|
2307
|
-
//
|
|
2308
|
-
export { default as
|
|
2309
|
+
// ScanText aliases
|
|
2310
|
+
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2311
|
+
// School aliases
|
|
2312
|
+
export { default as SchoolIcon } from '../icons/school';
|
|
2309
2313
|
// Scissors aliases
|
|
2310
2314
|
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2315
|
+
// ScissorsLineDashed aliases
|
|
2316
|
+
export { default as ScissorsLineDashedIcon } from '../icons/scissors-line-dashed';
|
|
2311
2317
|
// Scooter aliases
|
|
2312
2318
|
export { default as ScooterIcon } from '../icons/scooter';
|
|
2313
2319
|
// ScreenShareOff aliases
|
|
@@ -2316,10 +2322,10 @@ export { default as ScreenShareOffIcon } from '../icons/screen-share-off';
|
|
|
2316
2322
|
export { default as ScreenShareIcon } from '../icons/screen-share';
|
|
2317
2323
|
// ScrollText aliases
|
|
2318
2324
|
export { default as ScrollTextIcon } from '../icons/scroll-text';
|
|
2319
|
-
// SearchAlert aliases
|
|
2320
|
-
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2321
2325
|
// Scroll aliases
|
|
2322
2326
|
export { default as ScrollIcon } from '../icons/scroll';
|
|
2327
|
+
// SearchAlert aliases
|
|
2328
|
+
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2323
2329
|
// SearchCheck aliases
|
|
2324
2330
|
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2325
2331
|
// SearchCode aliases
|
|
@@ -2354,48 +2360,48 @@ export { default as Settings2Icon } from '../icons/settings-2';
|
|
|
2354
2360
|
export { default as ServerIcon } from '../icons/server';
|
|
2355
2361
|
// Settings aliases
|
|
2356
2362
|
export { default as SettingsIcon } from '../icons/settings';
|
|
2357
|
-
// Share2 aliases
|
|
2358
|
-
export { default as Share2Icon } from '../icons/share-2';
|
|
2359
2363
|
// Shapes aliases
|
|
2360
2364
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2361
|
-
//
|
|
2362
|
-
export { default as
|
|
2365
|
+
// Share2 aliases
|
|
2366
|
+
export { default as Share2Icon } from '../icons/share-2';
|
|
2363
2367
|
// Sheet aliases
|
|
2364
2368
|
export { default as SheetIcon } from '../icons/sheet';
|
|
2369
|
+
// Share aliases
|
|
2370
|
+
export { default as ShareIcon } from '../icons/share';
|
|
2365
2371
|
// Shell aliases
|
|
2366
2372
|
export { default as ShellIcon } from '../icons/shell';
|
|
2367
|
-
// ShieldAlert aliases
|
|
2368
|
-
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2369
2373
|
// ShelvingUnit aliases
|
|
2370
2374
|
export { default as ShelvingUnitIcon } from '../icons/shelving-unit';
|
|
2375
|
+
// ShieldAlert aliases
|
|
2376
|
+
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2371
2377
|
// ShieldBan aliases
|
|
2372
2378
|
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2373
2379
|
// ShieldCheck aliases
|
|
2374
2380
|
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2375
2381
|
// ShieldCogCorner aliases
|
|
2376
2382
|
export { default as ShieldCogCornerIcon } from '../icons/shield-cog-corner';
|
|
2377
|
-
// ShieldEllipsis aliases
|
|
2378
|
-
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2379
2383
|
// ShieldCog aliases
|
|
2380
2384
|
export { default as ShieldCogIcon } from '../icons/shield-cog';
|
|
2385
|
+
// ShieldEllipsis aliases
|
|
2386
|
+
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2381
2387
|
// ShieldHalf aliases
|
|
2382
2388
|
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2383
2389
|
// ShieldKeyhole aliases
|
|
2384
2390
|
export { default as ShieldKeyholeIcon } from '../icons/shield-keyhole';
|
|
2385
|
-
// ShieldOff aliases
|
|
2386
|
-
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2387
2391
|
// ShieldMinus aliases
|
|
2388
2392
|
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2393
|
+
// ShieldOff aliases
|
|
2394
|
+
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2389
2395
|
// ShieldPlus aliases
|
|
2390
2396
|
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2391
2397
|
// ShieldUser aliases
|
|
2392
2398
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2399
|
+
// Shield aliases
|
|
2400
|
+
export { default as ShieldIcon } from '../icons/shield';
|
|
2393
2401
|
// ShipWheel aliases
|
|
2394
2402
|
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2395
2403
|
// Ship aliases
|
|
2396
2404
|
export { default as ShipIcon } from '../icons/ship';
|
|
2397
|
-
// Shield aliases
|
|
2398
|
-
export { default as ShieldIcon } from '../icons/shield';
|
|
2399
2405
|
// Shirt aliases
|
|
2400
2406
|
export { default as ShirtIcon } from '../icons/shirt';
|
|
2401
2407
|
// ShoppingBag aliases
|
|
@@ -2408,20 +2414,20 @@ export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
|
2408
2414
|
export { default as ShovelIcon } from '../icons/shovel';
|
|
2409
2415
|
// ShowerHead aliases
|
|
2410
2416
|
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2411
|
-
// Shrimp aliases
|
|
2412
|
-
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2413
2417
|
// Shredder aliases
|
|
2414
2418
|
export { default as ShredderIcon } from '../icons/shredder';
|
|
2419
|
+
// Shrimp aliases
|
|
2420
|
+
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2415
2421
|
// Shrink aliases
|
|
2416
2422
|
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2417
2423
|
// Shrub aliases
|
|
2418
2424
|
export { default as ShrubIcon } from '../icons/shrub';
|
|
2419
2425
|
// Shuffle aliases
|
|
2420
2426
|
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2421
|
-
// SignalHigh aliases
|
|
2422
|
-
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2423
2427
|
// Sigma aliases
|
|
2424
2428
|
export { default as SigmaIcon } from '../icons/sigma';
|
|
2429
|
+
// SignalHigh aliases
|
|
2430
|
+
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2425
2431
|
// SignalLow aliases
|
|
2426
2432
|
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2427
2433
|
// SignalMedium aliases
|
|
@@ -2436,32 +2442,32 @@ export { default as SignatureIcon } from '../icons/signature';
|
|
|
2436
2442
|
export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
2437
2443
|
// Signpost aliases
|
|
2438
2444
|
export { default as SignpostIcon } from '../icons/signpost';
|
|
2439
|
-
// SkipBack aliases
|
|
2440
|
-
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2441
2445
|
// Siren aliases
|
|
2442
2446
|
export { default as SirenIcon } from '../icons/siren';
|
|
2443
|
-
//
|
|
2444
|
-
export { default as
|
|
2447
|
+
// SkipBack aliases
|
|
2448
|
+
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2445
2449
|
// Skull aliases
|
|
2446
2450
|
export { default as SkullIcon } from '../icons/skull';
|
|
2447
|
-
//
|
|
2448
|
-
export { default as
|
|
2451
|
+
// SkipForward aliases
|
|
2452
|
+
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2449
2453
|
// Slash aliases
|
|
2450
2454
|
export { default as SlashIcon } from '../icons/slash';
|
|
2455
|
+
// Slice aliases
|
|
2456
|
+
export { default as SliceIcon } from '../icons/slice';
|
|
2451
2457
|
// SlidersHorizontal aliases
|
|
2452
2458
|
export { default as SlidersHorizontalIcon } from '../icons/sliders-horizontal';
|
|
2453
2459
|
// SmartphoneCharging aliases
|
|
2454
2460
|
export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging';
|
|
2455
|
-
// Smartphone aliases
|
|
2456
|
-
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2457
2461
|
// SmartphoneNfc aliases
|
|
2458
2462
|
export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
2463
|
+
// Smartphone aliases
|
|
2464
|
+
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2459
2465
|
// SmilePlus aliases
|
|
2460
2466
|
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2461
|
-
// Smile aliases
|
|
2462
|
-
export { default as SmileIcon } from '../icons/smile';
|
|
2463
2467
|
// Snail aliases
|
|
2464
2468
|
export { default as SnailIcon } from '../icons/snail';
|
|
2469
|
+
// Smile aliases
|
|
2470
|
+
export { default as SmileIcon } from '../icons/smile';
|
|
2465
2471
|
// Snowflake aliases
|
|
2466
2472
|
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2467
2473
|
// Sofa aliases
|
|
@@ -2480,44 +2486,46 @@ export { default as SpadeIcon } from '../icons/spade';
|
|
|
2480
2486
|
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2481
2487
|
// Speaker aliases
|
|
2482
2488
|
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2483
|
-
// Speech aliases
|
|
2484
|
-
export { default as SpeechIcon } from '../icons/speech';
|
|
2485
2489
|
// SpellCheck2 aliases
|
|
2486
2490
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2487
|
-
//
|
|
2488
|
-
export { default as
|
|
2491
|
+
// Speech aliases
|
|
2492
|
+
export { default as SpeechIcon } from '../icons/speech';
|
|
2489
2493
|
// SpellCheck aliases
|
|
2490
2494
|
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2491
|
-
//
|
|
2492
|
-
export { default as
|
|
2495
|
+
// SplinePointer aliases
|
|
2496
|
+
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2493
2497
|
// Spline aliases
|
|
2494
2498
|
export { default as SplineIcon } from '../icons/spline';
|
|
2499
|
+
// Split aliases
|
|
2500
|
+
export { default as SplitIcon } from '../icons/split';
|
|
2495
2501
|
// Spool aliases
|
|
2496
2502
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2497
2503
|
// SportShoe aliases
|
|
2498
2504
|
export { default as SportShoeIcon } from '../icons/sport-shoe';
|
|
2499
2505
|
// Spotlight aliases
|
|
2500
2506
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2507
|
+
// Sprout aliases
|
|
2508
|
+
export { default as SproutIcon } from '../icons/sprout';
|
|
2501
2509
|
// SprayCan aliases
|
|
2502
2510
|
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2503
2511
|
// SquareArrowRightEnter aliases
|
|
2504
2512
|
export { default as SquareArrowRightEnterIcon } from '../icons/square-arrow-right-enter';
|
|
2505
|
-
// Sprout aliases
|
|
2506
|
-
export { default as SproutIcon } from '../icons/sprout';
|
|
2507
2513
|
// SquareArrowRightExit aliases
|
|
2508
2514
|
export { default as SquareArrowRightExitIcon } from '../icons/square-arrow-right-exit';
|
|
2509
|
-
// SquareDashedBottom aliases
|
|
2510
|
-
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2511
2515
|
// SquareDashedBottomCode aliases
|
|
2512
2516
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2517
|
+
// SquareDashedBottom aliases
|
|
2518
|
+
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2513
2519
|
// SquareDashedTopSolid aliases
|
|
2514
2520
|
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2521
|
+
// SquareOff aliases
|
|
2522
|
+
export { default as SquareOffIcon } from '../icons/square-off';
|
|
2515
2523
|
// SquarePause aliases
|
|
2516
2524
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2517
|
-
// SquareRadical aliases
|
|
2518
|
-
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2519
2525
|
// SquareRoundCorner aliases
|
|
2520
2526
|
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2527
|
+
// SquareRadical aliases
|
|
2528
|
+
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2521
2529
|
// SquareSquare aliases
|
|
2522
2530
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2523
2531
|
// SquareStack aliases
|
|
@@ -2546,54 +2554,54 @@ export { default as SquirrelIcon } from '../icons/squirrel';
|
|
|
2546
2554
|
export { default as StampIcon } from '../icons/stamp';
|
|
2547
2555
|
// StarCheck aliases
|
|
2548
2556
|
export { default as StarCheckIcon } from '../icons/star-check';
|
|
2557
|
+
// StarHalf aliases
|
|
2558
|
+
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2549
2559
|
// StarMinus aliases
|
|
2550
2560
|
export { default as StarMinusIcon } from '../icons/star-minus';
|
|
2551
2561
|
// StarOff aliases
|
|
2552
2562
|
export { default as StarOffIcon } from '../icons/star-off';
|
|
2553
|
-
// StarHalf aliases
|
|
2554
|
-
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2555
|
-
// StarPlus aliases
|
|
2556
|
-
export { default as StarPlusIcon } from '../icons/star-plus';
|
|
2557
2563
|
// StarX aliases
|
|
2558
2564
|
export { default as StarXIcon } from '../icons/star-x';
|
|
2559
2565
|
// Star aliases
|
|
2560
2566
|
export { default as StarIcon } from '../icons/star';
|
|
2567
|
+
// StarPlus aliases
|
|
2568
|
+
export { default as StarPlusIcon } from '../icons/star-plus';
|
|
2561
2569
|
// StepForward aliases
|
|
2562
2570
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2563
|
-
// StepBack aliases
|
|
2564
|
-
export { default as StepBackIcon } from '../icons/step-back';
|
|
2565
2571
|
// Stethoscope aliases
|
|
2566
2572
|
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2573
|
+
// StepBack aliases
|
|
2574
|
+
export { default as StepBackIcon } from '../icons/step-back';
|
|
2567
2575
|
// Sticker aliases
|
|
2568
2576
|
export { default as StickerIcon } from '../icons/sticker';
|
|
2569
2577
|
// StickyNoteCheck aliases
|
|
2570
2578
|
export { default as StickyNoteCheckIcon } from '../icons/sticky-note-check';
|
|
2571
|
-
// StickyNoteOff aliases
|
|
2572
|
-
export { default as StickyNoteOffIcon } from '../icons/sticky-note-off';
|
|
2573
2579
|
// StickyNoteMinus aliases
|
|
2574
2580
|
export { default as StickyNoteMinusIcon } from '../icons/sticky-note-minus';
|
|
2581
|
+
// StickyNoteOff aliases
|
|
2582
|
+
export { default as StickyNoteOffIcon } from '../icons/sticky-note-off';
|
|
2575
2583
|
// StickyNotePlus aliases
|
|
2576
2584
|
export { default as StickyNotePlusIcon } from '../icons/sticky-note-plus';
|
|
2577
|
-
// StickyNoteX aliases
|
|
2578
|
-
export { default as StickyNoteXIcon } from '../icons/sticky-note-x';
|
|
2579
|
-
// StickyNote aliases
|
|
2580
|
-
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2581
2585
|
// StickyNotes aliases
|
|
2582
2586
|
export { default as StickyNotesIcon } from '../icons/sticky-notes';
|
|
2587
|
+
// StickyNote aliases
|
|
2588
|
+
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2589
|
+
// StickyNoteX aliases
|
|
2590
|
+
export { default as StickyNoteXIcon } from '../icons/sticky-note-x';
|
|
2583
2591
|
// Stone aliases
|
|
2584
2592
|
export { default as StoneIcon } from '../icons/stone';
|
|
2585
2593
|
// Store aliases
|
|
2586
2594
|
export { default as StoreIcon } from '../icons/store';
|
|
2587
2595
|
// StretchHorizontal aliases
|
|
2588
2596
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2597
|
+
// Strikethrough aliases
|
|
2598
|
+
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2589
2599
|
// StretchVertical aliases
|
|
2590
2600
|
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2591
|
-
// Summary aliases
|
|
2592
|
-
export { default as SummaryIcon } from '../icons/summary';
|
|
2593
2601
|
// Subscript aliases
|
|
2594
2602
|
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2595
|
-
//
|
|
2596
|
-
export { default as
|
|
2603
|
+
// Summary aliases
|
|
2604
|
+
export { default as SummaryIcon } from '../icons/summary';
|
|
2597
2605
|
// SunDim aliases
|
|
2598
2606
|
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2599
2607
|
// SunMedium aliases
|
|
@@ -2610,24 +2618,24 @@ export { default as SunriseIcon } from '../icons/sunrise';
|
|
|
2610
2618
|
export { default as SunsetIcon } from '../icons/sunset';
|
|
2611
2619
|
// Superscript aliases
|
|
2612
2620
|
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2613
|
-
// SwissFranc aliases
|
|
2614
|
-
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2615
2621
|
// SwatchBook aliases
|
|
2616
2622
|
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2623
|
+
// SwissFranc aliases
|
|
2624
|
+
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2617
2625
|
// SwitchCamera aliases
|
|
2618
2626
|
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2619
2627
|
// Sword aliases
|
|
2620
2628
|
export { default as SwordIcon } from '../icons/sword';
|
|
2621
2629
|
// Swords aliases
|
|
2622
2630
|
export { default as SwordsIcon } from '../icons/swords';
|
|
2623
|
-
// Table2 aliases
|
|
2624
|
-
export { default as Table2Icon } from '../icons/table-2';
|
|
2625
2631
|
// Syringe aliases
|
|
2626
2632
|
export { default as SyringeIcon } from '../icons/syringe';
|
|
2627
|
-
//
|
|
2628
|
-
export { default as
|
|
2633
|
+
// Table2 aliases
|
|
2634
|
+
export { default as Table2Icon } from '../icons/table-2';
|
|
2629
2635
|
// TableCellsSplit aliases
|
|
2630
2636
|
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2637
|
+
// TableCellsMerge aliases
|
|
2638
|
+
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2631
2639
|
// TableColumnsSplit aliases
|
|
2632
2640
|
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2633
2641
|
// TableOfContents aliases
|
|
@@ -2636,12 +2644,12 @@ export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
|
2636
2644
|
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2637
2645
|
// TableRowsSplit aliases
|
|
2638
2646
|
export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
2639
|
-
// TabletSmartphone aliases
|
|
2640
|
-
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2641
2647
|
// Table aliases
|
|
2642
2648
|
export { default as TableIcon } from '../icons/table';
|
|
2643
2649
|
// Tablet aliases
|
|
2644
2650
|
export { default as TabletIcon } from '../icons/tablet';
|
|
2651
|
+
// TabletSmartphone aliases
|
|
2652
|
+
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2645
2653
|
// Tablets aliases
|
|
2646
2654
|
export { default as TabletsIcon } from '../icons/tablets';
|
|
2647
2655
|
// TagPlus aliases
|
|
@@ -2650,32 +2658,32 @@ export { default as TagPlusIcon } from '../icons/tag-plus';
|
|
|
2650
2658
|
export { default as TagXIcon } from '../icons/tag-x';
|
|
2651
2659
|
// Tag aliases
|
|
2652
2660
|
export { default as TagIcon } from '../icons/tag';
|
|
2653
|
-
// Tally1 aliases
|
|
2654
|
-
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2655
2661
|
// Tags aliases
|
|
2656
2662
|
export { default as TagsIcon } from '../icons/tags';
|
|
2663
|
+
// Tally1 aliases
|
|
2664
|
+
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2657
2665
|
// Tally2 aliases
|
|
2658
2666
|
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2659
2667
|
// Tally3 aliases
|
|
2660
2668
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2661
|
-
// Tally4 aliases
|
|
2662
|
-
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2663
2669
|
// Tally5 aliases
|
|
2664
2670
|
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2671
|
+
// Tally4 aliases
|
|
2672
|
+
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2665
2673
|
// Tangent aliases
|
|
2666
2674
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2667
2675
|
// Target aliases
|
|
2668
2676
|
export { default as TargetIcon } from '../icons/target';
|
|
2669
|
-
// Tent aliases
|
|
2670
|
-
export { default as TentIcon } from '../icons/tent';
|
|
2671
2677
|
// Telescope aliases
|
|
2672
2678
|
export { default as TelescopeIcon } from '../icons/telescope';
|
|
2673
2679
|
// TentTree aliases
|
|
2674
2680
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2675
|
-
// TestTube aliases
|
|
2676
|
-
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2677
2681
|
// Terminal aliases
|
|
2678
2682
|
export { default as TerminalIcon } from '../icons/terminal';
|
|
2683
|
+
// Tent aliases
|
|
2684
|
+
export { default as TentIcon } from '../icons/tent';
|
|
2685
|
+
// TestTube aliases
|
|
2686
|
+
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2679
2687
|
// TestTubes aliases
|
|
2680
2688
|
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2681
2689
|
// TextCursorInput aliases
|
|
@@ -2688,44 +2696,44 @@ export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
|
2688
2696
|
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2689
2697
|
// ThermometerSnowflake aliases
|
|
2690
2698
|
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2691
|
-
// Thermometer aliases
|
|
2692
|
-
export { default as ThermometerIcon } from '../icons/thermometer';
|
|
2693
2699
|
// Theater aliases
|
|
2694
2700
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2695
2701
|
// ThermometerSun aliases
|
|
2696
2702
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2697
|
-
//
|
|
2698
|
-
export { default as
|
|
2703
|
+
// Thermometer aliases
|
|
2704
|
+
export { default as ThermometerIcon } from '../icons/thermometer';
|
|
2699
2705
|
// ThumbsUp aliases
|
|
2700
2706
|
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2707
|
+
// ThumbsDown aliases
|
|
2708
|
+
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2701
2709
|
// TicketCheck aliases
|
|
2702
2710
|
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2703
2711
|
// TicketMinus aliases
|
|
2704
2712
|
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2705
2713
|
// TicketPercent aliases
|
|
2706
2714
|
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2707
|
-
// TicketPlus aliases
|
|
2708
|
-
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2709
2715
|
// TicketSlash aliases
|
|
2710
2716
|
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2717
|
+
// TicketPlus aliases
|
|
2718
|
+
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2711
2719
|
// TicketX aliases
|
|
2712
2720
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2713
|
-
// TicketsPlane aliases
|
|
2714
|
-
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2715
|
-
// Tickets aliases
|
|
2716
|
-
export { default as TicketsIcon } from '../icons/tickets';
|
|
2717
2721
|
// Ticket aliases
|
|
2718
2722
|
export { default as TicketIcon } from '../icons/ticket';
|
|
2723
|
+
// Tickets aliases
|
|
2724
|
+
export { default as TicketsIcon } from '../icons/tickets';
|
|
2725
|
+
// TicketsPlane aliases
|
|
2726
|
+
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2719
2727
|
// Timeline aliases
|
|
2720
2728
|
export { default as TimelineIcon } from '../icons/timeline';
|
|
2721
|
-
// TimerReset aliases
|
|
2722
|
-
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2723
|
-
// ToggleLeft aliases
|
|
2724
|
-
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2725
2729
|
// TimerOff aliases
|
|
2726
2730
|
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2731
|
+
// TimerReset aliases
|
|
2732
|
+
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2727
2733
|
// Timer aliases
|
|
2728
2734
|
export { default as TimerIcon } from '../icons/timer';
|
|
2735
|
+
// ToggleLeft aliases
|
|
2736
|
+
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2729
2737
|
// ToggleRight aliases
|
|
2730
2738
|
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2731
2739
|
// Toilet aliases
|
|
@@ -2746,14 +2754,14 @@ export { default as TouchpadIcon } from '../icons/touchpad';
|
|
|
2746
2754
|
export { default as TowelRackIcon } from '../icons/towel-rack';
|
|
2747
2755
|
// TowerControl aliases
|
|
2748
2756
|
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2749
|
-
// Tractor aliases
|
|
2750
|
-
export { default as TractorIcon } from '../icons/tractor';
|
|
2751
2757
|
// ToyBrick aliases
|
|
2752
2758
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2753
|
-
// TrainFrontTunnel aliases
|
|
2754
|
-
export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
2755
2759
|
// TrafficCone aliases
|
|
2756
2760
|
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2761
|
+
// Tractor aliases
|
|
2762
|
+
export { default as TractorIcon } from '../icons/tractor';
|
|
2763
|
+
// TrainFrontTunnel aliases
|
|
2764
|
+
export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
2757
2765
|
// TrainFront aliases
|
|
2758
2766
|
export { default as TrainFrontIcon } from '../icons/train-front';
|
|
2759
2767
|
// TrainTrack aliases
|
|
@@ -2770,16 +2778,16 @@ export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
|
2770
2778
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2771
2779
|
// Trees aliases
|
|
2772
2780
|
export { default as TreesIcon } from '../icons/trees';
|
|
2773
|
-
// TrendingDown aliases
|
|
2774
|
-
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2775
2781
|
// TrendingUpDown aliases
|
|
2776
2782
|
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2783
|
+
// TrendingDown aliases
|
|
2784
|
+
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2777
2785
|
// TrendingUp aliases
|
|
2778
2786
|
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2779
|
-
// TriangleDashed aliases
|
|
2780
|
-
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2781
2787
|
// TriangleRight aliases
|
|
2782
2788
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2789
|
+
// TriangleDashed aliases
|
|
2790
|
+
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2783
2791
|
// Trophy aliases
|
|
2784
2792
|
export { default as TrophyIcon } from '../icons/trophy';
|
|
2785
2793
|
// Triangle aliases
|
|
@@ -2788,12 +2796,12 @@ export { default as TriangleIcon } from '../icons/triangle';
|
|
|
2788
2796
|
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2789
2797
|
// Truck aliases
|
|
2790
2798
|
export { default as TruckIcon } from '../icons/truck';
|
|
2799
|
+
// TurkishLira aliases
|
|
2800
|
+
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2791
2801
|
// Turntable aliases
|
|
2792
2802
|
export { default as TurntableIcon } from '../icons/turntable';
|
|
2793
2803
|
// Turtle aliases
|
|
2794
2804
|
export { default as TurtleIcon } from '../icons/turtle';
|
|
2795
|
-
// TurkishLira aliases
|
|
2796
|
-
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2797
2805
|
// TvMinimalPlay aliases
|
|
2798
2806
|
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2799
2807
|
// Tv aliases
|
|
@@ -2816,18 +2824,18 @@ export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
|
2816
2824
|
export { default as UndoIcon } from '../icons/undo';
|
|
2817
2825
|
// UnfoldHorizontal aliases
|
|
2818
2826
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2819
|
-
// UnfoldVertical aliases
|
|
2820
|
-
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2821
2827
|
// Ungroup aliases
|
|
2822
2828
|
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2829
|
+
// UnfoldVertical aliases
|
|
2830
|
+
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2823
2831
|
// Unlink2 aliases
|
|
2824
2832
|
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2833
|
+
// Unlink aliases
|
|
2834
|
+
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2825
2835
|
// Unplug aliases
|
|
2826
2836
|
export { default as UnplugIcon } from '../icons/unplug';
|
|
2827
2837
|
// Upload aliases
|
|
2828
2838
|
export { default as UploadIcon } from '../icons/upload';
|
|
2829
|
-
// Unlink aliases
|
|
2830
|
-
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2831
2839
|
// Usb aliases
|
|
2832
2840
|
export { default as UsbIcon } from '../icons/usb';
|
|
2833
2841
|
// UserCheck aliases
|
|
@@ -2848,12 +2856,14 @@ export { default as UserPlusIcon } from '../icons/user-plus';
|
|
|
2848
2856
|
export { default as UserRoundArrowLeftIcon } from '../icons/user-round-arrow-left';
|
|
2849
2857
|
// UserRoundKey aliases
|
|
2850
2858
|
export { default as UserRoundKeyIcon } from '../icons/user-round-key';
|
|
2851
|
-
// UserRoundPen aliases
|
|
2852
|
-
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2853
2859
|
// UserRoundSearch aliases
|
|
2854
2860
|
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2861
|
+
// UserRoundPen aliases
|
|
2862
|
+
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2855
2863
|
// UserSearch aliases
|
|
2856
2864
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2865
|
+
// UserShield aliases
|
|
2866
|
+
export { default as UserShieldIcon } from '../icons/user-shield';
|
|
2857
2867
|
// UserStar aliases
|
|
2858
2868
|
export { default as UserStarIcon } from '../icons/user-star';
|
|
2859
2869
|
// UserX aliases
|
|
@@ -2862,10 +2872,10 @@ export { default as UserXIcon } from '../icons/user-x';
|
|
|
2862
2872
|
export { default as UserIcon } from '../icons/user';
|
|
2863
2873
|
// Users aliases
|
|
2864
2874
|
export { default as UsersIcon } from '../icons/users';
|
|
2865
|
-
// UtilityPole aliases
|
|
2866
|
-
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2867
2875
|
// Van aliases
|
|
2868
2876
|
export { default as VanIcon } from '../icons/van';
|
|
2877
|
+
// UtilityPole aliases
|
|
2878
|
+
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2869
2879
|
// Variable aliases
|
|
2870
2880
|
export { default as VariableIcon } from '../icons/variable';
|
|
2871
2881
|
// Vault aliases
|
|
@@ -2874,10 +2884,10 @@ export { default as VaultIcon } from '../icons/vault';
|
|
|
2874
2884
|
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2875
2885
|
// Vegan aliases
|
|
2876
2886
|
export { default as VeganIcon } from '../icons/vegan';
|
|
2877
|
-
// VenetianMask aliases
|
|
2878
|
-
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2879
2887
|
// VenusAndMars aliases
|
|
2880
2888
|
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2889
|
+
// VenetianMask aliases
|
|
2890
|
+
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2881
2891
|
// Venus aliases
|
|
2882
2892
|
export { default as VenusIcon } from '../icons/venus';
|
|
2883
2893
|
// VibrateOff aliases
|
|
@@ -2902,10 +2912,10 @@ export { default as Volume1Icon } from '../icons/volume-1';
|
|
|
2902
2912
|
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2903
2913
|
// VolumeOff aliases
|
|
2904
2914
|
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2905
|
-
// VolumeX aliases
|
|
2906
|
-
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2907
2915
|
// Volume aliases
|
|
2908
2916
|
export { default as VolumeIcon } from '../icons/volume';
|
|
2917
|
+
// VolumeX aliases
|
|
2918
|
+
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2909
2919
|
// Vote aliases
|
|
2910
2920
|
export { default as VoteIcon } from '../icons/vote';
|
|
2911
2921
|
// WalletCards aliases
|
|
@@ -2922,22 +2932,22 @@ export { default as WarehouseIcon } from '../icons/warehouse';
|
|
|
2922
2932
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2923
2933
|
// Watch aliases
|
|
2924
2934
|
export { default as WatchIcon } from '../icons/watch';
|
|
2935
|
+
// WavesLadder aliases
|
|
2936
|
+
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2925
2937
|
// WavesArrowDown aliases
|
|
2926
2938
|
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2927
2939
|
// WavesArrowUp aliases
|
|
2928
2940
|
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2929
|
-
// WavesLadder aliases
|
|
2930
|
-
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2931
|
-
// WavesVertical aliases
|
|
2932
|
-
export { default as WavesVerticalIcon } from '../icons/waves-vertical';
|
|
2933
2941
|
// Waypoints aliases
|
|
2934
2942
|
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2943
|
+
// WavesVertical aliases
|
|
2944
|
+
export { default as WavesVerticalIcon } from '../icons/waves-vertical';
|
|
2935
2945
|
// WebcamOff aliases
|
|
2936
2946
|
export { default as WebcamOffIcon } from '../icons/webcam-off';
|
|
2937
|
-
// WebhookOff aliases
|
|
2938
|
-
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2939
2947
|
// Webcam aliases
|
|
2940
2948
|
export { default as WebcamIcon } from '../icons/webcam';
|
|
2949
|
+
// WebhookOff aliases
|
|
2950
|
+
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2941
2951
|
// Webhook aliases
|
|
2942
2952
|
export { default as WebhookIcon } from '../icons/webhook';
|
|
2943
2953
|
// WeightTilde aliases
|
|
@@ -2954,12 +2964,12 @@ export { default as WholeWordIcon } from '../icons/whole-word';
|
|
|
2954
2964
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2955
2965
|
// WifiHigh aliases
|
|
2956
2966
|
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2967
|
+
// WifiLow aliases
|
|
2968
|
+
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2957
2969
|
// WifiOff aliases
|
|
2958
2970
|
export { default as WifiOffIcon } from '../icons/wifi-off';
|
|
2959
2971
|
// WifiPen aliases
|
|
2960
2972
|
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2961
|
-
// WifiLow aliases
|
|
2962
|
-
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2963
2973
|
// WifiSync aliases
|
|
2964
2974
|
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2965
2975
|
// WifiZero aliases
|
|
@@ -2970,50 +2980,50 @@ export { default as WifiIcon } from '../icons/wifi';
|
|
|
2970
2980
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2971
2981
|
// Wind aliases
|
|
2972
2982
|
export { default as WindIcon } from '../icons/wind';
|
|
2983
|
+
// Wine aliases
|
|
2984
|
+
export { default as WineIcon } from '../icons/wine';
|
|
2973
2985
|
// WineOff aliases
|
|
2974
2986
|
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2975
2987
|
// Workflow aliases
|
|
2976
2988
|
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2977
|
-
// Wine aliases
|
|
2978
|
-
export { default as WineIcon } from '../icons/wine';
|
|
2979
2989
|
// Worm aliases
|
|
2980
2990
|
export { default as WormIcon } from '../icons/worm';
|
|
2981
|
-
// Wrench aliases
|
|
2982
|
-
export { default as WrenchIcon } from '../icons/wrench';
|
|
2983
2991
|
// WrenchOff aliases
|
|
2984
2992
|
export { default as WrenchOffIcon } from '../icons/wrench-off';
|
|
2993
|
+
// Wrench aliases
|
|
2994
|
+
export { default as WrenchIcon } from '../icons/wrench';
|
|
2985
2995
|
// XLineTop aliases
|
|
2986
2996
|
export { default as XLineTopIcon } from '../icons/x-line-top';
|
|
2987
|
-
// X aliases
|
|
2988
|
-
export { default as XIcon } from '../icons/x';
|
|
2989
2997
|
// ZapOff aliases
|
|
2990
2998
|
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2999
|
+
// X aliases
|
|
3000
|
+
export { default as XIcon } from '../icons/x';
|
|
2991
3001
|
// Zap aliases
|
|
2992
3002
|
export { default as ZapIcon } from '../icons/zap';
|
|
2993
|
-
// ZodiacAquarius aliases
|
|
2994
|
-
export { default as ZodiacAquariusIcon } from '../icons/zodiac-aquarius';
|
|
2995
3003
|
// ZodiacAries aliases
|
|
2996
3004
|
export { default as ZodiacAriesIcon } from '../icons/zodiac-aries';
|
|
3005
|
+
// ZodiacAquarius aliases
|
|
3006
|
+
export { default as ZodiacAquariusIcon } from '../icons/zodiac-aquarius';
|
|
2997
3007
|
// ZodiacCancer aliases
|
|
2998
3008
|
export { default as ZodiacCancerIcon } from '../icons/zodiac-cancer';
|
|
2999
3009
|
// ZodiacCapricorn aliases
|
|
3000
3010
|
export { default as ZodiacCapricornIcon } from '../icons/zodiac-capricorn';
|
|
3001
|
-
// ZodiacLeo aliases
|
|
3002
|
-
export { default as ZodiacLeoIcon } from '../icons/zodiac-leo';
|
|
3003
3011
|
// ZodiacGemini aliases
|
|
3004
3012
|
export { default as ZodiacGeminiIcon } from '../icons/zodiac-gemini';
|
|
3013
|
+
// ZodiacLeo aliases
|
|
3014
|
+
export { default as ZodiacLeoIcon } from '../icons/zodiac-leo';
|
|
3005
3015
|
// ZodiacLibra aliases
|
|
3006
3016
|
export { default as ZodiacLibraIcon } from '../icons/zodiac-libra';
|
|
3007
3017
|
// ZodiacOphiuchus aliases
|
|
3008
3018
|
export { default as ZodiacOphiuchusIcon } from '../icons/zodiac-ophiuchus';
|
|
3009
3019
|
// ZodiacPisces aliases
|
|
3010
3020
|
export { default as ZodiacPiscesIcon } from '../icons/zodiac-pisces';
|
|
3011
|
-
// ZodiacSagittarius aliases
|
|
3012
|
-
export { default as ZodiacSagittariusIcon } from '../icons/zodiac-sagittarius';
|
|
3013
3021
|
// ZodiacScorpio aliases
|
|
3014
3022
|
export { default as ZodiacScorpioIcon } from '../icons/zodiac-scorpio';
|
|
3015
3023
|
// ZodiacTaurus aliases
|
|
3016
3024
|
export { default as ZodiacTaurusIcon } from '../icons/zodiac-taurus';
|
|
3025
|
+
// ZodiacSagittarius aliases
|
|
3026
|
+
export { default as ZodiacSagittariusIcon } from '../icons/zodiac-sagittarius';
|
|
3017
3027
|
// ZodiacVirgo aliases
|
|
3018
3028
|
export { default as ZodiacVirgoIcon } from '../icons/zodiac-virgo';
|
|
3019
3029
|
// ZoomIn aliases
|
|
@@ -3034,18 +3044,18 @@ export {
|
|
|
3034
3044
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockCheck} instead. */
|
|
3035
3045
|
default as AlarmCheckIcon
|
|
3036
3046
|
} from '../icons/alarm-clock-check';
|
|
3037
|
-
// AlarmClockMinus aliases
|
|
3038
|
-
export { default as AlarmClockMinusIcon } from '../icons/alarm-clock-minus';
|
|
3039
|
-
export {
|
|
3040
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. */
|
|
3041
|
-
default as AlarmMinusIcon
|
|
3042
|
-
} from '../icons/alarm-clock-minus';
|
|
3043
3047
|
// AlarmClockPlus aliases
|
|
3044
3048
|
export { default as AlarmClockPlusIcon } from '../icons/alarm-clock-plus';
|
|
3045
3049
|
export {
|
|
3046
3050
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. */
|
|
3047
3051
|
default as AlarmPlusIcon
|
|
3048
3052
|
} from '../icons/alarm-clock-plus';
|
|
3053
|
+
// AlarmClockMinus aliases
|
|
3054
|
+
export { default as AlarmClockMinusIcon } from '../icons/alarm-clock-minus';
|
|
3055
|
+
export {
|
|
3056
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. */
|
|
3057
|
+
default as AlarmMinusIcon
|
|
3058
|
+
} from '../icons/alarm-clock-minus';
|
|
3049
3059
|
// ArrowDownAZ aliases
|
|
3050
3060
|
export { default as ArrowDownAZIcon } from '../icons/arrow-down-a-z';
|
|
3051
3061
|
export {
|
|
@@ -3070,54 +3080,54 @@ export {
|
|
|
3070
3080
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. */
|
|
3071
3081
|
default as ArrowUpAzIcon
|
|
3072
3082
|
} from '../icons/arrow-up-a-z';
|
|
3083
|
+
// Axis3d aliases
|
|
3084
|
+
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
3085
|
+
export {
|
|
3086
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. */
|
|
3087
|
+
default as Axis3DIcon
|
|
3088
|
+
} from '../icons/axis-3d';
|
|
3073
3089
|
// ArrowUpZA aliases
|
|
3074
3090
|
export { default as ArrowUpZAIcon } from '../icons/arrow-up-z-a';
|
|
3075
3091
|
export {
|
|
3076
3092
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. */
|
|
3077
3093
|
default as ArrowUpZaIcon
|
|
3078
3094
|
} from '../icons/arrow-up-z-a';
|
|
3095
|
+
// BadgeCheck aliases
|
|
3096
|
+
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
3097
|
+
export {
|
|
3098
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
3099
|
+
default as VerifiedIcon
|
|
3100
|
+
} from '../icons/badge-check';
|
|
3079
3101
|
// ArrowUpNarrowWide aliases
|
|
3080
3102
|
export { default as ArrowUpNarrowWideIcon } from '../icons/arrow-up-narrow-wide';
|
|
3081
3103
|
export {
|
|
3082
3104
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
3083
3105
|
default as SortAscIcon
|
|
3084
3106
|
} from '../icons/arrow-up-narrow-wide';
|
|
3085
|
-
//
|
|
3086
|
-
export { default as
|
|
3087
|
-
export {
|
|
3088
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. */
|
|
3089
|
-
default as Axis3DIcon
|
|
3090
|
-
} from '../icons/axis-3d';
|
|
3091
|
-
// BadgeCheck aliases
|
|
3092
|
-
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
3093
|
-
export {
|
|
3094
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
3095
|
-
default as VerifiedIcon
|
|
3096
|
-
} from '../icons/badge-check';
|
|
3097
|
-
// BadgeQuestionMark aliases
|
|
3098
|
-
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
3107
|
+
// BadgeQuestionMark aliases
|
|
3108
|
+
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
3099
3109
|
export {
|
|
3100
3110
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
3101
3111
|
default as BadgeHelpIcon
|
|
3102
3112
|
} from '../icons/badge-question-mark';
|
|
3103
|
-
//
|
|
3104
|
-
export { default as
|
|
3113
|
+
// BookDashed aliases
|
|
3114
|
+
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
3105
3115
|
export {
|
|
3106
|
-
/** @deprecated
|
|
3107
|
-
default as
|
|
3108
|
-
} from '../icons/
|
|
3116
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
3117
|
+
default as BookTemplateIcon
|
|
3118
|
+
} from '../icons/book-dashed';
|
|
3109
3119
|
// BetweenHorizontalStart aliases
|
|
3110
3120
|
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
3111
3121
|
export {
|
|
3112
3122
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
3113
3123
|
default as BetweenHorizonalStartIcon
|
|
3114
3124
|
} from '../icons/between-horizontal-start';
|
|
3115
|
-
//
|
|
3116
|
-
export { default as
|
|
3125
|
+
// BetweenHorizontalEnd aliases
|
|
3126
|
+
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
3117
3127
|
export {
|
|
3118
|
-
/** @deprecated
|
|
3119
|
-
default as
|
|
3120
|
-
} from '../icons/
|
|
3128
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. */
|
|
3129
|
+
default as BetweenHorizonalEndIcon
|
|
3130
|
+
} from '../icons/between-horizontal-end';
|
|
3121
3131
|
// Braces aliases
|
|
3122
3132
|
export { default as BracesIcon } from '../icons/braces';
|
|
3123
3133
|
export {
|
|
@@ -3136,84 +3146,84 @@ export {
|
|
|
3136
3146
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. */
|
|
3137
3147
|
default as AreaChartIcon
|
|
3138
3148
|
} from '../icons/chart-area';
|
|
3139
|
-
// ChartBarBig aliases
|
|
3140
|
-
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
3141
|
-
export {
|
|
3142
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. */
|
|
3143
|
-
default as BarChartHorizontalBigIcon
|
|
3144
|
-
} from '../icons/chart-bar-big';
|
|
3145
3149
|
// ChartBar aliases
|
|
3146
3150
|
export { default as ChartBarIcon } from '../icons/chart-bar';
|
|
3147
3151
|
export {
|
|
3148
3152
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. */
|
|
3149
3153
|
default as BarChartHorizontalIcon
|
|
3150
3154
|
} from '../icons/chart-bar';
|
|
3151
|
-
//
|
|
3152
|
-
export { default as
|
|
3155
|
+
// ChartBarBig aliases
|
|
3156
|
+
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
3153
3157
|
export {
|
|
3154
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3155
|
-
default as
|
|
3156
|
-
} from '../icons/chart-
|
|
3158
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. */
|
|
3159
|
+
default as BarChartHorizontalBigIcon
|
|
3160
|
+
} from '../icons/chart-bar-big';
|
|
3157
3161
|
// ChartColumnBig aliases
|
|
3158
3162
|
export { default as ChartColumnBigIcon } from '../icons/chart-column-big';
|
|
3159
3163
|
export {
|
|
3160
3164
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnBig} instead. */
|
|
3161
3165
|
default as BarChartBigIcon
|
|
3162
3166
|
} from '../icons/chart-column-big';
|
|
3163
|
-
// ChartColumn aliases
|
|
3164
|
-
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3165
|
-
export {
|
|
3166
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. */
|
|
3167
|
-
default as BarChart3Icon
|
|
3168
|
-
} from '../icons/chart-column';
|
|
3169
3167
|
// ChartColumnIncreasing aliases
|
|
3170
3168
|
export { default as ChartColumnIncreasingIcon } from '../icons/chart-column-increasing';
|
|
3171
3169
|
export {
|
|
3172
3170
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. */
|
|
3173
3171
|
default as BarChart4Icon
|
|
3174
3172
|
} from '../icons/chart-column-increasing';
|
|
3173
|
+
// ChartCandlestick aliases
|
|
3174
|
+
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
3175
|
+
export {
|
|
3176
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. */
|
|
3177
|
+
default as CandlestickChartIcon
|
|
3178
|
+
} from '../icons/chart-candlestick';
|
|
3175
3179
|
// ChartLine aliases
|
|
3176
3180
|
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3177
3181
|
export {
|
|
3178
3182
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. */
|
|
3179
3183
|
default as LineChartIcon
|
|
3180
3184
|
} from '../icons/chart-line';
|
|
3181
|
-
//
|
|
3182
|
-
export { default as
|
|
3185
|
+
// ChartColumn aliases
|
|
3186
|
+
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3183
3187
|
export {
|
|
3184
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3185
|
-
default as
|
|
3186
|
-
} from '../icons/chart-
|
|
3188
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. */
|
|
3189
|
+
default as BarChart3Icon
|
|
3190
|
+
} from '../icons/chart-column';
|
|
3191
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
3192
|
+
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
3193
|
+
export {
|
|
3194
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. */
|
|
3195
|
+
default as BarChartIcon
|
|
3196
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
3187
3197
|
// ChartNoAxesColumn aliases
|
|
3188
3198
|
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
3189
3199
|
export {
|
|
3190
3200
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. */
|
|
3191
3201
|
default as BarChart2Icon
|
|
3192
3202
|
} from '../icons/chart-no-axes-column';
|
|
3193
|
-
//
|
|
3194
|
-
export { default as
|
|
3203
|
+
// ChartNoAxesGantt aliases
|
|
3204
|
+
export { default as ChartNoAxesGanttIcon } from '../icons/chart-no-axes-gantt';
|
|
3195
3205
|
export {
|
|
3196
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3197
|
-
default as
|
|
3198
|
-
} from '../icons/chart-no-axes-
|
|
3206
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. */
|
|
3207
|
+
default as GanttChartIcon
|
|
3208
|
+
} from '../icons/chart-no-axes-gantt';
|
|
3199
3209
|
// ChartPie aliases
|
|
3200
3210
|
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3201
3211
|
export {
|
|
3202
3212
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. */
|
|
3203
3213
|
default as PieChartIcon
|
|
3204
3214
|
} from '../icons/chart-pie';
|
|
3205
|
-
// CircleAlert aliases
|
|
3206
|
-
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3207
|
-
export {
|
|
3208
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. */
|
|
3209
|
-
default as AlertCircleIcon
|
|
3210
|
-
} from '../icons/circle-alert';
|
|
3211
3215
|
// ChartScatter aliases
|
|
3212
3216
|
export { default as ChartScatterIcon } from '../icons/chart-scatter';
|
|
3213
3217
|
export {
|
|
3214
3218
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. */
|
|
3215
3219
|
default as ScatterChartIcon
|
|
3216
3220
|
} from '../icons/chart-scatter';
|
|
3221
|
+
// CircleAlert aliases
|
|
3222
|
+
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3223
|
+
export {
|
|
3224
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. */
|
|
3225
|
+
default as AlertCircleIcon
|
|
3226
|
+
} from '../icons/circle-alert';
|
|
3217
3227
|
// CircleArrowDown aliases
|
|
3218
3228
|
export { default as CircleArrowDownIcon } from '../icons/circle-arrow-down';
|
|
3219
3229
|
export {
|
|
@@ -3226,6 +3236,12 @@ export {
|
|
|
3226
3236
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. */
|
|
3227
3237
|
default as ArrowLeftCircleIcon
|
|
3228
3238
|
} from '../icons/circle-arrow-left';
|
|
3239
|
+
// CircleArrowOutDownLeft aliases
|
|
3240
|
+
export { default as CircleArrowOutDownLeftIcon } from '../icons/circle-arrow-out-down-left';
|
|
3241
|
+
export {
|
|
3242
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. */
|
|
3243
|
+
default as ArrowDownLeftFromCircleIcon
|
|
3244
|
+
} from '../icons/circle-arrow-out-down-left';
|
|
3229
3245
|
// CircleArrowOutDownRight aliases
|
|
3230
3246
|
export { default as CircleArrowOutDownRightIcon } from '../icons/circle-arrow-out-down-right';
|
|
3231
3247
|
export {
|
|
@@ -3238,12 +3254,12 @@ export {
|
|
|
3238
3254
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. */
|
|
3239
3255
|
default as ArrowUpLeftFromCircleIcon
|
|
3240
3256
|
} from '../icons/circle-arrow-out-up-left';
|
|
3241
|
-
//
|
|
3242
|
-
export { default as
|
|
3257
|
+
// CircleArrowRight aliases
|
|
3258
|
+
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3243
3259
|
export {
|
|
3244
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3245
|
-
default as
|
|
3246
|
-
} from '../icons/circle-arrow-
|
|
3260
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
3261
|
+
default as ArrowRightCircleIcon
|
|
3262
|
+
} from '../icons/circle-arrow-right';
|
|
3247
3263
|
// CircleArrowOutUpRight aliases
|
|
3248
3264
|
export { default as CircleArrowOutUpRightIcon } from '../icons/circle-arrow-out-up-right';
|
|
3249
3265
|
export {
|
|
@@ -3262,12 +3278,6 @@ export {
|
|
|
3262
3278
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. */
|
|
3263
3279
|
default as CheckCircleIcon
|
|
3264
3280
|
} from '../icons/circle-check-big';
|
|
3265
|
-
// CircleArrowRight aliases
|
|
3266
|
-
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3267
|
-
export {
|
|
3268
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
3269
|
-
default as ArrowRightCircleIcon
|
|
3270
|
-
} from '../icons/circle-arrow-right';
|
|
3271
3281
|
// CircleCheck aliases
|
|
3272
3282
|
export { default as CircleCheckIcon } from '../icons/circle-check';
|
|
3273
3283
|
export {
|
|
@@ -3280,12 +3290,6 @@ export {
|
|
|
3280
3290
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
3281
3291
|
default as ChevronDownCircleIcon
|
|
3282
3292
|
} from '../icons/circle-chevron-down';
|
|
3283
|
-
// CircleChevronLeft aliases
|
|
3284
|
-
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3285
|
-
export {
|
|
3286
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
3287
|
-
default as ChevronLeftCircleIcon
|
|
3288
|
-
} from '../icons/circle-chevron-left';
|
|
3289
3293
|
// CircleChevronRight aliases
|
|
3290
3294
|
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3291
3295
|
export {
|
|
@@ -3298,12 +3302,24 @@ export {
|
|
|
3298
3302
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. */
|
|
3299
3303
|
default as ChevronUpCircleIcon
|
|
3300
3304
|
} from '../icons/circle-chevron-up';
|
|
3305
|
+
// CircleChevronLeft aliases
|
|
3306
|
+
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3307
|
+
export {
|
|
3308
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
3309
|
+
default as ChevronLeftCircleIcon
|
|
3310
|
+
} from '../icons/circle-chevron-left';
|
|
3301
3311
|
// CircleDivide aliases
|
|
3302
3312
|
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3303
3313
|
export {
|
|
3304
3314
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. */
|
|
3305
3315
|
default as DivideCircleIcon
|
|
3306
3316
|
} from '../icons/circle-divide';
|
|
3317
|
+
// CircleMinus aliases
|
|
3318
|
+
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3319
|
+
export {
|
|
3320
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. */
|
|
3321
|
+
default as MinusCircleIcon
|
|
3322
|
+
} from '../icons/circle-minus';
|
|
3307
3323
|
// CircleGauge aliases
|
|
3308
3324
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3309
3325
|
export {
|
|
@@ -3316,24 +3332,18 @@ export {
|
|
|
3316
3332
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. */
|
|
3317
3333
|
default as ParkingCircleOffIcon
|
|
3318
3334
|
} from '../icons/circle-parking-off';
|
|
3319
|
-
// CircleParking aliases
|
|
3320
|
-
export { default as CircleParkingIcon } from '../icons/circle-parking';
|
|
3321
|
-
export {
|
|
3322
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
3323
|
-
default as ParkingCircleIcon
|
|
3324
|
-
} from '../icons/circle-parking';
|
|
3325
|
-
// CircleMinus aliases
|
|
3326
|
-
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3327
|
-
export {
|
|
3328
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. */
|
|
3329
|
-
default as MinusCircleIcon
|
|
3330
|
-
} from '../icons/circle-minus';
|
|
3331
3335
|
// CirclePause aliases
|
|
3332
3336
|
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3333
3337
|
export {
|
|
3334
3338
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. */
|
|
3335
3339
|
default as PauseCircleIcon
|
|
3336
3340
|
} from '../icons/circle-pause';
|
|
3341
|
+
// CircleParking aliases
|
|
3342
|
+
export { default as CircleParkingIcon } from '../icons/circle-parking';
|
|
3343
|
+
export {
|
|
3344
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
3345
|
+
default as ParkingCircleIcon
|
|
3346
|
+
} from '../icons/circle-parking';
|
|
3337
3347
|
// CirclePercent aliases
|
|
3338
3348
|
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3339
3349
|
export {
|
|
@@ -3352,6 +3362,12 @@ export {
|
|
|
3352
3362
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. */
|
|
3353
3363
|
default as PlusCircleIcon
|
|
3354
3364
|
} from '../icons/circle-plus';
|
|
3365
|
+
// CirclePower aliases
|
|
3366
|
+
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3367
|
+
export {
|
|
3368
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePower} instead. */
|
|
3369
|
+
default as PowerCircleIcon
|
|
3370
|
+
} from '../icons/circle-power';
|
|
3355
3371
|
// CircleQuestionMark aliases
|
|
3356
3372
|
export { default as CircleQuestionMarkIcon } from '../icons/circle-question-mark';
|
|
3357
3373
|
export {
|
|
@@ -3368,24 +3384,18 @@ export {
|
|
|
3368
3384
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. */
|
|
3369
3385
|
default as CircleSlashedIcon
|
|
3370
3386
|
} from '../icons/circle-slash-2';
|
|
3371
|
-
//
|
|
3372
|
-
export { default as
|
|
3387
|
+
// CircleStop aliases
|
|
3388
|
+
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3373
3389
|
export {
|
|
3374
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3375
|
-
default as
|
|
3376
|
-
} from '../icons/circle-
|
|
3390
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. */
|
|
3391
|
+
default as StopCircleIcon
|
|
3392
|
+
} from '../icons/circle-stop';
|
|
3377
3393
|
// CircleUserRound aliases
|
|
3378
3394
|
export { default as CircleUserRoundIcon } from '../icons/circle-user-round';
|
|
3379
3395
|
export {
|
|
3380
3396
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. */
|
|
3381
3397
|
default as UserCircle2Icon
|
|
3382
3398
|
} from '../icons/circle-user-round';
|
|
3383
|
-
// CircleStop aliases
|
|
3384
|
-
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3385
|
-
export {
|
|
3386
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. */
|
|
3387
|
-
default as StopCircleIcon
|
|
3388
|
-
} from '../icons/circle-stop';
|
|
3389
3399
|
// CircleUser aliases
|
|
3390
3400
|
export { default as CircleUserIcon } from '../icons/circle-user';
|
|
3391
3401
|
export {
|
|
@@ -3428,12 +3438,6 @@ export {
|
|
|
3428
3438
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. */
|
|
3429
3439
|
default as Code2Icon
|
|
3430
3440
|
} from '../icons/code-xml';
|
|
3431
|
-
// Columns2 aliases
|
|
3432
|
-
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3433
|
-
export {
|
|
3434
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
3435
|
-
default as ColumnsIcon
|
|
3436
|
-
} from '../icons/columns-2';
|
|
3437
3441
|
// Columns3Cog aliases
|
|
3438
3442
|
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3439
3443
|
export {
|
|
@@ -3444,6 +3448,12 @@ export {
|
|
|
3444
3448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. */
|
|
3445
3449
|
default as TableConfigIcon
|
|
3446
3450
|
} from '../icons/columns-3-cog';
|
|
3451
|
+
// Columns2 aliases
|
|
3452
|
+
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3453
|
+
export {
|
|
3454
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
3455
|
+
default as ColumnsIcon
|
|
3456
|
+
} from '../icons/columns-2';
|
|
3447
3457
|
// Columns3 aliases
|
|
3448
3458
|
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3449
3459
|
export {
|
|
@@ -3468,12 +3478,6 @@ export {
|
|
|
3468
3478
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. */
|
|
3469
3479
|
default as Globe2Icon
|
|
3470
3480
|
} from '../icons/earth';
|
|
3471
|
-
// Ellipsis aliases
|
|
3472
|
-
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3473
|
-
export {
|
|
3474
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
3475
|
-
default as MoreHorizontalIcon
|
|
3476
|
-
} from '../icons/ellipsis';
|
|
3477
3481
|
// EllipsisVertical aliases
|
|
3478
3482
|
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3479
3483
|
export {
|
|
@@ -3498,18 +3502,18 @@ export {
|
|
|
3498
3502
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. */
|
|
3499
3503
|
default as FileJson2Icon
|
|
3500
3504
|
} from '../icons/file-braces-corner';
|
|
3505
|
+
// Ellipsis aliases
|
|
3506
|
+
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3507
|
+
export {
|
|
3508
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
3509
|
+
default as MoreHorizontalIcon
|
|
3510
|
+
} from '../icons/ellipsis';
|
|
3501
3511
|
// FileBraces aliases
|
|
3502
3512
|
export { default as FileBracesIcon } from '../icons/file-braces';
|
|
3503
3513
|
export {
|
|
3504
3514
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. */
|
|
3505
3515
|
default as FileJsonIcon
|
|
3506
3516
|
} from '../icons/file-braces';
|
|
3507
|
-
// FileChartColumnIncreasing aliases
|
|
3508
|
-
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3509
|
-
export {
|
|
3510
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. */
|
|
3511
|
-
default as FileBarChartIcon
|
|
3512
|
-
} from '../icons/file-chart-column-increasing';
|
|
3513
3517
|
// FileChartColumn aliases
|
|
3514
3518
|
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3515
3519
|
export {
|
|
@@ -3522,36 +3526,36 @@ export {
|
|
|
3522
3526
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. */
|
|
3523
3527
|
default as FileLineChartIcon
|
|
3524
3528
|
} from '../icons/file-chart-line';
|
|
3525
|
-
// FileChartPie aliases
|
|
3526
|
-
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3527
|
-
export {
|
|
3528
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. */
|
|
3529
|
-
default as FilePieChartIcon
|
|
3530
|
-
} from '../icons/file-chart-pie';
|
|
3531
3529
|
// FileCheckCorner aliases
|
|
3532
3530
|
export { default as FileCheckCornerIcon } from '../icons/file-check-corner';
|
|
3533
3531
|
export {
|
|
3534
3532
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. */
|
|
3535
3533
|
default as FileCheck2Icon
|
|
3536
3534
|
} from '../icons/file-check-corner';
|
|
3537
|
-
//
|
|
3538
|
-
export { default as
|
|
3535
|
+
// FileChartColumnIncreasing aliases
|
|
3536
|
+
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3539
3537
|
export {
|
|
3540
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3541
|
-
default as
|
|
3542
|
-
} from '../icons/file-
|
|
3543
|
-
//
|
|
3544
|
-
export { default as
|
|
3538
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. */
|
|
3539
|
+
default as FileBarChartIcon
|
|
3540
|
+
} from '../icons/file-chart-column-increasing';
|
|
3541
|
+
// FileChartPie aliases
|
|
3542
|
+
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3545
3543
|
export {
|
|
3546
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3547
|
-
default as
|
|
3548
|
-
} from '../icons/file-
|
|
3544
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. */
|
|
3545
|
+
default as FilePieChartIcon
|
|
3546
|
+
} from '../icons/file-chart-pie';
|
|
3549
3547
|
// FileCog aliases
|
|
3550
3548
|
export { default as FileCogIcon } from '../icons/file-cog';
|
|
3551
3549
|
export {
|
|
3552
3550
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. */
|
|
3553
3551
|
default as FileCog2Icon
|
|
3554
3552
|
} from '../icons/file-cog';
|
|
3553
|
+
// FileCodeCorner aliases
|
|
3554
|
+
export { default as FileCodeCornerIcon } from '../icons/file-code-corner';
|
|
3555
|
+
export {
|
|
3556
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. */
|
|
3557
|
+
default as FileCode2Icon
|
|
3558
|
+
} from '../icons/file-code-corner';
|
|
3555
3559
|
// FileHeadphone aliases
|
|
3556
3560
|
export { default as FileHeadphoneIcon } from '../icons/file-headphone';
|
|
3557
3561
|
export {
|
|
@@ -3562,24 +3566,30 @@ export {
|
|
|
3562
3566
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileHeadphone} instead. */
|
|
3563
3567
|
default as FileAudio2Icon
|
|
3564
3568
|
} from '../icons/file-headphone';
|
|
3569
|
+
// FileExclamationPoint aliases
|
|
3570
|
+
export { default as FileExclamationPointIcon } from '../icons/file-exclamation-point';
|
|
3571
|
+
export {
|
|
3572
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. */
|
|
3573
|
+
default as FileWarningIcon
|
|
3574
|
+
} from '../icons/file-exclamation-point';
|
|
3565
3575
|
// FileKey aliases
|
|
3566
3576
|
export { default as FileKeyIcon } from '../icons/file-key';
|
|
3567
3577
|
export {
|
|
3568
3578
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. */
|
|
3569
3579
|
default as FileKey2Icon
|
|
3570
3580
|
} from '../icons/file-key';
|
|
3571
|
-
// FileLock aliases
|
|
3572
|
-
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3573
|
-
export {
|
|
3574
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
3575
|
-
default as FileLock2Icon
|
|
3576
|
-
} from '../icons/file-lock';
|
|
3577
3581
|
// FileMinusCorner aliases
|
|
3578
3582
|
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3579
3583
|
export {
|
|
3580
3584
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. */
|
|
3581
3585
|
default as FileMinus2Icon
|
|
3582
3586
|
} from '../icons/file-minus-corner';
|
|
3587
|
+
// FileLock aliases
|
|
3588
|
+
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3589
|
+
export {
|
|
3590
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
3591
|
+
default as FileLock2Icon
|
|
3592
|
+
} from '../icons/file-lock';
|
|
3583
3593
|
// FilePenLine aliases
|
|
3584
3594
|
export { default as FilePenLineIcon } from '../icons/file-pen-line';
|
|
3585
3595
|
export {
|
|
@@ -3610,30 +3620,30 @@ export {
|
|
|
3610
3620
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. */
|
|
3611
3621
|
default as FileQuestionIcon
|
|
3612
3622
|
} from '../icons/file-question-mark';
|
|
3613
|
-
// FileSearchCorner aliases
|
|
3614
|
-
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3615
|
-
export {
|
|
3616
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. */
|
|
3617
|
-
default as FileSearch2Icon
|
|
3618
|
-
} from '../icons/file-search-corner';
|
|
3619
3623
|
// FileSignal aliases
|
|
3620
3624
|
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3621
3625
|
export {
|
|
3622
3626
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. */
|
|
3623
3627
|
default as FileVolume2Icon
|
|
3624
3628
|
} from '../icons/file-signal';
|
|
3625
|
-
//
|
|
3626
|
-
export { default as
|
|
3629
|
+
// FileSearchCorner aliases
|
|
3630
|
+
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3627
3631
|
export {
|
|
3628
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3629
|
-
default as
|
|
3630
|
-
} from '../icons/file-
|
|
3632
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. */
|
|
3633
|
+
default as FileSearch2Icon
|
|
3634
|
+
} from '../icons/file-search-corner';
|
|
3631
3635
|
// FileTypeCorner aliases
|
|
3632
3636
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3633
3637
|
export {
|
|
3634
3638
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
3635
3639
|
default as FileType2Icon
|
|
3636
3640
|
} from '../icons/file-type-corner';
|
|
3641
|
+
// FileVideoCamera aliases
|
|
3642
|
+
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3643
|
+
export {
|
|
3644
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
3645
|
+
default as FileVideo2Icon
|
|
3646
|
+
} from '../icons/file-video-camera';
|
|
3637
3647
|
// FileXCorner aliases
|
|
3638
3648
|
export { default as FileXCornerIcon } from '../icons/file-x-corner';
|
|
3639
3649
|
export {
|
|
@@ -3658,12 +3668,6 @@ export {
|
|
|
3658
3668
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. */
|
|
3659
3669
|
default as FolderEditIcon
|
|
3660
3670
|
} from '../icons/folder-pen';
|
|
3661
|
-
// Funnel aliases
|
|
3662
|
-
export { default as FunnelIcon } from '../icons/funnel';
|
|
3663
|
-
export {
|
|
3664
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. */
|
|
3665
|
-
default as FilterIcon
|
|
3666
|
-
} from '../icons/funnel';
|
|
3667
3671
|
// FunnelX aliases
|
|
3668
3672
|
export { default as FunnelXIcon } from '../icons/funnel-x';
|
|
3669
3673
|
export {
|
|
@@ -3676,6 +3680,12 @@ export {
|
|
|
3676
3680
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. */
|
|
3677
3681
|
default as GitCommitIcon
|
|
3678
3682
|
} from '../icons/git-commit-horizontal';
|
|
3683
|
+
// Funnel aliases
|
|
3684
|
+
export { default as FunnelIcon } from '../icons/funnel';
|
|
3685
|
+
export {
|
|
3686
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. */
|
|
3687
|
+
default as FilterIcon
|
|
3688
|
+
} from '../icons/funnel';
|
|
3679
3689
|
// Grid2x2Check aliases
|
|
3680
3690
|
export { default as Grid2x2CheckIcon } from '../icons/grid-2x2-check';
|
|
3681
3691
|
export {
|
|
@@ -3688,18 +3698,18 @@ export {
|
|
|
3688
3698
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. */
|
|
3689
3699
|
default as Grid2X2PlusIcon
|
|
3690
3700
|
} from '../icons/grid-2x2-plus';
|
|
3691
|
-
// Grid2x2X aliases
|
|
3692
|
-
export { default as Grid2x2XIcon } from '../icons/grid-2x2-x';
|
|
3693
|
-
export {
|
|
3694
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. */
|
|
3695
|
-
default as Grid2X2XIcon
|
|
3696
|
-
} from '../icons/grid-2x2-x';
|
|
3697
3701
|
// Grid2x2 aliases
|
|
3698
3702
|
export { default as Grid2x2Icon } from '../icons/grid-2x2';
|
|
3699
3703
|
export {
|
|
3700
3704
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
3701
3705
|
default as Grid2X2Icon
|
|
3702
3706
|
} from '../icons/grid-2x2';
|
|
3707
|
+
// HandGrab aliases
|
|
3708
|
+
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3709
|
+
export {
|
|
3710
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. */
|
|
3711
|
+
default as GrabIcon
|
|
3712
|
+
} from '../icons/hand-grab';
|
|
3703
3713
|
// Grid3x3 aliases
|
|
3704
3714
|
export { default as Grid3x3Icon } from '../icons/grid-3x3';
|
|
3705
3715
|
export {
|
|
@@ -3710,58 +3720,42 @@ export {
|
|
|
3710
3720
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. */
|
|
3711
3721
|
default as Grid3X3Icon
|
|
3712
3722
|
} from '../icons/grid-3x3';
|
|
3713
|
-
//
|
|
3714
|
-
export { default as
|
|
3723
|
+
// Grid2x2X aliases
|
|
3724
|
+
export { default as Grid2x2XIcon } from '../icons/grid-2x2-x';
|
|
3715
3725
|
export {
|
|
3716
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3717
|
-
default as
|
|
3718
|
-
} from '../icons/
|
|
3726
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. */
|
|
3727
|
+
default as Grid2X2XIcon
|
|
3728
|
+
} from '../icons/grid-2x2-x';
|
|
3719
3729
|
// HandHelping aliases
|
|
3720
3730
|
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3721
3731
|
export {
|
|
3722
3732
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. */
|
|
3723
3733
|
default as HelpingHandIcon
|
|
3724
3734
|
} from '../icons/hand-helping';
|
|
3725
|
-
//
|
|
3726
|
-
export { default as
|
|
3735
|
+
// IceCreamBowl aliases
|
|
3736
|
+
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3727
3737
|
export {
|
|
3728
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3729
|
-
default as
|
|
3730
|
-
} from '../icons/
|
|
3738
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. */
|
|
3739
|
+
default as IceCream2Icon
|
|
3740
|
+
} from '../icons/ice-cream-bowl';
|
|
3731
3741
|
// IceCreamCone aliases
|
|
3732
3742
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3733
3743
|
export {
|
|
3734
3744
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. */
|
|
3735
3745
|
default as IceCreamIcon
|
|
3736
3746
|
} from '../icons/ice-cream-cone';
|
|
3737
|
-
//
|
|
3738
|
-
export { default as
|
|
3739
|
-
export {
|
|
3740
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. */
|
|
3741
|
-
default as IceCream2Icon
|
|
3742
|
-
} from '../icons/ice-cream-bowl';
|
|
3743
|
-
// LaptopMinimal aliases
|
|
3744
|
-
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3747
|
+
// House aliases
|
|
3748
|
+
export { default as HouseIcon } from '../icons/house';
|
|
3745
3749
|
export {
|
|
3746
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3747
|
-
default as
|
|
3748
|
-
} from '../icons/
|
|
3750
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. */
|
|
3751
|
+
default as HomeIcon
|
|
3752
|
+
} from '../icons/house';
|
|
3749
3753
|
// Layers aliases
|
|
3750
3754
|
export { default as LayersIcon } from '../icons/layers';
|
|
3751
3755
|
export {
|
|
3752
3756
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
3753
3757
|
default as Layers3Icon
|
|
3754
3758
|
} from '../icons/layers';
|
|
3755
|
-
// ListIndentDecrease aliases
|
|
3756
|
-
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3757
|
-
export {
|
|
3758
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. */
|
|
3759
|
-
default as OutdentIcon
|
|
3760
|
-
} from '../icons/list-indent-decrease';
|
|
3761
|
-
export {
|
|
3762
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. */
|
|
3763
|
-
default as IndentDecreaseIcon
|
|
3764
|
-
} from '../icons/list-indent-decrease';
|
|
3765
3759
|
// ListIndentIncrease aliases
|
|
3766
3760
|
export { default as ListIndentIncreaseIcon } from '../icons/list-indent-increase';
|
|
3767
3761
|
export {
|
|
@@ -3772,24 +3766,40 @@ export {
|
|
|
3772
3766
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
3773
3767
|
default as IndentIncreaseIcon
|
|
3774
3768
|
} from '../icons/list-indent-increase';
|
|
3775
|
-
//
|
|
3776
|
-
export { default as
|
|
3769
|
+
// LaptopMinimal aliases
|
|
3770
|
+
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3777
3771
|
export {
|
|
3778
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3779
|
-
default as
|
|
3780
|
-
} from '../icons/
|
|
3781
|
-
//
|
|
3782
|
-
export { default as
|
|
3772
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. */
|
|
3773
|
+
default as Laptop2Icon
|
|
3774
|
+
} from '../icons/laptop-minimal';
|
|
3775
|
+
// ListIndentDecrease aliases
|
|
3776
|
+
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3783
3777
|
export {
|
|
3784
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3785
|
-
default as
|
|
3786
|
-
} from '../icons/
|
|
3778
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. */
|
|
3779
|
+
default as OutdentIcon
|
|
3780
|
+
} from '../icons/list-indent-decrease';
|
|
3781
|
+
export {
|
|
3782
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. */
|
|
3783
|
+
default as IndentDecreaseIcon
|
|
3784
|
+
} from '../icons/list-indent-decrease';
|
|
3787
3785
|
// LoaderCircle aliases
|
|
3788
3786
|
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3789
3787
|
export {
|
|
3790
3788
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. */
|
|
3791
3789
|
default as Loader2Icon
|
|
3792
3790
|
} from '../icons/loader-circle';
|
|
3791
|
+
// LockKeyholeOpen aliases
|
|
3792
|
+
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3793
|
+
export {
|
|
3794
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. */
|
|
3795
|
+
default as UnlockKeyholeIcon
|
|
3796
|
+
} from '../icons/lock-keyhole-open';
|
|
3797
|
+
// LockOpen aliases
|
|
3798
|
+
export { default as LockOpenIcon } from '../icons/lock-open';
|
|
3799
|
+
export {
|
|
3800
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. */
|
|
3801
|
+
default as UnlockIcon
|
|
3802
|
+
} from '../icons/lock-open';
|
|
3793
3803
|
// MailQuestionMark aliases
|
|
3794
3804
|
export { default as MailQuestionMarkIcon } from '../icons/mail-question-mark';
|
|
3795
3805
|
export {
|
|
@@ -3808,24 +3818,36 @@ export {
|
|
|
3808
3818
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. */
|
|
3809
3819
|
default as MessageCircleQuestionIcon
|
|
3810
3820
|
} from '../icons/message-circle-question-mark';
|
|
3811
|
-
//
|
|
3812
|
-
export { default as
|
|
3821
|
+
// MicSignal aliases
|
|
3822
|
+
export { default as MicSignalIcon } from '../icons/mic-signal';
|
|
3813
3823
|
export {
|
|
3814
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3815
|
-
default as
|
|
3816
|
-
} from '../icons/
|
|
3824
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. This alias will be removed in v1.0 */
|
|
3825
|
+
default as PodcastIcon
|
|
3826
|
+
} from '../icons/mic-signal';
|
|
3827
|
+
// MicVocal aliases
|
|
3828
|
+
export { default as MicVocalIcon } from '../icons/mic-vocal';
|
|
3829
|
+
export {
|
|
3830
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. */
|
|
3831
|
+
default as Mic2Icon
|
|
3832
|
+
} from '../icons/mic-vocal';
|
|
3817
3833
|
// OctagonAlert aliases
|
|
3818
3834
|
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3819
3835
|
export {
|
|
3820
3836
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. */
|
|
3821
3837
|
default as AlertOctagonIcon
|
|
3822
3838
|
} from '../icons/octagon-alert';
|
|
3823
|
-
//
|
|
3824
|
-
export { default as
|
|
3839
|
+
// Move3d aliases
|
|
3840
|
+
export { default as Move3dIcon } from '../icons/move-3d';
|
|
3825
3841
|
export {
|
|
3826
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3827
|
-
default as
|
|
3828
|
-
} from '../icons/
|
|
3842
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. */
|
|
3843
|
+
default as Move3DIcon
|
|
3844
|
+
} from '../icons/move-3d';
|
|
3845
|
+
// OctagonX aliases
|
|
3846
|
+
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3847
|
+
export {
|
|
3848
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
3849
|
+
default as XOctagonIcon
|
|
3850
|
+
} from '../icons/octagon-x';
|
|
3829
3851
|
// OctagonPause aliases
|
|
3830
3852
|
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3831
3853
|
export {
|
|
@@ -3838,30 +3860,30 @@ export {
|
|
|
3838
3860
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. */
|
|
3839
3861
|
default as Paintbrush2Icon
|
|
3840
3862
|
} from '../icons/paintbrush-vertical';
|
|
3841
|
-
// OctagonX aliases
|
|
3842
|
-
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3843
|
-
export {
|
|
3844
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
3845
|
-
default as XOctagonIcon
|
|
3846
|
-
} from '../icons/octagon-x';
|
|
3847
3863
|
// PanelBottomDashed aliases
|
|
3848
3864
|
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3849
3865
|
export {
|
|
3850
3866
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. */
|
|
3851
3867
|
default as PanelBottomInactiveIcon
|
|
3852
3868
|
} from '../icons/panel-bottom-dashed';
|
|
3869
|
+
// PanelLeftClose aliases
|
|
3870
|
+
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3871
|
+
export {
|
|
3872
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. */
|
|
3873
|
+
default as SidebarCloseIcon
|
|
3874
|
+
} from '../icons/panel-left-close';
|
|
3853
3875
|
// PanelLeftDashed aliases
|
|
3854
3876
|
export { default as PanelLeftDashedIcon } from '../icons/panel-left-dashed';
|
|
3855
3877
|
export {
|
|
3856
3878
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. */
|
|
3857
3879
|
default as PanelLeftInactiveIcon
|
|
3858
3880
|
} from '../icons/panel-left-dashed';
|
|
3859
|
-
//
|
|
3860
|
-
export { default as
|
|
3881
|
+
// PanelRightDashed aliases
|
|
3882
|
+
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3861
3883
|
export {
|
|
3862
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3863
|
-
default as
|
|
3864
|
-
} from '../icons/panel-
|
|
3884
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. */
|
|
3885
|
+
default as PanelRightInactiveIcon
|
|
3886
|
+
} from '../icons/panel-right-dashed';
|
|
3865
3887
|
// PanelLeftOpen aliases
|
|
3866
3888
|
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3867
3889
|
export {
|
|
@@ -3874,12 +3896,6 @@ export {
|
|
|
3874
3896
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. */
|
|
3875
3897
|
default as SidebarIcon
|
|
3876
3898
|
} from '../icons/panel-left';
|
|
3877
|
-
// PanelRightDashed aliases
|
|
3878
|
-
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3879
|
-
export {
|
|
3880
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. */
|
|
3881
|
-
default as PanelRightInactiveIcon
|
|
3882
|
-
} from '../icons/panel-right-dashed';
|
|
3883
3899
|
// PanelTopDashed aliases
|
|
3884
3900
|
export { default as PanelTopDashedIcon } from '../icons/panel-top-dashed';
|
|
3885
3901
|
export {
|
|
@@ -3898,6 +3914,12 @@ export {
|
|
|
3898
3914
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. */
|
|
3899
3915
|
default as Edit3Icon
|
|
3900
3916
|
} from '../icons/pen-line';
|
|
3917
|
+
// Pen aliases
|
|
3918
|
+
export { default as PenIcon } from '../icons/pen';
|
|
3919
|
+
export {
|
|
3920
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. */
|
|
3921
|
+
default as Edit2Icon
|
|
3922
|
+
} from '../icons/pen';
|
|
3901
3923
|
// PlugZap aliases
|
|
3902
3924
|
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3903
3925
|
export {
|
|
@@ -3910,54 +3932,60 @@ export {
|
|
|
3910
3932
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. */
|
|
3911
3933
|
default as FormInputIcon
|
|
3912
3934
|
} from '../icons/rectangle-ellipsis';
|
|
3913
|
-
// Rows2 aliases
|
|
3914
|
-
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3915
|
-
export {
|
|
3916
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
3917
|
-
default as RowsIcon
|
|
3918
|
-
} from '../icons/rows-2';
|
|
3919
|
-
// Pen aliases
|
|
3920
|
-
export { default as PenIcon } from '../icons/pen';
|
|
3921
|
-
export {
|
|
3922
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. */
|
|
3923
|
-
default as Edit2Icon
|
|
3924
|
-
} from '../icons/pen';
|
|
3925
3935
|
// Rotate3d aliases
|
|
3926
3936
|
export { default as Rotate3dIcon } from '../icons/rotate-3d';
|
|
3927
3937
|
export {
|
|
3928
3938
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. */
|
|
3929
3939
|
default as Rotate3DIcon
|
|
3930
3940
|
} from '../icons/rotate-3d';
|
|
3941
|
+
// RotateCcwClock aliases
|
|
3942
|
+
export { default as RotateCcwClockIcon } from '../icons/rotate-ccw-clock';
|
|
3943
|
+
export {
|
|
3944
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RotateCcwClock} instead. */
|
|
3945
|
+
default as HistoryIcon
|
|
3946
|
+
} from '../icons/rotate-ccw-clock';
|
|
3931
3947
|
// Rows3 aliases
|
|
3932
3948
|
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3933
3949
|
export {
|
|
3934
3950
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. */
|
|
3935
3951
|
default as PanelsTopBottomIcon
|
|
3936
3952
|
} from '../icons/rows-3';
|
|
3953
|
+
// Rows2 aliases
|
|
3954
|
+
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3955
|
+
export {
|
|
3956
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
3957
|
+
default as RowsIcon
|
|
3958
|
+
} from '../icons/rows-2';
|
|
3937
3959
|
// Scale3d aliases
|
|
3938
3960
|
export { default as Scale3dIcon } from '../icons/scale-3d';
|
|
3939
3961
|
export {
|
|
3940
3962
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. */
|
|
3941
3963
|
default as Scale3DIcon
|
|
3942
3964
|
} from '../icons/scale-3d';
|
|
3943
|
-
//
|
|
3944
|
-
export { default as
|
|
3965
|
+
// SendHorizontal aliases
|
|
3966
|
+
export { default as SendHorizontalIcon } from '../icons/send-horizontal';
|
|
3945
3967
|
export {
|
|
3946
|
-
/** @deprecated
|
|
3947
|
-
default as
|
|
3948
|
-
} from '../icons/
|
|
3968
|
+
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. */
|
|
3969
|
+
default as SendHorizonalIcon
|
|
3970
|
+
} from '../icons/send-horizontal';
|
|
3949
3971
|
// ShieldQuestionMark aliases
|
|
3950
3972
|
export { default as ShieldQuestionMarkIcon } from '../icons/shield-question-mark';
|
|
3951
3973
|
export {
|
|
3952
3974
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. */
|
|
3953
3975
|
default as ShieldQuestionIcon
|
|
3954
3976
|
} from '../icons/shield-question-mark';
|
|
3955
|
-
//
|
|
3956
|
-
export { default as
|
|
3977
|
+
// ShieldX aliases
|
|
3978
|
+
export { default as ShieldXIcon } from '../icons/shield-x';
|
|
3957
3979
|
export {
|
|
3958
|
-
/** @deprecated
|
|
3959
|
-
default as
|
|
3960
|
-
} from '../icons/
|
|
3980
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. */
|
|
3981
|
+
default as ShieldCloseIcon
|
|
3982
|
+
} from '../icons/shield-x';
|
|
3983
|
+
// Sparkles aliases
|
|
3984
|
+
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3985
|
+
export {
|
|
3986
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. */
|
|
3987
|
+
default as StarsIcon
|
|
3988
|
+
} from '../icons/sparkles';
|
|
3961
3989
|
// SlidersVertical aliases
|
|
3962
3990
|
export { default as SlidersVerticalIcon } from '../icons/sliders-vertical';
|
|
3963
3991
|
export {
|
|
@@ -3970,30 +3998,24 @@ export {
|
|
|
3970
3998
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. */
|
|
3971
3999
|
default as ActivitySquareIcon
|
|
3972
4000
|
} from '../icons/square-activity';
|
|
3973
|
-
// Sparkles aliases
|
|
3974
|
-
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3975
|
-
export {
|
|
3976
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. */
|
|
3977
|
-
default as StarsIcon
|
|
3978
|
-
} from '../icons/sparkles';
|
|
3979
4001
|
// SquareArrowDownLeft aliases
|
|
3980
4002
|
export { default as SquareArrowDownLeftIcon } from '../icons/square-arrow-down-left';
|
|
3981
4003
|
export {
|
|
3982
4004
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. */
|
|
3983
4005
|
default as ArrowDownLeftSquareIcon
|
|
3984
4006
|
} from '../icons/square-arrow-down-left';
|
|
3985
|
-
// SquareArrowDown aliases
|
|
3986
|
-
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3987
|
-
export {
|
|
3988
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. */
|
|
3989
|
-
default as ArrowDownSquareIcon
|
|
3990
|
-
} from '../icons/square-arrow-down';
|
|
3991
4007
|
// SquareArrowDownRight aliases
|
|
3992
4008
|
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
3993
4009
|
export {
|
|
3994
4010
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. */
|
|
3995
4011
|
default as ArrowDownRightSquareIcon
|
|
3996
4012
|
} from '../icons/square-arrow-down-right';
|
|
4013
|
+
// SquareArrowDown aliases
|
|
4014
|
+
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
4015
|
+
export {
|
|
4016
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. */
|
|
4017
|
+
default as ArrowDownSquareIcon
|
|
4018
|
+
} from '../icons/square-arrow-down';
|
|
3997
4019
|
// SquareArrowLeft aliases
|
|
3998
4020
|
export { default as SquareArrowLeftIcon } from '../icons/square-arrow-left';
|
|
3999
4021
|
export {
|
|
@@ -4006,12 +4028,6 @@ export {
|
|
|
4006
4028
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. */
|
|
4007
4029
|
default as ArrowDownLeftFromSquareIcon
|
|
4008
4030
|
} from '../icons/square-arrow-out-down-left';
|
|
4009
|
-
// SquareArrowOutUpRight aliases
|
|
4010
|
-
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
4011
|
-
export {
|
|
4012
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. */
|
|
4013
|
-
default as ArrowUpRightFromSquareIcon
|
|
4014
|
-
} from '../icons/square-arrow-out-up-right';
|
|
4015
4031
|
// SquareArrowOutDownRight aliases
|
|
4016
4032
|
export { default as SquareArrowOutDownRightIcon } from '../icons/square-arrow-out-down-right';
|
|
4017
4033
|
export {
|
|
@@ -4024,6 +4040,12 @@ export {
|
|
|
4024
4040
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. */
|
|
4025
4041
|
default as ArrowUpLeftFromSquareIcon
|
|
4026
4042
|
} from '../icons/square-arrow-out-up-left';
|
|
4043
|
+
// SquareArrowOutUpRight aliases
|
|
4044
|
+
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
4045
|
+
export {
|
|
4046
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. */
|
|
4047
|
+
default as ArrowUpRightFromSquareIcon
|
|
4048
|
+
} from '../icons/square-arrow-out-up-right';
|
|
4027
4049
|
// SquareArrowRight aliases
|
|
4028
4050
|
export { default as SquareArrowRightIcon } from '../icons/square-arrow-right';
|
|
4029
4051
|
export {
|
|
@@ -4048,24 +4070,30 @@ export {
|
|
|
4048
4070
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. */
|
|
4049
4071
|
default as ArrowUpSquareIcon
|
|
4050
4072
|
} from '../icons/square-arrow-up';
|
|
4051
|
-
// SquareBottomDashedScissors aliases
|
|
4052
|
-
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
4053
|
-
export {
|
|
4054
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. */
|
|
4055
|
-
default as ScissorsSquareDashedBottomIcon
|
|
4056
|
-
} from '../icons/square-bottom-dashed-scissors';
|
|
4057
4073
|
// SquareAsterisk aliases
|
|
4058
4074
|
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
4059
4075
|
export {
|
|
4060
4076
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. */
|
|
4061
4077
|
default as AsteriskSquareIcon
|
|
4062
4078
|
} from '../icons/square-asterisk';
|
|
4079
|
+
// SquareBottomDashedScissors aliases
|
|
4080
|
+
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
4081
|
+
export {
|
|
4082
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. */
|
|
4083
|
+
default as ScissorsSquareDashedBottomIcon
|
|
4084
|
+
} from '../icons/square-bottom-dashed-scissors';
|
|
4063
4085
|
// SquareCenterlineDashedHorizontal aliases
|
|
4064
4086
|
export { default as SquareCenterlineDashedHorizontalIcon } from '../icons/square-centerline-dashed-horizontal';
|
|
4065
4087
|
export {
|
|
4066
4088
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. */
|
|
4067
4089
|
default as FlipHorizontalIcon
|
|
4068
4090
|
} from '../icons/square-centerline-dashed-horizontal';
|
|
4091
|
+
// SquareCenterlineDashedVertical aliases
|
|
4092
|
+
export { default as SquareCenterlineDashedVerticalIcon } from '../icons/square-centerline-dashed-vertical';
|
|
4093
|
+
export {
|
|
4094
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
4095
|
+
default as FlipVerticalIcon
|
|
4096
|
+
} from '../icons/square-centerline-dashed-vertical';
|
|
4069
4097
|
// SquareChartGantt aliases
|
|
4070
4098
|
export { default as SquareChartGanttIcon } from '../icons/square-chart-gantt';
|
|
4071
4099
|
export {
|
|
@@ -4076,12 +4104,6 @@ export {
|
|
|
4076
4104
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. */
|
|
4077
4105
|
default as SquareGanttChartIcon
|
|
4078
4106
|
} from '../icons/square-chart-gantt';
|
|
4079
|
-
// SquareCenterlineDashedVertical aliases
|
|
4080
|
-
export { default as SquareCenterlineDashedVerticalIcon } from '../icons/square-centerline-dashed-vertical';
|
|
4081
|
-
export {
|
|
4082
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
4083
|
-
default as FlipVerticalIcon
|
|
4084
|
-
} from '../icons/square-centerline-dashed-vertical';
|
|
4085
4107
|
// SquareCheckBig aliases
|
|
4086
4108
|
export { default as SquareCheckBigIcon } from '../icons/square-check-big';
|
|
4087
4109
|
export {
|
|
@@ -4100,18 +4122,18 @@ export {
|
|
|
4100
4122
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. */
|
|
4101
4123
|
default as ChevronDownSquareIcon
|
|
4102
4124
|
} from '../icons/square-chevron-down';
|
|
4103
|
-
// SquareChevronRight aliases
|
|
4104
|
-
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
4105
|
-
export {
|
|
4106
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
4107
|
-
default as ChevronRightSquareIcon
|
|
4108
|
-
} from '../icons/square-chevron-right';
|
|
4109
4125
|
// SquareChevronLeft aliases
|
|
4110
4126
|
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
4111
4127
|
export {
|
|
4112
4128
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. */
|
|
4113
4129
|
default as ChevronLeftSquareIcon
|
|
4114
4130
|
} from '../icons/square-chevron-left';
|
|
4131
|
+
// SquareChevronRight aliases
|
|
4132
|
+
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
4133
|
+
export {
|
|
4134
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
4135
|
+
default as ChevronRightSquareIcon
|
|
4136
|
+
} from '../icons/square-chevron-right';
|
|
4115
4137
|
// SquareChevronUp aliases
|
|
4116
4138
|
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
4117
4139
|
export {
|
|
@@ -4130,6 +4152,12 @@ export {
|
|
|
4130
4152
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. */
|
|
4131
4153
|
default as KanbanSquareDashedIcon
|
|
4132
4154
|
} from '../icons/square-dashed-kanban';
|
|
4155
|
+
// SquareDashedMousePointer aliases
|
|
4156
|
+
export { default as SquareDashedMousePointerIcon } from '../icons/square-dashed-mouse-pointer';
|
|
4157
|
+
export {
|
|
4158
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. */
|
|
4159
|
+
default as MousePointerSquareDashedIcon
|
|
4160
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
4133
4161
|
// SquareDashedText aliases
|
|
4134
4162
|
export { default as SquareDashedTextIcon } from '../icons/square-dashed-text';
|
|
4135
4163
|
export {
|
|
@@ -4140,24 +4168,18 @@ export {
|
|
|
4140
4168
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. */
|
|
4141
4169
|
default as TextSelectIcon
|
|
4142
4170
|
} from '../icons/square-dashed-text';
|
|
4143
|
-
//
|
|
4144
|
-
export { default as
|
|
4171
|
+
// SquareDivide aliases
|
|
4172
|
+
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
4145
4173
|
export {
|
|
4146
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4147
|
-
default as
|
|
4148
|
-
} from '../icons/square-
|
|
4174
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. */
|
|
4175
|
+
default as DivideSquareIcon
|
|
4176
|
+
} from '../icons/square-divide';
|
|
4149
4177
|
// SquareDashed aliases
|
|
4150
4178
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
4151
4179
|
export {
|
|
4152
4180
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. */
|
|
4153
4181
|
default as BoxSelectIcon
|
|
4154
4182
|
} from '../icons/square-dashed';
|
|
4155
|
-
// SquareDivide aliases
|
|
4156
|
-
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
4157
|
-
export {
|
|
4158
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. */
|
|
4159
|
-
default as DivideSquareIcon
|
|
4160
|
-
} from '../icons/square-divide';
|
|
4161
4183
|
// SquareDot aliases
|
|
4162
4184
|
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4163
4185
|
export {
|
|
@@ -4194,30 +4216,24 @@ export {
|
|
|
4194
4216
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. */
|
|
4195
4217
|
default as MSquareIcon
|
|
4196
4218
|
} from '../icons/square-m';
|
|
4197
|
-
// SquareMinus aliases
|
|
4198
|
-
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
4199
|
-
export {
|
|
4200
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. */
|
|
4201
|
-
default as MinusSquareIcon
|
|
4202
|
-
} from '../icons/square-minus';
|
|
4203
4219
|
// SquareMenu aliases
|
|
4204
4220
|
export { default as SquareMenuIcon } from '../icons/square-menu';
|
|
4205
4221
|
export {
|
|
4206
4222
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. */
|
|
4207
4223
|
default as MenuSquareIcon
|
|
4208
4224
|
} from '../icons/square-menu';
|
|
4225
|
+
// SquareMinus aliases
|
|
4226
|
+
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
4227
|
+
export {
|
|
4228
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. */
|
|
4229
|
+
default as MinusSquareIcon
|
|
4230
|
+
} from '../icons/square-minus';
|
|
4209
4231
|
// SquareMousePointer aliases
|
|
4210
4232
|
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4211
4233
|
export {
|
|
4212
4234
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. */
|
|
4213
4235
|
default as InspectIcon
|
|
4214
4236
|
} from '../icons/square-mouse-pointer';
|
|
4215
|
-
// SquareParking aliases
|
|
4216
|
-
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
4217
|
-
export {
|
|
4218
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
4219
|
-
default as ParkingSquareIcon
|
|
4220
|
-
} from '../icons/square-parking';
|
|
4221
4237
|
// SquareParkingOff aliases
|
|
4222
4238
|
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
4223
4239
|
export {
|
|
@@ -4238,6 +4254,12 @@ export {
|
|
|
4238
4254
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. */
|
|
4239
4255
|
default as PenSquareIcon
|
|
4240
4256
|
} from '../icons/square-pen';
|
|
4257
|
+
// SquareParking aliases
|
|
4258
|
+
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
4259
|
+
export {
|
|
4260
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
4261
|
+
default as ParkingSquareIcon
|
|
4262
|
+
} from '../icons/square-parking';
|
|
4241
4263
|
// SquarePercent aliases
|
|
4242
4264
|
export { default as SquarePercentIcon } from '../icons/square-percent';
|
|
4243
4265
|
export {
|
|
@@ -4250,30 +4272,30 @@ export {
|
|
|
4250
4272
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. */
|
|
4251
4273
|
default as PiSquareIcon
|
|
4252
4274
|
} from '../icons/square-pi';
|
|
4253
|
-
// SquarePilcrow aliases
|
|
4254
|
-
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4255
|
-
export {
|
|
4256
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
4257
|
-
default as PilcrowSquareIcon
|
|
4258
|
-
} from '../icons/square-pilcrow';
|
|
4259
|
-
// SquarePlus aliases
|
|
4260
|
-
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4261
|
-
export {
|
|
4262
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. */
|
|
4263
|
-
default as PlusSquareIcon
|
|
4264
|
-
} from '../icons/square-plus';
|
|
4265
4275
|
// SquarePlay aliases
|
|
4266
4276
|
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4267
4277
|
export {
|
|
4268
4278
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. */
|
|
4269
4279
|
default as PlaySquareIcon
|
|
4270
4280
|
} from '../icons/square-play';
|
|
4281
|
+
// SquarePilcrow aliases
|
|
4282
|
+
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4283
|
+
export {
|
|
4284
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
4285
|
+
default as PilcrowSquareIcon
|
|
4286
|
+
} from '../icons/square-pilcrow';
|
|
4271
4287
|
// SquarePower aliases
|
|
4272
4288
|
export { default as SquarePowerIcon } from '../icons/square-power';
|
|
4273
4289
|
export {
|
|
4274
4290
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. */
|
|
4275
4291
|
default as PowerSquareIcon
|
|
4276
4292
|
} from '../icons/square-power';
|
|
4293
|
+
// SquarePlus aliases
|
|
4294
|
+
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4295
|
+
export {
|
|
4296
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. */
|
|
4297
|
+
default as PlusSquareIcon
|
|
4298
|
+
} from '../icons/square-plus';
|
|
4277
4299
|
// SquareScissors aliases
|
|
4278
4300
|
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4279
4301
|
export {
|
|
@@ -4286,36 +4308,30 @@ export {
|
|
|
4286
4308
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. */
|
|
4287
4309
|
default as SlashSquareIcon
|
|
4288
4310
|
} from '../icons/square-slash';
|
|
4311
|
+
// SquareSplitHorizontal aliases
|
|
4312
|
+
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4313
|
+
export {
|
|
4314
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. */
|
|
4315
|
+
default as SplitSquareHorizontalIcon
|
|
4316
|
+
} from '../icons/square-split-horizontal';
|
|
4289
4317
|
// SquareSigma aliases
|
|
4290
4318
|
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4291
4319
|
export {
|
|
4292
4320
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. */
|
|
4293
4321
|
default as SigmaSquareIcon
|
|
4294
4322
|
} from '../icons/square-sigma';
|
|
4295
|
-
// SquareTerminal aliases
|
|
4296
|
-
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4297
|
-
export {
|
|
4298
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. */
|
|
4299
|
-
default as TerminalSquareIcon
|
|
4300
|
-
} from '../icons/square-terminal';
|
|
4301
4323
|
// SquareSplitVertical aliases
|
|
4302
4324
|
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4303
4325
|
export {
|
|
4304
4326
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. */
|
|
4305
4327
|
default as SplitSquareVerticalIcon
|
|
4306
4328
|
} from '../icons/square-split-vertical';
|
|
4307
|
-
//
|
|
4308
|
-
export { default as
|
|
4309
|
-
export {
|
|
4310
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. */
|
|
4311
|
-
default as SplitSquareHorizontalIcon
|
|
4312
|
-
} from '../icons/square-split-horizontal';
|
|
4313
|
-
// SquareUser aliases
|
|
4314
|
-
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4329
|
+
// SquareTerminal aliases
|
|
4330
|
+
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4315
4331
|
export {
|
|
4316
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4317
|
-
default as
|
|
4318
|
-
} from '../icons/square-
|
|
4332
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. */
|
|
4333
|
+
default as TerminalSquareIcon
|
|
4334
|
+
} from '../icons/square-terminal';
|
|
4319
4335
|
// SquareUserRound aliases
|
|
4320
4336
|
export { default as SquareUserRoundIcon } from '../icons/square-user-round';
|
|
4321
4337
|
export {
|
|
@@ -4328,6 +4344,12 @@ export {
|
|
|
4328
4344
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. */
|
|
4329
4345
|
default as XSquareIcon
|
|
4330
4346
|
} from '../icons/square-x';
|
|
4347
|
+
// SquareUser aliases
|
|
4348
|
+
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4349
|
+
export {
|
|
4350
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. */
|
|
4351
|
+
default as UserSquareIcon
|
|
4352
|
+
} from '../icons/square-user';
|
|
4331
4353
|
// TestTubeDiagonal aliases
|
|
4332
4354
|
export { default as TestTubeDiagonalIcon } from '../icons/test-tube-diagonal';
|
|
4333
4355
|
export {
|
|
@@ -4352,18 +4374,6 @@ export {
|
|
|
4352
4374
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. */
|
|
4353
4375
|
default as AlignJustifyIcon
|
|
4354
4376
|
} from '../icons/text-align-justify';
|
|
4355
|
-
// TextInitial aliases
|
|
4356
|
-
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4357
|
-
export {
|
|
4358
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. */
|
|
4359
|
-
default as LetterTextIcon
|
|
4360
|
-
} from '../icons/text-initial';
|
|
4361
|
-
// TramFront aliases
|
|
4362
|
-
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4363
|
-
export {
|
|
4364
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. */
|
|
4365
|
-
default as TrainIcon
|
|
4366
|
-
} from '../icons/tram-front';
|
|
4367
4377
|
// TextAlignStart aliases
|
|
4368
4378
|
export { default as TextAlignStartIcon } from '../icons/text-align-start';
|
|
4369
4379
|
export {
|
|
@@ -4374,24 +4384,36 @@ export {
|
|
|
4374
4384
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. */
|
|
4375
4385
|
default as AlignLeftIcon
|
|
4376
4386
|
} from '../icons/text-align-start';
|
|
4387
|
+
// TextInitial aliases
|
|
4388
|
+
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4389
|
+
export {
|
|
4390
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. */
|
|
4391
|
+
default as LetterTextIcon
|
|
4392
|
+
} from '../icons/text-initial';
|
|
4377
4393
|
// TextWrap aliases
|
|
4378
4394
|
export { default as TextWrapIcon } from '../icons/text-wrap';
|
|
4379
4395
|
export {
|
|
4380
4396
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. */
|
|
4381
4397
|
default as WrapTextIcon
|
|
4382
4398
|
} from '../icons/text-wrap';
|
|
4383
|
-
//
|
|
4384
|
-
export { default as
|
|
4399
|
+
// TramFront aliases
|
|
4400
|
+
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4385
4401
|
export {
|
|
4386
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4387
|
-
default as
|
|
4388
|
-
} from '../icons/
|
|
4402
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. */
|
|
4403
|
+
default as TrainIcon
|
|
4404
|
+
} from '../icons/tram-front';
|
|
4389
4405
|
// TriangleAlert aliases
|
|
4390
4406
|
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4391
4407
|
export {
|
|
4392
4408
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. */
|
|
4393
4409
|
default as AlertTriangleIcon
|
|
4394
4410
|
} from '../icons/triangle-alert';
|
|
4411
|
+
// TreePalm aliases
|
|
4412
|
+
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4413
|
+
export {
|
|
4414
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. */
|
|
4415
|
+
default as PalmtreeIcon
|
|
4416
|
+
} from '../icons/tree-palm';
|
|
4395
4417
|
// TvMinimal aliases
|
|
4396
4418
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
4397
4419
|
export {
|
|
@@ -4434,24 +4456,24 @@ export {
|
|
|
4434
4456
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. */
|
|
4435
4457
|
default as UserX2Icon
|
|
4436
4458
|
} from '../icons/user-round-x';
|
|
4437
|
-
//
|
|
4438
|
-
export { default as
|
|
4459
|
+
// UtensilsCrossed aliases
|
|
4460
|
+
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4439
4461
|
export {
|
|
4440
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4441
|
-
default as
|
|
4442
|
-
} from '../icons/
|
|
4462
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. */
|
|
4463
|
+
default as ForkKnifeCrossedIcon
|
|
4464
|
+
} from '../icons/utensils-crossed';
|
|
4443
4465
|
// UsersRound aliases
|
|
4444
4466
|
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
4445
4467
|
export {
|
|
4446
4468
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. */
|
|
4447
4469
|
default as Users2Icon
|
|
4448
4470
|
} from '../icons/users-round';
|
|
4449
|
-
//
|
|
4450
|
-
export { default as
|
|
4471
|
+
// UserRound aliases
|
|
4472
|
+
export { default as UserRoundIcon } from '../icons/user-round';
|
|
4451
4473
|
export {
|
|
4452
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4453
|
-
default as
|
|
4454
|
-
} from '../icons/
|
|
4474
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. */
|
|
4475
|
+
default as User2Icon
|
|
4476
|
+
} from '../icons/user-round';
|
|
4455
4477
|
// Utensils aliases
|
|
4456
4478
|
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4457
4479
|
export {
|