@lucide/astro 0.563.0 → 0.565.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 +164 -164
- package/src/aliases/prefixed.ts +613 -603
- package/src/aliases/suffixed.ts +1033 -1023
- package/src/icons/bandage.ts +2 -2
- package/src/icons/bell-dot.ts +2 -2
- package/src/icons/book-key.ts +2 -2
- package/src/icons/bug-off.ts +2 -2
- package/src/icons/cloud-alert.ts +2 -2
- package/src/icons/cloud-check.ts +2 -2
- package/src/icons/database-search.ts +18 -0
- package/src/icons/file-cog.ts +2 -2
- package/src/icons/file-key.ts +2 -2
- package/src/icons/folder-key.ts +2 -2
- package/src/icons/git-branch.ts +2 -2
- package/src/icons/hard-drive.ts +2 -2
- package/src/icons/index.ts +125 -120
- package/src/icons/lens-concave.ts +18 -0
- package/src/icons/lens-convex.ts +18 -0
- package/src/icons/rotate-ccw-key.ts +2 -2
- package/src/icons/user-key.ts +18 -0
- package/src/icons/user-lock.ts +2 -2
- package/src/icons/user-round-key.ts +18 -0
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
|
+
// AArrowUp aliases
|
|
2
|
+
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
3
|
+
// ALargeSmall aliases
|
|
4
|
+
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
1
5
|
// AArrowDown aliases
|
|
2
6
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
|
-
// Activity aliases
|
|
4
|
-
export { default as ActivityIcon } from '../icons/activity';
|
|
5
7
|
// Accessibility aliases
|
|
6
8
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
7
|
-
//
|
|
8
|
-
export { default as
|
|
9
|
+
// Activity aliases
|
|
10
|
+
export { default as ActivityIcon } from '../icons/activity';
|
|
9
11
|
// Airplay aliases
|
|
10
12
|
export { default as AirplayIcon } from '../icons/airplay';
|
|
11
|
-
//
|
|
12
|
-
export { default as
|
|
13
|
+
// AirVent aliases
|
|
14
|
+
export { default as AirVentIcon } from '../icons/air-vent';
|
|
13
15
|
// AlarmClockOff aliases
|
|
14
16
|
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
17
|
+
// AlarmClock aliases
|
|
18
|
+
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
15
19
|
// AlarmSmoke aliases
|
|
16
20
|
export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
17
21
|
// Album aliases
|
|
@@ -20,24 +24,24 @@ export { default as AlbumIcon } from '../icons/album';
|
|
|
20
24
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
21
25
|
// AlignCenterVertical aliases
|
|
22
26
|
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
23
|
-
// AlignEndVertical aliases
|
|
24
|
-
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
25
27
|
// AlignEndHorizontal aliases
|
|
26
28
|
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
29
|
+
// AlignEndVertical aliases
|
|
30
|
+
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
27
31
|
// AlignHorizontalDistributeCenter aliases
|
|
28
32
|
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
29
33
|
// AlignHorizontalDistributeEnd aliases
|
|
30
34
|
export { default as AlignHorizontalDistributeEndIcon } from '../icons/align-horizontal-distribute-end';
|
|
31
35
|
// AlignHorizontalDistributeStart aliases
|
|
32
36
|
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
33
|
-
// AlignHorizontalJustifyEnd aliases
|
|
34
|
-
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
35
37
|
// AlignHorizontalJustifyCenter aliases
|
|
36
38
|
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
37
|
-
//
|
|
38
|
-
export { default as
|
|
39
|
+
// AlignHorizontalJustifyEnd aliases
|
|
40
|
+
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
39
41
|
// AlignHorizontalJustifyStart aliases
|
|
40
42
|
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
43
|
+
// AlignHorizontalSpaceAround aliases
|
|
44
|
+
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
41
45
|
// AlignHorizontalSpaceBetween aliases
|
|
42
46
|
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
43
47
|
// AlignStartHorizontal aliases
|
|
@@ -48,38 +52,38 @@ export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical
|
|
|
48
52
|
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
49
53
|
// AlignVerticalDistributeEnd aliases
|
|
50
54
|
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
51
|
-
// AlignVerticalJustifyCenter aliases
|
|
52
|
-
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
53
55
|
// AlignVerticalDistributeStart aliases
|
|
54
56
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
55
57
|
// AlignVerticalJustifyEnd aliases
|
|
56
58
|
export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-justify-end';
|
|
59
|
+
// AlignVerticalJustifyCenter aliases
|
|
60
|
+
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
57
61
|
// AlignVerticalJustifyStart aliases
|
|
58
62
|
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
59
|
-
// AlignVerticalSpaceAround aliases
|
|
60
|
-
export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical-space-around';
|
|
61
63
|
// AlignVerticalSpaceBetween aliases
|
|
62
64
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
65
|
+
// AlignVerticalSpaceAround aliases
|
|
66
|
+
export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical-space-around';
|
|
67
|
+
// Ambulance aliases
|
|
68
|
+
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
63
69
|
// Ampersand aliases
|
|
64
70
|
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
65
71
|
// Ampersands aliases
|
|
66
72
|
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
67
73
|
// Amphora aliases
|
|
68
74
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
69
|
-
// Ambulance aliases
|
|
70
|
-
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
71
75
|
// Angry aliases
|
|
72
76
|
export { default as AngryIcon } from '../icons/angry';
|
|
77
|
+
// Antenna aliases
|
|
78
|
+
export { default as AntennaIcon } from '../icons/antenna';
|
|
73
79
|
// Anchor aliases
|
|
74
80
|
export { default as AnchorIcon } from '../icons/anchor';
|
|
75
81
|
// Annoyed aliases
|
|
76
82
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
77
|
-
// Antenna aliases
|
|
78
|
-
export { default as AntennaIcon } from '../icons/antenna';
|
|
79
|
-
// Aperture aliases
|
|
80
|
-
export { default as ApertureIcon } from '../icons/aperture';
|
|
81
83
|
// Anvil aliases
|
|
82
84
|
export { default as AnvilIcon } from '../icons/anvil';
|
|
85
|
+
// Aperture aliases
|
|
86
|
+
export { default as ApertureIcon } from '../icons/aperture';
|
|
83
87
|
// AppWindowMac aliases
|
|
84
88
|
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
85
89
|
// AppWindow aliases
|
|
@@ -88,10 +92,10 @@ export { default as AppWindowIcon } from '../icons/app-window';
|
|
|
88
92
|
export { default as AppleIcon } from '../icons/apple';
|
|
89
93
|
// ArchiveRestore aliases
|
|
90
94
|
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
91
|
-
// ArchiveX aliases
|
|
92
|
-
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
93
95
|
// Archive aliases
|
|
94
96
|
export { default as ArchiveIcon } from '../icons/archive';
|
|
97
|
+
// ArchiveX aliases
|
|
98
|
+
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
95
99
|
// Armchair aliases
|
|
96
100
|
export { default as ArmchairIcon } from '../icons/armchair';
|
|
97
101
|
// ArrowBigDownDash aliases
|
|
@@ -106,28 +110,28 @@ export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
|
106
110
|
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
107
111
|
// ArrowBigRight aliases
|
|
108
112
|
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
109
|
-
// ArrowBigUpDash aliases
|
|
110
|
-
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
111
113
|
// ArrowDownFromLine aliases
|
|
112
114
|
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
115
|
+
// ArrowBigUpDash aliases
|
|
116
|
+
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
113
117
|
// ArrowBigUp aliases
|
|
114
118
|
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
115
|
-
// ArrowDownLeft aliases
|
|
116
|
-
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
117
119
|
// ArrowDownNarrowWide aliases
|
|
118
120
|
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
119
|
-
//
|
|
120
|
-
export { default as
|
|
121
|
+
// ArrowDownLeft aliases
|
|
122
|
+
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
121
123
|
// ArrowDownToDot aliases
|
|
122
124
|
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
125
|
+
// ArrowDownRight aliases
|
|
126
|
+
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
123
127
|
// ArrowDownToLine aliases
|
|
124
128
|
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
129
|
+
// ArrowDownUp aliases
|
|
130
|
+
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
125
131
|
// ArrowDown aliases
|
|
126
132
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
127
133
|
// ArrowLeftFromLine aliases
|
|
128
134
|
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
129
|
-
// ArrowDownUp aliases
|
|
130
|
-
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
131
135
|
// ArrowLeftRight aliases
|
|
132
136
|
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
133
137
|
// ArrowLeftToLine aliases
|
|
@@ -138,88 +142,88 @@ export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
|
138
142
|
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
139
143
|
// ArrowRightLeft aliases
|
|
140
144
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
141
|
-
// ArrowRight aliases
|
|
142
|
-
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
143
145
|
// ArrowRightToLine aliases
|
|
144
146
|
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
147
|
+
// ArrowRight aliases
|
|
148
|
+
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
145
149
|
// ArrowUpDown aliases
|
|
146
150
|
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
147
|
-
// ArrowUpFromDot aliases
|
|
148
|
-
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
149
151
|
// ArrowUpFromLine aliases
|
|
150
152
|
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
151
|
-
//
|
|
152
|
-
export { default as
|
|
153
|
+
// ArrowUpFromDot aliases
|
|
154
|
+
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
153
155
|
// ArrowUpRight aliases
|
|
154
156
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
155
157
|
// ArrowUpToLine aliases
|
|
156
158
|
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
157
159
|
// ArrowUpWideNarrow aliases
|
|
158
160
|
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
161
|
+
// ArrowUpLeft aliases
|
|
162
|
+
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
159
163
|
// ArrowUp aliases
|
|
160
164
|
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
161
165
|
// ArrowsUpFromLine aliases
|
|
162
166
|
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
163
167
|
// Asterisk aliases
|
|
164
168
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
165
|
-
// Atom aliases
|
|
166
|
-
export { default as AtomIcon } from '../icons/atom';
|
|
167
169
|
// AtSign aliases
|
|
168
170
|
export { default as AtSignIcon } from '../icons/at-sign';
|
|
169
|
-
//
|
|
170
|
-
export { default as
|
|
171
|
+
// Atom aliases
|
|
172
|
+
export { default as AtomIcon } from '../icons/atom';
|
|
171
173
|
// AudioLines aliases
|
|
172
174
|
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
173
175
|
// AudioWaveform aliases
|
|
174
176
|
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
177
|
+
// Award aliases
|
|
178
|
+
export { default as AwardIcon } from '../icons/award';
|
|
175
179
|
// Axe aliases
|
|
176
180
|
export { default as AxeIcon } from '../icons/axe';
|
|
177
181
|
// Baby aliases
|
|
178
182
|
export { default as BabyIcon } from '../icons/baby';
|
|
179
|
-
// BadgeAlert aliases
|
|
180
|
-
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
181
183
|
// Backpack aliases
|
|
182
184
|
export { default as BackpackIcon } from '../icons/backpack';
|
|
185
|
+
// BadgeAlert aliases
|
|
186
|
+
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
183
187
|
// BadgeCent aliases
|
|
184
188
|
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
185
189
|
// BadgeDollarSign aliases
|
|
186
190
|
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
187
|
-
// BadgeEuro aliases
|
|
188
|
-
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
189
191
|
// BadgeIndianRupee aliases
|
|
190
192
|
export { default as BadgeIndianRupeeIcon } from '../icons/badge-indian-rupee';
|
|
193
|
+
// BadgeEuro aliases
|
|
194
|
+
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
191
195
|
// BadgeInfo aliases
|
|
192
196
|
export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
193
197
|
// BadgeJapaneseYen aliases
|
|
194
198
|
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
195
199
|
// BadgeMinus aliases
|
|
196
200
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
201
|
+
// BadgePoundSterling aliases
|
|
202
|
+
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
197
203
|
// BadgePercent aliases
|
|
198
204
|
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
199
205
|
// BadgePlus aliases
|
|
200
206
|
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
201
|
-
// BadgePoundSterling aliases
|
|
202
|
-
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
203
|
-
// BadgeRussianRuble aliases
|
|
204
|
-
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
205
207
|
// BadgeSwissFranc aliases
|
|
206
208
|
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
207
|
-
// BadgeTurkishLira aliases
|
|
208
|
-
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
209
209
|
// BadgeX aliases
|
|
210
210
|
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
211
|
+
// BadgeTurkishLira aliases
|
|
212
|
+
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
213
|
+
// BadgeRussianRuble aliases
|
|
214
|
+
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
211
215
|
// Badge aliases
|
|
212
216
|
export { default as BadgeIcon } from '../icons/badge';
|
|
213
|
-
// Balloon aliases
|
|
214
|
-
export { default as BalloonIcon } from '../icons/balloon';
|
|
215
217
|
// BaggageClaim aliases
|
|
216
218
|
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
219
|
+
// Balloon aliases
|
|
220
|
+
export { default as BalloonIcon } from '../icons/balloon';
|
|
221
|
+
// Ban aliases
|
|
222
|
+
export { default as BanIcon } from '../icons/ban';
|
|
217
223
|
// Banana aliases
|
|
218
224
|
export { default as BananaIcon } from '../icons/banana';
|
|
219
225
|
// Bandage aliases
|
|
220
226
|
export { default as BandageIcon } from '../icons/bandage';
|
|
221
|
-
// Ban aliases
|
|
222
|
-
export { default as BanIcon } from '../icons/ban';
|
|
223
227
|
// BanknoteArrowDown aliases
|
|
224
228
|
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
225
229
|
// BanknoteArrowUp aliases
|
|
@@ -240,10 +244,10 @@ export { default as BathIcon } from '../icons/bath';
|
|
|
240
244
|
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
241
245
|
// BatteryFull aliases
|
|
242
246
|
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
243
|
-
// BatteryMedium aliases
|
|
244
|
-
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
245
247
|
// BatteryLow aliases
|
|
246
248
|
export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
249
|
+
// BatteryMedium aliases
|
|
250
|
+
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
247
251
|
// BatteryPlus aliases
|
|
248
252
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
249
253
|
// BatteryWarning aliases
|
|
@@ -252,16 +256,16 @@ export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
|
252
256
|
export { default as BatteryIcon } from '../icons/battery';
|
|
253
257
|
// Beaker aliases
|
|
254
258
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
259
|
+
// BeanOff aliases
|
|
260
|
+
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
255
261
|
// Bean aliases
|
|
256
262
|
export { default as BeanIcon } from '../icons/bean';
|
|
257
263
|
// BedDouble aliases
|
|
258
264
|
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
259
|
-
// BeanOff aliases
|
|
260
|
-
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
261
|
-
// BedSingle aliases
|
|
262
|
-
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
263
265
|
// Bed aliases
|
|
264
266
|
export { default as BedIcon } from '../icons/bed';
|
|
267
|
+
// BedSingle aliases
|
|
268
|
+
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
265
269
|
// Beef aliases
|
|
266
270
|
export { default as BeefIcon } from '../icons/beef';
|
|
267
271
|
// BeerOff aliases
|
|
@@ -270,64 +274,64 @@ export { default as BeerOffIcon } from '../icons/beer-off';
|
|
|
270
274
|
export { default as BeerIcon } from '../icons/beer';
|
|
271
275
|
// BellDot aliases
|
|
272
276
|
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
277
|
+
// BellElectric aliases
|
|
278
|
+
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
273
279
|
// BellMinus aliases
|
|
274
280
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
281
|
+
// BellOff aliases
|
|
282
|
+
export { default as BellOffIcon } from '../icons/bell-off';
|
|
275
283
|
// BellPlus aliases
|
|
276
284
|
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
277
|
-
// BellElectric aliases
|
|
278
|
-
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
279
285
|
// BellRing aliases
|
|
280
286
|
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
281
|
-
// BellOff aliases
|
|
282
|
-
export { default as BellOffIcon } from '../icons/bell-off';
|
|
283
287
|
// Bell aliases
|
|
284
288
|
export { default as BellIcon } from '../icons/bell';
|
|
285
|
-
// BetweenVerticalStart aliases
|
|
286
|
-
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
287
|
-
// BicepsFlexed aliases
|
|
288
|
-
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
289
289
|
// BetweenVerticalEnd aliases
|
|
290
290
|
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
291
|
+
// BicepsFlexed aliases
|
|
292
|
+
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
293
|
+
// BetweenVerticalStart aliases
|
|
294
|
+
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
291
295
|
// Bike aliases
|
|
292
296
|
export { default as BikeIcon } from '../icons/bike';
|
|
293
297
|
// Binary aliases
|
|
294
298
|
export { default as BinaryIcon } from '../icons/binary';
|
|
299
|
+
// Binoculars aliases
|
|
300
|
+
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
295
301
|
// Biohazard aliases
|
|
296
302
|
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
297
303
|
// Bird aliases
|
|
298
304
|
export { default as BirdIcon } from '../icons/bird';
|
|
299
|
-
// Binoculars aliases
|
|
300
|
-
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
301
|
-
// Birdhouse aliases
|
|
302
|
-
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
303
305
|
// Bitcoin aliases
|
|
304
306
|
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
307
|
+
// Birdhouse aliases
|
|
308
|
+
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
305
309
|
// Blend aliases
|
|
306
310
|
export { default as BlendIcon } from '../icons/blend';
|
|
307
|
-
// Blinds aliases
|
|
308
|
-
export { default as BlindsIcon } from '../icons/blinds';
|
|
309
311
|
// Blocks aliases
|
|
310
312
|
export { default as BlocksIcon } from '../icons/blocks';
|
|
311
|
-
//
|
|
312
|
-
export { default as
|
|
313
|
+
// Blinds aliases
|
|
314
|
+
export { default as BlindsIcon } from '../icons/blinds';
|
|
313
315
|
// BluetoothConnected aliases
|
|
314
316
|
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
317
|
+
// BluetoothOff aliases
|
|
318
|
+
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
315
319
|
// BluetoothSearching aliases
|
|
316
320
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
317
|
-
// Bluetooth aliases
|
|
318
|
-
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
319
321
|
// Bold aliases
|
|
320
322
|
export { default as BoldIcon } from '../icons/bold';
|
|
321
|
-
//
|
|
322
|
-
export { default as
|
|
323
|
+
// Bluetooth aliases
|
|
324
|
+
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
323
325
|
// Bolt aliases
|
|
324
326
|
export { default as BoltIcon } from '../icons/bolt';
|
|
327
|
+
// Bomb aliases
|
|
328
|
+
export { default as BombIcon } from '../icons/bomb';
|
|
325
329
|
// Bone aliases
|
|
326
330
|
export { default as BoneIcon } from '../icons/bone';
|
|
327
|
-
// BookA aliases
|
|
328
|
-
export { default as BookAIcon } from '../icons/book-a';
|
|
329
331
|
// BookAlert aliases
|
|
330
332
|
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
333
|
+
// BookA aliases
|
|
334
|
+
export { default as BookAIcon } from '../icons/book-a';
|
|
331
335
|
// BookAudio aliases
|
|
332
336
|
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
333
337
|
// BookCheck aliases
|
|
@@ -344,14 +348,14 @@ export { default as BookHeartIcon } from '../icons/book-heart';
|
|
|
344
348
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
345
349
|
// BookKey aliases
|
|
346
350
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
347
|
-
// BookMarked aliases
|
|
348
|
-
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
349
351
|
// BookLock aliases
|
|
350
352
|
export { default as BookLockIcon } from '../icons/book-lock';
|
|
351
|
-
//
|
|
352
|
-
export { default as
|
|
353
|
+
// BookMarked aliases
|
|
354
|
+
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
353
355
|
// BookMinus aliases
|
|
354
356
|
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
357
|
+
// BookOpenCheck aliases
|
|
358
|
+
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
355
359
|
// BookOpenText aliases
|
|
356
360
|
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
357
361
|
// BookOpen aliases
|
|
@@ -360,44 +364,44 @@ export { default as BookOpenIcon } from '../icons/book-open';
|
|
|
360
364
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
361
365
|
// BookSearch aliases
|
|
362
366
|
export { default as BookSearchIcon } from '../icons/book-search';
|
|
363
|
-
// BookText aliases
|
|
364
|
-
export { default as BookTextIcon } from '../icons/book-text';
|
|
365
367
|
// BookType aliases
|
|
366
368
|
export { default as BookTypeIcon } from '../icons/book-type';
|
|
367
|
-
//
|
|
368
|
-
export { default as
|
|
369
|
+
// BookText aliases
|
|
370
|
+
export { default as BookTextIcon } from '../icons/book-text';
|
|
369
371
|
// BookUp aliases
|
|
370
372
|
export { default as BookUpIcon } from '../icons/book-up';
|
|
371
|
-
//
|
|
372
|
-
export { default as
|
|
373
|
+
// BookUp2 aliases
|
|
374
|
+
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
373
375
|
// BookUser aliases
|
|
374
376
|
export { default as BookUserIcon } from '../icons/book-user';
|
|
375
377
|
// Book aliases
|
|
376
378
|
export { default as BookIcon } from '../icons/book';
|
|
379
|
+
// BookX aliases
|
|
380
|
+
export { default as BookXIcon } from '../icons/book-x';
|
|
377
381
|
// BookmarkCheck aliases
|
|
378
382
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
383
|
+
// BookmarkMinus aliases
|
|
384
|
+
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
379
385
|
// BookmarkPlus aliases
|
|
380
386
|
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
381
387
|
// BookmarkX aliases
|
|
382
388
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
383
|
-
// BookmarkMinus aliases
|
|
384
|
-
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
385
|
-
// BoomBox aliases
|
|
386
|
-
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
387
389
|
// Bookmark aliases
|
|
388
390
|
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
391
|
+
// BoomBox aliases
|
|
392
|
+
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
389
393
|
// BotMessageSquare aliases
|
|
390
394
|
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
391
395
|
// BotOff aliases
|
|
392
396
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
393
|
-
// BottleWine aliases
|
|
394
|
-
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
395
397
|
// Bot aliases
|
|
396
398
|
export { default as BotIcon } from '../icons/bot';
|
|
397
|
-
//
|
|
398
|
-
export { default as
|
|
399
|
+
// BottleWine aliases
|
|
400
|
+
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
399
401
|
// Box aliases
|
|
400
402
|
export { default as BoxIcon } from '../icons/box';
|
|
403
|
+
// BowArrow aliases
|
|
404
|
+
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
401
405
|
// Boxes aliases
|
|
402
406
|
export { default as BoxesIcon } from '../icons/boxes';
|
|
403
407
|
// Brackets aliases
|
|
@@ -420,28 +424,28 @@ export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
|
420
424
|
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
421
425
|
// BriefcaseMedical aliases
|
|
422
426
|
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
423
|
-
// BringToFront aliases
|
|
424
|
-
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
425
427
|
// Briefcase aliases
|
|
426
428
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
429
|
+
// BringToFront aliases
|
|
430
|
+
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
431
|
+
// Brush aliases
|
|
432
|
+
export { default as BrushIcon } from '../icons/brush';
|
|
427
433
|
// BrushCleaning aliases
|
|
428
434
|
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
429
|
-
// Bubbles aliases
|
|
430
|
-
export { default as BubblesIcon } from '../icons/bubbles';
|
|
431
435
|
// BugOff aliases
|
|
432
436
|
export { default as BugOffIcon } from '../icons/bug-off';
|
|
433
|
-
//
|
|
434
|
-
export { default as
|
|
437
|
+
// Bubbles aliases
|
|
438
|
+
export { default as BubblesIcon } from '../icons/bubbles';
|
|
439
|
+
// BugPlay aliases
|
|
440
|
+
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
435
441
|
// Bug aliases
|
|
436
442
|
export { default as BugIcon } from '../icons/bug';
|
|
437
443
|
// Building2 aliases
|
|
438
444
|
export { default as Building2Icon } from '../icons/building-2';
|
|
439
|
-
// BugPlay aliases
|
|
440
|
-
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
441
|
-
// BusFront aliases
|
|
442
|
-
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
443
445
|
// Building aliases
|
|
444
446
|
export { default as BuildingIcon } from '../icons/building';
|
|
447
|
+
// BusFront aliases
|
|
448
|
+
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
445
449
|
// Bus aliases
|
|
446
450
|
export { default as BusIcon } from '../icons/bus';
|
|
447
451
|
// CableCar aliases
|
|
@@ -450,12 +454,12 @@ export { default as CableCarIcon } from '../icons/cable-car';
|
|
|
450
454
|
export { default as CableIcon } from '../icons/cable';
|
|
451
455
|
// CakeSlice aliases
|
|
452
456
|
export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
453
|
-
// Calculator aliases
|
|
454
|
-
export { default as CalculatorIcon } from '../icons/calculator';
|
|
455
|
-
// Calendar1 aliases
|
|
456
|
-
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
457
457
|
// Cake aliases
|
|
458
458
|
export { default as CakeIcon } from '../icons/cake';
|
|
459
|
+
// Calendar1 aliases
|
|
460
|
+
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
461
|
+
// Calculator aliases
|
|
462
|
+
export { default as CalculatorIcon } from '../icons/calculator';
|
|
459
463
|
// CalendarArrowDown aliases
|
|
460
464
|
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
461
465
|
// CalendarArrowUp aliases
|
|
@@ -464,10 +468,10 @@ export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
|
464
468
|
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
465
469
|
// CalendarCheck aliases
|
|
466
470
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
467
|
-
// CalendarClock aliases
|
|
468
|
-
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
469
471
|
// CalendarCog aliases
|
|
470
472
|
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
473
|
+
// CalendarClock aliases
|
|
474
|
+
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
471
475
|
// CalendarDays aliases
|
|
472
476
|
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
473
477
|
// CalendarFold aliases
|
|
@@ -486,58 +490,58 @@ export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
|
486
490
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
487
491
|
// CalendarPlus aliases
|
|
488
492
|
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
489
|
-
// CalendarSearch aliases
|
|
490
|
-
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
491
493
|
// CalendarX2 aliases
|
|
492
494
|
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
495
|
+
// CalendarSearch aliases
|
|
496
|
+
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
493
497
|
// CalendarSync aliases
|
|
494
498
|
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
495
499
|
// CalendarX aliases
|
|
496
500
|
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
497
501
|
// Calendar aliases
|
|
498
502
|
export { default as CalendarIcon } from '../icons/calendar';
|
|
499
|
-
// Calendars aliases
|
|
500
|
-
export { default as CalendarsIcon } from '../icons/calendars';
|
|
501
503
|
// CameraOff aliases
|
|
502
504
|
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
503
|
-
//
|
|
504
|
-
export { default as
|
|
505
|
+
// Calendars aliases
|
|
506
|
+
export { default as CalendarsIcon } from '../icons/calendars';
|
|
505
507
|
// CandyCane aliases
|
|
506
508
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
507
509
|
// CandyOff aliases
|
|
508
510
|
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
511
|
+
// Camera aliases
|
|
512
|
+
export { default as CameraIcon } from '../icons/camera';
|
|
509
513
|
// Candy aliases
|
|
510
514
|
export { default as CandyIcon } from '../icons/candy';
|
|
511
515
|
// CannabisOff aliases
|
|
512
516
|
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
513
517
|
// Cannabis aliases
|
|
514
518
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
519
|
+
// Car aliases
|
|
520
|
+
export { default as CarIcon } from '../icons/car';
|
|
515
521
|
// CaptionsOff aliases
|
|
516
522
|
export { default as CaptionsOffIcon } from '../icons/captions-off';
|
|
517
|
-
// CarTaxiFront aliases
|
|
518
|
-
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
519
523
|
// CarFront aliases
|
|
520
524
|
export { default as CarFrontIcon } from '../icons/car-front';
|
|
521
|
-
//
|
|
522
|
-
export { default as
|
|
525
|
+
// CarTaxiFront aliases
|
|
526
|
+
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
523
527
|
// Caravan aliases
|
|
524
528
|
export { default as CaravanIcon } from '../icons/caravan';
|
|
525
|
-
// Carrot aliases
|
|
526
|
-
export { default as CarrotIcon } from '../icons/carrot';
|
|
527
529
|
// CardSim aliases
|
|
528
530
|
export { default as CardSimIcon } from '../icons/card-sim';
|
|
529
|
-
//
|
|
530
|
-
export { default as
|
|
531
|
+
// Carrot aliases
|
|
532
|
+
export { default as CarrotIcon } from '../icons/carrot';
|
|
531
533
|
// CaseLower aliases
|
|
532
534
|
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
533
|
-
//
|
|
534
|
-
export { default as
|
|
535
|
+
// CaseSensitive aliases
|
|
536
|
+
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
535
537
|
// CassetteTape aliases
|
|
536
538
|
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
537
|
-
//
|
|
538
|
-
export { default as
|
|
539
|
+
// CaseUpper aliases
|
|
540
|
+
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
539
541
|
// Cast aliases
|
|
540
542
|
export { default as CastIcon } from '../icons/cast';
|
|
543
|
+
// Castle aliases
|
|
544
|
+
export { default as CastleIcon } from '../icons/castle';
|
|
541
545
|
// Cat aliases
|
|
542
546
|
export { default as CatIcon } from '../icons/cat';
|
|
543
547
|
// Cctv aliases
|
|
@@ -548,40 +552,36 @@ export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing
|
|
|
548
552
|
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
549
553
|
// ChartBarIncreasing aliases
|
|
550
554
|
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
551
|
-
// ChartColumnStacked aliases
|
|
552
|
-
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
553
555
|
// ChartColumnDecreasing aliases
|
|
554
556
|
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
555
557
|
// ChartGantt aliases
|
|
556
558
|
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
559
|
+
// ChartColumnStacked aliases
|
|
560
|
+
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
557
561
|
// ChartNetwork aliases
|
|
558
562
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
559
563
|
// ChartNoAxesColumnDecreasing aliases
|
|
560
564
|
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
561
565
|
// ChartNoAxesCombined aliases
|
|
562
566
|
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
563
|
-
// CheckCheck aliases
|
|
564
|
-
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
565
|
-
// AArrowUp aliases
|
|
566
|
-
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
567
|
-
// ALargeSmall aliases
|
|
568
|
-
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
569
567
|
// ChartSpline aliases
|
|
570
568
|
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
571
|
-
//
|
|
572
|
-
export { default as
|
|
569
|
+
// CheckCheck aliases
|
|
570
|
+
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
573
571
|
// CheckLine aliases
|
|
574
572
|
export { default as CheckLineIcon } from '../icons/check-line';
|
|
573
|
+
// Check aliases
|
|
574
|
+
export { default as CheckIcon } from '../icons/check';
|
|
575
575
|
// ChefHat aliases
|
|
576
576
|
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
577
|
+
// ChessBishop aliases
|
|
578
|
+
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
577
579
|
// Cherry aliases
|
|
578
580
|
export { default as CherryIcon } from '../icons/cherry';
|
|
579
|
-
// ChessKing aliases
|
|
580
|
-
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
581
581
|
// ChessKnight aliases
|
|
582
582
|
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
583
|
-
//
|
|
584
|
-
export { default as
|
|
583
|
+
// ChessKing aliases
|
|
584
|
+
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
585
585
|
// ChessPawn aliases
|
|
586
586
|
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
587
587
|
// ChessQueen aliases
|
|
@@ -592,30 +592,30 @@ export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
|
592
592
|
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
593
593
|
// ChevronFirst aliases
|
|
594
594
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
595
|
-
// ChevronLeft aliases
|
|
596
|
-
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
597
|
-
// ChevronRight aliases
|
|
598
|
-
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
599
595
|
// ChevronLast aliases
|
|
600
596
|
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
597
|
+
// ChevronLeft aliases
|
|
598
|
+
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
601
599
|
// ChevronUp aliases
|
|
602
600
|
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
601
|
+
// ChevronRight aliases
|
|
602
|
+
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
603
603
|
// ChevronsDownUp aliases
|
|
604
604
|
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
605
|
-
// ChevronsLeftRightEllipsis aliases
|
|
606
|
-
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
607
605
|
// ChevronsDown aliases
|
|
608
606
|
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
609
|
-
//
|
|
610
|
-
export { default as
|
|
607
|
+
// ChevronsLeftRightEllipsis aliases
|
|
608
|
+
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
611
609
|
// ChevronsLeft aliases
|
|
612
610
|
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
611
|
+
// ChevronsLeftRight aliases
|
|
612
|
+
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
613
613
|
// ChevronsRightLeft aliases
|
|
614
614
|
export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
615
|
-
// ChevronsRight aliases
|
|
616
|
-
export { default as ChevronsRightIcon } from '../icons/chevrons-right';
|
|
617
615
|
// ChevronsUpDown aliases
|
|
618
616
|
export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
617
|
+
// ChevronsRight aliases
|
|
618
|
+
export { default as ChevronsRightIcon } from '../icons/chevrons-right';
|
|
619
619
|
// ChevronsUp aliases
|
|
620
620
|
export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
621
621
|
// Church aliases
|
|
@@ -630,56 +630,56 @@ export { default as CircleDashedIcon } from '../icons/circle-dashed';
|
|
|
630
630
|
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
631
631
|
// CircleDotDashed aliases
|
|
632
632
|
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
633
|
-
// CircleEqual aliases
|
|
634
|
-
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
635
633
|
// CircleDot aliases
|
|
636
634
|
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
637
635
|
// CircleEllipsis aliases
|
|
638
636
|
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
637
|
+
// CircleEqual aliases
|
|
638
|
+
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
639
639
|
// CircleFadingArrowUp aliases
|
|
640
640
|
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
641
641
|
// CircleFadingPlus aliases
|
|
642
642
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
643
643
|
// CircleOff aliases
|
|
644
644
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
645
|
-
// CirclePoundSterling aliases
|
|
646
|
-
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
647
645
|
// CirclePile aliases
|
|
648
646
|
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
647
|
+
// CirclePoundSterling aliases
|
|
648
|
+
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
649
649
|
// CircleSlash aliases
|
|
650
650
|
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
651
651
|
// CircleSmall aliases
|
|
652
652
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
653
|
-
// Circle aliases
|
|
654
|
-
export { default as CircleIcon } from '../icons/circle';
|
|
655
653
|
// CircleStar aliases
|
|
656
654
|
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
655
|
+
// Circle aliases
|
|
656
|
+
export { default as CircleIcon } from '../icons/circle';
|
|
657
657
|
// CircuitBoard aliases
|
|
658
658
|
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
659
659
|
// Citrus aliases
|
|
660
660
|
export { default as CitrusIcon } from '../icons/citrus';
|
|
661
|
-
// ClipboardCheck aliases
|
|
662
|
-
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
663
661
|
// Clapperboard aliases
|
|
664
662
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
663
|
+
// ClipboardCheck aliases
|
|
664
|
+
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
665
665
|
// ClipboardClock aliases
|
|
666
666
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
667
667
|
// ClipboardCopy aliases
|
|
668
668
|
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
669
|
-
// ClipboardPaste aliases
|
|
670
|
-
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
671
669
|
// ClipboardList aliases
|
|
672
670
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
673
671
|
// ClipboardMinus aliases
|
|
674
672
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
673
|
+
// ClipboardPaste aliases
|
|
674
|
+
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
675
675
|
// ClipboardPlus aliases
|
|
676
676
|
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
677
|
+
// ClipboardType aliases
|
|
678
|
+
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
677
679
|
// ClipboardX aliases
|
|
678
680
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
679
681
|
// Clipboard aliases
|
|
680
682
|
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
681
|
-
// ClipboardType aliases
|
|
682
|
-
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
683
683
|
// Clock1 aliases
|
|
684
684
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
685
685
|
// Clock10 aliases
|
|
@@ -688,26 +688,26 @@ export { default as Clock10Icon } from '../icons/clock-10';
|
|
|
688
688
|
export { default as Clock11Icon } from '../icons/clock-11';
|
|
689
689
|
// Clock2 aliases
|
|
690
690
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
691
|
+
// Clock12 aliases
|
|
692
|
+
export { default as Clock12Icon } from '../icons/clock-12';
|
|
691
693
|
// Clock3 aliases
|
|
692
694
|
export { default as Clock3Icon } from '../icons/clock-3';
|
|
693
695
|
// Clock4 aliases
|
|
694
696
|
export { default as Clock4Icon } from '../icons/clock-4';
|
|
695
|
-
// Clock12 aliases
|
|
696
|
-
export { default as Clock12Icon } from '../icons/clock-12';
|
|
697
|
-
// Clock5 aliases
|
|
698
|
-
export { default as Clock5Icon } from '../icons/clock-5';
|
|
699
697
|
// Clock6 aliases
|
|
700
698
|
export { default as Clock6Icon } from '../icons/clock-6';
|
|
699
|
+
// Clock5 aliases
|
|
700
|
+
export { default as Clock5Icon } from '../icons/clock-5';
|
|
701
701
|
// Clock7 aliases
|
|
702
702
|
export { default as Clock7Icon } from '../icons/clock-7';
|
|
703
703
|
// Clock8 aliases
|
|
704
704
|
export { default as Clock8Icon } from '../icons/clock-8';
|
|
705
705
|
// Clock9 aliases
|
|
706
706
|
export { default as Clock9Icon } from '../icons/clock-9';
|
|
707
|
-
// ClockAlert aliases
|
|
708
|
-
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
709
707
|
// ClockArrowDown aliases
|
|
710
708
|
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
709
|
+
// ClockAlert aliases
|
|
710
|
+
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
711
711
|
// ClockCheck aliases
|
|
712
712
|
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
713
713
|
// ClockArrowUp aliases
|
|
@@ -716,32 +716,32 @@ export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
|
716
716
|
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
717
717
|
// ClockPlus aliases
|
|
718
718
|
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
719
|
-
// ClosedCaption aliases
|
|
720
|
-
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
721
719
|
// Clock aliases
|
|
722
720
|
export { default as ClockIcon } from '../icons/clock';
|
|
723
721
|
// CloudAlert aliases
|
|
724
722
|
export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
723
|
+
// ClosedCaption aliases
|
|
724
|
+
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
725
725
|
// CloudBackup aliases
|
|
726
726
|
export { default as CloudBackupIcon } from '../icons/cloud-backup';
|
|
727
727
|
// CloudCheck aliases
|
|
728
728
|
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
729
|
-
// CloudDrizzle aliases
|
|
730
|
-
export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
731
729
|
// CloudCog aliases
|
|
732
730
|
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
733
|
-
//
|
|
734
|
-
export { default as
|
|
731
|
+
// CloudDrizzle aliases
|
|
732
|
+
export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
735
733
|
// CloudFog aliases
|
|
736
734
|
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
735
|
+
// CloudHail aliases
|
|
736
|
+
export { default as CloudHailIcon } from '../icons/cloud-hail';
|
|
737
737
|
// CloudLightning aliases
|
|
738
738
|
export { default as CloudLightningIcon } from '../icons/cloud-lightning';
|
|
739
|
-
// CloudOff aliases
|
|
740
|
-
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
741
|
-
// CloudMoonRain aliases
|
|
742
|
-
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
743
739
|
// CloudMoon aliases
|
|
744
740
|
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
741
|
+
// CloudMoonRain aliases
|
|
742
|
+
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
743
|
+
// CloudOff aliases
|
|
744
|
+
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
745
745
|
// CloudRainWind aliases
|
|
746
746
|
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
747
747
|
// CloudRain aliases
|
|
@@ -752,12 +752,12 @@ export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
|
752
752
|
export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
753
753
|
// CloudSun aliases
|
|
754
754
|
export { default as CloudSunIcon } from '../icons/cloud-sun';
|
|
755
|
-
// CloudSync aliases
|
|
756
|
-
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
757
755
|
// Cloud aliases
|
|
758
756
|
export { default as CloudIcon } from '../icons/cloud';
|
|
759
757
|
// Cloudy aliases
|
|
760
758
|
export { default as CloudyIcon } from '../icons/cloudy';
|
|
759
|
+
// CloudSync aliases
|
|
760
|
+
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
761
761
|
// Clover aliases
|
|
762
762
|
export { default as CloverIcon } from '../icons/clover';
|
|
763
763
|
// Club aliases
|
|
@@ -766,22 +766,22 @@ export { default as ClubIcon } from '../icons/club';
|
|
|
766
766
|
export { default as CodeIcon } from '../icons/code';
|
|
767
767
|
// Codepen aliases
|
|
768
768
|
export { default as CodepenIcon } from '../icons/codepen';
|
|
769
|
-
// Coffee aliases
|
|
770
|
-
export { default as CoffeeIcon } from '../icons/coffee';
|
|
771
|
-
// Cog aliases
|
|
772
|
-
export { default as CogIcon } from '../icons/cog';
|
|
773
769
|
// Codesandbox aliases
|
|
774
770
|
export { default as CodesandboxIcon } from '../icons/codesandbox';
|
|
771
|
+
// Coffee aliases
|
|
772
|
+
export { default as CoffeeIcon } from '../icons/coffee';
|
|
775
773
|
// Coins aliases
|
|
776
774
|
export { default as CoinsIcon } from '../icons/coins';
|
|
775
|
+
// Cog aliases
|
|
776
|
+
export { default as CogIcon } from '../icons/cog';
|
|
777
777
|
// Columns4 aliases
|
|
778
778
|
export { default as Columns4Icon } from '../icons/columns-4';
|
|
779
|
+
// Combine aliases
|
|
780
|
+
export { default as CombineIcon } from '../icons/combine';
|
|
779
781
|
// Command aliases
|
|
780
782
|
export { default as CommandIcon } from '../icons/command';
|
|
781
783
|
// Compass aliases
|
|
782
784
|
export { default as CompassIcon } from '../icons/compass';
|
|
783
|
-
// Combine aliases
|
|
784
|
-
export { default as CombineIcon } from '../icons/combine';
|
|
785
785
|
// Component aliases
|
|
786
786
|
export { default as ComponentIcon } from '../icons/component';
|
|
787
787
|
// Computer aliases
|
|
@@ -798,18 +798,18 @@ export { default as ContactIcon } from '../icons/contact';
|
|
|
798
798
|
export { default as ContainerIcon } from '../icons/container';
|
|
799
799
|
// Contrast aliases
|
|
800
800
|
export { default as ContrastIcon } from '../icons/contrast';
|
|
801
|
-
// CookingPot aliases
|
|
802
|
-
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
803
801
|
// Cookie aliases
|
|
804
802
|
export { default as CookieIcon } from '../icons/cookie';
|
|
803
|
+
// CookingPot aliases
|
|
804
|
+
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
805
805
|
// CopyCheck aliases
|
|
806
806
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
807
807
|
// CopyMinus aliases
|
|
808
808
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
809
|
-
// CopyPlus aliases
|
|
810
|
-
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
811
809
|
// CopySlash aliases
|
|
812
810
|
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
811
|
+
// CopyPlus aliases
|
|
812
|
+
export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
813
813
|
// CopyX aliases
|
|
814
814
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
815
815
|
// Copy aliases
|
|
@@ -818,52 +818,54 @@ export { default as CopyIcon } from '../icons/copy';
|
|
|
818
818
|
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
819
819
|
// CornerDownLeft aliases
|
|
820
820
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
821
|
-
// Copyright aliases
|
|
822
|
-
export { default as CopyrightIcon } from '../icons/copyright';
|
|
823
821
|
// CornerDownRight aliases
|
|
824
822
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
823
|
+
// Copyright aliases
|
|
824
|
+
export { default as CopyrightIcon } from '../icons/copyright';
|
|
825
825
|
// CornerLeftDown aliases
|
|
826
826
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
827
|
+
// CornerRightDown aliases
|
|
828
|
+
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
827
829
|
// CornerLeftUp aliases
|
|
828
830
|
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
829
|
-
// CornerUpLeft aliases
|
|
830
|
-
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
831
831
|
// CornerRightUp aliases
|
|
832
832
|
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
833
|
-
//
|
|
834
|
-
export { default as
|
|
833
|
+
// CornerUpLeft aliases
|
|
834
|
+
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
835
835
|
// CornerUpRight aliases
|
|
836
836
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
837
|
-
// CreativeCommons aliases
|
|
838
|
-
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
839
837
|
// Cpu aliases
|
|
840
838
|
export { default as CpuIcon } from '../icons/cpu';
|
|
839
|
+
// CreativeCommons aliases
|
|
840
|
+
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
841
841
|
// CreditCard aliases
|
|
842
842
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
843
843
|
// Croissant aliases
|
|
844
844
|
export { default as CroissantIcon } from '../icons/croissant';
|
|
845
|
-
// Crop aliases
|
|
846
|
-
export { default as CropIcon } from '../icons/crop';
|
|
847
845
|
// Cross aliases
|
|
848
846
|
export { default as CrossIcon } from '../icons/cross';
|
|
847
|
+
// Crop aliases
|
|
848
|
+
export { default as CropIcon } from '../icons/crop';
|
|
849
|
+
// Crown aliases
|
|
850
|
+
export { default as CrownIcon } from '../icons/crown';
|
|
849
851
|
// Crosshair aliases
|
|
850
852
|
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
851
853
|
// Cuboid aliases
|
|
852
854
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
853
|
-
// Crown aliases
|
|
854
|
-
export { default as CrownIcon } from '../icons/crown';
|
|
855
855
|
// CupSoda aliases
|
|
856
856
|
export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
857
|
-
// Cylinder aliases
|
|
858
|
-
export { default as CylinderIcon } from '../icons/cylinder';
|
|
859
857
|
// Currency aliases
|
|
860
858
|
export { default as CurrencyIcon } from '../icons/currency';
|
|
859
|
+
// Cylinder aliases
|
|
860
|
+
export { default as CylinderIcon } from '../icons/cylinder';
|
|
861
861
|
// Dam aliases
|
|
862
862
|
export { default as DamIcon } from '../icons/dam';
|
|
863
|
-
// DatabaseZap aliases
|
|
864
|
-
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
865
863
|
// DatabaseBackup aliases
|
|
866
864
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
865
|
+
// DatabaseZap aliases
|
|
866
|
+
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
867
|
+
// DatabaseSearch aliases
|
|
868
|
+
export { default as DatabaseSearchIcon } from '../icons/database-search';
|
|
867
869
|
// DecimalsArrowLeft aliases
|
|
868
870
|
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
869
871
|
// DecimalsArrowRight aliases
|
|
@@ -878,38 +880,38 @@ export { default as DessertIcon } from '../icons/dessert';
|
|
|
878
880
|
export { default as DiameterIcon } from '../icons/diameter';
|
|
879
881
|
// DiamondMinus aliases
|
|
880
882
|
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
881
|
-
// DiamondPlus aliases
|
|
882
|
-
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
883
883
|
// Diamond aliases
|
|
884
884
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
885
|
+
// DiamondPlus aliases
|
|
886
|
+
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
885
887
|
// Dice1 aliases
|
|
886
888
|
export { default as Dice1Icon } from '../icons/dice-1';
|
|
887
|
-
// Dice3 aliases
|
|
888
|
-
export { default as Dice3Icon } from '../icons/dice-3';
|
|
889
889
|
// Dice2 aliases
|
|
890
890
|
export { default as Dice2Icon } from '../icons/dice-2';
|
|
891
891
|
// Dice4 aliases
|
|
892
892
|
export { default as Dice4Icon } from '../icons/dice-4';
|
|
893
|
+
// Dice3 aliases
|
|
894
|
+
export { default as Dice3Icon } from '../icons/dice-3';
|
|
895
|
+
// Dices aliases
|
|
896
|
+
export { default as DicesIcon } from '../icons/dices';
|
|
893
897
|
// Dice5 aliases
|
|
894
898
|
export { default as Dice5Icon } from '../icons/dice-5';
|
|
895
899
|
// Dice6 aliases
|
|
896
900
|
export { default as Dice6Icon } from '../icons/dice-6';
|
|
897
|
-
//
|
|
898
|
-
export { default as
|
|
901
|
+
// Disc2 aliases
|
|
902
|
+
export { default as Disc2Icon } from '../icons/disc-2';
|
|
899
903
|
// Diff aliases
|
|
900
904
|
export { default as DiffIcon } from '../icons/diff';
|
|
901
905
|
// Disc3 aliases
|
|
902
906
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
903
907
|
// DiscAlbum aliases
|
|
904
908
|
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
905
|
-
//
|
|
906
|
-
export { default as
|
|
909
|
+
// DnaOff aliases
|
|
910
|
+
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
907
911
|
// Disc aliases
|
|
908
912
|
export { default as DiscIcon } from '../icons/disc';
|
|
909
913
|
// Divide aliases
|
|
910
914
|
export { default as DivideIcon } from '../icons/divide';
|
|
911
|
-
// DnaOff aliases
|
|
912
|
-
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
913
915
|
// Dna aliases
|
|
914
916
|
export { default as DnaIcon } from '../icons/dna';
|
|
915
917
|
// Dock aliases
|
|
@@ -934,10 +936,10 @@ export { default as DownloadIcon } from '../icons/download';
|
|
|
934
936
|
export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
935
937
|
// Drama aliases
|
|
936
938
|
export { default as DramaIcon } from '../icons/drama';
|
|
937
|
-
// Dribbble aliases
|
|
938
|
-
export { default as DribbbleIcon } from '../icons/dribbble';
|
|
939
939
|
// Drill aliases
|
|
940
940
|
export { default as DrillIcon } from '../icons/drill';
|
|
941
|
+
// Dribbble aliases
|
|
942
|
+
export { default as DribbbleIcon } from '../icons/dribbble';
|
|
941
943
|
// Drone aliases
|
|
942
944
|
export { default as DroneIcon } from '../icons/drone';
|
|
943
945
|
// DropletOff aliases
|
|
@@ -948,92 +950,92 @@ export { default as DropletIcon } from '../icons/droplet';
|
|
|
948
950
|
export { default as DropletsIcon } from '../icons/droplets';
|
|
949
951
|
// Drum aliases
|
|
950
952
|
export { default as DrumIcon } from '../icons/drum';
|
|
951
|
-
// Drumstick aliases
|
|
952
|
-
export { default as DrumstickIcon } from '../icons/drumstick';
|
|
953
953
|
// Dumbbell aliases
|
|
954
954
|
export { default as DumbbellIcon } from '../icons/dumbbell';
|
|
955
|
+
// Drumstick aliases
|
|
956
|
+
export { default as DrumstickIcon } from '../icons/drumstick';
|
|
955
957
|
// EarOff aliases
|
|
956
958
|
export { default as EarOffIcon } from '../icons/ear-off';
|
|
957
|
-
// Ear aliases
|
|
958
|
-
export { default as EarIcon } from '../icons/ear';
|
|
959
959
|
// EarthLock aliases
|
|
960
960
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
961
|
+
// Ear aliases
|
|
962
|
+
export { default as EarIcon } from '../icons/ear';
|
|
963
|
+
// Eclipse aliases
|
|
964
|
+
export { default as EclipseIcon } from '../icons/eclipse';
|
|
961
965
|
// EggFried aliases
|
|
962
966
|
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
963
967
|
// EggOff aliases
|
|
964
968
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
965
|
-
// Eclipse aliases
|
|
966
|
-
export { default as EclipseIcon } from '../icons/eclipse';
|
|
967
969
|
// Egg aliases
|
|
968
970
|
export { default as EggIcon } from '../icons/egg';
|
|
969
971
|
// EqualApproximately aliases
|
|
970
972
|
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
971
|
-
// Equal aliases
|
|
972
|
-
export { default as EqualIcon } from '../icons/equal';
|
|
973
973
|
// EqualNot aliases
|
|
974
974
|
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
975
|
-
//
|
|
976
|
-
export { default as
|
|
975
|
+
// Equal aliases
|
|
976
|
+
export { default as EqualIcon } from '../icons/equal';
|
|
977
977
|
// Eraser aliases
|
|
978
978
|
export { default as EraserIcon } from '../icons/eraser';
|
|
979
|
-
//
|
|
980
|
-
export { default as
|
|
979
|
+
// EthernetPort aliases
|
|
980
|
+
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
981
981
|
// Euro aliases
|
|
982
982
|
export { default as EuroIcon } from '../icons/euro';
|
|
983
|
-
//
|
|
984
|
-
export { default as
|
|
983
|
+
// EvCharger aliases
|
|
984
|
+
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
985
985
|
// Expand aliases
|
|
986
986
|
export { default as ExpandIcon } from '../icons/expand';
|
|
987
987
|
// EyeClosed aliases
|
|
988
988
|
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
989
|
+
// ExternalLink aliases
|
|
990
|
+
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
989
991
|
// EyeOff aliases
|
|
990
992
|
export { default as EyeOffIcon } from '../icons/eye-off';
|
|
991
993
|
// Eye aliases
|
|
992
994
|
export { default as EyeIcon } from '../icons/eye';
|
|
995
|
+
// Facebook aliases
|
|
996
|
+
export { default as FacebookIcon } from '../icons/facebook';
|
|
997
|
+
// Factory aliases
|
|
998
|
+
export { default as FactoryIcon } from '../icons/factory';
|
|
993
999
|
// Fan aliases
|
|
994
1000
|
export { default as FanIcon } from '../icons/fan';
|
|
995
1001
|
// FastForward aliases
|
|
996
1002
|
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
997
|
-
// Factory aliases
|
|
998
|
-
export { default as FactoryIcon } from '../icons/factory';
|
|
999
|
-
// Facebook aliases
|
|
1000
|
-
export { default as FacebookIcon } from '../icons/facebook';
|
|
1001
1003
|
// Feather aliases
|
|
1002
1004
|
export { default as FeatherIcon } from '../icons/feather';
|
|
1003
|
-
// Fence aliases
|
|
1004
|
-
export { default as FenceIcon } from '../icons/fence';
|
|
1005
1005
|
// FerrisWheel aliases
|
|
1006
1006
|
export { default as FerrisWheelIcon } from '../icons/ferris-wheel';
|
|
1007
|
+
// Fence aliases
|
|
1008
|
+
export { default as FenceIcon } from '../icons/fence';
|
|
1007
1009
|
// Figma aliases
|
|
1008
1010
|
export { default as FigmaIcon } from '../icons/figma';
|
|
1009
1011
|
// FileArchive aliases
|
|
1010
1012
|
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1011
1013
|
// FileBox aliases
|
|
1012
1014
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1015
|
+
// FileClock aliases
|
|
1016
|
+
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1013
1017
|
// FileCheck aliases
|
|
1014
1018
|
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1015
1019
|
// FileCode aliases
|
|
1016
1020
|
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1017
|
-
// FileClock aliases
|
|
1018
|
-
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1019
1021
|
// FileDiff aliases
|
|
1020
1022
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1021
|
-
// FileDown aliases
|
|
1022
|
-
export { default as FileDownIcon } from '../icons/file-down';
|
|
1023
1023
|
// FileDigit aliases
|
|
1024
1024
|
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1025
|
+
// FileDown aliases
|
|
1026
|
+
export { default as FileDownIcon } from '../icons/file-down';
|
|
1027
|
+
// FileHeart aliases
|
|
1028
|
+
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1025
1029
|
// FileImage aliases
|
|
1026
1030
|
export { default as FileImageIcon } from '../icons/file-image';
|
|
1027
1031
|
// FileInput aliases
|
|
1028
1032
|
export { default as FileInputIcon } from '../icons/file-input';
|
|
1029
|
-
// FileHeart aliases
|
|
1030
|
-
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1031
1033
|
// FileMinus aliases
|
|
1032
1034
|
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1033
|
-
// FileOutput aliases
|
|
1034
|
-
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1035
1035
|
// FileMusic aliases
|
|
1036
1036
|
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1037
|
+
// FileOutput aliases
|
|
1038
|
+
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1037
1039
|
// FilePlus aliases
|
|
1038
1040
|
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1039
1041
|
// FileScan aliases
|
|
@@ -1050,140 +1052,140 @@ export { default as FileStackIcon } from '../icons/file-stack';
|
|
|
1050
1052
|
export { default as FileSymlinkIcon } from '../icons/file-symlink';
|
|
1051
1053
|
// FileTerminal aliases
|
|
1052
1054
|
export { default as FileTerminalIcon } from '../icons/file-terminal';
|
|
1053
|
-
// FileText aliases
|
|
1054
|
-
export { default as FileTextIcon } from '../icons/file-text';
|
|
1055
1055
|
// FileType aliases
|
|
1056
1056
|
export { default as FileTypeIcon } from '../icons/file-type';
|
|
1057
1057
|
// FileUp aliases
|
|
1058
1058
|
export { default as FileUpIcon } from '../icons/file-up';
|
|
1059
|
-
// FileUser aliases
|
|
1060
|
-
export { default as FileUserIcon } from '../icons/file-user';
|
|
1061
1059
|
// FileVolume aliases
|
|
1062
1060
|
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1063
|
-
//
|
|
1064
|
-
export { default as
|
|
1061
|
+
// FileText aliases
|
|
1062
|
+
export { default as FileTextIcon } from '../icons/file-text';
|
|
1063
|
+
// FileUser aliases
|
|
1064
|
+
export { default as FileUserIcon } from '../icons/file-user';
|
|
1065
1065
|
// File aliases
|
|
1066
1066
|
export { default as FileIcon } from '../icons/file';
|
|
1067
|
+
// FileX aliases
|
|
1068
|
+
export { default as FileXIcon } from '../icons/file-x';
|
|
1067
1069
|
// Files aliases
|
|
1068
1070
|
export { default as FilesIcon } from '../icons/files';
|
|
1069
|
-
// Film aliases
|
|
1070
|
-
export { default as FilmIcon } from '../icons/film';
|
|
1071
1071
|
// FireExtinguisher aliases
|
|
1072
1072
|
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1073
|
+
// Film aliases
|
|
1074
|
+
export { default as FilmIcon } from '../icons/film';
|
|
1073
1075
|
// FishOff aliases
|
|
1074
1076
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1075
|
-
// FishSymbol aliases
|
|
1076
|
-
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1077
1077
|
// FishingHook aliases
|
|
1078
1078
|
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1079
|
+
// FishSymbol aliases
|
|
1080
|
+
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1079
1081
|
// Fish aliases
|
|
1080
1082
|
export { default as FishIcon } from '../icons/fish';
|
|
1081
1083
|
// FlagOff aliases
|
|
1082
1084
|
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1083
1085
|
// FlagTriangleRight aliases
|
|
1084
1086
|
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1085
|
-
// Flag aliases
|
|
1086
|
-
export { default as FlagIcon } from '../icons/flag';
|
|
1087
1087
|
// FlagTriangleLeft aliases
|
|
1088
1088
|
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1089
|
+
// Flag aliases
|
|
1090
|
+
export { default as FlagIcon } from '../icons/flag';
|
|
1089
1091
|
// FlameKindling aliases
|
|
1090
1092
|
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1091
1093
|
// FlashlightOff aliases
|
|
1092
1094
|
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1093
|
-
// Flame aliases
|
|
1094
|
-
export { default as FlameIcon } from '../icons/flame';
|
|
1095
1095
|
// Flashlight aliases
|
|
1096
1096
|
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1097
|
-
//
|
|
1098
|
-
export { default as
|
|
1097
|
+
// Flame aliases
|
|
1098
|
+
export { default as FlameIcon } from '../icons/flame';
|
|
1099
1099
|
// FlaskConicalOff aliases
|
|
1100
1100
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1101
|
+
// FlaskConical aliases
|
|
1102
|
+
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1101
1103
|
// FlaskRound aliases
|
|
1102
1104
|
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1103
|
-
// FlipHorizontal aliases
|
|
1104
|
-
export { default as FlipHorizontalIcon } from '../icons/flip-horizontal';
|
|
1105
1105
|
// FlipHorizontal2 aliases
|
|
1106
1106
|
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1107
|
-
//
|
|
1108
|
-
export { default as
|
|
1107
|
+
// FlipHorizontal aliases
|
|
1108
|
+
export { default as FlipHorizontalIcon } from '../icons/flip-horizontal';
|
|
1109
1109
|
// FlipVertical2 aliases
|
|
1110
1110
|
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1111
|
+
// FlipVertical aliases
|
|
1112
|
+
export { default as FlipVerticalIcon } from '../icons/flip-vertical';
|
|
1111
1113
|
// Flower2 aliases
|
|
1112
1114
|
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1113
1115
|
// Flower aliases
|
|
1114
1116
|
export { default as FlowerIcon } from '../icons/flower';
|
|
1115
|
-
// Focus aliases
|
|
1116
|
-
export { default as FocusIcon } from '../icons/focus';
|
|
1117
1117
|
// FoldHorizontal aliases
|
|
1118
1118
|
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1119
|
-
// FolderArchive aliases
|
|
1120
|
-
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1121
1119
|
// FoldVertical aliases
|
|
1122
1120
|
export { default as FoldVerticalIcon } from '../icons/fold-vertical';
|
|
1123
|
-
//
|
|
1124
|
-
export { default as
|
|
1121
|
+
// Focus aliases
|
|
1122
|
+
export { default as FocusIcon } from '../icons/focus';
|
|
1123
|
+
// FolderArchive aliases
|
|
1124
|
+
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1125
1125
|
// FolderCheck aliases
|
|
1126
1126
|
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1127
|
-
//
|
|
1128
|
-
export { default as
|
|
1127
|
+
// FolderClock aliases
|
|
1128
|
+
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1129
1129
|
// FolderCode aliases
|
|
1130
1130
|
export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
1131
|
+
// FolderClosed aliases
|
|
1132
|
+
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1131
1133
|
// FolderDot aliases
|
|
1132
1134
|
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1133
|
-
// FolderDown aliases
|
|
1134
|
-
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1135
|
-
// FolderHeart aliases
|
|
1136
|
-
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1137
|
-
// FolderGit aliases
|
|
1138
|
-
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1139
1135
|
// FolderGit2 aliases
|
|
1140
1136
|
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1137
|
+
// FolderDown aliases
|
|
1138
|
+
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1141
1139
|
// FolderInput aliases
|
|
1142
1140
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1141
|
+
// FolderGit aliases
|
|
1142
|
+
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1143
1143
|
// FolderKanban aliases
|
|
1144
1144
|
export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
1145
|
-
//
|
|
1146
|
-
export { default as
|
|
1145
|
+
// FolderHeart aliases
|
|
1146
|
+
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1147
1147
|
// FolderKey aliases
|
|
1148
1148
|
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1149
|
+
// FolderLock aliases
|
|
1150
|
+
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1149
1151
|
// FolderMinus aliases
|
|
1150
1152
|
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1151
|
-
// FolderOpen aliases
|
|
1152
|
-
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1153
1153
|
// FolderOpenDot aliases
|
|
1154
1154
|
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1155
|
-
// FolderPlus aliases
|
|
1156
|
-
export { default as FolderPlusIcon } from '../icons/folder-plus';
|
|
1157
1155
|
// FolderOutput aliases
|
|
1158
1156
|
export { default as FolderOutputIcon } from '../icons/folder-output';
|
|
1157
|
+
// FolderPlus aliases
|
|
1158
|
+
export { default as FolderPlusIcon } from '../icons/folder-plus';
|
|
1159
|
+
// FolderOpen aliases
|
|
1160
|
+
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1159
1161
|
// FolderRoot aliases
|
|
1160
1162
|
export { default as FolderRootIcon } from '../icons/folder-root';
|
|
1161
1163
|
// FolderSearch2 aliases
|
|
1162
1164
|
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1163
1165
|
// FolderSearch aliases
|
|
1164
1166
|
export { default as FolderSearchIcon } from '../icons/folder-search';
|
|
1165
|
-
// FolderSync aliases
|
|
1166
|
-
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1167
1167
|
// FolderSymlink aliases
|
|
1168
1168
|
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1169
|
-
//
|
|
1170
|
-
export { default as
|
|
1169
|
+
// FolderSync aliases
|
|
1170
|
+
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1171
1171
|
// FolderUp aliases
|
|
1172
1172
|
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1173
|
+
// FolderTree aliases
|
|
1174
|
+
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1173
1175
|
// FolderX aliases
|
|
1174
1176
|
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1175
1177
|
// Folder aliases
|
|
1176
1178
|
export { default as FolderIcon } from '../icons/folder';
|
|
1177
1179
|
// Folders aliases
|
|
1178
1180
|
export { default as FoldersIcon } from '../icons/folders';
|
|
1179
|
-
// Footprints aliases
|
|
1180
|
-
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1181
1181
|
// Forklift aliases
|
|
1182
1182
|
export { default as ForkliftIcon } from '../icons/forklift';
|
|
1183
|
-
//
|
|
1184
|
-
export { default as
|
|
1183
|
+
// Footprints aliases
|
|
1184
|
+
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1185
1185
|
// Forward aliases
|
|
1186
1186
|
export { default as ForwardIcon } from '../icons/forward';
|
|
1187
|
+
// Form aliases
|
|
1188
|
+
export { default as FormIcon } from '../icons/form';
|
|
1187
1189
|
// Frame aliases
|
|
1188
1190
|
export { default as FrameIcon } from '../icons/frame';
|
|
1189
1191
|
// Framer aliases
|
|
@@ -1192,18 +1194,18 @@ export { default as FramerIcon } from '../icons/framer';
|
|
|
1192
1194
|
export { default as FrownIcon } from '../icons/frown';
|
|
1193
1195
|
// Fuel aliases
|
|
1194
1196
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1197
|
+
// FunnelPlus aliases
|
|
1198
|
+
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1195
1199
|
// Fullscreen aliases
|
|
1196
1200
|
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1197
1201
|
// GalleryHorizontalEnd aliases
|
|
1198
1202
|
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1199
1203
|
// GalleryHorizontal aliases
|
|
1200
1204
|
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1201
|
-
// FunnelPlus aliases
|
|
1202
|
-
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1203
|
-
// GalleryThumbnails aliases
|
|
1204
|
-
export { default as GalleryThumbnailsIcon } from '../icons/gallery-thumbnails';
|
|
1205
1205
|
// GalleryVerticalEnd aliases
|
|
1206
1206
|
export { default as GalleryVerticalEndIcon } from '../icons/gallery-vertical-end';
|
|
1207
|
+
// GalleryThumbnails aliases
|
|
1208
|
+
export { default as GalleryThumbnailsIcon } from '../icons/gallery-thumbnails';
|
|
1207
1209
|
// GalleryVertical aliases
|
|
1208
1210
|
export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
1209
1211
|
// Gamepad2 aliases
|
|
@@ -1218,14 +1220,14 @@ export { default as GaugeIcon } from '../icons/gauge';
|
|
|
1218
1220
|
export { default as GavelIcon } from '../icons/gavel';
|
|
1219
1221
|
// Gem aliases
|
|
1220
1222
|
export { default as GemIcon } from '../icons/gem';
|
|
1221
|
-
// Ghost aliases
|
|
1222
|
-
export { default as GhostIcon } from '../icons/ghost';
|
|
1223
1223
|
// GeorgianLari aliases
|
|
1224
1224
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1225
|
-
//
|
|
1226
|
-
export { default as
|
|
1225
|
+
// Ghost aliases
|
|
1226
|
+
export { default as GhostIcon } from '../icons/ghost';
|
|
1227
1227
|
// Gift aliases
|
|
1228
1228
|
export { default as GiftIcon } from '../icons/gift';
|
|
1229
|
+
// GitBranchMinus aliases
|
|
1230
|
+
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1229
1231
|
// GitBranchPlus aliases
|
|
1230
1232
|
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1231
1233
|
// GitBranch aliases
|
|
@@ -1234,44 +1236,44 @@ export { default as GitBranchIcon } from '../icons/git-branch';
|
|
|
1234
1236
|
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1235
1237
|
// GitCompareArrows aliases
|
|
1236
1238
|
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1237
|
-
// GitFork aliases
|
|
1238
|
-
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1239
|
-
// GitGraph aliases
|
|
1240
|
-
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1241
1239
|
// GitCompare aliases
|
|
1242
1240
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1241
|
+
// GitGraph aliases
|
|
1242
|
+
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1243
1243
|
// GitMerge aliases
|
|
1244
1244
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1245
|
+
// GitFork aliases
|
|
1246
|
+
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1245
1247
|
// GitPullRequestArrow aliases
|
|
1246
1248
|
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1247
1249
|
// GitPullRequestClosed aliases
|
|
1248
1250
|
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1249
|
-
// GitPullRequestCreate aliases
|
|
1250
|
-
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1251
1251
|
// GitPullRequestCreateArrow aliases
|
|
1252
1252
|
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1253
|
-
//
|
|
1254
|
-
export { default as
|
|
1253
|
+
// GitPullRequestCreate aliases
|
|
1254
|
+
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1255
1255
|
// GitPullRequest aliases
|
|
1256
1256
|
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1257
|
+
// GitPullRequestDraft aliases
|
|
1258
|
+
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1257
1259
|
// Github aliases
|
|
1258
1260
|
export { default as GithubIcon } from '../icons/github';
|
|
1259
1261
|
// Gitlab aliases
|
|
1260
1262
|
export { default as GitlabIcon } from '../icons/gitlab';
|
|
1261
|
-
// Glasses aliases
|
|
1262
|
-
export { default as GlassesIcon } from '../icons/glasses';
|
|
1263
1263
|
// GlassWater aliases
|
|
1264
1264
|
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1265
|
-
//
|
|
1266
|
-
export { default as
|
|
1265
|
+
// Glasses aliases
|
|
1266
|
+
export { default as GlassesIcon } from '../icons/glasses';
|
|
1267
1267
|
// GlobeX aliases
|
|
1268
1268
|
export { default as GlobeXIcon } from '../icons/globe-x';
|
|
1269
|
+
// GlobeLock aliases
|
|
1270
|
+
export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
1269
1271
|
// Globe aliases
|
|
1270
1272
|
export { default as GlobeIcon } from '../icons/globe';
|
|
1271
|
-
// Gpu aliases
|
|
1272
|
-
export { default as GpuIcon } from '../icons/gpu';
|
|
1273
1273
|
// Goal aliases
|
|
1274
1274
|
export { default as GoalIcon } from '../icons/goal';
|
|
1275
|
+
// Gpu aliases
|
|
1276
|
+
export { default as GpuIcon } from '../icons/gpu';
|
|
1275
1277
|
// GraduationCap aliases
|
|
1276
1278
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1277
1279
|
// Grape aliases
|
|
@@ -1280,26 +1282,26 @@ export { default as GrapeIcon } from '../icons/grape';
|
|
|
1280
1282
|
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1281
1283
|
// GripHorizontal aliases
|
|
1282
1284
|
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1283
|
-
// Grip aliases
|
|
1284
|
-
export { default as GripIcon } from '../icons/grip';
|
|
1285
1285
|
// GripVertical aliases
|
|
1286
1286
|
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1287
|
-
//
|
|
1288
|
-
export { default as
|
|
1289
|
-
// Guitar aliases
|
|
1290
|
-
export { default as GuitarIcon } from '../icons/guitar';
|
|
1287
|
+
// Grip aliases
|
|
1288
|
+
export { default as GripIcon } from '../icons/grip';
|
|
1291
1289
|
// Ham aliases
|
|
1292
1290
|
export { default as HamIcon } from '../icons/ham';
|
|
1291
|
+
// Guitar aliases
|
|
1292
|
+
export { default as GuitarIcon } from '../icons/guitar';
|
|
1293
|
+
// Group aliases
|
|
1294
|
+
export { default as GroupIcon } from '../icons/group';
|
|
1293
1295
|
// Hamburger aliases
|
|
1294
1296
|
export { default as HamburgerIcon } from '../icons/hamburger';
|
|
1295
1297
|
// Hammer aliases
|
|
1296
1298
|
export { default as HammerIcon } from '../icons/hammer';
|
|
1297
1299
|
// HandCoins aliases
|
|
1298
1300
|
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1299
|
-
// HandFist aliases
|
|
1300
|
-
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1301
1301
|
// HandHeart aliases
|
|
1302
1302
|
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1303
|
+
// HandFist aliases
|
|
1304
|
+
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1303
1305
|
// HandMetal aliases
|
|
1304
1306
|
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1305
1307
|
// HandPlatter aliases
|
|
@@ -1322,10 +1324,10 @@ export { default as HardHatIcon } from '../icons/hard-hat';
|
|
|
1322
1324
|
export { default as HashIcon } from '../icons/hash';
|
|
1323
1325
|
// HatGlasses aliases
|
|
1324
1326
|
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1325
|
-
// Haze aliases
|
|
1326
|
-
export { default as HazeIcon } from '../icons/haze';
|
|
1327
1327
|
// Hd aliases
|
|
1328
1328
|
export { default as HdIcon } from '../icons/hd';
|
|
1329
|
+
// Haze aliases
|
|
1330
|
+
export { default as HazeIcon } from '../icons/haze';
|
|
1329
1331
|
// HdmiPort aliases
|
|
1330
1332
|
export { default as HdmiPortIcon } from '../icons/hdmi-port';
|
|
1331
1333
|
// Heading1 aliases
|
|
@@ -1334,10 +1336,10 @@ export { default as Heading1Icon } from '../icons/heading-1';
|
|
|
1334
1336
|
export { default as Heading2Icon } from '../icons/heading-2';
|
|
1335
1337
|
// Heading3 aliases
|
|
1336
1338
|
export { default as Heading3Icon } from '../icons/heading-3';
|
|
1337
|
-
// Heading4 aliases
|
|
1338
|
-
export { default as Heading4Icon } from '../icons/heading-4';
|
|
1339
1339
|
// Heading5 aliases
|
|
1340
1340
|
export { default as Heading5Icon } from '../icons/heading-5';
|
|
1341
|
+
// Heading4 aliases
|
|
1342
|
+
export { default as Heading4Icon } from '../icons/heading-4';
|
|
1341
1343
|
// Heading6 aliases
|
|
1342
1344
|
export { default as Heading6Icon } from '../icons/heading-6';
|
|
1343
1345
|
// Heading aliases
|
|
@@ -1358,46 +1360,46 @@ export { default as HeartMinusIcon } from '../icons/heart-minus';
|
|
|
1358
1360
|
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1359
1361
|
// HeartPlus aliases
|
|
1360
1362
|
export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
1361
|
-
// Heart aliases
|
|
1362
|
-
export { default as HeartIcon } from '../icons/heart';
|
|
1363
1363
|
// HeartPulse aliases
|
|
1364
1364
|
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1365
1365
|
// Heater aliases
|
|
1366
1366
|
export { default as HeaterIcon } from '../icons/heater';
|
|
1367
1367
|
// Helicopter aliases
|
|
1368
1368
|
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1369
|
-
//
|
|
1370
|
-
export { default as
|
|
1369
|
+
// Heart aliases
|
|
1370
|
+
export { default as HeartIcon } from '../icons/heart';
|
|
1371
1371
|
// Hexagon aliases
|
|
1372
1372
|
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1373
|
+
// Highlighter aliases
|
|
1374
|
+
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1373
1375
|
// History aliases
|
|
1374
1376
|
export { default as HistoryIcon } from '../icons/history';
|
|
1375
|
-
// HopOff aliases
|
|
1376
|
-
export { default as HopOffIcon } from '../icons/hop-off';
|
|
1377
1377
|
// Hop aliases
|
|
1378
1378
|
export { default as HopIcon } from '../icons/hop';
|
|
1379
|
+
// HopOff aliases
|
|
1380
|
+
export { default as HopOffIcon } from '../icons/hop-off';
|
|
1379
1381
|
// Hospital aliases
|
|
1380
1382
|
export { default as HospitalIcon } from '../icons/hospital';
|
|
1381
1383
|
// Hotel aliases
|
|
1382
1384
|
export { default as HotelIcon } from '../icons/hotel';
|
|
1383
1385
|
// Hourglass aliases
|
|
1384
1386
|
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1385
|
-
// HousePlug aliases
|
|
1386
|
-
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1387
1387
|
// HouseHeart aliases
|
|
1388
1388
|
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1389
|
-
//
|
|
1390
|
-
export { default as
|
|
1389
|
+
// HousePlug aliases
|
|
1390
|
+
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1391
1391
|
// HouseWifi aliases
|
|
1392
1392
|
export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
1393
|
+
// HousePlus aliases
|
|
1394
|
+
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1393
1395
|
// IdCardLanyard aliases
|
|
1394
1396
|
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1395
1397
|
// IdCard aliases
|
|
1396
1398
|
export { default as IdCardIcon } from '../icons/id-card';
|
|
1397
|
-
// ImageMinus aliases
|
|
1398
|
-
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1399
1399
|
// ImageDown aliases
|
|
1400
1400
|
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1401
|
+
// ImageMinus aliases
|
|
1402
|
+
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1401
1403
|
// ImagePlay aliases
|
|
1402
1404
|
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1403
1405
|
// ImageOff aliases
|
|
@@ -1428,80 +1430,84 @@ export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
|
1428
1430
|
export { default as InstagramIcon } from '../icons/instagram';
|
|
1429
1431
|
// Italic aliases
|
|
1430
1432
|
export { default as ItalicIcon } from '../icons/italic';
|
|
1433
|
+
// IterationCw aliases
|
|
1434
|
+
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1431
1435
|
// IterationCcw aliases
|
|
1432
1436
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1433
1437
|
// JapaneseYen aliases
|
|
1434
1438
|
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1435
|
-
// Kanban aliases
|
|
1436
|
-
export { default as KanbanIcon } from '../icons/kanban';
|
|
1437
|
-
// IterationCw aliases
|
|
1438
|
-
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1439
1439
|
// Joystick aliases
|
|
1440
1440
|
export { default as JoystickIcon } from '../icons/joystick';
|
|
1441
|
+
// Kanban aliases
|
|
1442
|
+
export { default as KanbanIcon } from '../icons/kanban';
|
|
1441
1443
|
// Kayak aliases
|
|
1442
1444
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1443
1445
|
// KeyRound aliases
|
|
1444
1446
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1445
|
-
// Key aliases
|
|
1446
|
-
export { default as KeyIcon } from '../icons/key';
|
|
1447
1447
|
// KeySquare aliases
|
|
1448
1448
|
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1449
|
-
//
|
|
1450
|
-
export { default as
|
|
1449
|
+
// Key aliases
|
|
1450
|
+
export { default as KeyIcon } from '../icons/key';
|
|
1451
1451
|
// KeyboardOff aliases
|
|
1452
1452
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1453
|
+
// KeyboardMusic aliases
|
|
1454
|
+
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1453
1455
|
// Keyboard aliases
|
|
1454
1456
|
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1455
1457
|
// LampCeiling aliases
|
|
1456
1458
|
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1457
1459
|
// LampDesk aliases
|
|
1458
1460
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1459
|
-
// LampFloor aliases
|
|
1460
|
-
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1461
1461
|
// LampWallDown aliases
|
|
1462
1462
|
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1463
|
+
// LampFloor aliases
|
|
1464
|
+
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1463
1465
|
// LampWallUp aliases
|
|
1464
1466
|
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1465
1467
|
// Lamp aliases
|
|
1466
1468
|
export { default as LampIcon } from '../icons/lamp';
|
|
1467
1469
|
// LandPlot aliases
|
|
1468
1470
|
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1469
|
-
// Languages aliases
|
|
1470
|
-
export { default as LanguagesIcon } from '../icons/languages';
|
|
1471
1471
|
// Landmark aliases
|
|
1472
1472
|
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1473
|
-
//
|
|
1474
|
-
export { default as
|
|
1473
|
+
// Languages aliases
|
|
1474
|
+
export { default as LanguagesIcon } from '../icons/languages';
|
|
1475
1475
|
// Laptop aliases
|
|
1476
1476
|
export { default as LaptopIcon } from '../icons/laptop';
|
|
1477
1477
|
// LassoSelect aliases
|
|
1478
1478
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1479
|
-
//
|
|
1480
|
-
export { default as
|
|
1479
|
+
// LaptopMinimalCheck aliases
|
|
1480
|
+
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1481
1481
|
// Lasso aliases
|
|
1482
1482
|
export { default as LassoIcon } from '../icons/lasso';
|
|
1483
|
+
// Laugh aliases
|
|
1484
|
+
export { default as LaughIcon } from '../icons/laugh';
|
|
1483
1485
|
// Layers2 aliases
|
|
1484
1486
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1485
1487
|
// LayersPlus aliases
|
|
1486
1488
|
export { default as LayersPlusIcon } from '../icons/layers-plus';
|
|
1487
|
-
// LayoutGrid aliases
|
|
1488
|
-
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1489
1489
|
// LayoutDashboard aliases
|
|
1490
1490
|
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1491
|
+
// LayoutGrid aliases
|
|
1492
|
+
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1491
1493
|
// LayoutList aliases
|
|
1492
1494
|
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1493
1495
|
// LayoutPanelLeft aliases
|
|
1494
1496
|
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1495
1497
|
// LayoutPanelTop aliases
|
|
1496
1498
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1497
|
-
// Leaf aliases
|
|
1498
|
-
export { default as LeafIcon } from '../icons/leaf';
|
|
1499
1499
|
// LayoutTemplate aliases
|
|
1500
1500
|
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1501
|
+
// Leaf aliases
|
|
1502
|
+
export { default as LeafIcon } from '../icons/leaf';
|
|
1501
1503
|
// LeafyGreen aliases
|
|
1502
1504
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1503
1505
|
// Lectern aliases
|
|
1504
1506
|
export { default as LecternIcon } from '../icons/lectern';
|
|
1507
|
+
// LensConcave aliases
|
|
1508
|
+
export { default as LensConcaveIcon } from '../icons/lens-concave';
|
|
1509
|
+
// LensConvex aliases
|
|
1510
|
+
export { default as LensConvexIcon } from '../icons/lens-convex';
|
|
1505
1511
|
// LibraryBig aliases
|
|
1506
1512
|
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1507
1513
|
// Library aliases
|
|
@@ -1510,22 +1516,22 @@ export { default as LibraryIcon } from '../icons/library';
|
|
|
1510
1516
|
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1511
1517
|
// Ligature aliases
|
|
1512
1518
|
export { default as LigatureIcon } from '../icons/ligature';
|
|
1513
|
-
// LightbulbOff aliases
|
|
1514
|
-
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1515
1519
|
// LineSquiggle aliases
|
|
1516
1520
|
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1521
|
+
// LightbulbOff aliases
|
|
1522
|
+
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1517
1523
|
// Lightbulb aliases
|
|
1518
1524
|
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1519
|
-
// Link2 aliases
|
|
1520
|
-
export { default as Link2Icon } from '../icons/link-2';
|
|
1521
1525
|
// Link2Off aliases
|
|
1522
1526
|
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1527
|
+
// Link2 aliases
|
|
1528
|
+
export { default as Link2Icon } from '../icons/link-2';
|
|
1523
1529
|
// Link aliases
|
|
1524
1530
|
export { default as LinkIcon } from '../icons/link';
|
|
1525
|
-
// ListCheck aliases
|
|
1526
|
-
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1527
1531
|
// Linkedin aliases
|
|
1528
1532
|
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1533
|
+
// ListCheck aliases
|
|
1534
|
+
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1529
1535
|
// ListChecks aliases
|
|
1530
1536
|
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1531
1537
|
// ListChevronsDownUp aliases
|
|
@@ -1534,10 +1540,10 @@ export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-u
|
|
|
1534
1540
|
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1535
1541
|
// ListCollapse aliases
|
|
1536
1542
|
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1537
|
-
// ListFilterPlus aliases
|
|
1538
|
-
export { default as ListFilterPlusIcon } from '../icons/list-filter-plus';
|
|
1539
1543
|
// ListEnd aliases
|
|
1540
1544
|
export { default as ListEndIcon } from '../icons/list-end';
|
|
1545
|
+
// ListFilterPlus aliases
|
|
1546
|
+
export { default as ListFilterPlusIcon } from '../icons/list-filter-plus';
|
|
1541
1547
|
// ListFilter aliases
|
|
1542
1548
|
export { default as ListFilterIcon } from '../icons/list-filter';
|
|
1543
1549
|
// ListMinus aliases
|
|
@@ -1556,28 +1562,28 @@ export { default as ListStartIcon } from '../icons/list-start';
|
|
|
1556
1562
|
export { default as ListTodoIcon } from '../icons/list-todo';
|
|
1557
1563
|
// ListTree aliases
|
|
1558
1564
|
export { default as ListTreeIcon } from '../icons/list-tree';
|
|
1559
|
-
// ListVideo aliases
|
|
1560
|
-
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1561
1565
|
// ListX aliases
|
|
1562
1566
|
export { default as ListXIcon } from '../icons/list-x';
|
|
1567
|
+
// ListVideo aliases
|
|
1568
|
+
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1563
1569
|
// List aliases
|
|
1564
1570
|
export { default as ListIcon } from '../icons/list';
|
|
1565
1571
|
// LoaderPinwheel aliases
|
|
1566
1572
|
export { default as LoaderPinwheelIcon } from '../icons/loader-pinwheel';
|
|
1567
1573
|
// Loader aliases
|
|
1568
1574
|
export { default as LoaderIcon } from '../icons/loader';
|
|
1575
|
+
// Locate aliases
|
|
1576
|
+
export { default as LocateIcon } from '../icons/locate';
|
|
1569
1577
|
// LocateFixed aliases
|
|
1570
1578
|
export { default as LocateFixedIcon } from '../icons/locate-fixed';
|
|
1571
1579
|
// LocateOff aliases
|
|
1572
1580
|
export { default as LocateOffIcon } from '../icons/locate-off';
|
|
1573
|
-
// Locate aliases
|
|
1574
|
-
export { default as LocateIcon } from '../icons/locate';
|
|
1575
1581
|
// LockKeyhole aliases
|
|
1576
1582
|
export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
1577
|
-
// LogIn aliases
|
|
1578
|
-
export { default as LogInIcon } from '../icons/log-in';
|
|
1579
1583
|
// Lock aliases
|
|
1580
1584
|
export { default as LockIcon } from '../icons/lock';
|
|
1585
|
+
// LogIn aliases
|
|
1586
|
+
export { default as LogInIcon } from '../icons/log-in';
|
|
1581
1587
|
// LogOut aliases
|
|
1582
1588
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1583
1589
|
// Logs aliases
|
|
@@ -1588,24 +1594,24 @@ export { default as LollipopIcon } from '../icons/lollipop';
|
|
|
1588
1594
|
export { default as LuggageIcon } from '../icons/luggage';
|
|
1589
1595
|
// Magnet aliases
|
|
1590
1596
|
export { default as MagnetIcon } from '../icons/magnet';
|
|
1591
|
-
// MailCheck aliases
|
|
1592
|
-
export { default as MailCheckIcon } from '../icons/mail-check';
|
|
1593
1597
|
// MailMinus aliases
|
|
1594
1598
|
export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
1595
|
-
//
|
|
1596
|
-
export { default as
|
|
1599
|
+
// MailCheck aliases
|
|
1600
|
+
export { default as MailCheckIcon } from '../icons/mail-check';
|
|
1597
1601
|
// MailOpen aliases
|
|
1598
1602
|
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1603
|
+
// MailPlus aliases
|
|
1604
|
+
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1599
1605
|
// MailSearch aliases
|
|
1600
1606
|
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1601
|
-
//
|
|
1602
|
-
export { default as
|
|
1607
|
+
// Mail aliases
|
|
1608
|
+
export { default as MailIcon } from '../icons/mail';
|
|
1603
1609
|
// MailWarning aliases
|
|
1604
1610
|
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1611
|
+
// MailX aliases
|
|
1612
|
+
export { default as MailXIcon } from '../icons/mail-x';
|
|
1605
1613
|
// Mailbox aliases
|
|
1606
1614
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1607
|
-
// Mail aliases
|
|
1608
|
-
export { default as MailIcon } from '../icons/mail';
|
|
1609
1615
|
// Mails aliases
|
|
1610
1616
|
export { default as MailsIcon } from '../icons/mails';
|
|
1611
1617
|
// MapMinus aliases
|
|
@@ -1614,30 +1620,30 @@ export { default as MapMinusIcon } from '../icons/map-minus';
|
|
|
1614
1620
|
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1615
1621
|
// MapPinCheck aliases
|
|
1616
1622
|
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1617
|
-
// MapPinMinusInside aliases
|
|
1618
|
-
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1619
1623
|
// MapPinHouse aliases
|
|
1620
1624
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1625
|
+
// MapPinMinusInside aliases
|
|
1626
|
+
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1621
1627
|
// MapPinMinus aliases
|
|
1622
1628
|
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1623
|
-
// MapPinPlusInside aliases
|
|
1624
|
-
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1625
1629
|
// MapPinOff aliases
|
|
1626
1630
|
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1631
|
+
// MapPinPlusInside aliases
|
|
1632
|
+
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1627
1633
|
// MapPinPlus aliases
|
|
1628
1634
|
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1629
|
-
// MapPinX aliases
|
|
1630
|
-
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1631
1635
|
// MapPinXInside aliases
|
|
1632
1636
|
export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
1633
1637
|
// MapPin aliases
|
|
1634
1638
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1639
|
+
// MapPinX aliases
|
|
1640
|
+
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1641
|
+
// MapPinned aliases
|
|
1642
|
+
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1635
1643
|
// MapPlus aliases
|
|
1636
1644
|
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1637
1645
|
// Map aliases
|
|
1638
1646
|
export { default as MapIcon } from '../icons/map';
|
|
1639
|
-
// MapPinned aliases
|
|
1640
|
-
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1641
1647
|
// MarsStroke aliases
|
|
1642
1648
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1643
1649
|
// Mars aliases
|
|
@@ -1654,18 +1660,16 @@ export { default as MedalIcon } from '../icons/medal';
|
|
|
1654
1660
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1655
1661
|
// MegaphoneOff aliases
|
|
1656
1662
|
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1657
|
-
// MemoryStick aliases
|
|
1658
|
-
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1659
1663
|
// Meh aliases
|
|
1660
1664
|
export { default as MehIcon } from '../icons/meh';
|
|
1665
|
+
// MemoryStick aliases
|
|
1666
|
+
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1661
1667
|
// Menu aliases
|
|
1662
1668
|
export { default as MenuIcon } from '../icons/menu';
|
|
1663
|
-
// MessageCircleCode aliases
|
|
1664
|
-
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1665
1669
|
// Merge aliases
|
|
1666
1670
|
export { default as MergeIcon } from '../icons/merge';
|
|
1667
|
-
//
|
|
1668
|
-
export { default as
|
|
1671
|
+
// MessageCircleCode aliases
|
|
1672
|
+
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1669
1673
|
// MessageCircleDashed aliases
|
|
1670
1674
|
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1671
1675
|
// MessageCircleMore aliases
|
|
@@ -1674,22 +1678,24 @@ export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
|
1674
1678
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1675
1679
|
// MessageCirclePlus aliases
|
|
1676
1680
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1677
|
-
//
|
|
1678
|
-
export { default as
|
|
1681
|
+
// MessageCircleHeart aliases
|
|
1682
|
+
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1679
1683
|
// MessageCircleReply aliases
|
|
1680
1684
|
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1685
|
+
// MessageCircleWarning aliases
|
|
1686
|
+
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1681
1687
|
// MessageCircleX aliases
|
|
1682
1688
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1683
1689
|
// MessageCircle aliases
|
|
1684
1690
|
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1685
1691
|
// MessageSquareCode aliases
|
|
1686
1692
|
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1687
|
-
// MessageSquareDashed aliases
|
|
1688
|
-
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1689
1693
|
// MessageSquareDiff aliases
|
|
1690
1694
|
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1691
1695
|
// MessageSquareDot aliases
|
|
1692
1696
|
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1697
|
+
// MessageSquareDashed aliases
|
|
1698
|
+
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1693
1699
|
// MessageSquareHeart aliases
|
|
1694
1700
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1695
1701
|
// MessageSquareLock aliases
|
|
@@ -1698,72 +1704,72 @@ export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
|
1698
1704
|
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1699
1705
|
// MessageSquareOff aliases
|
|
1700
1706
|
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1701
|
-
// MessageSquarePlus aliases
|
|
1702
|
-
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1703
1707
|
// MessageSquareQuote aliases
|
|
1704
1708
|
export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote';
|
|
1705
|
-
//
|
|
1706
|
-
export { default as
|
|
1709
|
+
// MessageSquarePlus aliases
|
|
1710
|
+
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1707
1711
|
// MessageSquareReply aliases
|
|
1708
1712
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1709
|
-
//
|
|
1710
|
-
export { default as
|
|
1713
|
+
// MessageSquareShare aliases
|
|
1714
|
+
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1711
1715
|
// MessageSquareWarning aliases
|
|
1712
1716
|
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1717
|
+
// MessageSquareText aliases
|
|
1718
|
+
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1713
1719
|
// MessageSquareX aliases
|
|
1714
1720
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1715
1721
|
// MessageSquare aliases
|
|
1716
1722
|
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1717
1723
|
// MessagesSquare aliases
|
|
1718
1724
|
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1719
|
-
// Mic aliases
|
|
1720
|
-
export { default as MicIcon } from '../icons/mic';
|
|
1721
1725
|
// MicOff aliases
|
|
1722
1726
|
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1723
|
-
//
|
|
1724
|
-
export { default as
|
|
1727
|
+
// Mic aliases
|
|
1728
|
+
export { default as MicIcon } from '../icons/mic';
|
|
1725
1729
|
// Microscope aliases
|
|
1726
1730
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1727
|
-
//
|
|
1728
|
-
export { default as
|
|
1731
|
+
// Microchip aliases
|
|
1732
|
+
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1729
1733
|
// Microwave aliases
|
|
1730
1734
|
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1731
|
-
//
|
|
1732
|
-
export { default as
|
|
1735
|
+
// Milestone aliases
|
|
1736
|
+
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1733
1737
|
// Milk aliases
|
|
1734
1738
|
export { default as MilkIcon } from '../icons/milk';
|
|
1735
|
-
//
|
|
1736
|
-
export { default as
|
|
1739
|
+
// MilkOff aliases
|
|
1740
|
+
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1737
1741
|
// Minimize2 aliases
|
|
1738
1742
|
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1743
|
+
// Minimize aliases
|
|
1744
|
+
export { default as MinimizeIcon } from '../icons/minimize';
|
|
1739
1745
|
// Minus aliases
|
|
1740
1746
|
export { default as MinusIcon } from '../icons/minus';
|
|
1741
|
-
// MonitorCheck aliases
|
|
1742
|
-
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1743
1747
|
// MonitorCloud aliases
|
|
1744
1748
|
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1749
|
+
// MonitorCheck aliases
|
|
1750
|
+
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1745
1751
|
// MonitorCog aliases
|
|
1746
1752
|
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1747
|
-
// MonitorDown aliases
|
|
1748
|
-
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1749
1753
|
// MonitorOff aliases
|
|
1750
1754
|
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1751
1755
|
// MonitorDot aliases
|
|
1752
1756
|
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1753
|
-
//
|
|
1754
|
-
export { default as
|
|
1757
|
+
// MonitorDown aliases
|
|
1758
|
+
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1755
1759
|
// MonitorPlay aliases
|
|
1756
1760
|
export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
1761
|
+
// MonitorPause aliases
|
|
1762
|
+
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1757
1763
|
// MonitorSmartphone aliases
|
|
1758
1764
|
export { default as MonitorSmartphoneIcon } from '../icons/monitor-smartphone';
|
|
1759
|
-
// MonitorSpeaker aliases
|
|
1760
|
-
export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
1761
1765
|
// MonitorStop aliases
|
|
1762
1766
|
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1763
|
-
//
|
|
1764
|
-
export { default as
|
|
1767
|
+
// MonitorSpeaker aliases
|
|
1768
|
+
export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
1765
1769
|
// MonitorX aliases
|
|
1766
1770
|
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1771
|
+
// MonitorUp aliases
|
|
1772
|
+
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1767
1773
|
// Monitor aliases
|
|
1768
1774
|
export { default as MonitorIcon } from '../icons/monitor';
|
|
1769
1775
|
// MoonStar aliases
|
|
@@ -1786,10 +1792,10 @@ export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
|
1786
1792
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1787
1793
|
// MousePointerClick aliases
|
|
1788
1794
|
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1789
|
-
// Mouse aliases
|
|
1790
|
-
export { default as MouseIcon } from '../icons/mouse';
|
|
1791
1795
|
// MousePointer aliases
|
|
1792
1796
|
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1797
|
+
// Mouse aliases
|
|
1798
|
+
export { default as MouseIcon } from '../icons/mouse';
|
|
1793
1799
|
// MoveDiagonal2 aliases
|
|
1794
1800
|
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1795
1801
|
// MoveDiagonal aliases
|
|
@@ -1802,24 +1808,24 @@ export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
|
1802
1808
|
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1803
1809
|
// MoveHorizontal aliases
|
|
1804
1810
|
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1805
|
-
// MoveRight aliases
|
|
1806
|
-
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1807
1811
|
// MoveLeft aliases
|
|
1808
1812
|
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1813
|
+
// MoveRight aliases
|
|
1814
|
+
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1809
1815
|
// MoveUpLeft aliases
|
|
1810
1816
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1817
|
+
// MoveUpRight aliases
|
|
1818
|
+
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1811
1819
|
// MoveUp aliases
|
|
1812
1820
|
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1813
1821
|
// MoveVertical aliases
|
|
1814
1822
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1815
|
-
//
|
|
1816
|
-
export { default as
|
|
1823
|
+
// Music3 aliases
|
|
1824
|
+
export { default as Music3Icon } from '../icons/music-3';
|
|
1817
1825
|
// Move aliases
|
|
1818
1826
|
export { default as MoveIcon } from '../icons/move';
|
|
1819
1827
|
// Music2 aliases
|
|
1820
1828
|
export { default as Music2Icon } from '../icons/music-2';
|
|
1821
|
-
// Music3 aliases
|
|
1822
|
-
export { default as Music3Icon } from '../icons/music-3';
|
|
1823
1829
|
// Music4 aliases
|
|
1824
1830
|
export { default as Music4Icon } from '../icons/music-4';
|
|
1825
1831
|
// Music aliases
|
|
@@ -1828,18 +1834,18 @@ export { default as MusicIcon } from '../icons/music';
|
|
|
1828
1834
|
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1829
1835
|
// Navigation2Off aliases
|
|
1830
1836
|
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1831
|
-
// NavigationOff aliases
|
|
1832
|
-
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1833
1837
|
// Navigation aliases
|
|
1834
1838
|
export { default as NavigationIcon } from '../icons/navigation';
|
|
1839
|
+
// NavigationOff aliases
|
|
1840
|
+
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1835
1841
|
// Network aliases
|
|
1836
1842
|
export { default as NetworkIcon } from '../icons/network';
|
|
1837
1843
|
// Newspaper aliases
|
|
1838
1844
|
export { default as NewspaperIcon } from '../icons/newspaper';
|
|
1839
|
-
// Nfc aliases
|
|
1840
|
-
export { default as NfcIcon } from '../icons/nfc';
|
|
1841
1845
|
// NonBinary aliases
|
|
1842
1846
|
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1847
|
+
// Nfc aliases
|
|
1848
|
+
export { default as NfcIcon } from '../icons/nfc';
|
|
1843
1849
|
// NotebookPen aliases
|
|
1844
1850
|
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1845
1851
|
// NotebookTabs aliases
|
|
@@ -1848,24 +1854,24 @@ export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
|
1848
1854
|
export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
1849
1855
|
// Notebook aliases
|
|
1850
1856
|
export { default as NotebookIcon } from '../icons/notebook';
|
|
1851
|
-
// NotepadTextDashed aliases
|
|
1852
|
-
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1853
1857
|
// NotepadText aliases
|
|
1854
1858
|
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1855
|
-
// NutOff aliases
|
|
1856
|
-
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1857
1859
|
// Nut aliases
|
|
1858
1860
|
export { default as NutIcon } from '../icons/nut';
|
|
1861
|
+
// NotepadTextDashed aliases
|
|
1862
|
+
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1863
|
+
// NutOff aliases
|
|
1864
|
+
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1859
1865
|
// OctagonMinus aliases
|
|
1860
1866
|
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1861
1867
|
// Octagon aliases
|
|
1862
1868
|
export { default as OctagonIcon } from '../icons/octagon';
|
|
1869
|
+
// Omega aliases
|
|
1870
|
+
export { default as OmegaIcon } from '../icons/omega';
|
|
1863
1871
|
// Option aliases
|
|
1864
1872
|
export { default as OptionIcon } from '../icons/option';
|
|
1865
1873
|
// Orbit aliases
|
|
1866
1874
|
export { default as OrbitIcon } from '../icons/orbit';
|
|
1867
|
-
// Omega aliases
|
|
1868
|
-
export { default as OmegaIcon } from '../icons/omega';
|
|
1869
1875
|
// Package2 aliases
|
|
1870
1876
|
export { default as Package2Icon } from '../icons/package-2';
|
|
1871
1877
|
// Origami aliases
|
|
@@ -1874,104 +1880,104 @@ export { default as OrigamiIcon } from '../icons/origami';
|
|
|
1874
1880
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1875
1881
|
// PackageMinus aliases
|
|
1876
1882
|
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1877
|
-
// PackageOpen aliases
|
|
1878
|
-
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1879
1883
|
// PackagePlus aliases
|
|
1880
1884
|
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1885
|
+
// PackageOpen aliases
|
|
1886
|
+
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1881
1887
|
// PackageSearch aliases
|
|
1882
1888
|
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1883
|
-
// Package aliases
|
|
1884
|
-
export { default as PackageIcon } from '../icons/package';
|
|
1885
1889
|
// PackageX aliases
|
|
1886
1890
|
export { default as PackageXIcon } from '../icons/package-x';
|
|
1887
1891
|
// PaintBucket aliases
|
|
1888
1892
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1889
|
-
//
|
|
1890
|
-
export { default as
|
|
1893
|
+
// Package aliases
|
|
1894
|
+
export { default as PackageIcon } from '../icons/package';
|
|
1891
1895
|
// PaintRoller aliases
|
|
1892
1896
|
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1893
1897
|
// Palette aliases
|
|
1894
1898
|
export { default as PaletteIcon } from '../icons/palette';
|
|
1899
|
+
// Paintbrush aliases
|
|
1900
|
+
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1895
1901
|
// Panda aliases
|
|
1896
1902
|
export { default as PandaIcon } from '../icons/panda';
|
|
1897
1903
|
// PanelBottomClose aliases
|
|
1898
1904
|
export { default as PanelBottomCloseIcon } from '../icons/panel-bottom-close';
|
|
1899
|
-
// PanelBottom aliases
|
|
1900
|
-
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1901
1905
|
// PanelBottomOpen aliases
|
|
1902
1906
|
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1903
1907
|
// PanelLeftRightDashed aliases
|
|
1904
1908
|
export { default as PanelLeftRightDashedIcon } from '../icons/panel-left-right-dashed';
|
|
1909
|
+
// PanelBottom aliases
|
|
1910
|
+
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1905
1911
|
// PanelRightClose aliases
|
|
1906
1912
|
export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
1907
1913
|
// PanelRightOpen aliases
|
|
1908
1914
|
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1909
1915
|
// PanelRight aliases
|
|
1910
1916
|
export { default as PanelRightIcon } from '../icons/panel-right';
|
|
1911
|
-
// PanelTopClose aliases
|
|
1912
|
-
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1913
1917
|
// PanelTopBottomDashed aliases
|
|
1914
1918
|
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1915
|
-
//
|
|
1916
|
-
export { default as
|
|
1919
|
+
// PanelTopClose aliases
|
|
1920
|
+
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1917
1921
|
// PanelTop aliases
|
|
1918
1922
|
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1919
|
-
//
|
|
1920
|
-
export { default as
|
|
1923
|
+
// PanelTopOpen aliases
|
|
1924
|
+
export { default as PanelTopOpenIcon } from '../icons/panel-top-open';
|
|
1921
1925
|
// PanelsLeftBottom aliases
|
|
1922
1926
|
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1923
|
-
//
|
|
1924
|
-
export { default as
|
|
1927
|
+
// PanelsRightBottom aliases
|
|
1928
|
+
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1925
1929
|
// Paperclip aliases
|
|
1926
1930
|
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1927
1931
|
// ParkingMeter aliases
|
|
1928
1932
|
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1933
|
+
// Parentheses aliases
|
|
1934
|
+
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
1929
1935
|
// PartyPopper aliases
|
|
1930
1936
|
export { default as PartyPopperIcon } from '../icons/party-popper';
|
|
1931
1937
|
// Pause aliases
|
|
1932
1938
|
export { default as PauseIcon } from '../icons/pause';
|
|
1933
|
-
// PawPrint aliases
|
|
1934
|
-
export { default as PawPrintIcon } from '../icons/paw-print';
|
|
1935
1939
|
// PcCase aliases
|
|
1936
1940
|
export { default as PcCaseIcon } from '../icons/pc-case';
|
|
1941
|
+
// PawPrint aliases
|
|
1942
|
+
export { default as PawPrintIcon } from '../icons/paw-print';
|
|
1937
1943
|
// PenOff aliases
|
|
1938
1944
|
export { default as PenOffIcon } from '../icons/pen-off';
|
|
1939
|
-
// PencilLine aliases
|
|
1940
|
-
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
1941
1945
|
// PenTool aliases
|
|
1942
1946
|
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
1943
|
-
//
|
|
1944
|
-
export { default as
|
|
1947
|
+
// PencilLine aliases
|
|
1948
|
+
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
1945
1949
|
// PencilRuler aliases
|
|
1946
1950
|
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
1951
|
+
// PencilOff aliases
|
|
1952
|
+
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
1947
1953
|
// Pencil aliases
|
|
1948
1954
|
export { default as PencilIcon } from '../icons/pencil';
|
|
1949
|
-
// Pentagon aliases
|
|
1950
|
-
export { default as PentagonIcon } from '../icons/pentagon';
|
|
1951
1955
|
// Percent aliases
|
|
1952
1956
|
export { default as PercentIcon } from '../icons/percent';
|
|
1957
|
+
// Pentagon aliases
|
|
1958
|
+
export { default as PentagonIcon } from '../icons/pentagon';
|
|
1953
1959
|
// PhilippinePeso aliases
|
|
1954
1960
|
export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
1955
1961
|
// PersonStanding aliases
|
|
1956
1962
|
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1957
1963
|
// PhoneCall aliases
|
|
1958
1964
|
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1959
|
-
// PhoneIncoming aliases
|
|
1960
|
-
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1961
1965
|
// PhoneForwarded aliases
|
|
1962
1966
|
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1963
|
-
//
|
|
1964
|
-
export { default as
|
|
1967
|
+
// PhoneIncoming aliases
|
|
1968
|
+
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1965
1969
|
// PhoneOff aliases
|
|
1966
1970
|
export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
1971
|
+
// PhoneMissed aliases
|
|
1972
|
+
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
1967
1973
|
// PhoneOutgoing aliases
|
|
1968
1974
|
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
1969
1975
|
// Phone aliases
|
|
1970
1976
|
export { default as PhoneIcon } from '../icons/phone';
|
|
1971
|
-
// Piano aliases
|
|
1972
|
-
export { default as PianoIcon } from '../icons/piano';
|
|
1973
1977
|
// Pickaxe aliases
|
|
1974
1978
|
export { default as PickaxeIcon } from '../icons/pickaxe';
|
|
1979
|
+
// Piano aliases
|
|
1980
|
+
export { default as PianoIcon } from '../icons/piano';
|
|
1975
1981
|
// Pi aliases
|
|
1976
1982
|
export { default as PiIcon } from '../icons/pi';
|
|
1977
1983
|
// PictureInPicture2 aliases
|
|
@@ -1984,18 +1990,18 @@ export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
|
1984
1990
|
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1985
1991
|
// PilcrowRight aliases
|
|
1986
1992
|
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
1987
|
-
// PillBottle aliases
|
|
1988
|
-
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
1989
1993
|
// Pilcrow aliases
|
|
1990
1994
|
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
1995
|
+
// PillBottle aliases
|
|
1996
|
+
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
1991
1997
|
// Pill aliases
|
|
1992
1998
|
export { default as PillIcon } from '../icons/pill';
|
|
1993
1999
|
// PinOff aliases
|
|
1994
2000
|
export { default as PinOffIcon } from '../icons/pin-off';
|
|
1995
|
-
// Pin aliases
|
|
1996
|
-
export { default as PinIcon } from '../icons/pin';
|
|
1997
2001
|
// Pipette aliases
|
|
1998
2002
|
export { default as PipetteIcon } from '../icons/pipette';
|
|
2003
|
+
// Pin aliases
|
|
2004
|
+
export { default as PinIcon } from '../icons/pin';
|
|
1999
2005
|
// Pizza aliases
|
|
2000
2006
|
export { default as PizzaIcon } from '../icons/pizza';
|
|
2001
2007
|
// PlaneLanding aliases
|
|
@@ -2016,10 +2022,10 @@ export { default as PlusIcon } from '../icons/plus';
|
|
|
2016
2022
|
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2017
2023
|
// Pocket aliases
|
|
2018
2024
|
export { default as PocketIcon } from '../icons/pocket';
|
|
2019
|
-
// PointerOff aliases
|
|
2020
|
-
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2021
2025
|
// Podcast aliases
|
|
2022
2026
|
export { default as PodcastIcon } from '../icons/podcast';
|
|
2027
|
+
// PointerOff aliases
|
|
2028
|
+
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2023
2029
|
// Pointer aliases
|
|
2024
2030
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2025
2031
|
// Popcorn aliases
|
|
@@ -2028,36 +2034,34 @@ export { default as PopcornIcon } from '../icons/popcorn';
|
|
|
2028
2034
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2029
2035
|
// PoundSterling aliases
|
|
2030
2036
|
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2037
|
+
// PowerOff aliases
|
|
2038
|
+
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2031
2039
|
// Power aliases
|
|
2032
2040
|
export { default as PowerIcon } from '../icons/power';
|
|
2033
2041
|
// Presentation aliases
|
|
2034
2042
|
export { default as PresentationIcon } from '../icons/presentation';
|
|
2035
|
-
// PowerOff aliases
|
|
2036
|
-
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2037
2043
|
// PrinterCheck aliases
|
|
2038
2044
|
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2039
2045
|
// PrinterX aliases
|
|
2040
2046
|
export { default as PrinterXIcon } from '../icons/printer-x';
|
|
2041
|
-
// Printer aliases
|
|
2042
|
-
export { default as PrinterIcon } from '../icons/printer';
|
|
2043
2047
|
// Projector aliases
|
|
2044
2048
|
export { default as ProjectorIcon } from '../icons/projector';
|
|
2045
|
-
//
|
|
2046
|
-
export { default as
|
|
2049
|
+
// Printer aliases
|
|
2050
|
+
export { default as PrinterIcon } from '../icons/printer';
|
|
2047
2051
|
// Proportions aliases
|
|
2048
2052
|
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2053
|
+
// Puzzle aliases
|
|
2054
|
+
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2049
2055
|
// Pyramid aliases
|
|
2050
2056
|
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2051
2057
|
// QrCode aliases
|
|
2052
2058
|
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2053
2059
|
// Quote aliases
|
|
2054
2060
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2055
|
-
// Rabbit aliases
|
|
2056
|
-
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2057
2061
|
// Radar aliases
|
|
2058
2062
|
export { default as RadarIcon } from '../icons/radar';
|
|
2059
|
-
//
|
|
2060
|
-
export { default as
|
|
2063
|
+
// Rabbit aliases
|
|
2064
|
+
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2061
2065
|
// Radiation aliases
|
|
2062
2066
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2063
2067
|
// Radical aliases
|
|
@@ -2066,26 +2070,28 @@ export { default as RadicalIcon } from '../icons/radical';
|
|
|
2066
2070
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2067
2071
|
// Radio aliases
|
|
2068
2072
|
export { default as RadioIcon } from '../icons/radio';
|
|
2073
|
+
// RadioReceiver aliases
|
|
2074
|
+
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2069
2075
|
// Radius aliases
|
|
2070
2076
|
export { default as RadiusIcon } from '../icons/radius';
|
|
2071
2077
|
// RailSymbol aliases
|
|
2072
2078
|
export { default as RailSymbolIcon } from '../icons/rail-symbol';
|
|
2073
2079
|
// Rainbow aliases
|
|
2074
2080
|
export { default as RainbowIcon } from '../icons/rainbow';
|
|
2081
|
+
// Rat aliases
|
|
2082
|
+
export { default as RatIcon } from '../icons/rat';
|
|
2075
2083
|
// Ratio aliases
|
|
2076
2084
|
export { default as RatioIcon } from '../icons/ratio';
|
|
2077
2085
|
// ReceiptCent aliases
|
|
2078
2086
|
export { default as ReceiptCentIcon } from '../icons/receipt-cent';
|
|
2079
|
-
// ReceiptEuro aliases
|
|
2080
|
-
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2081
|
-
// Rat aliases
|
|
2082
|
-
export { default as RatIcon } from '../icons/rat';
|
|
2083
|
-
// ReceiptPoundSterling aliases
|
|
2084
|
-
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2085
2087
|
// ReceiptIndianRupee aliases
|
|
2086
2088
|
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2087
2089
|
// ReceiptJapaneseYen aliases
|
|
2088
2090
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2091
|
+
// ReceiptEuro aliases
|
|
2092
|
+
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2093
|
+
// ReceiptPoundSterling aliases
|
|
2094
|
+
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2089
2095
|
// ReceiptRussianRuble aliases
|
|
2090
2096
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2091
2097
|
// ReceiptSwissFranc aliases
|
|
@@ -2096,62 +2102,62 @@ export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
|
2096
2102
|
export { default as ReceiptTurkishLiraIcon } from '../icons/receipt-turkish-lira';
|
|
2097
2103
|
// Receipt aliases
|
|
2098
2104
|
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2099
|
-
// RectangleGoggles aliases
|
|
2100
|
-
export { default as RectangleGogglesIcon } from '../icons/rectangle-goggles';
|
|
2101
2105
|
// RectangleCircle aliases
|
|
2102
2106
|
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2103
2107
|
// RectangleHorizontal aliases
|
|
2104
2108
|
export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizontal';
|
|
2105
|
-
//
|
|
2106
|
-
export { default as
|
|
2109
|
+
// RectangleGoggles aliases
|
|
2110
|
+
export { default as RectangleGogglesIcon } from '../icons/rectangle-goggles';
|
|
2107
2111
|
// Recycle aliases
|
|
2108
2112
|
export { default as RecycleIcon } from '../icons/recycle';
|
|
2113
|
+
// RectangleVertical aliases
|
|
2114
|
+
export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
2109
2115
|
// Redo2 aliases
|
|
2110
2116
|
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2111
2117
|
// RedoDot aliases
|
|
2112
2118
|
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2119
|
+
// Redo aliases
|
|
2120
|
+
export { default as RedoIcon } from '../icons/redo';
|
|
2113
2121
|
// RefreshCcw aliases
|
|
2114
2122
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2115
2123
|
// RefreshCcwDot aliases
|
|
2116
2124
|
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2117
|
-
//
|
|
2118
|
-
export { default as
|
|
2125
|
+
// RefreshCwOff aliases
|
|
2126
|
+
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2119
2127
|
// RefreshCw aliases
|
|
2120
2128
|
export { default as RefreshCwIcon } from '../icons/refresh-cw';
|
|
2121
2129
|
// Refrigerator aliases
|
|
2122
2130
|
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2123
|
-
// RefreshCwOff aliases
|
|
2124
|
-
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2125
2131
|
// Regex aliases
|
|
2126
2132
|
export { default as RegexIcon } from '../icons/regex';
|
|
2127
|
-
// Repeat1 aliases
|
|
2128
|
-
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2129
2133
|
// RemoveFormatting aliases
|
|
2130
2134
|
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2135
|
+
// Repeat1 aliases
|
|
2136
|
+
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2131
2137
|
// Repeat2 aliases
|
|
2132
2138
|
export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
2133
2139
|
// Repeat aliases
|
|
2134
2140
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2135
2141
|
// ReplaceAll aliases
|
|
2136
2142
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2137
|
-
// Replace aliases
|
|
2138
|
-
export { default as ReplaceIcon } from '../icons/replace';
|
|
2139
2143
|
// Reply aliases
|
|
2140
2144
|
export { default as ReplyIcon } from '../icons/reply';
|
|
2145
|
+
// Replace aliases
|
|
2146
|
+
export { default as ReplaceIcon } from '../icons/replace';
|
|
2141
2147
|
// ReplyAll aliases
|
|
2142
2148
|
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2143
2149
|
// Rewind aliases
|
|
2144
2150
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2145
|
-
// Rocket aliases
|
|
2146
|
-
export { default as RocketIcon } from '../icons/rocket';
|
|
2147
2151
|
// Ribbon aliases
|
|
2148
2152
|
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2153
|
+
// Rocket aliases
|
|
2154
|
+
export { default as RocketIcon } from '../icons/rocket';
|
|
2149
2155
|
// RockingChair aliases
|
|
2150
2156
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2151
|
-
// Rose aliases
|
|
2152
|
-
export { default as RoseIcon } from '../icons/rose';
|
|
2153
2157
|
// RollerCoaster aliases
|
|
2154
2158
|
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2159
|
+
// Rose aliases
|
|
2160
|
+
export { default as RoseIcon } from '../icons/rose';
|
|
2155
2161
|
// RotateCcwKey aliases
|
|
2156
2162
|
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2157
2163
|
// RotateCcwSquare aliases
|
|
@@ -2166,18 +2172,18 @@ export { default as RouteOffIcon } from '../icons/route-off';
|
|
|
2166
2172
|
export { default as RotateCwIcon } from '../icons/rotate-cw';
|
|
2167
2173
|
// Route aliases
|
|
2168
2174
|
export { default as RouteIcon } from '../icons/route';
|
|
2169
|
-
// Router aliases
|
|
2170
|
-
export { default as RouterIcon } from '../icons/router';
|
|
2171
2175
|
// Rows4 aliases
|
|
2172
2176
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2173
|
-
//
|
|
2174
|
-
export { default as
|
|
2177
|
+
// Router aliases
|
|
2178
|
+
export { default as RouterIcon } from '../icons/router';
|
|
2175
2179
|
// Rss aliases
|
|
2176
2180
|
export { default as RssIcon } from '../icons/rss';
|
|
2177
|
-
//
|
|
2178
|
-
export { default as
|
|
2181
|
+
// RulerDimensionLine aliases
|
|
2182
|
+
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2179
2183
|
// Ruler aliases
|
|
2180
2184
|
export { default as RulerIcon } from '../icons/ruler';
|
|
2185
|
+
// RussianRuble aliases
|
|
2186
|
+
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2181
2187
|
// Sailboat aliases
|
|
2182
2188
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2183
2189
|
// Salad aliases
|
|
@@ -2188,14 +2194,14 @@ export { default as SandwichIcon } from '../icons/sandwich';
|
|
|
2188
2194
|
export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
2189
2195
|
// Satellite aliases
|
|
2190
2196
|
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2191
|
-
// SaveOff aliases
|
|
2192
|
-
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2193
2197
|
// SaudiRiyal aliases
|
|
2194
2198
|
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2195
|
-
// Save aliases
|
|
2196
|
-
export { default as SaveIcon } from '../icons/save';
|
|
2197
2199
|
// SaveAll aliases
|
|
2198
2200
|
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2201
|
+
// SaveOff aliases
|
|
2202
|
+
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2203
|
+
// Save aliases
|
|
2204
|
+
export { default as SaveIcon } from '../icons/save';
|
|
2199
2205
|
// Scale aliases
|
|
2200
2206
|
export { default as ScaleIcon } from '../icons/scale';
|
|
2201
2207
|
// Scaling aliases
|
|
@@ -2206,28 +2212,28 @@ export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
|
2206
2212
|
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2207
2213
|
// ScanFace aliases
|
|
2208
2214
|
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2209
|
-
// ScanLine aliases
|
|
2210
|
-
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2211
2215
|
// ScanHeart aliases
|
|
2212
2216
|
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2217
|
+
// ScanLine aliases
|
|
2218
|
+
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2213
2219
|
// ScanQrCode aliases
|
|
2214
2220
|
export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
2215
|
-
// ScanText aliases
|
|
2216
|
-
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2217
2221
|
// ScanSearch aliases
|
|
2218
2222
|
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2223
|
+
// ScanText aliases
|
|
2224
|
+
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2219
2225
|
// Scan aliases
|
|
2220
2226
|
export { default as ScanIcon } from '../icons/scan';
|
|
2221
2227
|
// School aliases
|
|
2222
2228
|
export { default as SchoolIcon } from '../icons/school';
|
|
2223
2229
|
// ScissorsLineDashed aliases
|
|
2224
2230
|
export { default as ScissorsLineDashedIcon } from '../icons/scissors-line-dashed';
|
|
2225
|
-
// Scissors aliases
|
|
2226
|
-
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2227
2231
|
// Scooter aliases
|
|
2228
2232
|
export { default as ScooterIcon } from '../icons/scooter';
|
|
2229
2233
|
// ScreenShareOff aliases
|
|
2230
2234
|
export { default as ScreenShareOffIcon } from '../icons/screen-share-off';
|
|
2235
|
+
// Scissors aliases
|
|
2236
|
+
export { default as ScissorsIcon } from '../icons/scissors';
|
|
2231
2237
|
// ScreenShare aliases
|
|
2232
2238
|
export { default as ScreenShareIcon } from '../icons/screen-share';
|
|
2233
2239
|
// ScrollText aliases
|
|
@@ -2238,10 +2244,10 @@ export { default as ScrollIcon } from '../icons/scroll';
|
|
|
2238
2244
|
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2239
2245
|
// SearchCheck aliases
|
|
2240
2246
|
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2241
|
-
// SearchSlash aliases
|
|
2242
|
-
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2243
2247
|
// SearchCode aliases
|
|
2244
2248
|
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2249
|
+
// SearchSlash aliases
|
|
2250
|
+
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2245
2251
|
// SearchX aliases
|
|
2246
2252
|
export { default as SearchXIcon } from '../icons/search-x';
|
|
2247
2253
|
// Search aliases
|
|
@@ -2254,10 +2260,10 @@ export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
|
2254
2260
|
export { default as SendIcon } from '../icons/send';
|
|
2255
2261
|
// SeparatorHorizontal aliases
|
|
2256
2262
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2257
|
-
// ServerCog aliases
|
|
2258
|
-
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2259
2263
|
// SeparatorVertical aliases
|
|
2260
2264
|
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2265
|
+
// ServerCog aliases
|
|
2266
|
+
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2261
2267
|
// ServerCrash aliases
|
|
2262
2268
|
export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
2263
2269
|
// ServerOff aliases
|
|
@@ -2272,36 +2278,36 @@ export { default as SettingsIcon } from '../icons/settings';
|
|
|
2272
2278
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2273
2279
|
// Share2 aliases
|
|
2274
2280
|
export { default as Share2Icon } from '../icons/share-2';
|
|
2281
|
+
// Share aliases
|
|
2282
|
+
export { default as ShareIcon } from '../icons/share';
|
|
2275
2283
|
// Sheet aliases
|
|
2276
2284
|
export { default as SheetIcon } from '../icons/sheet';
|
|
2277
2285
|
// Shell aliases
|
|
2278
2286
|
export { default as ShellIcon } from '../icons/shell';
|
|
2279
2287
|
// ShieldAlert aliases
|
|
2280
2288
|
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2281
|
-
// Share aliases
|
|
2282
|
-
export { default as ShareIcon } from '../icons/share';
|
|
2283
2289
|
// ShieldBan aliases
|
|
2284
2290
|
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2285
|
-
// ShieldCheck aliases
|
|
2286
|
-
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2287
|
-
// ShieldHalf aliases
|
|
2288
|
-
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2289
2291
|
// ShieldEllipsis aliases
|
|
2290
2292
|
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2293
|
+
// ShieldCheck aliases
|
|
2294
|
+
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2291
2295
|
// ShieldMinus aliases
|
|
2292
2296
|
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2297
|
+
// ShieldHalf aliases
|
|
2298
|
+
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2293
2299
|
// ShieldOff aliases
|
|
2294
2300
|
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2301
|
+
// ShieldPlus aliases
|
|
2302
|
+
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2295
2303
|
// ShieldUser aliases
|
|
2296
2304
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2297
|
-
// ShipWheel aliases
|
|
2298
|
-
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2299
2305
|
// Shield aliases
|
|
2300
2306
|
export { default as ShieldIcon } from '../icons/shield';
|
|
2301
|
-
// ShieldPlus aliases
|
|
2302
|
-
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2303
2307
|
// Ship aliases
|
|
2304
2308
|
export { default as ShipIcon } from '../icons/ship';
|
|
2309
|
+
// ShipWheel aliases
|
|
2310
|
+
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2305
2311
|
// Shirt aliases
|
|
2306
2312
|
export { default as ShirtIcon } from '../icons/shirt';
|
|
2307
2313
|
// ShoppingBag aliases
|
|
@@ -2324,10 +2330,10 @@ export { default as ShrinkIcon } from '../icons/shrink';
|
|
|
2324
2330
|
export { default as ShrubIcon } from '../icons/shrub';
|
|
2325
2331
|
// Shuffle aliases
|
|
2326
2332
|
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2327
|
-
// Sigma aliases
|
|
2328
|
-
export { default as SigmaIcon } from '../icons/sigma';
|
|
2329
2333
|
// SignalHigh aliases
|
|
2330
2334
|
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2335
|
+
// Sigma aliases
|
|
2336
|
+
export { default as SigmaIcon } from '../icons/sigma';
|
|
2331
2337
|
// SignalLow aliases
|
|
2332
2338
|
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2333
2339
|
// SignalMedium aliases
|
|
@@ -2344,16 +2350,16 @@ export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
|
2344
2350
|
export { default as SignpostIcon } from '../icons/signpost';
|
|
2345
2351
|
// Siren aliases
|
|
2346
2352
|
export { default as SirenIcon } from '../icons/siren';
|
|
2347
|
-
// SkipBack aliases
|
|
2348
|
-
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2349
2353
|
// SkipForward aliases
|
|
2350
2354
|
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2355
|
+
// SkipBack aliases
|
|
2356
|
+
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2351
2357
|
// Skull aliases
|
|
2352
2358
|
export { default as SkullIcon } from '../icons/skull';
|
|
2353
|
-
// Slash aliases
|
|
2354
|
-
export { default as SlashIcon } from '../icons/slash';
|
|
2355
2359
|
// Slack aliases
|
|
2356
2360
|
export { default as SlackIcon } from '../icons/slack';
|
|
2361
|
+
// Slash aliases
|
|
2362
|
+
export { default as SlashIcon } from '../icons/slash';
|
|
2357
2363
|
// Slice aliases
|
|
2358
2364
|
export { default as SliceIcon } from '../icons/slice';
|
|
2359
2365
|
// SlidersHorizontal aliases
|
|
@@ -2370,96 +2376,96 @@ export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
|
2370
2376
|
export { default as SmileIcon } from '../icons/smile';
|
|
2371
2377
|
// Snail aliases
|
|
2372
2378
|
export { default as SnailIcon } from '../icons/snail';
|
|
2373
|
-
// SoapDispenserDroplet aliases
|
|
2374
|
-
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2375
2379
|
// Snowflake aliases
|
|
2376
2380
|
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2381
|
+
// SoapDispenserDroplet aliases
|
|
2382
|
+
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2377
2383
|
// Sofa aliases
|
|
2378
2384
|
export { default as SofaIcon } from '../icons/sofa';
|
|
2379
|
-
// Soup aliases
|
|
2380
|
-
export { default as SoupIcon } from '../icons/soup';
|
|
2381
2385
|
// SolarPanel aliases
|
|
2382
2386
|
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2387
|
+
// Sparkle aliases
|
|
2388
|
+
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2389
|
+
// Soup aliases
|
|
2390
|
+
export { default as SoupIcon } from '../icons/soup';
|
|
2383
2391
|
// Space aliases
|
|
2384
2392
|
export { default as SpaceIcon } from '../icons/space';
|
|
2385
2393
|
// Spade aliases
|
|
2386
2394
|
export { default as SpadeIcon } from '../icons/spade';
|
|
2387
|
-
// Sparkle aliases
|
|
2388
|
-
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2389
2395
|
// Speaker aliases
|
|
2390
2396
|
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2391
2397
|
// Speech aliases
|
|
2392
2398
|
export { default as SpeechIcon } from '../icons/speech';
|
|
2399
|
+
// SpellCheck aliases
|
|
2400
|
+
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2393
2401
|
// SpellCheck2 aliases
|
|
2394
2402
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2395
2403
|
// SplinePointer aliases
|
|
2396
2404
|
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2397
|
-
// SpellCheck aliases
|
|
2398
|
-
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2399
2405
|
// Spline aliases
|
|
2400
2406
|
export { default as SplineIcon } from '../icons/spline';
|
|
2407
|
+
// Split aliases
|
|
2408
|
+
export { default as SplitIcon } from '../icons/split';
|
|
2401
2409
|
// Spool aliases
|
|
2402
2410
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2403
2411
|
// Spotlight aliases
|
|
2404
2412
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2405
|
-
// Split aliases
|
|
2406
|
-
export { default as SplitIcon } from '../icons/split';
|
|
2407
2413
|
// SprayCan aliases
|
|
2408
2414
|
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2409
|
-
// Sprout aliases
|
|
2410
|
-
export { default as SproutIcon } from '../icons/sprout';
|
|
2411
2415
|
// SquareDashedBottomCode aliases
|
|
2412
2416
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2413
|
-
//
|
|
2414
|
-
export { default as
|
|
2415
|
-
// SquareRoundCorner aliases
|
|
2416
|
-
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2417
|
+
// Sprout aliases
|
|
2418
|
+
export { default as SproutIcon } from '../icons/sprout';
|
|
2417
2419
|
// SquareDashedTopSolid aliases
|
|
2418
2420
|
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2421
|
+
// SquareDashedBottom aliases
|
|
2422
|
+
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2419
2423
|
// SquarePause aliases
|
|
2420
2424
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2421
2425
|
// SquareRadical aliases
|
|
2422
2426
|
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2427
|
+
// SquareRoundCorner aliases
|
|
2428
|
+
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2423
2429
|
// SquareSquare aliases
|
|
2424
2430
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2425
|
-
// SquareStar aliases
|
|
2426
|
-
export { default as SquareStarIcon } from '../icons/square-star';
|
|
2427
|
-
// SquaresExclude aliases
|
|
2428
|
-
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2429
2431
|
// SquareStack aliases
|
|
2430
2432
|
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2433
|
+
// SquareStar aliases
|
|
2434
|
+
export { default as SquareStarIcon } from '../icons/square-star';
|
|
2431
2435
|
// SquareStop aliases
|
|
2432
2436
|
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2433
2437
|
// Square aliases
|
|
2434
2438
|
export { default as SquareIcon } from '../icons/square';
|
|
2435
|
-
//
|
|
2436
|
-
export { default as
|
|
2439
|
+
// SquaresExclude aliases
|
|
2440
|
+
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2437
2441
|
// SquaresSubtract aliases
|
|
2438
2442
|
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2443
|
+
// SquaresIntersect aliases
|
|
2444
|
+
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2439
2445
|
// SquaresUnite aliases
|
|
2440
2446
|
export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
2441
2447
|
// SquircleDashed aliases
|
|
2442
2448
|
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2449
|
+
// Squirrel aliases
|
|
2450
|
+
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2451
|
+
// Stamp aliases
|
|
2452
|
+
export { default as StampIcon } from '../icons/stamp';
|
|
2443
2453
|
// Squircle aliases
|
|
2444
2454
|
export { default as SquircleIcon } from '../icons/squircle';
|
|
2445
2455
|
// StarHalf aliases
|
|
2446
2456
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2447
|
-
// Stamp aliases
|
|
2448
|
-
export { default as StampIcon } from '../icons/stamp';
|
|
2449
|
-
// Squirrel aliases
|
|
2450
|
-
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2451
|
-
// Star aliases
|
|
2452
|
-
export { default as StarIcon } from '../icons/star';
|
|
2453
|
-
// StepBack aliases
|
|
2454
|
-
export { default as StepBackIcon } from '../icons/step-back';
|
|
2455
2457
|
// StarOff aliases
|
|
2456
2458
|
export { default as StarOffIcon } from '../icons/star-off';
|
|
2459
|
+
// StepBack aliases
|
|
2460
|
+
export { default as StepBackIcon } from '../icons/step-back';
|
|
2457
2461
|
// StepForward aliases
|
|
2458
2462
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2459
|
-
//
|
|
2460
|
-
export { default as
|
|
2463
|
+
// Star aliases
|
|
2464
|
+
export { default as StarIcon } from '../icons/star';
|
|
2461
2465
|
// Sticker aliases
|
|
2462
2466
|
export { default as StickerIcon } from '../icons/sticker';
|
|
2467
|
+
// Stethoscope aliases
|
|
2468
|
+
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2463
2469
|
// StickyNote aliases
|
|
2464
2470
|
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2465
2471
|
// Stone aliases
|
|
@@ -2468,10 +2474,10 @@ export { default as StoneIcon } from '../icons/stone';
|
|
|
2468
2474
|
export { default as StoreIcon } from '../icons/store';
|
|
2469
2475
|
// StretchHorizontal aliases
|
|
2470
2476
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2471
|
-
// Strikethrough aliases
|
|
2472
|
-
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2473
2477
|
// StretchVertical aliases
|
|
2474
2478
|
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2479
|
+
// Strikethrough aliases
|
|
2480
|
+
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2475
2481
|
// Subscript aliases
|
|
2476
2482
|
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2477
2483
|
// SunDim aliases
|
|
@@ -2482,20 +2488,20 @@ export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
|
2482
2488
|
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2483
2489
|
// SunSnow aliases
|
|
2484
2490
|
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2485
|
-
// Sunrise aliases
|
|
2486
|
-
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2487
2491
|
// Sun aliases
|
|
2488
2492
|
export { default as SunIcon } from '../icons/sun';
|
|
2493
|
+
// Sunrise aliases
|
|
2494
|
+
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2489
2495
|
// Sunset aliases
|
|
2490
2496
|
export { default as SunsetIcon } from '../icons/sunset';
|
|
2491
|
-
// SwatchBook aliases
|
|
2492
|
-
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2493
2497
|
// Superscript aliases
|
|
2494
2498
|
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2495
|
-
//
|
|
2496
|
-
export { default as
|
|
2499
|
+
// SwatchBook aliases
|
|
2500
|
+
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2497
2501
|
// SwissFranc aliases
|
|
2498
2502
|
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2503
|
+
// SwitchCamera aliases
|
|
2504
|
+
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2499
2505
|
// Sword aliases
|
|
2500
2506
|
export { default as SwordIcon } from '../icons/sword';
|
|
2501
2507
|
// Swords aliases
|
|
@@ -2506,38 +2512,38 @@ export { default as SyringeIcon } from '../icons/syringe';
|
|
|
2506
2512
|
export { default as Table2Icon } from '../icons/table-2';
|
|
2507
2513
|
// TableCellsMerge aliases
|
|
2508
2514
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2509
|
-
// TableColumnsSplit aliases
|
|
2510
|
-
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2511
2515
|
// TableCellsSplit aliases
|
|
2512
2516
|
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2517
|
+
// TableColumnsSplit aliases
|
|
2518
|
+
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2513
2519
|
// TableProperties aliases
|
|
2514
2520
|
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2515
2521
|
// TableOfContents aliases
|
|
2516
2522
|
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2517
2523
|
// TableRowsSplit aliases
|
|
2518
2524
|
export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
2519
|
-
// Table aliases
|
|
2520
|
-
export { default as TableIcon } from '../icons/table';
|
|
2521
2525
|
// TabletSmartphone aliases
|
|
2522
2526
|
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2527
|
+
// Table aliases
|
|
2528
|
+
export { default as TableIcon } from '../icons/table';
|
|
2523
2529
|
// Tablet aliases
|
|
2524
2530
|
export { default as TabletIcon } from '../icons/tablet';
|
|
2525
|
-
// Tag aliases
|
|
2526
|
-
export { default as TagIcon } from '../icons/tag';
|
|
2527
2531
|
// Tablets aliases
|
|
2528
2532
|
export { default as TabletsIcon } from '../icons/tablets';
|
|
2533
|
+
// Tag aliases
|
|
2534
|
+
export { default as TagIcon } from '../icons/tag';
|
|
2529
2535
|
// Tags aliases
|
|
2530
2536
|
export { default as TagsIcon } from '../icons/tags';
|
|
2531
2537
|
// Tally1 aliases
|
|
2532
2538
|
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2533
|
-
// Tally2 aliases
|
|
2534
|
-
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2535
2539
|
// Tally3 aliases
|
|
2536
2540
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2537
|
-
//
|
|
2538
|
-
export { default as
|
|
2541
|
+
// Tally2 aliases
|
|
2542
|
+
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2539
2543
|
// Tally4 aliases
|
|
2540
2544
|
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2545
|
+
// Tally5 aliases
|
|
2546
|
+
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2541
2547
|
// Tangent aliases
|
|
2542
2548
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2543
2549
|
// Target aliases
|
|
@@ -2546,26 +2552,26 @@ export { default as TargetIcon } from '../icons/target';
|
|
|
2546
2552
|
export { default as TelescopeIcon } from '../icons/telescope';
|
|
2547
2553
|
// TentTree aliases
|
|
2548
2554
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2555
|
+
// Terminal aliases
|
|
2556
|
+
export { default as TerminalIcon } from '../icons/terminal';
|
|
2549
2557
|
// Tent aliases
|
|
2550
2558
|
export { default as TentIcon } from '../icons/tent';
|
|
2551
2559
|
// TestTube aliases
|
|
2552
2560
|
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2553
2561
|
// TestTubes aliases
|
|
2554
2562
|
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2555
|
-
// Terminal aliases
|
|
2556
|
-
export { default as TerminalIcon } from '../icons/terminal';
|
|
2557
2563
|
// TextCursorInput aliases
|
|
2558
2564
|
export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
2559
2565
|
// TextCursor aliases
|
|
2560
2566
|
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2561
2567
|
// TextQuote aliases
|
|
2562
2568
|
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2569
|
+
// TextSearch aliases
|
|
2570
|
+
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2563
2571
|
// Theater aliases
|
|
2564
2572
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2565
2573
|
// ThermometerSnowflake aliases
|
|
2566
2574
|
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2567
|
-
// TextSearch aliases
|
|
2568
|
-
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2569
2575
|
// ThermometerSun aliases
|
|
2570
2576
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2571
2577
|
// Thermometer aliases
|
|
@@ -2576,52 +2582,52 @@ export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
|
2576
2582
|
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2577
2583
|
// TicketCheck aliases
|
|
2578
2584
|
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2579
|
-
// TicketPercent aliases
|
|
2580
|
-
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2581
|
-
// TicketMinus aliases
|
|
2582
|
-
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2583
2585
|
// TicketPlus aliases
|
|
2584
2586
|
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2587
|
+
// TicketMinus aliases
|
|
2588
|
+
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2589
|
+
// TicketPercent aliases
|
|
2590
|
+
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2585
2591
|
// TicketSlash aliases
|
|
2586
2592
|
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2587
2593
|
// TicketX aliases
|
|
2588
2594
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2589
|
-
// Ticket aliases
|
|
2590
|
-
export { default as TicketIcon } from '../icons/ticket';
|
|
2591
2595
|
// TicketsPlane aliases
|
|
2592
2596
|
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2597
|
+
// Ticket aliases
|
|
2598
|
+
export { default as TicketIcon } from '../icons/ticket';
|
|
2593
2599
|
// Tickets aliases
|
|
2594
2600
|
export { default as TicketsIcon } from '../icons/tickets';
|
|
2595
|
-
// TimerReset aliases
|
|
2596
|
-
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2597
|
-
// Timer aliases
|
|
2598
|
-
export { default as TimerIcon } from '../icons/timer';
|
|
2599
2601
|
// TimerOff aliases
|
|
2600
2602
|
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2603
|
+
// Timer aliases
|
|
2604
|
+
export { default as TimerIcon } from '../icons/timer';
|
|
2605
|
+
// TimerReset aliases
|
|
2606
|
+
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2601
2607
|
// ToggleLeft aliases
|
|
2602
2608
|
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2603
|
-
// Toilet aliases
|
|
2604
|
-
export { default as ToiletIcon } from '../icons/toilet';
|
|
2605
2609
|
// ToggleRight aliases
|
|
2606
2610
|
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2607
|
-
//
|
|
2608
|
-
export { default as
|
|
2609
|
-
// Toolbox aliases
|
|
2610
|
-
export { default as ToolboxIcon } from '../icons/toolbox';
|
|
2611
|
+
// Toilet aliases
|
|
2612
|
+
export { default as ToiletIcon } from '../icons/toilet';
|
|
2611
2613
|
// ToolCase aliases
|
|
2612
2614
|
export { default as ToolCaseIcon } from '../icons/tool-case';
|
|
2615
|
+
// Toolbox aliases
|
|
2616
|
+
export { default as ToolboxIcon } from '../icons/toolbox';
|
|
2617
|
+
// Tornado aliases
|
|
2618
|
+
export { default as TornadoIcon } from '../icons/tornado';
|
|
2613
2619
|
// Torus aliases
|
|
2614
2620
|
export { default as TorusIcon } from '../icons/torus';
|
|
2615
2621
|
// TouchpadOff aliases
|
|
2616
2622
|
export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
2617
2623
|
// Touchpad aliases
|
|
2618
2624
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2625
|
+
// TowerControl aliases
|
|
2626
|
+
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2619
2627
|
// ToyBrick aliases
|
|
2620
2628
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2621
2629
|
// Tractor aliases
|
|
2622
2630
|
export { default as TractorIcon } from '../icons/tractor';
|
|
2623
|
-
// TowerControl aliases
|
|
2624
|
-
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2625
2631
|
// TrafficCone aliases
|
|
2626
2632
|
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2627
2633
|
// TrainFrontTunnel aliases
|
|
@@ -2634,140 +2640,144 @@ export { default as TrainTrackIcon } from '../icons/train-track';
|
|
|
2634
2640
|
export { default as TransgenderIcon } from '../icons/transgender';
|
|
2635
2641
|
// Trash2 aliases
|
|
2636
2642
|
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2637
|
-
// Trash aliases
|
|
2638
|
-
export { default as TrashIcon } from '../icons/trash';
|
|
2639
2643
|
// TreeDeciduous aliases
|
|
2640
2644
|
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2645
|
+
// Trash aliases
|
|
2646
|
+
export { default as TrashIcon } from '../icons/trash';
|
|
2647
|
+
// Trees aliases
|
|
2648
|
+
export { default as TreesIcon } from '../icons/trees';
|
|
2641
2649
|
// TreePine aliases
|
|
2642
2650
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2643
2651
|
// Trello aliases
|
|
2644
2652
|
export { default as TrelloIcon } from '../icons/trello';
|
|
2645
|
-
// Trees aliases
|
|
2646
|
-
export { default as TreesIcon } from '../icons/trees';
|
|
2647
2653
|
// TrendingDown aliases
|
|
2648
2654
|
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2655
|
+
// TrendingUpDown aliases
|
|
2656
|
+
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2649
2657
|
// TriangleDashed aliases
|
|
2650
2658
|
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2651
2659
|
// TrendingUp aliases
|
|
2652
2660
|
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2653
|
-
//
|
|
2654
|
-
export { default as
|
|
2661
|
+
// Triangle aliases
|
|
2662
|
+
export { default as TriangleIcon } from '../icons/triangle';
|
|
2655
2663
|
// TriangleRight aliases
|
|
2656
2664
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2657
2665
|
// Trophy aliases
|
|
2658
2666
|
export { default as TrophyIcon } from '../icons/trophy';
|
|
2659
|
-
// Triangle aliases
|
|
2660
|
-
export { default as TriangleIcon } from '../icons/triangle';
|
|
2661
2667
|
// TruckElectric aliases
|
|
2662
2668
|
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2663
|
-
// Truck aliases
|
|
2664
|
-
export { default as TruckIcon } from '../icons/truck';
|
|
2665
2669
|
// TurkishLira aliases
|
|
2666
2670
|
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2671
|
+
// Truck aliases
|
|
2672
|
+
export { default as TruckIcon } from '../icons/truck';
|
|
2667
2673
|
// Turntable aliases
|
|
2668
2674
|
export { default as TurntableIcon } from '../icons/turntable';
|
|
2669
2675
|
// Turtle aliases
|
|
2670
2676
|
export { default as TurtleIcon } from '../icons/turtle';
|
|
2671
|
-
// Tv aliases
|
|
2672
|
-
export { default as TvIcon } from '../icons/tv';
|
|
2673
|
-
// Twitter aliases
|
|
2674
|
-
export { default as TwitterIcon } from '../icons/twitter';
|
|
2675
2677
|
// TvMinimalPlay aliases
|
|
2676
2678
|
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2679
|
+
// Tv aliases
|
|
2680
|
+
export { default as TvIcon } from '../icons/tv';
|
|
2677
2681
|
// Twitch aliases
|
|
2678
2682
|
export { default as TwitchIcon } from '../icons/twitch';
|
|
2679
2683
|
// TypeOutline aliases
|
|
2680
2684
|
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2681
|
-
//
|
|
2682
|
-
export { default as
|
|
2685
|
+
// Twitter aliases
|
|
2686
|
+
export { default as TwitterIcon } from '../icons/twitter';
|
|
2683
2687
|
// UmbrellaOff aliases
|
|
2684
2688
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2689
|
+
// Type aliases
|
|
2690
|
+
export { default as TypeIcon } from '../icons/type';
|
|
2685
2691
|
// Umbrella aliases
|
|
2686
2692
|
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2687
|
-
// Undo2 aliases
|
|
2688
|
-
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2689
2693
|
// Underline aliases
|
|
2690
2694
|
export { default as UnderlineIcon } from '../icons/underline';
|
|
2691
|
-
//
|
|
2692
|
-
export { default as
|
|
2695
|
+
// Undo2 aliases
|
|
2696
|
+
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2693
2697
|
// UndoDot aliases
|
|
2694
2698
|
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2699
|
+
// Undo aliases
|
|
2700
|
+
export { default as UndoIcon } from '../icons/undo';
|
|
2695
2701
|
// UnfoldHorizontal aliases
|
|
2696
2702
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2697
|
-
// Ungroup aliases
|
|
2698
|
-
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2699
|
-
// Unlink2 aliases
|
|
2700
|
-
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2701
2703
|
// UnfoldVertical aliases
|
|
2702
2704
|
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2705
|
+
// Unlink2 aliases
|
|
2706
|
+
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2707
|
+
// Ungroup aliases
|
|
2708
|
+
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2703
2709
|
// Unlink aliases
|
|
2704
2710
|
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2705
2711
|
// Unplug aliases
|
|
2706
2712
|
export { default as UnplugIcon } from '../icons/unplug';
|
|
2707
2713
|
// Upload aliases
|
|
2708
2714
|
export { default as UploadIcon } from '../icons/upload';
|
|
2709
|
-
// UserCheck aliases
|
|
2710
|
-
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2711
2715
|
// Usb aliases
|
|
2712
2716
|
export { default as UsbIcon } from '../icons/usb';
|
|
2713
|
-
// UserLock aliases
|
|
2714
|
-
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2715
2717
|
// UserCog aliases
|
|
2716
2718
|
export { default as UserCogIcon } from '../icons/user-cog';
|
|
2719
|
+
// UserCheck aliases
|
|
2720
|
+
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2721
|
+
// UserKey aliases
|
|
2722
|
+
export { default as UserKeyIcon } from '../icons/user-key';
|
|
2723
|
+
// UserLock aliases
|
|
2724
|
+
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2717
2725
|
// UserMinus aliases
|
|
2718
2726
|
export { default as UserMinusIcon } from '../icons/user-minus';
|
|
2719
2727
|
// UserPen aliases
|
|
2720
2728
|
export { default as UserPenIcon } from '../icons/user-pen';
|
|
2721
2729
|
// UserPlus aliases
|
|
2722
2730
|
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2731
|
+
// UserRoundKey aliases
|
|
2732
|
+
export { default as UserRoundKeyIcon } from '../icons/user-round-key';
|
|
2723
2733
|
// UserRoundPen aliases
|
|
2724
2734
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2725
|
-
// UserSearch aliases
|
|
2726
|
-
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2727
2735
|
// UserRoundSearch aliases
|
|
2728
2736
|
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2737
|
+
// UserSearch aliases
|
|
2738
|
+
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2729
2739
|
// UserStar aliases
|
|
2730
2740
|
export { default as UserStarIcon } from '../icons/user-star';
|
|
2731
|
-
// UserX aliases
|
|
2732
|
-
export { default as UserXIcon } from '../icons/user-x';
|
|
2733
2741
|
// User aliases
|
|
2734
2742
|
export { default as UserIcon } from '../icons/user';
|
|
2743
|
+
// UserX aliases
|
|
2744
|
+
export { default as UserXIcon } from '../icons/user-x';
|
|
2735
2745
|
// Users aliases
|
|
2736
2746
|
export { default as UsersIcon } from '../icons/users';
|
|
2737
2747
|
// UtilityPole aliases
|
|
2738
2748
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2749
|
+
// Van aliases
|
|
2750
|
+
export { default as VanIcon } from '../icons/van';
|
|
2739
2751
|
// Variable aliases
|
|
2740
2752
|
export { default as VariableIcon } from '../icons/variable';
|
|
2741
2753
|
// Vault aliases
|
|
2742
2754
|
export { default as VaultIcon } from '../icons/vault';
|
|
2743
|
-
// Van aliases
|
|
2744
|
-
export { default as VanIcon } from '../icons/van';
|
|
2745
|
-
// Vegan aliases
|
|
2746
|
-
export { default as VeganIcon } from '../icons/vegan';
|
|
2747
2755
|
// VectorSquare aliases
|
|
2748
2756
|
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2757
|
+
// Vegan aliases
|
|
2758
|
+
export { default as VeganIcon } from '../icons/vegan';
|
|
2759
|
+
// VenusAndMars aliases
|
|
2760
|
+
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2749
2761
|
// VenetianMask aliases
|
|
2750
2762
|
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2751
2763
|
// Venus aliases
|
|
2752
2764
|
export { default as VenusIcon } from '../icons/venus';
|
|
2753
|
-
// VenusAndMars aliases
|
|
2754
|
-
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2755
|
-
// Vibrate aliases
|
|
2756
|
-
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2757
2765
|
// VibrateOff aliases
|
|
2758
2766
|
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2759
2767
|
// VideoOff aliases
|
|
2760
2768
|
export { default as VideoOffIcon } from '../icons/video-off';
|
|
2769
|
+
// Vibrate aliases
|
|
2770
|
+
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2771
|
+
// Videotape aliases
|
|
2772
|
+
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2761
2773
|
// Video aliases
|
|
2762
2774
|
export { default as VideoIcon } from '../icons/video';
|
|
2763
2775
|
// View aliases
|
|
2764
2776
|
export { default as ViewIcon } from '../icons/view';
|
|
2765
|
-
// Volleyball aliases
|
|
2766
|
-
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2767
|
-
// Videotape aliases
|
|
2768
|
-
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2769
2777
|
// Voicemail aliases
|
|
2770
2778
|
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2779
|
+
// Volleyball aliases
|
|
2780
|
+
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2771
2781
|
// Volume1 aliases
|
|
2772
2782
|
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2773
2783
|
// Volume2 aliases
|
|
@@ -2796,34 +2806,34 @@ export { default as WarehouseIcon } from '../icons/warehouse';
|
|
|
2796
2806
|
export { default as WatchIcon } from '../icons/watch';
|
|
2797
2807
|
// WavesArrowDown aliases
|
|
2798
2808
|
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2809
|
+
// Waves aliases
|
|
2810
|
+
export { default as WavesIcon } from '../icons/waves';
|
|
2799
2811
|
// WavesArrowUp aliases
|
|
2800
2812
|
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2801
2813
|
// WavesLadder aliases
|
|
2802
2814
|
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2803
|
-
// Waves aliases
|
|
2804
|
-
export { default as WavesIcon } from '../icons/waves';
|
|
2805
|
-
// Webcam aliases
|
|
2806
|
-
export { default as WebcamIcon } from '../icons/webcam';
|
|
2807
2815
|
// Waypoints aliases
|
|
2808
2816
|
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2817
|
+
// Webcam aliases
|
|
2818
|
+
export { default as WebcamIcon } from '../icons/webcam';
|
|
2809
2819
|
// WebhookOff aliases
|
|
2810
2820
|
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2811
|
-
// Webhook aliases
|
|
2812
|
-
export { default as WebhookIcon } from '../icons/webhook';
|
|
2813
2821
|
// WeightTilde aliases
|
|
2814
2822
|
export { default as WeightTildeIcon } from '../icons/weight-tilde';
|
|
2815
|
-
//
|
|
2816
|
-
export { default as
|
|
2823
|
+
// Webhook aliases
|
|
2824
|
+
export { default as WebhookIcon } from '../icons/webhook';
|
|
2817
2825
|
// WheatOff aliases
|
|
2818
2826
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2827
|
+
// Weight aliases
|
|
2828
|
+
export { default as WeightIcon } from '../icons/weight';
|
|
2819
2829
|
// Wheat aliases
|
|
2820
2830
|
export { default as WheatIcon } from '../icons/wheat';
|
|
2821
|
-
// WifiCog aliases
|
|
2822
|
-
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2823
2831
|
// WholeWord aliases
|
|
2824
2832
|
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2825
2833
|
// WifiHigh aliases
|
|
2826
2834
|
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2835
|
+
// WifiCog aliases
|
|
2836
|
+
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2827
2837
|
// WifiLow aliases
|
|
2828
2838
|
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2829
2839
|
// WifiOff aliases
|
|
@@ -2834,14 +2844,12 @@ export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
|
2834
2844
|
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2835
2845
|
// WifiZero aliases
|
|
2836
2846
|
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2837
|
-
// Wifi aliases
|
|
2838
|
-
export { default as WifiIcon } from '../icons/wifi';
|
|
2839
2847
|
// WindArrowDown aliases
|
|
2840
2848
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2849
|
+
// Wifi aliases
|
|
2850
|
+
export { default as WifiIcon } from '../icons/wifi';
|
|
2841
2851
|
// Wind aliases
|
|
2842
2852
|
export { default as WindIcon } from '../icons/wind';
|
|
2843
|
-
// WineOff aliases
|
|
2844
|
-
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2845
2853
|
// Wine aliases
|
|
2846
2854
|
export { default as WineIcon } from '../icons/wine';
|
|
2847
2855
|
// Workflow aliases
|
|
@@ -2850,18 +2858,20 @@ export { default as WorkflowIcon } from '../icons/workflow';
|
|
|
2850
2858
|
export { default as WormIcon } from '../icons/worm';
|
|
2851
2859
|
// Wrench aliases
|
|
2852
2860
|
export { default as WrenchIcon } from '../icons/wrench';
|
|
2861
|
+
// WineOff aliases
|
|
2862
|
+
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2853
2863
|
// X aliases
|
|
2854
2864
|
export { default as XIcon } from '../icons/x';
|
|
2855
|
-
// Youtube aliases
|
|
2856
|
-
export { default as YoutubeIcon } from '../icons/youtube';
|
|
2857
2865
|
// ZapOff aliases
|
|
2858
2866
|
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2859
|
-
//
|
|
2860
|
-
export { default as
|
|
2867
|
+
// Youtube aliases
|
|
2868
|
+
export { default as YoutubeIcon } from '../icons/youtube';
|
|
2861
2869
|
// ZoomIn aliases
|
|
2862
2870
|
export { default as ZoomInIcon } from '../icons/zoom-in';
|
|
2863
2871
|
// ZoomOut aliases
|
|
2864
2872
|
export { default as ZoomOutIcon } from '../icons/zoom-out';
|
|
2873
|
+
// Zap aliases
|
|
2874
|
+
export { default as ZapIcon } from '../icons/zap';
|
|
2865
2875
|
// ArrowDown01 aliases
|
|
2866
2876
|
export { default as ArrowDown01Icon } from '../icons/arrow-down-0-1';
|
|
2867
2877
|
// ArrowDown10 aliases
|
|
@@ -2888,18 +2898,18 @@ export {
|
|
|
2888
2898
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
|
|
2889
2899
|
default as AlarmPlusIcon
|
|
2890
2900
|
} from '../icons/alarm-clock-plus';
|
|
2891
|
-
// ArrowDownAZ aliases
|
|
2892
|
-
export { default as ArrowDownAZIcon } from '../icons/arrow-down-a-z';
|
|
2893
|
-
export {
|
|
2894
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
2895
|
-
default as ArrowDownAzIcon
|
|
2896
|
-
} from '../icons/arrow-down-a-z';
|
|
2897
2901
|
// ArrowDownWideNarrow aliases
|
|
2898
2902
|
export { default as ArrowDownWideNarrowIcon } from '../icons/arrow-down-wide-narrow';
|
|
2899
2903
|
export {
|
|
2900
2904
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
2901
2905
|
default as SortDescIcon
|
|
2902
2906
|
} from '../icons/arrow-down-wide-narrow';
|
|
2907
|
+
// ArrowDownAZ aliases
|
|
2908
|
+
export { default as ArrowDownAZIcon } from '../icons/arrow-down-a-z';
|
|
2909
|
+
export {
|
|
2910
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
2911
|
+
default as ArrowDownAzIcon
|
|
2912
|
+
} from '../icons/arrow-down-a-z';
|
|
2903
2913
|
// ArrowDownZA aliases
|
|
2904
2914
|
export { default as ArrowDownZAIcon } from '../icons/arrow-down-z-a';
|
|
2905
2915
|
export {
|
|
@@ -2924,6 +2934,12 @@ export {
|
|
|
2924
2934
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
2925
2935
|
default as ArrowUpZaIcon
|
|
2926
2936
|
} from '../icons/arrow-up-z-a';
|
|
2937
|
+
// Axis3d aliases
|
|
2938
|
+
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2939
|
+
export {
|
|
2940
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
|
|
2941
|
+
default as Axis3DIcon
|
|
2942
|
+
} from '../icons/axis-3d';
|
|
2927
2943
|
// BadgeCheck aliases
|
|
2928
2944
|
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
2929
2945
|
export {
|
|
@@ -2936,24 +2952,18 @@ export {
|
|
|
2936
2952
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. This alias will be removed in v1.0 */
|
|
2937
2953
|
default as BadgeHelpIcon
|
|
2938
2954
|
} from '../icons/badge-question-mark';
|
|
2939
|
-
//
|
|
2940
|
-
export { default as
|
|
2955
|
+
// BetweenHorizontalStart aliases
|
|
2956
|
+
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
2941
2957
|
export {
|
|
2942
|
-
/** @deprecated
|
|
2943
|
-
default as
|
|
2944
|
-
} from '../icons/
|
|
2958
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
2959
|
+
default as BetweenHorizonalStartIcon
|
|
2960
|
+
} from '../icons/between-horizontal-start';
|
|
2945
2961
|
// BetweenHorizontalEnd aliases
|
|
2946
2962
|
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
2947
2963
|
export {
|
|
2948
2964
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
2949
2965
|
default as BetweenHorizonalEndIcon
|
|
2950
2966
|
} from '../icons/between-horizontal-end';
|
|
2951
|
-
// BetweenHorizontalStart aliases
|
|
2952
|
-
export { default as BetweenHorizontalStartIcon } from '../icons/between-horizontal-start';
|
|
2953
|
-
export {
|
|
2954
|
-
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
2955
|
-
default as BetweenHorizonalStartIcon
|
|
2956
|
-
} from '../icons/between-horizontal-start';
|
|
2957
2967
|
// BookDashed aliases
|
|
2958
2968
|
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
2959
2969
|
export {
|
|
@@ -2966,18 +2976,18 @@ export {
|
|
|
2966
2976
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. This alias will be removed in v1.0 */
|
|
2967
2977
|
default as CurlyBracesIcon
|
|
2968
2978
|
} from '../icons/braces';
|
|
2969
|
-
// ChartArea aliases
|
|
2970
|
-
export { default as ChartAreaIcon } from '../icons/chart-area';
|
|
2971
|
-
export {
|
|
2972
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
2973
|
-
default as AreaChartIcon
|
|
2974
|
-
} from '../icons/chart-area';
|
|
2975
2979
|
// Captions aliases
|
|
2976
2980
|
export { default as CaptionsIcon } from '../icons/captions';
|
|
2977
2981
|
export {
|
|
2978
2982
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. This alias will be removed in v1.0 */
|
|
2979
2983
|
default as SubtitlesIcon
|
|
2980
2984
|
} from '../icons/captions';
|
|
2985
|
+
// ChartArea aliases
|
|
2986
|
+
export { default as ChartAreaIcon } from '../icons/chart-area';
|
|
2987
|
+
export {
|
|
2988
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
2989
|
+
default as AreaChartIcon
|
|
2990
|
+
} from '../icons/chart-area';
|
|
2981
2991
|
// ChartBarBig aliases
|
|
2982
2992
|
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
2983
2993
|
export {
|
|
@@ -3008,30 +3018,30 @@ export {
|
|
|
3008
3018
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3009
3019
|
default as BarChart4Icon
|
|
3010
3020
|
} from '../icons/chart-column-increasing';
|
|
3011
|
-
//
|
|
3012
|
-
export { default as
|
|
3021
|
+
// ChartColumn aliases
|
|
3022
|
+
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3013
3023
|
export {
|
|
3014
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3015
|
-
default as
|
|
3016
|
-
} from '../icons/chart-
|
|
3024
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
3025
|
+
default as BarChart3Icon
|
|
3026
|
+
} from '../icons/chart-column';
|
|
3017
3027
|
// ChartLine aliases
|
|
3018
3028
|
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3019
3029
|
export {
|
|
3020
3030
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. This alias will be removed in v1.0 */
|
|
3021
3031
|
default as LineChartIcon
|
|
3022
3032
|
} from '../icons/chart-line';
|
|
3023
|
-
// ChartColumn aliases
|
|
3024
|
-
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3025
|
-
export {
|
|
3026
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
3027
|
-
default as BarChart3Icon
|
|
3028
|
-
} from '../icons/chart-column';
|
|
3029
3033
|
// ChartNoAxesGantt aliases
|
|
3030
3034
|
export { default as ChartNoAxesGanttIcon } from '../icons/chart-no-axes-gantt';
|
|
3031
3035
|
export {
|
|
3032
3036
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
3033
3037
|
default as GanttChartIcon
|
|
3034
3038
|
} from '../icons/chart-no-axes-gantt';
|
|
3039
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
3040
|
+
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
3041
|
+
export {
|
|
3042
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3043
|
+
default as BarChartIcon
|
|
3044
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
3035
3045
|
// ChartNoAxesColumn aliases
|
|
3036
3046
|
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
3037
3047
|
export {
|
|
@@ -3056,30 +3066,30 @@ export {
|
|
|
3056
3066
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Chromium} instead. This alias will be removed in v1.0 */
|
|
3057
3067
|
default as ChromeIcon
|
|
3058
3068
|
} from '../icons/chromium';
|
|
3059
|
-
// CircleAlert aliases
|
|
3060
|
-
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3061
|
-
export {
|
|
3062
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
3063
|
-
default as AlertCircleIcon
|
|
3064
|
-
} from '../icons/circle-alert';
|
|
3065
3069
|
// CircleArrowDown aliases
|
|
3066
3070
|
export { default as CircleArrowDownIcon } from '../icons/circle-arrow-down';
|
|
3067
3071
|
export {
|
|
3068
3072
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
3069
3073
|
default as ArrowDownCircleIcon
|
|
3070
3074
|
} from '../icons/circle-arrow-down';
|
|
3071
|
-
//
|
|
3072
|
-
export { default as
|
|
3075
|
+
// CircleAlert aliases
|
|
3076
|
+
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3073
3077
|
export {
|
|
3074
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3075
|
-
default as
|
|
3076
|
-
} from '../icons/circle-
|
|
3078
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
3079
|
+
default as AlertCircleIcon
|
|
3080
|
+
} from '../icons/circle-alert';
|
|
3077
3081
|
// CircleArrowOutDownLeft aliases
|
|
3078
3082
|
export { default as CircleArrowOutDownLeftIcon } from '../icons/circle-arrow-out-down-left';
|
|
3079
3083
|
export {
|
|
3080
3084
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
3081
3085
|
default as ArrowDownLeftFromCircleIcon
|
|
3082
3086
|
} from '../icons/circle-arrow-out-down-left';
|
|
3087
|
+
// CircleArrowLeft aliases
|
|
3088
|
+
export { default as CircleArrowLeftIcon } from '../icons/circle-arrow-left';
|
|
3089
|
+
export {
|
|
3090
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
3091
|
+
default as ArrowLeftCircleIcon
|
|
3092
|
+
} from '../icons/circle-arrow-left';
|
|
3083
3093
|
// CircleArrowOutDownRight aliases
|
|
3084
3094
|
export { default as CircleArrowOutDownRightIcon } from '../icons/circle-arrow-out-down-right';
|
|
3085
3095
|
export {
|
|
@@ -3098,18 +3108,18 @@ export {
|
|
|
3098
3108
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3099
3109
|
default as ArrowUpRightFromCircleIcon
|
|
3100
3110
|
} from '../icons/circle-arrow-out-up-right';
|
|
3101
|
-
// CircleArrowUp aliases
|
|
3102
|
-
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
3103
|
-
export {
|
|
3104
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
3105
|
-
default as ArrowUpCircleIcon
|
|
3106
|
-
} from '../icons/circle-arrow-up';
|
|
3107
3111
|
// CircleArrowRight aliases
|
|
3108
3112
|
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3109
3113
|
export {
|
|
3110
3114
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
3111
3115
|
default as ArrowRightCircleIcon
|
|
3112
3116
|
} from '../icons/circle-arrow-right';
|
|
3117
|
+
// CircleArrowUp aliases
|
|
3118
|
+
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
3119
|
+
export {
|
|
3120
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
3121
|
+
default as ArrowUpCircleIcon
|
|
3122
|
+
} from '../icons/circle-arrow-up';
|
|
3113
3123
|
// CircleCheckBig aliases
|
|
3114
3124
|
export { default as CircleCheckBigIcon } from '../icons/circle-check-big';
|
|
3115
3125
|
export {
|
|
@@ -3128,12 +3138,6 @@ export {
|
|
|
3128
3138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. This alias will be removed in v1.0 */
|
|
3129
3139
|
default as ChevronDownCircleIcon
|
|
3130
3140
|
} from '../icons/circle-chevron-down';
|
|
3131
|
-
// CircleChevronRight aliases
|
|
3132
|
-
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3133
|
-
export {
|
|
3134
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
3135
|
-
default as ChevronRightCircleIcon
|
|
3136
|
-
} from '../icons/circle-chevron-right';
|
|
3137
3141
|
// CircleChevronLeft aliases
|
|
3138
3142
|
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3139
3143
|
export {
|
|
@@ -3152,6 +3156,12 @@ export {
|
|
|
3152
3156
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
3153
3157
|
default as DivideCircleIcon
|
|
3154
3158
|
} from '../icons/circle-divide';
|
|
3159
|
+
// CircleChevronRight aliases
|
|
3160
|
+
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3161
|
+
export {
|
|
3162
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
3163
|
+
default as ChevronRightCircleIcon
|
|
3164
|
+
} from '../icons/circle-chevron-right';
|
|
3155
3165
|
// CircleGauge aliases
|
|
3156
3166
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3157
3167
|
export {
|
|
@@ -3176,30 +3186,30 @@ export {
|
|
|
3176
3186
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. This alias will be removed in v1.0 */
|
|
3177
3187
|
default as ParkingCircleIcon
|
|
3178
3188
|
} from '../icons/circle-parking';
|
|
3179
|
-
// CirclePause aliases
|
|
3180
|
-
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3181
|
-
export {
|
|
3182
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. This alias will be removed in v1.0 */
|
|
3183
|
-
default as PauseCircleIcon
|
|
3184
|
-
} from '../icons/circle-pause';
|
|
3185
3189
|
// CirclePlay aliases
|
|
3186
3190
|
export { default as CirclePlayIcon } from '../icons/circle-play';
|
|
3187
3191
|
export {
|
|
3188
3192
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
3189
3193
|
default as PlayCircleIcon
|
|
3190
3194
|
} from '../icons/circle-play';
|
|
3195
|
+
// CirclePercent aliases
|
|
3196
|
+
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3197
|
+
export {
|
|
3198
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
3199
|
+
default as PercentCircleIcon
|
|
3200
|
+
} from '../icons/circle-percent';
|
|
3191
3201
|
// CirclePlus aliases
|
|
3192
3202
|
export { default as CirclePlusIcon } from '../icons/circle-plus';
|
|
3193
3203
|
export {
|
|
3194
3204
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
3195
3205
|
default as PlusCircleIcon
|
|
3196
3206
|
} from '../icons/circle-plus';
|
|
3197
|
-
//
|
|
3198
|
-
export { default as
|
|
3207
|
+
// CirclePause aliases
|
|
3208
|
+
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3199
3209
|
export {
|
|
3200
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3201
|
-
default as
|
|
3202
|
-
} from '../icons/circle-
|
|
3210
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. This alias will be removed in v1.0 */
|
|
3211
|
+
default as PauseCircleIcon
|
|
3212
|
+
} from '../icons/circle-pause';
|
|
3203
3213
|
// CirclePower aliases
|
|
3204
3214
|
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3205
3215
|
export {
|
|
@@ -3216,6 +3226,12 @@ export {
|
|
|
3216
3226
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3217
3227
|
default as CircleHelpIcon
|
|
3218
3228
|
} from '../icons/circle-question-mark';
|
|
3229
|
+
// CircleSlash2 aliases
|
|
3230
|
+
export { default as CircleSlash2Icon } from '../icons/circle-slash-2';
|
|
3231
|
+
export {
|
|
3232
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
3233
|
+
default as CircleSlashedIcon
|
|
3234
|
+
} from '../icons/circle-slash-2';
|
|
3219
3235
|
// CircleStop aliases
|
|
3220
3236
|
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3221
3237
|
export {
|
|
@@ -3232,44 +3248,44 @@ export {
|
|
|
3232
3248
|
export { default as CircleUserIcon } from '../icons/circle-user';
|
|
3233
3249
|
export {
|
|
3234
3250
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
3235
|
-
default as UserCircleIcon
|
|
3236
|
-
} from '../icons/circle-user';
|
|
3237
|
-
// CircleSlash2 aliases
|
|
3238
|
-
export { default as CircleSlash2Icon } from '../icons/circle-slash-2';
|
|
3239
|
-
export {
|
|
3240
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
3241
|
-
default as CircleSlashedIcon
|
|
3242
|
-
} from '../icons/circle-slash-2';
|
|
3251
|
+
default as UserCircleIcon
|
|
3252
|
+
} from '../icons/circle-user';
|
|
3243
3253
|
// CircleX aliases
|
|
3244
3254
|
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3245
3255
|
export {
|
|
3246
3256
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
3247
3257
|
default as XCircleIcon
|
|
3248
3258
|
} from '../icons/circle-x';
|
|
3259
|
+
// ClipboardPenLine aliases
|
|
3260
|
+
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3261
|
+
export {
|
|
3262
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. This alias will be removed in v1.0 */
|
|
3263
|
+
default as ClipboardSignatureIcon
|
|
3264
|
+
} from '../icons/clipboard-pen-line';
|
|
3249
3265
|
// ClipboardPen aliases
|
|
3250
3266
|
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3251
3267
|
export {
|
|
3252
3268
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. This alias will be removed in v1.0 */
|
|
3253
3269
|
default as ClipboardEditIcon
|
|
3254
3270
|
} from '../icons/clipboard-pen';
|
|
3255
|
-
//
|
|
3256
|
-
export { default as
|
|
3271
|
+
// CloudUpload aliases
|
|
3272
|
+
export { default as CloudUploadIcon } from '../icons/cloud-upload';
|
|
3257
3273
|
export {
|
|
3258
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3259
|
-
default as
|
|
3260
|
-
} from '../icons/
|
|
3274
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
3275
|
+
default as UploadCloudIcon
|
|
3276
|
+
} from '../icons/cloud-upload';
|
|
3261
3277
|
// CloudDownload aliases
|
|
3262
3278
|
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3263
3279
|
export {
|
|
3264
3280
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. This alias will be removed in v1.0 */
|
|
3265
3281
|
default as DownloadCloudIcon
|
|
3266
3282
|
} from '../icons/cloud-download';
|
|
3267
|
-
//
|
|
3268
|
-
export { default as
|
|
3283
|
+
// CodeXml aliases
|
|
3284
|
+
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3269
3285
|
export {
|
|
3270
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3271
|
-
default as
|
|
3272
|
-
} from '../icons/
|
|
3286
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
3287
|
+
default as Code2Icon
|
|
3288
|
+
} from '../icons/code-xml';
|
|
3273
3289
|
// Columns2 aliases
|
|
3274
3290
|
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3275
3291
|
export {
|
|
@@ -3286,54 +3302,42 @@ export {
|
|
|
3286
3302
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
3287
3303
|
default as TableConfigIcon
|
|
3288
3304
|
} from '../icons/columns-3-cog';
|
|
3289
|
-
// CodeXml aliases
|
|
3290
|
-
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3291
|
-
export {
|
|
3292
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
3293
|
-
default as Code2Icon
|
|
3294
|
-
} from '../icons/code-xml';
|
|
3295
3305
|
// Columns3 aliases
|
|
3296
3306
|
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3297
3307
|
export {
|
|
3298
3308
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
3299
3309
|
default as PanelsLeftRightIcon
|
|
3300
3310
|
} from '../icons/columns-3';
|
|
3301
|
-
//
|
|
3302
|
-
export { default as
|
|
3311
|
+
// DiamondPercent aliases
|
|
3312
|
+
export { default as DiamondPercentIcon } from '../icons/diamond-percent';
|
|
3303
3313
|
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/
|
|
3314
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
3315
|
+
default as PercentDiamondIcon
|
|
3316
|
+
} from '../icons/diamond-percent';
|
|
3307
3317
|
// Earth aliases
|
|
3308
3318
|
export { default as EarthIcon } from '../icons/earth';
|
|
3309
3319
|
export {
|
|
3310
3320
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
3311
3321
|
default as Globe2Icon
|
|
3312
3322
|
} from '../icons/earth';
|
|
3323
|
+
// ContactRound aliases
|
|
3324
|
+
export { default as ContactRoundIcon } from '../icons/contact-round';
|
|
3325
|
+
export {
|
|
3326
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
3327
|
+
default as Contact2Icon
|
|
3328
|
+
} from '../icons/contact-round';
|
|
3313
3329
|
// EllipsisVertical aliases
|
|
3314
3330
|
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3315
3331
|
export {
|
|
3316
3332
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
3317
3333
|
default as MoreVerticalIcon
|
|
3318
3334
|
} from '../icons/ellipsis-vertical';
|
|
3319
|
-
// DiamondPercent aliases
|
|
3320
|
-
export { default as DiamondPercentIcon } from '../icons/diamond-percent';
|
|
3321
|
-
export {
|
|
3322
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
3323
|
-
default as PercentDiamondIcon
|
|
3324
|
-
} from '../icons/diamond-percent';
|
|
3325
3335
|
// Ellipsis aliases
|
|
3326
3336
|
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3327
3337
|
export {
|
|
3328
3338
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
3329
3339
|
default as MoreHorizontalIcon
|
|
3330
3340
|
} from '../icons/ellipsis';
|
|
3331
|
-
// FileBadge aliases
|
|
3332
|
-
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
3333
|
-
export {
|
|
3334
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. This alias will be removed in v1.0 */
|
|
3335
|
-
default as FileBadge2Icon
|
|
3336
|
-
} from '../icons/file-badge';
|
|
3337
3341
|
// FileAxis3d aliases
|
|
3338
3342
|
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3339
3343
|
export {
|
|
@@ -3346,6 +3350,18 @@ export {
|
|
|
3346
3350
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
3347
3351
|
default as FileJson2Icon
|
|
3348
3352
|
} from '../icons/file-braces-corner';
|
|
3353
|
+
// FileChartColumnIncreasing aliases
|
|
3354
|
+
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3355
|
+
export {
|
|
3356
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3357
|
+
default as FileBarChartIcon
|
|
3358
|
+
} from '../icons/file-chart-column-increasing';
|
|
3359
|
+
// FileBadge aliases
|
|
3360
|
+
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
3361
|
+
export {
|
|
3362
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. This alias will be removed in v1.0 */
|
|
3363
|
+
default as FileBadge2Icon
|
|
3364
|
+
} from '../icons/file-badge';
|
|
3349
3365
|
// FileBraces aliases
|
|
3350
3366
|
export { default as FileBracesIcon } from '../icons/file-braces';
|
|
3351
3367
|
export {
|
|
@@ -3358,24 +3374,18 @@ export {
|
|
|
3358
3374
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
3359
3375
|
default as FileBarChart2Icon
|
|
3360
3376
|
} from '../icons/file-chart-column';
|
|
3361
|
-
//
|
|
3362
|
-
export { default as
|
|
3377
|
+
// FileChartLine aliases
|
|
3378
|
+
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3363
3379
|
export {
|
|
3364
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3365
|
-
default as
|
|
3366
|
-
} from '../icons/file-chart-
|
|
3380
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
3381
|
+
default as FileLineChartIcon
|
|
3382
|
+
} from '../icons/file-chart-line';
|
|
3367
3383
|
// FileChartPie aliases
|
|
3368
3384
|
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3369
3385
|
export {
|
|
3370
3386
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
3371
3387
|
default as FilePieChartIcon
|
|
3372
3388
|
} from '../icons/file-chart-pie';
|
|
3373
|
-
// FileChartLine aliases
|
|
3374
|
-
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3375
|
-
export {
|
|
3376
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
3377
|
-
default as FileLineChartIcon
|
|
3378
|
-
} from '../icons/file-chart-line';
|
|
3379
3389
|
// FileCheckCorner aliases
|
|
3380
3390
|
export { default as FileCheckCornerIcon } from '../icons/file-check-corner';
|
|
3381
3391
|
export {
|
|
@@ -3422,54 +3432,54 @@ export {
|
|
|
3422
3432
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. This alias will be removed in v1.0 */
|
|
3423
3433
|
default as FileLock2Icon
|
|
3424
3434
|
} from '../icons/file-lock';
|
|
3425
|
-
// FileMinusCorner aliases
|
|
3426
|
-
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3427
|
-
export {
|
|
3428
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
3429
|
-
default as FileMinus2Icon
|
|
3430
|
-
} from '../icons/file-minus-corner';
|
|
3431
3435
|
// FilePenLine aliases
|
|
3432
3436
|
export { default as FilePenLineIcon } from '../icons/file-pen-line';
|
|
3433
3437
|
export {
|
|
3434
3438
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
3435
3439
|
default as FileSignatureIcon
|
|
3436
3440
|
} from '../icons/file-pen-line';
|
|
3437
|
-
//
|
|
3438
|
-
export { default as
|
|
3441
|
+
// FileMinusCorner aliases
|
|
3442
|
+
export { default as FileMinusCornerIcon } from '../icons/file-minus-corner';
|
|
3439
3443
|
export {
|
|
3440
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3441
|
-
default as
|
|
3442
|
-
} from '../icons/file-
|
|
3444
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
3445
|
+
default as FileMinus2Icon
|
|
3446
|
+
} from '../icons/file-minus-corner';
|
|
3443
3447
|
// FilePen aliases
|
|
3444
3448
|
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3445
3449
|
export {
|
|
3446
3450
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
3447
3451
|
default as FileEditIcon
|
|
3448
3452
|
} from '../icons/file-pen';
|
|
3449
|
-
//
|
|
3450
|
-
export { default as
|
|
3451
|
-
export {
|
|
3452
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3453
|
-
default as FileQuestionIcon
|
|
3454
|
-
} from '../icons/file-question-mark';
|
|
3455
|
-
// FileSignal aliases
|
|
3456
|
-
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3453
|
+
// FilePlay aliases
|
|
3454
|
+
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3457
3455
|
export {
|
|
3458
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3459
|
-
default as
|
|
3460
|
-
} from '../icons/file-
|
|
3456
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
3457
|
+
default as FileVideoIcon
|
|
3458
|
+
} from '../icons/file-play';
|
|
3461
3459
|
// FilePlusCorner aliases
|
|
3462
3460
|
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3463
3461
|
export {
|
|
3464
3462
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
3465
3463
|
default as FilePlus2Icon
|
|
3466
3464
|
} from '../icons/file-plus-corner';
|
|
3465
|
+
// FileQuestionMark aliases
|
|
3466
|
+
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3467
|
+
export {
|
|
3468
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3469
|
+
default as FileQuestionIcon
|
|
3470
|
+
} from '../icons/file-question-mark';
|
|
3467
3471
|
// FileSearchCorner aliases
|
|
3468
3472
|
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3469
3473
|
export {
|
|
3470
3474
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. This alias will be removed in v1.0 */
|
|
3471
3475
|
default as FileSearch2Icon
|
|
3472
3476
|
} from '../icons/file-search-corner';
|
|
3477
|
+
// FileSignal aliases
|
|
3478
|
+
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3479
|
+
export {
|
|
3480
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. This alias will be removed in v1.0 */
|
|
3481
|
+
default as FileVolume2Icon
|
|
3482
|
+
} from '../icons/file-signal';
|
|
3473
3483
|
// FileTypeCorner aliases
|
|
3474
3484
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3475
3485
|
export {
|
|
@@ -3512,24 +3522,24 @@ export {
|
|
|
3512
3522
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
3513
3523
|
default as FilterXIcon
|
|
3514
3524
|
} from '../icons/funnel-x';
|
|
3515
|
-
//
|
|
3516
|
-
export { default as
|
|
3525
|
+
// GitCommitHorizontal aliases
|
|
3526
|
+
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3517
3527
|
export {
|
|
3518
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3519
|
-
default as
|
|
3520
|
-
} from '../icons/
|
|
3528
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
3529
|
+
default as GitCommitIcon
|
|
3530
|
+
} from '../icons/git-commit-horizontal';
|
|
3521
3531
|
// Grid2x2Check aliases
|
|
3522
3532
|
export { default as Grid2x2CheckIcon } from '../icons/grid-2x2-check';
|
|
3523
3533
|
export {
|
|
3524
3534
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
3525
3535
|
default as Grid2X2CheckIcon
|
|
3526
3536
|
} from '../icons/grid-2x2-check';
|
|
3527
|
-
//
|
|
3528
|
-
export { default as
|
|
3537
|
+
// Funnel aliases
|
|
3538
|
+
export { default as FunnelIcon } from '../icons/funnel';
|
|
3529
3539
|
export {
|
|
3530
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3531
|
-
default as
|
|
3532
|
-
} from '../icons/
|
|
3540
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
3541
|
+
default as FilterIcon
|
|
3542
|
+
} from '../icons/funnel';
|
|
3533
3543
|
// Grid2x2Plus aliases
|
|
3534
3544
|
export { default as Grid2x2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3535
3545
|
export {
|
|
@@ -3558,30 +3568,24 @@ export {
|
|
|
3558
3568
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
3559
3569
|
default as Grid3X3Icon
|
|
3560
3570
|
} from '../icons/grid-3x3';
|
|
3561
|
-
// HandHelping aliases
|
|
3562
|
-
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3563
|
-
export {
|
|
3564
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
3565
|
-
default as HelpingHandIcon
|
|
3566
|
-
} from '../icons/hand-helping';
|
|
3567
3571
|
// HandGrab aliases
|
|
3568
3572
|
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3569
3573
|
export {
|
|
3570
3574
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
3571
3575
|
default as GrabIcon
|
|
3572
3576
|
} from '../icons/hand-grab';
|
|
3577
|
+
// HandHelping aliases
|
|
3578
|
+
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3579
|
+
export {
|
|
3580
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
3581
|
+
default as HelpingHandIcon
|
|
3582
|
+
} from '../icons/hand-helping';
|
|
3573
3583
|
// House aliases
|
|
3574
3584
|
export { default as HouseIcon } from '../icons/house';
|
|
3575
3585
|
export {
|
|
3576
3586
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
3577
3587
|
default as HomeIcon
|
|
3578
3588
|
} from '../icons/house';
|
|
3579
|
-
// IceCreamCone aliases
|
|
3580
|
-
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3581
|
-
export {
|
|
3582
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
3583
|
-
default as IceCreamIcon
|
|
3584
|
-
} from '../icons/ice-cream-cone';
|
|
3585
3589
|
// IceCreamBowl aliases
|
|
3586
3590
|
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3587
3591
|
export {
|
|
@@ -3594,22 +3598,18 @@ export {
|
|
|
3594
3598
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. This alias will be removed in v1.0 */
|
|
3595
3599
|
default as Laptop2Icon
|
|
3596
3600
|
} from '../icons/laptop-minimal';
|
|
3601
|
+
// IceCreamCone aliases
|
|
3602
|
+
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3603
|
+
export {
|
|
3604
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
3605
|
+
default as IceCreamIcon
|
|
3606
|
+
} from '../icons/ice-cream-cone';
|
|
3597
3607
|
// Layers aliases
|
|
3598
3608
|
export { default as LayersIcon } from '../icons/layers';
|
|
3599
3609
|
export {
|
|
3600
3610
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
3601
3611
|
default as Layers3Icon
|
|
3602
3612
|
} from '../icons/layers';
|
|
3603
|
-
// ListIndentDecrease aliases
|
|
3604
|
-
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3605
|
-
export {
|
|
3606
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
3607
|
-
default as OutdentIcon
|
|
3608
|
-
} from '../icons/list-indent-decrease';
|
|
3609
|
-
export {
|
|
3610
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
3611
|
-
default as IndentDecreaseIcon
|
|
3612
|
-
} from '../icons/list-indent-decrease';
|
|
3613
3613
|
// ListIndentIncrease aliases
|
|
3614
3614
|
export { default as ListIndentIncreaseIcon } from '../icons/list-indent-increase';
|
|
3615
3615
|
export {
|
|
@@ -3626,6 +3626,16 @@ export {
|
|
|
3626
3626
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
3627
3627
|
default as Loader2Icon
|
|
3628
3628
|
} from '../icons/loader-circle';
|
|
3629
|
+
// ListIndentDecrease aliases
|
|
3630
|
+
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3631
|
+
export {
|
|
3632
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
3633
|
+
default as OutdentIcon
|
|
3634
|
+
} from '../icons/list-indent-decrease';
|
|
3635
|
+
export {
|
|
3636
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
3637
|
+
default as IndentDecreaseIcon
|
|
3638
|
+
} from '../icons/list-indent-decrease';
|
|
3629
3639
|
// LockKeyholeOpen aliases
|
|
3630
3640
|
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3631
3641
|
export {
|
|
@@ -3650,12 +3660,6 @@ export {
|
|
|
3650
3660
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. This alias will be removed in v1.0 */
|
|
3651
3661
|
default as LocationEditIcon
|
|
3652
3662
|
} from '../icons/map-pin-pen';
|
|
3653
|
-
// MessageCircleQuestionMark aliases
|
|
3654
|
-
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3655
|
-
export {
|
|
3656
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3657
|
-
default as MessageCircleQuestionIcon
|
|
3658
|
-
} from '../icons/message-circle-question-mark';
|
|
3659
3663
|
// MicVocal aliases
|
|
3660
3664
|
export { default as MicVocalIcon } from '../icons/mic-vocal';
|
|
3661
3665
|
export {
|
|
@@ -3668,18 +3672,24 @@ export {
|
|
|
3668
3672
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
3669
3673
|
default as Move3DIcon
|
|
3670
3674
|
} from '../icons/move-3d';
|
|
3671
|
-
// OctagonAlert aliases
|
|
3672
|
-
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3673
|
-
export {
|
|
3674
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
3675
|
-
default as AlertOctagonIcon
|
|
3676
|
-
} from '../icons/octagon-alert';
|
|
3677
3675
|
// OctagonPause aliases
|
|
3678
3676
|
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3679
3677
|
export {
|
|
3680
3678
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
3681
3679
|
default as PauseOctagonIcon
|
|
3682
3680
|
} from '../icons/octagon-pause';
|
|
3681
|
+
// MessageCircleQuestionMark aliases
|
|
3682
|
+
export { default as MessageCircleQuestionMarkIcon } from '../icons/message-circle-question-mark';
|
|
3683
|
+
export {
|
|
3684
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3685
|
+
default as MessageCircleQuestionIcon
|
|
3686
|
+
} from '../icons/message-circle-question-mark';
|
|
3687
|
+
// OctagonAlert aliases
|
|
3688
|
+
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3689
|
+
export {
|
|
3690
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
3691
|
+
default as AlertOctagonIcon
|
|
3692
|
+
} from '../icons/octagon-alert';
|
|
3683
3693
|
// OctagonX aliases
|
|
3684
3694
|
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3685
3695
|
export {
|
|
@@ -3710,18 +3720,18 @@ export {
|
|
|
3710
3720
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
3711
3721
|
default as PanelLeftInactiveIcon
|
|
3712
3722
|
} from '../icons/panel-left-dashed';
|
|
3713
|
-
// PanelLeftOpen aliases
|
|
3714
|
-
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3715
|
-
export {
|
|
3716
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
3717
|
-
default as SidebarOpenIcon
|
|
3718
|
-
} from '../icons/panel-left-open';
|
|
3719
3723
|
// PanelLeft aliases
|
|
3720
3724
|
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3721
3725
|
export {
|
|
3722
3726
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
3723
3727
|
default as SidebarIcon
|
|
3724
3728
|
} from '../icons/panel-left';
|
|
3729
|
+
// PanelLeftOpen aliases
|
|
3730
|
+
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3731
|
+
export {
|
|
3732
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
3733
|
+
default as SidebarOpenIcon
|
|
3734
|
+
} from '../icons/panel-left-open';
|
|
3725
3735
|
// PanelRightDashed aliases
|
|
3726
3736
|
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3727
3737
|
export {
|
|
@@ -3734,6 +3744,12 @@ export {
|
|
|
3734
3744
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. This alias will be removed in v1.0 */
|
|
3735
3745
|
default as PanelTopInactiveIcon
|
|
3736
3746
|
} from '../icons/panel-top-dashed';
|
|
3747
|
+
// PanelsTopLeft aliases
|
|
3748
|
+
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3749
|
+
export {
|
|
3750
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
3751
|
+
default as LayoutIcon
|
|
3752
|
+
} from '../icons/panels-top-left';
|
|
3737
3753
|
// Pen aliases
|
|
3738
3754
|
export { default as PenIcon } from '../icons/pen';
|
|
3739
3755
|
export {
|
|
@@ -3746,36 +3762,30 @@ export {
|
|
|
3746
3762
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
3747
3763
|
default as Edit3Icon
|
|
3748
3764
|
} from '../icons/pen-line';
|
|
3749
|
-
// PanelsTopLeft aliases
|
|
3750
|
-
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3751
|
-
export {
|
|
3752
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
3753
|
-
default as LayoutIcon
|
|
3754
|
-
} from '../icons/panels-top-left';
|
|
3755
|
-
// RectangleEllipsis aliases
|
|
3756
|
-
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3757
|
-
export {
|
|
3758
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
3759
|
-
default as FormInputIcon
|
|
3760
|
-
} from '../icons/rectangle-ellipsis';
|
|
3761
3765
|
// PlugZap aliases
|
|
3762
3766
|
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3763
3767
|
export {
|
|
3764
3768
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
3765
3769
|
default as PlugZap2Icon
|
|
3766
3770
|
} from '../icons/plug-zap';
|
|
3767
|
-
//
|
|
3768
|
-
export { default as
|
|
3771
|
+
// RectangleEllipsis aliases
|
|
3772
|
+
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3769
3773
|
export {
|
|
3770
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3771
|
-
default as
|
|
3772
|
-
} from '../icons/
|
|
3774
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
3775
|
+
default as FormInputIcon
|
|
3776
|
+
} from '../icons/rectangle-ellipsis';
|
|
3773
3777
|
// Rotate3d aliases
|
|
3774
3778
|
export { default as Rotate3dIcon } from '../icons/rotate-3d';
|
|
3775
3779
|
export {
|
|
3776
3780
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. This alias will be removed in v1.0 */
|
|
3777
3781
|
default as Rotate3DIcon
|
|
3778
3782
|
} from '../icons/rotate-3d';
|
|
3783
|
+
// Rows2 aliases
|
|
3784
|
+
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3785
|
+
export {
|
|
3786
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
3787
|
+
default as RowsIcon
|
|
3788
|
+
} from '../icons/rows-2';
|
|
3779
3789
|
// Rows3 aliases
|
|
3780
3790
|
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3781
3791
|
export {
|
|
@@ -3812,12 +3822,6 @@ export {
|
|
|
3812
3822
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. This alias will be removed in v1.0 */
|
|
3813
3823
|
default as SlidersIcon
|
|
3814
3824
|
} from '../icons/sliders-vertical';
|
|
3815
|
-
// Sparkles aliases
|
|
3816
|
-
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3817
|
-
export {
|
|
3818
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
3819
|
-
default as StarsIcon
|
|
3820
|
-
} from '../icons/sparkles';
|
|
3821
3825
|
// SquareActivity aliases
|
|
3822
3826
|
export { default as SquareActivityIcon } from '../icons/square-activity';
|
|
3823
3827
|
export {
|
|
@@ -3830,18 +3834,24 @@ export {
|
|
|
3830
3834
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
|
|
3831
3835
|
default as ArrowDownLeftSquareIcon
|
|
3832
3836
|
} from '../icons/square-arrow-down-left';
|
|
3833
|
-
// SquareArrowDown aliases
|
|
3834
|
-
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3835
|
-
export {
|
|
3836
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
3837
|
-
default as ArrowDownSquareIcon
|
|
3838
|
-
} from '../icons/square-arrow-down';
|
|
3839
3837
|
// SquareArrowDownRight aliases
|
|
3840
3838
|
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
3841
3839
|
export {
|
|
3842
3840
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
3843
3841
|
default as ArrowDownRightSquareIcon
|
|
3844
3842
|
} from '../icons/square-arrow-down-right';
|
|
3843
|
+
// Sparkles aliases
|
|
3844
|
+
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3845
|
+
export {
|
|
3846
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
3847
|
+
default as StarsIcon
|
|
3848
|
+
} from '../icons/sparkles';
|
|
3849
|
+
// SquareArrowDown aliases
|
|
3850
|
+
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3851
|
+
export {
|
|
3852
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
3853
|
+
default as ArrowDownSquareIcon
|
|
3854
|
+
} from '../icons/square-arrow-down';
|
|
3845
3855
|
// SquareArrowLeft aliases
|
|
3846
3856
|
export { default as SquareArrowLeftIcon } from '../icons/square-arrow-left';
|
|
3847
3857
|
export {
|
|
@@ -3866,18 +3876,18 @@ export {
|
|
|
3866
3876
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
3867
3877
|
default as ArrowUpLeftFromSquareIcon
|
|
3868
3878
|
} from '../icons/square-arrow-out-up-left';
|
|
3869
|
-
// SquareArrowOutUpRight aliases
|
|
3870
|
-
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
3871
|
-
export {
|
|
3872
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3873
|
-
default as ArrowUpRightFromSquareIcon
|
|
3874
|
-
} from '../icons/square-arrow-out-up-right';
|
|
3875
3879
|
// SquareArrowRight aliases
|
|
3876
3880
|
export { default as SquareArrowRightIcon } from '../icons/square-arrow-right';
|
|
3877
3881
|
export {
|
|
3878
3882
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. This alias will be removed in v1.0 */
|
|
3879
3883
|
default as ArrowRightSquareIcon
|
|
3880
3884
|
} from '../icons/square-arrow-right';
|
|
3885
|
+
// SquareArrowOutUpRight aliases
|
|
3886
|
+
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
3887
|
+
export {
|
|
3888
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3889
|
+
default as ArrowUpRightFromSquareIcon
|
|
3890
|
+
} from '../icons/square-arrow-out-up-right';
|
|
3881
3891
|
// SquareArrowUpLeft aliases
|
|
3882
3892
|
export { default as SquareArrowUpLeftIcon } from '../icons/square-arrow-up-left';
|
|
3883
3893
|
export {
|
|
@@ -3896,12 +3906,6 @@ export {
|
|
|
3896
3906
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
3897
3907
|
default as ArrowUpSquareIcon
|
|
3898
3908
|
} from '../icons/square-arrow-up';
|
|
3899
|
-
// SquareBottomDashedScissors aliases
|
|
3900
|
-
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
3901
|
-
export {
|
|
3902
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. This alias will be removed in v1.0 */
|
|
3903
|
-
default as ScissorsSquareDashedBottomIcon
|
|
3904
|
-
} from '../icons/square-bottom-dashed-scissors';
|
|
3905
3909
|
// SquareAsterisk aliases
|
|
3906
3910
|
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3907
3911
|
export {
|
|
@@ -3924,42 +3928,48 @@ export {
|
|
|
3924
3928
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. This alias will be removed in v1.0 */
|
|
3925
3929
|
default as CheckSquareIcon
|
|
3926
3930
|
} from '../icons/square-check-big';
|
|
3927
|
-
//
|
|
3928
|
-
export { default as
|
|
3931
|
+
// SquareBottomDashedScissors aliases
|
|
3932
|
+
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
3929
3933
|
export {
|
|
3930
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3931
|
-
default as
|
|
3932
|
-
} from '../icons/square-
|
|
3934
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. This alias will be removed in v1.0 */
|
|
3935
|
+
default as ScissorsSquareDashedBottomIcon
|
|
3936
|
+
} from '../icons/square-bottom-dashed-scissors';
|
|
3933
3937
|
// SquareCheck aliases
|
|
3934
3938
|
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3935
3939
|
export {
|
|
3936
3940
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. This alias will be removed in v1.0 */
|
|
3937
3941
|
default as CheckSquare2Icon
|
|
3938
3942
|
} from '../icons/square-check';
|
|
3939
|
-
//
|
|
3940
|
-
export { default as
|
|
3941
|
-
export {
|
|
3942
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3943
|
-
default as ChevronLeftSquareIcon
|
|
3944
|
-
} from '../icons/square-chevron-left';
|
|
3945
|
-
// SquareChevronUp aliases
|
|
3946
|
-
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
3943
|
+
// SquareChevronDown aliases
|
|
3944
|
+
export { default as SquareChevronDownIcon } from '../icons/square-chevron-down';
|
|
3947
3945
|
export {
|
|
3948
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3949
|
-
default as
|
|
3950
|
-
} from '../icons/square-chevron-
|
|
3946
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
3947
|
+
default as ChevronDownSquareIcon
|
|
3948
|
+
} from '../icons/square-chevron-down';
|
|
3951
3949
|
// SquareChevronRight aliases
|
|
3952
3950
|
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
3953
3951
|
export {
|
|
3954
3952
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
3955
3953
|
default as ChevronRightSquareIcon
|
|
3956
3954
|
} from '../icons/square-chevron-right';
|
|
3955
|
+
// SquareChevronUp aliases
|
|
3956
|
+
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
3957
|
+
export {
|
|
3958
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
3959
|
+
default as ChevronUpSquareIcon
|
|
3960
|
+
} from '../icons/square-chevron-up';
|
|
3957
3961
|
// SquareCode aliases
|
|
3958
3962
|
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
3959
3963
|
export {
|
|
3960
3964
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. This alias will be removed in v1.0 */
|
|
3961
3965
|
default as CodeSquareIcon
|
|
3962
3966
|
} from '../icons/square-code';
|
|
3967
|
+
// SquareChevronLeft aliases
|
|
3968
|
+
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
3969
|
+
export {
|
|
3970
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3971
|
+
default as ChevronLeftSquareIcon
|
|
3972
|
+
} from '../icons/square-chevron-left';
|
|
3963
3973
|
// SquareDashedKanban aliases
|
|
3964
3974
|
export { default as SquareDashedKanbanIcon } from '../icons/square-dashed-kanban';
|
|
3965
3975
|
export {
|
|
@@ -3978,6 +3988,12 @@ export {
|
|
|
3978
3988
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
3979
3989
|
default as BoxSelectIcon
|
|
3980
3990
|
} from '../icons/square-dashed';
|
|
3991
|
+
// SquareDot aliases
|
|
3992
|
+
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
3993
|
+
export {
|
|
3994
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. This alias will be removed in v1.0 */
|
|
3995
|
+
default as DotSquareIcon
|
|
3996
|
+
} from '../icons/square-dot';
|
|
3981
3997
|
// SquareDivide aliases
|
|
3982
3998
|
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
3983
3999
|
export {
|
|
@@ -3990,24 +4006,18 @@ export {
|
|
|
3990
4006
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
3991
4007
|
default as EqualSquareIcon
|
|
3992
4008
|
} from '../icons/square-equal';
|
|
3993
|
-
// SquareFunction aliases
|
|
3994
|
-
export { default as SquareFunctionIcon } from '../icons/square-function';
|
|
3995
|
-
export {
|
|
3996
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
3997
|
-
default as FunctionSquareIcon
|
|
3998
|
-
} from '../icons/square-function';
|
|
3999
4009
|
// SquareKanban aliases
|
|
4000
4010
|
export { default as SquareKanbanIcon } from '../icons/square-kanban';
|
|
4001
4011
|
export {
|
|
4002
4012
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
4003
4013
|
default as KanbanSquareIcon
|
|
4004
4014
|
} from '../icons/square-kanban';
|
|
4005
|
-
//
|
|
4006
|
-
export { default as
|
|
4015
|
+
// SquareFunction aliases
|
|
4016
|
+
export { default as SquareFunctionIcon } from '../icons/square-function';
|
|
4007
4017
|
export {
|
|
4008
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4009
|
-
default as
|
|
4010
|
-
} from '../icons/square-
|
|
4018
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
4019
|
+
default as FunctionSquareIcon
|
|
4020
|
+
} from '../icons/square-function';
|
|
4011
4021
|
// SquareLibrary aliases
|
|
4012
4022
|
export { default as SquareLibraryIcon } from '../icons/square-library';
|
|
4013
4023
|
export {
|
|
@@ -4056,6 +4066,20 @@ export {
|
|
|
4056
4066
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
4057
4067
|
default as PercentSquareIcon
|
|
4058
4068
|
} from '../icons/square-percent';
|
|
4069
|
+
// SquarePen aliases
|
|
4070
|
+
export { default as SquarePenIcon } from '../icons/square-pen';
|
|
4071
|
+
export {
|
|
4072
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4073
|
+
default as PenBoxIcon
|
|
4074
|
+
} from '../icons/square-pen';
|
|
4075
|
+
export {
|
|
4076
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4077
|
+
default as EditIcon
|
|
4078
|
+
} from '../icons/square-pen';
|
|
4079
|
+
export {
|
|
4080
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4081
|
+
default as PenSquareIcon
|
|
4082
|
+
} from '../icons/square-pen';
|
|
4059
4083
|
// SquarePi aliases
|
|
4060
4084
|
export { default as SquarePiIcon } from '../icons/square-pi';
|
|
4061
4085
|
export {
|
|
@@ -4074,20 +4098,6 @@ export {
|
|
|
4074
4098
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
4075
4099
|
default as PlaySquareIcon
|
|
4076
4100
|
} from '../icons/square-play';
|
|
4077
|
-
// SquarePen aliases
|
|
4078
|
-
export { default as SquarePenIcon } from '../icons/square-pen';
|
|
4079
|
-
export {
|
|
4080
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4081
|
-
default as PenBoxIcon
|
|
4082
|
-
} from '../icons/square-pen';
|
|
4083
|
-
export {
|
|
4084
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4085
|
-
default as EditIcon
|
|
4086
|
-
} from '../icons/square-pen';
|
|
4087
|
-
export {
|
|
4088
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4089
|
-
default as PenSquareIcon
|
|
4090
|
-
} from '../icons/square-pen';
|
|
4091
4101
|
// SquarePlus aliases
|
|
4092
4102
|
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4093
4103
|
export {
|
|
@@ -4100,42 +4110,42 @@ export {
|
|
|
4100
4110
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. This alias will be removed in v1.0 */
|
|
4101
4111
|
default as PowerSquareIcon
|
|
4102
4112
|
} from '../icons/square-power';
|
|
4103
|
-
// SquareSigma aliases
|
|
4104
|
-
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4105
|
-
export {
|
|
4106
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
4107
|
-
default as SigmaSquareIcon
|
|
4108
|
-
} from '../icons/square-sigma';
|
|
4109
4113
|
// SquareScissors aliases
|
|
4110
4114
|
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4111
4115
|
export {
|
|
4112
4116
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
4113
4117
|
default as ScissorsSquareIcon
|
|
4114
4118
|
} from '../icons/square-scissors';
|
|
4115
|
-
//
|
|
4116
|
-
export { default as
|
|
4117
|
-
export {
|
|
4118
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
4119
|
-
default as SlashSquareIcon
|
|
4120
|
-
} from '../icons/square-slash';
|
|
4121
|
-
// SquareSplitVertical aliases
|
|
4122
|
-
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4119
|
+
// SquareSigma aliases
|
|
4120
|
+
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4123
4121
|
export {
|
|
4124
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4125
|
-
default as
|
|
4126
|
-
} from '../icons/square-
|
|
4122
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
4123
|
+
default as SigmaSquareIcon
|
|
4124
|
+
} from '../icons/square-sigma';
|
|
4127
4125
|
// SquareSplitHorizontal aliases
|
|
4128
4126
|
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4129
4127
|
export {
|
|
4130
4128
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
4131
4129
|
default as SplitSquareHorizontalIcon
|
|
4132
4130
|
} from '../icons/square-split-horizontal';
|
|
4131
|
+
// SquareSlash aliases
|
|
4132
|
+
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
4133
|
+
export {
|
|
4134
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
4135
|
+
default as SlashSquareIcon
|
|
4136
|
+
} from '../icons/square-slash';
|
|
4133
4137
|
// SquareTerminal aliases
|
|
4134
4138
|
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4135
4139
|
export {
|
|
4136
4140
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
4137
4141
|
default as TerminalSquareIcon
|
|
4138
4142
|
} from '../icons/square-terminal';
|
|
4143
|
+
// SquareSplitVertical aliases
|
|
4144
|
+
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4145
|
+
export {
|
|
4146
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
4147
|
+
default as SplitSquareVerticalIcon
|
|
4148
|
+
} from '../icons/square-split-vertical';
|
|
4139
4149
|
// SquareUserRound aliases
|
|
4140
4150
|
export { default as SquareUserRoundIcon } from '../icons/square-user-round';
|
|
4141
4151
|
export {
|
|
@@ -4178,12 +4188,6 @@ export {
|
|
|
4178
4188
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|
|
4179
4189
|
default as AlignJustifyIcon
|
|
4180
4190
|
} from '../icons/text-align-justify';
|
|
4181
|
-
// TextInitial aliases
|
|
4182
|
-
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4183
|
-
export {
|
|
4184
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. This alias will be removed in v1.0 */
|
|
4185
|
-
default as LetterTextIcon
|
|
4186
|
-
} from '../icons/text-initial';
|
|
4187
4191
|
// TextAlignStart aliases
|
|
4188
4192
|
export { default as TextAlignStartIcon } from '../icons/text-align-start';
|
|
4189
4193
|
export {
|
|
@@ -4194,42 +4198,42 @@ export {
|
|
|
4194
4198
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
|
|
4195
4199
|
default as AlignLeftIcon
|
|
4196
4200
|
} from '../icons/text-align-start';
|
|
4197
|
-
//
|
|
4198
|
-
export { default as
|
|
4201
|
+
// TextInitial aliases
|
|
4202
|
+
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4199
4203
|
export {
|
|
4200
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4201
|
-
default as
|
|
4202
|
-
} from '../icons/text-
|
|
4204
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. This alias will be removed in v1.0 */
|
|
4205
|
+
default as LetterTextIcon
|
|
4206
|
+
} from '../icons/text-initial';
|
|
4203
4207
|
// TextSelect aliases
|
|
4204
4208
|
export { default as TextSelectIcon } from '../icons/text-select';
|
|
4205
4209
|
export {
|
|
4206
4210
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
4207
4211
|
default as TextSelectionIcon
|
|
4208
4212
|
} from '../icons/text-select';
|
|
4209
|
-
//
|
|
4210
|
-
export { default as
|
|
4213
|
+
// TextWrap aliases
|
|
4214
|
+
export { default as TextWrapIcon } from '../icons/text-wrap';
|
|
4211
4215
|
export {
|
|
4212
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4213
|
-
default as
|
|
4214
|
-
} from '../icons/
|
|
4216
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. This alias will be removed in v1.0 */
|
|
4217
|
+
default as WrapTextIcon
|
|
4218
|
+
} from '../icons/text-wrap';
|
|
4215
4219
|
// TramFront aliases
|
|
4216
4220
|
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4217
4221
|
export {
|
|
4218
4222
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|
|
4219
4223
|
default as TrainIcon
|
|
4220
4224
|
} from '../icons/tram-front';
|
|
4225
|
+
// TreePalm aliases
|
|
4226
|
+
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4227
|
+
export {
|
|
4228
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. This alias will be removed in v1.0 */
|
|
4229
|
+
default as PalmtreeIcon
|
|
4230
|
+
} from '../icons/tree-palm';
|
|
4221
4231
|
// TriangleAlert aliases
|
|
4222
4232
|
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4223
4233
|
export {
|
|
4224
4234
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
4225
4235
|
default as AlertTriangleIcon
|
|
4226
4236
|
} from '../icons/triangle-alert';
|
|
4227
|
-
// UserRoundCheck aliases
|
|
4228
|
-
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4229
|
-
export {
|
|
4230
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
4231
|
-
default as UserCheck2Icon
|
|
4232
|
-
} from '../icons/user-round-check';
|
|
4233
4237
|
// TvMinimal aliases
|
|
4234
4238
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
4235
4239
|
export {
|
|
@@ -4248,48 +4252,48 @@ export {
|
|
|
4248
4252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
4249
4253
|
default as UserCog2Icon
|
|
4250
4254
|
} from '../icons/user-round-cog';
|
|
4255
|
+
// UserRoundCheck aliases
|
|
4256
|
+
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4257
|
+
export {
|
|
4258
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
4259
|
+
default as UserCheck2Icon
|
|
4260
|
+
} from '../icons/user-round-check';
|
|
4251
4261
|
// UserRoundMinus aliases
|
|
4252
4262
|
export { default as UserRoundMinusIcon } from '../icons/user-round-minus';
|
|
4253
4263
|
export {
|
|
4254
4264
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. This alias will be removed in v1.0 */
|
|
4255
4265
|
default as UserMinus2Icon
|
|
4256
4266
|
} from '../icons/user-round-minus';
|
|
4257
|
-
// UserRoundPlus aliases
|
|
4258
|
-
export { default as UserRoundPlusIcon } from '../icons/user-round-plus';
|
|
4259
|
-
export {
|
|
4260
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
4261
|
-
default as UserPlus2Icon
|
|
4262
|
-
} from '../icons/user-round-plus';
|
|
4263
4267
|
// UserRoundX aliases
|
|
4264
4268
|
export { default as UserRoundXIcon } from '../icons/user-round-x';
|
|
4265
4269
|
export {
|
|
4266
4270
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
4267
4271
|
default as UserX2Icon
|
|
4268
4272
|
} from '../icons/user-round-x';
|
|
4269
|
-
// UserRound aliases
|
|
4270
|
-
export { default as UserRoundIcon } from '../icons/user-round';
|
|
4271
|
-
export {
|
|
4272
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
4273
|
-
default as User2Icon
|
|
4274
|
-
} from '../icons/user-round';
|
|
4275
4273
|
// UsersRound aliases
|
|
4276
4274
|
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
4277
4275
|
export {
|
|
4278
4276
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. This alias will be removed in v1.0 */
|
|
4279
4277
|
default as Users2Icon
|
|
4280
4278
|
} from '../icons/users-round';
|
|
4279
|
+
// UserRoundPlus aliases
|
|
4280
|
+
export { default as UserRoundPlusIcon } from '../icons/user-round-plus';
|
|
4281
|
+
export {
|
|
4282
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
4283
|
+
default as UserPlus2Icon
|
|
4284
|
+
} from '../icons/user-round-plus';
|
|
4285
|
+
// UserRound aliases
|
|
4286
|
+
export { default as UserRoundIcon } from '../icons/user-round';
|
|
4287
|
+
export {
|
|
4288
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
4289
|
+
default as User2Icon
|
|
4290
|
+
} from '../icons/user-round';
|
|
4281
4291
|
// UtensilsCrossed aliases
|
|
4282
4292
|
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4283
4293
|
export {
|
|
4284
4294
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. This alias will be removed in v1.0 */
|
|
4285
4295
|
default as ForkKnifeCrossedIcon
|
|
4286
4296
|
} from '../icons/utensils-crossed';
|
|
4287
|
-
// WalletMinimal aliases
|
|
4288
|
-
export { default as WalletMinimalIcon } from '../icons/wallet-minimal';
|
|
4289
|
-
export {
|
|
4290
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
4291
|
-
default as Wallet2Icon
|
|
4292
|
-
} from '../icons/wallet-minimal';
|
|
4293
4297
|
// Utensils aliases
|
|
4294
4298
|
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4295
4299
|
export {
|
|
@@ -4302,4 +4306,10 @@ export {
|
|
|
4302
4306
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. This alias will be removed in v1.0 */
|
|
4303
4307
|
default as Wand2Icon
|
|
4304
4308
|
} from '../icons/wand-sparkles';
|
|
4309
|
+
// WalletMinimal aliases
|
|
4310
|
+
export { default as WalletMinimalIcon } from '../icons/wallet-minimal';
|
|
4311
|
+
export {
|
|
4312
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
4313
|
+
default as Wallet2Icon
|
|
4314
|
+
} from '../icons/wallet-minimal';
|
|
4305
4315
|
|