@lucide/astro 1.29.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/aliases/aliases.ts +143 -101
- package/src/aliases/prefixed.ts +739 -697
- package/src/aliases/suffixed.ts +1078 -1036
- package/src/icons/{annoyed.ts → angle.ts} +4 -4
- package/src/icons/{smile-plus.ts → audio-lines-x.ts} +4 -4
- package/src/icons/broom-sparkles.ts +18 -0
- package/src/icons/broom.ts +18 -0
- package/src/icons/{smile.ts → eject.ts} +4 -4
- package/src/icons/face-angry.ts +18 -0
- package/src/icons/{meh.ts → face-expressionless.ts} +4 -4
- package/src/icons/{laugh.ts → face-grinning.ts} +4 -4
- package/src/icons/{frown.ts → face-neutral.ts} +4 -4
- package/src/icons/face-slightly-frowning.ts +18 -0
- package/src/icons/face-slightly-smiling-plus.ts +18 -0
- package/src/icons/face-slightly-smiling.ts +18 -0
- package/src/icons/index.ts +245 -238
- package/src/icons/mail-badge.ts +18 -0
- package/src/icons/shield-lock.ts +18 -0
- package/src/icons/angry.ts +0 -18
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
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
|
-
// Activity aliases
|
|
10
|
-
export { default as ActivityIcon } from '../icons/activity';
|
|
11
9
|
// Ad aliases
|
|
12
10
|
export { default as AdIcon } from '../icons/ad';
|
|
11
|
+
// Activity aliases
|
|
12
|
+
export { default as ActivityIcon } from '../icons/activity';
|
|
13
13
|
// Airplay aliases
|
|
14
14
|
export { default as AirplayIcon } from '../icons/airplay';
|
|
15
15
|
// AirVent aliases
|
|
16
16
|
export { default as AirVentIcon } from '../icons/air-vent';
|
|
17
|
+
// AlarmClockOff aliases
|
|
18
|
+
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
17
19
|
// AlarmClock aliases
|
|
18
20
|
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
19
21
|
// AlarmSmoke aliases
|
|
20
22
|
export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
21
23
|
// Album aliases
|
|
22
24
|
export { default as AlbumIcon } from '../icons/album';
|
|
23
|
-
// AlarmClockOff aliases
|
|
24
|
-
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
25
25
|
// AlignCenterHorizontal aliases
|
|
26
26
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
27
27
|
// AlignCenterVertical aliases
|
|
28
28
|
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
29
29
|
// AlignEndHorizontal aliases
|
|
30
30
|
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
31
|
+
// AlignHorizontalDistributeCenter aliases
|
|
32
|
+
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
31
33
|
// AlignEndVertical aliases
|
|
32
34
|
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
33
35
|
// AlignHorizontalDistributeEnd aliases
|
|
34
36
|
export { default as AlignHorizontalDistributeEndIcon } from '../icons/align-horizontal-distribute-end';
|
|
35
|
-
// AlignHorizontalDistributeCenter aliases
|
|
36
|
-
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
37
37
|
// AlignHorizontalDistributeStart aliases
|
|
38
38
|
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
39
39
|
// AlignHorizontalJustifyCenter aliases
|
|
40
40
|
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
41
|
-
// AlignHorizontalJustifyEnd aliases
|
|
42
|
-
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
43
41
|
// AlignHorizontalJustifyStart aliases
|
|
44
42
|
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
43
|
+
// AlignHorizontalJustifyEnd aliases
|
|
44
|
+
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
45
45
|
// AlignHorizontalSpaceAround aliases
|
|
46
46
|
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
47
47
|
// AlignHorizontalSpaceBetween aliases
|
|
@@ -54,12 +54,12 @@ export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical
|
|
|
54
54
|
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
55
55
|
// AlignVerticalDistributeEnd aliases
|
|
56
56
|
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
57
|
+
// AlignVerticalJustifyCenter aliases
|
|
58
|
+
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
57
59
|
// AlignVerticalDistributeStart aliases
|
|
58
60
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
59
61
|
// AlignVerticalJustifyEnd aliases
|
|
60
62
|
export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-justify-end';
|
|
61
|
-
// AlignVerticalJustifyCenter aliases
|
|
62
|
-
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
63
63
|
// AlignVerticalJustifyStart aliases
|
|
64
64
|
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
65
65
|
// AlignVerticalSpaceAround aliases
|
|
@@ -68,38 +68,36 @@ export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical
|
|
|
68
68
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
69
69
|
// Ambulance aliases
|
|
70
70
|
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
71
|
-
// Ampersands aliases
|
|
72
|
-
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
73
71
|
// Ampersand aliases
|
|
74
72
|
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
73
|
+
// Ampersands aliases
|
|
74
|
+
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
75
75
|
// Amphora aliases
|
|
76
76
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
77
77
|
// Anchor aliases
|
|
78
78
|
export { default as AnchorIcon } from '../icons/anchor';
|
|
79
|
-
//
|
|
80
|
-
export { default as
|
|
81
|
-
// Angry aliases
|
|
82
|
-
export { default as AngryIcon } from '../icons/angry';
|
|
83
|
-
// Anvil aliases
|
|
84
|
-
export { default as AnvilIcon } from '../icons/anvil';
|
|
85
|
-
// Aperture aliases
|
|
86
|
-
export { default as ApertureIcon } from '../icons/aperture';
|
|
79
|
+
// Angle aliases
|
|
80
|
+
export { default as AngleIcon } from '../icons/angle';
|
|
87
81
|
// Antenna aliases
|
|
88
82
|
export { default as AntennaIcon } from '../icons/antenna';
|
|
83
|
+
// Aperture aliases
|
|
84
|
+
export { default as ApertureIcon } from '../icons/aperture';
|
|
85
|
+
// Anvil aliases
|
|
86
|
+
export { default as AnvilIcon } from '../icons/anvil';
|
|
89
87
|
// AppWindowMac aliases
|
|
90
88
|
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
91
|
-
// ArchiveRestore aliases
|
|
92
|
-
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
93
|
-
// Archive aliases
|
|
94
|
-
export { default as ArchiveIcon } from '../icons/archive';
|
|
95
89
|
// AppWindow aliases
|
|
96
90
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
91
|
+
// ArchiveRestore aliases
|
|
92
|
+
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
97
93
|
// ArchiveX aliases
|
|
98
94
|
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
99
|
-
// Armchair aliases
|
|
100
|
-
export { default as ArmchairIcon } from '../icons/armchair';
|
|
101
95
|
// Apple aliases
|
|
102
96
|
export { default as AppleIcon } from '../icons/apple';
|
|
97
|
+
// Archive aliases
|
|
98
|
+
export { default as ArchiveIcon } from '../icons/archive';
|
|
99
|
+
// Armchair aliases
|
|
100
|
+
export { default as ArmchairIcon } from '../icons/armchair';
|
|
103
101
|
// ArrowBigDownDash aliases
|
|
104
102
|
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
105
103
|
// ArrowBigDown aliases
|
|
@@ -108,36 +106,36 @@ export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
|
108
106
|
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
109
107
|
// ArrowBigLeft aliases
|
|
110
108
|
export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
111
|
-
// ArrowBigRight aliases
|
|
112
|
-
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
113
109
|
// ArrowBigRightDash aliases
|
|
114
110
|
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
111
|
+
// ArrowBigRight aliases
|
|
112
|
+
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
115
113
|
// ArrowBigUp aliases
|
|
116
114
|
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
115
|
+
// ArrowDownFromLine aliases
|
|
116
|
+
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
117
117
|
// ArrowBigUpDash aliases
|
|
118
118
|
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
119
119
|
// ArrowDownLeft aliases
|
|
120
120
|
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
121
|
-
// ArrowDownFromLine aliases
|
|
122
|
-
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
123
|
-
// ArrowDownNarrowWide aliases
|
|
124
|
-
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
125
121
|
// ArrowDownRight aliases
|
|
126
122
|
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
127
123
|
// ArrowDownToDot aliases
|
|
128
124
|
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
125
|
+
// ArrowDownNarrowWide aliases
|
|
126
|
+
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
127
|
+
// ArrowDownToLine aliases
|
|
128
|
+
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
129
129
|
// ArrowDownUp aliases
|
|
130
130
|
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
131
131
|
// ArrowDown aliases
|
|
132
132
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
133
|
-
// ArrowDownToLine aliases
|
|
134
|
-
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
135
133
|
// ArrowLeftFromLine aliases
|
|
136
134
|
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
137
|
-
// ArrowLeftToLine aliases
|
|
138
|
-
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
139
135
|
// ArrowLeftRight aliases
|
|
140
136
|
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
137
|
+
// ArrowLeftToLine aliases
|
|
138
|
+
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
141
139
|
// ArrowLeft aliases
|
|
142
140
|
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
143
141
|
// ArrowRightFromLine aliases
|
|
@@ -146,6 +144,8 @@ export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-lin
|
|
|
146
144
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
147
145
|
// ArrowRightToLine aliases
|
|
148
146
|
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
147
|
+
// ArrowUpFromDot aliases
|
|
148
|
+
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
149
149
|
// ArrowRight aliases
|
|
150
150
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
151
151
|
// ArrowUpDown aliases
|
|
@@ -154,34 +154,34 @@ export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
|
154
154
|
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
155
155
|
// ArrowUpLeft aliases
|
|
156
156
|
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
157
|
-
// ArrowUpFromDot aliases
|
|
158
|
-
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
159
157
|
// ArrowUpRight aliases
|
|
160
158
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
161
159
|
// ArrowUpToLine aliases
|
|
162
160
|
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
163
|
-
// ArrowUp aliases
|
|
164
|
-
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
165
161
|
// ArrowUpWideNarrow aliases
|
|
166
162
|
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
163
|
+
// ArrowUp aliases
|
|
164
|
+
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
167
165
|
// ArrowsUpFromLine aliases
|
|
168
166
|
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
169
|
-
// Astroid aliases
|
|
170
|
-
export { default as AstroidIcon } from '../icons/astroid';
|
|
171
167
|
// Asterisk aliases
|
|
172
168
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
169
|
+
// Astroid aliases
|
|
170
|
+
export { default as AstroidIcon } from '../icons/astroid';
|
|
173
171
|
// AtSign aliases
|
|
174
172
|
export { default as AtSignIcon } from '../icons/at-sign';
|
|
175
173
|
// Atom aliases
|
|
176
174
|
export { default as AtomIcon } from '../icons/atom';
|
|
175
|
+
// AudioLinesX aliases
|
|
176
|
+
export { default as AudioLinesXIcon } from '../icons/audio-lines-x';
|
|
177
177
|
// AudioLines aliases
|
|
178
178
|
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
179
|
-
// Award aliases
|
|
180
|
-
export { default as AwardIcon } from '../icons/award';
|
|
181
|
-
// Axe aliases
|
|
182
|
-
export { default as AxeIcon } from '../icons/axe';
|
|
183
179
|
// AudioWaveform aliases
|
|
184
180
|
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
181
|
+
// Axe aliases
|
|
182
|
+
export { default as AxeIcon } from '../icons/axe';
|
|
183
|
+
// Award aliases
|
|
184
|
+
export { default as AwardIcon } from '../icons/award';
|
|
185
185
|
// Baby aliases
|
|
186
186
|
export { default as BabyIcon } from '../icons/baby';
|
|
187
187
|
// Backpack aliases
|
|
@@ -190,54 +190,54 @@ export { default as BackpackIcon } from '../icons/backpack';
|
|
|
190
190
|
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
191
191
|
// BadgeDollarSign aliases
|
|
192
192
|
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
193
|
-
// BadgeEuro aliases
|
|
194
|
-
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
195
193
|
// BadgeCent aliases
|
|
196
194
|
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
195
|
+
// BadgeEuro aliases
|
|
196
|
+
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
197
197
|
// BadgeIndianRupee aliases
|
|
198
198
|
export { default as BadgeIndianRupeeIcon } from '../icons/badge-indian-rupee';
|
|
199
199
|
// BadgeInfo aliases
|
|
200
200
|
export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
201
201
|
// BadgeJapaneseYen aliases
|
|
202
202
|
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
203
|
-
// BadgeMinus aliases
|
|
204
|
-
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
205
203
|
// BadgePercent aliases
|
|
206
204
|
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
207
205
|
// BadgePlus aliases
|
|
208
206
|
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
207
|
+
// BadgeMinus aliases
|
|
208
|
+
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
209
209
|
// BadgePoundSterling aliases
|
|
210
210
|
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
211
|
+
// BadgeRussianRuble aliases
|
|
212
|
+
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
211
213
|
// BadgeSwissFranc aliases
|
|
212
214
|
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
213
215
|
// BadgeTurkishLira aliases
|
|
214
216
|
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
215
|
-
// BadgeRussianRuble aliases
|
|
216
|
-
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
217
217
|
// BadgeX aliases
|
|
218
218
|
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
219
219
|
// Badge aliases
|
|
220
220
|
export { default as BadgeIcon } from '../icons/badge';
|
|
221
221
|
// BaggageClaim aliases
|
|
222
222
|
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
223
|
-
// Ban aliases
|
|
224
|
-
export { default as BanIcon } from '../icons/ban';
|
|
225
223
|
// Balloon aliases
|
|
226
224
|
export { default as BalloonIcon } from '../icons/balloon';
|
|
227
225
|
// Banana aliases
|
|
228
226
|
export { default as BananaIcon } from '../icons/banana';
|
|
229
227
|
// Bandage aliases
|
|
230
228
|
export { default as BandageIcon } from '../icons/bandage';
|
|
231
|
-
//
|
|
232
|
-
export { default as
|
|
229
|
+
// Ban aliases
|
|
230
|
+
export { default as BanIcon } from '../icons/ban';
|
|
233
231
|
// BanknoteArrowDown aliases
|
|
234
232
|
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
233
|
+
// BanknoteArrowUp aliases
|
|
234
|
+
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
235
|
+
// BanknoteCheck aliases
|
|
236
|
+
export { default as BanknoteCheckIcon } from '../icons/banknote-check';
|
|
235
237
|
// BanknoteX aliases
|
|
236
238
|
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
237
239
|
// Banknote aliases
|
|
238
240
|
export { default as BanknoteIcon } from '../icons/banknote';
|
|
239
|
-
// BanknoteCheck aliases
|
|
240
|
-
export { default as BanknoteCheckIcon } from '../icons/banknote-check';
|
|
241
241
|
// Barcode aliases
|
|
242
242
|
export { default as BarcodeIcon } from '../icons/barcode';
|
|
243
243
|
// Barrel aliases
|
|
@@ -256,68 +256,68 @@ export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
|
256
256
|
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
257
257
|
// BatteryPlus aliases
|
|
258
258
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
259
|
-
// Battery aliases
|
|
260
|
-
export { default as BatteryIcon } from '../icons/battery';
|
|
261
259
|
// BatteryWarning aliases
|
|
262
260
|
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
263
|
-
//
|
|
264
|
-
export { default as
|
|
265
|
-
// Bean aliases
|
|
266
|
-
export { default as BeanIcon } from '../icons/bean';
|
|
261
|
+
// Battery aliases
|
|
262
|
+
export { default as BatteryIcon } from '../icons/battery';
|
|
267
263
|
// Beaker aliases
|
|
268
264
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
269
|
-
//
|
|
270
|
-
export { default as
|
|
265
|
+
// Bean aliases
|
|
266
|
+
export { default as BeanIcon } from '../icons/bean';
|
|
267
|
+
// BeanOff aliases
|
|
268
|
+
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
271
269
|
// BedSingle aliases
|
|
272
270
|
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
271
|
+
// BedDouble aliases
|
|
272
|
+
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
273
273
|
// BeefOff aliases
|
|
274
274
|
export { default as BeefOffIcon } from '../icons/beef-off';
|
|
275
|
-
// Bed aliases
|
|
276
|
-
export { default as BedIcon } from '../icons/bed';
|
|
277
275
|
// Beef aliases
|
|
278
276
|
export { default as BeefIcon } from '../icons/beef';
|
|
279
|
-
//
|
|
280
|
-
export { default as
|
|
281
|
-
// BellDot aliases
|
|
282
|
-
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
277
|
+
// Bed aliases
|
|
278
|
+
export { default as BedIcon } from '../icons/bed';
|
|
283
279
|
// BeerOff aliases
|
|
284
280
|
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
281
|
+
// Beer aliases
|
|
282
|
+
export { default as BeerIcon } from '../icons/beer';
|
|
285
283
|
// BellCheck aliases
|
|
286
284
|
export { default as BellCheckIcon } from '../icons/bell-check';
|
|
285
|
+
// BellDot aliases
|
|
286
|
+
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
287
287
|
// BellElectric aliases
|
|
288
288
|
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
289
289
|
// BellMinus aliases
|
|
290
290
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
291
|
+
// BellPlus aliases
|
|
292
|
+
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
291
293
|
// BellOff aliases
|
|
292
294
|
export { default as BellOffIcon } from '../icons/bell-off';
|
|
293
295
|
// BellRing aliases
|
|
294
296
|
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
295
|
-
// BellPlus aliases
|
|
296
|
-
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
297
|
-
// BetweenVerticalEnd aliases
|
|
298
|
-
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
299
297
|
// Bell aliases
|
|
300
298
|
export { default as BellIcon } from '../icons/bell';
|
|
299
|
+
// BetweenVerticalEnd aliases
|
|
300
|
+
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
301
301
|
// BetweenVerticalStart aliases
|
|
302
302
|
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
303
|
-
// BicepsFlexed aliases
|
|
304
|
-
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
305
303
|
// Bike aliases
|
|
306
304
|
export { default as BikeIcon } from '../icons/bike';
|
|
307
|
-
//
|
|
308
|
-
export { default as
|
|
305
|
+
// BicepsFlexed aliases
|
|
306
|
+
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
309
307
|
// Binary aliases
|
|
310
308
|
export { default as BinaryIcon } from '../icons/binary';
|
|
309
|
+
// Binoculars aliases
|
|
310
|
+
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
311
311
|
// Biohazard aliases
|
|
312
312
|
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
313
313
|
// Bird aliases
|
|
314
314
|
export { default as BirdIcon } from '../icons/bird';
|
|
315
315
|
// Birdhouse aliases
|
|
316
316
|
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
317
|
-
// Blend aliases
|
|
318
|
-
export { default as BlendIcon } from '../icons/blend';
|
|
319
317
|
// Bitcoin aliases
|
|
320
318
|
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
319
|
+
// Blend aliases
|
|
320
|
+
export { default as BlendIcon } from '../icons/blend';
|
|
321
321
|
// Blender aliases
|
|
322
322
|
export { default as BlenderIcon } from '../icons/blender';
|
|
323
323
|
// Blinds aliases
|
|
@@ -328,12 +328,12 @@ export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected'
|
|
|
328
328
|
export { default as BlocksIcon } from '../icons/blocks';
|
|
329
329
|
// BluetoothOff aliases
|
|
330
330
|
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
331
|
-
// Bold aliases
|
|
332
|
-
export { default as BoldIcon } from '../icons/bold';
|
|
333
331
|
// BluetoothSearching aliases
|
|
334
332
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
335
333
|
// Bluetooth aliases
|
|
336
334
|
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
335
|
+
// Bold aliases
|
|
336
|
+
export { default as BoldIcon } from '../icons/bold';
|
|
337
337
|
// Bolt aliases
|
|
338
338
|
export { default as BoltIcon } from '../icons/bolt';
|
|
339
339
|
// Bomb aliases
|
|
@@ -346,10 +346,10 @@ export { default as BoneIcon } from '../icons/bone';
|
|
|
346
346
|
export { default as BookAIcon } from '../icons/book-a';
|
|
347
347
|
// BookAlert aliases
|
|
348
348
|
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
349
|
-
// BookAudio aliases
|
|
350
|
-
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
351
349
|
// BookCheck aliases
|
|
352
350
|
export { default as BookCheckIcon } from '../icons/book-check';
|
|
351
|
+
// BookAudio aliases
|
|
352
|
+
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
353
353
|
// BookCopy aliases
|
|
354
354
|
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
355
355
|
// BookDown aliases
|
|
@@ -358,34 +358,34 @@ export { default as BookDownIcon } from '../icons/book-down';
|
|
|
358
358
|
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
359
359
|
// BookHeart aliases
|
|
360
360
|
export { default as BookHeartIcon } from '../icons/book-heart';
|
|
361
|
-
// BookLock aliases
|
|
362
|
-
export { default as BookLockIcon } from '../icons/book-lock';
|
|
363
361
|
// BookImage aliases
|
|
364
362
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
365
|
-
//
|
|
366
|
-
export { default as
|
|
363
|
+
// BookLock aliases
|
|
364
|
+
export { default as BookLockIcon } from '../icons/book-lock';
|
|
367
365
|
// BookKey aliases
|
|
368
366
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
369
|
-
//
|
|
370
|
-
export { default as
|
|
367
|
+
// BookMarked aliases
|
|
368
|
+
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
371
369
|
// BookOpenCheck aliases
|
|
372
370
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
373
|
-
//
|
|
374
|
-
export { default as
|
|
371
|
+
// BookMinus aliases
|
|
372
|
+
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
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
|
|
380
380
|
export { default as BookSearchIcon } from '../icons/book-search';
|
|
381
381
|
// BookText aliases
|
|
382
382
|
export { default as BookTextIcon } from '../icons/book-text';
|
|
383
|
+
// BookType aliases
|
|
384
|
+
export { default as BookTypeIcon } from '../icons/book-type';
|
|
383
385
|
// BookUp2 aliases
|
|
384
386
|
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
385
387
|
// BookUp aliases
|
|
386
388
|
export { default as BookUpIcon } from '../icons/book-up';
|
|
387
|
-
// BookType aliases
|
|
388
|
-
export { default as BookTypeIcon } from '../icons/book-type';
|
|
389
389
|
// BookUser aliases
|
|
390
390
|
export { default as BookUserIcon } from '../icons/book-user';
|
|
391
391
|
// BookX aliases
|
|
@@ -394,16 +394,16 @@ export { default as BookXIcon } from '../icons/book-x';
|
|
|
394
394
|
export { default as BookIcon } from '../icons/book';
|
|
395
395
|
// BookmarkCheck aliases
|
|
396
396
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
397
|
-
// BookmarkOff aliases
|
|
398
|
-
export { default as BookmarkOffIcon } from '../icons/bookmark-off';
|
|
399
397
|
// BookmarkMinus aliases
|
|
400
398
|
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
399
|
+
// BookmarkOff aliases
|
|
400
|
+
export { default as BookmarkOffIcon } from '../icons/bookmark-off';
|
|
401
401
|
// BookmarkPlus aliases
|
|
402
402
|
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
403
|
-
// Bookmark aliases
|
|
404
|
-
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
405
403
|
// BookmarkX aliases
|
|
406
404
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
405
|
+
// Bookmark aliases
|
|
406
|
+
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
407
407
|
// BoomBox aliases
|
|
408
408
|
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
409
409
|
// BotMessageSquare aliases
|
|
@@ -412,8 +412,6 @@ export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
|
412
412
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
413
413
|
// Bot aliases
|
|
414
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
417
|
// Box aliases
|
|
@@ -424,10 +422,12 @@ export { default as BoxesIcon } from '../icons/boxes';
|
|
|
424
422
|
export { default as BracketsIcon } from '../icons/brackets';
|
|
425
423
|
// BrainCircuit aliases
|
|
426
424
|
export { default as BrainCircuitIcon } from '../icons/brain-circuit';
|
|
427
|
-
//
|
|
428
|
-
export { default as
|
|
425
|
+
// BowArrow aliases
|
|
426
|
+
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
429
427
|
// BrainCog aliases
|
|
430
428
|
export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
429
|
+
// Brain aliases
|
|
430
|
+
export { default as BrainIcon } from '../icons/brain';
|
|
431
431
|
// BrickWallFire aliases
|
|
432
432
|
export { default as BrickWallFireIcon } from '../icons/brick-wall-fire';
|
|
433
433
|
// BrickWallShield aliases
|
|
@@ -442,46 +442,50 @@ export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyo
|
|
|
442
442
|
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
443
443
|
// Briefcase aliases
|
|
444
444
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
445
|
-
// Brush aliases
|
|
446
|
-
export { default as BrushIcon } from '../icons/brush';
|
|
447
445
|
// BringToFront aliases
|
|
448
446
|
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
449
447
|
// Broccoli aliases
|
|
450
448
|
export { default as BroccoliIcon } from '../icons/broccoli';
|
|
451
|
-
//
|
|
452
|
-
export { default as
|
|
449
|
+
// BroomSparkles aliases
|
|
450
|
+
export { default as BroomSparklesIcon } from '../icons/broom-sparkles';
|
|
451
|
+
// Broom aliases
|
|
452
|
+
export { default as BroomIcon } from '../icons/broom';
|
|
453
453
|
// BrushCleaning aliases
|
|
454
454
|
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
455
|
-
//
|
|
456
|
-
export { default as
|
|
457
|
-
//
|
|
458
|
-
export { default as
|
|
455
|
+
// Brush aliases
|
|
456
|
+
export { default as BrushIcon } from '../icons/brush';
|
|
457
|
+
// Bubbles aliases
|
|
458
|
+
export { default as BubblesIcon } from '../icons/bubbles';
|
|
459
459
|
// BugPlay aliases
|
|
460
460
|
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
461
|
+
// BugOff aliases
|
|
462
|
+
export { default as BugOffIcon } from '../icons/bug-off';
|
|
461
463
|
// Building2 aliases
|
|
462
464
|
export { default as Building2Icon } from '../icons/building-2';
|
|
463
|
-
//
|
|
464
|
-
export { default as
|
|
465
|
+
// Bug aliases
|
|
466
|
+
export { default as BugIcon } from '../icons/bug';
|
|
465
467
|
// Building aliases
|
|
466
468
|
export { default as BuildingIcon } from '../icons/building';
|
|
469
|
+
// BusFront aliases
|
|
470
|
+
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
467
471
|
// Bus aliases
|
|
468
472
|
export { default as BusIcon } from '../icons/bus';
|
|
469
473
|
// CableCar aliases
|
|
470
474
|
export { default as CableCarIcon } from '../icons/cable-car';
|
|
471
|
-
// Cable aliases
|
|
472
|
-
export { default as CableIcon } from '../icons/cable';
|
|
473
475
|
// CakeSlice aliases
|
|
474
476
|
export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
477
|
+
// Cable aliases
|
|
478
|
+
export { default as CableIcon } from '../icons/cable';
|
|
475
479
|
// Cake aliases
|
|
476
480
|
export { default as CakeIcon } from '../icons/cake';
|
|
477
|
-
// Calendar1 aliases
|
|
478
|
-
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
479
481
|
// Calculator aliases
|
|
480
482
|
export { default as CalculatorIcon } from '../icons/calculator';
|
|
481
|
-
//
|
|
482
|
-
export { default as
|
|
483
|
+
// Calendar1 aliases
|
|
484
|
+
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
483
485
|
// CalendarArrowDown aliases
|
|
484
486
|
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
487
|
+
// CalendarArrowUp aliases
|
|
488
|
+
export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
485
489
|
// CalendarCheck aliases
|
|
486
490
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
487
491
|
// CalendarCheck2 aliases
|
|
@@ -506,10 +510,10 @@ export { default as CalendarMinusIcon } from '../icons/calendar-minus';
|
|
|
506
510
|
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
507
511
|
// CalendarPlus aliases
|
|
508
512
|
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
509
|
-
// CalendarSearch aliases
|
|
510
|
-
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
511
513
|
// CalendarRange aliases
|
|
512
514
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
515
|
+
// CalendarSearch aliases
|
|
516
|
+
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
513
517
|
// CalendarSync aliases
|
|
514
518
|
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
515
519
|
// CalendarX2 aliases
|
|
@@ -518,32 +522,32 @@ export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
|
518
522
|
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
519
523
|
// Calendar aliases
|
|
520
524
|
export { default as CalendarIcon } from '../icons/calendar';
|
|
521
|
-
// Camera aliases
|
|
522
|
-
export { default as CameraIcon } from '../icons/camera';
|
|
523
525
|
// Calendars aliases
|
|
524
526
|
export { default as CalendarsIcon } from '../icons/calendars';
|
|
525
527
|
// CameraOff aliases
|
|
526
528
|
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
527
529
|
// CandyCane aliases
|
|
528
530
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
531
|
+
// Camera aliases
|
|
532
|
+
export { default as CameraIcon } from '../icons/camera';
|
|
529
533
|
// CandyOff aliases
|
|
530
534
|
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
531
|
-
// Candy aliases
|
|
532
|
-
export { default as CandyIcon } from '../icons/candy';
|
|
533
535
|
// CannabisOff aliases
|
|
534
536
|
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
537
|
+
// Candy aliases
|
|
538
|
+
export { default as CandyIcon } from '../icons/candy';
|
|
535
539
|
// Cannabis aliases
|
|
536
540
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
537
541
|
// CaptionsOff aliases
|
|
538
542
|
export { default as CaptionsOffIcon } from '../icons/captions-off';
|
|
543
|
+
// CarTaxiFront aliases
|
|
544
|
+
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
539
545
|
// CarFront aliases
|
|
540
546
|
export { default as CarFrontIcon } from '../icons/car-front';
|
|
541
|
-
// Car aliases
|
|
542
|
-
export { default as CarIcon } from '../icons/car';
|
|
543
547
|
// Caravan aliases
|
|
544
548
|
export { default as CaravanIcon } from '../icons/caravan';
|
|
545
|
-
//
|
|
546
|
-
export { default as
|
|
549
|
+
// Car aliases
|
|
550
|
+
export { default as CarIcon } from '../icons/car';
|
|
547
551
|
// CardSim aliases
|
|
548
552
|
export { default as CardSimIcon } from '../icons/card-sim';
|
|
549
553
|
// Carrot aliases
|
|
@@ -556,32 +560,32 @@ export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
|
556
560
|
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
557
561
|
// CassetteTape aliases
|
|
558
562
|
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
559
|
-
// Cast aliases
|
|
560
|
-
export { default as CastIcon } from '../icons/cast';
|
|
561
563
|
// Castle aliases
|
|
562
564
|
export { default as CastleIcon } from '../icons/castle';
|
|
565
|
+
// Cast aliases
|
|
566
|
+
export { default as CastIcon } from '../icons/cast';
|
|
563
567
|
// Cat aliases
|
|
564
568
|
export { default as CatIcon } from '../icons/cat';
|
|
565
|
-
// ChartBarIncreasing aliases
|
|
566
|
-
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
567
|
-
// Cctv aliases
|
|
568
|
-
export { default as CctvIcon } from '../icons/cctv';
|
|
569
569
|
// CctvOff aliases
|
|
570
570
|
export { default as CctvOffIcon } from '../icons/cctv-off';
|
|
571
|
+
// Cctv aliases
|
|
572
|
+
export { default as CctvIcon } from '../icons/cctv';
|
|
571
573
|
// ChartBarDecreasing aliases
|
|
572
574
|
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
573
|
-
//
|
|
574
|
-
export { default as
|
|
575
|
+
// ChartBarIncreasing aliases
|
|
576
|
+
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
575
577
|
// ChartColumnDecreasing aliases
|
|
576
578
|
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
579
|
+
// ChartBarStacked aliases
|
|
580
|
+
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
577
581
|
// ChartColumnStacked aliases
|
|
578
582
|
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
579
583
|
// ChartGantt aliases
|
|
580
584
|
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
581
|
-
// ChartNoAxesColumnDecreasing aliases
|
|
582
|
-
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
583
585
|
// ChartNetwork aliases
|
|
584
586
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
587
|
+
// ChartNoAxesColumnDecreasing aliases
|
|
588
|
+
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
585
589
|
// ChartNoAxesCombined aliases
|
|
586
590
|
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
587
591
|
// ChartSpline aliases
|
|
@@ -592,16 +596,16 @@ export { default as CheckCheckIcon } from '../icons/check-check';
|
|
|
592
596
|
export { default as CheckLineIcon } from '../icons/check-line';
|
|
593
597
|
// ChefHat aliases
|
|
594
598
|
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
595
|
-
// Cherry aliases
|
|
596
|
-
export { default as CherryIcon } from '../icons/cherry';
|
|
597
599
|
// Check aliases
|
|
598
600
|
export { default as CheckIcon } from '../icons/check';
|
|
601
|
+
// Cherry aliases
|
|
602
|
+
export { default as CherryIcon } from '../icons/cherry';
|
|
603
|
+
// ChessKing aliases
|
|
604
|
+
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
599
605
|
// ChessBishop aliases
|
|
600
606
|
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
601
607
|
// ChessKnight aliases
|
|
602
608
|
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
603
|
-
// ChessKing aliases
|
|
604
|
-
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
605
609
|
// ChessPawn aliases
|
|
606
610
|
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
607
611
|
// ChessQueen aliases
|
|
@@ -616,46 +620,46 @@ export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
|
616
620
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
617
621
|
// ChevronLeft aliases
|
|
618
622
|
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
619
|
-
// ChevronUp aliases
|
|
620
|
-
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
621
623
|
// ChevronRight aliases
|
|
622
624
|
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
625
|
+
// ChevronUp aliases
|
|
626
|
+
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
623
627
|
// ChevronsDownUp aliases
|
|
624
628
|
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
625
629
|
// ChevronsDown aliases
|
|
626
630
|
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
627
631
|
// ChevronsLeftRightEllipsis aliases
|
|
628
632
|
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
629
|
-
// ChevronsRightLeft aliases
|
|
630
|
-
export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
631
|
-
// ChevronsLeft aliases
|
|
632
|
-
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
633
633
|
// ChevronsLeftRight aliases
|
|
634
634
|
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
635
|
+
// ChevronsLeft aliases
|
|
636
|
+
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
637
|
+
// ChevronsRightLeft aliases
|
|
638
|
+
export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
635
639
|
// ChevronsRight aliases
|
|
636
640
|
export { default as ChevronsRightIcon } from '../icons/chevrons-right';
|
|
637
|
-
// ChevronsUpDown aliases
|
|
638
|
-
export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
639
641
|
// ChevronsUp aliases
|
|
640
642
|
export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
641
643
|
// Church aliases
|
|
642
644
|
export { default as ChurchIcon } from '../icons/church';
|
|
643
|
-
//
|
|
644
|
-
export { default as
|
|
645
|
+
// ChevronsUpDown aliases
|
|
646
|
+
export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
645
647
|
// CigaretteOff aliases
|
|
646
648
|
export { default as CigaretteOffIcon } from '../icons/cigarette-off';
|
|
649
|
+
// Cigarette aliases
|
|
650
|
+
export { default as CigaretteIcon } from '../icons/cigarette';
|
|
647
651
|
// CircleDashed aliases
|
|
648
652
|
export { default as CircleDashedIcon } from '../icons/circle-dashed';
|
|
649
|
-
// CircleDotDashed aliases
|
|
650
|
-
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
651
653
|
// CircleDollarSign aliases
|
|
652
654
|
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
655
|
+
// CircleDotDashed aliases
|
|
656
|
+
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
653
657
|
// CircleDot aliases
|
|
654
658
|
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
655
|
-
// CircleEllipsis aliases
|
|
656
|
-
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
657
659
|
// CircleEqual aliases
|
|
658
660
|
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
661
|
+
// CircleEllipsis aliases
|
|
662
|
+
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
659
663
|
// CircleEuro aliases
|
|
660
664
|
export { default as CircleEuroIcon } from '../icons/circle-euro';
|
|
661
665
|
// CircleFadingArrowUp aliases
|
|
@@ -664,64 +668,64 @@ export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow
|
|
|
664
668
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
665
669
|
// CircleOff aliases
|
|
666
670
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
667
|
-
// CirclePoundSterling aliases
|
|
668
|
-
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
669
671
|
// CirclePile aliases
|
|
670
672
|
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
671
|
-
//
|
|
672
|
-
export { default as
|
|
673
|
+
// CirclePoundSterling aliases
|
|
674
|
+
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
673
675
|
// CircleSmall aliases
|
|
674
676
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
675
|
-
//
|
|
676
|
-
export { default as
|
|
677
|
+
// CircleSlash aliases
|
|
678
|
+
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
677
679
|
// Circle aliases
|
|
678
680
|
export { default as CircleIcon } from '../icons/circle';
|
|
681
|
+
// CircleStar aliases
|
|
682
|
+
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
679
683
|
// CircuitBoard aliases
|
|
680
684
|
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
681
685
|
// Citrus aliases
|
|
682
686
|
export { default as CitrusIcon } from '../icons/citrus';
|
|
683
687
|
// Clapperboard aliases
|
|
684
688
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
685
|
-
// ClipboardCheck aliases
|
|
686
|
-
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
687
689
|
// ClipboardClock aliases
|
|
688
690
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
691
|
+
// ClipboardCheck aliases
|
|
692
|
+
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
689
693
|
// ClipboardCopy aliases
|
|
690
694
|
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
691
|
-
// ClipboardList aliases
|
|
692
|
-
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
693
695
|
// ClipboardMinus aliases
|
|
694
696
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
697
|
+
// ClipboardList aliases
|
|
698
|
+
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
695
699
|
// ClipboardPaste aliases
|
|
696
700
|
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
697
701
|
// ClipboardPlus aliases
|
|
698
702
|
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
699
703
|
// ClipboardType aliases
|
|
700
704
|
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
705
|
+
// Clipboard aliases
|
|
706
|
+
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
701
707
|
// ClipboardX aliases
|
|
702
708
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
703
709
|
// Clock1 aliases
|
|
704
710
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
705
711
|
// Clock10 aliases
|
|
706
712
|
export { default as Clock10Icon } from '../icons/clock-10';
|
|
707
|
-
// Clock11 aliases
|
|
708
|
-
export { default as Clock11Icon } from '../icons/clock-11';
|
|
709
|
-
// Clipboard aliases
|
|
710
|
-
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
711
713
|
// Clock12 aliases
|
|
712
714
|
export { default as Clock12Icon } from '../icons/clock-12';
|
|
715
|
+
// Clock11 aliases
|
|
716
|
+
export { default as Clock11Icon } from '../icons/clock-11';
|
|
717
|
+
// Clock4 aliases
|
|
718
|
+
export { default as Clock4Icon } from '../icons/clock-4';
|
|
713
719
|
// Clock2 aliases
|
|
714
720
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
715
721
|
// Clock3 aliases
|
|
716
722
|
export { default as Clock3Icon } from '../icons/clock-3';
|
|
717
|
-
//
|
|
718
|
-
export { default as
|
|
723
|
+
// Clock5 aliases
|
|
724
|
+
export { default as Clock5Icon } from '../icons/clock-5';
|
|
719
725
|
// Clock6 aliases
|
|
720
726
|
export { default as Clock6Icon } from '../icons/clock-6';
|
|
721
727
|
// Clock7 aliases
|
|
722
728
|
export { default as Clock7Icon } from '../icons/clock-7';
|
|
723
|
-
// Clock5 aliases
|
|
724
|
-
export { default as Clock5Icon } from '../icons/clock-5';
|
|
725
729
|
// Clock8 aliases
|
|
726
730
|
export { default as Clock8Icon } from '../icons/clock-8';
|
|
727
731
|
// Clock9 aliases
|
|
@@ -730,20 +734,20 @@ export { default as Clock9Icon } from '../icons/clock-9';
|
|
|
730
734
|
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
731
735
|
// ClockArrowDown aliases
|
|
732
736
|
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
733
|
-
// ClockArrowUp aliases
|
|
734
|
-
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
735
|
-
// ClockArrowRight aliases
|
|
736
|
-
export { default as ClockArrowRightIcon } from '../icons/clock-arrow-right';
|
|
737
737
|
// ClockArrowLeft aliases
|
|
738
738
|
export { default as ClockArrowLeftIcon } from '../icons/clock-arrow-left';
|
|
739
|
+
// ClockArrowRight aliases
|
|
740
|
+
export { default as ClockArrowRightIcon } from '../icons/clock-arrow-right';
|
|
741
|
+
// ClockArrowUp aliases
|
|
742
|
+
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
739
743
|
// ClockCheck aliases
|
|
740
744
|
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
741
745
|
// ClockFading aliases
|
|
742
746
|
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
743
|
-
// ClockPlus aliases
|
|
744
|
-
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
745
747
|
// Clock aliases
|
|
746
748
|
export { default as ClockIcon } from '../icons/clock';
|
|
749
|
+
// ClockPlus aliases
|
|
750
|
+
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
747
751
|
// ClosedCaption aliases
|
|
748
752
|
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
749
753
|
// CloudAlert aliases
|
|
@@ -752,28 +756,28 @@ export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
|
752
756
|
export { default as CloudBackupIcon } from '../icons/cloud-backup';
|
|
753
757
|
// CloudCheck aliases
|
|
754
758
|
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
755
|
-
// CloudCog aliases
|
|
756
|
-
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
757
759
|
// CloudDrizzle aliases
|
|
758
760
|
export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
759
|
-
//
|
|
760
|
-
export { default as
|
|
761
|
+
// CloudCog aliases
|
|
762
|
+
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
761
763
|
// CloudFog aliases
|
|
762
764
|
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
763
765
|
// CloudHail aliases
|
|
764
766
|
export { default as CloudHailIcon } from '../icons/cloud-hail';
|
|
767
|
+
// CloudLightning aliases
|
|
768
|
+
export { default as CloudLightningIcon } from '../icons/cloud-lightning';
|
|
769
|
+
// CloudMoon aliases
|
|
770
|
+
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
765
771
|
// CloudMoonRain aliases
|
|
766
772
|
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
767
773
|
// CloudOff aliases
|
|
768
774
|
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
769
|
-
// CloudMoon aliases
|
|
770
|
-
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
771
775
|
// CloudRain aliases
|
|
772
776
|
export { default as CloudRainIcon } from '../icons/cloud-rain';
|
|
773
|
-
// CloudRainWind aliases
|
|
774
|
-
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
775
777
|
// CloudSnow aliases
|
|
776
778
|
export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
779
|
+
// CloudRainWind aliases
|
|
780
|
+
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
777
781
|
// CloudSunRain aliases
|
|
778
782
|
export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
779
783
|
// CloudSun aliases
|
|
@@ -782,94 +786,94 @@ export { default as CloudSunIcon } from '../icons/cloud-sun';
|
|
|
782
786
|
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
783
787
|
// Cloud aliases
|
|
784
788
|
export { default as CloudIcon } from '../icons/cloud';
|
|
785
|
-
// Clover aliases
|
|
786
|
-
export { default as CloverIcon } from '../icons/clover';
|
|
787
789
|
// Cloudy aliases
|
|
788
790
|
export { default as CloudyIcon } from '../icons/cloudy';
|
|
789
|
-
// Code aliases
|
|
790
|
-
export { default as CodeIcon } from '../icons/code';
|
|
791
|
-
// Club aliases
|
|
792
|
-
export { default as ClubIcon } from '../icons/club';
|
|
793
791
|
// Coffee aliases
|
|
794
792
|
export { default as CoffeeIcon } from '../icons/coffee';
|
|
795
|
-
//
|
|
796
|
-
export { default as
|
|
793
|
+
// Clover aliases
|
|
794
|
+
export { default as CloverIcon } from '../icons/clover';
|
|
795
|
+
// Club aliases
|
|
796
|
+
export { default as ClubIcon } from '../icons/club';
|
|
797
|
+
// Code aliases
|
|
798
|
+
export { default as CodeIcon } from '../icons/code';
|
|
797
799
|
// Cog aliases
|
|
798
800
|
export { default as CogIcon } from '../icons/cog';
|
|
799
801
|
// Columns4 aliases
|
|
800
802
|
export { default as Columns4Icon } from '../icons/columns-4';
|
|
803
|
+
// Coins aliases
|
|
804
|
+
export { default as CoinsIcon } from '../icons/coins';
|
|
801
805
|
// Combine aliases
|
|
802
806
|
export { default as CombineIcon } from '../icons/combine';
|
|
803
|
-
// Compass aliases
|
|
804
|
-
export { default as CompassIcon } from '../icons/compass';
|
|
805
807
|
// Command aliases
|
|
806
808
|
export { default as CommandIcon } from '../icons/command';
|
|
809
|
+
// Compass aliases
|
|
810
|
+
export { default as CompassIcon } from '../icons/compass';
|
|
807
811
|
// Component aliases
|
|
808
812
|
export { default as ComponentIcon } from '../icons/component';
|
|
809
813
|
// Computer aliases
|
|
810
814
|
export { default as ComputerIcon } from '../icons/computer';
|
|
811
|
-
// Cone aliases
|
|
812
|
-
export { default as ConeIcon } from '../icons/cone';
|
|
813
815
|
// ConciergeBell aliases
|
|
814
816
|
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
815
817
|
// Construction aliases
|
|
816
818
|
export { default as ConstructionIcon } from '../icons/construction';
|
|
817
|
-
//
|
|
818
|
-
export { default as
|
|
819
|
+
// Cone aliases
|
|
820
|
+
export { default as ConeIcon } from '../icons/cone';
|
|
819
821
|
// Container aliases
|
|
820
822
|
export { default as ContainerIcon } from '../icons/container';
|
|
821
|
-
//
|
|
822
|
-
export { default as
|
|
823
|
-
// Contrast aliases
|
|
824
|
-
export { default as ContrastIcon } from '../icons/contrast';
|
|
823
|
+
// Contact aliases
|
|
824
|
+
export { default as ContactIcon } from '../icons/contact';
|
|
825
825
|
// CookingPot aliases
|
|
826
826
|
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
827
|
+
// Contrast aliases
|
|
828
|
+
export { default as ContrastIcon } from '../icons/contrast';
|
|
829
|
+
// Cookie aliases
|
|
830
|
+
export { default as CookieIcon } from '../icons/cookie';
|
|
827
831
|
// CopyCheck aliases
|
|
828
832
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
829
833
|
// CopyMinus aliases
|
|
830
834
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
831
835
|
// CopyPlus aliases
|
|
832
836
|
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
833
|
-
// CopySlash aliases
|
|
834
|
-
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
835
837
|
// CopyX aliases
|
|
836
838
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
837
|
-
//
|
|
838
|
-
export { default as
|
|
839
|
+
// CopySlash aliases
|
|
840
|
+
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
839
841
|
// Copy aliases
|
|
840
842
|
export { default as CopyIcon } from '../icons/copy';
|
|
841
|
-
//
|
|
842
|
-
export { default as
|
|
843
|
+
// Copyleft aliases
|
|
844
|
+
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
843
845
|
// CornerDownLeft aliases
|
|
844
846
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
847
|
+
// Copyright aliases
|
|
848
|
+
export { default as CopyrightIcon } from '../icons/copyright';
|
|
845
849
|
// CornerDownRight aliases
|
|
846
850
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
847
851
|
// CornerLeftDown aliases
|
|
848
852
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
849
|
-
// CornerLeftUp aliases
|
|
850
|
-
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
851
853
|
// CornerRightDown aliases
|
|
852
854
|
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
855
|
+
// CornerLeftUp aliases
|
|
856
|
+
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
853
857
|
// CornerRightUp aliases
|
|
854
858
|
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
855
|
-
// CornerUpLeft aliases
|
|
856
|
-
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
857
859
|
// CornerUpRight aliases
|
|
858
860
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
861
|
+
// CornerUpLeft aliases
|
|
862
|
+
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
863
|
+
// Cpu aliases
|
|
864
|
+
export { default as CpuIcon } from '../icons/cpu';
|
|
859
865
|
// CreativeCommons aliases
|
|
860
866
|
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
861
867
|
// CreditCard aliases
|
|
862
868
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
863
|
-
// Cpu aliases
|
|
864
|
-
export { default as CpuIcon } from '../icons/cpu';
|
|
865
869
|
// Croissant aliases
|
|
866
870
|
export { default as CroissantIcon } from '../icons/croissant';
|
|
867
871
|
// Crop aliases
|
|
868
872
|
export { default as CropIcon } from '../icons/crop';
|
|
869
|
-
// Cross aliases
|
|
870
|
-
export { default as CrossIcon } from '../icons/cross';
|
|
871
873
|
// Crosshair aliases
|
|
872
874
|
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
875
|
+
// Cross aliases
|
|
876
|
+
export { default as CrossIcon } from '../icons/cross';
|
|
873
877
|
// Crown aliases
|
|
874
878
|
export { default as CrownIcon } from '../icons/crown';
|
|
875
879
|
// Cuboid aliases
|
|
@@ -880,22 +884,22 @@ export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
|
880
884
|
export { default as CurrencyIcon } from '../icons/currency';
|
|
881
885
|
// Cylinder aliases
|
|
882
886
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
883
|
-
// DatabaseArrowDown aliases
|
|
884
|
-
export { default as DatabaseArrowDownIcon } from '../icons/database-arrow-down';
|
|
885
887
|
// Dam aliases
|
|
886
888
|
export { default as DamIcon } from '../icons/dam';
|
|
889
|
+
// DatabaseArrowDown aliases
|
|
890
|
+
export { default as DatabaseArrowDownIcon } from '../icons/database-arrow-down';
|
|
887
891
|
// DatabaseArrowUp aliases
|
|
888
892
|
export { default as DatabaseArrowUpIcon } from '../icons/database-arrow-up';
|
|
889
893
|
// DatabaseBackup aliases
|
|
890
894
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
891
|
-
// DatabaseMinus aliases
|
|
892
|
-
export { default as DatabaseMinusIcon } from '../icons/database-minus';
|
|
893
895
|
// DatabaseCheck aliases
|
|
894
896
|
export { default as DatabaseCheckIcon } from '../icons/database-check';
|
|
895
|
-
//
|
|
896
|
-
export { default as
|
|
897
|
+
// DatabaseMinus aliases
|
|
898
|
+
export { default as DatabaseMinusIcon } from '../icons/database-minus';
|
|
897
899
|
// DatabasePlus aliases
|
|
898
900
|
export { default as DatabasePlusIcon } from '../icons/database-plus';
|
|
901
|
+
// DatabaseSearch aliases
|
|
902
|
+
export { default as DatabaseSearchIcon } from '../icons/database-search';
|
|
899
903
|
// DatabaseX aliases
|
|
900
904
|
export { default as DatabaseXIcon } from '../icons/database-x';
|
|
901
905
|
// DatabaseZap aliases
|
|
@@ -932,10 +936,10 @@ export { default as Dice5Icon } from '../icons/dice-5';
|
|
|
932
936
|
export { default as Dice6Icon } from '../icons/dice-6';
|
|
933
937
|
// Dices aliases
|
|
934
938
|
export { default as DicesIcon } from '../icons/dices';
|
|
935
|
-
// Disc2 aliases
|
|
936
|
-
export { default as Disc2Icon } from '../icons/disc-2';
|
|
937
939
|
// Diff aliases
|
|
938
940
|
export { default as DiffIcon } from '../icons/diff';
|
|
941
|
+
// Disc2 aliases
|
|
942
|
+
export { default as Disc2Icon } from '../icons/disc-2';
|
|
939
943
|
// Disc3 aliases
|
|
940
944
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
941
945
|
// DiscAlbum aliases
|
|
@@ -948,36 +952,36 @@ export { default as DivideIcon } from '../icons/divide';
|
|
|
948
952
|
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
949
953
|
// Dna aliases
|
|
950
954
|
export { default as DnaIcon } from '../icons/dna';
|
|
955
|
+
// DollarSign aliases
|
|
956
|
+
export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
951
957
|
// Dock aliases
|
|
952
958
|
export { default as DockIcon } from '../icons/dock';
|
|
953
959
|
// Dog aliases
|
|
954
960
|
export { default as DogIcon } from '../icons/dog';
|
|
955
961
|
// Donut aliases
|
|
956
962
|
export { default as DonutIcon } from '../icons/donut';
|
|
957
|
-
// DollarSign aliases
|
|
958
|
-
export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
959
963
|
// DoorClosedLocked aliases
|
|
960
964
|
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
961
|
-
// DoorClosed aliases
|
|
962
|
-
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
963
965
|
// DoorOpen aliases
|
|
964
966
|
export { default as DoorOpenIcon } from '../icons/door-open';
|
|
965
|
-
//
|
|
966
|
-
export { default as
|
|
967
|
+
// DoorClosed aliases
|
|
968
|
+
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
967
969
|
// Download aliases
|
|
968
970
|
export { default as DownloadIcon } from '../icons/download';
|
|
969
|
-
// Drama aliases
|
|
970
|
-
export { default as DramaIcon } from '../icons/drama';
|
|
971
971
|
// DraftingCompass aliases
|
|
972
972
|
export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
973
|
+
// Dot aliases
|
|
974
|
+
export { default as DotIcon } from '../icons/dot';
|
|
975
|
+
// Drama aliases
|
|
976
|
+
export { default as DramaIcon } from '../icons/drama';
|
|
973
977
|
// Drill aliases
|
|
974
978
|
export { default as DrillIcon } from '../icons/drill';
|
|
975
979
|
// Drone aliases
|
|
976
980
|
export { default as DroneIcon } from '../icons/drone';
|
|
977
|
-
// DropletOff aliases
|
|
978
|
-
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
979
981
|
// Droplet aliases
|
|
980
982
|
export { default as DropletIcon } from '../icons/droplet';
|
|
983
|
+
// DropletOff aliases
|
|
984
|
+
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
981
985
|
// Drum aliases
|
|
982
986
|
export { default as DrumIcon } from '../icons/drum';
|
|
983
987
|
// Droplets aliases
|
|
@@ -992,84 +996,86 @@ export { default as EarOffIcon } from '../icons/ear-off';
|
|
|
992
996
|
export { default as EarIcon } from '../icons/ear';
|
|
993
997
|
// Eclipse aliases
|
|
994
998
|
export { default as EclipseIcon } from '../icons/eclipse';
|
|
995
|
-
// EggFried aliases
|
|
996
|
-
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
997
999
|
// EarthLock aliases
|
|
998
1000
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
1001
|
+
// EggFried aliases
|
|
1002
|
+
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
999
1003
|
// EggOff aliases
|
|
1000
1004
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
1001
1005
|
// Egg aliases
|
|
1002
1006
|
export { default as EggIcon } from '../icons/egg';
|
|
1003
|
-
//
|
|
1004
|
-
export { default as
|
|
1007
|
+
// Eject aliases
|
|
1008
|
+
export { default as EjectIcon } from '../icons/eject';
|
|
1005
1009
|
// Ellipse aliases
|
|
1006
1010
|
export { default as EllipseIcon } from '../icons/ellipse';
|
|
1007
1011
|
// EqualNot aliases
|
|
1008
1012
|
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
1013
|
+
// EqualApproximately aliases
|
|
1014
|
+
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
1009
1015
|
// Equal aliases
|
|
1010
1016
|
export { default as EqualIcon } from '../icons/equal';
|
|
1011
1017
|
// Eraser aliases
|
|
1012
1018
|
export { default as EraserIcon } from '../icons/eraser';
|
|
1013
|
-
// EthernetPort aliases
|
|
1014
|
-
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
1015
1019
|
// Euro aliases
|
|
1016
1020
|
export { default as EuroIcon } from '../icons/euro';
|
|
1021
|
+
// EthernetPort aliases
|
|
1022
|
+
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
1017
1023
|
// EvCharger aliases
|
|
1018
1024
|
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
1019
|
-
// ExternalLink aliases
|
|
1020
|
-
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
1021
1025
|
// Expand aliases
|
|
1022
1026
|
export { default as ExpandIcon } from '../icons/expand';
|
|
1023
|
-
//
|
|
1024
|
-
export { default as
|
|
1027
|
+
// ExternalLink aliases
|
|
1028
|
+
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
1025
1029
|
// EyeClosed aliases
|
|
1026
1030
|
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
1027
1031
|
// EyeOff aliases
|
|
1028
1032
|
export { default as EyeOffIcon } from '../icons/eye-off';
|
|
1029
|
-
//
|
|
1030
|
-
export { default as
|
|
1033
|
+
// EyeDashed aliases
|
|
1034
|
+
export { default as EyeDashedIcon } from '../icons/eye-dashed';
|
|
1031
1035
|
// Eye aliases
|
|
1032
1036
|
export { default as EyeIcon } from '../icons/eye';
|
|
1037
|
+
// Factory aliases
|
|
1038
|
+
export { default as FactoryIcon } from '../icons/factory';
|
|
1033
1039
|
// Fan aliases
|
|
1034
1040
|
export { default as FanIcon } from '../icons/fan';
|
|
1035
|
-
// FastForward aliases
|
|
1036
|
-
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
1037
1041
|
// Feather aliases
|
|
1038
1042
|
export { default as FeatherIcon } from '../icons/feather';
|
|
1039
1043
|
// Fence aliases
|
|
1040
1044
|
export { default as FenceIcon } from '../icons/fence';
|
|
1045
|
+
// FastForward aliases
|
|
1046
|
+
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
1041
1047
|
// FerrisWheel aliases
|
|
1042
1048
|
export { default as FerrisWheelIcon } from '../icons/ferris-wheel';
|
|
1043
1049
|
// FileArchive aliases
|
|
1044
1050
|
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1045
1051
|
// FileBox aliases
|
|
1046
1052
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1047
|
-
// FileCode aliases
|
|
1048
|
-
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1049
1053
|
// FileCheck aliases
|
|
1050
1054
|
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1051
1055
|
// FileClock aliases
|
|
1052
1056
|
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1057
|
+
// FileCode aliases
|
|
1058
|
+
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1053
1059
|
// FileDiff aliases
|
|
1054
1060
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1055
1061
|
// FileDigit aliases
|
|
1056
1062
|
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1057
1063
|
// FileDown aliases
|
|
1058
1064
|
export { default as FileDownIcon } from '../icons/file-down';
|
|
1059
|
-
// FileHeart aliases
|
|
1060
|
-
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1061
1065
|
// FileImage aliases
|
|
1062
1066
|
export { default as FileImageIcon } from '../icons/file-image';
|
|
1067
|
+
// FileHeart aliases
|
|
1068
|
+
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1063
1069
|
// FileInput aliases
|
|
1064
1070
|
export { default as FileInputIcon } from '../icons/file-input';
|
|
1065
1071
|
// FileMinus aliases
|
|
1066
1072
|
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1067
1073
|
// FileMusic aliases
|
|
1068
1074
|
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1069
|
-
// FilePlus aliases
|
|
1070
|
-
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1071
1075
|
// FileOutput aliases
|
|
1072
1076
|
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1077
|
+
// FilePlus aliases
|
|
1078
|
+
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1073
1079
|
// FileScan aliases
|
|
1074
1080
|
export { default as FileScanIcon } from '../icons/file-scan';
|
|
1075
1081
|
// FileSearch aliases
|
|
@@ -1090,16 +1096,16 @@ export { default as FileTextIcon } from '../icons/file-text';
|
|
|
1090
1096
|
export { default as FileTypeIcon } from '../icons/file-type';
|
|
1091
1097
|
// FileUp aliases
|
|
1092
1098
|
export { default as FileUpIcon } from '../icons/file-up';
|
|
1093
|
-
// FileUser aliases
|
|
1094
|
-
export { default as FileUserIcon } from '../icons/file-user';
|
|
1095
1099
|
// FileVolume aliases
|
|
1096
1100
|
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1101
|
+
// FileUser aliases
|
|
1102
|
+
export { default as FileUserIcon } from '../icons/file-user';
|
|
1103
|
+
// FileX aliases
|
|
1104
|
+
export { default as FileXIcon } from '../icons/file-x';
|
|
1097
1105
|
// File aliases
|
|
1098
1106
|
export { default as FileIcon } from '../icons/file';
|
|
1099
1107
|
// Files aliases
|
|
1100
1108
|
export { default as FilesIcon } from '../icons/files';
|
|
1101
|
-
// FileX aliases
|
|
1102
|
-
export { default as FileXIcon } from '../icons/file-x';
|
|
1103
1109
|
// Film aliases
|
|
1104
1110
|
export { default as FilmIcon } from '../icons/film';
|
|
1105
1111
|
// FishOff aliases
|
|
@@ -1108,20 +1114,20 @@ export { default as FishOffIcon } from '../icons/fish-off';
|
|
|
1108
1114
|
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1109
1115
|
// FishSymbol aliases
|
|
1110
1116
|
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1111
|
-
// FishingHook aliases
|
|
1112
|
-
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1113
1117
|
// Fish aliases
|
|
1114
1118
|
export { default as FishIcon } from '../icons/fish';
|
|
1119
|
+
// FishingHook aliases
|
|
1120
|
+
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1115
1121
|
// FishingRod aliases
|
|
1116
1122
|
export { default as FishingRodIcon } from '../icons/fishing-rod';
|
|
1117
|
-
// FlagOff aliases
|
|
1118
|
-
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1119
1123
|
// FlagTriangleLeft aliases
|
|
1120
1124
|
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1121
|
-
//
|
|
1122
|
-
export { default as
|
|
1125
|
+
// FlagOff aliases
|
|
1126
|
+
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1123
1127
|
// Flag aliases
|
|
1124
1128
|
export { default as FlagIcon } from '../icons/flag';
|
|
1129
|
+
// FlagTriangleRight aliases
|
|
1130
|
+
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1125
1131
|
// FlameKindling aliases
|
|
1126
1132
|
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1127
1133
|
// Flame aliases
|
|
@@ -1142,22 +1148,22 @@ export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
|
1142
1148
|
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1143
1149
|
// Flower2 aliases
|
|
1144
1150
|
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1145
|
-
// Focus aliases
|
|
1146
|
-
export { default as FocusIcon } from '../icons/focus';
|
|
1147
1151
|
// Flower aliases
|
|
1148
1152
|
export { default as FlowerIcon } from '../icons/flower';
|
|
1149
1153
|
// FoldHorizontal aliases
|
|
1150
1154
|
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1155
|
+
// Focus aliases
|
|
1156
|
+
export { default as FocusIcon } from '../icons/focus';
|
|
1151
1157
|
// FoldVertical aliases
|
|
1152
1158
|
export { default as FoldVerticalIcon } from '../icons/fold-vertical';
|
|
1153
|
-
// FolderArchive aliases
|
|
1154
|
-
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1155
1159
|
// FolderBookmark aliases
|
|
1156
1160
|
export { default as FolderBookmarkIcon } from '../icons/folder-bookmark';
|
|
1157
|
-
//
|
|
1158
|
-
export { default as
|
|
1161
|
+
// FolderArchive aliases
|
|
1162
|
+
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1159
1163
|
// FolderCheck aliases
|
|
1160
1164
|
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1165
|
+
// FolderClock aliases
|
|
1166
|
+
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1161
1167
|
// FolderClosed aliases
|
|
1162
1168
|
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1163
1169
|
// FolderCode aliases
|
|
@@ -1166,12 +1172,12 @@ export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
|
1166
1172
|
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1167
1173
|
// FolderDown aliases
|
|
1168
1174
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1169
|
-
// FolderHeart aliases
|
|
1170
|
-
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1171
|
-
// FolderGit2 aliases
|
|
1172
|
-
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1173
1175
|
// FolderGit aliases
|
|
1174
1176
|
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1177
|
+
// FolderGit2 aliases
|
|
1178
|
+
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1179
|
+
// FolderHeart aliases
|
|
1180
|
+
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1175
1181
|
// FolderInput aliases
|
|
1176
1182
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1177
1183
|
// FolderKanban aliases
|
|
@@ -1196,14 +1202,14 @@ export { default as FolderRootIcon } from '../icons/folder-root';
|
|
|
1196
1202
|
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1197
1203
|
// FolderSearch aliases
|
|
1198
1204
|
export { default as FolderSearchIcon } from '../icons/folder-search';
|
|
1199
|
-
// FolderSync aliases
|
|
1200
|
-
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1201
1205
|
// FolderSymlink aliases
|
|
1202
1206
|
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1203
|
-
//
|
|
1204
|
-
export { default as
|
|
1207
|
+
// FolderSync aliases
|
|
1208
|
+
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1205
1209
|
// FolderUp aliases
|
|
1206
1210
|
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1211
|
+
// FolderTree aliases
|
|
1212
|
+
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1207
1213
|
// FolderX aliases
|
|
1208
1214
|
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1209
1215
|
// Folder aliases
|
|
@@ -1212,24 +1218,22 @@ export { default as FolderIcon } from '../icons/folder';
|
|
|
1212
1218
|
export { default as FoldersIcon } from '../icons/folders';
|
|
1213
1219
|
// Footprints aliases
|
|
1214
1220
|
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1221
|
+
// Forklift aliases
|
|
1222
|
+
export { default as ForkliftIcon } from '../icons/forklift';
|
|
1215
1223
|
// Form aliases
|
|
1216
1224
|
export { default as FormIcon } from '../icons/form';
|
|
1217
1225
|
// Forward aliases
|
|
1218
1226
|
export { default as ForwardIcon } from '../icons/forward';
|
|
1219
|
-
// Forklift aliases
|
|
1220
|
-
export { default as ForkliftIcon } from '../icons/forklift';
|
|
1221
1227
|
// Frame aliases
|
|
1222
1228
|
export { default as FrameIcon } from '../icons/frame';
|
|
1223
|
-
// Frown aliases
|
|
1224
|
-
export { default as FrownIcon } from '../icons/frown';
|
|
1225
1229
|
// Fuel aliases
|
|
1226
1230
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1227
1231
|
// Fullscreen aliases
|
|
1228
1232
|
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1229
|
-
// GalleryHorizontalEnd aliases
|
|
1230
|
-
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1231
1233
|
// FunnelPlus aliases
|
|
1232
1234
|
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1235
|
+
// GalleryHorizontalEnd aliases
|
|
1236
|
+
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1233
1237
|
// GalleryHorizontal aliases
|
|
1234
1238
|
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1235
1239
|
// GalleryThumbnails aliases
|
|
@@ -1242,62 +1246,62 @@ export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
|
1242
1246
|
export { default as Gamepad2Icon } from '../icons/gamepad-2';
|
|
1243
1247
|
// GamepadDirectional aliases
|
|
1244
1248
|
export { default as GamepadDirectionalIcon } from '../icons/gamepad-directional';
|
|
1245
|
-
// Gauge aliases
|
|
1246
|
-
export { default as GaugeIcon } from '../icons/gauge';
|
|
1247
1249
|
// Gamepad aliases
|
|
1248
1250
|
export { default as GamepadIcon } from '../icons/gamepad';
|
|
1249
|
-
//
|
|
1250
|
-
export { default as
|
|
1251
|
+
// Gauge aliases
|
|
1252
|
+
export { default as GaugeIcon } from '../icons/gauge';
|
|
1251
1253
|
// Gavel aliases
|
|
1252
1254
|
export { default as GavelIcon } from '../icons/gavel';
|
|
1255
|
+
// Gem aliases
|
|
1256
|
+
export { default as GemIcon } from '../icons/gem';
|
|
1253
1257
|
// GeorgianLari aliases
|
|
1254
1258
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1255
1259
|
// Ghost aliases
|
|
1256
1260
|
export { default as GhostIcon } from '../icons/ghost';
|
|
1257
|
-
// GitBranchMinus aliases
|
|
1258
|
-
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1259
1261
|
// Gift aliases
|
|
1260
1262
|
export { default as GiftIcon } from '../icons/gift';
|
|
1263
|
+
// GitBranchMinus aliases
|
|
1264
|
+
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1261
1265
|
// GitBranchPlus aliases
|
|
1262
1266
|
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1263
|
-
// GitCommitVertical aliases
|
|
1264
|
-
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1265
1267
|
// GitBranch aliases
|
|
1266
1268
|
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1267
|
-
//
|
|
1268
|
-
export { default as
|
|
1269
|
+
// GitCommitVertical aliases
|
|
1270
|
+
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1269
1271
|
// GitCompare aliases
|
|
1270
1272
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1271
|
-
//
|
|
1272
|
-
export { default as
|
|
1273
|
-
// GitMergeConflict aliases
|
|
1274
|
-
export { default as GitMergeConflictIcon } from '../icons/git-merge-conflict';
|
|
1273
|
+
// GitCompareArrows aliases
|
|
1274
|
+
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1275
1275
|
// GitFork aliases
|
|
1276
1276
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1277
|
+
// GitGraph aliases
|
|
1278
|
+
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1277
1279
|
// GitMerge aliases
|
|
1278
1280
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1279
|
-
//
|
|
1280
|
-
export { default as
|
|
1281
|
+
// GitMergeConflict aliases
|
|
1282
|
+
export { default as GitMergeConflictIcon } from '../icons/git-merge-conflict';
|
|
1281
1283
|
// GitPullRequestArrow aliases
|
|
1282
1284
|
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1285
|
+
// GitPullRequestClosed aliases
|
|
1286
|
+
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1283
1287
|
// GitPullRequestCreateArrow aliases
|
|
1284
1288
|
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1285
1289
|
// GitPullRequestCreate aliases
|
|
1286
1290
|
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1287
|
-
// GitPullRequest aliases
|
|
1288
|
-
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1289
1291
|
// GitPullRequestDraft aliases
|
|
1290
1292
|
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1291
|
-
//
|
|
1292
|
-
export { default as
|
|
1293
|
+
// GitPullRequest aliases
|
|
1294
|
+
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1293
1295
|
// GlassWater aliases
|
|
1294
1296
|
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1297
|
+
// Glasses aliases
|
|
1298
|
+
export { default as GlassesIcon } from '../icons/glasses';
|
|
1295
1299
|
// GlobeCheck aliases
|
|
1296
1300
|
export { default as GlobeCheckIcon } from '../icons/globe-check';
|
|
1297
|
-
// GlobeLock aliases
|
|
1298
|
-
export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
1299
1301
|
// GlobeOff aliases
|
|
1300
1302
|
export { default as GlobeOffIcon } from '../icons/globe-off';
|
|
1303
|
+
// GlobeLock aliases
|
|
1304
|
+
export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
1301
1305
|
// GlobeX aliases
|
|
1302
1306
|
export { default as GlobeXIcon } from '../icons/globe-x';
|
|
1303
1307
|
// Globe aliases
|
|
@@ -1310,12 +1314,12 @@ export { default as GpuIcon } from '../icons/gpu';
|
|
|
1310
1314
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1311
1315
|
// Grape aliases
|
|
1312
1316
|
export { default as GrapeIcon } from '../icons/grape';
|
|
1317
|
+
// Grid3x2 aliases
|
|
1318
|
+
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1313
1319
|
// GripHorizontal aliases
|
|
1314
1320
|
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1315
1321
|
// GripVertical aliases
|
|
1316
1322
|
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1317
|
-
// Grid3x2 aliases
|
|
1318
|
-
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1319
1323
|
// Grip aliases
|
|
1320
1324
|
export { default as GripIcon } from '../icons/grip';
|
|
1321
1325
|
// Group aliases
|
|
@@ -1330,10 +1334,10 @@ export { default as HamburgerIcon } from '../icons/hamburger';
|
|
|
1330
1334
|
export { default as HammerIcon } from '../icons/hammer';
|
|
1331
1335
|
// HandCoins aliases
|
|
1332
1336
|
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1333
|
-
// HandHeart aliases
|
|
1334
|
-
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1335
1337
|
// HandFist aliases
|
|
1336
1338
|
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1339
|
+
// HandHeart aliases
|
|
1340
|
+
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1337
1341
|
// HandMetal aliases
|
|
1338
1342
|
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1339
1343
|
// HandPlatter aliases
|
|
@@ -1348,14 +1352,14 @@ export { default as HandshakeIcon } from '../icons/handshake';
|
|
|
1348
1352
|
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1349
1353
|
// HardDriveUpload aliases
|
|
1350
1354
|
export { default as HardDriveUploadIcon } from '../icons/hard-drive-upload';
|
|
1351
|
-
// HardHat aliases
|
|
1352
|
-
export { default as HardHatIcon } from '../icons/hard-hat';
|
|
1353
1355
|
// HardDrive aliases
|
|
1354
1356
|
export { default as HardDriveIcon } from '../icons/hard-drive';
|
|
1355
|
-
//
|
|
1356
|
-
export { default as
|
|
1357
|
+
// HardHat aliases
|
|
1358
|
+
export { default as HardHatIcon } from '../icons/hard-hat';
|
|
1357
1359
|
// Hash aliases
|
|
1358
1360
|
export { default as HashIcon } from '../icons/hash';
|
|
1361
|
+
// HatGlasses aliases
|
|
1362
|
+
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1359
1363
|
// Haze aliases
|
|
1360
1364
|
export { default as HazeIcon } from '../icons/haze';
|
|
1361
1365
|
// Hd aliases
|
|
@@ -1390,24 +1394,24 @@ export { default as HeartMinusIcon } from '../icons/heart-minus';
|
|
|
1390
1394
|
export { default as HeartHandshakeIcon } from '../icons/heart-handshake';
|
|
1391
1395
|
// HeartOff aliases
|
|
1392
1396
|
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1393
|
-
//
|
|
1394
|
-
export { default as
|
|
1397
|
+
// HeartPulse aliases
|
|
1398
|
+
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1395
1399
|
// HeartX aliases
|
|
1396
1400
|
export { default as HeartXIcon } from '../icons/heart-x';
|
|
1401
|
+
// HeartPlus aliases
|
|
1402
|
+
export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
1397
1403
|
// Heart aliases
|
|
1398
1404
|
export { default as HeartIcon } from '../icons/heart';
|
|
1399
|
-
// HeartPulse aliases
|
|
1400
|
-
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1401
1405
|
// Heater aliases
|
|
1402
1406
|
export { default as HeaterIcon } from '../icons/heater';
|
|
1403
|
-
// Helicopter aliases
|
|
1404
|
-
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1405
1407
|
// Hexagon aliases
|
|
1406
1408
|
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1407
1409
|
// Highlighter aliases
|
|
1408
1410
|
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1409
1411
|
// HopOff aliases
|
|
1410
1412
|
export { default as HopOffIcon } from '../icons/hop-off';
|
|
1413
|
+
// Helicopter aliases
|
|
1414
|
+
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1411
1415
|
// Hop aliases
|
|
1412
1416
|
export { default as HopIcon } from '../icons/hop';
|
|
1413
1417
|
// Hospital aliases
|
|
@@ -1420,44 +1424,44 @@ export { default as HourglassIcon } from '../icons/hourglass';
|
|
|
1420
1424
|
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1421
1425
|
// HousePlug aliases
|
|
1422
1426
|
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1423
|
-
// HousePlus aliases
|
|
1424
|
-
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1425
1427
|
// HouseWifi aliases
|
|
1426
1428
|
export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
1429
|
+
// HousePlus aliases
|
|
1430
|
+
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1427
1431
|
// IdCardLanyard aliases
|
|
1428
1432
|
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1429
|
-
// IdCard aliases
|
|
1430
|
-
export { default as IdCardIcon } from '../icons/id-card';
|
|
1431
1433
|
// ImageDown aliases
|
|
1432
1434
|
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1435
|
+
// IdCard aliases
|
|
1436
|
+
export { default as IdCardIcon } from '../icons/id-card';
|
|
1433
1437
|
// ImageMinus aliases
|
|
1434
1438
|
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1435
|
-
// ImagePlay aliases
|
|
1436
|
-
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1437
1439
|
// ImageOff aliases
|
|
1438
1440
|
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1441
|
+
// ImagePlay aliases
|
|
1442
|
+
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1439
1443
|
// ImagePlus aliases
|
|
1440
1444
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1441
1445
|
// ImageUp aliases
|
|
1442
1446
|
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1443
1447
|
// ImageUpscale aliases
|
|
1444
1448
|
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1445
|
-
// Images aliases
|
|
1446
|
-
export { default as ImagesIcon } from '../icons/images';
|
|
1447
1449
|
// Image aliases
|
|
1448
1450
|
export { default as ImageIcon } from '../icons/image';
|
|
1449
|
-
//
|
|
1450
|
-
export { default as
|
|
1451
|
+
// Images aliases
|
|
1452
|
+
export { default as ImagesIcon } from '../icons/images';
|
|
1451
1453
|
// Import aliases
|
|
1452
1454
|
export { default as ImportIcon } from '../icons/import';
|
|
1455
|
+
// IndianRupee aliases
|
|
1456
|
+
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1453
1457
|
// Inbox aliases
|
|
1454
1458
|
export { default as InboxIcon } from '../icons/inbox';
|
|
1455
1459
|
// Infinity aliases
|
|
1456
1460
|
export { default as InfinityIcon } from '../icons/infinity';
|
|
1457
|
-
// InspectionPanel aliases
|
|
1458
|
-
export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
1459
1461
|
// Info aliases
|
|
1460
1462
|
export { default as InfoIcon } from '../icons/info';
|
|
1463
|
+
// InspectionPanel aliases
|
|
1464
|
+
export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
1461
1465
|
// Italic aliases
|
|
1462
1466
|
export { default as ItalicIcon } from '../icons/italic';
|
|
1463
1467
|
// IterationCcw aliases
|
|
@@ -1468,90 +1472,88 @@ export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
|
1468
1472
|
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1469
1473
|
// Joystick aliases
|
|
1470
1474
|
export { default as JoystickIcon } from '../icons/joystick';
|
|
1471
|
-
// Kayak aliases
|
|
1472
|
-
export { default as KayakIcon } from '../icons/kayak';
|
|
1473
1475
|
// Kanban aliases
|
|
1474
1476
|
export { default as KanbanIcon } from '../icons/kanban';
|
|
1475
|
-
//
|
|
1476
|
-
export { default as
|
|
1477
|
+
// Kayak aliases
|
|
1478
|
+
export { default as KayakIcon } from '../icons/kayak';
|
|
1477
1479
|
// KeyRound aliases
|
|
1478
1480
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1479
|
-
//
|
|
1480
|
-
export { default as
|
|
1481
|
+
// KeySquare aliases
|
|
1482
|
+
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1481
1483
|
// Key aliases
|
|
1482
1484
|
export { default as KeyIcon } from '../icons/key';
|
|
1483
|
-
//
|
|
1484
|
-
export { default as
|
|
1485
|
-
// LampCeiling aliases
|
|
1486
|
-
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1485
|
+
// KeyboardMusic aliases
|
|
1486
|
+
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1487
1487
|
// KeyboardOff aliases
|
|
1488
1488
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1489
|
+
// LampCeiling aliases
|
|
1490
|
+
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1491
|
+
// Keyboard aliases
|
|
1492
|
+
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1489
1493
|
// LampDesk aliases
|
|
1490
1494
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1491
1495
|
// LampFloor aliases
|
|
1492
1496
|
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1493
|
-
// LampWallUp aliases
|
|
1494
|
-
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1495
1497
|
// LampWallDown aliases
|
|
1496
1498
|
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1497
|
-
//
|
|
1498
|
-
export { default as
|
|
1499
|
+
// LampWallUp aliases
|
|
1500
|
+
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1499
1501
|
// Lamp aliases
|
|
1500
1502
|
export { default as LampIcon } from '../icons/lamp';
|
|
1503
|
+
// LandPlot aliases
|
|
1504
|
+
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1501
1505
|
// Landmark aliases
|
|
1502
1506
|
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1503
|
-
// Languages aliases
|
|
1504
|
-
export { default as LanguagesIcon } from '../icons/languages';
|
|
1505
1507
|
// LaptopMinimalCheck aliases
|
|
1506
1508
|
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1507
|
-
//
|
|
1508
|
-
export { default as
|
|
1509
|
+
// Languages aliases
|
|
1510
|
+
export { default as LanguagesIcon } from '../icons/languages';
|
|
1509
1511
|
// LassoSelect aliases
|
|
1510
1512
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1511
|
-
//
|
|
1512
|
-
export { default as
|
|
1513
|
-
// Laugh aliases
|
|
1514
|
-
export { default as LaughIcon } from '../icons/laugh';
|
|
1513
|
+
// Laptop aliases
|
|
1514
|
+
export { default as LaptopIcon } from '../icons/laptop';
|
|
1515
1515
|
// LayerArrowDown aliases
|
|
1516
1516
|
export { default as LayerArrowDownIcon } from '../icons/layer-arrow-down';
|
|
1517
|
+
// Lasso aliases
|
|
1518
|
+
export { default as LassoIcon } from '../icons/lasso';
|
|
1517
1519
|
// LayerArrowUp aliases
|
|
1518
1520
|
export { default as LayerArrowUpIcon } from '../icons/layer-arrow-up';
|
|
1519
1521
|
// Layers2 aliases
|
|
1520
1522
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1521
|
-
// LayersArrowDown aliases
|
|
1522
|
-
export { default as LayersArrowDownIcon } from '../icons/layers-arrow-down';
|
|
1523
1523
|
// LayersArrowUp aliases
|
|
1524
1524
|
export { default as LayersArrowUpIcon } from '../icons/layers-arrow-up';
|
|
1525
1525
|
// LayersMinus aliases
|
|
1526
1526
|
export { default as LayersMinusIcon } from '../icons/layers-minus';
|
|
1527
|
-
//
|
|
1528
|
-
export { default as
|
|
1527
|
+
// LayersArrowDown aliases
|
|
1528
|
+
export { default as LayersArrowDownIcon } from '../icons/layers-arrow-down';
|
|
1529
1529
|
// LayoutDashboard aliases
|
|
1530
1530
|
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1531
|
+
// LayersPlus aliases
|
|
1532
|
+
export { default as LayersPlusIcon } from '../icons/layers-plus';
|
|
1531
1533
|
// LayoutFreeform aliases
|
|
1532
1534
|
export { default as LayoutFreeformIcon } from '../icons/layout-freeform';
|
|
1533
1535
|
// LayoutGrid aliases
|
|
1534
1536
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1535
1537
|
// LayoutList aliases
|
|
1536
1538
|
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1537
|
-
// LayoutPanelLeft aliases
|
|
1538
|
-
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1539
1539
|
// LayoutPanelTop aliases
|
|
1540
1540
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1541
|
-
//
|
|
1542
|
-
export { default as
|
|
1541
|
+
// LayoutPanelLeft aliases
|
|
1542
|
+
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1543
1543
|
// LayoutTemplate aliases
|
|
1544
1544
|
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1545
|
+
// Leaf aliases
|
|
1546
|
+
export { default as LeafIcon } from '../icons/leaf';
|
|
1545
1547
|
// LeafyGreen aliases
|
|
1546
1548
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1547
1549
|
// LensConcave aliases
|
|
1548
1550
|
export { default as LensConcaveIcon } from '../icons/lens-concave';
|
|
1551
|
+
// LibraryBig aliases
|
|
1552
|
+
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1549
1553
|
// Lectern aliases
|
|
1550
1554
|
export { default as LecternIcon } from '../icons/lectern';
|
|
1551
1555
|
// LensConvex aliases
|
|
1552
1556
|
export { default as LensConvexIcon } from '../icons/lens-convex';
|
|
1553
|
-
// LibraryBig aliases
|
|
1554
|
-
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1555
1557
|
// Library aliases
|
|
1556
1558
|
export { default as LibraryIcon } from '../icons/library';
|
|
1557
1559
|
// LifeBuoy aliases
|
|
@@ -1568,20 +1570,20 @@ export { default as LineDotRightHorizontalIcon } from '../icons/line-dot-right-h
|
|
|
1568
1570
|
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1569
1571
|
// LineStyle aliases
|
|
1570
1572
|
export { default as LineStyleIcon } from '../icons/line-style';
|
|
1571
|
-
// Link2Off aliases
|
|
1572
|
-
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1573
1573
|
// Link2 aliases
|
|
1574
1574
|
export { default as Link2Icon } from '../icons/link-2';
|
|
1575
|
+
// Link2Off aliases
|
|
1576
|
+
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1575
1577
|
// Link aliases
|
|
1576
1578
|
export { default as LinkIcon } from '../icons/link';
|
|
1577
1579
|
// ListCheck aliases
|
|
1578
1580
|
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1579
|
-
// ListChevronsUpDown aliases
|
|
1580
|
-
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1581
|
-
// ListChevronsDownUp aliases
|
|
1582
|
-
export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-up';
|
|
1583
1581
|
// ListChecks aliases
|
|
1584
1582
|
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1583
|
+
// ListChevronsDownUp aliases
|
|
1584
|
+
export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-up';
|
|
1585
|
+
// ListChevronsUpDown aliases
|
|
1586
|
+
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1585
1587
|
// ListCollapse aliases
|
|
1586
1588
|
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1587
1589
|
// ListEnd aliases
|
|
@@ -1594,26 +1596,26 @@ export { default as ListFilterIcon } from '../icons/list-filter';
|
|
|
1594
1596
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1595
1597
|
// ListMusic aliases
|
|
1596
1598
|
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1597
|
-
// ListPlus aliases
|
|
1598
|
-
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1599
1599
|
// ListOrdered aliases
|
|
1600
1600
|
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1601
|
+
// ListPlus aliases
|
|
1602
|
+
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1601
1603
|
// ListRestart aliases
|
|
1602
1604
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1603
|
-
// ListSortAscending aliases
|
|
1604
|
-
export { default as ListSortAscendingIcon } from '../icons/list-sort-ascending';
|
|
1605
|
-
// ListStart aliases
|
|
1606
|
-
export { default as ListStartIcon } from '../icons/list-start';
|
|
1607
1605
|
// ListSortDescending aliases
|
|
1608
1606
|
export { default as ListSortDescendingIcon } from '../icons/list-sort-descending';
|
|
1607
|
+
// ListSortAscending aliases
|
|
1608
|
+
export { default as ListSortAscendingIcon } from '../icons/list-sort-ascending';
|
|
1609
1609
|
// ListTodo aliases
|
|
1610
1610
|
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1611
|
+
// ListStart aliases
|
|
1612
|
+
export { default as ListStartIcon } from '../icons/list-start';
|
|
1611
1613
|
// ListTree aliases
|
|
1612
1614
|
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1613
|
-
// ListX aliases
|
|
1614
|
-
export { default as ListXIcon } from '../icons/list-x';
|
|
1615
1615
|
// ListVideo aliases
|
|
1616
1616
|
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1617
|
+
// ListX aliases
|
|
1618
|
+
export { default as ListXIcon } from '../icons/list-x';
|
|
1617
1619
|
// List aliases
|
|
1618
1620
|
export { default as ListIcon } from '../icons/list';
|
|
1619
1621
|
// LoaderPinwheel aliases
|
|
@@ -1632,22 +1634,24 @@ export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
|
1632
1634
|
export { default as LockIcon } from '../icons/lock';
|
|
1633
1635
|
// LogIn aliases
|
|
1634
1636
|
export { default as LogInIcon } from '../icons/log-in';
|
|
1635
|
-
// Logs aliases
|
|
1636
|
-
export { default as LogsIcon } from '../icons/logs';
|
|
1637
1637
|
// LogOut aliases
|
|
1638
1638
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1639
|
+
// Logs aliases
|
|
1640
|
+
export { default as LogsIcon } from '../icons/logs';
|
|
1639
1641
|
// Lollipop aliases
|
|
1640
1642
|
export { default as LollipopIcon } from '../icons/lollipop';
|
|
1641
|
-
// Magnet aliases
|
|
1642
|
-
export { default as MagnetIcon } from '../icons/magnet';
|
|
1643
1643
|
// Luggage aliases
|
|
1644
1644
|
export { default as LuggageIcon } from '../icons/luggage';
|
|
1645
|
+
// Magnet aliases
|
|
1646
|
+
export { default as MagnetIcon } from '../icons/magnet';
|
|
1647
|
+
// MailBadge aliases
|
|
1648
|
+
export { default as MailBadgeIcon } from '../icons/mail-badge';
|
|
1645
1649
|
// MailCheck aliases
|
|
1646
1650
|
export { default as MailCheckIcon } from '../icons/mail-check';
|
|
1647
|
-
// MailOpen aliases
|
|
1648
|
-
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1649
1651
|
// MailMinus aliases
|
|
1650
1652
|
export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
1653
|
+
// MailOpen aliases
|
|
1654
|
+
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1651
1655
|
// MailPlus aliases
|
|
1652
1656
|
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1653
1657
|
// MailSearch aliases
|
|
@@ -1668,24 +1672,24 @@ export { default as MapMinusIcon } from '../icons/map-minus';
|
|
|
1668
1672
|
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1669
1673
|
// MapPinCheck aliases
|
|
1670
1674
|
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1671
|
-
// MapPinMinusInside aliases
|
|
1672
|
-
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1673
|
-
// MapPinOff aliases
|
|
1674
|
-
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1675
1675
|
// MapPinHouse aliases
|
|
1676
1676
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1677
|
+
// MapPinMinusInside aliases
|
|
1678
|
+
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1677
1679
|
// MapPinMinus aliases
|
|
1678
1680
|
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1681
|
+
// MapPinOff aliases
|
|
1682
|
+
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1679
1683
|
// MapPinPlusInside aliases
|
|
1680
1684
|
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1681
1685
|
// MapPinPlus aliases
|
|
1682
1686
|
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1687
|
+
// MapPinSearch aliases
|
|
1688
|
+
export { default as MapPinSearchIcon } from '../icons/map-pin-search';
|
|
1683
1689
|
// MapPinXInside aliases
|
|
1684
1690
|
export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
1685
1691
|
// MapPinX aliases
|
|
1686
1692
|
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1687
|
-
// MapPinSearch aliases
|
|
1688
|
-
export { default as MapPinSearchIcon } from '../icons/map-pin-search';
|
|
1689
1693
|
// MapPin aliases
|
|
1690
1694
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1691
1695
|
// MapPinned aliases
|
|
@@ -1696,98 +1700,96 @@ export { default as MapPlusIcon } from '../icons/map-plus';
|
|
|
1696
1700
|
export { default as MapIcon } from '../icons/map';
|
|
1697
1701
|
// MarsStroke aliases
|
|
1698
1702
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1699
|
-
// Martini aliases
|
|
1700
|
-
export { default as MartiniIcon } from '../icons/martini';
|
|
1701
1703
|
// Mars aliases
|
|
1702
1704
|
export { default as MarsIcon } from '../icons/mars';
|
|
1703
|
-
//
|
|
1704
|
-
export { default as
|
|
1705
|
+
// Martini aliases
|
|
1706
|
+
export { default as MartiniIcon } from '../icons/martini';
|
|
1705
1707
|
// Maximize2 aliases
|
|
1706
1708
|
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1707
|
-
//
|
|
1708
|
-
export { default as
|
|
1709
|
+
// Maximize aliases
|
|
1710
|
+
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1709
1711
|
// MegaphoneOff aliases
|
|
1710
1712
|
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1713
|
+
// Medal aliases
|
|
1714
|
+
export { default as MedalIcon } from '../icons/medal';
|
|
1711
1715
|
// Megaphone aliases
|
|
1712
1716
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1713
|
-
// Meh aliases
|
|
1714
|
-
export { default as MehIcon } from '../icons/meh';
|
|
1715
1717
|
// MemoryStick aliases
|
|
1716
1718
|
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1717
1719
|
// Menu aliases
|
|
1718
1720
|
export { default as MenuIcon } from '../icons/menu';
|
|
1719
|
-
// MessageCircleCheck aliases
|
|
1720
|
-
export { default as MessageCircleCheckIcon } from '../icons/message-circle-check';
|
|
1721
|
-
// MessageCircleCode aliases
|
|
1722
|
-
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1723
1721
|
// Merge aliases
|
|
1724
1722
|
export { default as MergeIcon } from '../icons/merge';
|
|
1723
|
+
// MessageCircleCode aliases
|
|
1724
|
+
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1725
|
+
// MessageCircleCheck aliases
|
|
1726
|
+
export { default as MessageCircleCheckIcon } from '../icons/message-circle-check';
|
|
1725
1727
|
// MessageCircleDashed aliases
|
|
1726
1728
|
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1727
1729
|
// MessageCircleHeart aliases
|
|
1728
1730
|
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1731
|
+
// MessageCircleMore aliases
|
|
1732
|
+
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1729
1733
|
// MessageCircleOff aliases
|
|
1730
1734
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1731
1735
|
// MessageCirclePlus aliases
|
|
1732
1736
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1733
|
-
// MessageCircleMore aliases
|
|
1734
|
-
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1735
1737
|
// MessageCircleReply aliases
|
|
1736
1738
|
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1737
1739
|
// MessageCircleWarning aliases
|
|
1738
1740
|
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1739
1741
|
// MessageCircleX aliases
|
|
1740
1742
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1741
|
-
// MessageCircle aliases
|
|
1742
|
-
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1743
1743
|
// MessageSquareCheck aliases
|
|
1744
1744
|
export { default as MessageSquareCheckIcon } from '../icons/message-square-check';
|
|
1745
|
+
// MessageCircle aliases
|
|
1746
|
+
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1745
1747
|
// MessageSquareCode aliases
|
|
1746
1748
|
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1747
1749
|
// MessageSquareDashed aliases
|
|
1748
1750
|
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1749
|
-
// MessageSquareDiff aliases
|
|
1750
|
-
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1751
1751
|
// MessageSquareDot aliases
|
|
1752
1752
|
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1753
1753
|
// MessageSquareHeart aliases
|
|
1754
1754
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1755
|
+
// MessageSquareDiff aliases
|
|
1756
|
+
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1755
1757
|
// MessageSquareLock aliases
|
|
1756
1758
|
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1757
1759
|
// MessageSquareMore aliases
|
|
1758
1760
|
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1759
|
-
// MessageSquareOff aliases
|
|
1760
|
-
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1761
1761
|
// MessageSquarePlus aliases
|
|
1762
1762
|
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1763
1763
|
// MessageSquareQuote aliases
|
|
1764
1764
|
export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote';
|
|
1765
|
+
// MessageSquareOff aliases
|
|
1766
|
+
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1765
1767
|
// MessageSquareReply aliases
|
|
1766
1768
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1767
1769
|
// MessageSquareShare aliases
|
|
1768
1770
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1769
|
-
// MessageSquareWarning aliases
|
|
1770
|
-
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1771
1771
|
// MessageSquareText aliases
|
|
1772
1772
|
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1773
|
-
//
|
|
1774
|
-
export { default as
|
|
1773
|
+
// MessageSquareWarning aliases
|
|
1774
|
+
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1775
1775
|
// MessageSquare aliases
|
|
1776
1776
|
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1777
|
+
// MessageSquareX aliases
|
|
1778
|
+
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1777
1779
|
// MessagesSquare aliases
|
|
1778
1780
|
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1779
1781
|
// Metronome aliases
|
|
1780
1782
|
export { default as MetronomeIcon } from '../icons/metronome';
|
|
1781
1783
|
// MicAudioLines aliases
|
|
1782
1784
|
export { default as MicAudioLinesIcon } from '../icons/mic-audio-lines';
|
|
1783
|
-
// Mic aliases
|
|
1784
|
-
export { default as MicIcon } from '../icons/mic';
|
|
1785
1785
|
// MicOff aliases
|
|
1786
1786
|
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1787
|
-
//
|
|
1788
|
-
export { default as
|
|
1787
|
+
// Mic aliases
|
|
1788
|
+
export { default as MicIcon } from '../icons/mic';
|
|
1789
1789
|
// Microscope aliases
|
|
1790
1790
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1791
|
+
// Microchip aliases
|
|
1792
|
+
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1791
1793
|
// Microwave aliases
|
|
1792
1794
|
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1793
1795
|
// Milestone aliases
|
|
@@ -1808,18 +1810,18 @@ export { default as MirrorRectangularIcon } from '../icons/mirror-rectangular';
|
|
|
1808
1810
|
export { default as MirrorRoundIcon } from '../icons/mirror-round';
|
|
1809
1811
|
// MonitorCheck aliases
|
|
1810
1812
|
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1811
|
-
// MonitorCloud aliases
|
|
1812
|
-
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1813
1813
|
// MonitorCog aliases
|
|
1814
1814
|
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1815
|
+
// MonitorCloud aliases
|
|
1816
|
+
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1815
1817
|
// MonitorDot aliases
|
|
1816
1818
|
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1817
1819
|
// MonitorDown aliases
|
|
1818
1820
|
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1819
|
-
// MonitorPause aliases
|
|
1820
|
-
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1821
1821
|
// MonitorOff aliases
|
|
1822
1822
|
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1823
|
+
// MonitorPause aliases
|
|
1824
|
+
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1823
1825
|
// MonitorPlay aliases
|
|
1824
1826
|
export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
1825
1827
|
// MonitorSmartphone aliases
|
|
@@ -1832,22 +1834,22 @@ export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
|
1832
1834
|
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1833
1835
|
// MonitorX aliases
|
|
1834
1836
|
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1837
|
+
// Monitor aliases
|
|
1838
|
+
export { default as MonitorIcon } from '../icons/monitor';
|
|
1835
1839
|
// MoonStar aliases
|
|
1836
1840
|
export { default as MoonStarIcon } from '../icons/moon-star';
|
|
1837
1841
|
// Moon aliases
|
|
1838
1842
|
export { default as MoonIcon } from '../icons/moon';
|
|
1839
|
-
// Monitor aliases
|
|
1840
|
-
export { default as MonitorIcon } from '../icons/monitor';
|
|
1841
1843
|
// Mosque aliases
|
|
1842
1844
|
export { default as MosqueIcon } from '../icons/mosque';
|
|
1843
|
-
// MountainSnow aliases
|
|
1844
|
-
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1845
1845
|
// Motorbike aliases
|
|
1846
1846
|
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1847
|
-
//
|
|
1848
|
-
export { default as
|
|
1847
|
+
// MountainSnow aliases
|
|
1848
|
+
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1849
1849
|
// Mountain aliases
|
|
1850
1850
|
export { default as MountainIcon } from '../icons/mountain';
|
|
1851
|
+
// MouseLeft aliases
|
|
1852
|
+
export { default as MouseLeftIcon } from '../icons/mouse-left';
|
|
1851
1853
|
// MouseOff aliases
|
|
1852
1854
|
export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
1853
1855
|
// MousePointer2Off aliases
|
|
@@ -1874,20 +1876,20 @@ export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
|
1874
1876
|
export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
1875
1877
|
// MoveDown aliases
|
|
1876
1878
|
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1877
|
-
// MoveHorizontal aliases
|
|
1878
|
-
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1879
1879
|
// MoveLeft aliases
|
|
1880
1880
|
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1881
|
-
//
|
|
1882
|
-
export { default as
|
|
1881
|
+
// MoveHorizontal aliases
|
|
1882
|
+
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1883
1883
|
// MoveRight aliases
|
|
1884
1884
|
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1885
|
+
// MoveUpLeft aliases
|
|
1886
|
+
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1885
1887
|
// MoveUpRight aliases
|
|
1886
1888
|
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1887
|
-
// MoveUp aliases
|
|
1888
|
-
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1889
1889
|
// MoveVertical aliases
|
|
1890
1890
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1891
|
+
// MoveUp aliases
|
|
1892
|
+
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1891
1893
|
// Move aliases
|
|
1892
1894
|
export { default as MoveIcon } from '../icons/move';
|
|
1893
1895
|
// Music2 aliases
|
|
@@ -1902,34 +1904,34 @@ export { default as MusicIcon } from '../icons/music';
|
|
|
1902
1904
|
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1903
1905
|
// Navigation2 aliases
|
|
1904
1906
|
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1905
|
-
// Navigation aliases
|
|
1906
|
-
export { default as NavigationIcon } from '../icons/navigation';
|
|
1907
1907
|
// NavigationOff aliases
|
|
1908
1908
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1909
|
+
// Navigation aliases
|
|
1910
|
+
export { default as NavigationIcon } from '../icons/navigation';
|
|
1909
1911
|
// Network aliases
|
|
1910
1912
|
export { default as NetworkIcon } from '../icons/network';
|
|
1911
1913
|
// Newspaper aliases
|
|
1912
1914
|
export { default as NewspaperIcon } from '../icons/newspaper';
|
|
1913
1915
|
// Nfc aliases
|
|
1914
1916
|
export { default as NfcIcon } from '../icons/nfc';
|
|
1915
|
-
// NonBinary aliases
|
|
1916
|
-
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1917
1917
|
// NotebookPen aliases
|
|
1918
1918
|
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1919
1919
|
// NotebookTabs aliases
|
|
1920
1920
|
export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
1921
|
+
// NonBinary aliases
|
|
1922
|
+
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1921
1923
|
// NotebookText aliases
|
|
1922
1924
|
export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
1923
|
-
// Notebook aliases
|
|
1924
|
-
export { default as NotebookIcon } from '../icons/notebook';
|
|
1925
1925
|
// NotepadTextDashed aliases
|
|
1926
1926
|
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1927
|
-
//
|
|
1928
|
-
export { default as
|
|
1927
|
+
// Notebook aliases
|
|
1928
|
+
export { default as NotebookIcon } from '../icons/notebook';
|
|
1929
1929
|
// NotepadText aliases
|
|
1930
1930
|
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1931
1931
|
// NutOff aliases
|
|
1932
1932
|
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1933
|
+
// Nut aliases
|
|
1934
|
+
export { default as NutIcon } from '../icons/nut';
|
|
1933
1935
|
// OctagonMinus aliases
|
|
1934
1936
|
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1935
1937
|
// Octagon aliases
|
|
@@ -1942,22 +1944,22 @@ export { default as OptionIcon } from '../icons/option';
|
|
|
1942
1944
|
export { default as OrbitIcon } from '../icons/orbit';
|
|
1943
1945
|
// Origami aliases
|
|
1944
1946
|
export { default as OrigamiIcon } from '../icons/origami';
|
|
1945
|
-
// Package2 aliases
|
|
1946
|
-
export { default as Package2Icon } from '../icons/package-2';
|
|
1947
1947
|
// PackageCheck aliases
|
|
1948
1948
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1949
|
+
// Package2 aliases
|
|
1950
|
+
export { default as Package2Icon } from '../icons/package-2';
|
|
1949
1951
|
// PackageMinus aliases
|
|
1950
1952
|
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1951
1953
|
// PackageOpen aliases
|
|
1952
1954
|
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1953
|
-
// PackagePlus aliases
|
|
1954
|
-
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1955
1955
|
// PackageSearch aliases
|
|
1956
1956
|
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1957
|
-
//
|
|
1958
|
-
export { default as
|
|
1957
|
+
// PackagePlus aliases
|
|
1958
|
+
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1959
1959
|
// PackageX aliases
|
|
1960
1960
|
export { default as PackageXIcon } from '../icons/package-x';
|
|
1961
|
+
// Package aliases
|
|
1962
|
+
export { default as PackageIcon } from '../icons/package';
|
|
1961
1963
|
// PaintBucket aliases
|
|
1962
1964
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1963
1965
|
// PaintRoller aliases
|
|
@@ -1978,30 +1980,30 @@ export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
|
1978
1980
|
export { default as PanelLeftRightDashedIcon } from '../icons/panel-left-right-dashed';
|
|
1979
1981
|
// PanelRightClose aliases
|
|
1980
1982
|
export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
1981
|
-
// PanelRightOpen aliases
|
|
1982
|
-
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1983
1983
|
// PanelRight aliases
|
|
1984
1984
|
export { default as PanelRightIcon } from '../icons/panel-right';
|
|
1985
|
+
// PanelRightOpen aliases
|
|
1986
|
+
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1985
1987
|
// PanelTopBottomDashed aliases
|
|
1986
1988
|
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1987
1989
|
// PanelTopClose aliases
|
|
1988
1990
|
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1991
|
+
// PanelTop aliases
|
|
1992
|
+
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1989
1993
|
// PanelTopOpen aliases
|
|
1990
1994
|
export { default as PanelTopOpenIcon } from '../icons/panel-top-open';
|
|
1991
1995
|
// PanelsLeftBottom aliases
|
|
1992
1996
|
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1993
|
-
// PanelTop aliases
|
|
1994
|
-
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1995
|
-
// PaperBag aliases
|
|
1996
|
-
export { default as PaperBagIcon } from '../icons/paper-bag';
|
|
1997
1997
|
// PanelsRightBottom aliases
|
|
1998
1998
|
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1999
|
+
// PaperBag aliases
|
|
2000
|
+
export { default as PaperBagIcon } from '../icons/paper-bag';
|
|
2001
|
+
// Paperclip aliases
|
|
2002
|
+
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1999
2003
|
// Parasol aliases
|
|
2000
2004
|
export { default as ParasolIcon } from '../icons/parasol';
|
|
2001
2005
|
// Parentheses aliases
|
|
2002
2006
|
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
2003
|
-
// Paperclip aliases
|
|
2004
|
-
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
2005
2007
|
// ParkingMeter aliases
|
|
2006
2008
|
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
2007
2009
|
// PartyPopper aliases
|
|
@@ -2014,10 +2016,10 @@ export { default as PauseIcon } from '../icons/pause';
|
|
|
2014
2016
|
export { default as PcCaseIcon } from '../icons/pc-case';
|
|
2015
2017
|
// PenOff aliases
|
|
2016
2018
|
export { default as PenOffIcon } from '../icons/pen-off';
|
|
2017
|
-
// PenTool aliases
|
|
2018
|
-
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
2019
2019
|
// PencilLine aliases
|
|
2020
2020
|
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
2021
|
+
// PenTool aliases
|
|
2022
|
+
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
2021
2023
|
// PencilOff aliases
|
|
2022
2024
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
2023
2025
|
// PencilSparkles aliases
|
|
@@ -2038,20 +2040,20 @@ export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
|
2038
2040
|
export { default as PhiIcon } from '../icons/phi';
|
|
2039
2041
|
// PhoneCall aliases
|
|
2040
2042
|
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
2041
|
-
// PhoneForwarded aliases
|
|
2042
|
-
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
2043
2043
|
// PhoneIncoming aliases
|
|
2044
2044
|
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
2045
|
+
// PhoneForwarded aliases
|
|
2046
|
+
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
2045
2047
|
// PhoneMissed aliases
|
|
2046
2048
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
2047
2049
|
// PhoneOff aliases
|
|
2048
2050
|
export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
2049
2051
|
// PhoneOutgoing aliases
|
|
2050
2052
|
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
2051
|
-
// Pi aliases
|
|
2052
|
-
export { default as PiIcon } from '../icons/pi';
|
|
2053
2053
|
// Phone aliases
|
|
2054
2054
|
export { default as PhoneIcon } from '../icons/phone';
|
|
2055
|
+
// Pi aliases
|
|
2056
|
+
export { default as PiIcon } from '../icons/pi';
|
|
2055
2057
|
// Piano aliases
|
|
2056
2058
|
export { default as PianoIcon } from '../icons/piano';
|
|
2057
2059
|
// Pickaxe aliases
|
|
@@ -2064,22 +2066,22 @@ export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
|
2064
2066
|
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
2065
2067
|
// PilcrowLeft aliases
|
|
2066
2068
|
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
2067
|
-
// Pilcrow aliases
|
|
2068
|
-
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
2069
2069
|
// PilcrowRight aliases
|
|
2070
2070
|
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
2071
2071
|
// PillBottle aliases
|
|
2072
2072
|
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
2073
|
+
// Pilcrow aliases
|
|
2074
|
+
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
2073
2075
|
// Pill aliases
|
|
2074
2076
|
export { default as PillIcon } from '../icons/pill';
|
|
2075
2077
|
// PinOff aliases
|
|
2076
2078
|
export { default as PinOffIcon } from '../icons/pin-off';
|
|
2077
|
-
// Pizza aliases
|
|
2078
|
-
export { default as PizzaIcon } from '../icons/pizza';
|
|
2079
|
-
// Pipette aliases
|
|
2080
|
-
export { default as PipetteIcon } from '../icons/pipette';
|
|
2081
2079
|
// Pin aliases
|
|
2082
2080
|
export { default as PinIcon } from '../icons/pin';
|
|
2081
|
+
// Pipette aliases
|
|
2082
|
+
export { default as PipetteIcon } from '../icons/pipette';
|
|
2083
|
+
// Pizza aliases
|
|
2084
|
+
export { default as PizzaIcon } from '../icons/pizza';
|
|
2083
2085
|
// PlaneLanding aliases
|
|
2084
2086
|
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
2085
2087
|
// PlaneTakeoff aliases
|
|
@@ -2104,10 +2106,10 @@ export { default as PodiumIcon } from '../icons/podium';
|
|
|
2104
2106
|
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2105
2107
|
// Pointer aliases
|
|
2106
2108
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2107
|
-
// Popcorn aliases
|
|
2108
|
-
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2109
2109
|
// Popsicle aliases
|
|
2110
2110
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2111
|
+
// Popcorn aliases
|
|
2112
|
+
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2111
2113
|
// PoundSterling aliases
|
|
2112
2114
|
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2113
2115
|
// PowerOff aliases
|
|
@@ -2132,16 +2134,16 @@ export { default as PuzzleIcon } from '../icons/puzzle';
|
|
|
2132
2134
|
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2133
2135
|
// QrCode aliases
|
|
2134
2136
|
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2135
|
-
// Quote aliases
|
|
2136
|
-
export { default as QuoteIcon } from '../icons/quote';
|
|
2137
2137
|
// Rabbit aliases
|
|
2138
2138
|
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2139
|
+
// Quote aliases
|
|
2140
|
+
export { default as QuoteIcon } from '../icons/quote';
|
|
2139
2141
|
// Radar aliases
|
|
2140
2142
|
export { default as RadarIcon } from '../icons/radar';
|
|
2141
|
-
// Radical aliases
|
|
2142
|
-
export { default as RadicalIcon } from '../icons/radical';
|
|
2143
2143
|
// Radiation aliases
|
|
2144
2144
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2145
|
+
// Radical aliases
|
|
2146
|
+
export { default as RadicalIcon } from '../icons/radical';
|
|
2145
2147
|
// RadioOff aliases
|
|
2146
2148
|
export { default as RadioOffIcon } from '../icons/radio-off';
|
|
2147
2149
|
// RadioReceiver aliases
|
|
@@ -2182,10 +2184,10 @@ export { default as ReceiptIcon } from '../icons/receipt';
|
|
|
2182
2184
|
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2183
2185
|
// RectangleGoggles aliases
|
|
2184
2186
|
export { default as RectangleGogglesIcon } from '../icons/rectangle-goggles';
|
|
2185
|
-
// RectangleHorizontal aliases
|
|
2186
|
-
export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizontal';
|
|
2187
2187
|
// RectangleVertical aliases
|
|
2188
2188
|
export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
2189
|
+
// RectangleHorizontal aliases
|
|
2190
|
+
export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizontal';
|
|
2189
2191
|
// Recycle aliases
|
|
2190
2192
|
export { default as RecycleIcon } from '../icons/recycle';
|
|
2191
2193
|
// Redo2 aliases
|
|
@@ -2210,12 +2212,12 @@ export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
|
2210
2212
|
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2211
2213
|
// Repeat1 aliases
|
|
2212
2214
|
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2213
|
-
// Repeat2 aliases
|
|
2214
|
-
export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
2215
2215
|
// RepeatOff aliases
|
|
2216
2216
|
export { default as RepeatOffIcon } from '../icons/repeat-off';
|
|
2217
2217
|
// Repeat aliases
|
|
2218
2218
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2219
|
+
// Repeat2 aliases
|
|
2220
|
+
export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
2219
2221
|
// ReplaceAll aliases
|
|
2220
2222
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2221
2223
|
// Replace aliases
|
|
@@ -2228,12 +2230,10 @@ export { default as ReplyIcon } from '../icons/reply';
|
|
|
2228
2230
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2229
2231
|
// Ribbon aliases
|
|
2230
2232
|
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2231
|
-
// Rocket aliases
|
|
2232
|
-
export { default as RocketIcon } from '../icons/rocket';
|
|
2233
2233
|
// Road aliases
|
|
2234
2234
|
export { default as RoadIcon } from '../icons/road';
|
|
2235
|
-
//
|
|
2236
|
-
export { default as
|
|
2235
|
+
// Rocket aliases
|
|
2236
|
+
export { default as RocketIcon } from '../icons/rocket';
|
|
2237
2237
|
// RockingChair aliases
|
|
2238
2238
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2239
2239
|
// Rose aliases
|
|
@@ -2242,36 +2242,38 @@ export { default as RoseIcon } from '../icons/rose';
|
|
|
2242
2242
|
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2243
2243
|
// RotateCcwSquare aliases
|
|
2244
2244
|
export { default as RotateCcwSquareIcon } from '../icons/rotate-ccw-square';
|
|
2245
|
+
// RollerCoaster aliases
|
|
2246
|
+
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2245
2247
|
// RotateCcw aliases
|
|
2246
2248
|
export { default as RotateCcwIcon } from '../icons/rotate-ccw';
|
|
2247
2249
|
// RotateCwFadingClock aliases
|
|
2248
2250
|
export { default as RotateCwFadingClockIcon } from '../icons/rotate-cw-fading-clock';
|
|
2249
|
-
// RotateCwSquare aliases
|
|
2250
|
-
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2251
2251
|
// RotateCw aliases
|
|
2252
2252
|
export { default as RotateCwIcon } from '../icons/rotate-cw';
|
|
2253
|
+
// RouteOff aliases
|
|
2254
|
+
export { default as RouteOffIcon } from '../icons/route-off';
|
|
2255
|
+
// RotateCwSquare aliases
|
|
2256
|
+
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2253
2257
|
// Route aliases
|
|
2254
2258
|
export { default as RouteIcon } from '../icons/route';
|
|
2255
2259
|
// Router aliases
|
|
2256
2260
|
export { default as RouterIcon } from '../icons/router';
|
|
2257
|
-
// RouteOff aliases
|
|
2258
|
-
export { default as RouteOffIcon } from '../icons/route-off';
|
|
2259
2261
|
// Rows4 aliases
|
|
2260
2262
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2261
2263
|
// Rss aliases
|
|
2262
2264
|
export { default as RssIcon } from '../icons/rss';
|
|
2263
|
-
// Ruler aliases
|
|
2264
|
-
export { default as RulerIcon } from '../icons/ruler';
|
|
2265
2265
|
// RulerDimensionLine aliases
|
|
2266
2266
|
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2267
|
+
// Ruler aliases
|
|
2268
|
+
export { default as RulerIcon } from '../icons/ruler';
|
|
2267
2269
|
// RussianRuble aliases
|
|
2268
2270
|
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2269
|
-
// Salad aliases
|
|
2270
|
-
export { default as SaladIcon } from '../icons/salad';
|
|
2271
2271
|
// Sailboat aliases
|
|
2272
2272
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2273
2273
|
// SatelliteDish aliases
|
|
2274
2274
|
export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
2275
|
+
// Salad aliases
|
|
2276
|
+
export { default as SaladIcon } from '../icons/salad';
|
|
2275
2277
|
// Sandwich aliases
|
|
2276
2278
|
export { default as SandwichIcon } from '../icons/sandwich';
|
|
2277
2279
|
// Satellite aliases
|
|
@@ -2284,34 +2286,34 @@ export { default as SaveAllIcon } from '../icons/save-all';
|
|
|
2284
2286
|
export { default as SaveCheckIcon } from '../icons/save-check';
|
|
2285
2287
|
// SaveOff aliases
|
|
2286
2288
|
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2287
|
-
// SavePen aliases
|
|
2288
|
-
export { default as SavePenIcon } from '../icons/save-pen';
|
|
2289
2289
|
// SavePlus aliases
|
|
2290
2290
|
export { default as SavePlusIcon } from '../icons/save-plus';
|
|
2291
|
+
// SavePen aliases
|
|
2292
|
+
export { default as SavePenIcon } from '../icons/save-pen';
|
|
2291
2293
|
// Save aliases
|
|
2292
2294
|
export { default as SaveIcon } from '../icons/save';
|
|
2293
2295
|
// Scale aliases
|
|
2294
2296
|
export { default as ScaleIcon } from '../icons/scale';
|
|
2295
|
-
// ScanBarcode aliases
|
|
2296
|
-
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2297
2297
|
// Scaling aliases
|
|
2298
2298
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2299
|
+
// ScanBarcode aliases
|
|
2300
|
+
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2301
|
+
// ScanEye aliases
|
|
2302
|
+
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2299
2303
|
// ScanBox aliases
|
|
2300
2304
|
export { default as ScanBoxIcon } from '../icons/scan-box';
|
|
2301
2305
|
// ScanFace aliases
|
|
2302
2306
|
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2303
|
-
// ScanEye aliases
|
|
2304
|
-
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2305
|
-
// ScanHeart aliases
|
|
2306
|
-
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2307
2307
|
// ScanLine aliases
|
|
2308
2308
|
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2309
|
-
//
|
|
2310
|
-
export { default as
|
|
2311
|
-
// ScanSquare aliases
|
|
2312
|
-
export { default as ScanSquareIcon } from '../icons/scan-square';
|
|
2309
|
+
// ScanHeart aliases
|
|
2310
|
+
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2313
2311
|
// ScanQrCode aliases
|
|
2314
2312
|
export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
2313
|
+
// ScanSquare aliases
|
|
2314
|
+
export { default as ScanSquareIcon } from '../icons/scan-square';
|
|
2315
|
+
// ScanSearch aliases
|
|
2316
|
+
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2315
2317
|
// ScanText aliases
|
|
2316
2318
|
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2317
2319
|
// Scan aliases
|
|
@@ -2320,42 +2322,42 @@ export { default as ScanIcon } from '../icons/scan';
|
|
|
2320
2322
|
export { default as SchoolIcon } from '../icons/school';
|
|
2321
2323
|
// ScissorsLineDashed aliases
|
|
2322
2324
|
export { default as ScissorsLineDashedIcon } from '../icons/scissors-line-dashed';
|
|
2323
|
-
// ScreenShareOff aliases
|
|
2324
|
-
export { default as ScreenShareOffIcon } from '../icons/screen-share-off';
|
|
2325
2325
|
// Scissors aliases
|
|
2326
2326
|
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2327
|
-
// Scroll aliases
|
|
2328
|
-
export { default as ScrollIcon } from '../icons/scroll';
|
|
2329
2327
|
// Scooter aliases
|
|
2330
2328
|
export { default as ScooterIcon } from '../icons/scooter';
|
|
2329
|
+
// ScreenShareOff aliases
|
|
2330
|
+
export { default as ScreenShareOffIcon } from '../icons/screen-share-off';
|
|
2331
2331
|
// ScreenShare aliases
|
|
2332
2332
|
export { default as ScreenShareIcon } from '../icons/screen-share';
|
|
2333
2333
|
// ScrollText aliases
|
|
2334
2334
|
export { default as ScrollTextIcon } from '../icons/scroll-text';
|
|
2335
|
-
//
|
|
2336
|
-
export { default as
|
|
2335
|
+
// Scroll aliases
|
|
2336
|
+
export { default as ScrollIcon } from '../icons/scroll';
|
|
2337
2337
|
// SearchAlert aliases
|
|
2338
2338
|
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2339
|
+
// SearchCheck aliases
|
|
2340
|
+
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2339
2341
|
// SearchCode aliases
|
|
2340
2342
|
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2341
|
-
// Search aliases
|
|
2342
|
-
export { default as SearchIcon } from '../icons/search';
|
|
2343
2343
|
// SearchSlash aliases
|
|
2344
2344
|
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2345
|
-
// Section aliases
|
|
2346
|
-
export { default as SectionIcon } from '../icons/section';
|
|
2347
2345
|
// SearchX aliases
|
|
2348
2346
|
export { default as SearchXIcon } from '../icons/search-x';
|
|
2347
|
+
// Search aliases
|
|
2348
|
+
export { default as SearchIcon } from '../icons/search';
|
|
2349
|
+
// Section aliases
|
|
2350
|
+
export { default as SectionIcon } from '../icons/section';
|
|
2349
2351
|
// SendToBack aliases
|
|
2350
2352
|
export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
2351
2353
|
// Send aliases
|
|
2352
2354
|
export { default as SendIcon } from '../icons/send';
|
|
2355
|
+
// SeparatorVertical aliases
|
|
2356
|
+
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2353
2357
|
// SeparatorHorizontal aliases
|
|
2354
2358
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2355
2359
|
// ServerCog aliases
|
|
2356
2360
|
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2357
|
-
// SeparatorVertical aliases
|
|
2358
|
-
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2359
2361
|
// ServerCrash aliases
|
|
2360
2362
|
export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
2361
2363
|
// ServerOff aliases
|
|
@@ -2372,18 +2374,18 @@ export { default as SettingsIcon } from '../icons/settings';
|
|
|
2372
2374
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2373
2375
|
// Share2 aliases
|
|
2374
2376
|
export { default as Share2Icon } from '../icons/share-2';
|
|
2375
|
-
// Sheet aliases
|
|
2376
|
-
export { default as SheetIcon } from '../icons/sheet';
|
|
2377
|
-
// Shell aliases
|
|
2378
|
-
export { default as ShellIcon } from '../icons/shell';
|
|
2379
2377
|
// Share aliases
|
|
2380
2378
|
export { default as ShareIcon } from '../icons/share';
|
|
2381
|
-
//
|
|
2382
|
-
export { default as
|
|
2379
|
+
// Sheet aliases
|
|
2380
|
+
export { default as SheetIcon } from '../icons/sheet';
|
|
2383
2381
|
// ShelvingUnit aliases
|
|
2384
2382
|
export { default as ShelvingUnitIcon } from '../icons/shelving-unit';
|
|
2385
2383
|
// ShieldAlert aliases
|
|
2386
2384
|
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2385
|
+
// ShieldBan aliases
|
|
2386
|
+
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2387
|
+
// Shell aliases
|
|
2388
|
+
export { default as ShellIcon } from '../icons/shell';
|
|
2387
2389
|
// ShieldCheck aliases
|
|
2388
2390
|
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2389
2391
|
// ShieldCogCorner aliases
|
|
@@ -2396,22 +2398,24 @@ export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
|
2396
2398
|
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2397
2399
|
// ShieldKeyhole aliases
|
|
2398
2400
|
export { default as ShieldKeyholeIcon } from '../icons/shield-keyhole';
|
|
2401
|
+
// ShieldLock aliases
|
|
2402
|
+
export { default as ShieldLockIcon } from '../icons/shield-lock';
|
|
2399
2403
|
// ShieldMinus aliases
|
|
2400
2404
|
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2401
2405
|
// ShieldOff aliases
|
|
2402
2406
|
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2403
|
-
// ShieldUser aliases
|
|
2404
|
-
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2405
2407
|
// ShieldPlus aliases
|
|
2406
2408
|
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2409
|
+
// ShieldUser aliases
|
|
2410
|
+
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2407
2411
|
// Shield aliases
|
|
2408
2412
|
export { default as ShieldIcon } from '../icons/shield';
|
|
2413
|
+
// Ship aliases
|
|
2414
|
+
export { default as ShipIcon } from '../icons/ship';
|
|
2409
2415
|
// ShipWheel aliases
|
|
2410
2416
|
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2411
2417
|
// Shirt aliases
|
|
2412
2418
|
export { default as ShirtIcon } from '../icons/shirt';
|
|
2413
|
-
// Ship aliases
|
|
2414
|
-
export { default as ShipIcon } from '../icons/ship';
|
|
2415
2419
|
// ShoppingBag aliases
|
|
2416
2420
|
export { default as ShoppingBagIcon } from '../icons/shopping-bag';
|
|
2417
2421
|
// ShoppingBasket aliases
|
|
@@ -2422,92 +2426,88 @@ export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
|
2422
2426
|
export { default as ShovelIcon } from '../icons/shovel';
|
|
2423
2427
|
// ShowerHead aliases
|
|
2424
2428
|
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2425
|
-
// Shrink aliases
|
|
2426
|
-
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2427
2429
|
// Shredder aliases
|
|
2428
2430
|
export { default as ShredderIcon } from '../icons/shredder';
|
|
2429
|
-
// Shrub aliases
|
|
2430
|
-
export { default as ShrubIcon } from '../icons/shrub';
|
|
2431
2431
|
// Shrimp aliases
|
|
2432
2432
|
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2433
|
+
// Shrink aliases
|
|
2434
|
+
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2435
|
+
// Shrub aliases
|
|
2436
|
+
export { default as ShrubIcon } from '../icons/shrub';
|
|
2433
2437
|
// Shuffle aliases
|
|
2434
2438
|
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2435
2439
|
// Sigma aliases
|
|
2436
2440
|
export { default as SigmaIcon } from '../icons/sigma';
|
|
2437
2441
|
// SignalHigh aliases
|
|
2438
2442
|
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2439
|
-
// SignalMedium aliases
|
|
2440
|
-
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2441
2443
|
// SignalLow aliases
|
|
2442
2444
|
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2445
|
+
// SignalMedium aliases
|
|
2446
|
+
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2443
2447
|
// SignalZero aliases
|
|
2444
2448
|
export { default as SignalZeroIcon } from '../icons/signal-zero';
|
|
2445
|
-
// SignpostBig aliases
|
|
2446
|
-
export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
2447
2449
|
// Signal aliases
|
|
2448
2450
|
export { default as SignalIcon } from '../icons/signal';
|
|
2449
2451
|
// Signature aliases
|
|
2450
2452
|
export { default as SignatureIcon } from '../icons/signature';
|
|
2451
|
-
//
|
|
2452
|
-
export { default as
|
|
2453
|
+
// SignpostBig aliases
|
|
2454
|
+
export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
2453
2455
|
// Siren aliases
|
|
2454
2456
|
export { default as SirenIcon } from '../icons/siren';
|
|
2455
2457
|
// SkipBack aliases
|
|
2456
2458
|
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2459
|
+
// Signpost aliases
|
|
2460
|
+
export { default as SignpostIcon } from '../icons/signpost';
|
|
2457
2461
|
// SkipForward aliases
|
|
2458
2462
|
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2459
2463
|
// Skull aliases
|
|
2460
2464
|
export { default as SkullIcon } from '../icons/skull';
|
|
2461
|
-
// Slice aliases
|
|
2462
|
-
export { default as SliceIcon } from '../icons/slice';
|
|
2463
|
-
// SmartphoneCharging aliases
|
|
2464
|
-
export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging';
|
|
2465
2465
|
// Slash aliases
|
|
2466
2466
|
export { default as SlashIcon } from '../icons/slash';
|
|
2467
|
+
// Slice aliases
|
|
2468
|
+
export { default as SliceIcon } from '../icons/slice';
|
|
2467
2469
|
// SlidersHorizontal aliases
|
|
2468
2470
|
export { default as SlidersHorizontalIcon } from '../icons/sliders-horizontal';
|
|
2469
|
-
//
|
|
2470
|
-
export { default as
|
|
2471
|
-
// SmilePlus aliases
|
|
2472
|
-
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2471
|
+
// SmartphoneCharging aliases
|
|
2472
|
+
export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging';
|
|
2473
2473
|
// SmartphoneNfc aliases
|
|
2474
2474
|
export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
2475
|
-
//
|
|
2476
|
-
export { default as
|
|
2475
|
+
// Smartphone aliases
|
|
2476
|
+
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2477
2477
|
// Snail aliases
|
|
2478
2478
|
export { default as SnailIcon } from '../icons/snail';
|
|
2479
|
-
// Snowflake aliases
|
|
2480
|
-
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2481
2479
|
// SoapDispenserDroplet aliases
|
|
2482
2480
|
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2483
2481
|
// Sofa aliases
|
|
2484
2482
|
export { default as SofaIcon } from '../icons/sofa';
|
|
2485
|
-
//
|
|
2486
|
-
export { default as
|
|
2483
|
+
// Snowflake aliases
|
|
2484
|
+
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2487
2485
|
// SolarPanel aliases
|
|
2488
2486
|
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2487
|
+
// Soup aliases
|
|
2488
|
+
export { default as SoupIcon } from '../icons/soup';
|
|
2489
2489
|
// Space aliases
|
|
2490
2490
|
export { default as SpaceIcon } from '../icons/space';
|
|
2491
|
+
// Sparkle aliases
|
|
2492
|
+
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2491
2493
|
// Spade aliases
|
|
2492
2494
|
export { default as SpadeIcon } from '../icons/spade';
|
|
2495
|
+
// Speaker aliases
|
|
2496
|
+
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2493
2497
|
// Speech aliases
|
|
2494
2498
|
export { default as SpeechIcon } from '../icons/speech';
|
|
2495
|
-
// Sparkle aliases
|
|
2496
|
-
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2497
2499
|
// SpellCheck2 aliases
|
|
2498
2500
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2499
|
-
// Speaker aliases
|
|
2500
|
-
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2501
|
-
// SplinePointer aliases
|
|
2502
|
-
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2503
2501
|
// SpellCheck aliases
|
|
2504
2502
|
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2503
|
+
// SplinePointer aliases
|
|
2504
|
+
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2505
2505
|
// Spline aliases
|
|
2506
2506
|
export { default as SplineIcon } from '../icons/spline';
|
|
2507
|
-
// Split aliases
|
|
2508
|
-
export { default as SplitIcon } from '../icons/split';
|
|
2509
2507
|
// Spool aliases
|
|
2510
2508
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2509
|
+
// Split aliases
|
|
2510
|
+
export { default as SplitIcon } from '../icons/split';
|
|
2511
2511
|
// SportShoe aliases
|
|
2512
2512
|
export { default as SportShoeIcon } from '../icons/sport-shoe';
|
|
2513
2513
|
// Spotlight aliases
|
|
@@ -2520,42 +2520,42 @@ export { default as SproutIcon } from '../icons/sprout';
|
|
|
2520
2520
|
export { default as SquareArrowRightEnterIcon } from '../icons/square-arrow-right-enter';
|
|
2521
2521
|
// SquareArrowRightExit aliases
|
|
2522
2522
|
export { default as SquareArrowRightExitIcon } from '../icons/square-arrow-right-exit';
|
|
2523
|
-
// SquareDashedBottom aliases
|
|
2524
|
-
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2525
2523
|
// SquareDashedBottomCode aliases
|
|
2526
2524
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2525
|
+
// SquareDashedBottom aliases
|
|
2526
|
+
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2527
2527
|
// SquareDashedTopSolid aliases
|
|
2528
2528
|
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2529
2529
|
// SquareOff aliases
|
|
2530
2530
|
export { default as SquareOffIcon } from '../icons/square-off';
|
|
2531
2531
|
// SquarePause aliases
|
|
2532
2532
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2533
|
+
// SquareRoundCorner aliases
|
|
2534
|
+
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2533
2535
|
// SquareRadical aliases
|
|
2534
2536
|
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2535
2537
|
// SquareSquare aliases
|
|
2536
2538
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2537
|
-
// SquareRoundCorner aliases
|
|
2538
|
-
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2539
2539
|
// SquareStack aliases
|
|
2540
2540
|
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2541
|
-
// SquareStop aliases
|
|
2542
|
-
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2543
2541
|
// SquareStar aliases
|
|
2544
2542
|
export { default as SquareStarIcon } from '../icons/square-star';
|
|
2543
|
+
// SquareStop aliases
|
|
2544
|
+
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2545
2545
|
// Square aliases
|
|
2546
2546
|
export { default as SquareIcon } from '../icons/square';
|
|
2547
2547
|
// SquaresExclude aliases
|
|
2548
2548
|
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2549
|
-
// SquaresSubtract aliases
|
|
2550
|
-
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2551
2549
|
// SquaresIntersect aliases
|
|
2552
2550
|
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2551
|
+
// SquaresSubtract aliases
|
|
2552
|
+
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2553
2553
|
// SquaresUnite aliases
|
|
2554
2554
|
export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
2555
|
-
// Squircle aliases
|
|
2556
|
-
export { default as SquircleIcon } from '../icons/squircle';
|
|
2557
2555
|
// SquircleDashed aliases
|
|
2558
2556
|
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2557
|
+
// Squircle aliases
|
|
2558
|
+
export { default as SquircleIcon } from '../icons/squircle';
|
|
2559
2559
|
// Squirrel aliases
|
|
2560
2560
|
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2561
2561
|
// Stamp aliases
|
|
@@ -2566,20 +2566,20 @@ export { default as StarCheckIcon } from '../icons/star-check';
|
|
|
2566
2566
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2567
2567
|
// StarMinus aliases
|
|
2568
2568
|
export { default as StarMinusIcon } from '../icons/star-minus';
|
|
2569
|
-
// StarX aliases
|
|
2570
|
-
export { default as StarXIcon } from '../icons/star-x';
|
|
2571
2569
|
// StarOff aliases
|
|
2572
2570
|
export { default as StarOffIcon } from '../icons/star-off';
|
|
2573
|
-
// Star aliases
|
|
2574
|
-
export { default as StarIcon } from '../icons/star';
|
|
2575
2571
|
// StarPlus aliases
|
|
2576
2572
|
export { default as StarPlusIcon } from '../icons/star-plus';
|
|
2573
|
+
// StarX aliases
|
|
2574
|
+
export { default as StarXIcon } from '../icons/star-x';
|
|
2575
|
+
// Star aliases
|
|
2576
|
+
export { default as StarIcon } from '../icons/star';
|
|
2577
2577
|
// StepBack aliases
|
|
2578
2578
|
export { default as StepBackIcon } from '../icons/step-back';
|
|
2579
|
-
// Stethoscope aliases
|
|
2580
|
-
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2581
2579
|
// StepForward aliases
|
|
2582
2580
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2581
|
+
// Stethoscope aliases
|
|
2582
|
+
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2583
2583
|
// Sticker aliases
|
|
2584
2584
|
export { default as StickerIcon } from '../icons/sticker';
|
|
2585
2585
|
// StickyNoteCheck aliases
|
|
@@ -2596,44 +2596,44 @@ export { default as StickyNoteXIcon } from '../icons/sticky-note-x';
|
|
|
2596
2596
|
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2597
2597
|
// StickyNotes aliases
|
|
2598
2598
|
export { default as StickyNotesIcon } from '../icons/sticky-notes';
|
|
2599
|
-
// Stone aliases
|
|
2600
|
-
export { default as StoneIcon } from '../icons/stone';
|
|
2601
2599
|
// Store aliases
|
|
2602
2600
|
export { default as StoreIcon } from '../icons/store';
|
|
2601
|
+
// Stone aliases
|
|
2602
|
+
export { default as StoneIcon } from '../icons/stone';
|
|
2603
2603
|
// StretchHorizontal aliases
|
|
2604
2604
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2605
2605
|
// StretchVertical aliases
|
|
2606
2606
|
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2607
2607
|
// Strikethrough aliases
|
|
2608
2608
|
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2609
|
-
// Summary aliases
|
|
2610
|
-
export { default as SummaryIcon } from '../icons/summary';
|
|
2611
2609
|
// Subscript aliases
|
|
2612
2610
|
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2611
|
+
// Summary aliases
|
|
2612
|
+
export { default as SummaryIcon } from '../icons/summary';
|
|
2613
2613
|
// SunDim aliases
|
|
2614
2614
|
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2615
2615
|
// SunMedium aliases
|
|
2616
2616
|
export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
2617
2617
|
// SunMoon aliases
|
|
2618
2618
|
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2619
|
-
// SunSnow aliases
|
|
2620
|
-
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2621
2619
|
// Sun aliases
|
|
2622
2620
|
export { default as SunIcon } from '../icons/sun';
|
|
2621
|
+
// SunSnow aliases
|
|
2622
|
+
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2623
2623
|
// Sunrise aliases
|
|
2624
2624
|
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2625
|
-
// Sunset aliases
|
|
2626
|
-
export { default as SunsetIcon } from '../icons/sunset';
|
|
2627
2625
|
// Superscript aliases
|
|
2628
2626
|
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2629
|
-
//
|
|
2630
|
-
export { default as
|
|
2627
|
+
// Sunset aliases
|
|
2628
|
+
export { default as SunsetIcon } from '../icons/sunset';
|
|
2631
2629
|
// SwissFranc aliases
|
|
2632
2630
|
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2633
|
-
//
|
|
2634
|
-
export { default as
|
|
2631
|
+
// SwatchBook aliases
|
|
2632
|
+
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2635
2633
|
// SwitchCamera aliases
|
|
2636
2634
|
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2635
|
+
// Sword aliases
|
|
2636
|
+
export { default as SwordIcon } from '../icons/sword';
|
|
2637
2637
|
// Swords aliases
|
|
2638
2638
|
export { default as SwordsIcon } from '../icons/swords';
|
|
2639
2639
|
// Syringe aliases
|
|
@@ -2644,12 +2644,12 @@ export { default as Table2Icon } from '../icons/table-2';
|
|
|
2644
2644
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2645
2645
|
// TableCellsSplit aliases
|
|
2646
2646
|
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2647
|
+
// TableOfContents aliases
|
|
2648
|
+
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2647
2649
|
// TableColumnsSplit aliases
|
|
2648
2650
|
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2649
2651
|
// TableProperties aliases
|
|
2650
2652
|
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2651
|
-
// TableOfContents aliases
|
|
2652
|
-
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2653
2653
|
// TableRowsSplit aliases
|
|
2654
2654
|
export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
2655
2655
|
// Table aliases
|
|
@@ -2660,20 +2660,20 @@ export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
|
2660
2660
|
export { default as TabletIcon } from '../icons/tablet';
|
|
2661
2661
|
// Tablets aliases
|
|
2662
2662
|
export { default as TabletsIcon } from '../icons/tablets';
|
|
2663
|
-
// TagX aliases
|
|
2664
|
-
export { default as TagXIcon } from '../icons/tag-x';
|
|
2665
2663
|
// TagPlus aliases
|
|
2666
2664
|
export { default as TagPlusIcon } from '../icons/tag-plus';
|
|
2665
|
+
// TagX aliases
|
|
2666
|
+
export { default as TagXIcon } from '../icons/tag-x';
|
|
2667
2667
|
// Tag aliases
|
|
2668
2668
|
export { default as TagIcon } from '../icons/tag';
|
|
2669
2669
|
// Tags aliases
|
|
2670
2670
|
export { default as TagsIcon } from '../icons/tags';
|
|
2671
|
+
// Tally1 aliases
|
|
2672
|
+
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2671
2673
|
// Tally2 aliases
|
|
2672
2674
|
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2673
2675
|
// Tally3 aliases
|
|
2674
2676
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2675
|
-
// Tally1 aliases
|
|
2676
|
-
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2677
2677
|
// Tally4 aliases
|
|
2678
2678
|
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2679
2679
|
// Tally5 aliases
|
|
@@ -2682,30 +2682,30 @@ export { default as Tally5Icon } from '../icons/tally-5';
|
|
|
2682
2682
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2683
2683
|
// Target aliases
|
|
2684
2684
|
export { default as TargetIcon } from '../icons/target';
|
|
2685
|
-
// Telescope aliases
|
|
2686
|
-
export { default as TelescopeIcon } from '../icons/telescope';
|
|
2687
2685
|
// TentTree aliases
|
|
2688
2686
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2687
|
+
// Telescope aliases
|
|
2688
|
+
export { default as TelescopeIcon } from '../icons/telescope';
|
|
2689
2689
|
// Tent aliases
|
|
2690
2690
|
export { default as TentIcon } from '../icons/tent';
|
|
2691
|
-
// TestTube aliases
|
|
2692
|
-
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2693
2691
|
// Terminal aliases
|
|
2694
2692
|
export { default as TerminalIcon } from '../icons/terminal';
|
|
2693
|
+
// TestTube aliases
|
|
2694
|
+
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2695
2695
|
// TestTubes aliases
|
|
2696
2696
|
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2697
2697
|
// TextCursorInput aliases
|
|
2698
2698
|
export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
2699
2699
|
// TextCursor aliases
|
|
2700
2700
|
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2701
|
-
//
|
|
2702
|
-
export { default as
|
|
2701
|
+
// TextQuote aliases
|
|
2702
|
+
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2703
2703
|
// Theater aliases
|
|
2704
2704
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2705
|
+
// TextSearch aliases
|
|
2706
|
+
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2705
2707
|
// ThermometerSnowflake aliases
|
|
2706
2708
|
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2707
|
-
// TextQuote aliases
|
|
2708
|
-
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2709
2709
|
// ThermometerSun aliases
|
|
2710
2710
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2711
2711
|
// Thermometer aliases
|
|
@@ -2720,10 +2720,10 @@ export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
|
2720
2720
|
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2721
2721
|
// TicketPercent aliases
|
|
2722
2722
|
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2723
|
-
// TicketPlus aliases
|
|
2724
|
-
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2725
2723
|
// TicketSlash aliases
|
|
2726
2724
|
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2725
|
+
// TicketPlus aliases
|
|
2726
|
+
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2727
2727
|
// TicketX aliases
|
|
2728
2728
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2729
2729
|
// Ticket aliases
|
|
@@ -2744,60 +2744,60 @@ export { default as TimerIcon } from '../icons/timer';
|
|
|
2744
2744
|
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2745
2745
|
// ToggleRight aliases
|
|
2746
2746
|
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2747
|
-
// Toilet aliases
|
|
2748
|
-
export { default as ToiletIcon } from '../icons/toilet';
|
|
2749
2747
|
// ToolCase aliases
|
|
2750
2748
|
export { default as ToolCaseIcon } from '../icons/tool-case';
|
|
2749
|
+
// Toilet aliases
|
|
2750
|
+
export { default as ToiletIcon } from '../icons/toilet';
|
|
2751
2751
|
// Toolbox aliases
|
|
2752
2752
|
export { default as ToolboxIcon } from '../icons/toolbox';
|
|
2753
|
-
// Torus aliases
|
|
2754
|
-
export { default as TorusIcon } from '../icons/torus';
|
|
2755
2753
|
// Tornado aliases
|
|
2756
2754
|
export { default as TornadoIcon } from '../icons/tornado';
|
|
2755
|
+
// Torus aliases
|
|
2756
|
+
export { default as TorusIcon } from '../icons/torus';
|
|
2757
2757
|
// TouchpadOff aliases
|
|
2758
2758
|
export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
2759
2759
|
// TowelRack aliases
|
|
2760
2760
|
export { default as TowelRackIcon } from '../icons/towel-rack';
|
|
2761
2761
|
// Touchpad aliases
|
|
2762
2762
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2763
|
-
// TowerControl aliases
|
|
2764
|
-
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2765
2763
|
// ToyBrick aliases
|
|
2766
2764
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2765
|
+
// TowerControl aliases
|
|
2766
|
+
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2767
2767
|
// Tractor aliases
|
|
2768
2768
|
export { default as TractorIcon } from '../icons/tractor';
|
|
2769
|
-
// TrafficCone aliases
|
|
2770
|
-
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2771
2769
|
// TrainFrontTunnel aliases
|
|
2772
2770
|
export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
2773
2771
|
// TrainFront aliases
|
|
2774
2772
|
export { default as TrainFrontIcon } from '../icons/train-front';
|
|
2775
2773
|
// TrainTrack aliases
|
|
2776
2774
|
export { default as TrainTrackIcon } from '../icons/train-track';
|
|
2777
|
-
//
|
|
2778
|
-
export { default as
|
|
2775
|
+
// TrafficCone aliases
|
|
2776
|
+
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2779
2777
|
// Transgender aliases
|
|
2780
2778
|
export { default as TransgenderIcon } from '../icons/transgender';
|
|
2779
|
+
// Trash2 aliases
|
|
2780
|
+
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2781
2781
|
// Trash aliases
|
|
2782
2782
|
export { default as TrashIcon } from '../icons/trash';
|
|
2783
2783
|
// TreeDeciduous aliases
|
|
2784
2784
|
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2785
2785
|
// TreePine aliases
|
|
2786
2786
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2787
|
-
// TrendingDown aliases
|
|
2788
|
-
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2789
2787
|
// Trees aliases
|
|
2790
2788
|
export { default as TreesIcon } from '../icons/trees';
|
|
2789
|
+
// TrendingDown aliases
|
|
2790
|
+
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2791
2791
|
// TrendingUpDown aliases
|
|
2792
2792
|
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2793
2793
|
// TrendingUp aliases
|
|
2794
2794
|
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2795
|
+
// TriangleDashed aliases
|
|
2796
|
+
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2795
2797
|
// TriangleRight aliases
|
|
2796
2798
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2797
2799
|
// Triangle aliases
|
|
2798
2800
|
export { default as TriangleIcon } from '../icons/triangle';
|
|
2799
|
-
// TriangleDashed aliases
|
|
2800
|
-
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2801
2801
|
// Trophy aliases
|
|
2802
2802
|
export { default as TrophyIcon } from '../icons/trophy';
|
|
2803
2803
|
// TruckElectric aliases
|
|
@@ -2820,76 +2820,76 @@ export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
|
2820
2820
|
export { default as TypeIcon } from '../icons/type';
|
|
2821
2821
|
// UmbrellaOff aliases
|
|
2822
2822
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2823
|
-
// Umbrella aliases
|
|
2824
|
-
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2825
2823
|
// Underline aliases
|
|
2826
2824
|
export { default as UnderlineIcon } from '../icons/underline';
|
|
2825
|
+
// Umbrella aliases
|
|
2826
|
+
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2827
2827
|
// Undo2 aliases
|
|
2828
2828
|
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2829
2829
|
// Undo aliases
|
|
2830
2830
|
export { default as UndoIcon } from '../icons/undo';
|
|
2831
2831
|
// UndoDot aliases
|
|
2832
2832
|
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2833
|
-
// UnfoldVertical aliases
|
|
2834
|
-
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2835
2833
|
// UnfoldHorizontal aliases
|
|
2836
2834
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2837
2835
|
// Ungroup aliases
|
|
2838
2836
|
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2837
|
+
// UnfoldVertical aliases
|
|
2838
|
+
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2839
2839
|
// Unlink2 aliases
|
|
2840
2840
|
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2841
2841
|
// Unlink aliases
|
|
2842
2842
|
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2843
|
-
// Upload aliases
|
|
2844
|
-
export { default as UploadIcon } from '../icons/upload';
|
|
2845
2843
|
// Unplug aliases
|
|
2846
2844
|
export { default as UnplugIcon } from '../icons/unplug';
|
|
2845
|
+
// Upload aliases
|
|
2846
|
+
export { default as UploadIcon } from '../icons/upload';
|
|
2847
2847
|
// Usb aliases
|
|
2848
2848
|
export { default as UsbIcon } from '../icons/usb';
|
|
2849
2849
|
// UserCheck aliases
|
|
2850
2850
|
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2851
2851
|
// UserCog aliases
|
|
2852
2852
|
export { default as UserCogIcon } from '../icons/user-cog';
|
|
2853
|
-
// UserKey aliases
|
|
2854
|
-
export { default as UserKeyIcon } from '../icons/user-key';
|
|
2855
2853
|
// UserLock aliases
|
|
2856
2854
|
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2857
|
-
//
|
|
2858
|
-
export { default as
|
|
2855
|
+
// UserKey aliases
|
|
2856
|
+
export { default as UserKeyIcon } from '../icons/user-key';
|
|
2859
2857
|
// UserMinus aliases
|
|
2860
2858
|
export { default as UserMinusIcon } from '../icons/user-minus';
|
|
2859
|
+
// UserPen aliases
|
|
2860
|
+
export { default as UserPenIcon } from '../icons/user-pen';
|
|
2861
2861
|
// UserPlus aliases
|
|
2862
2862
|
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2863
|
-
// UserRoundArrowLeft aliases
|
|
2864
|
-
export { default as UserRoundArrowLeftIcon } from '../icons/user-round-arrow-left';
|
|
2865
2863
|
// UserRoundKey aliases
|
|
2866
2864
|
export { default as UserRoundKeyIcon } from '../icons/user-round-key';
|
|
2865
|
+
// UserRoundArrowLeft aliases
|
|
2866
|
+
export { default as UserRoundArrowLeftIcon } from '../icons/user-round-arrow-left';
|
|
2867
2867
|
// UserRoundPen aliases
|
|
2868
2868
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2869
|
-
// UserRoundSearch aliases
|
|
2870
|
-
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2871
2869
|
// UserShield aliases
|
|
2872
2870
|
export { default as UserShieldIcon } from '../icons/user-shield';
|
|
2873
|
-
//
|
|
2874
|
-
export { default as
|
|
2871
|
+
// UserRoundSearch aliases
|
|
2872
|
+
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2875
2873
|
// UserSearch aliases
|
|
2876
2874
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2875
|
+
// UserStar aliases
|
|
2876
|
+
export { default as UserStarIcon } from '../icons/user-star';
|
|
2877
|
+
// Users aliases
|
|
2878
|
+
export { default as UsersIcon } from '../icons/users';
|
|
2877
2879
|
// UserX aliases
|
|
2878
2880
|
export { default as UserXIcon } from '../icons/user-x';
|
|
2879
2881
|
// User aliases
|
|
2880
2882
|
export { default as UserIcon } from '../icons/user';
|
|
2881
|
-
// Users aliases
|
|
2882
|
-
export { default as UsersIcon } from '../icons/users';
|
|
2883
2883
|
// UtilityPole aliases
|
|
2884
2884
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2885
2885
|
// Van aliases
|
|
2886
2886
|
export { default as VanIcon } from '../icons/van';
|
|
2887
|
+
// Vault aliases
|
|
2888
|
+
export { default as VaultIcon } from '../icons/vault';
|
|
2887
2889
|
// Variable aliases
|
|
2888
2890
|
export { default as VariableIcon } from '../icons/variable';
|
|
2889
2891
|
// VectorSquare aliases
|
|
2890
2892
|
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2891
|
-
// Vault aliases
|
|
2892
|
-
export { default as VaultIcon } from '../icons/vault';
|
|
2893
2893
|
// Vegan aliases
|
|
2894
2894
|
export { default as VeganIcon } from '../icons/vegan';
|
|
2895
2895
|
// VenetianMask aliases
|
|
@@ -2898,34 +2898,34 @@ export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
|
2898
2898
|
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2899
2899
|
// Venus aliases
|
|
2900
2900
|
export { default as VenusIcon } from '../icons/venus';
|
|
2901
|
-
// VibrateOff aliases
|
|
2902
|
-
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2903
|
-
// Vibrate aliases
|
|
2904
|
-
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2905
2901
|
// VideoOff aliases
|
|
2906
2902
|
export { default as VideoOffIcon } from '../icons/video-off';
|
|
2903
|
+
// Vibrate aliases
|
|
2904
|
+
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2905
|
+
// VibrateOff aliases
|
|
2906
|
+
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2907
2907
|
// Video aliases
|
|
2908
2908
|
export { default as VideoIcon } from '../icons/video';
|
|
2909
2909
|
// Videotape aliases
|
|
2910
2910
|
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2911
2911
|
// View aliases
|
|
2912
2912
|
export { default as ViewIcon } from '../icons/view';
|
|
2913
|
-
// Voicemail aliases
|
|
2914
|
-
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2915
2913
|
// Volleyball aliases
|
|
2916
2914
|
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2917
|
-
//
|
|
2918
|
-
export { default as
|
|
2915
|
+
// Voicemail aliases
|
|
2916
|
+
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2919
2917
|
// Volume1 aliases
|
|
2920
2918
|
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2921
|
-
//
|
|
2922
|
-
export { default as
|
|
2919
|
+
// Volume2 aliases
|
|
2920
|
+
export { default as Volume2Icon } from '../icons/volume-2';
|
|
2923
2921
|
// VolumeX aliases
|
|
2924
2922
|
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2925
|
-
//
|
|
2926
|
-
export { default as
|
|
2923
|
+
// VolumeOff aliases
|
|
2924
|
+
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2927
2925
|
// Vote aliases
|
|
2928
2926
|
export { default as VoteIcon } from '../icons/vote';
|
|
2927
|
+
// Volume aliases
|
|
2928
|
+
export { default as VolumeIcon } from '../icons/volume';
|
|
2929
2929
|
// WalletCards aliases
|
|
2930
2930
|
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2931
2931
|
// Wallet aliases
|
|
@@ -2936,18 +2936,18 @@ export { default as WandIcon } from '../icons/wand';
|
|
|
2936
2936
|
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2937
2937
|
// Warehouse aliases
|
|
2938
2938
|
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2939
|
-
// Watch aliases
|
|
2940
|
-
export { default as WatchIcon } from '../icons/watch';
|
|
2941
2939
|
// WashingMachine aliases
|
|
2942
2940
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2943
2941
|
// WavesArrowDown aliases
|
|
2944
2942
|
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2943
|
+
// Watch aliases
|
|
2944
|
+
export { default as WatchIcon } from '../icons/watch';
|
|
2945
2945
|
// WavesArrowUp aliases
|
|
2946
2946
|
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2947
|
-
// WavesLadder aliases
|
|
2948
|
-
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2949
2947
|
// WavesVertical aliases
|
|
2950
2948
|
export { default as WavesVerticalIcon } from '../icons/waves-vertical';
|
|
2949
|
+
// WavesLadder aliases
|
|
2950
|
+
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2951
2951
|
// Waypoints aliases
|
|
2952
2952
|
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2953
2953
|
// WebcamOff aliases
|
|
@@ -2960,74 +2960,74 @@ export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
|
2960
2960
|
export { default as WebhookIcon } from '../icons/webhook';
|
|
2961
2961
|
// WeightTilde aliases
|
|
2962
2962
|
export { default as WeightTildeIcon } from '../icons/weight-tilde';
|
|
2963
|
-
// WheatOff aliases
|
|
2964
|
-
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2965
2963
|
// Weight aliases
|
|
2966
2964
|
export { default as WeightIcon } from '../icons/weight';
|
|
2967
|
-
//
|
|
2968
|
-
export { default as
|
|
2965
|
+
// WheatOff aliases
|
|
2966
|
+
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2969
2967
|
// Wheat aliases
|
|
2970
2968
|
export { default as WheatIcon } from '../icons/wheat';
|
|
2969
|
+
// WholeWord aliases
|
|
2970
|
+
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2971
2971
|
// WifiCog aliases
|
|
2972
2972
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2973
|
-
// WifiLow aliases
|
|
2974
|
-
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2975
2973
|
// WifiHigh aliases
|
|
2976
2974
|
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2975
|
+
// WifiLow aliases
|
|
2976
|
+
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2977
2977
|
// WifiOff aliases
|
|
2978
2978
|
export { default as WifiOffIcon } from '../icons/wifi-off';
|
|
2979
2979
|
// WifiPen aliases
|
|
2980
2980
|
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2981
|
-
// WifiSync aliases
|
|
2982
|
-
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2983
2981
|
// WifiZero aliases
|
|
2984
2982
|
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2983
|
+
// WifiSync aliases
|
|
2984
|
+
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2985
2985
|
// Wifi aliases
|
|
2986
2986
|
export { default as WifiIcon } from '../icons/wifi';
|
|
2987
|
-
// WindArrowDown aliases
|
|
2988
|
-
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2989
2987
|
// Wind aliases
|
|
2990
2988
|
export { default as WindIcon } from '../icons/wind';
|
|
2991
2989
|
// WineOff aliases
|
|
2992
2990
|
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2991
|
+
// WindArrowDown aliases
|
|
2992
|
+
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2993
2993
|
// Wine aliases
|
|
2994
2994
|
export { default as WineIcon } from '../icons/wine';
|
|
2995
|
-
// Workflow aliases
|
|
2996
|
-
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2997
|
-
// Wrench aliases
|
|
2998
|
-
export { default as WrenchIcon } from '../icons/wrench';
|
|
2999
2995
|
// Worm aliases
|
|
3000
2996
|
export { default as WormIcon } from '../icons/worm';
|
|
3001
2997
|
// WrenchOff aliases
|
|
3002
2998
|
export { default as WrenchOffIcon } from '../icons/wrench-off';
|
|
2999
|
+
// Workflow aliases
|
|
3000
|
+
export { default as WorkflowIcon } from '../icons/workflow';
|
|
3001
|
+
// Wrench aliases
|
|
3002
|
+
export { default as WrenchIcon } from '../icons/wrench';
|
|
3003
3003
|
// XLineTop aliases
|
|
3004
3004
|
export { default as XLineTopIcon } from '../icons/x-line-top';
|
|
3005
3005
|
// X aliases
|
|
3006
3006
|
export { default as XIcon } from '../icons/x';
|
|
3007
|
-
// ZodiacAquarius aliases
|
|
3008
|
-
export { default as ZodiacAquariusIcon } from '../icons/zodiac-aquarius';
|
|
3009
3007
|
// ZapOff aliases
|
|
3010
3008
|
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
3011
3009
|
// Zap aliases
|
|
3012
3010
|
export { default as ZapIcon } from '../icons/zap';
|
|
3011
|
+
// ZodiacAquarius aliases
|
|
3012
|
+
export { default as ZodiacAquariusIcon } from '../icons/zodiac-aquarius';
|
|
3013
3013
|
// ZodiacAries aliases
|
|
3014
3014
|
export { default as ZodiacAriesIcon } from '../icons/zodiac-aries';
|
|
3015
3015
|
// ZodiacCancer aliases
|
|
3016
3016
|
export { default as ZodiacCancerIcon } from '../icons/zodiac-cancer';
|
|
3017
|
-
// ZodiacGemini aliases
|
|
3018
|
-
export { default as ZodiacGeminiIcon } from '../icons/zodiac-gemini';
|
|
3019
3017
|
// ZodiacCapricorn aliases
|
|
3020
3018
|
export { default as ZodiacCapricornIcon } from '../icons/zodiac-capricorn';
|
|
3019
|
+
// ZodiacGemini aliases
|
|
3020
|
+
export { default as ZodiacGeminiIcon } from '../icons/zodiac-gemini';
|
|
3021
3021
|
// ZodiacLeo aliases
|
|
3022
3022
|
export { default as ZodiacLeoIcon } from '../icons/zodiac-leo';
|
|
3023
|
-
// ZodiacOphiuchus aliases
|
|
3024
|
-
export { default as ZodiacOphiuchusIcon } from '../icons/zodiac-ophiuchus';
|
|
3025
3023
|
// ZodiacLibra aliases
|
|
3026
3024
|
export { default as ZodiacLibraIcon } from '../icons/zodiac-libra';
|
|
3027
|
-
//
|
|
3028
|
-
export { default as
|
|
3025
|
+
// ZodiacOphiuchus aliases
|
|
3026
|
+
export { default as ZodiacOphiuchusIcon } from '../icons/zodiac-ophiuchus';
|
|
3029
3027
|
// ZodiacPisces aliases
|
|
3030
3028
|
export { default as ZodiacPiscesIcon } from '../icons/zodiac-pisces';
|
|
3029
|
+
// ZodiacSagittarius aliases
|
|
3030
|
+
export { default as ZodiacSagittariusIcon } from '../icons/zodiac-sagittarius';
|
|
3031
3031
|
// ZodiacScorpio aliases
|
|
3032
3032
|
export { default as ZodiacScorpioIcon } from '../icons/zodiac-scorpio';
|
|
3033
3033
|
// ZodiacTaurus aliases
|
|
@@ -3088,72 +3088,60 @@ export {
|
|
|
3088
3088
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. */
|
|
3089
3089
|
default as ArrowUpAzIcon
|
|
3090
3090
|
} from '../icons/arrow-up-a-z';
|
|
3091
|
-
//
|
|
3092
|
-
export { default as
|
|
3091
|
+
// Axis3d aliases
|
|
3092
|
+
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
3093
3093
|
export {
|
|
3094
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3095
|
-
default as
|
|
3096
|
-
} from '../icons/
|
|
3094
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. */
|
|
3095
|
+
default as Axis3DIcon
|
|
3096
|
+
} from '../icons/axis-3d';
|
|
3097
3097
|
// ArrowUpNarrowWide aliases
|
|
3098
3098
|
export { default as ArrowUpNarrowWideIcon } from '../icons/arrow-up-narrow-wide';
|
|
3099
3099
|
export {
|
|
3100
3100
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
3101
3101
|
default as SortAscIcon
|
|
3102
3102
|
} from '../icons/arrow-up-narrow-wide';
|
|
3103
|
-
//
|
|
3104
|
-
export { default as
|
|
3105
|
-
export {
|
|
3106
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. */
|
|
3107
|
-
default as Axis3DIcon
|
|
3108
|
-
} from '../icons/axis-3d';
|
|
3109
|
-
// BadgeQuestionMark aliases
|
|
3110
|
-
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
3103
|
+
// ArrowUpZA aliases
|
|
3104
|
+
export { default as ArrowUpZAIcon } from '../icons/arrow-up-z-a';
|
|
3111
3105
|
export {
|
|
3112
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3113
|
-
default as
|
|
3114
|
-
} from '../icons/
|
|
3106
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. */
|
|
3107
|
+
default as ArrowUpZaIcon
|
|
3108
|
+
} from '../icons/arrow-up-z-a';
|
|
3115
3109
|
// BadgeCheck aliases
|
|
3116
3110
|
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
3117
3111
|
export {
|
|
3118
3112
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
3119
3113
|
default as VerifiedIcon
|
|
3120
3114
|
} from '../icons/badge-check';
|
|
3121
|
-
//
|
|
3122
|
-
export { default as
|
|
3123
|
-
export {
|
|
3124
|
-
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
3125
|
-
default as BetweenHorizonalStartIcon
|
|
3126
|
-
} from '../icons/between-horizontal-start';
|
|
3127
|
-
// BetweenHorizontalEnd aliases
|
|
3128
|
-
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
3115
|
+
// BookDashed aliases
|
|
3116
|
+
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
3129
3117
|
export {
|
|
3130
|
-
/** @deprecated
|
|
3131
|
-
default as
|
|
3132
|
-
} from '../icons/
|
|
3118
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
3119
|
+
default as BookTemplateIcon
|
|
3120
|
+
} from '../icons/book-dashed';
|
|
3133
3121
|
// Braces aliases
|
|
3134
3122
|
export { default as BracesIcon } from '../icons/braces';
|
|
3135
3123
|
export {
|
|
3136
3124
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. */
|
|
3137
3125
|
default as CurlyBracesIcon
|
|
3138
3126
|
} from '../icons/braces';
|
|
3139
|
-
//
|
|
3140
|
-
export { default as
|
|
3127
|
+
// Captions aliases
|
|
3128
|
+
export { default as CaptionsIcon } from '../icons/captions';
|
|
3141
3129
|
export {
|
|
3142
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3143
|
-
default as
|
|
3144
|
-
} from '../icons/
|
|
3130
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. */
|
|
3131
|
+
default as SubtitlesIcon
|
|
3132
|
+
} from '../icons/captions';
|
|
3145
3133
|
// ChartArea aliases
|
|
3146
3134
|
export { default as ChartAreaIcon } from '../icons/chart-area';
|
|
3147
3135
|
export {
|
|
3148
3136
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. */
|
|
3149
3137
|
default as AreaChartIcon
|
|
3150
3138
|
} from '../icons/chart-area';
|
|
3151
|
-
//
|
|
3152
|
-
export { default as
|
|
3139
|
+
// ChartBarBig aliases
|
|
3140
|
+
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
3153
3141
|
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/
|
|
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';
|
|
3157
3145
|
// ChartCandlestick aliases
|
|
3158
3146
|
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
3159
3147
|
export {
|
|
@@ -3166,42 +3154,54 @@ export {
|
|
|
3166
3154
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. */
|
|
3167
3155
|
default as BarChartHorizontalIcon
|
|
3168
3156
|
} from '../icons/chart-bar';
|
|
3169
|
-
//
|
|
3170
|
-
export { default as
|
|
3157
|
+
// BadgeQuestionMark aliases
|
|
3158
|
+
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
3171
3159
|
export {
|
|
3172
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3173
|
-
default as
|
|
3174
|
-
} from '../icons/
|
|
3175
|
-
//
|
|
3176
|
-
export { default as
|
|
3160
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
3161
|
+
default as BadgeHelpIcon
|
|
3162
|
+
} from '../icons/badge-question-mark';
|
|
3163
|
+
// BetweenHorizontalEnd aliases
|
|
3164
|
+
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
3177
3165
|
export {
|
|
3178
|
-
/** @deprecated
|
|
3179
|
-
default as
|
|
3180
|
-
} from '../icons/
|
|
3166
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. */
|
|
3167
|
+
default as BetweenHorizonalEndIcon
|
|
3168
|
+
} from '../icons/between-horizontal-end';
|
|
3181
3169
|
// ChartColumnIncreasing aliases
|
|
3182
3170
|
export { default as ChartColumnIncreasingIcon } from '../icons/chart-column-increasing';
|
|
3183
3171
|
export {
|
|
3184
3172
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. */
|
|
3185
3173
|
default as BarChart4Icon
|
|
3186
3174
|
} from '../icons/chart-column-increasing';
|
|
3187
|
-
//
|
|
3188
|
-
export { default as
|
|
3175
|
+
// BetweenHorizontalStart aliases
|
|
3176
|
+
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
3189
3177
|
export {
|
|
3190
|
-
/** @deprecated
|
|
3191
|
-
default as
|
|
3192
|
-
} from '../icons/
|
|
3193
|
-
//
|
|
3194
|
-
export { default as
|
|
3178
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
3179
|
+
default as BetweenHorizonalStartIcon
|
|
3180
|
+
} from '../icons/between-horizontal-start';
|
|
3181
|
+
// ChartColumnBig aliases
|
|
3182
|
+
export { default as ChartColumnBigIcon } from '../icons/chart-column-big';
|
|
3195
3183
|
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-
|
|
3184
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnBig} instead. */
|
|
3185
|
+
default as BarChartBigIcon
|
|
3186
|
+
} from '../icons/chart-column-big';
|
|
3199
3187
|
// ChartLine aliases
|
|
3200
3188
|
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3201
3189
|
export {
|
|
3202
3190
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. */
|
|
3203
3191
|
default as LineChartIcon
|
|
3204
3192
|
} from '../icons/chart-line';
|
|
3193
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
3194
|
+
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
3195
|
+
export {
|
|
3196
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. */
|
|
3197
|
+
default as BarChartIcon
|
|
3198
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
3199
|
+
// ChartColumn aliases
|
|
3200
|
+
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3201
|
+
export {
|
|
3202
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. */
|
|
3203
|
+
default as BarChart3Icon
|
|
3204
|
+
} from '../icons/chart-column';
|
|
3205
3205
|
// ChartNoAxesColumn aliases
|
|
3206
3206
|
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
3207
3207
|
export {
|
|
@@ -3226,18 +3226,18 @@ export {
|
|
|
3226
3226
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. */
|
|
3227
3227
|
default as ScatterChartIcon
|
|
3228
3228
|
} from '../icons/chart-scatter';
|
|
3229
|
-
// CircleAlert aliases
|
|
3230
|
-
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3231
|
-
export {
|
|
3232
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. */
|
|
3233
|
-
default as AlertCircleIcon
|
|
3234
|
-
} from '../icons/circle-alert';
|
|
3235
3229
|
// CircleArrowDown aliases
|
|
3236
3230
|
export { default as CircleArrowDownIcon } from '../icons/circle-arrow-down';
|
|
3237
3231
|
export {
|
|
3238
3232
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. */
|
|
3239
3233
|
default as ArrowDownCircleIcon
|
|
3240
3234
|
} from '../icons/circle-arrow-down';
|
|
3235
|
+
// CircleAlert aliases
|
|
3236
|
+
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3237
|
+
export {
|
|
3238
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. */
|
|
3239
|
+
default as AlertCircleIcon
|
|
3240
|
+
} from '../icons/circle-alert';
|
|
3241
3241
|
// CircleArrowLeft aliases
|
|
3242
3242
|
export { default as CircleArrowLeftIcon } from '../icons/circle-arrow-left';
|
|
3243
3243
|
export {
|
|
@@ -3262,18 +3262,24 @@ export {
|
|
|
3262
3262
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. */
|
|
3263
3263
|
default as ArrowUpRightFromCircleIcon
|
|
3264
3264
|
} from '../icons/circle-arrow-out-up-right';
|
|
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
3265
|
// CircleArrowOutUpLeft aliases
|
|
3272
3266
|
export { default as CircleArrowOutUpLeftIcon } from '../icons/circle-arrow-out-up-left';
|
|
3273
3267
|
export {
|
|
3274
3268
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. */
|
|
3275
3269
|
default as ArrowUpLeftFromCircleIcon
|
|
3276
3270
|
} from '../icons/circle-arrow-out-up-left';
|
|
3271
|
+
// CircleCheckBig aliases
|
|
3272
|
+
export { default as CircleCheckBigIcon } from '../icons/circle-check-big';
|
|
3273
|
+
export {
|
|
3274
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. */
|
|
3275
|
+
default as CheckCircleIcon
|
|
3276
|
+
} from '../icons/circle-check-big';
|
|
3277
|
+
// CircleArrowRight aliases
|
|
3278
|
+
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3279
|
+
export {
|
|
3280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
3281
|
+
default as ArrowRightCircleIcon
|
|
3282
|
+
} from '../icons/circle-arrow-right';
|
|
3277
3283
|
// CircleArrowUp aliases
|
|
3278
3284
|
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
3279
3285
|
export {
|
|
@@ -3286,54 +3292,48 @@ export {
|
|
|
3286
3292
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. */
|
|
3287
3293
|
default as CheckCircle2Icon
|
|
3288
3294
|
} from '../icons/circle-check';
|
|
3289
|
-
// CircleChevronLeft aliases
|
|
3290
|
-
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3291
|
-
export {
|
|
3292
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
3293
|
-
default as ChevronLeftCircleIcon
|
|
3294
|
-
} from '../icons/circle-chevron-left';
|
|
3295
3295
|
// CircleChevronDown aliases
|
|
3296
3296
|
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3297
3297
|
export {
|
|
3298
3298
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
3299
3299
|
default as ChevronDownCircleIcon
|
|
3300
3300
|
} from '../icons/circle-chevron-down';
|
|
3301
|
-
//
|
|
3302
|
-
export { default as
|
|
3301
|
+
// CircleChevronLeft aliases
|
|
3302
|
+
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3303
3303
|
export {
|
|
3304
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3305
|
-
default as
|
|
3306
|
-
} from '../icons/circle-
|
|
3304
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
3305
|
+
default as ChevronLeftCircleIcon
|
|
3306
|
+
} from '../icons/circle-chevron-left';
|
|
3307
3307
|
// CircleChevronRight aliases
|
|
3308
3308
|
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3309
3309
|
export {
|
|
3310
3310
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. */
|
|
3311
3311
|
default as ChevronRightCircleIcon
|
|
3312
3312
|
} from '../icons/circle-chevron-right';
|
|
3313
|
-
// CircleDivide aliases
|
|
3314
|
-
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3315
|
-
export {
|
|
3316
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. */
|
|
3317
|
-
default as DivideCircleIcon
|
|
3318
|
-
} from '../icons/circle-divide';
|
|
3319
3313
|
// CircleChevronUp aliases
|
|
3320
3314
|
export { default as CircleChevronUpIcon } from '../icons/circle-chevron-up';
|
|
3321
3315
|
export {
|
|
3322
3316
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. */
|
|
3323
3317
|
default as ChevronUpCircleIcon
|
|
3324
3318
|
} from '../icons/circle-chevron-up';
|
|
3325
|
-
//
|
|
3326
|
-
export { default as
|
|
3319
|
+
// CircleDivide aliases
|
|
3320
|
+
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3327
3321
|
export {
|
|
3328
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3329
|
-
default as
|
|
3330
|
-
} from '../icons/circle-
|
|
3322
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. */
|
|
3323
|
+
default as DivideCircleIcon
|
|
3324
|
+
} from '../icons/circle-divide';
|
|
3331
3325
|
// CircleGauge aliases
|
|
3332
3326
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3333
3327
|
export {
|
|
3334
3328
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. */
|
|
3335
3329
|
default as GaugeCircleIcon
|
|
3336
3330
|
} from '../icons/circle-gauge';
|
|
3331
|
+
// CircleMinus aliases
|
|
3332
|
+
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3333
|
+
export {
|
|
3334
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. */
|
|
3335
|
+
default as MinusCircleIcon
|
|
3336
|
+
} from '../icons/circle-minus';
|
|
3337
3337
|
// CircleParkingOff aliases
|
|
3338
3338
|
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3339
3339
|
export {
|
|
@@ -3346,6 +3346,18 @@ export {
|
|
|
3346
3346
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
3347
3347
|
default as ParkingCircleIcon
|
|
3348
3348
|
} from '../icons/circle-parking';
|
|
3349
|
+
// CirclePause aliases
|
|
3350
|
+
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3351
|
+
export {
|
|
3352
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. */
|
|
3353
|
+
default as PauseCircleIcon
|
|
3354
|
+
} from '../icons/circle-pause';
|
|
3355
|
+
// CirclePlus aliases
|
|
3356
|
+
export { default as CirclePlusIcon } from '../icons/circle-plus';
|
|
3357
|
+
export {
|
|
3358
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. */
|
|
3359
|
+
default as PlusCircleIcon
|
|
3360
|
+
} from '../icons/circle-plus';
|
|
3349
3361
|
// CirclePercent aliases
|
|
3350
3362
|
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3351
3363
|
export {
|
|
@@ -3358,18 +3370,6 @@ export {
|
|
|
3358
3370
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. */
|
|
3359
3371
|
default as PlayCircleIcon
|
|
3360
3372
|
} from '../icons/circle-play';
|
|
3361
|
-
// CirclePlus aliases
|
|
3362
|
-
export { default as CirclePlusIcon } from '../icons/circle-plus';
|
|
3363
|
-
export {
|
|
3364
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. */
|
|
3365
|
-
default as PlusCircleIcon
|
|
3366
|
-
} from '../icons/circle-plus';
|
|
3367
|
-
// CirclePause aliases
|
|
3368
|
-
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3369
|
-
export {
|
|
3370
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. */
|
|
3371
|
-
default as PauseCircleIcon
|
|
3372
|
-
} from '../icons/circle-pause';
|
|
3373
3373
|
// CirclePower aliases
|
|
3374
3374
|
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3375
3375
|
export {
|
|
@@ -3404,36 +3404,36 @@ export {
|
|
|
3404
3404
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. */
|
|
3405
3405
|
default as UserCircle2Icon
|
|
3406
3406
|
} from '../icons/circle-user-round';
|
|
3407
|
-
// CircleUser aliases
|
|
3408
|
-
export { default as CircleUserIcon } from '../icons/circle-user';
|
|
3409
|
-
export {
|
|
3410
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. */
|
|
3411
|
-
default as UserCircleIcon
|
|
3412
|
-
} from '../icons/circle-user';
|
|
3413
3407
|
// CircleX aliases
|
|
3414
3408
|
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3415
3409
|
export {
|
|
3416
3410
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. */
|
|
3417
3411
|
default as XCircleIcon
|
|
3418
3412
|
} from '../icons/circle-x';
|
|
3413
|
+
// CircleUser aliases
|
|
3414
|
+
export { default as CircleUserIcon } from '../icons/circle-user';
|
|
3415
|
+
export {
|
|
3416
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. */
|
|
3417
|
+
default as UserCircleIcon
|
|
3418
|
+
} from '../icons/circle-user';
|
|
3419
3419
|
// ClipboardPenLine aliases
|
|
3420
3420
|
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3421
3421
|
export {
|
|
3422
3422
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. */
|
|
3423
3423
|
default as ClipboardSignatureIcon
|
|
3424
3424
|
} from '../icons/clipboard-pen-line';
|
|
3425
|
-
// CloudDownload aliases
|
|
3426
|
-
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3427
|
-
export {
|
|
3428
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. */
|
|
3429
|
-
default as DownloadCloudIcon
|
|
3430
|
-
} from '../icons/cloud-download';
|
|
3431
3425
|
// ClipboardPen aliases
|
|
3432
3426
|
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3433
3427
|
export {
|
|
3434
3428
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. */
|
|
3435
3429
|
default as ClipboardEditIcon
|
|
3436
3430
|
} from '../icons/clipboard-pen';
|
|
3431
|
+
// CloudDownload aliases
|
|
3432
|
+
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3433
|
+
export {
|
|
3434
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. */
|
|
3435
|
+
default as DownloadCloudIcon
|
|
3436
|
+
} from '../icons/cloud-download';
|
|
3437
3437
|
// CloudUpload aliases
|
|
3438
3438
|
export { default as CloudUploadIcon } from '../icons/cloud-upload';
|
|
3439
3439
|
export {
|
|
@@ -3446,6 +3446,12 @@ export {
|
|
|
3446
3446
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. */
|
|
3447
3447
|
default as Code2Icon
|
|
3448
3448
|
} from '../icons/code-xml';
|
|
3449
|
+
// Columns2 aliases
|
|
3450
|
+
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3451
|
+
export {
|
|
3452
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
3453
|
+
default as ColumnsIcon
|
|
3454
|
+
} from '../icons/columns-2';
|
|
3449
3455
|
// Columns3Cog aliases
|
|
3450
3456
|
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3451
3457
|
export {
|
|
@@ -3456,12 +3462,6 @@ export {
|
|
|
3456
3462
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. */
|
|
3457
3463
|
default as TableConfigIcon
|
|
3458
3464
|
} from '../icons/columns-3-cog';
|
|
3459
|
-
// Columns2 aliases
|
|
3460
|
-
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3461
|
-
export {
|
|
3462
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
3463
|
-
default as ColumnsIcon
|
|
3464
|
-
} from '../icons/columns-2';
|
|
3465
3465
|
// Columns3 aliases
|
|
3466
3466
|
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3467
3467
|
export {
|
|
@@ -3486,30 +3486,78 @@ export {
|
|
|
3486
3486
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. */
|
|
3487
3487
|
default as Globe2Icon
|
|
3488
3488
|
} from '../icons/earth';
|
|
3489
|
+
// EllipsisVertical aliases
|
|
3490
|
+
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3491
|
+
export {
|
|
3492
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
3493
|
+
default as MoreVerticalIcon
|
|
3494
|
+
} from '../icons/ellipsis-vertical';
|
|
3495
|
+
// FaceAngry aliases
|
|
3496
|
+
export { default as FaceAngryIcon } from '../icons/face-angry';
|
|
3497
|
+
export {
|
|
3498
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceAngry} instead. */
|
|
3499
|
+
default as AngryIcon
|
|
3500
|
+
} from '../icons/face-angry';
|
|
3489
3501
|
// Ellipsis aliases
|
|
3490
3502
|
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3491
3503
|
export {
|
|
3492
3504
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
3493
3505
|
default as MoreHorizontalIcon
|
|
3494
3506
|
} from '../icons/ellipsis';
|
|
3507
|
+
// FaceExpressionless aliases
|
|
3508
|
+
export { default as FaceExpressionlessIcon } from '../icons/face-expressionless';
|
|
3509
|
+
export {
|
|
3510
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceExpressionless} instead. */
|
|
3511
|
+
default as AnnoyedIcon
|
|
3512
|
+
} from '../icons/face-expressionless';
|
|
3513
|
+
// FaceGrinning aliases
|
|
3514
|
+
export { default as FaceGrinningIcon } from '../icons/face-grinning';
|
|
3515
|
+
export {
|
|
3516
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceGrinning} instead. */
|
|
3517
|
+
default as LaughIcon
|
|
3518
|
+
} from '../icons/face-grinning';
|
|
3519
|
+
// FaceSlightlyFrowning aliases
|
|
3520
|
+
export { default as FaceSlightlyFrowningIcon } from '../icons/face-slightly-frowning';
|
|
3521
|
+
export {
|
|
3522
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlyFrowning} instead. */
|
|
3523
|
+
default as FrownIcon
|
|
3524
|
+
} from '../icons/face-slightly-frowning';
|
|
3525
|
+
// FaceSlightlySmilingPlus aliases
|
|
3526
|
+
export { default as FaceSlightlySmilingPlusIcon } from '../icons/face-slightly-smiling-plus';
|
|
3527
|
+
export {
|
|
3528
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlySmilingPlus} instead. */
|
|
3529
|
+
default as SmilePlusIcon
|
|
3530
|
+
} from '../icons/face-slightly-smiling-plus';
|
|
3531
|
+
// FaceNeutral aliases
|
|
3532
|
+
export { default as FaceNeutralIcon } from '../icons/face-neutral';
|
|
3533
|
+
export {
|
|
3534
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceNeutral} instead. */
|
|
3535
|
+
default as MehIcon
|
|
3536
|
+
} from '../icons/face-neutral';
|
|
3537
|
+
// FaceSlightlySmiling aliases
|
|
3538
|
+
export { default as FaceSlightlySmilingIcon } from '../icons/face-slightly-smiling';
|
|
3539
|
+
export {
|
|
3540
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlySmiling} instead. */
|
|
3541
|
+
default as SmileIcon
|
|
3542
|
+
} from '../icons/face-slightly-smiling';
|
|
3495
3543
|
// FileAxis3d aliases
|
|
3496
3544
|
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3497
3545
|
export {
|
|
3498
3546
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. */
|
|
3499
3547
|
default as FileAxis3DIcon
|
|
3500
3548
|
} from '../icons/file-axis-3d';
|
|
3501
|
-
// EllipsisVertical aliases
|
|
3502
|
-
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3503
|
-
export {
|
|
3504
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
3505
|
-
default as MoreVerticalIcon
|
|
3506
|
-
} from '../icons/ellipsis-vertical';
|
|
3507
3549
|
// FileBadge aliases
|
|
3508
3550
|
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
3509
3551
|
export {
|
|
3510
3552
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. */
|
|
3511
3553
|
default as FileBadge2Icon
|
|
3512
3554
|
} from '../icons/file-badge';
|
|
3555
|
+
// FileBracesCorner aliases
|
|
3556
|
+
export { default as FileBracesCornerIcon } from '../icons/file-braces-corner';
|
|
3557
|
+
export {
|
|
3558
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. */
|
|
3559
|
+
default as FileJson2Icon
|
|
3560
|
+
} from '../icons/file-braces-corner';
|
|
3513
3561
|
// FileBraces aliases
|
|
3514
3562
|
export { default as FileBracesIcon } from '../icons/file-braces';
|
|
3515
3563
|
export {
|
|
@@ -3522,12 +3570,6 @@ export {
|
|
|
3522
3570
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. */
|
|
3523
3571
|
default as FileBarChartIcon
|
|
3524
3572
|
} from '../icons/file-chart-column-increasing';
|
|
3525
|
-
// FileBracesCorner aliases
|
|
3526
|
-
export { default as FileBracesCornerIcon } from '../icons/file-braces-corner';
|
|
3527
|
-
export {
|
|
3528
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. */
|
|
3529
|
-
default as FileJson2Icon
|
|
3530
|
-
} from '../icons/file-braces-corner';
|
|
3531
3573
|
// FileChartColumn aliases
|
|
3532
3574
|
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3533
3575
|
export {
|
|
@@ -3580,12 +3622,6 @@ export {
|
|
|
3580
3622
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileHeadphone} instead. */
|
|
3581
3623
|
default as FileAudio2Icon
|
|
3582
3624
|
} from '../icons/file-headphone';
|
|
3583
|
-
// FileLock aliases
|
|
3584
|
-
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3585
|
-
export {
|
|
3586
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
3587
|
-
default as FileLock2Icon
|
|
3588
|
-
} from '../icons/file-lock';
|
|
3589
3625
|
// FileKey aliases
|
|
3590
3626
|
export { default as FileKeyIcon } from '../icons/file-key';
|
|
3591
3627
|
export {
|
|
@@ -3598,30 +3634,30 @@ export {
|
|
|
3598
3634
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. */
|
|
3599
3635
|
default as FileMinus2Icon
|
|
3600
3636
|
} from '../icons/file-minus-corner';
|
|
3601
|
-
//
|
|
3602
|
-
export { default as
|
|
3603
|
-
export {
|
|
3604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. */
|
|
3605
|
-
default as FileEditIcon
|
|
3606
|
-
} from '../icons/file-pen';
|
|
3607
|
-
// FilePlay aliases
|
|
3608
|
-
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3637
|
+
// FileLock aliases
|
|
3638
|
+
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3609
3639
|
export {
|
|
3610
|
-
/** @deprecated The
|
|
3611
|
-
default as
|
|
3612
|
-
} from '../icons/file-
|
|
3640
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
3641
|
+
default as FileLock2Icon
|
|
3642
|
+
} from '../icons/file-lock';
|
|
3613
3643
|
// FilePenLine aliases
|
|
3614
3644
|
export { default as FilePenLineIcon } from '../icons/file-pen-line';
|
|
3615
3645
|
export {
|
|
3616
3646
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. */
|
|
3617
3647
|
default as FileSignatureIcon
|
|
3618
3648
|
} from '../icons/file-pen-line';
|
|
3619
|
-
//
|
|
3620
|
-
export { default as
|
|
3649
|
+
// FilePlay aliases
|
|
3650
|
+
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3621
3651
|
export {
|
|
3622
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3623
|
-
default as
|
|
3624
|
-
} from '../icons/file-
|
|
3652
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. */
|
|
3653
|
+
default as FileVideoIcon
|
|
3654
|
+
} from '../icons/file-play';
|
|
3655
|
+
// FilePen aliases
|
|
3656
|
+
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3657
|
+
export {
|
|
3658
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. */
|
|
3659
|
+
default as FileEditIcon
|
|
3660
|
+
} from '../icons/file-pen';
|
|
3625
3661
|
// FileQuestionMark aliases
|
|
3626
3662
|
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3627
3663
|
export {
|
|
@@ -3640,54 +3676,60 @@ export {
|
|
|
3640
3676
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. */
|
|
3641
3677
|
default as FileVolume2Icon
|
|
3642
3678
|
} from '../icons/file-signal';
|
|
3679
|
+
// FilePlusCorner aliases
|
|
3680
|
+
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3681
|
+
export {
|
|
3682
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. */
|
|
3683
|
+
default as FilePlus2Icon
|
|
3684
|
+
} from '../icons/file-plus-corner';
|
|
3643
3685
|
// FileTypeCorner aliases
|
|
3644
3686
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3645
3687
|
export {
|
|
3646
3688
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
3647
3689
|
default as FileType2Icon
|
|
3648
3690
|
} from '../icons/file-type-corner';
|
|
3649
|
-
// FileVideoCamera aliases
|
|
3650
|
-
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3651
|
-
export {
|
|
3652
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
3653
|
-
default as FileVideo2Icon
|
|
3654
|
-
} from '../icons/file-video-camera';
|
|
3655
|
-
// FolderCog aliases
|
|
3656
|
-
export { default as FolderCogIcon } from '../icons/folder-cog';
|
|
3657
|
-
export {
|
|
3658
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. */
|
|
3659
|
-
default as FolderCog2Icon
|
|
3660
|
-
} from '../icons/folder-cog';
|
|
3661
3691
|
// FileXCorner aliases
|
|
3662
3692
|
export { default as FileXCornerIcon } from '../icons/file-x-corner';
|
|
3663
3693
|
export {
|
|
3664
3694
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. */
|
|
3665
3695
|
default as FileX2Icon
|
|
3666
3696
|
} from '../icons/file-x-corner';
|
|
3697
|
+
// FileVideoCamera aliases
|
|
3698
|
+
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3699
|
+
export {
|
|
3700
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
3701
|
+
default as FileVideo2Icon
|
|
3702
|
+
} from '../icons/file-video-camera';
|
|
3667
3703
|
// FingerprintPattern aliases
|
|
3668
3704
|
export { default as FingerprintPatternIcon } from '../icons/fingerprint-pattern';
|
|
3669
3705
|
export {
|
|
3670
3706
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. */
|
|
3671
3707
|
default as FingerprintIcon
|
|
3672
3708
|
} from '../icons/fingerprint-pattern';
|
|
3709
|
+
// FolderCog aliases
|
|
3710
|
+
export { default as FolderCogIcon } from '../icons/folder-cog';
|
|
3711
|
+
export {
|
|
3712
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. */
|
|
3713
|
+
default as FolderCog2Icon
|
|
3714
|
+
} from '../icons/folder-cog';
|
|
3673
3715
|
// FolderPen aliases
|
|
3674
3716
|
export { default as FolderPenIcon } from '../icons/folder-pen';
|
|
3675
3717
|
export {
|
|
3676
3718
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. */
|
|
3677
3719
|
default as FolderEditIcon
|
|
3678
3720
|
} from '../icons/folder-pen';
|
|
3679
|
-
// FunnelX aliases
|
|
3680
|
-
export { default as FunnelXIcon } from '../icons/funnel-x';
|
|
3681
|
-
export {
|
|
3682
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. */
|
|
3683
|
-
default as FilterXIcon
|
|
3684
|
-
} from '../icons/funnel-x';
|
|
3685
3721
|
// Funnel aliases
|
|
3686
3722
|
export { default as FunnelIcon } from '../icons/funnel';
|
|
3687
3723
|
export {
|
|
3688
3724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. */
|
|
3689
3725
|
default as FilterIcon
|
|
3690
3726
|
} from '../icons/funnel';
|
|
3727
|
+
// FunnelX aliases
|
|
3728
|
+
export { default as FunnelXIcon } from '../icons/funnel-x';
|
|
3729
|
+
export {
|
|
3730
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. */
|
|
3731
|
+
default as FilterXIcon
|
|
3732
|
+
} from '../icons/funnel-x';
|
|
3691
3733
|
// GitCommitHorizontal aliases
|
|
3692
3734
|
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3693
3735
|
export {
|
|
@@ -3700,24 +3742,24 @@ export {
|
|
|
3700
3742
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. */
|
|
3701
3743
|
default as Grid2X2CheckIcon
|
|
3702
3744
|
} from '../icons/grid-2x2-check';
|
|
3703
|
-
//
|
|
3704
|
-
export { default as
|
|
3745
|
+
// Grid2x2X aliases
|
|
3746
|
+
export { default as Grid2x2XIcon } from '../icons/grid-2x2-x';
|
|
3705
3747
|
export {
|
|
3706
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3707
|
-
default as
|
|
3708
|
-
} from '../icons/grid-2x2-
|
|
3748
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. */
|
|
3749
|
+
default as Grid2X2XIcon
|
|
3750
|
+
} from '../icons/grid-2x2-x';
|
|
3709
3751
|
// Grid2x2 aliases
|
|
3710
3752
|
export { default as Grid2x2Icon } from '../icons/grid-2x2';
|
|
3711
3753
|
export {
|
|
3712
3754
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
3713
3755
|
default as Grid2X2Icon
|
|
3714
3756
|
} from '../icons/grid-2x2';
|
|
3715
|
-
//
|
|
3716
|
-
export { default as
|
|
3757
|
+
// Grid2x2Plus aliases
|
|
3758
|
+
export { default as Grid2x2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3717
3759
|
export {
|
|
3718
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3719
|
-
default as
|
|
3720
|
-
} from '../icons/grid-2x2-
|
|
3760
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. */
|
|
3761
|
+
default as Grid2X2PlusIcon
|
|
3762
|
+
} from '../icons/grid-2x2-plus';
|
|
3721
3763
|
// Grid3x3 aliases
|
|
3722
3764
|
export { default as Grid3x3Icon } from '../icons/grid-3x3';
|
|
3723
3765
|
export {
|
|
@@ -3734,42 +3776,42 @@ export {
|
|
|
3734
3776
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. */
|
|
3735
3777
|
default as GrabIcon
|
|
3736
3778
|
} from '../icons/hand-grab';
|
|
3737
|
-
//
|
|
3738
|
-
export { default as
|
|
3779
|
+
// HandHelping aliases
|
|
3780
|
+
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3739
3781
|
export {
|
|
3740
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3741
|
-
default as
|
|
3742
|
-
} from '../icons/
|
|
3782
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. */
|
|
3783
|
+
default as HelpingHandIcon
|
|
3784
|
+
} from '../icons/hand-helping';
|
|
3743
3785
|
// IceCreamBowl aliases
|
|
3744
3786
|
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3745
3787
|
export {
|
|
3746
3788
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. */
|
|
3747
3789
|
default as IceCream2Icon
|
|
3748
3790
|
} from '../icons/ice-cream-bowl';
|
|
3749
|
-
//
|
|
3750
|
-
export { default as
|
|
3791
|
+
// House aliases
|
|
3792
|
+
export { default as HouseIcon } from '../icons/house';
|
|
3751
3793
|
export {
|
|
3752
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3753
|
-
default as
|
|
3754
|
-
} from '../icons/
|
|
3794
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. */
|
|
3795
|
+
default as HomeIcon
|
|
3796
|
+
} from '../icons/house';
|
|
3755
3797
|
// IceCreamCone aliases
|
|
3756
3798
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3757
3799
|
export {
|
|
3758
3800
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. */
|
|
3759
3801
|
default as IceCreamIcon
|
|
3760
3802
|
} from '../icons/ice-cream-cone';
|
|
3761
|
-
// LaptopMinimal aliases
|
|
3762
|
-
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3763
|
-
export {
|
|
3764
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. */
|
|
3765
|
-
default as Laptop2Icon
|
|
3766
|
-
} from '../icons/laptop-minimal';
|
|
3767
3803
|
// Layers aliases
|
|
3768
3804
|
export { default as LayersIcon } from '../icons/layers';
|
|
3769
3805
|
export {
|
|
3770
3806
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
3771
3807
|
default as Layers3Icon
|
|
3772
3808
|
} from '../icons/layers';
|
|
3809
|
+
// LaptopMinimal aliases
|
|
3810
|
+
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3811
|
+
export {
|
|
3812
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. */
|
|
3813
|
+
default as Laptop2Icon
|
|
3814
|
+
} from '../icons/laptop-minimal';
|
|
3773
3815
|
// ListIndentDecrease aliases
|
|
3774
3816
|
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3775
3817
|
export {
|
|
@@ -3814,78 +3856,66 @@ export {
|
|
|
3814
3856
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. */
|
|
3815
3857
|
default as MailQuestionIcon
|
|
3816
3858
|
} from '../icons/mail-question-mark';
|
|
3817
|
-
// MessageCircleQuestionMark aliases
|
|
3818
|
-
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3819
|
-
export {
|
|
3820
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. */
|
|
3821
|
-
default as MessageCircleQuestionIcon
|
|
3822
|
-
} from '../icons/message-circle-question-mark';
|
|
3823
3859
|
// MapPinPen aliases
|
|
3824
3860
|
export { default as MapPinPenIcon } from '../icons/map-pin-pen';
|
|
3825
3861
|
export {
|
|
3826
3862
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. */
|
|
3827
3863
|
default as LocationEditIcon
|
|
3828
3864
|
} from '../icons/map-pin-pen';
|
|
3829
|
-
//
|
|
3830
|
-
export { default as
|
|
3865
|
+
// MessageCircleQuestionMark aliases
|
|
3866
|
+
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3831
3867
|
export {
|
|
3832
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3833
|
-
default as
|
|
3834
|
-
} from '../icons/
|
|
3868
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. */
|
|
3869
|
+
default as MessageCircleQuestionIcon
|
|
3870
|
+
} from '../icons/message-circle-question-mark';
|
|
3871
|
+
// Move3d aliases
|
|
3872
|
+
export { default as Move3dIcon } from '../icons/move-3d';
|
|
3873
|
+
export {
|
|
3874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. */
|
|
3875
|
+
default as Move3DIcon
|
|
3876
|
+
} from '../icons/move-3d';
|
|
3835
3877
|
// MicVocal aliases
|
|
3836
3878
|
export { default as MicVocalIcon } from '../icons/mic-vocal';
|
|
3837
3879
|
export {
|
|
3838
3880
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. */
|
|
3839
3881
|
default as Mic2Icon
|
|
3840
3882
|
} from '../icons/mic-vocal';
|
|
3841
|
-
//
|
|
3842
|
-
export { default as
|
|
3883
|
+
// MicSignal aliases
|
|
3884
|
+
export { default as MicSignalIcon } from '../icons/mic-signal';
|
|
3843
3885
|
export {
|
|
3844
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3845
|
-
default as
|
|
3846
|
-
} from '../icons/
|
|
3886
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. */
|
|
3887
|
+
default as PodcastIcon
|
|
3888
|
+
} from '../icons/mic-signal';
|
|
3847
3889
|
// OctagonAlert aliases
|
|
3848
3890
|
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3849
3891
|
export {
|
|
3850
3892
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. */
|
|
3851
3893
|
default as AlertOctagonIcon
|
|
3852
3894
|
} from '../icons/octagon-alert';
|
|
3853
|
-
// OctagonX aliases
|
|
3854
|
-
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3855
|
-
export {
|
|
3856
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
3857
|
-
default as XOctagonIcon
|
|
3858
|
-
} from '../icons/octagon-x';
|
|
3859
3895
|
// OctagonPause aliases
|
|
3860
3896
|
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3861
3897
|
export {
|
|
3862
3898
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. */
|
|
3863
3899
|
default as PauseOctagonIcon
|
|
3864
3900
|
} from '../icons/octagon-pause';
|
|
3901
|
+
// OctagonX aliases
|
|
3902
|
+
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3903
|
+
export {
|
|
3904
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
3905
|
+
default as XOctagonIcon
|
|
3906
|
+
} from '../icons/octagon-x';
|
|
3865
3907
|
// PaintbrushVertical aliases
|
|
3866
3908
|
export { default as PaintbrushVerticalIcon } from '../icons/paintbrush-vertical';
|
|
3867
3909
|
export {
|
|
3868
3910
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. */
|
|
3869
3911
|
default as Paintbrush2Icon
|
|
3870
3912
|
} from '../icons/paintbrush-vertical';
|
|
3871
|
-
// PanelBottomDashed aliases
|
|
3872
|
-
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3873
|
-
export {
|
|
3874
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. */
|
|
3875
|
-
default as PanelBottomInactiveIcon
|
|
3876
|
-
} from '../icons/panel-bottom-dashed';
|
|
3877
|
-
// PanelLeftClose aliases
|
|
3878
|
-
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3879
|
-
export {
|
|
3880
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. */
|
|
3881
|
-
default as SidebarCloseIcon
|
|
3882
|
-
} from '../icons/panel-left-close';
|
|
3883
|
-
// PanelLeftOpen aliases
|
|
3884
|
-
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3913
|
+
// PanelBottomDashed aliases
|
|
3914
|
+
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3885
3915
|
export {
|
|
3886
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3887
|
-
default as
|
|
3888
|
-
} from '../icons/panel-
|
|
3916
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. */
|
|
3917
|
+
default as PanelBottomInactiveIcon
|
|
3918
|
+
} from '../icons/panel-bottom-dashed';
|
|
3889
3919
|
// PanelLeftDashed aliases
|
|
3890
3920
|
export { default as PanelLeftDashedIcon } from '../icons/panel-left-dashed';
|
|
3891
3921
|
export {
|
|
@@ -3898,6 +3928,18 @@ export {
|
|
|
3898
3928
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. */
|
|
3899
3929
|
default as SidebarIcon
|
|
3900
3930
|
} from '../icons/panel-left';
|
|
3931
|
+
// PanelLeftClose aliases
|
|
3932
|
+
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3933
|
+
export {
|
|
3934
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. */
|
|
3935
|
+
default as SidebarCloseIcon
|
|
3936
|
+
} from '../icons/panel-left-close';
|
|
3937
|
+
// PanelLeftOpen aliases
|
|
3938
|
+
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3939
|
+
export {
|
|
3940
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. */
|
|
3941
|
+
default as SidebarOpenIcon
|
|
3942
|
+
} from '../icons/panel-left-open';
|
|
3901
3943
|
// PanelRightDashed aliases
|
|
3902
3944
|
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3903
3945
|
export {
|
|
@@ -3910,30 +3952,30 @@ export {
|
|
|
3910
3952
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. */
|
|
3911
3953
|
default as PanelTopInactiveIcon
|
|
3912
3954
|
} from '../icons/panel-top-dashed';
|
|
3913
|
-
// PanelsTopLeft aliases
|
|
3914
|
-
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3915
|
-
export {
|
|
3916
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. */
|
|
3917
|
-
default as LayoutIcon
|
|
3918
|
-
} from '../icons/panels-top-left';
|
|
3919
3955
|
// PenLine aliases
|
|
3920
3956
|
export { default as PenLineIcon } from '../icons/pen-line';
|
|
3921
3957
|
export {
|
|
3922
3958
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. */
|
|
3923
3959
|
default as Edit3Icon
|
|
3924
3960
|
} from '../icons/pen-line';
|
|
3925
|
-
//
|
|
3926
|
-
export { default as
|
|
3961
|
+
// PanelsTopLeft aliases
|
|
3962
|
+
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3927
3963
|
export {
|
|
3928
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3929
|
-
default as
|
|
3930
|
-
} from '../icons/
|
|
3964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. */
|
|
3965
|
+
default as LayoutIcon
|
|
3966
|
+
} from '../icons/panels-top-left';
|
|
3931
3967
|
// PlugZap aliases
|
|
3932
3968
|
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3933
3969
|
export {
|
|
3934
3970
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. */
|
|
3935
3971
|
default as PlugZap2Icon
|
|
3936
3972
|
} from '../icons/plug-zap';
|
|
3973
|
+
// Pen aliases
|
|
3974
|
+
export { default as PenIcon } from '../icons/pen';
|
|
3975
|
+
export {
|
|
3976
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. */
|
|
3977
|
+
default as Edit2Icon
|
|
3978
|
+
} from '../icons/pen';
|
|
3937
3979
|
// RectangleEllipsis aliases
|
|
3938
3980
|
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3939
3981
|
export {
|
|
@@ -3976,6 +4018,12 @@ export {
|
|
|
3976
4018
|
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. */
|
|
3977
4019
|
default as SendHorizonalIcon
|
|
3978
4020
|
} from '../icons/send-horizontal';
|
|
4021
|
+
// ShieldQuestionMark aliases
|
|
4022
|
+
export { default as ShieldQuestionMarkIcon } from '../icons/shield-question-mark';
|
|
4023
|
+
export {
|
|
4024
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. */
|
|
4025
|
+
default as ShieldQuestionIcon
|
|
4026
|
+
} from '../icons/shield-question-mark';
|
|
3979
4027
|
// ShieldX aliases
|
|
3980
4028
|
export { default as ShieldXIcon } from '../icons/shield-x';
|
|
3981
4029
|
export {
|
|
@@ -3994,30 +4042,18 @@ export {
|
|
|
3994
4042
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. */
|
|
3995
4043
|
default as StarsIcon
|
|
3996
4044
|
} from '../icons/sparkles';
|
|
3997
|
-
// SquareActivity aliases
|
|
3998
|
-
export { default as SquareActivityIcon } from '../icons/square-activity';
|
|
3999
|
-
export {
|
|
4000
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. */
|
|
4001
|
-
default as ActivitySquareIcon
|
|
4002
|
-
} from '../icons/square-activity';
|
|
4003
|
-
// ShieldQuestionMark aliases
|
|
4004
|
-
export { default as ShieldQuestionMarkIcon } from '../icons/shield-question-mark';
|
|
4005
|
-
export {
|
|
4006
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. */
|
|
4007
|
-
default as ShieldQuestionIcon
|
|
4008
|
-
} from '../icons/shield-question-mark';
|
|
4009
4045
|
// SquareArrowDownLeft aliases
|
|
4010
4046
|
export { default as SquareArrowDownLeftIcon } from '../icons/square-arrow-down-left';
|
|
4011
4047
|
export {
|
|
4012
4048
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. */
|
|
4013
4049
|
default as ArrowDownLeftSquareIcon
|
|
4014
4050
|
} from '../icons/square-arrow-down-left';
|
|
4015
|
-
//
|
|
4016
|
-
export { default as
|
|
4051
|
+
// SquareActivity aliases
|
|
4052
|
+
export { default as SquareActivityIcon } from '../icons/square-activity';
|
|
4017
4053
|
export {
|
|
4018
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4019
|
-
default as
|
|
4020
|
-
} from '../icons/square-
|
|
4054
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. */
|
|
4055
|
+
default as ActivitySquareIcon
|
|
4056
|
+
} from '../icons/square-activity';
|
|
4021
4057
|
// SquareArrowDown aliases
|
|
4022
4058
|
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
4023
4059
|
export {
|
|
@@ -4042,6 +4078,12 @@ export {
|
|
|
4042
4078
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. */
|
|
4043
4079
|
default as ArrowDownRightFromSquareIcon
|
|
4044
4080
|
} from '../icons/square-arrow-out-down-right';
|
|
4081
|
+
// SquareArrowDownRight aliases
|
|
4082
|
+
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
4083
|
+
export {
|
|
4084
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. */
|
|
4085
|
+
default as ArrowDownRightSquareIcon
|
|
4086
|
+
} from '../icons/square-arrow-down-right';
|
|
4045
4087
|
// SquareArrowOutUpLeft aliases
|
|
4046
4088
|
export { default as SquareArrowOutUpLeftIcon } from '../icons/square-arrow-out-up-left';
|
|
4047
4089
|
export {
|
|
@@ -4078,24 +4120,30 @@ export {
|
|
|
4078
4120
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. */
|
|
4079
4121
|
default as ArrowUpSquareIcon
|
|
4080
4122
|
} from '../icons/square-arrow-up';
|
|
4081
|
-
// SquareAsterisk aliases
|
|
4082
|
-
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
4083
|
-
export {
|
|
4084
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. */
|
|
4085
|
-
default as AsteriskSquareIcon
|
|
4086
|
-
} from '../icons/square-asterisk';
|
|
4087
4123
|
// SquareBottomDashedScissors aliases
|
|
4088
4124
|
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
4089
4125
|
export {
|
|
4090
4126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. */
|
|
4091
4127
|
default as ScissorsSquareDashedBottomIcon
|
|
4092
4128
|
} from '../icons/square-bottom-dashed-scissors';
|
|
4129
|
+
// SquareAsterisk aliases
|
|
4130
|
+
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
4131
|
+
export {
|
|
4132
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. */
|
|
4133
|
+
default as AsteriskSquareIcon
|
|
4134
|
+
} from '../icons/square-asterisk';
|
|
4093
4135
|
// SquareCenterlineDashedHorizontal aliases
|
|
4094
4136
|
export { default as SquareCenterlineDashedHorizontalIcon } from '../icons/square-centerline-dashed-horizontal';
|
|
4095
4137
|
export {
|
|
4096
4138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. */
|
|
4097
4139
|
default as FlipHorizontalIcon
|
|
4098
4140
|
} from '../icons/square-centerline-dashed-horizontal';
|
|
4141
|
+
// SquareCenterlineDashedVertical aliases
|
|
4142
|
+
export { default as SquareCenterlineDashedVerticalIcon } from '../icons/square-centerline-dashed-vertical';
|
|
4143
|
+
export {
|
|
4144
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
4145
|
+
default as FlipVerticalIcon
|
|
4146
|
+
} from '../icons/square-centerline-dashed-vertical';
|
|
4099
4147
|
// SquareChartGantt aliases
|
|
4100
4148
|
export { default as SquareChartGanttIcon } from '../icons/square-chart-gantt';
|
|
4101
4149
|
export {
|
|
@@ -4106,12 +4154,6 @@ export {
|
|
|
4106
4154
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. */
|
|
4107
4155
|
default as SquareGanttChartIcon
|
|
4108
4156
|
} from '../icons/square-chart-gantt';
|
|
4109
|
-
// SquareCenterlineDashedVertical aliases
|
|
4110
|
-
export { default as SquareCenterlineDashedVerticalIcon } from '../icons/square-centerline-dashed-vertical';
|
|
4111
|
-
export {
|
|
4112
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
4113
|
-
default as FlipVerticalIcon
|
|
4114
|
-
} from '../icons/square-centerline-dashed-vertical';
|
|
4115
4157
|
// SquareCheckBig aliases
|
|
4116
4158
|
export { default as SquareCheckBigIcon } from '../icons/square-check-big';
|
|
4117
4159
|
export {
|
|
@@ -4136,18 +4178,18 @@ export {
|
|
|
4136
4178
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. */
|
|
4137
4179
|
default as ChevronLeftSquareIcon
|
|
4138
4180
|
} from '../icons/square-chevron-left';
|
|
4139
|
-
// SquareChevronUp aliases
|
|
4140
|
-
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
4141
|
-
export {
|
|
4142
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
4143
|
-
default as ChevronUpSquareIcon
|
|
4144
|
-
} from '../icons/square-chevron-up';
|
|
4145
4181
|
// SquareChevronRight aliases
|
|
4146
4182
|
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
4147
4183
|
export {
|
|
4148
4184
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
4149
4185
|
default as ChevronRightSquareIcon
|
|
4150
4186
|
} from '../icons/square-chevron-right';
|
|
4187
|
+
// SquareChevronUp aliases
|
|
4188
|
+
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
4189
|
+
export {
|
|
4190
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
4191
|
+
default as ChevronUpSquareIcon
|
|
4192
|
+
} from '../icons/square-chevron-up';
|
|
4151
4193
|
// SquareDashedKanban aliases
|
|
4152
4194
|
export { default as SquareDashedKanbanIcon } from '../icons/square-dashed-kanban';
|
|
4153
4195
|
export {
|
|
@@ -4166,6 +4208,16 @@ export {
|
|
|
4166
4208
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. */
|
|
4167
4209
|
default as MousePointerSquareDashedIcon
|
|
4168
4210
|
} from '../icons/square-dashed-mouse-pointer';
|
|
4211
|
+
// SquareDashedText aliases
|
|
4212
|
+
export { default as SquareDashedTextIcon } from '../icons/square-dashed-text';
|
|
4213
|
+
export {
|
|
4214
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. */
|
|
4215
|
+
default as TextSelectionIcon
|
|
4216
|
+
} from '../icons/square-dashed-text';
|
|
4217
|
+
export {
|
|
4218
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. */
|
|
4219
|
+
default as TextSelectIcon
|
|
4220
|
+
} from '../icons/square-dashed-text';
|
|
4169
4221
|
// SquareDashed aliases
|
|
4170
4222
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
4171
4223
|
export {
|
|
@@ -4178,46 +4230,36 @@ export {
|
|
|
4178
4230
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. */
|
|
4179
4231
|
default as DivideSquareIcon
|
|
4180
4232
|
} from '../icons/square-divide';
|
|
4181
|
-
//
|
|
4182
|
-
export { default as
|
|
4183
|
-
export {
|
|
4184
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. */
|
|
4185
|
-
default as TextSelectionIcon
|
|
4186
|
-
} from '../icons/square-dashed-text';
|
|
4233
|
+
// SquareDot aliases
|
|
4234
|
+
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4187
4235
|
export {
|
|
4188
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4189
|
-
default as
|
|
4190
|
-
} from '../icons/square-
|
|
4236
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. */
|
|
4237
|
+
default as DotSquareIcon
|
|
4238
|
+
} from '../icons/square-dot';
|
|
4191
4239
|
// SquareEqual aliases
|
|
4192
4240
|
export { default as SquareEqualIcon } from '../icons/square-equal';
|
|
4193
4241
|
export {
|
|
4194
4242
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. */
|
|
4195
4243
|
default as EqualSquareIcon
|
|
4196
4244
|
} from '../icons/square-equal';
|
|
4197
|
-
// SquareDot aliases
|
|
4198
|
-
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4199
|
-
export {
|
|
4200
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. */
|
|
4201
|
-
default as DotSquareIcon
|
|
4202
|
-
} from '../icons/square-dot';
|
|
4203
4245
|
// SquareFunction aliases
|
|
4204
4246
|
export { default as SquareFunctionIcon } from '../icons/square-function';
|
|
4205
4247
|
export {
|
|
4206
4248
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. */
|
|
4207
4249
|
default as FunctionSquareIcon
|
|
4208
4250
|
} from '../icons/square-function';
|
|
4209
|
-
// SquareLibrary aliases
|
|
4210
|
-
export { default as SquareLibraryIcon } from '../icons/square-library';
|
|
4211
|
-
export {
|
|
4212
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. */
|
|
4213
|
-
default as LibrarySquareIcon
|
|
4214
|
-
} from '../icons/square-library';
|
|
4215
4251
|
// SquareKanban aliases
|
|
4216
4252
|
export { default as SquareKanbanIcon } from '../icons/square-kanban';
|
|
4217
4253
|
export {
|
|
4218
4254
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. */
|
|
4219
4255
|
default as KanbanSquareIcon
|
|
4220
4256
|
} from '../icons/square-kanban';
|
|
4257
|
+
// SquareLibrary aliases
|
|
4258
|
+
export { default as SquareLibraryIcon } from '../icons/square-library';
|
|
4259
|
+
export {
|
|
4260
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. */
|
|
4261
|
+
default as LibrarySquareIcon
|
|
4262
|
+
} from '../icons/square-library';
|
|
4221
4263
|
// SquareM aliases
|
|
4222
4264
|
export { default as SquareMIcon } from '../icons/square-m';
|
|
4223
4265
|
export {
|
|
@@ -4230,18 +4272,18 @@ export {
|
|
|
4230
4272
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. */
|
|
4231
4273
|
default as MenuSquareIcon
|
|
4232
4274
|
} from '../icons/square-menu';
|
|
4233
|
-
// SquareMousePointer aliases
|
|
4234
|
-
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4235
|
-
export {
|
|
4236
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. */
|
|
4237
|
-
default as InspectIcon
|
|
4238
|
-
} from '../icons/square-mouse-pointer';
|
|
4239
4275
|
// SquareMinus aliases
|
|
4240
4276
|
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
4241
4277
|
export {
|
|
4242
4278
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. */
|
|
4243
4279
|
default as MinusSquareIcon
|
|
4244
4280
|
} from '../icons/square-minus';
|
|
4281
|
+
// SquareMousePointer aliases
|
|
4282
|
+
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4283
|
+
export {
|
|
4284
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. */
|
|
4285
|
+
default as InspectIcon
|
|
4286
|
+
} from '../icons/square-mouse-pointer';
|
|
4245
4287
|
// SquareParkingOff aliases
|
|
4246
4288
|
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
4247
4289
|
export {
|
|
@@ -4376,12 +4418,6 @@ export {
|
|
|
4376
4418
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. */
|
|
4377
4419
|
default as AlignRightIcon
|
|
4378
4420
|
} from '../icons/text-align-end';
|
|
4379
|
-
// TextAlignJustify aliases
|
|
4380
|
-
export { default as TextAlignJustifyIcon } from '../icons/text-align-justify';
|
|
4381
|
-
export {
|
|
4382
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. */
|
|
4383
|
-
default as AlignJustifyIcon
|
|
4384
|
-
} from '../icons/text-align-justify';
|
|
4385
4421
|
// TextAlignStart aliases
|
|
4386
4422
|
export { default as TextAlignStartIcon } from '../icons/text-align-start';
|
|
4387
4423
|
export {
|
|
@@ -4392,18 +4428,30 @@ export {
|
|
|
4392
4428
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. */
|
|
4393
4429
|
default as AlignLeftIcon
|
|
4394
4430
|
} from '../icons/text-align-start';
|
|
4395
|
-
//
|
|
4396
|
-
export { default as
|
|
4431
|
+
// TextAlignJustify aliases
|
|
4432
|
+
export { default as TextAlignJustifyIcon } from '../icons/text-align-justify';
|
|
4397
4433
|
export {
|
|
4398
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4399
|
-
default as
|
|
4400
|
-
} from '../icons/text-
|
|
4434
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. */
|
|
4435
|
+
default as AlignJustifyIcon
|
|
4436
|
+
} from '../icons/text-align-justify';
|
|
4401
4437
|
// TextInitial aliases
|
|
4402
4438
|
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4403
4439
|
export {
|
|
4404
4440
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. */
|
|
4405
4441
|
default as LetterTextIcon
|
|
4406
4442
|
} from '../icons/text-initial';
|
|
4443
|
+
// TreePalm aliases
|
|
4444
|
+
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4445
|
+
export {
|
|
4446
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. */
|
|
4447
|
+
default as PalmtreeIcon
|
|
4448
|
+
} from '../icons/tree-palm';
|
|
4449
|
+
// TextWrap aliases
|
|
4450
|
+
export { default as TextWrapIcon } from '../icons/text-wrap';
|
|
4451
|
+
export {
|
|
4452
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. */
|
|
4453
|
+
default as WrapTextIcon
|
|
4454
|
+
} from '../icons/text-wrap';
|
|
4407
4455
|
// TramFront aliases
|
|
4408
4456
|
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4409
4457
|
export {
|
|
@@ -4422,72 +4470,72 @@ export {
|
|
|
4422
4470
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. */
|
|
4423
4471
|
default as Tv2Icon
|
|
4424
4472
|
} from '../icons/tv-minimal';
|
|
4425
|
-
// UserRoundCheck aliases
|
|
4426
|
-
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4427
|
-
export {
|
|
4428
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. */
|
|
4429
|
-
default as UserCheck2Icon
|
|
4430
|
-
} from '../icons/user-round-check';
|
|
4431
|
-
// TreePalm aliases
|
|
4432
|
-
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4433
|
-
export {
|
|
4434
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. */
|
|
4435
|
-
default as PalmtreeIcon
|
|
4436
|
-
} from '../icons/tree-palm';
|
|
4437
4473
|
// University aliases
|
|
4438
4474
|
export { default as UniversityIcon } from '../icons/university';
|
|
4439
4475
|
export {
|
|
4440
4476
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. */
|
|
4441
4477
|
default as School2Icon
|
|
4442
4478
|
} from '../icons/university';
|
|
4443
|
-
//
|
|
4444
|
-
export { default as
|
|
4479
|
+
// UserRoundCheck aliases
|
|
4480
|
+
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4445
4481
|
export {
|
|
4446
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4447
|
-
default as
|
|
4448
|
-
} from '../icons/user-round-
|
|
4482
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. */
|
|
4483
|
+
default as UserCheck2Icon
|
|
4484
|
+
} from '../icons/user-round-check';
|
|
4449
4485
|
// UserRoundCog aliases
|
|
4450
4486
|
export { default as UserRoundCogIcon } from '../icons/user-round-cog';
|
|
4451
4487
|
export {
|
|
4452
4488
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. */
|
|
4453
4489
|
default as UserCog2Icon
|
|
4454
4490
|
} from '../icons/user-round-cog';
|
|
4491
|
+
// UserRoundMinus aliases
|
|
4492
|
+
export { default as UserRoundMinusIcon } from '../icons/user-round-minus';
|
|
4493
|
+
export {
|
|
4494
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. */
|
|
4495
|
+
default as UserMinus2Icon
|
|
4496
|
+
} from '../icons/user-round-minus';
|
|
4455
4497
|
// UserRoundPlus aliases
|
|
4456
4498
|
export { default as UserRoundPlusIcon } from '../icons/user-round-plus';
|
|
4457
4499
|
export {
|
|
4458
4500
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. */
|
|
4459
4501
|
default as UserPlus2Icon
|
|
4460
4502
|
} from '../icons/user-round-plus';
|
|
4461
|
-
// UserRound aliases
|
|
4462
|
-
export { default as UserRoundIcon } from '../icons/user-round';
|
|
4463
|
-
export {
|
|
4464
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. */
|
|
4465
|
-
default as User2Icon
|
|
4466
|
-
} from '../icons/user-round';
|
|
4467
4503
|
// UserRoundX aliases
|
|
4468
4504
|
export { default as UserRoundXIcon } from '../icons/user-round-x';
|
|
4469
4505
|
export {
|
|
4470
4506
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. */
|
|
4471
4507
|
default as UserX2Icon
|
|
4472
4508
|
} from '../icons/user-round-x';
|
|
4473
|
-
//
|
|
4474
|
-
export { default as
|
|
4509
|
+
// UserRound aliases
|
|
4510
|
+
export { default as UserRoundIcon } from '../icons/user-round';
|
|
4475
4511
|
export {
|
|
4476
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4477
|
-
default as
|
|
4478
|
-
} from '../icons/
|
|
4512
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. */
|
|
4513
|
+
default as User2Icon
|
|
4514
|
+
} from '../icons/user-round';
|
|
4479
4515
|
// UtensilsCrossed aliases
|
|
4480
4516
|
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4481
4517
|
export {
|
|
4482
4518
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. */
|
|
4483
4519
|
default as ForkKnifeCrossedIcon
|
|
4484
4520
|
} from '../icons/utensils-crossed';
|
|
4521
|
+
// UsersRound aliases
|
|
4522
|
+
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
4523
|
+
export {
|
|
4524
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. */
|
|
4525
|
+
default as Users2Icon
|
|
4526
|
+
} from '../icons/users-round';
|
|
4485
4527
|
// Utensils aliases
|
|
4486
4528
|
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4487
4529
|
export {
|
|
4488
4530
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. */
|
|
4489
4531
|
default as ForkKnifeIcon
|
|
4490
4532
|
} from '../icons/utensils';
|
|
4533
|
+
// WandSparkles aliases
|
|
4534
|
+
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4535
|
+
export {
|
|
4536
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. */
|
|
4537
|
+
default as Wand2Icon
|
|
4538
|
+
} from '../icons/wand-sparkles';
|
|
4491
4539
|
// WalletMinimal aliases
|
|
4492
4540
|
export { default as WalletMinimalIcon } from '../icons/wallet-minimal';
|
|
4493
4541
|
export {
|
|
@@ -4500,10 +4548,4 @@ export {
|
|
|
4500
4548
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WavesHorizontal} instead. */
|
|
4501
4549
|
default as WavesIcon
|
|
4502
4550
|
} from '../icons/waves-horizontal';
|
|
4503
|
-
// WandSparkles aliases
|
|
4504
|
-
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4505
|
-
export {
|
|
4506
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. */
|
|
4507
|
-
default as Wand2Icon
|
|
4508
|
-
} from '../icons/wand-sparkles';
|
|
4509
4551
|
|