@lucide/astro 0.562.0 → 0.563.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/LICENSE +2 -2
- package/README.md +11 -2
- package/package.json +6 -4
- package/src/Icon.astro +3 -0
- package/src/aliases/aliases.ts +88 -88
- package/src/aliases/prefixed.ts +482 -478
- package/src/aliases/suffixed.ts +901 -897
- package/src/createLucideIcon.ts +2 -1
- package/src/icons/bookmark-check.ts +2 -2
- package/src/icons/bookmark-minus.ts +2 -2
- package/src/icons/bookmark-plus.ts +2 -2
- package/src/icons/bookmark-x.ts +2 -2
- package/src/icons/bookmark.ts +2 -2
- package/src/icons/cloud-off.ts +2 -2
- package/src/icons/cloudy.ts +2 -2
- package/src/icons/globe-x.ts +18 -0
- package/src/icons/index.ts +128 -126
- package/src/icons/lasso.ts +2 -2
- package/src/icons/message-square-dashed.ts +2 -2
- package/src/icons/monitor-off.ts +2 -2
- package/src/icons/printer-x.ts +18 -0
- package/src/icons/star-off.ts +2 -2
- package/src/icons/tickets-plane.ts +2 -2
- package/src/icons/waypoints.ts +2 -2
- package/src/types.ts +1 -0
- package/src/utils/hasA11yProp.ts +15 -0
- package/src/{utils.ts → utils/mergeClasses.ts} +1 -12
- package/src/utils/toKebabCase.ts +8 -0
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
// AArrowDown aliases
|
|
2
2
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
|
-
//
|
|
4
|
-
export { default as
|
|
5
|
-
// ALargeSmall aliases
|
|
6
|
-
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
3
|
+
// Activity aliases
|
|
4
|
+
export { default as ActivityIcon } from '../icons/activity';
|
|
7
5
|
// Accessibility aliases
|
|
8
6
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
9
7
|
// AirVent aliases
|
|
10
8
|
export { default as AirVentIcon } from '../icons/air-vent';
|
|
11
|
-
// Activity aliases
|
|
12
|
-
export { default as ActivityIcon } from '../icons/activity';
|
|
13
9
|
// Airplay aliases
|
|
14
10
|
export { default as AirplayIcon } from '../icons/airplay';
|
|
15
11
|
// AlarmClock aliases
|
|
@@ -22,60 +18,60 @@ export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
|
22
18
|
export { default as AlbumIcon } from '../icons/album';
|
|
23
19
|
// AlignCenterHorizontal aliases
|
|
24
20
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
25
|
-
// AlignEndHorizontal aliases
|
|
26
|
-
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
27
21
|
// AlignCenterVertical aliases
|
|
28
22
|
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
29
23
|
// AlignEndVertical aliases
|
|
30
24
|
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
25
|
+
// AlignEndHorizontal aliases
|
|
26
|
+
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
31
27
|
// AlignHorizontalDistributeCenter aliases
|
|
32
28
|
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
33
29
|
// AlignHorizontalDistributeEnd aliases
|
|
34
30
|
export { default as AlignHorizontalDistributeEndIcon } from '../icons/align-horizontal-distribute-end';
|
|
35
31
|
// AlignHorizontalDistributeStart aliases
|
|
36
32
|
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
37
|
-
// AlignHorizontalJustifyCenter aliases
|
|
38
|
-
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
39
|
-
// AlignHorizontalJustifyStart aliases
|
|
40
|
-
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
41
33
|
// AlignHorizontalJustifyEnd aliases
|
|
42
34
|
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
35
|
+
// AlignHorizontalJustifyCenter aliases
|
|
36
|
+
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
43
37
|
// AlignHorizontalSpaceAround aliases
|
|
44
38
|
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
39
|
+
// AlignHorizontalJustifyStart aliases
|
|
40
|
+
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
45
41
|
// AlignHorizontalSpaceBetween aliases
|
|
46
42
|
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
47
43
|
// AlignStartHorizontal aliases
|
|
48
44
|
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
49
45
|
// AlignStartVertical aliases
|
|
50
46
|
export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical';
|
|
47
|
+
// AlignVerticalDistributeCenter aliases
|
|
48
|
+
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
51
49
|
// AlignVerticalDistributeEnd aliases
|
|
52
50
|
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
53
|
// AlignVerticalDistributeStart aliases
|
|
54
54
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
55
|
-
// AlignVerticalDistributeCenter aliases
|
|
56
|
-
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
57
55
|
// AlignVerticalJustifyEnd aliases
|
|
58
56
|
export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-justify-end';
|
|
59
|
-
// AlignVerticalJustifyCenter aliases
|
|
60
|
-
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
61
57
|
// AlignVerticalJustifyStart aliases
|
|
62
58
|
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
63
59
|
// AlignVerticalSpaceAround aliases
|
|
64
60
|
export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical-space-around';
|
|
65
61
|
// AlignVerticalSpaceBetween aliases
|
|
66
62
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
67
|
-
// Ambulance aliases
|
|
68
|
-
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
69
|
-
// Ampersands aliases
|
|
70
|
-
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
71
63
|
// Ampersand aliases
|
|
72
64
|
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
65
|
+
// Ampersands aliases
|
|
66
|
+
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
73
67
|
// Amphora aliases
|
|
74
68
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
75
|
-
//
|
|
76
|
-
export { default as
|
|
69
|
+
// Ambulance aliases
|
|
70
|
+
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
77
71
|
// Angry aliases
|
|
78
72
|
export { default as AngryIcon } from '../icons/angry';
|
|
73
|
+
// Anchor aliases
|
|
74
|
+
export { default as AnchorIcon } from '../icons/anchor';
|
|
79
75
|
// Annoyed aliases
|
|
80
76
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
81
77
|
// Antenna aliases
|
|
@@ -86,10 +82,10 @@ export { default as ApertureIcon } from '../icons/aperture';
|
|
|
86
82
|
export { default as AnvilIcon } from '../icons/anvil';
|
|
87
83
|
// AppWindowMac aliases
|
|
88
84
|
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
89
|
-
// Apple aliases
|
|
90
|
-
export { default as AppleIcon } from '../icons/apple';
|
|
91
85
|
// AppWindow aliases
|
|
92
86
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
87
|
+
// Apple aliases
|
|
88
|
+
export { default as AppleIcon } from '../icons/apple';
|
|
93
89
|
// ArchiveRestore aliases
|
|
94
90
|
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
95
91
|
// ArchiveX aliases
|
|
@@ -98,24 +94,24 @@ export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
|
98
94
|
export { default as ArchiveIcon } from '../icons/archive';
|
|
99
95
|
// Armchair aliases
|
|
100
96
|
export { default as ArmchairIcon } from '../icons/armchair';
|
|
101
|
-
// ArrowBigDown aliases
|
|
102
|
-
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
103
97
|
// ArrowBigDownDash aliases
|
|
104
98
|
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
99
|
+
// ArrowBigDown aliases
|
|
100
|
+
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
105
101
|
// ArrowBigLeftDash aliases
|
|
106
102
|
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
107
103
|
// ArrowBigLeft aliases
|
|
108
104
|
export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
109
|
-
// ArrowBigRight aliases
|
|
110
|
-
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
111
105
|
// ArrowBigRightDash aliases
|
|
112
106
|
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
107
|
+
// ArrowBigRight aliases
|
|
108
|
+
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
113
109
|
// ArrowBigUpDash aliases
|
|
114
110
|
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
115
|
-
// ArrowBigUp aliases
|
|
116
|
-
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
117
111
|
// ArrowDownFromLine aliases
|
|
118
112
|
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
113
|
+
// ArrowBigUp aliases
|
|
114
|
+
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
119
115
|
// ArrowDownLeft aliases
|
|
120
116
|
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
121
117
|
// ArrowDownNarrowWide aliases
|
|
@@ -126,26 +122,26 @@ export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
|
126
122
|
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
127
123
|
// ArrowDownToLine aliases
|
|
128
124
|
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
129
|
-
// ArrowDownUp aliases
|
|
130
|
-
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
131
125
|
// ArrowDown aliases
|
|
132
126
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
133
|
-
// ArrowLeftRight aliases
|
|
134
|
-
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
135
127
|
// ArrowLeftFromLine aliases
|
|
136
128
|
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
129
|
+
// ArrowDownUp aliases
|
|
130
|
+
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
131
|
+
// ArrowLeftRight aliases
|
|
132
|
+
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
133
|
+
// ArrowLeftToLine aliases
|
|
134
|
+
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
137
135
|
// ArrowLeft aliases
|
|
138
136
|
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
139
137
|
// ArrowRightFromLine aliases
|
|
140
138
|
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
141
|
-
// ArrowLeftToLine aliases
|
|
142
|
-
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
143
139
|
// ArrowRightLeft aliases
|
|
144
140
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
145
|
-
// ArrowRightToLine aliases
|
|
146
|
-
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
147
141
|
// ArrowRight aliases
|
|
148
142
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
143
|
+
// ArrowRightToLine aliases
|
|
144
|
+
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
149
145
|
// ArrowUpDown aliases
|
|
150
146
|
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
151
147
|
// ArrowUpFromDot aliases
|
|
@@ -154,10 +150,10 @@ export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
|
154
150
|
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
155
151
|
// ArrowUpLeft aliases
|
|
156
152
|
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
157
|
-
// ArrowUpToLine aliases
|
|
158
|
-
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
159
153
|
// ArrowUpRight aliases
|
|
160
154
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
155
|
+
// ArrowUpToLine aliases
|
|
156
|
+
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
161
157
|
// ArrowUpWideNarrow aliases
|
|
162
158
|
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
163
159
|
// ArrowUp aliases
|
|
@@ -166,36 +162,36 @@ export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
|
166
162
|
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
167
163
|
// Asterisk aliases
|
|
168
164
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
169
|
-
// AtSign aliases
|
|
170
|
-
export { default as AtSignIcon } from '../icons/at-sign';
|
|
171
165
|
// Atom aliases
|
|
172
166
|
export { default as AtomIcon } from '../icons/atom';
|
|
167
|
+
// AtSign aliases
|
|
168
|
+
export { default as AtSignIcon } from '../icons/at-sign';
|
|
169
|
+
// Award aliases
|
|
170
|
+
export { default as AwardIcon } from '../icons/award';
|
|
173
171
|
// AudioLines aliases
|
|
174
172
|
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
175
173
|
// AudioWaveform aliases
|
|
176
174
|
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
177
|
-
// Award aliases
|
|
178
|
-
export { default as AwardIcon } from '../icons/award';
|
|
179
175
|
// Axe aliases
|
|
180
176
|
export { default as AxeIcon } from '../icons/axe';
|
|
181
177
|
// Baby aliases
|
|
182
178
|
export { default as BabyIcon } from '../icons/baby';
|
|
183
|
-
// Backpack aliases
|
|
184
|
-
export { default as BackpackIcon } from '../icons/backpack';
|
|
185
179
|
// BadgeAlert aliases
|
|
186
180
|
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
187
|
-
//
|
|
188
|
-
export { default as
|
|
181
|
+
// Backpack aliases
|
|
182
|
+
export { default as BackpackIcon } from '../icons/backpack';
|
|
189
183
|
// BadgeCent aliases
|
|
190
184
|
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
185
|
+
// BadgeDollarSign aliases
|
|
186
|
+
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
191
187
|
// BadgeEuro aliases
|
|
192
188
|
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
193
189
|
// BadgeIndianRupee aliases
|
|
194
190
|
export { default as BadgeIndianRupeeIcon } from '../icons/badge-indian-rupee';
|
|
195
|
-
// BadgeJapaneseYen aliases
|
|
196
|
-
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
197
191
|
// BadgeInfo aliases
|
|
198
192
|
export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
193
|
+
// BadgeJapaneseYen aliases
|
|
194
|
+
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
199
195
|
// BadgeMinus aliases
|
|
200
196
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
201
197
|
// BadgePercent aliases
|
|
@@ -210,26 +206,26 @@ export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
|
210
206
|
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
211
207
|
// BadgeTurkishLira aliases
|
|
212
208
|
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
213
|
-
// Badge aliases
|
|
214
|
-
export { default as BadgeIcon } from '../icons/badge';
|
|
215
209
|
// BadgeX aliases
|
|
216
210
|
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
217
|
-
//
|
|
218
|
-
export { default as
|
|
211
|
+
// Badge aliases
|
|
212
|
+
export { default as BadgeIcon } from '../icons/badge';
|
|
219
213
|
// Balloon aliases
|
|
220
214
|
export { default as BalloonIcon } from '../icons/balloon';
|
|
221
|
-
//
|
|
222
|
-
export { default as
|
|
215
|
+
// BaggageClaim aliases
|
|
216
|
+
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
223
217
|
// Banana aliases
|
|
224
218
|
export { default as BananaIcon } from '../icons/banana';
|
|
225
219
|
// Bandage aliases
|
|
226
220
|
export { default as BandageIcon } from '../icons/bandage';
|
|
221
|
+
// Ban aliases
|
|
222
|
+
export { default as BanIcon } from '../icons/ban';
|
|
227
223
|
// BanknoteArrowDown aliases
|
|
228
224
|
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
229
|
-
// BanknoteX aliases
|
|
230
|
-
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
231
225
|
// BanknoteArrowUp aliases
|
|
232
226
|
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
227
|
+
// BanknoteX aliases
|
|
228
|
+
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
233
229
|
// Banknote aliases
|
|
234
230
|
export { default as BanknoteIcon } from '../icons/banknote';
|
|
235
231
|
// Barcode aliases
|
|
@@ -244,10 +240,10 @@ export { default as BathIcon } from '../icons/bath';
|
|
|
244
240
|
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
245
241
|
// BatteryFull aliases
|
|
246
242
|
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
247
|
-
// BatteryLow aliases
|
|
248
|
-
export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
249
243
|
// BatteryMedium aliases
|
|
250
244
|
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
245
|
+
// BatteryLow aliases
|
|
246
|
+
export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
251
247
|
// BatteryPlus aliases
|
|
252
248
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
253
249
|
// BatteryWarning aliases
|
|
@@ -256,52 +252,52 @@ export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
|
256
252
|
export { default as BatteryIcon } from '../icons/battery';
|
|
257
253
|
// Beaker aliases
|
|
258
254
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
259
|
-
// BeanOff aliases
|
|
260
|
-
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
261
255
|
// Bean aliases
|
|
262
256
|
export { default as BeanIcon } from '../icons/bean';
|
|
263
257
|
// BedDouble aliases
|
|
264
258
|
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
259
|
+
// BeanOff aliases
|
|
260
|
+
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
265
261
|
// BedSingle aliases
|
|
266
262
|
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
267
263
|
// Bed aliases
|
|
268
264
|
export { default as BedIcon } from '../icons/bed';
|
|
269
265
|
// Beef aliases
|
|
270
266
|
export { default as BeefIcon } from '../icons/beef';
|
|
271
|
-
// Beer aliases
|
|
272
|
-
export { default as BeerIcon } from '../icons/beer';
|
|
273
267
|
// BeerOff aliases
|
|
274
268
|
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
269
|
+
// Beer aliases
|
|
270
|
+
export { default as BeerIcon } from '../icons/beer';
|
|
275
271
|
// BellDot aliases
|
|
276
272
|
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
277
|
-
// BellElectric aliases
|
|
278
|
-
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
279
273
|
// BellMinus aliases
|
|
280
274
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
281
|
-
//
|
|
282
|
-
export { default as
|
|
275
|
+
// BellPlus aliases
|
|
276
|
+
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
277
|
+
// BellElectric aliases
|
|
278
|
+
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
283
279
|
// BellRing aliases
|
|
284
280
|
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
281
|
+
// BellOff aliases
|
|
282
|
+
export { default as BellOffIcon } from '../icons/bell-off';
|
|
285
283
|
// Bell aliases
|
|
286
284
|
export { default as BellIcon } from '../icons/bell';
|
|
287
|
-
// BellPlus aliases
|
|
288
|
-
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
289
|
-
// BetweenVerticalEnd aliases
|
|
290
|
-
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
291
285
|
// BetweenVerticalStart aliases
|
|
292
286
|
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
293
|
-
// Bike aliases
|
|
294
|
-
export { default as BikeIcon } from '../icons/bike';
|
|
295
287
|
// BicepsFlexed aliases
|
|
296
288
|
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
289
|
+
// BetweenVerticalEnd aliases
|
|
290
|
+
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
291
|
+
// Bike aliases
|
|
292
|
+
export { default as BikeIcon } from '../icons/bike';
|
|
297
293
|
// Binary aliases
|
|
298
294
|
export { default as BinaryIcon } from '../icons/binary';
|
|
299
|
-
// Binoculars aliases
|
|
300
|
-
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
301
295
|
// Biohazard aliases
|
|
302
296
|
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
303
297
|
// Bird aliases
|
|
304
298
|
export { default as BirdIcon } from '../icons/bird';
|
|
299
|
+
// Binoculars aliases
|
|
300
|
+
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
305
301
|
// Birdhouse aliases
|
|
306
302
|
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
307
303
|
// Bitcoin aliases
|
|
@@ -312,24 +308,24 @@ export { default as BlendIcon } from '../icons/blend';
|
|
|
312
308
|
export { default as BlindsIcon } from '../icons/blinds';
|
|
313
309
|
// Blocks aliases
|
|
314
310
|
export { default as BlocksIcon } from '../icons/blocks';
|
|
315
|
-
// BluetoothConnected aliases
|
|
316
|
-
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
317
311
|
// BluetoothOff aliases
|
|
318
312
|
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
313
|
+
// BluetoothConnected aliases
|
|
314
|
+
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
319
315
|
// BluetoothSearching aliases
|
|
320
316
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
321
317
|
// Bluetooth aliases
|
|
322
318
|
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
323
319
|
// Bold aliases
|
|
324
320
|
export { default as BoldIcon } from '../icons/bold';
|
|
321
|
+
// Bomb aliases
|
|
322
|
+
export { default as BombIcon } from '../icons/bomb';
|
|
325
323
|
// Bolt aliases
|
|
326
324
|
export { default as BoltIcon } from '../icons/bolt';
|
|
327
325
|
// Bone aliases
|
|
328
326
|
export { default as BoneIcon } from '../icons/bone';
|
|
329
327
|
// BookA aliases
|
|
330
328
|
export { default as BookAIcon } from '../icons/book-a';
|
|
331
|
-
// Bomb aliases
|
|
332
|
-
export { default as BombIcon } from '../icons/bomb';
|
|
333
329
|
// BookAlert aliases
|
|
334
330
|
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
335
331
|
// BookAudio aliases
|
|
@@ -348,26 +344,26 @@ export { default as BookHeartIcon } from '../icons/book-heart';
|
|
|
348
344
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
349
345
|
// BookKey aliases
|
|
350
346
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
351
|
-
// BookLock aliases
|
|
352
|
-
export { default as BookLockIcon } from '../icons/book-lock';
|
|
353
347
|
// BookMarked aliases
|
|
354
348
|
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
355
|
-
//
|
|
356
|
-
export { default as
|
|
349
|
+
// BookLock aliases
|
|
350
|
+
export { default as BookLockIcon } from '../icons/book-lock';
|
|
357
351
|
// BookOpenCheck aliases
|
|
358
352
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
353
|
+
// BookMinus aliases
|
|
354
|
+
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
359
355
|
// BookOpenText aliases
|
|
360
356
|
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
361
357
|
// BookOpen aliases
|
|
362
358
|
export { default as BookOpenIcon } from '../icons/book-open';
|
|
363
359
|
// BookPlus aliases
|
|
364
360
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
361
|
+
// BookSearch aliases
|
|
362
|
+
export { default as BookSearchIcon } from '../icons/book-search';
|
|
365
363
|
// BookText aliases
|
|
366
364
|
export { default as BookTextIcon } from '../icons/book-text';
|
|
367
365
|
// BookType aliases
|
|
368
366
|
export { default as BookTypeIcon } from '../icons/book-type';
|
|
369
|
-
// BookSearch aliases
|
|
370
|
-
export { default as BookSearchIcon } from '../icons/book-search';
|
|
371
367
|
// BookUp2 aliases
|
|
372
368
|
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
373
369
|
// BookUp aliases
|
|
@@ -382,26 +378,26 @@ export { default as BookIcon } from '../icons/book';
|
|
|
382
378
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
383
379
|
// BookmarkPlus aliases
|
|
384
380
|
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
385
|
-
// BookmarkMinus aliases
|
|
386
|
-
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
387
|
-
// Bookmark aliases
|
|
388
|
-
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
389
381
|
// BookmarkX aliases
|
|
390
382
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
383
|
+
// BookmarkMinus aliases
|
|
384
|
+
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
391
385
|
// BoomBox aliases
|
|
392
386
|
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
387
|
+
// Bookmark aliases
|
|
388
|
+
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
393
389
|
// BotMessageSquare aliases
|
|
394
390
|
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
395
391
|
// BotOff aliases
|
|
396
392
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
397
|
-
// Bot aliases
|
|
398
|
-
export { default as BotIcon } from '../icons/bot';
|
|
399
393
|
// BottleWine aliases
|
|
400
394
|
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
401
|
-
//
|
|
402
|
-
export { default as
|
|
395
|
+
// Bot aliases
|
|
396
|
+
export { default as BotIcon } from '../icons/bot';
|
|
403
397
|
// BowArrow aliases
|
|
404
398
|
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
399
|
+
// Box aliases
|
|
400
|
+
export { default as BoxIcon } from '../icons/box';
|
|
405
401
|
// Boxes aliases
|
|
406
402
|
export { default as BoxesIcon } from '../icons/boxes';
|
|
407
403
|
// Brackets aliases
|
|
@@ -430,22 +426,22 @@ export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
|
430
426
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
431
427
|
// BrushCleaning aliases
|
|
432
428
|
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
433
|
-
// Brush aliases
|
|
434
|
-
export { default as BrushIcon } from '../icons/brush';
|
|
435
429
|
// Bubbles aliases
|
|
436
430
|
export { default as BubblesIcon } from '../icons/bubbles';
|
|
437
431
|
// BugOff aliases
|
|
438
432
|
export { default as BugOffIcon } from '../icons/bug-off';
|
|
439
|
-
//
|
|
440
|
-
export { default as
|
|
433
|
+
// Brush aliases
|
|
434
|
+
export { default as BrushIcon } from '../icons/brush';
|
|
441
435
|
// Bug aliases
|
|
442
436
|
export { default as BugIcon } from '../icons/bug';
|
|
443
437
|
// Building2 aliases
|
|
444
438
|
export { default as Building2Icon } from '../icons/building-2';
|
|
445
|
-
//
|
|
446
|
-
export { default as
|
|
439
|
+
// BugPlay aliases
|
|
440
|
+
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
447
441
|
// BusFront aliases
|
|
448
442
|
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
443
|
+
// Building aliases
|
|
444
|
+
export { default as BuildingIcon } from '../icons/building';
|
|
449
445
|
// Bus aliases
|
|
450
446
|
export { default as BusIcon } from '../icons/bus';
|
|
451
447
|
// CableCar aliases
|
|
@@ -454,26 +450,26 @@ export { default as CableCarIcon } from '../icons/cable-car';
|
|
|
454
450
|
export { default as CableIcon } from '../icons/cable';
|
|
455
451
|
// CakeSlice aliases
|
|
456
452
|
export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
457
|
-
// Cake aliases
|
|
458
|
-
export { default as CakeIcon } from '../icons/cake';
|
|
459
453
|
// Calculator aliases
|
|
460
454
|
export { default as CalculatorIcon } from '../icons/calculator';
|
|
461
|
-
// CalendarArrowDown aliases
|
|
462
|
-
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
463
455
|
// Calendar1 aliases
|
|
464
456
|
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
457
|
+
// Cake aliases
|
|
458
|
+
export { default as CakeIcon } from '../icons/cake';
|
|
459
|
+
// CalendarArrowDown aliases
|
|
460
|
+
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
465
461
|
// CalendarArrowUp aliases
|
|
466
462
|
export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
467
463
|
// CalendarCheck2 aliases
|
|
468
464
|
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
469
|
-
// CalendarClock aliases
|
|
470
|
-
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
471
465
|
// CalendarCheck aliases
|
|
472
466
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
473
|
-
//
|
|
474
|
-
export { default as
|
|
467
|
+
// CalendarClock aliases
|
|
468
|
+
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
475
469
|
// CalendarCog aliases
|
|
476
470
|
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
471
|
+
// CalendarDays aliases
|
|
472
|
+
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
477
473
|
// CalendarFold aliases
|
|
478
474
|
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
479
475
|
// CalendarHeart aliases
|
|
@@ -482,20 +478,20 @@ export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
|
482
478
|
export { default as CalendarMinus2Icon } from '../icons/calendar-minus-2';
|
|
483
479
|
// CalendarMinus aliases
|
|
484
480
|
export { default as CalendarMinusIcon } from '../icons/calendar-minus';
|
|
485
|
-
// CalendarPlus2 aliases
|
|
486
|
-
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
487
481
|
// CalendarOff aliases
|
|
488
482
|
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
489
|
-
//
|
|
490
|
-
export { default as
|
|
483
|
+
// CalendarPlus2 aliases
|
|
484
|
+
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
491
485
|
// CalendarRange aliases
|
|
492
486
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
487
|
+
// CalendarPlus aliases
|
|
488
|
+
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
493
489
|
// CalendarSearch aliases
|
|
494
490
|
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
495
|
-
// CalendarSync aliases
|
|
496
|
-
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
497
491
|
// CalendarX2 aliases
|
|
498
492
|
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
493
|
+
// CalendarSync aliases
|
|
494
|
+
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
499
495
|
// CalendarX aliases
|
|
500
496
|
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
501
497
|
// Calendar aliases
|
|
@@ -510,10 +506,10 @@ export { default as CameraIcon } from '../icons/camera';
|
|
|
510
506
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
511
507
|
// CandyOff aliases
|
|
512
508
|
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
513
|
-
// CannabisOff aliases
|
|
514
|
-
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
515
509
|
// Candy aliases
|
|
516
510
|
export { default as CandyIcon } from '../icons/candy';
|
|
511
|
+
// CannabisOff aliases
|
|
512
|
+
export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
517
513
|
// Cannabis aliases
|
|
518
514
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
519
515
|
// CaptionsOff aliases
|
|
@@ -526,36 +522,36 @@ export { default as CarFrontIcon } from '../icons/car-front';
|
|
|
526
522
|
export { default as CarIcon } from '../icons/car';
|
|
527
523
|
// Caravan aliases
|
|
528
524
|
export { default as CaravanIcon } from '../icons/caravan';
|
|
529
|
-
// CardSim aliases
|
|
530
|
-
export { default as CardSimIcon } from '../icons/card-sim';
|
|
531
525
|
// Carrot aliases
|
|
532
526
|
export { default as CarrotIcon } from '../icons/carrot';
|
|
533
|
-
//
|
|
534
|
-
export { default as
|
|
527
|
+
// CardSim aliases
|
|
528
|
+
export { default as CardSimIcon } from '../icons/card-sim';
|
|
535
529
|
// CaseSensitive aliases
|
|
536
530
|
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
531
|
+
// CaseLower aliases
|
|
532
|
+
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
537
533
|
// CaseUpper aliases
|
|
538
534
|
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
539
|
-
// Cast aliases
|
|
540
|
-
export { default as CastIcon } from '../icons/cast';
|
|
541
535
|
// CassetteTape aliases
|
|
542
536
|
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
543
537
|
// Castle aliases
|
|
544
538
|
export { default as CastleIcon } from '../icons/castle';
|
|
539
|
+
// Cast aliases
|
|
540
|
+
export { default as CastIcon } from '../icons/cast';
|
|
545
541
|
// Cat aliases
|
|
546
542
|
export { default as CatIcon } from '../icons/cat';
|
|
547
543
|
// Cctv aliases
|
|
548
544
|
export { default as CctvIcon } from '../icons/cctv';
|
|
549
545
|
// ChartBarDecreasing aliases
|
|
550
546
|
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
551
|
-
// ChartBarIncreasing aliases
|
|
552
|
-
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
553
547
|
// ChartBarStacked aliases
|
|
554
548
|
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
555
|
-
//
|
|
556
|
-
export { default as
|
|
549
|
+
// ChartBarIncreasing aliases
|
|
550
|
+
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
557
551
|
// ChartColumnStacked aliases
|
|
558
552
|
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
553
|
+
// ChartColumnDecreasing aliases
|
|
554
|
+
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
559
555
|
// ChartGantt aliases
|
|
560
556
|
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
561
557
|
// ChartNetwork aliases
|
|
@@ -564,48 +560,52 @@ export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
|
564
560
|
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
565
561
|
// ChartNoAxesCombined aliases
|
|
566
562
|
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
567
|
-
// ChartSpline aliases
|
|
568
|
-
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
569
563
|
// CheckCheck aliases
|
|
570
564
|
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
571
|
-
//
|
|
572
|
-
export { default as
|
|
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
|
+
// ChartSpline aliases
|
|
570
|
+
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
573
571
|
// Check aliases
|
|
574
572
|
export { default as CheckIcon } from '../icons/check';
|
|
573
|
+
// CheckLine aliases
|
|
574
|
+
export { default as CheckLineIcon } from '../icons/check-line';
|
|
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';
|
|
579
|
-
// ChessKing aliases
|
|
580
|
-
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
581
577
|
// Cherry aliases
|
|
582
578
|
export { default as CherryIcon } from '../icons/cherry';
|
|
579
|
+
// ChessKing aliases
|
|
580
|
+
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
583
581
|
// ChessKnight aliases
|
|
584
582
|
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
583
|
+
// ChessBishop aliases
|
|
584
|
+
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
585
585
|
// ChessPawn aliases
|
|
586
586
|
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
587
587
|
// ChessQueen aliases
|
|
588
588
|
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
589
|
+
// ChessRook aliases
|
|
590
|
+
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
589
591
|
// ChevronDown aliases
|
|
590
592
|
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
591
593
|
// ChevronFirst aliases
|
|
592
594
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
593
|
-
// ChessRook aliases
|
|
594
|
-
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
595
|
-
// ChevronLast aliases
|
|
596
|
-
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
597
|
-
// ChevronRight aliases
|
|
598
|
-
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
599
595
|
// ChevronLeft aliases
|
|
600
596
|
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
597
|
+
// ChevronRight aliases
|
|
598
|
+
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
599
|
+
// ChevronLast aliases
|
|
600
|
+
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
601
601
|
// ChevronUp aliases
|
|
602
602
|
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
603
603
|
// ChevronsDownUp aliases
|
|
604
604
|
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
605
|
-
// ChevronsDown aliases
|
|
606
|
-
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
607
605
|
// ChevronsLeftRightEllipsis aliases
|
|
608
606
|
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
607
|
+
// ChevronsDown aliases
|
|
608
|
+
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
609
609
|
// ChevronsLeftRight aliases
|
|
610
610
|
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
611
611
|
// ChevronsLeft aliases
|
|
@@ -620,80 +620,80 @@ export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
|
620
620
|
export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
621
621
|
// Church aliases
|
|
622
622
|
export { default as ChurchIcon } from '../icons/church';
|
|
623
|
-
// Cigarette aliases
|
|
624
|
-
export { default as CigaretteIcon } from '../icons/cigarette';
|
|
625
623
|
// CigaretteOff aliases
|
|
626
624
|
export { default as CigaretteOffIcon } from '../icons/cigarette-off';
|
|
625
|
+
// Cigarette aliases
|
|
626
|
+
export { default as CigaretteIcon } from '../icons/cigarette';
|
|
627
627
|
// CircleDashed aliases
|
|
628
628
|
export { default as CircleDashedIcon } from '../icons/circle-dashed';
|
|
629
|
-
// CircleDotDashed aliases
|
|
630
|
-
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
631
629
|
// CircleDollarSign aliases
|
|
632
630
|
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
633
|
-
//
|
|
634
|
-
export { default as
|
|
631
|
+
// CircleDotDashed aliases
|
|
632
|
+
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
635
633
|
// CircleEqual aliases
|
|
636
634
|
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
635
|
+
// CircleDot aliases
|
|
636
|
+
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
637
637
|
// CircleEllipsis aliases
|
|
638
638
|
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
639
|
-
// CircleFadingPlus aliases
|
|
640
|
-
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
641
639
|
// CircleFadingArrowUp aliases
|
|
642
640
|
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
643
|
-
//
|
|
644
|
-
export { default as
|
|
641
|
+
// CircleFadingPlus aliases
|
|
642
|
+
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
645
643
|
// CircleOff aliases
|
|
646
644
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
647
645
|
// CirclePoundSterling aliases
|
|
648
646
|
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
647
|
+
// CirclePile aliases
|
|
648
|
+
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
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
|
-
// CircleStar aliases
|
|
654
|
-
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
655
653
|
// Circle aliases
|
|
656
654
|
export { default as CircleIcon } from '../icons/circle';
|
|
655
|
+
// CircleStar aliases
|
|
656
|
+
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
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';
|
|
661
663
|
// Clapperboard aliases
|
|
662
664
|
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
663
665
|
// ClipboardClock aliases
|
|
664
666
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
665
|
-
// ClipboardCheck aliases
|
|
666
|
-
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
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';
|
|
669
671
|
// ClipboardList aliases
|
|
670
672
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
671
673
|
// ClipboardMinus aliases
|
|
672
674
|
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';
|
|
679
677
|
// ClipboardX aliases
|
|
680
678
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
681
679
|
// Clipboard aliases
|
|
682
680
|
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
683
|
-
//
|
|
684
|
-
export { default as
|
|
681
|
+
// ClipboardType aliases
|
|
682
|
+
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
685
683
|
// Clock1 aliases
|
|
686
684
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
685
|
+
// Clock10 aliases
|
|
686
|
+
export { default as Clock10Icon } from '../icons/clock-10';
|
|
687
687
|
// Clock11 aliases
|
|
688
688
|
export { default as Clock11Icon } from '../icons/clock-11';
|
|
689
|
-
// Clock12 aliases
|
|
690
|
-
export { default as Clock12Icon } from '../icons/clock-12';
|
|
691
|
-
// Clock3 aliases
|
|
692
|
-
export { default as Clock3Icon } from '../icons/clock-3';
|
|
693
689
|
// Clock2 aliases
|
|
694
690
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
691
|
+
// Clock3 aliases
|
|
692
|
+
export { default as Clock3Icon } from '../icons/clock-3';
|
|
695
693
|
// Clock4 aliases
|
|
696
694
|
export { default as Clock4Icon } from '../icons/clock-4';
|
|
695
|
+
// Clock12 aliases
|
|
696
|
+
export { default as Clock12Icon } from '../icons/clock-12';
|
|
697
697
|
// Clock5 aliases
|
|
698
698
|
export { default as Clock5Icon } from '../icons/clock-5';
|
|
699
699
|
// Clock6 aliases
|
|
@@ -708,88 +708,88 @@ export { default as Clock9Icon } from '../icons/clock-9';
|
|
|
708
708
|
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
709
709
|
// ClockArrowDown aliases
|
|
710
710
|
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
711
|
-
// ClockArrowUp aliases
|
|
712
|
-
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
713
711
|
// ClockCheck aliases
|
|
714
712
|
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
713
|
+
// ClockArrowUp aliases
|
|
714
|
+
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
715
715
|
// ClockFading aliases
|
|
716
716
|
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
717
|
-
// Clock aliases
|
|
718
|
-
export { default as ClockIcon } from '../icons/clock';
|
|
719
717
|
// ClockPlus aliases
|
|
720
718
|
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
721
719
|
// ClosedCaption aliases
|
|
722
720
|
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
721
|
+
// Clock aliases
|
|
722
|
+
export { default as ClockIcon } from '../icons/clock';
|
|
723
723
|
// CloudAlert aliases
|
|
724
724
|
export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
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
|
-
// CloudCog aliases
|
|
730
|
-
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
731
|
-
// CloudFog aliases
|
|
732
|
-
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
733
729
|
// CloudDrizzle aliases
|
|
734
730
|
export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
731
|
+
// CloudCog aliases
|
|
732
|
+
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
735
733
|
// CloudHail aliases
|
|
736
734
|
export { default as CloudHailIcon } from '../icons/cloud-hail';
|
|
735
|
+
// CloudFog aliases
|
|
736
|
+
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
737
737
|
// CloudLightning aliases
|
|
738
738
|
export { default as CloudLightningIcon } from '../icons/cloud-lightning';
|
|
739
739
|
// CloudOff aliases
|
|
740
740
|
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
741
|
-
// CloudRainWind aliases
|
|
742
|
-
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
743
741
|
// CloudMoonRain aliases
|
|
744
742
|
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
745
743
|
// CloudMoon aliases
|
|
746
744
|
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
745
|
+
// CloudRainWind aliases
|
|
746
|
+
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
747
747
|
// CloudRain aliases
|
|
748
748
|
export { default as CloudRainIcon } from '../icons/cloud-rain';
|
|
749
749
|
// CloudSnow aliases
|
|
750
750
|
export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
751
751
|
// CloudSunRain aliases
|
|
752
752
|
export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
753
|
-
// Cloudy aliases
|
|
754
|
-
export { default as CloudyIcon } from '../icons/cloudy';
|
|
755
753
|
// CloudSun aliases
|
|
756
754
|
export { default as CloudSunIcon } from '../icons/cloud-sun';
|
|
757
755
|
// CloudSync aliases
|
|
758
756
|
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
757
|
+
// Cloud aliases
|
|
758
|
+
export { default as CloudIcon } from '../icons/cloud';
|
|
759
|
+
// Cloudy aliases
|
|
760
|
+
export { default as CloudyIcon } from '../icons/cloudy';
|
|
759
761
|
// Clover aliases
|
|
760
762
|
export { default as CloverIcon } from '../icons/clover';
|
|
761
763
|
// Club aliases
|
|
762
764
|
export { default as ClubIcon } from '../icons/club';
|
|
763
|
-
// Cloud aliases
|
|
764
|
-
export { default as CloudIcon } from '../icons/cloud';
|
|
765
765
|
// Code aliases
|
|
766
766
|
export { default as CodeIcon } from '../icons/code';
|
|
767
|
-
// Codesandbox aliases
|
|
768
|
-
export { default as CodesandboxIcon } from '../icons/codesandbox';
|
|
769
767
|
// Codepen aliases
|
|
770
768
|
export { default as CodepenIcon } from '../icons/codepen';
|
|
771
769
|
// Coffee aliases
|
|
772
770
|
export { default as CoffeeIcon } from '../icons/coffee';
|
|
773
771
|
// Cog aliases
|
|
774
772
|
export { default as CogIcon } from '../icons/cog';
|
|
773
|
+
// Codesandbox aliases
|
|
774
|
+
export { default as CodesandboxIcon } from '../icons/codesandbox';
|
|
775
775
|
// Coins aliases
|
|
776
776
|
export { default as CoinsIcon } from '../icons/coins';
|
|
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';
|
|
781
779
|
// Command aliases
|
|
782
780
|
export { default as CommandIcon } from '../icons/command';
|
|
783
781
|
// Compass aliases
|
|
784
782
|
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
|
|
788
788
|
export { default as ComputerIcon } from '../icons/computer';
|
|
789
|
-
// ConciergeBell aliases
|
|
790
|
-
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
791
789
|
// Cone aliases
|
|
792
790
|
export { default as ConeIcon } from '../icons/cone';
|
|
791
|
+
// ConciergeBell aliases
|
|
792
|
+
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
793
793
|
// Construction aliases
|
|
794
794
|
export { default as ConstructionIcon } from '../icons/construction';
|
|
795
795
|
// Contact aliases
|
|
@@ -798,10 +798,10 @@ 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
|
-
// Cookie aliases
|
|
802
|
-
export { default as CookieIcon } from '../icons/cookie';
|
|
803
801
|
// CookingPot aliases
|
|
804
802
|
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
803
|
+
// Cookie aliases
|
|
804
|
+
export { default as CookieIcon } from '../icons/cookie';
|
|
805
805
|
// CopyCheck aliases
|
|
806
806
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
807
807
|
// CopyMinus aliases
|
|
@@ -814,30 +814,30 @@ export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
|
814
814
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
815
815
|
// Copy aliases
|
|
816
816
|
export { default as CopyIcon } from '../icons/copy';
|
|
817
|
-
// Copyright aliases
|
|
818
|
-
export { default as CopyrightIcon } from '../icons/copyright';
|
|
819
817
|
// Copyleft aliases
|
|
820
818
|
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
821
819
|
// CornerDownLeft aliases
|
|
822
820
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
821
|
+
// Copyright aliases
|
|
822
|
+
export { default as CopyrightIcon } from '../icons/copyright';
|
|
823
823
|
// CornerDownRight aliases
|
|
824
824
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
825
825
|
// CornerLeftDown aliases
|
|
826
826
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
827
827
|
// CornerLeftUp aliases
|
|
828
828
|
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
829
|
-
// CornerRightDown aliases
|
|
830
|
-
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
831
|
-
// CornerRightUp aliases
|
|
832
|
-
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
833
829
|
// CornerUpLeft aliases
|
|
834
830
|
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
831
|
+
// CornerRightUp aliases
|
|
832
|
+
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
833
|
+
// CornerRightDown aliases
|
|
834
|
+
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
835
835
|
// CornerUpRight aliases
|
|
836
836
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
837
|
-
// Cpu aliases
|
|
838
|
-
export { default as CpuIcon } from '../icons/cpu';
|
|
839
837
|
// CreativeCommons aliases
|
|
840
838
|
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
839
|
+
// Cpu aliases
|
|
840
|
+
export { default as CpuIcon } from '../icons/cpu';
|
|
841
841
|
// CreditCard aliases
|
|
842
842
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
843
843
|
// Croissant aliases
|
|
@@ -848,46 +848,46 @@ export { default as CropIcon } from '../icons/crop';
|
|
|
848
848
|
export { default as CrossIcon } from '../icons/cross';
|
|
849
849
|
// Crosshair aliases
|
|
850
850
|
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
851
|
-
// Crown aliases
|
|
852
|
-
export { default as CrownIcon } from '../icons/crown';
|
|
853
851
|
// Cuboid aliases
|
|
854
852
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
855
|
-
//
|
|
856
|
-
export { default as
|
|
853
|
+
// Crown aliases
|
|
854
|
+
export { default as CrownIcon } from '../icons/crown';
|
|
857
855
|
// CupSoda aliases
|
|
858
856
|
export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
859
857
|
// Cylinder aliases
|
|
860
858
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
859
|
+
// Currency aliases
|
|
860
|
+
export { default as CurrencyIcon } from '../icons/currency';
|
|
861
861
|
// Dam aliases
|
|
862
862
|
export { default as DamIcon } from '../icons/dam';
|
|
863
|
-
// DatabaseBackup aliases
|
|
864
|
-
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
865
863
|
// DatabaseZap aliases
|
|
866
864
|
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
867
|
-
//
|
|
868
|
-
export { default as
|
|
865
|
+
// DatabaseBackup aliases
|
|
866
|
+
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
869
867
|
// DecimalsArrowLeft aliases
|
|
870
868
|
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
871
869
|
// DecimalsArrowRight aliases
|
|
872
870
|
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
871
|
+
// Database aliases
|
|
872
|
+
export { default as DatabaseIcon } from '../icons/database';
|
|
873
873
|
// Delete aliases
|
|
874
874
|
export { default as DeleteIcon } from '../icons/delete';
|
|
875
875
|
// Dessert aliases
|
|
876
876
|
export { default as DessertIcon } from '../icons/dessert';
|
|
877
|
-
// DiamondMinus aliases
|
|
878
|
-
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
879
877
|
// Diameter aliases
|
|
880
878
|
export { default as DiameterIcon } from '../icons/diameter';
|
|
879
|
+
// DiamondMinus aliases
|
|
880
|
+
export { default as DiamondMinusIcon } from '../icons/diamond-minus';
|
|
881
881
|
// DiamondPlus aliases
|
|
882
882
|
export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
883
883
|
// Diamond aliases
|
|
884
884
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
885
885
|
// Dice1 aliases
|
|
886
886
|
export { default as Dice1Icon } from '../icons/dice-1';
|
|
887
|
-
// Dice2 aliases
|
|
888
|
-
export { default as Dice2Icon } from '../icons/dice-2';
|
|
889
887
|
// Dice3 aliases
|
|
890
888
|
export { default as Dice3Icon } from '../icons/dice-3';
|
|
889
|
+
// Dice2 aliases
|
|
890
|
+
export { default as Dice2Icon } from '../icons/dice-2';
|
|
891
891
|
// Dice4 aliases
|
|
892
892
|
export { default as Dice4Icon } from '../icons/dice-4';
|
|
893
893
|
// Dice5 aliases
|
|
@@ -898,14 +898,14 @@ export { default as Dice6Icon } from '../icons/dice-6';
|
|
|
898
898
|
export { default as DicesIcon } from '../icons/dices';
|
|
899
899
|
// Diff aliases
|
|
900
900
|
export { default as DiffIcon } from '../icons/diff';
|
|
901
|
-
// Disc2 aliases
|
|
902
|
-
export { default as Disc2Icon } from '../icons/disc-2';
|
|
903
901
|
// Disc3 aliases
|
|
904
902
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
905
|
-
// Disc aliases
|
|
906
|
-
export { default as DiscIcon } from '../icons/disc';
|
|
907
903
|
// DiscAlbum aliases
|
|
908
904
|
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
905
|
+
// Disc2 aliases
|
|
906
|
+
export { default as Disc2Icon } from '../icons/disc-2';
|
|
907
|
+
// Disc aliases
|
|
908
|
+
export { default as DiscIcon } from '../icons/disc';
|
|
909
909
|
// Divide aliases
|
|
910
910
|
export { default as DivideIcon } from '../icons/divide';
|
|
911
911
|
// DnaOff aliases
|
|
@@ -958,46 +958,46 @@ export { default as EarOffIcon } from '../icons/ear-off';
|
|
|
958
958
|
export { default as EarIcon } from '../icons/ear';
|
|
959
959
|
// EarthLock aliases
|
|
960
960
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
961
|
-
// Eclipse aliases
|
|
962
|
-
export { default as EclipseIcon } from '../icons/eclipse';
|
|
963
961
|
// EggFried aliases
|
|
964
962
|
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
965
963
|
// EggOff aliases
|
|
966
964
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
965
|
+
// Eclipse aliases
|
|
966
|
+
export { default as EclipseIcon } from '../icons/eclipse';
|
|
967
967
|
// Egg aliases
|
|
968
968
|
export { default as EggIcon } from '../icons/egg';
|
|
969
969
|
// EqualApproximately aliases
|
|
970
970
|
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
971
|
-
// EqualNot aliases
|
|
972
|
-
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
973
971
|
// Equal aliases
|
|
974
972
|
export { default as EqualIcon } from '../icons/equal';
|
|
973
|
+
// EqualNot aliases
|
|
974
|
+
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
975
975
|
// EthernetPort aliases
|
|
976
976
|
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
977
977
|
// Eraser aliases
|
|
978
978
|
export { default as EraserIcon } from '../icons/eraser';
|
|
979
|
-
// Euro aliases
|
|
980
|
-
export { default as EuroIcon } from '../icons/euro';
|
|
981
979
|
// EvCharger aliases
|
|
982
980
|
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
983
|
-
//
|
|
984
|
-
export { default as
|
|
981
|
+
// Euro aliases
|
|
982
|
+
export { default as EuroIcon } from '../icons/euro';
|
|
985
983
|
// ExternalLink aliases
|
|
986
984
|
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
985
|
+
// Expand aliases
|
|
986
|
+
export { default as ExpandIcon } from '../icons/expand';
|
|
987
987
|
// EyeClosed aliases
|
|
988
988
|
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
989
989
|
// EyeOff aliases
|
|
990
990
|
export { default as EyeOffIcon } from '../icons/eye-off';
|
|
991
991
|
// Eye aliases
|
|
992
992
|
export { default as EyeIcon } from '../icons/eye';
|
|
993
|
-
// Facebook aliases
|
|
994
|
-
export { default as FacebookIcon } from '../icons/facebook';
|
|
995
|
-
// Factory aliases
|
|
996
|
-
export { default as FactoryIcon } from '../icons/factory';
|
|
997
993
|
// Fan aliases
|
|
998
994
|
export { default as FanIcon } from '../icons/fan';
|
|
999
995
|
// FastForward aliases
|
|
1000
996
|
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
1001
|
// Feather aliases
|
|
1002
1002
|
export { default as FeatherIcon } from '../icons/feather';
|
|
1003
1003
|
// Fence aliases
|
|
@@ -1010,30 +1010,30 @@ export { default as FigmaIcon } from '../icons/figma';
|
|
|
1010
1010
|
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1011
1011
|
// FileBox aliases
|
|
1012
1012
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1013
|
-
// FileClock aliases
|
|
1014
|
-
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1015
1013
|
// FileCheck aliases
|
|
1016
1014
|
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1017
1015
|
// FileCode aliases
|
|
1018
1016
|
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1017
|
+
// FileClock aliases
|
|
1018
|
+
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1019
1019
|
// FileDiff aliases
|
|
1020
1020
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1021
|
-
// FileDigit aliases
|
|
1022
|
-
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1023
1021
|
// FileDown aliases
|
|
1024
1022
|
export { default as FileDownIcon } from '../icons/file-down';
|
|
1025
|
-
//
|
|
1026
|
-
export { default as
|
|
1023
|
+
// FileDigit aliases
|
|
1024
|
+
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1027
1025
|
// FileImage aliases
|
|
1028
1026
|
export { default as FileImageIcon } from '../icons/file-image';
|
|
1029
1027
|
// FileInput aliases
|
|
1030
1028
|
export { default as FileInputIcon } from '../icons/file-input';
|
|
1029
|
+
// FileHeart aliases
|
|
1030
|
+
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1031
1031
|
// FileMinus aliases
|
|
1032
1032
|
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1033
|
-
// FileMusic aliases
|
|
1034
|
-
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1035
1033
|
// FileOutput aliases
|
|
1036
1034
|
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1035
|
+
// FileMusic aliases
|
|
1036
|
+
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1037
1037
|
// FilePlus aliases
|
|
1038
1038
|
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1039
1039
|
// FileScan aliases
|
|
@@ -1054,10 +1054,10 @@ export { default as FileTerminalIcon } from '../icons/file-terminal';
|
|
|
1054
1054
|
export { default as FileTextIcon } from '../icons/file-text';
|
|
1055
1055
|
// FileType aliases
|
|
1056
1056
|
export { default as FileTypeIcon } from '../icons/file-type';
|
|
1057
|
-
// FileUser aliases
|
|
1058
|
-
export { default as FileUserIcon } from '../icons/file-user';
|
|
1059
1057
|
// FileUp aliases
|
|
1060
1058
|
export { default as FileUpIcon } from '../icons/file-up';
|
|
1059
|
+
// FileUser aliases
|
|
1060
|
+
export { default as FileUserIcon } from '../icons/file-user';
|
|
1061
1061
|
// FileVolume aliases
|
|
1062
1062
|
export { default as FileVolumeIcon } from '../icons/file-volume';
|
|
1063
1063
|
// FileX aliases
|
|
@@ -1074,56 +1074,56 @@ export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
|
1074
1074
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1075
1075
|
// FishSymbol aliases
|
|
1076
1076
|
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1077
|
-
// Fish aliases
|
|
1078
|
-
export { default as FishIcon } from '../icons/fish';
|
|
1079
1077
|
// FishingHook aliases
|
|
1080
1078
|
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1079
|
+
// Fish aliases
|
|
1080
|
+
export { default as FishIcon } from '../icons/fish';
|
|
1081
1081
|
// FlagOff aliases
|
|
1082
1082
|
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1083
|
-
// FlagTriangleLeft aliases
|
|
1084
|
-
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1085
1083
|
// FlagTriangleRight aliases
|
|
1086
1084
|
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1087
1085
|
// Flag aliases
|
|
1088
1086
|
export { default as FlagIcon } from '../icons/flag';
|
|
1087
|
+
// FlagTriangleLeft aliases
|
|
1088
|
+
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1089
1089
|
// FlameKindling aliases
|
|
1090
1090
|
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1091
|
-
//
|
|
1092
|
-
export { default as
|
|
1091
|
+
// FlashlightOff aliases
|
|
1092
|
+
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1093
1093
|
// Flame aliases
|
|
1094
1094
|
export { default as FlameIcon } from '../icons/flame';
|
|
1095
|
+
// Flashlight aliases
|
|
1096
|
+
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1095
1097
|
// FlaskConical aliases
|
|
1096
1098
|
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1097
|
-
// FlashlightOff aliases
|
|
1098
|
-
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1099
1099
|
// FlaskConicalOff aliases
|
|
1100
1100
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1101
1101
|
// FlaskRound aliases
|
|
1102
1102
|
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1103
|
-
// FlipHorizontal2 aliases
|
|
1104
|
-
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1105
1103
|
// FlipHorizontal aliases
|
|
1106
1104
|
export { default as FlipHorizontalIcon } from '../icons/flip-horizontal';
|
|
1107
|
-
//
|
|
1108
|
-
export { default as
|
|
1109
|
-
// Flower aliases
|
|
1110
|
-
export { default as FlowerIcon } from '../icons/flower';
|
|
1105
|
+
// FlipHorizontal2 aliases
|
|
1106
|
+
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1111
1107
|
// FlipVertical aliases
|
|
1112
1108
|
export { default as FlipVerticalIcon } from '../icons/flip-vertical';
|
|
1109
|
+
// FlipVertical2 aliases
|
|
1110
|
+
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1113
1111
|
// Flower2 aliases
|
|
1114
1112
|
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1115
|
-
//
|
|
1116
|
-
export { default as
|
|
1113
|
+
// Flower aliases
|
|
1114
|
+
export { default as FlowerIcon } from '../icons/flower';
|
|
1117
1115
|
// Focus aliases
|
|
1118
1116
|
export { default as FocusIcon } from '../icons/focus';
|
|
1119
|
-
//
|
|
1120
|
-
export { default as
|
|
1117
|
+
// FoldHorizontal aliases
|
|
1118
|
+
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1121
1119
|
// FolderArchive aliases
|
|
1122
1120
|
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1123
|
-
//
|
|
1124
|
-
export { default as
|
|
1121
|
+
// FoldVertical aliases
|
|
1122
|
+
export { default as FoldVerticalIcon } from '../icons/fold-vertical';
|
|
1125
1123
|
// FolderClock aliases
|
|
1126
1124
|
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1125
|
+
// FolderCheck aliases
|
|
1126
|
+
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1127
1127
|
// FolderClosed aliases
|
|
1128
1128
|
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1129
1129
|
// FolderCode aliases
|
|
@@ -1132,26 +1132,26 @@ export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
|
1132
1132
|
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1133
1133
|
// FolderDown aliases
|
|
1134
1134
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1135
|
-
// FolderGit2 aliases
|
|
1136
|
-
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1137
|
-
// FolderGit aliases
|
|
1138
|
-
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1139
1135
|
// FolderHeart aliases
|
|
1140
1136
|
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1137
|
+
// FolderGit aliases
|
|
1138
|
+
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1139
|
+
// FolderGit2 aliases
|
|
1140
|
+
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1141
1141
|
// FolderInput aliases
|
|
1142
1142
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1143
1143
|
// FolderKanban aliases
|
|
1144
1144
|
export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
1145
|
-
// FolderKey aliases
|
|
1146
|
-
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1147
1145
|
// FolderLock aliases
|
|
1148
1146
|
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1147
|
+
// FolderKey aliases
|
|
1148
|
+
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1149
1149
|
// FolderMinus aliases
|
|
1150
1150
|
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1151
|
-
// FolderOpenDot aliases
|
|
1152
|
-
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1153
1151
|
// FolderOpen aliases
|
|
1154
1152
|
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1153
|
+
// FolderOpenDot aliases
|
|
1154
|
+
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1155
1155
|
// FolderPlus aliases
|
|
1156
1156
|
export { default as FolderPlusIcon } from '../icons/folder-plus';
|
|
1157
1157
|
// FolderOutput aliases
|
|
@@ -1184,22 +1184,22 @@ export { default as ForkliftIcon } from '../icons/forklift';
|
|
|
1184
1184
|
export { default as FormIcon } from '../icons/form';
|
|
1185
1185
|
// Forward aliases
|
|
1186
1186
|
export { default as ForwardIcon } from '../icons/forward';
|
|
1187
|
-
// Framer aliases
|
|
1188
|
-
export { default as FramerIcon } from '../icons/framer';
|
|
1189
1187
|
// Frame aliases
|
|
1190
1188
|
export { default as FrameIcon } from '../icons/frame';
|
|
1189
|
+
// Framer aliases
|
|
1190
|
+
export { default as FramerIcon } from '../icons/framer';
|
|
1191
1191
|
// Frown aliases
|
|
1192
1192
|
export { default as FrownIcon } from '../icons/frown';
|
|
1193
1193
|
// Fuel aliases
|
|
1194
1194
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1195
1195
|
// Fullscreen aliases
|
|
1196
1196
|
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1197
|
-
// FunnelPlus aliases
|
|
1198
|
-
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1199
|
-
// GalleryHorizontal aliases
|
|
1200
|
-
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1201
1197
|
// GalleryHorizontalEnd aliases
|
|
1202
1198
|
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1199
|
+
// GalleryHorizontal aliases
|
|
1200
|
+
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1201
|
+
// FunnelPlus aliases
|
|
1202
|
+
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1203
1203
|
// GalleryThumbnails aliases
|
|
1204
1204
|
export { default as GalleryThumbnailsIcon } from '../icons/gallery-thumbnails';
|
|
1205
1205
|
// GalleryVerticalEnd aliases
|
|
@@ -1216,78 +1216,80 @@ export { default as GamepadIcon } from '../icons/gamepad';
|
|
|
1216
1216
|
export { default as GaugeIcon } from '../icons/gauge';
|
|
1217
1217
|
// Gavel aliases
|
|
1218
1218
|
export { default as GavelIcon } from '../icons/gavel';
|
|
1219
|
-
// GeorgianLari aliases
|
|
1220
|
-
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1221
1219
|
// Gem aliases
|
|
1222
1220
|
export { default as GemIcon } from '../icons/gem';
|
|
1223
1221
|
// Ghost aliases
|
|
1224
1222
|
export { default as GhostIcon } from '../icons/ghost';
|
|
1225
|
-
//
|
|
1226
|
-
export { default as
|
|
1223
|
+
// GeorgianLari aliases
|
|
1224
|
+
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1227
1225
|
// GitBranchMinus aliases
|
|
1228
1226
|
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1229
|
-
//
|
|
1230
|
-
export { default as
|
|
1227
|
+
// Gift aliases
|
|
1228
|
+
export { default as GiftIcon } from '../icons/gift';
|
|
1231
1229
|
// GitBranchPlus aliases
|
|
1232
1230
|
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1231
|
+
// GitBranch aliases
|
|
1232
|
+
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1233
1233
|
// GitCommitVertical aliases
|
|
1234
1234
|
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1235
1235
|
// GitCompareArrows aliases
|
|
1236
1236
|
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1237
|
-
// GitCompare aliases
|
|
1238
|
-
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1239
|
-
// GitGraph aliases
|
|
1240
|
-
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1241
1237
|
// GitFork aliases
|
|
1242
1238
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1243
|
-
//
|
|
1244
|
-
export { default as
|
|
1239
|
+
// GitGraph aliases
|
|
1240
|
+
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1241
|
+
// GitCompare aliases
|
|
1242
|
+
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1245
1243
|
// GitMerge aliases
|
|
1246
1244
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1245
|
+
// GitPullRequestArrow aliases
|
|
1246
|
+
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1247
1247
|
// GitPullRequestClosed aliases
|
|
1248
1248
|
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1249
|
-
// GitPullRequestCreateArrow aliases
|
|
1250
|
-
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1251
1249
|
// GitPullRequestCreate aliases
|
|
1252
1250
|
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1251
|
+
// GitPullRequestCreateArrow aliases
|
|
1252
|
+
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1253
1253
|
// GitPullRequestDraft aliases
|
|
1254
1254
|
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1255
1255
|
// GitPullRequest aliases
|
|
1256
1256
|
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1257
1257
|
// Github aliases
|
|
1258
1258
|
export { default as GithubIcon } from '../icons/github';
|
|
1259
|
-
// GlassWater aliases
|
|
1260
|
-
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1261
1259
|
// Gitlab aliases
|
|
1262
1260
|
export { default as GitlabIcon } from '../icons/gitlab';
|
|
1263
1261
|
// Glasses aliases
|
|
1264
1262
|
export { default as GlassesIcon } from '../icons/glasses';
|
|
1263
|
+
// GlassWater aliases
|
|
1264
|
+
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1265
1265
|
// GlobeLock aliases
|
|
1266
1266
|
export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
1267
|
+
// GlobeX aliases
|
|
1268
|
+
export { default as GlobeXIcon } from '../icons/globe-x';
|
|
1267
1269
|
// Globe aliases
|
|
1268
1270
|
export { default as GlobeIcon } from '../icons/globe';
|
|
1269
|
-
// Goal aliases
|
|
1270
|
-
export { default as GoalIcon } from '../icons/goal';
|
|
1271
1271
|
// Gpu aliases
|
|
1272
1272
|
export { default as GpuIcon } from '../icons/gpu';
|
|
1273
|
-
//
|
|
1274
|
-
export { default as
|
|
1273
|
+
// Goal aliases
|
|
1274
|
+
export { default as GoalIcon } from '../icons/goal';
|
|
1275
1275
|
// GraduationCap aliases
|
|
1276
1276
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1277
|
+
// Grape aliases
|
|
1278
|
+
export { default as GrapeIcon } from '../icons/grape';
|
|
1277
1279
|
// Grid3x2 aliases
|
|
1278
1280
|
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1279
1281
|
// GripHorizontal aliases
|
|
1280
1282
|
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1281
|
-
// GripVertical aliases
|
|
1282
|
-
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1283
1283
|
// Grip aliases
|
|
1284
1284
|
export { default as GripIcon } from '../icons/grip';
|
|
1285
|
+
// GripVertical aliases
|
|
1286
|
+
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1285
1287
|
// Group aliases
|
|
1286
1288
|
export { default as GroupIcon } from '../icons/group';
|
|
1287
|
-
// Ham aliases
|
|
1288
|
-
export { default as HamIcon } from '../icons/ham';
|
|
1289
1289
|
// Guitar aliases
|
|
1290
1290
|
export { default as GuitarIcon } from '../icons/guitar';
|
|
1291
|
+
// Ham aliases
|
|
1292
|
+
export { default as HamIcon } from '../icons/ham';
|
|
1291
1293
|
// Hamburger aliases
|
|
1292
1294
|
export { default as HamburgerIcon } from '../icons/hamburger';
|
|
1293
1295
|
// Hammer aliases
|
|
@@ -1296,12 +1298,12 @@ export { default as HammerIcon } from '../icons/hammer';
|
|
|
1296
1298
|
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1297
1299
|
// HandFist aliases
|
|
1298
1300
|
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1301
|
+
// HandHeart aliases
|
|
1302
|
+
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1299
1303
|
// HandMetal aliases
|
|
1300
1304
|
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1301
1305
|
// HandPlatter aliases
|
|
1302
1306
|
export { default as HandPlatterIcon } from '../icons/hand-platter';
|
|
1303
|
-
// HandHeart aliases
|
|
1304
|
-
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1305
1307
|
// Hand aliases
|
|
1306
1308
|
export { default as HandIcon } from '../icons/hand';
|
|
1307
1309
|
// Handbag aliases
|
|
@@ -1346,28 +1348,28 @@ export { default as HeadphoneOffIcon } from '../icons/headphone-off';
|
|
|
1346
1348
|
export { default as HeadphonesIcon } from '../icons/headphones';
|
|
1347
1349
|
// Headset aliases
|
|
1348
1350
|
export { default as HeadsetIcon } from '../icons/headset';
|
|
1349
|
-
// HeartHandshake aliases
|
|
1350
|
-
export { default as HeartHandshakeIcon } from '../icons/heart-handshake';
|
|
1351
1351
|
// HeartCrack aliases
|
|
1352
1352
|
export { default as HeartCrackIcon } from '../icons/heart-crack';
|
|
1353
|
+
// HeartHandshake aliases
|
|
1354
|
+
export { default as HeartHandshakeIcon } from '../icons/heart-handshake';
|
|
1353
1355
|
// HeartMinus aliases
|
|
1354
1356
|
export { default as HeartMinusIcon } from '../icons/heart-minus';
|
|
1355
1357
|
// HeartOff aliases
|
|
1356
1358
|
export { default as HeartOffIcon } from '../icons/heart-off';
|
|
1357
1359
|
// HeartPlus aliases
|
|
1358
1360
|
export { default as HeartPlusIcon } from '../icons/heart-plus';
|
|
1359
|
-
// HeartPulse aliases
|
|
1360
|
-
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1361
1361
|
// Heart aliases
|
|
1362
1362
|
export { default as HeartIcon } from '../icons/heart';
|
|
1363
|
+
// HeartPulse aliases
|
|
1364
|
+
export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
1363
1365
|
// Heater aliases
|
|
1364
1366
|
export { default as HeaterIcon } from '../icons/heater';
|
|
1365
1367
|
// Helicopter aliases
|
|
1366
1368
|
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1367
|
-
// Hexagon aliases
|
|
1368
|
-
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1369
1369
|
// Highlighter aliases
|
|
1370
1370
|
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1371
|
+
// Hexagon aliases
|
|
1372
|
+
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1371
1373
|
// History aliases
|
|
1372
1374
|
export { default as HistoryIcon } from '../icons/history';
|
|
1373
1375
|
// HopOff aliases
|
|
@@ -1380,10 +1382,10 @@ export { default as HospitalIcon } from '../icons/hospital';
|
|
|
1380
1382
|
export { default as HotelIcon } from '../icons/hotel';
|
|
1381
1383
|
// Hourglass aliases
|
|
1382
1384
|
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1383
|
-
// HouseHeart aliases
|
|
1384
|
-
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1385
1385
|
// HousePlug aliases
|
|
1386
1386
|
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1387
|
+
// HouseHeart aliases
|
|
1388
|
+
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1387
1389
|
// HousePlus aliases
|
|
1388
1390
|
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1389
1391
|
// HouseWifi aliases
|
|
@@ -1392,14 +1394,14 @@ export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
|
1392
1394
|
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1393
1395
|
// IdCard aliases
|
|
1394
1396
|
export { default as IdCardIcon } from '../icons/id-card';
|
|
1395
|
-
// ImageDown aliases
|
|
1396
|
-
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1397
1397
|
// ImageMinus aliases
|
|
1398
1398
|
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1399
|
-
//
|
|
1400
|
-
export { default as
|
|
1399
|
+
// ImageDown aliases
|
|
1400
|
+
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1401
1401
|
// ImagePlay aliases
|
|
1402
1402
|
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1403
|
+
// ImageOff aliases
|
|
1404
|
+
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1403
1405
|
// ImagePlus aliases
|
|
1404
1406
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1405
1407
|
// ImageUp aliases
|
|
@@ -1414,138 +1416,138 @@ export { default as ImagesIcon } from '../icons/images';
|
|
|
1414
1416
|
export { default as ImportIcon } from '../icons/import';
|
|
1415
1417
|
// Inbox aliases
|
|
1416
1418
|
export { default as InboxIcon } from '../icons/inbox';
|
|
1417
|
-
// IndianRupee aliases
|
|
1418
|
-
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1419
1419
|
// Infinity aliases
|
|
1420
1420
|
export { default as InfinityIcon } from '../icons/infinity';
|
|
1421
|
+
// IndianRupee aliases
|
|
1422
|
+
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1421
1423
|
// Info aliases
|
|
1422
1424
|
export { default as InfoIcon } from '../icons/info';
|
|
1423
1425
|
// InspectionPanel aliases
|
|
1424
1426
|
export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
1425
|
-
// Italic aliases
|
|
1426
|
-
export { default as ItalicIcon } from '../icons/italic';
|
|
1427
1427
|
// Instagram aliases
|
|
1428
1428
|
export { default as InstagramIcon } from '../icons/instagram';
|
|
1429
|
+
// Italic aliases
|
|
1430
|
+
export { default as ItalicIcon } from '../icons/italic';
|
|
1429
1431
|
// IterationCcw aliases
|
|
1430
1432
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1431
|
-
// IterationCw aliases
|
|
1432
|
-
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1433
1433
|
// JapaneseYen aliases
|
|
1434
1434
|
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1435
|
-
// Joystick aliases
|
|
1436
|
-
export { default as JoystickIcon } from '../icons/joystick';
|
|
1437
1435
|
// Kanban aliases
|
|
1438
1436
|
export { default as KanbanIcon } from '../icons/kanban';
|
|
1437
|
+
// IterationCw aliases
|
|
1438
|
+
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1439
|
+
// Joystick aliases
|
|
1440
|
+
export { default as JoystickIcon } from '../icons/joystick';
|
|
1439
1441
|
// Kayak aliases
|
|
1440
1442
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1441
1443
|
// KeyRound aliases
|
|
1442
1444
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1445
|
+
// Key aliases
|
|
1446
|
+
export { default as KeyIcon } from '../icons/key';
|
|
1443
1447
|
// KeySquare aliases
|
|
1444
1448
|
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1445
1449
|
// KeyboardMusic aliases
|
|
1446
1450
|
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1447
1451
|
// KeyboardOff aliases
|
|
1448
1452
|
export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
1449
|
-
// Key aliases
|
|
1450
|
-
export { default as KeyIcon } from '../icons/key';
|
|
1451
1453
|
// Keyboard aliases
|
|
1452
1454
|
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1453
1455
|
// LampCeiling aliases
|
|
1454
1456
|
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1455
1457
|
// LampDesk aliases
|
|
1456
1458
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1457
|
-
// LampWallDown aliases
|
|
1458
|
-
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1459
1459
|
// LampFloor aliases
|
|
1460
1460
|
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1461
|
+
// LampWallDown aliases
|
|
1462
|
+
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1461
1463
|
// LampWallUp aliases
|
|
1462
1464
|
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1463
1465
|
// Lamp aliases
|
|
1464
1466
|
export { default as LampIcon } from '../icons/lamp';
|
|
1465
1467
|
// LandPlot aliases
|
|
1466
1468
|
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1467
|
-
// Landmark aliases
|
|
1468
|
-
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1469
1469
|
// Languages aliases
|
|
1470
1470
|
export { default as LanguagesIcon } from '../icons/languages';
|
|
1471
|
+
// Landmark aliases
|
|
1472
|
+
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1471
1473
|
// LaptopMinimalCheck aliases
|
|
1472
1474
|
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1473
1475
|
// Laptop aliases
|
|
1474
1476
|
export { default as LaptopIcon } from '../icons/laptop';
|
|
1475
1477
|
// LassoSelect aliases
|
|
1476
1478
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1477
|
-
// Lasso aliases
|
|
1478
|
-
export { default as LassoIcon } from '../icons/lasso';
|
|
1479
1479
|
// Laugh aliases
|
|
1480
1480
|
export { default as LaughIcon } from '../icons/laugh';
|
|
1481
|
+
// Lasso aliases
|
|
1482
|
+
export { default as LassoIcon } from '../icons/lasso';
|
|
1481
1483
|
// Layers2 aliases
|
|
1482
1484
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1483
1485
|
// LayersPlus aliases
|
|
1484
1486
|
export { default as LayersPlusIcon } from '../icons/layers-plus';
|
|
1487
|
+
// LayoutGrid aliases
|
|
1488
|
+
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1485
1489
|
// LayoutDashboard aliases
|
|
1486
1490
|
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1487
1491
|
// LayoutList aliases
|
|
1488
1492
|
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1489
1493
|
// LayoutPanelLeft aliases
|
|
1490
1494
|
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1491
|
-
// LayoutGrid aliases
|
|
1492
|
-
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1493
1495
|
// LayoutPanelTop aliases
|
|
1494
1496
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1495
|
-
// LayoutTemplate aliases
|
|
1496
|
-
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1497
|
-
// Lectern aliases
|
|
1498
|
-
export { default as LecternIcon } from '../icons/lectern';
|
|
1499
1497
|
// Leaf aliases
|
|
1500
1498
|
export { default as LeafIcon } from '../icons/leaf';
|
|
1499
|
+
// LayoutTemplate aliases
|
|
1500
|
+
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1501
1501
|
// LeafyGreen aliases
|
|
1502
1502
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1503
|
+
// Lectern aliases
|
|
1504
|
+
export { default as LecternIcon } from '../icons/lectern';
|
|
1503
1505
|
// LibraryBig aliases
|
|
1504
1506
|
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1505
1507
|
// Library aliases
|
|
1506
1508
|
export { default as LibraryIcon } from '../icons/library';
|
|
1507
1509
|
// LifeBuoy aliases
|
|
1508
1510
|
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1509
|
-
// LightbulbOff aliases
|
|
1510
|
-
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1511
1511
|
// Ligature aliases
|
|
1512
1512
|
export { default as LigatureIcon } from '../icons/ligature';
|
|
1513
|
-
//
|
|
1514
|
-
export { default as
|
|
1513
|
+
// LightbulbOff aliases
|
|
1514
|
+
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1515
1515
|
// LineSquiggle aliases
|
|
1516
1516
|
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1517
|
-
//
|
|
1518
|
-
export { default as
|
|
1517
|
+
// Lightbulb aliases
|
|
1518
|
+
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1519
1519
|
// Link2 aliases
|
|
1520
1520
|
export { default as Link2Icon } from '../icons/link-2';
|
|
1521
|
+
// Link2Off aliases
|
|
1522
|
+
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1521
1523
|
// Link aliases
|
|
1522
1524
|
export { default as LinkIcon } from '../icons/link';
|
|
1523
|
-
// Linkedin aliases
|
|
1524
|
-
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1525
1525
|
// ListCheck aliases
|
|
1526
1526
|
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1527
|
+
// Linkedin aliases
|
|
1528
|
+
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1527
1529
|
// ListChecks aliases
|
|
1528
1530
|
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1529
1531
|
// ListChevronsDownUp aliases
|
|
1530
1532
|
export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-up';
|
|
1531
|
-
// ListCollapse aliases
|
|
1532
|
-
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1533
1533
|
// ListChevronsUpDown aliases
|
|
1534
1534
|
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1535
|
+
// ListCollapse aliases
|
|
1536
|
+
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1535
1537
|
// ListFilterPlus aliases
|
|
1536
1538
|
export { default as ListFilterPlusIcon } from '../icons/list-filter-plus';
|
|
1537
1539
|
// ListEnd aliases
|
|
1538
1540
|
export { default as ListEndIcon } from '../icons/list-end';
|
|
1539
1541
|
// ListFilter aliases
|
|
1540
1542
|
export { default as ListFilterIcon } from '../icons/list-filter';
|
|
1541
|
-
// ListMusic aliases
|
|
1542
|
-
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1543
1543
|
// ListMinus aliases
|
|
1544
1544
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1545
|
-
//
|
|
1546
|
-
export { default as
|
|
1545
|
+
// ListMusic aliases
|
|
1546
|
+
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1547
1547
|
// ListPlus aliases
|
|
1548
1548
|
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1549
|
+
// ListOrdered aliases
|
|
1550
|
+
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1549
1551
|
// ListRestart aliases
|
|
1550
1552
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1551
1553
|
// ListStart aliases
|
|
@@ -1560,10 +1562,10 @@ export { default as ListVideoIcon } from '../icons/list-video';
|
|
|
1560
1562
|
export { default as ListXIcon } from '../icons/list-x';
|
|
1561
1563
|
// List aliases
|
|
1562
1564
|
export { default as ListIcon } from '../icons/list';
|
|
1563
|
-
// Loader aliases
|
|
1564
|
-
export { default as LoaderIcon } from '../icons/loader';
|
|
1565
1565
|
// LoaderPinwheel aliases
|
|
1566
1566
|
export { default as LoaderPinwheelIcon } from '../icons/loader-pinwheel';
|
|
1567
|
+
// Loader aliases
|
|
1568
|
+
export { default as LoaderIcon } from '../icons/loader';
|
|
1567
1569
|
// LocateFixed aliases
|
|
1568
1570
|
export { default as LocateFixedIcon } from '../icons/locate-fixed';
|
|
1569
1571
|
// LocateOff aliases
|
|
@@ -1572,10 +1574,10 @@ export { default as LocateOffIcon } from '../icons/locate-off';
|
|
|
1572
1574
|
export { default as LocateIcon } from '../icons/locate';
|
|
1573
1575
|
// LockKeyhole aliases
|
|
1574
1576
|
export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
1575
|
-
// Lock aliases
|
|
1576
|
-
export { default as LockIcon } from '../icons/lock';
|
|
1577
1577
|
// LogIn aliases
|
|
1578
1578
|
export { default as LogInIcon } from '../icons/log-in';
|
|
1579
|
+
// Lock aliases
|
|
1580
|
+
export { default as LockIcon } from '../icons/lock';
|
|
1579
1581
|
// LogOut aliases
|
|
1580
1582
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1581
1583
|
// Logs aliases
|
|
@@ -1596,14 +1598,14 @@ export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
|
1596
1598
|
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1597
1599
|
// MailSearch aliases
|
|
1598
1600
|
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1599
|
-
// MailWarning aliases
|
|
1600
|
-
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1601
1601
|
// MailX aliases
|
|
1602
1602
|
export { default as MailXIcon } from '../icons/mail-x';
|
|
1603
|
-
//
|
|
1604
|
-
export { default as
|
|
1603
|
+
// MailWarning aliases
|
|
1604
|
+
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1605
1605
|
// Mailbox aliases
|
|
1606
1606
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1607
|
+
// Mail aliases
|
|
1608
|
+
export { default as MailIcon } from '../icons/mail';
|
|
1607
1609
|
// Mails aliases
|
|
1608
1610
|
export { default as MailsIcon } from '../icons/mails';
|
|
1609
1611
|
// MapMinus aliases
|
|
@@ -1618,26 +1620,26 @@ export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside'
|
|
|
1618
1620
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1619
1621
|
// MapPinMinus aliases
|
|
1620
1622
|
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1621
|
-
// MapPinOff aliases
|
|
1622
|
-
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1623
1623
|
// MapPinPlusInside aliases
|
|
1624
1624
|
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1625
|
+
// MapPinOff aliases
|
|
1626
|
+
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1625
1627
|
// MapPinPlus aliases
|
|
1626
1628
|
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1627
|
-
// MapPinXInside aliases
|
|
1628
|
-
export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
1629
1629
|
// MapPinX aliases
|
|
1630
1630
|
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1631
|
+
// MapPinXInside aliases
|
|
1632
|
+
export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
1631
1633
|
// MapPin aliases
|
|
1632
1634
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1633
|
-
// MapPinned aliases
|
|
1634
|
-
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1635
1635
|
// MapPlus aliases
|
|
1636
1636
|
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1637
|
-
// MarsStroke aliases
|
|
1638
|
-
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1639
1637
|
// Map aliases
|
|
1640
1638
|
export { default as MapIcon } from '../icons/map';
|
|
1639
|
+
// MapPinned aliases
|
|
1640
|
+
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1641
|
+
// MarsStroke aliases
|
|
1642
|
+
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1641
1643
|
// Mars aliases
|
|
1642
1644
|
export { default as MarsIcon } from '../icons/mars';
|
|
1643
1645
|
// Martini aliases
|
|
@@ -1648,34 +1650,34 @@ export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
|
1648
1650
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1649
1651
|
// Medal aliases
|
|
1650
1652
|
export { default as MedalIcon } from '../icons/medal';
|
|
1651
|
-
// MegaphoneOff aliases
|
|
1652
|
-
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1653
1653
|
// Megaphone aliases
|
|
1654
1654
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1655
|
+
// MegaphoneOff aliases
|
|
1656
|
+
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1657
|
+
// MemoryStick aliases
|
|
1658
|
+
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1655
1659
|
// Meh aliases
|
|
1656
1660
|
export { default as MehIcon } from '../icons/meh';
|
|
1657
1661
|
// Menu aliases
|
|
1658
1662
|
export { default as MenuIcon } from '../icons/menu';
|
|
1659
|
-
// MemoryStick aliases
|
|
1660
|
-
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1661
|
-
// Merge aliases
|
|
1662
|
-
export { default as MergeIcon } from '../icons/merge';
|
|
1663
1663
|
// MessageCircleCode aliases
|
|
1664
1664
|
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1665
|
-
//
|
|
1666
|
-
export { default as
|
|
1665
|
+
// Merge aliases
|
|
1666
|
+
export { default as MergeIcon } from '../icons/merge';
|
|
1667
1667
|
// MessageCircleHeart aliases
|
|
1668
1668
|
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1669
|
+
// MessageCircleDashed aliases
|
|
1670
|
+
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1669
1671
|
// MessageCircleMore aliases
|
|
1670
1672
|
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1671
|
-
// MessageCircleReply aliases
|
|
1672
|
-
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1673
1673
|
// MessageCircleOff aliases
|
|
1674
1674
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1675
1675
|
// MessageCirclePlus aliases
|
|
1676
1676
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1677
1677
|
// MessageCircleWarning aliases
|
|
1678
1678
|
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1679
|
+
// MessageCircleReply aliases
|
|
1680
|
+
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1679
1681
|
// MessageCircleX aliases
|
|
1680
1682
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1681
1683
|
// MessageCircle aliases
|
|
@@ -1700,24 +1702,24 @@ export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
|
1700
1702
|
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1701
1703
|
// MessageSquareQuote aliases
|
|
1702
1704
|
export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote';
|
|
1703
|
-
// MessageSquareReply aliases
|
|
1704
|
-
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1705
1705
|
// MessageSquareShare aliases
|
|
1706
1706
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1707
|
+
// MessageSquareReply aliases
|
|
1708
|
+
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1707
1709
|
// MessageSquareText aliases
|
|
1708
1710
|
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1709
1711
|
// MessageSquareWarning aliases
|
|
1710
1712
|
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1711
|
-
// MessagesSquare aliases
|
|
1712
|
-
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1713
1713
|
// MessageSquareX aliases
|
|
1714
1714
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1715
|
-
// MicOff aliases
|
|
1716
|
-
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1717
1715
|
// MessageSquare aliases
|
|
1718
1716
|
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1717
|
+
// MessagesSquare aliases
|
|
1718
|
+
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1719
1719
|
// Mic aliases
|
|
1720
1720
|
export { default as MicIcon } from '../icons/mic';
|
|
1721
|
+
// MicOff aliases
|
|
1722
|
+
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1721
1723
|
// Microchip aliases
|
|
1722
1724
|
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1723
1725
|
// Microscope aliases
|
|
@@ -1730,26 +1732,26 @@ export { default as MicrowaveIcon } from '../icons/microwave';
|
|
|
1730
1732
|
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1731
1733
|
// Milk aliases
|
|
1732
1734
|
export { default as MilkIcon } from '../icons/milk';
|
|
1733
|
-
// Minimize2 aliases
|
|
1734
|
-
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1735
1735
|
// Minimize aliases
|
|
1736
1736
|
export { default as MinimizeIcon } from '../icons/minimize';
|
|
1737
|
+
// Minimize2 aliases
|
|
1738
|
+
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1737
1739
|
// Minus aliases
|
|
1738
1740
|
export { default as MinusIcon } from '../icons/minus';
|
|
1739
1741
|
// MonitorCheck aliases
|
|
1740
1742
|
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1741
|
-
// MonitorCog aliases
|
|
1742
|
-
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1743
1743
|
// MonitorCloud aliases
|
|
1744
1744
|
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1745
|
-
//
|
|
1746
|
-
export { default as
|
|
1745
|
+
// MonitorCog aliases
|
|
1746
|
+
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1747
1747
|
// MonitorDown aliases
|
|
1748
1748
|
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1749
|
-
// MonitorPause aliases
|
|
1750
|
-
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1751
1749
|
// MonitorOff aliases
|
|
1752
1750
|
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1751
|
+
// MonitorDot aliases
|
|
1752
|
+
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1753
|
+
// MonitorPause aliases
|
|
1754
|
+
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1753
1755
|
// MonitorPlay aliases
|
|
1754
1756
|
export { default as MonitorPlayIcon } from '../icons/monitor-play';
|
|
1755
1757
|
// MonitorSmartphone aliases
|
|
@@ -1784,10 +1786,10 @@ export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
|
1784
1786
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1785
1787
|
// MousePointerClick aliases
|
|
1786
1788
|
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1787
|
-
// MousePointer aliases
|
|
1788
|
-
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1789
1789
|
// Mouse aliases
|
|
1790
1790
|
export { default as MouseIcon } from '../icons/mouse';
|
|
1791
|
+
// MousePointer aliases
|
|
1792
|
+
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1791
1793
|
// MoveDiagonal2 aliases
|
|
1792
1794
|
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1793
1795
|
// MoveDiagonal aliases
|
|
@@ -1800,32 +1802,32 @@ export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
|
1800
1802
|
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1801
1803
|
// MoveHorizontal aliases
|
|
1802
1804
|
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1803
|
-
// MoveLeft aliases
|
|
1804
|
-
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1805
1805
|
// MoveRight aliases
|
|
1806
1806
|
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1807
|
+
// MoveLeft aliases
|
|
1808
|
+
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1807
1809
|
// MoveUpLeft aliases
|
|
1808
1810
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1809
|
-
// MoveUpRight aliases
|
|
1810
|
-
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1811
1811
|
// MoveUp aliases
|
|
1812
1812
|
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1813
1813
|
// MoveVertical aliases
|
|
1814
1814
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1815
|
+
// MoveUpRight aliases
|
|
1816
|
+
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1815
1817
|
// Move aliases
|
|
1816
1818
|
export { default as MoveIcon } from '../icons/move';
|
|
1817
|
-
// Music3 aliases
|
|
1818
|
-
export { default as Music3Icon } from '../icons/music-3';
|
|
1819
1819
|
// Music2 aliases
|
|
1820
1820
|
export { default as Music2Icon } from '../icons/music-2';
|
|
1821
|
+
// Music3 aliases
|
|
1822
|
+
export { default as Music3Icon } from '../icons/music-3';
|
|
1821
1823
|
// Music4 aliases
|
|
1822
1824
|
export { default as Music4Icon } from '../icons/music-4';
|
|
1823
1825
|
// Music aliases
|
|
1824
1826
|
export { default as MusicIcon } from '../icons/music';
|
|
1825
|
-
// Navigation2Off aliases
|
|
1826
|
-
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1827
1827
|
// Navigation2 aliases
|
|
1828
1828
|
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1829
|
+
// Navigation2Off aliases
|
|
1830
|
+
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1829
1831
|
// NavigationOff aliases
|
|
1830
1832
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1831
1833
|
// Navigation aliases
|
|
@@ -1848,46 +1850,46 @@ export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
|
1848
1850
|
export { default as NotebookIcon } from '../icons/notebook';
|
|
1849
1851
|
// NotepadTextDashed aliases
|
|
1850
1852
|
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1853
|
+
// NotepadText aliases
|
|
1854
|
+
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1851
1855
|
// NutOff aliases
|
|
1852
1856
|
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1853
1857
|
// Nut aliases
|
|
1854
1858
|
export { default as NutIcon } from '../icons/nut';
|
|
1855
|
-
// NotepadText aliases
|
|
1856
|
-
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1857
1859
|
// OctagonMinus aliases
|
|
1858
1860
|
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1859
1861
|
// Octagon aliases
|
|
1860
1862
|
export { default as OctagonIcon } from '../icons/octagon';
|
|
1861
|
-
// Omega aliases
|
|
1862
|
-
export { default as OmegaIcon } from '../icons/omega';
|
|
1863
1863
|
// Option aliases
|
|
1864
1864
|
export { default as OptionIcon } from '../icons/option';
|
|
1865
|
-
// Origami aliases
|
|
1866
|
-
export { default as OrigamiIcon } from '../icons/origami';
|
|
1867
1865
|
// Orbit aliases
|
|
1868
1866
|
export { default as OrbitIcon } from '../icons/orbit';
|
|
1867
|
+
// Omega aliases
|
|
1868
|
+
export { default as OmegaIcon } from '../icons/omega';
|
|
1869
1869
|
// Package2 aliases
|
|
1870
1870
|
export { default as Package2Icon } from '../icons/package-2';
|
|
1871
|
+
// Origami aliases
|
|
1872
|
+
export { default as OrigamiIcon } from '../icons/origami';
|
|
1871
1873
|
// PackageCheck aliases
|
|
1872
1874
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1873
1875
|
// PackageMinus aliases
|
|
1874
1876
|
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1875
1877
|
// PackageOpen aliases
|
|
1876
1878
|
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1877
|
-
// PackageSearch aliases
|
|
1878
|
-
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1879
1879
|
// PackagePlus aliases
|
|
1880
1880
|
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1881
|
-
//
|
|
1882
|
-
export { default as
|
|
1881
|
+
// PackageSearch aliases
|
|
1882
|
+
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1883
1883
|
// Package aliases
|
|
1884
1884
|
export { default as PackageIcon } from '../icons/package';
|
|
1885
|
+
// PackageX aliases
|
|
1886
|
+
export { default as PackageXIcon } from '../icons/package-x';
|
|
1885
1887
|
// PaintBucket aliases
|
|
1886
1888
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1887
|
-
// PaintRoller aliases
|
|
1888
|
-
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1889
1889
|
// Paintbrush aliases
|
|
1890
1890
|
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1891
|
+
// PaintRoller aliases
|
|
1892
|
+
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1891
1893
|
// Palette aliases
|
|
1892
1894
|
export { default as PaletteIcon } from '../icons/palette';
|
|
1893
1895
|
// Panda aliases
|
|
@@ -1906,58 +1908,58 @@ export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
|
1906
1908
|
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1907
1909
|
// PanelRight aliases
|
|
1908
1910
|
export { default as PanelRightIcon } from '../icons/panel-right';
|
|
1909
|
-
// PanelTopBottomDashed aliases
|
|
1910
|
-
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1911
1911
|
// PanelTopClose aliases
|
|
1912
1912
|
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1913
|
-
//
|
|
1914
|
-
export { default as
|
|
1913
|
+
// PanelTopBottomDashed aliases
|
|
1914
|
+
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1915
1915
|
// PanelTopOpen aliases
|
|
1916
1916
|
export { default as PanelTopOpenIcon } from '../icons/panel-top-open';
|
|
1917
|
-
//
|
|
1918
|
-
export { default as
|
|
1917
|
+
// PanelTop aliases
|
|
1918
|
+
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1919
1919
|
// PanelsRightBottom aliases
|
|
1920
1920
|
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1921
|
-
//
|
|
1922
|
-
export { default as
|
|
1921
|
+
// PanelsLeftBottom aliases
|
|
1922
|
+
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1923
1923
|
// Parentheses aliases
|
|
1924
1924
|
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
1925
|
+
// Paperclip aliases
|
|
1926
|
+
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1925
1927
|
// ParkingMeter aliases
|
|
1926
1928
|
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1927
1929
|
// PartyPopper aliases
|
|
1928
1930
|
export { default as PartyPopperIcon } from '../icons/party-popper';
|
|
1929
1931
|
// Pause aliases
|
|
1930
1932
|
export { default as PauseIcon } from '../icons/pause';
|
|
1931
|
-
// PcCase aliases
|
|
1932
|
-
export { default as PcCaseIcon } from '../icons/pc-case';
|
|
1933
1933
|
// PawPrint aliases
|
|
1934
1934
|
export { default as PawPrintIcon } from '../icons/paw-print';
|
|
1935
|
+
// PcCase aliases
|
|
1936
|
+
export { default as PcCaseIcon } from '../icons/pc-case';
|
|
1935
1937
|
// PenOff aliases
|
|
1936
1938
|
export { default as PenOffIcon } from '../icons/pen-off';
|
|
1937
|
-
// PenTool aliases
|
|
1938
|
-
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
1939
1939
|
// PencilLine aliases
|
|
1940
1940
|
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
1941
|
+
// PenTool aliases
|
|
1942
|
+
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
1941
1943
|
// PencilOff aliases
|
|
1942
1944
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
1943
1945
|
// PencilRuler aliases
|
|
1944
1946
|
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
1945
1947
|
// Pencil aliases
|
|
1946
1948
|
export { default as PencilIcon } from '../icons/pencil';
|
|
1947
|
-
// Percent aliases
|
|
1948
|
-
export { default as PercentIcon } from '../icons/percent';
|
|
1949
|
-
// PersonStanding aliases
|
|
1950
|
-
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1951
1949
|
// Pentagon aliases
|
|
1952
1950
|
export { default as PentagonIcon } from '../icons/pentagon';
|
|
1951
|
+
// Percent aliases
|
|
1952
|
+
export { default as PercentIcon } from '../icons/percent';
|
|
1953
1953
|
// PhilippinePeso aliases
|
|
1954
1954
|
export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
1955
|
+
// PersonStanding aliases
|
|
1956
|
+
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1955
1957
|
// PhoneCall aliases
|
|
1956
1958
|
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1957
|
-
// PhoneForwarded aliases
|
|
1958
|
-
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1959
1959
|
// PhoneIncoming aliases
|
|
1960
1960
|
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1961
|
+
// PhoneForwarded aliases
|
|
1962
|
+
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1961
1963
|
// PhoneMissed aliases
|
|
1962
1964
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
1963
1965
|
// PhoneOff aliases
|
|
@@ -1966,12 +1968,12 @@ export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
|
1966
1968
|
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
1967
1969
|
// Phone aliases
|
|
1968
1970
|
export { default as PhoneIcon } from '../icons/phone';
|
|
1969
|
-
// Pi aliases
|
|
1970
|
-
export { default as PiIcon } from '../icons/pi';
|
|
1971
1971
|
// Piano aliases
|
|
1972
1972
|
export { default as PianoIcon } from '../icons/piano';
|
|
1973
1973
|
// Pickaxe aliases
|
|
1974
1974
|
export { default as PickaxeIcon } from '../icons/pickaxe';
|
|
1975
|
+
// Pi aliases
|
|
1976
|
+
export { default as PiIcon } from '../icons/pi';
|
|
1975
1977
|
// PictureInPicture2 aliases
|
|
1976
1978
|
export { default as PictureInPicture2Icon } from '../icons/picture-in-picture-2';
|
|
1977
1979
|
// PictureInPicture aliases
|
|
@@ -1982,12 +1984,12 @@ export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
|
1982
1984
|
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1983
1985
|
// PilcrowRight aliases
|
|
1984
1986
|
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
1987
|
+
// PillBottle aliases
|
|
1988
|
+
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
1985
1989
|
// Pilcrow aliases
|
|
1986
1990
|
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
1987
1991
|
// Pill aliases
|
|
1988
1992
|
export { default as PillIcon } from '../icons/pill';
|
|
1989
|
-
// PillBottle aliases
|
|
1990
|
-
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
1991
1993
|
// PinOff aliases
|
|
1992
1994
|
export { default as PinOffIcon } from '../icons/pin-off';
|
|
1993
1995
|
// Pin aliases
|
|
@@ -2000,10 +2002,10 @@ export { default as PizzaIcon } from '../icons/pizza';
|
|
|
2000
2002
|
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
2001
2003
|
// PlaneTakeoff aliases
|
|
2002
2004
|
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
2003
|
-
// Play aliases
|
|
2004
|
-
export { default as PlayIcon } from '../icons/play';
|
|
2005
2005
|
// Plane aliases
|
|
2006
2006
|
export { default as PlaneIcon } from '../icons/plane';
|
|
2007
|
+
// Play aliases
|
|
2008
|
+
export { default as PlayIcon } from '../icons/play';
|
|
2007
2009
|
// Plug2 aliases
|
|
2008
2010
|
export { default as Plug2Icon } from '../icons/plug-2';
|
|
2009
2011
|
// Plug aliases
|
|
@@ -2014,10 +2016,10 @@ export { default as PlusIcon } from '../icons/plus';
|
|
|
2014
2016
|
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2015
2017
|
// Pocket aliases
|
|
2016
2018
|
export { default as PocketIcon } from '../icons/pocket';
|
|
2017
|
-
// Podcast aliases
|
|
2018
|
-
export { default as PodcastIcon } from '../icons/podcast';
|
|
2019
2019
|
// PointerOff aliases
|
|
2020
2020
|
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2021
|
+
// Podcast aliases
|
|
2022
|
+
export { default as PodcastIcon } from '../icons/podcast';
|
|
2021
2023
|
// Pointer aliases
|
|
2022
2024
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2023
2025
|
// Popcorn aliases
|
|
@@ -2026,62 +2028,64 @@ export { default as PopcornIcon } from '../icons/popcorn';
|
|
|
2026
2028
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2027
2029
|
// PoundSterling aliases
|
|
2028
2030
|
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2029
|
-
// PowerOff aliases
|
|
2030
|
-
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2031
2031
|
// Power aliases
|
|
2032
2032
|
export { default as PowerIcon } from '../icons/power';
|
|
2033
2033
|
// Presentation aliases
|
|
2034
2034
|
export { default as PresentationIcon } from '../icons/presentation';
|
|
2035
|
+
// PowerOff aliases
|
|
2036
|
+
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2035
2037
|
// PrinterCheck aliases
|
|
2036
2038
|
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2039
|
+
// PrinterX aliases
|
|
2040
|
+
export { default as PrinterXIcon } from '../icons/printer-x';
|
|
2037
2041
|
// Printer aliases
|
|
2038
2042
|
export { default as PrinterIcon } from '../icons/printer';
|
|
2039
2043
|
// Projector aliases
|
|
2040
2044
|
export { default as ProjectorIcon } from '../icons/projector';
|
|
2041
|
-
// Proportions aliases
|
|
2042
|
-
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2043
2045
|
// Puzzle aliases
|
|
2044
2046
|
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2047
|
+
// Proportions aliases
|
|
2048
|
+
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2045
2049
|
// Pyramid aliases
|
|
2046
2050
|
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2047
2051
|
// QrCode aliases
|
|
2048
2052
|
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2049
|
-
// Rabbit aliases
|
|
2050
|
-
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2051
2053
|
// Quote aliases
|
|
2052
2054
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2055
|
+
// Rabbit aliases
|
|
2056
|
+
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2053
2057
|
// Radar aliases
|
|
2054
2058
|
export { default as RadarIcon } from '../icons/radar';
|
|
2059
|
+
// RadioReceiver aliases
|
|
2060
|
+
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2055
2061
|
// Radiation aliases
|
|
2056
2062
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2057
2063
|
// Radical aliases
|
|
2058
2064
|
export { default as RadicalIcon } from '../icons/radical';
|
|
2059
|
-
// RadioReceiver aliases
|
|
2060
|
-
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2061
|
-
// Radio aliases
|
|
2062
|
-
export { default as RadioIcon } from '../icons/radio';
|
|
2063
2065
|
// RadioTower aliases
|
|
2064
2066
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2067
|
+
// Radio aliases
|
|
2068
|
+
export { default as RadioIcon } from '../icons/radio';
|
|
2065
2069
|
// Radius aliases
|
|
2066
2070
|
export { default as RadiusIcon } from '../icons/radius';
|
|
2067
2071
|
// RailSymbol aliases
|
|
2068
2072
|
export { default as RailSymbolIcon } from '../icons/rail-symbol';
|
|
2069
2073
|
// Rainbow aliases
|
|
2070
2074
|
export { default as RainbowIcon } from '../icons/rainbow';
|
|
2071
|
-
// Rat aliases
|
|
2072
|
-
export { default as RatIcon } from '../icons/rat';
|
|
2073
2075
|
// Ratio aliases
|
|
2074
2076
|
export { default as RatioIcon } from '../icons/ratio';
|
|
2075
2077
|
// ReceiptCent aliases
|
|
2076
2078
|
export { default as ReceiptCentIcon } from '../icons/receipt-cent';
|
|
2077
2079
|
// ReceiptEuro aliases
|
|
2078
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';
|
|
2079
2085
|
// ReceiptIndianRupee aliases
|
|
2080
2086
|
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2081
2087
|
// ReceiptJapaneseYen aliases
|
|
2082
2088
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2083
|
-
// ReceiptPoundSterling aliases
|
|
2084
|
-
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2085
2089
|
// ReceiptRussianRuble aliases
|
|
2086
2090
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2087
2091
|
// ReceiptSwissFranc aliases
|
|
@@ -2092,10 +2096,10 @@ export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
|
2092
2096
|
export { default as ReceiptTurkishLiraIcon } from '../icons/receipt-turkish-lira';
|
|
2093
2097
|
// Receipt aliases
|
|
2094
2098
|
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2095
|
-
// RectangleCircle aliases
|
|
2096
|
-
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2097
2099
|
// RectangleGoggles aliases
|
|
2098
2100
|
export { default as RectangleGogglesIcon } from '../icons/rectangle-goggles';
|
|
2101
|
+
// RectangleCircle aliases
|
|
2102
|
+
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2099
2103
|
// RectangleHorizontal aliases
|
|
2100
2104
|
export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizontal';
|
|
2101
2105
|
// RectangleVertical aliases
|
|
@@ -2106,24 +2110,24 @@ export { default as RecycleIcon } from '../icons/recycle';
|
|
|
2106
2110
|
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2107
2111
|
// RedoDot aliases
|
|
2108
2112
|
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2109
|
-
// Redo aliases
|
|
2110
|
-
export { default as RedoIcon } from '../icons/redo';
|
|
2111
|
-
// RefreshCcwDot aliases
|
|
2112
|
-
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2113
2113
|
// RefreshCcw aliases
|
|
2114
2114
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2115
|
-
//
|
|
2116
|
-
export { default as
|
|
2115
|
+
// RefreshCcwDot aliases
|
|
2116
|
+
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2117
|
+
// Redo aliases
|
|
2118
|
+
export { default as RedoIcon } from '../icons/redo';
|
|
2117
2119
|
// RefreshCw aliases
|
|
2118
2120
|
export { default as RefreshCwIcon } from '../icons/refresh-cw';
|
|
2119
2121
|
// Refrigerator aliases
|
|
2120
2122
|
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2123
|
+
// RefreshCwOff aliases
|
|
2124
|
+
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2121
2125
|
// Regex aliases
|
|
2122
2126
|
export { default as RegexIcon } from '../icons/regex';
|
|
2123
|
-
// RemoveFormatting aliases
|
|
2124
|
-
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2125
2127
|
// Repeat1 aliases
|
|
2126
2128
|
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2129
|
+
// RemoveFormatting aliases
|
|
2130
|
+
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2127
2131
|
// Repeat2 aliases
|
|
2128
2132
|
export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
2129
2133
|
// Repeat aliases
|
|
@@ -2132,22 +2136,22 @@ export { default as RepeatIcon } from '../icons/repeat';
|
|
|
2132
2136
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2133
2137
|
// Replace aliases
|
|
2134
2138
|
export { default as ReplaceIcon } from '../icons/replace';
|
|
2135
|
-
// ReplyAll aliases
|
|
2136
|
-
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2137
2139
|
// Reply aliases
|
|
2138
2140
|
export { default as ReplyIcon } from '../icons/reply';
|
|
2141
|
+
// ReplyAll aliases
|
|
2142
|
+
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2139
2143
|
// Rewind aliases
|
|
2140
2144
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2141
|
-
// Ribbon aliases
|
|
2142
|
-
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2143
2145
|
// Rocket aliases
|
|
2144
2146
|
export { default as RocketIcon } from '../icons/rocket';
|
|
2147
|
+
// Ribbon aliases
|
|
2148
|
+
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2145
2149
|
// RockingChair aliases
|
|
2146
2150
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2147
|
-
// RollerCoaster aliases
|
|
2148
|
-
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2149
2151
|
// Rose aliases
|
|
2150
2152
|
export { default as RoseIcon } from '../icons/rose';
|
|
2153
|
+
// RollerCoaster aliases
|
|
2154
|
+
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2151
2155
|
// RotateCcwKey aliases
|
|
2152
2156
|
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2153
2157
|
// RotateCcwSquare aliases
|
|
@@ -2160,22 +2164,22 @@ export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
|
2160
2164
|
export { default as RouteOffIcon } from '../icons/route-off';
|
|
2161
2165
|
// RotateCw aliases
|
|
2162
2166
|
export { default as RotateCwIcon } from '../icons/rotate-cw';
|
|
2163
|
-
// Router aliases
|
|
2164
|
-
export { default as RouterIcon } from '../icons/router';
|
|
2165
2167
|
// Route aliases
|
|
2166
2168
|
export { default as RouteIcon } from '../icons/route';
|
|
2169
|
+
// Router aliases
|
|
2170
|
+
export { default as RouterIcon } from '../icons/router';
|
|
2167
2171
|
// Rows4 aliases
|
|
2168
2172
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2169
|
-
// Rss aliases
|
|
2170
|
-
export { default as RssIcon } from '../icons/rss';
|
|
2171
2173
|
// RulerDimensionLine aliases
|
|
2172
2174
|
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2175
|
+
// Rss aliases
|
|
2176
|
+
export { default as RssIcon } from '../icons/rss';
|
|
2177
|
+
// RussianRuble aliases
|
|
2178
|
+
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2173
2179
|
// Ruler aliases
|
|
2174
2180
|
export { default as RulerIcon } from '../icons/ruler';
|
|
2175
2181
|
// Sailboat aliases
|
|
2176
2182
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2177
|
-
// RussianRuble aliases
|
|
2178
|
-
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2179
2183
|
// Salad aliases
|
|
2180
2184
|
export { default as SaladIcon } from '../icons/salad';
|
|
2181
2185
|
// Sandwich aliases
|
|
@@ -2184,34 +2188,34 @@ export { default as SandwichIcon } from '../icons/sandwich';
|
|
|
2184
2188
|
export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
2185
2189
|
// Satellite aliases
|
|
2186
2190
|
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2187
|
-
// SaudiRiyal aliases
|
|
2188
|
-
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2189
|
-
// SaveAll aliases
|
|
2190
|
-
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2191
2191
|
// SaveOff aliases
|
|
2192
2192
|
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2193
|
+
// SaudiRiyal aliases
|
|
2194
|
+
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2193
2195
|
// Save aliases
|
|
2194
2196
|
export { default as SaveIcon } from '../icons/save';
|
|
2197
|
+
// SaveAll aliases
|
|
2198
|
+
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2195
2199
|
// Scale aliases
|
|
2196
2200
|
export { default as ScaleIcon } from '../icons/scale';
|
|
2197
2201
|
// Scaling aliases
|
|
2198
2202
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2199
|
-
// ScanBarcode aliases
|
|
2200
|
-
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2201
2203
|
// ScanEye aliases
|
|
2202
2204
|
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2205
|
+
// ScanBarcode aliases
|
|
2206
|
+
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2203
2207
|
// ScanFace aliases
|
|
2204
2208
|
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2209
|
+
// ScanLine aliases
|
|
2210
|
+
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2205
2211
|
// ScanHeart aliases
|
|
2206
2212
|
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2207
2213
|
// ScanQrCode aliases
|
|
2208
2214
|
export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
2209
|
-
// ScanLine aliases
|
|
2210
|
-
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2211
|
-
// ScanSearch aliases
|
|
2212
|
-
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2213
2215
|
// ScanText aliases
|
|
2214
2216
|
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2217
|
+
// ScanSearch aliases
|
|
2218
|
+
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2215
2219
|
// Scan aliases
|
|
2216
2220
|
export { default as ScanIcon } from '../icons/scan';
|
|
2217
2221
|
// School aliases
|
|
@@ -2228,16 +2232,16 @@ export { default as ScreenShareOffIcon } from '../icons/screen-share-off';
|
|
|
2228
2232
|
export { default as ScreenShareIcon } from '../icons/screen-share';
|
|
2229
2233
|
// ScrollText aliases
|
|
2230
2234
|
export { default as ScrollTextIcon } from '../icons/scroll-text';
|
|
2231
|
-
// SearchAlert aliases
|
|
2232
|
-
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2233
2235
|
// Scroll aliases
|
|
2234
2236
|
export { default as ScrollIcon } from '../icons/scroll';
|
|
2235
|
-
//
|
|
2236
|
-
export { default as
|
|
2237
|
+
// SearchAlert aliases
|
|
2238
|
+
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2237
2239
|
// SearchCheck aliases
|
|
2238
2240
|
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2239
2241
|
// SearchSlash aliases
|
|
2240
2242
|
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2243
|
+
// SearchCode aliases
|
|
2244
|
+
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2241
2245
|
// SearchX aliases
|
|
2242
2246
|
export { default as SearchXIcon } from '../icons/search-x';
|
|
2243
2247
|
// Search aliases
|
|
@@ -2250,12 +2254,12 @@ export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
|
2250
2254
|
export { default as SendIcon } from '../icons/send';
|
|
2251
2255
|
// SeparatorHorizontal aliases
|
|
2252
2256
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2257
|
+
// ServerCog aliases
|
|
2258
|
+
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2253
2259
|
// SeparatorVertical aliases
|
|
2254
2260
|
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2255
2261
|
// ServerCrash aliases
|
|
2256
2262
|
export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
2257
|
-
// ServerCog aliases
|
|
2258
|
-
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2259
2263
|
// ServerOff aliases
|
|
2260
2264
|
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2261
2265
|
// Server aliases
|
|
@@ -2268,34 +2272,34 @@ export { default as SettingsIcon } from '../icons/settings';
|
|
|
2268
2272
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2269
2273
|
// Share2 aliases
|
|
2270
2274
|
export { default as Share2Icon } from '../icons/share-2';
|
|
2271
|
-
// Share aliases
|
|
2272
|
-
export { default as ShareIcon } from '../icons/share';
|
|
2273
2275
|
// Sheet aliases
|
|
2274
2276
|
export { default as SheetIcon } from '../icons/sheet';
|
|
2275
2277
|
// Shell aliases
|
|
2276
2278
|
export { default as ShellIcon } from '../icons/shell';
|
|
2277
2279
|
// ShieldAlert aliases
|
|
2278
2280
|
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2281
|
+
// Share aliases
|
|
2282
|
+
export { default as ShareIcon } from '../icons/share';
|
|
2279
2283
|
// ShieldBan aliases
|
|
2280
2284
|
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2281
2285
|
// ShieldCheck aliases
|
|
2282
2286
|
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2283
|
-
// ShieldEllipsis aliases
|
|
2284
|
-
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2285
2287
|
// ShieldHalf aliases
|
|
2286
2288
|
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2289
|
+
// ShieldEllipsis aliases
|
|
2290
|
+
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2287
2291
|
// ShieldMinus aliases
|
|
2288
2292
|
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2289
2293
|
// ShieldOff aliases
|
|
2290
2294
|
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2291
|
-
// ShieldPlus aliases
|
|
2292
|
-
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2293
2295
|
// ShieldUser aliases
|
|
2294
2296
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2295
|
-
// Shield aliases
|
|
2296
|
-
export { default as ShieldIcon } from '../icons/shield';
|
|
2297
2297
|
// ShipWheel aliases
|
|
2298
2298
|
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2299
|
+
// Shield aliases
|
|
2300
|
+
export { default as ShieldIcon } from '../icons/shield';
|
|
2301
|
+
// ShieldPlus aliases
|
|
2302
|
+
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2299
2303
|
// Ship aliases
|
|
2300
2304
|
export { default as ShipIcon } from '../icons/ship';
|
|
2301
2305
|
// Shirt aliases
|
|
@@ -2306,10 +2310,10 @@ export { default as ShoppingBagIcon } from '../icons/shopping-bag';
|
|
|
2306
2310
|
export { default as ShoppingBasketIcon } from '../icons/shopping-basket';
|
|
2307
2311
|
// ShoppingCart aliases
|
|
2308
2312
|
export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
2309
|
-
// Shovel aliases
|
|
2310
|
-
export { default as ShovelIcon } from '../icons/shovel';
|
|
2311
2313
|
// ShowerHead aliases
|
|
2312
2314
|
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2315
|
+
// Shovel aliases
|
|
2316
|
+
export { default as ShovelIcon } from '../icons/shovel';
|
|
2313
2317
|
// Shredder aliases
|
|
2314
2318
|
export { default as ShredderIcon } from '../icons/shredder';
|
|
2315
2319
|
// Shrimp aliases
|
|
@@ -2322,10 +2326,10 @@ export { default as ShrubIcon } from '../icons/shrub';
|
|
|
2322
2326
|
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2323
2327
|
// Sigma aliases
|
|
2324
2328
|
export { default as SigmaIcon } from '../icons/sigma';
|
|
2325
|
-
// SignalLow aliases
|
|
2326
|
-
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2327
2329
|
// SignalHigh aliases
|
|
2328
2330
|
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2331
|
+
// SignalLow aliases
|
|
2332
|
+
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2329
2333
|
// SignalMedium aliases
|
|
2330
2334
|
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2331
2335
|
// SignalZero aliases
|
|
@@ -2340,16 +2344,16 @@ export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
|
2340
2344
|
export { default as SignpostIcon } from '../icons/signpost';
|
|
2341
2345
|
// Siren aliases
|
|
2342
2346
|
export { default as SirenIcon } from '../icons/siren';
|
|
2343
|
-
// SkipForward aliases
|
|
2344
|
-
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2345
2347
|
// SkipBack aliases
|
|
2346
2348
|
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2347
|
-
//
|
|
2348
|
-
export { default as
|
|
2349
|
+
// SkipForward aliases
|
|
2350
|
+
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2349
2351
|
// Skull aliases
|
|
2350
2352
|
export { default as SkullIcon } from '../icons/skull';
|
|
2351
2353
|
// Slash aliases
|
|
2352
2354
|
export { default as SlashIcon } from '../icons/slash';
|
|
2355
|
+
// Slack aliases
|
|
2356
|
+
export { default as SlackIcon } from '../icons/slack';
|
|
2353
2357
|
// Slice aliases
|
|
2354
2358
|
export { default as SliceIcon } from '../icons/slice';
|
|
2355
2359
|
// SlidersHorizontal aliases
|
|
@@ -2366,16 +2370,16 @@ export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
|
2366
2370
|
export { default as SmileIcon } from '../icons/smile';
|
|
2367
2371
|
// Snail aliases
|
|
2368
2372
|
export { default as SnailIcon } from '../icons/snail';
|
|
2369
|
-
// Snowflake aliases
|
|
2370
|
-
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2371
2373
|
// SoapDispenserDroplet aliases
|
|
2372
2374
|
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2373
|
-
//
|
|
2374
|
-
export { default as
|
|
2375
|
+
// Snowflake aliases
|
|
2376
|
+
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2375
2377
|
// Sofa aliases
|
|
2376
2378
|
export { default as SofaIcon } from '../icons/sofa';
|
|
2377
2379
|
// Soup aliases
|
|
2378
2380
|
export { default as SoupIcon } from '../icons/soup';
|
|
2381
|
+
// SolarPanel aliases
|
|
2382
|
+
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2379
2383
|
// Space aliases
|
|
2380
2384
|
export { default as SpaceIcon } from '../icons/space';
|
|
2381
2385
|
// Spade aliases
|
|
@@ -2394,38 +2398,38 @@ export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
|
2394
2398
|
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2395
2399
|
// Spline aliases
|
|
2396
2400
|
export { default as SplineIcon } from '../icons/spline';
|
|
2397
|
-
// Split aliases
|
|
2398
|
-
export { default as SplitIcon } from '../icons/split';
|
|
2399
2401
|
// Spool aliases
|
|
2400
2402
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2401
2403
|
// Spotlight aliases
|
|
2402
2404
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2405
|
+
// Split aliases
|
|
2406
|
+
export { default as SplitIcon } from '../icons/split';
|
|
2403
2407
|
// SprayCan aliases
|
|
2404
2408
|
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2405
2409
|
// Sprout aliases
|
|
2406
2410
|
export { default as SproutIcon } from '../icons/sprout';
|
|
2407
2411
|
// SquareDashedBottomCode aliases
|
|
2408
2412
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2409
|
-
// SquareDashedTopSolid aliases
|
|
2410
|
-
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2411
2413
|
// SquareDashedBottom aliases
|
|
2412
2414
|
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2415
|
+
// SquareRoundCorner aliases
|
|
2416
|
+
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2417
|
+
// SquareDashedTopSolid aliases
|
|
2418
|
+
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2413
2419
|
// SquarePause aliases
|
|
2414
2420
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2415
2421
|
// SquareRadical aliases
|
|
2416
2422
|
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2417
2423
|
// SquareSquare aliases
|
|
2418
2424
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2419
|
-
// SquareRoundCorner aliases
|
|
2420
|
-
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2421
2425
|
// SquareStar aliases
|
|
2422
2426
|
export { default as SquareStarIcon } from '../icons/square-star';
|
|
2427
|
+
// SquaresExclude aliases
|
|
2428
|
+
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2423
2429
|
// SquareStack aliases
|
|
2424
2430
|
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2425
2431
|
// SquareStop aliases
|
|
2426
2432
|
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2427
|
-
// SquaresExclude aliases
|
|
2428
|
-
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2429
2433
|
// Square aliases
|
|
2430
2434
|
export { default as SquareIcon } from '../icons/square';
|
|
2431
2435
|
// SquaresIntersect aliases
|
|
@@ -2438,18 +2442,18 @@ export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
|
2438
2442
|
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2439
2443
|
// Squircle aliases
|
|
2440
2444
|
export { default as SquircleIcon } from '../icons/squircle';
|
|
2441
|
-
// Squirrel aliases
|
|
2442
|
-
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2443
|
-
// Stamp aliases
|
|
2444
|
-
export { default as StampIcon } from '../icons/stamp';
|
|
2445
2445
|
// StarHalf aliases
|
|
2446
2446
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2447
|
-
//
|
|
2448
|
-
export { default as
|
|
2447
|
+
// Stamp aliases
|
|
2448
|
+
export { default as StampIcon } from '../icons/stamp';
|
|
2449
|
+
// Squirrel aliases
|
|
2450
|
+
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2449
2451
|
// Star aliases
|
|
2450
2452
|
export { default as StarIcon } from '../icons/star';
|
|
2451
2453
|
// StepBack aliases
|
|
2452
2454
|
export { default as StepBackIcon } from '../icons/step-back';
|
|
2455
|
+
// StarOff aliases
|
|
2456
|
+
export { default as StarOffIcon } from '../icons/star-off';
|
|
2453
2457
|
// StepForward aliases
|
|
2454
2458
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2455
2459
|
// Stethoscope aliases
|
|
@@ -2464,10 +2468,10 @@ export { default as StoneIcon } from '../icons/stone';
|
|
|
2464
2468
|
export { default as StoreIcon } from '../icons/store';
|
|
2465
2469
|
// StretchHorizontal aliases
|
|
2466
2470
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2467
|
-
// StretchVertical aliases
|
|
2468
|
-
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2469
2471
|
// Strikethrough aliases
|
|
2470
2472
|
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2473
|
+
// StretchVertical aliases
|
|
2474
|
+
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2471
2475
|
// Subscript aliases
|
|
2472
2476
|
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2473
2477
|
// SunDim aliases
|
|
@@ -2478,40 +2482,40 @@ export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
|
2478
2482
|
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2479
2483
|
// SunSnow aliases
|
|
2480
2484
|
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2481
|
-
// Sun aliases
|
|
2482
|
-
export { default as SunIcon } from '../icons/sun';
|
|
2483
2485
|
// Sunrise aliases
|
|
2484
2486
|
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2487
|
+
// Sun aliases
|
|
2488
|
+
export { default as SunIcon } from '../icons/sun';
|
|
2485
2489
|
// Sunset aliases
|
|
2486
2490
|
export { default as SunsetIcon } from '../icons/sunset';
|
|
2487
|
-
// Superscript aliases
|
|
2488
|
-
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2489
2491
|
// SwatchBook aliases
|
|
2490
2492
|
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2491
|
-
//
|
|
2492
|
-
export { default as
|
|
2493
|
+
// Superscript aliases
|
|
2494
|
+
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2493
2495
|
// SwitchCamera aliases
|
|
2494
2496
|
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2495
|
-
//
|
|
2496
|
-
export { default as
|
|
2497
|
+
// SwissFranc aliases
|
|
2498
|
+
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2497
2499
|
// Sword aliases
|
|
2498
2500
|
export { default as SwordIcon } from '../icons/sword';
|
|
2499
|
-
//
|
|
2500
|
-
export { default as
|
|
2501
|
+
// Swords aliases
|
|
2502
|
+
export { default as SwordsIcon } from '../icons/swords';
|
|
2501
2503
|
// Syringe aliases
|
|
2502
2504
|
export { default as SyringeIcon } from '../icons/syringe';
|
|
2505
|
+
// Table2 aliases
|
|
2506
|
+
export { default as Table2Icon } from '../icons/table-2';
|
|
2503
2507
|
// TableCellsMerge aliases
|
|
2504
2508
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2505
|
-
// TableCellsSplit aliases
|
|
2506
|
-
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2507
2509
|
// TableColumnsSplit aliases
|
|
2508
2510
|
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2511
|
+
// TableCellsSplit aliases
|
|
2512
|
+
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2513
|
+
// TableProperties aliases
|
|
2514
|
+
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2509
2515
|
// TableOfContents aliases
|
|
2510
2516
|
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2511
2517
|
// TableRowsSplit aliases
|
|
2512
2518
|
export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
2513
|
-
// TableProperties aliases
|
|
2514
|
-
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2515
2519
|
// Table aliases
|
|
2516
2520
|
export { default as TableIcon } from '../icons/table';
|
|
2517
2521
|
// TabletSmartphone aliases
|
|
@@ -2522,18 +2526,18 @@ export { default as TabletIcon } from '../icons/tablet';
|
|
|
2522
2526
|
export { default as TagIcon } from '../icons/tag';
|
|
2523
2527
|
// Tablets aliases
|
|
2524
2528
|
export { default as TabletsIcon } from '../icons/tablets';
|
|
2525
|
-
// Tally1 aliases
|
|
2526
|
-
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2527
2529
|
// Tags aliases
|
|
2528
2530
|
export { default as TagsIcon } from '../icons/tags';
|
|
2531
|
+
// Tally1 aliases
|
|
2532
|
+
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2529
2533
|
// Tally2 aliases
|
|
2530
2534
|
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2531
2535
|
// Tally3 aliases
|
|
2532
2536
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2533
|
-
// Tally4 aliases
|
|
2534
|
-
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2535
2537
|
// Tally5 aliases
|
|
2536
2538
|
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2539
|
+
// Tally4 aliases
|
|
2540
|
+
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2537
2541
|
// Tangent aliases
|
|
2538
2542
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2539
2543
|
// Target aliases
|
|
@@ -2544,24 +2548,24 @@ export { default as TelescopeIcon } from '../icons/telescope';
|
|
|
2544
2548
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2545
2549
|
// Tent aliases
|
|
2546
2550
|
export { default as TentIcon } from '../icons/tent';
|
|
2547
|
-
// Terminal aliases
|
|
2548
|
-
export { default as TerminalIcon } from '../icons/terminal';
|
|
2549
2551
|
// TestTube aliases
|
|
2550
2552
|
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2551
2553
|
// TestTubes aliases
|
|
2552
2554
|
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2555
|
+
// Terminal aliases
|
|
2556
|
+
export { default as TerminalIcon } from '../icons/terminal';
|
|
2553
2557
|
// TextCursorInput aliases
|
|
2554
2558
|
export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
2555
2559
|
// TextCursor aliases
|
|
2556
2560
|
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2557
2561
|
// TextQuote aliases
|
|
2558
2562
|
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2559
|
-
// TextSearch aliases
|
|
2560
|
-
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2561
2563
|
// Theater aliases
|
|
2562
2564
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2563
2565
|
// ThermometerSnowflake aliases
|
|
2564
2566
|
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2567
|
+
// TextSearch aliases
|
|
2568
|
+
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2565
2569
|
// ThermometerSun aliases
|
|
2566
2570
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2567
2571
|
// Thermometer aliases
|
|
@@ -2588,36 +2592,36 @@ export { default as TicketIcon } from '../icons/ticket';
|
|
|
2588
2592
|
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2589
2593
|
// Tickets aliases
|
|
2590
2594
|
export { default as TicketsIcon } from '../icons/tickets';
|
|
2591
|
-
//
|
|
2592
|
-
export { default as
|
|
2595
|
+
// TimerReset aliases
|
|
2596
|
+
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2593
2597
|
// Timer aliases
|
|
2594
2598
|
export { default as TimerIcon } from '../icons/timer';
|
|
2599
|
+
// TimerOff aliases
|
|
2600
|
+
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2595
2601
|
// ToggleLeft aliases
|
|
2596
2602
|
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2597
|
-
// TimerReset aliases
|
|
2598
|
-
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2599
|
-
// ToggleRight aliases
|
|
2600
|
-
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2601
2603
|
// Toilet aliases
|
|
2602
2604
|
export { default as ToiletIcon } from '../icons/toilet';
|
|
2603
|
-
//
|
|
2604
|
-
export { default as
|
|
2605
|
+
// ToggleRight aliases
|
|
2606
|
+
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2605
2607
|
// Tornado aliases
|
|
2606
2608
|
export { default as TornadoIcon } from '../icons/tornado';
|
|
2607
2609
|
// Toolbox aliases
|
|
2608
2610
|
export { default as ToolboxIcon } from '../icons/toolbox';
|
|
2609
|
-
//
|
|
2610
|
-
export { default as
|
|
2611
|
+
// ToolCase aliases
|
|
2612
|
+
export { default as ToolCaseIcon } from '../icons/tool-case';
|
|
2611
2613
|
// Torus aliases
|
|
2612
2614
|
export { default as TorusIcon } from '../icons/torus';
|
|
2615
|
+
// TouchpadOff aliases
|
|
2616
|
+
export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
2613
2617
|
// Touchpad aliases
|
|
2614
2618
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2615
|
-
// TowerControl aliases
|
|
2616
|
-
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2617
2619
|
// ToyBrick aliases
|
|
2618
2620
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2619
2621
|
// Tractor aliases
|
|
2620
2622
|
export { default as TractorIcon } from '../icons/tractor';
|
|
2623
|
+
// TowerControl aliases
|
|
2624
|
+
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2621
2625
|
// TrafficCone aliases
|
|
2622
2626
|
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2623
2627
|
// TrainFrontTunnel aliases
|
|
@@ -2636,42 +2640,42 @@ export { default as TrashIcon } from '../icons/trash';
|
|
|
2636
2640
|
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2637
2641
|
// TreePine aliases
|
|
2638
2642
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2639
|
-
// Trees aliases
|
|
2640
|
-
export { default as TreesIcon } from '../icons/trees';
|
|
2641
2643
|
// Trello aliases
|
|
2642
2644
|
export { default as TrelloIcon } from '../icons/trello';
|
|
2643
|
-
//
|
|
2644
|
-
export { default as
|
|
2645
|
+
// Trees aliases
|
|
2646
|
+
export { default as TreesIcon } from '../icons/trees';
|
|
2645
2647
|
// TrendingDown aliases
|
|
2646
2648
|
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2647
|
-
// TrendingUp aliases
|
|
2648
|
-
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2649
2649
|
// TriangleDashed aliases
|
|
2650
2650
|
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2651
|
-
//
|
|
2652
|
-
export { default as
|
|
2651
|
+
// TrendingUp aliases
|
|
2652
|
+
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2653
|
+
// TrendingUpDown aliases
|
|
2654
|
+
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2653
2655
|
// TriangleRight aliases
|
|
2654
2656
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2657
|
+
// Trophy aliases
|
|
2658
|
+
export { default as TrophyIcon } from '../icons/trophy';
|
|
2659
|
+
// Triangle aliases
|
|
2660
|
+
export { default as TriangleIcon } from '../icons/triangle';
|
|
2655
2661
|
// TruckElectric aliases
|
|
2656
2662
|
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2657
2663
|
// Truck aliases
|
|
2658
2664
|
export { default as TruckIcon } from '../icons/truck';
|
|
2659
|
-
// Trophy aliases
|
|
2660
|
-
export { default as TrophyIcon } from '../icons/trophy';
|
|
2661
2665
|
// TurkishLira aliases
|
|
2662
2666
|
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2663
|
-
// TvMinimalPlay aliases
|
|
2664
|
-
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2665
2667
|
// Turntable aliases
|
|
2666
2668
|
export { default as TurntableIcon } from '../icons/turntable';
|
|
2667
2669
|
// Turtle aliases
|
|
2668
2670
|
export { default as TurtleIcon } from '../icons/turtle';
|
|
2669
2671
|
// Tv aliases
|
|
2670
2672
|
export { default as TvIcon } from '../icons/tv';
|
|
2671
|
-
// Twitch aliases
|
|
2672
|
-
export { default as TwitchIcon } from '../icons/twitch';
|
|
2673
2673
|
// Twitter aliases
|
|
2674
2674
|
export { default as TwitterIcon } from '../icons/twitter';
|
|
2675
|
+
// TvMinimalPlay aliases
|
|
2676
|
+
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2677
|
+
// Twitch aliases
|
|
2678
|
+
export { default as TwitchIcon } from '../icons/twitch';
|
|
2675
2679
|
// TypeOutline aliases
|
|
2676
2680
|
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2677
2681
|
// Type aliases
|
|
@@ -2680,48 +2684,48 @@ export { default as TypeIcon } from '../icons/type';
|
|
|
2680
2684
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2681
2685
|
// Umbrella aliases
|
|
2682
2686
|
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2683
|
-
// Underline aliases
|
|
2684
|
-
export { default as UnderlineIcon } from '../icons/underline';
|
|
2685
2687
|
// Undo2 aliases
|
|
2686
2688
|
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2687
|
-
//
|
|
2688
|
-
export { default as
|
|
2689
|
+
// Underline aliases
|
|
2690
|
+
export { default as UnderlineIcon } from '../icons/underline';
|
|
2689
2691
|
// Undo aliases
|
|
2690
2692
|
export { default as UndoIcon } from '../icons/undo';
|
|
2693
|
+
// UndoDot aliases
|
|
2694
|
+
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2691
2695
|
// UnfoldHorizontal aliases
|
|
2692
2696
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2693
|
-
// UnfoldVertical aliases
|
|
2694
|
-
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2695
|
-
// Unlink2 aliases
|
|
2696
|
-
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2697
2697
|
// Ungroup aliases
|
|
2698
2698
|
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2699
|
+
// Unlink2 aliases
|
|
2700
|
+
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2701
|
+
// UnfoldVertical aliases
|
|
2702
|
+
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2699
2703
|
// Unlink aliases
|
|
2700
2704
|
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2701
2705
|
// Unplug aliases
|
|
2702
2706
|
export { default as UnplugIcon } from '../icons/unplug';
|
|
2703
2707
|
// Upload aliases
|
|
2704
2708
|
export { default as UploadIcon } from '../icons/upload';
|
|
2705
|
-
// Usb aliases
|
|
2706
|
-
export { default as UsbIcon } from '../icons/usb';
|
|
2707
2709
|
// UserCheck aliases
|
|
2708
2710
|
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2709
|
-
//
|
|
2710
|
-
export { default as
|
|
2711
|
+
// Usb aliases
|
|
2712
|
+
export { default as UsbIcon } from '../icons/usb';
|
|
2713
|
+
// UserLock aliases
|
|
2714
|
+
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2711
2715
|
// UserCog aliases
|
|
2712
2716
|
export { default as UserCogIcon } from '../icons/user-cog';
|
|
2717
|
+
// UserMinus aliases
|
|
2718
|
+
export { default as UserMinusIcon } from '../icons/user-minus';
|
|
2713
2719
|
// UserPen aliases
|
|
2714
2720
|
export { default as UserPenIcon } from '../icons/user-pen';
|
|
2715
|
-
// UserLock aliases
|
|
2716
|
-
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2717
2721
|
// UserPlus aliases
|
|
2718
2722
|
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2719
2723
|
// UserRoundPen aliases
|
|
2720
2724
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2721
|
-
// UserRoundSearch aliases
|
|
2722
|
-
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2723
2725
|
// UserSearch aliases
|
|
2724
2726
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2727
|
+
// UserRoundSearch aliases
|
|
2728
|
+
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2725
2729
|
// UserStar aliases
|
|
2726
2730
|
export { default as UserStarIcon } from '../icons/user-star';
|
|
2727
2731
|
// UserX aliases
|
|
@@ -2730,40 +2734,40 @@ export { default as UserXIcon } from '../icons/user-x';
|
|
|
2730
2734
|
export { default as UserIcon } from '../icons/user';
|
|
2731
2735
|
// Users aliases
|
|
2732
2736
|
export { default as UsersIcon } from '../icons/users';
|
|
2733
|
-
// Variable aliases
|
|
2734
|
-
export { default as VariableIcon } from '../icons/variable';
|
|
2735
|
-
// Van aliases
|
|
2736
|
-
export { default as VanIcon } from '../icons/van';
|
|
2737
2737
|
// UtilityPole aliases
|
|
2738
2738
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2739
|
+
// Variable aliases
|
|
2740
|
+
export { default as VariableIcon } from '../icons/variable';
|
|
2739
2741
|
// Vault aliases
|
|
2740
2742
|
export { default as VaultIcon } from '../icons/vault';
|
|
2741
|
-
//
|
|
2742
|
-
export { default as
|
|
2743
|
+
// Van aliases
|
|
2744
|
+
export { default as VanIcon } from '../icons/van';
|
|
2743
2745
|
// Vegan aliases
|
|
2744
2746
|
export { default as VeganIcon } from '../icons/vegan';
|
|
2745
|
-
//
|
|
2746
|
-
export { default as
|
|
2747
|
+
// VectorSquare aliases
|
|
2748
|
+
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2747
2749
|
// VenetianMask aliases
|
|
2748
2750
|
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2749
2751
|
// Venus aliases
|
|
2750
2752
|
export { default as VenusIcon } from '../icons/venus';
|
|
2751
|
-
//
|
|
2752
|
-
export { default as
|
|
2753
|
+
// VenusAndMars aliases
|
|
2754
|
+
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2753
2755
|
// Vibrate aliases
|
|
2754
2756
|
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2757
|
+
// VibrateOff aliases
|
|
2758
|
+
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2755
2759
|
// VideoOff aliases
|
|
2756
2760
|
export { default as VideoOffIcon } from '../icons/video-off';
|
|
2757
|
-
// Videotape aliases
|
|
2758
|
-
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2759
2761
|
// Video aliases
|
|
2760
2762
|
export { default as VideoIcon } from '../icons/video';
|
|
2761
2763
|
// View aliases
|
|
2762
2764
|
export { default as ViewIcon } from '../icons/view';
|
|
2763
|
-
// Voicemail aliases
|
|
2764
|
-
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2765
2765
|
// Volleyball aliases
|
|
2766
2766
|
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2767
|
+
// Videotape aliases
|
|
2768
|
+
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2769
|
+
// Voicemail aliases
|
|
2770
|
+
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2767
2771
|
// Volume1 aliases
|
|
2768
2772
|
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2769
2773
|
// Volume2 aliases
|
|
@@ -2772,10 +2776,10 @@ export { default as Volume2Icon } from '../icons/volume-2';
|
|
|
2772
2776
|
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2773
2777
|
// VolumeX aliases
|
|
2774
2778
|
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2775
|
-
// Vote aliases
|
|
2776
|
-
export { default as VoteIcon } from '../icons/vote';
|
|
2777
2779
|
// Volume aliases
|
|
2778
2780
|
export { default as VolumeIcon } from '../icons/volume';
|
|
2781
|
+
// Vote aliases
|
|
2782
|
+
export { default as VoteIcon } from '../icons/vote';
|
|
2779
2783
|
// WalletCards aliases
|
|
2780
2784
|
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2781
2785
|
// Wallet aliases
|
|
@@ -2784,24 +2788,24 @@ export { default as WalletIcon } from '../icons/wallet';
|
|
|
2784
2788
|
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2785
2789
|
// Wand aliases
|
|
2786
2790
|
export { default as WandIcon } from '../icons/wand';
|
|
2787
|
-
// Warehouse aliases
|
|
2788
|
-
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2789
2791
|
// WashingMachine aliases
|
|
2790
2792
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2793
|
+
// Warehouse aliases
|
|
2794
|
+
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2791
2795
|
// Watch aliases
|
|
2792
2796
|
export { default as WatchIcon } from '../icons/watch';
|
|
2793
2797
|
// WavesArrowDown aliases
|
|
2794
2798
|
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2795
2799
|
// WavesArrowUp aliases
|
|
2796
2800
|
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2797
|
-
// Waves aliases
|
|
2798
|
-
export { default as WavesIcon } from '../icons/waves';
|
|
2799
2801
|
// WavesLadder aliases
|
|
2800
2802
|
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2801
|
-
//
|
|
2802
|
-
export { default as
|
|
2803
|
+
// Waves aliases
|
|
2804
|
+
export { default as WavesIcon } from '../icons/waves';
|
|
2803
2805
|
// Webcam aliases
|
|
2804
2806
|
export { default as WebcamIcon } from '../icons/webcam';
|
|
2807
|
+
// Waypoints aliases
|
|
2808
|
+
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2805
2809
|
// WebhookOff aliases
|
|
2806
2810
|
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2807
2811
|
// Webhook aliases
|
|
@@ -2814,32 +2818,32 @@ export { default as WeightIcon } from '../icons/weight';
|
|
|
2814
2818
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2815
2819
|
// Wheat aliases
|
|
2816
2820
|
export { default as WheatIcon } from '../icons/wheat';
|
|
2817
|
-
// WholeWord aliases
|
|
2818
|
-
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2819
2821
|
// WifiCog aliases
|
|
2820
2822
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2823
|
+
// WholeWord aliases
|
|
2824
|
+
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2821
2825
|
// WifiHigh aliases
|
|
2822
2826
|
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2823
2827
|
// WifiLow aliases
|
|
2824
2828
|
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2825
|
-
// WifiPen aliases
|
|
2826
|
-
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2827
2829
|
// WifiOff aliases
|
|
2828
2830
|
export { default as WifiOffIcon } from '../icons/wifi-off';
|
|
2831
|
+
// WifiPen aliases
|
|
2832
|
+
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2829
2833
|
// WifiSync aliases
|
|
2830
2834
|
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2831
|
-
// Wifi aliases
|
|
2832
|
-
export { default as WifiIcon } from '../icons/wifi';
|
|
2833
2835
|
// WifiZero aliases
|
|
2834
2836
|
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2837
|
+
// Wifi aliases
|
|
2838
|
+
export { default as WifiIcon } from '../icons/wifi';
|
|
2835
2839
|
// WindArrowDown aliases
|
|
2836
2840
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2837
2841
|
// Wind aliases
|
|
2838
2842
|
export { default as WindIcon } from '../icons/wind';
|
|
2839
|
-
// Wine aliases
|
|
2840
|
-
export { default as WineIcon } from '../icons/wine';
|
|
2841
2843
|
// WineOff aliases
|
|
2842
2844
|
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2845
|
+
// Wine aliases
|
|
2846
|
+
export { default as WineIcon } from '../icons/wine';
|
|
2843
2847
|
// Workflow aliases
|
|
2844
2848
|
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2845
2849
|
// Worm aliases
|
|
@@ -2926,30 +2930,30 @@ export {
|
|
|
2926
2930
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
|
|
2927
2931
|
default as VerifiedIcon
|
|
2928
2932
|
} from '../icons/badge-check';
|
|
2929
|
-
// Axis3d aliases
|
|
2930
|
-
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2931
|
-
export {
|
|
2932
|
-
/** @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 */
|
|
2933
|
-
default as Axis3DIcon
|
|
2934
|
-
} from '../icons/axis-3d';
|
|
2935
2933
|
// BadgeQuestionMark aliases
|
|
2936
2934
|
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
2937
2935
|
export {
|
|
2938
2936
|
/** @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 */
|
|
2939
2937
|
default as BadgeHelpIcon
|
|
2940
2938
|
} from '../icons/badge-question-mark';
|
|
2941
|
-
//
|
|
2942
|
-
export { default as
|
|
2939
|
+
// Axis3d aliases
|
|
2940
|
+
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2943
2941
|
export {
|
|
2944
|
-
/** @deprecated
|
|
2945
|
-
default as
|
|
2946
|
-
} from '../icons/
|
|
2942
|
+
/** @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 */
|
|
2943
|
+
default as Axis3DIcon
|
|
2944
|
+
} from '../icons/axis-3d';
|
|
2947
2945
|
// BetweenHorizontalEnd aliases
|
|
2948
2946
|
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
2949
2947
|
export {
|
|
2950
2948
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
2951
2949
|
default as BetweenHorizonalEndIcon
|
|
2952
2950
|
} 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';
|
|
2953
2957
|
// BookDashed aliases
|
|
2954
2958
|
export { default as BookDashedIcon } from '../icons/book-dashed';
|
|
2955
2959
|
export {
|
|
@@ -2980,18 +2984,18 @@ export {
|
|
|
2980
2984
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
2981
2985
|
default as BarChartHorizontalBigIcon
|
|
2982
2986
|
} from '../icons/chart-bar-big';
|
|
2983
|
-
// ChartCandlestick aliases
|
|
2984
|
-
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
2985
|
-
export {
|
|
2986
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
2987
|
-
default as CandlestickChartIcon
|
|
2988
|
-
} from '../icons/chart-candlestick';
|
|
2989
2987
|
// ChartBar aliases
|
|
2990
2988
|
export { default as ChartBarIcon } from '../icons/chart-bar';
|
|
2991
2989
|
export {
|
|
2992
2990
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
2993
2991
|
default as BarChartHorizontalIcon
|
|
2994
2992
|
} from '../icons/chart-bar';
|
|
2993
|
+
// ChartCandlestick aliases
|
|
2994
|
+
export { default as ChartCandlestickIcon } from '../icons/chart-candlestick';
|
|
2995
|
+
export {
|
|
2996
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
2997
|
+
default as CandlestickChartIcon
|
|
2998
|
+
} from '../icons/chart-candlestick';
|
|
2995
2999
|
// ChartColumnBig aliases
|
|
2996
3000
|
export { default as ChartColumnBigIcon } from '../icons/chart-column-big';
|
|
2997
3001
|
export {
|
|
@@ -3004,54 +3008,54 @@ export {
|
|
|
3004
3008
|
/** @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 */
|
|
3005
3009
|
default as BarChart4Icon
|
|
3006
3010
|
} from '../icons/chart-column-increasing';
|
|
3007
|
-
// ChartColumn aliases
|
|
3008
|
-
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3009
|
-
export {
|
|
3010
|
-
/** @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 */
|
|
3011
|
-
default as BarChart3Icon
|
|
3012
|
-
} from '../icons/chart-column';
|
|
3013
|
-
// ChartLine aliases
|
|
3014
|
-
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3015
|
-
export {
|
|
3016
|
-
/** @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 */
|
|
3017
|
-
default as LineChartIcon
|
|
3018
|
-
} from '../icons/chart-line';
|
|
3019
3011
|
// ChartNoAxesColumnIncreasing aliases
|
|
3020
3012
|
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
3021
3013
|
export {
|
|
3022
3014
|
/** @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 */
|
|
3023
3015
|
default as BarChartIcon
|
|
3024
3016
|
} from '../icons/chart-no-axes-column-increasing';
|
|
3025
|
-
//
|
|
3026
|
-
export { default as
|
|
3017
|
+
// ChartLine aliases
|
|
3018
|
+
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3027
3019
|
export {
|
|
3028
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3029
|
-
default as
|
|
3030
|
-
} from '../icons/chart-
|
|
3020
|
+
/** @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
|
+
default as LineChartIcon
|
|
3022
|
+
} 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';
|
|
3031
3029
|
// ChartNoAxesGantt aliases
|
|
3032
3030
|
export { default as ChartNoAxesGanttIcon } from '../icons/chart-no-axes-gantt';
|
|
3033
3031
|
export {
|
|
3034
3032
|
/** @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 */
|
|
3035
3033
|
default as GanttChartIcon
|
|
3036
3034
|
} from '../icons/chart-no-axes-gantt';
|
|
3035
|
+
// ChartNoAxesColumn aliases
|
|
3036
|
+
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
3037
|
+
export {
|
|
3038
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. This alias will be removed in v1.0 */
|
|
3039
|
+
default as BarChart2Icon
|
|
3040
|
+
} from '../icons/chart-no-axes-column';
|
|
3037
3041
|
// ChartPie aliases
|
|
3038
3042
|
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3039
3043
|
export {
|
|
3040
3044
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
3041
3045
|
default as PieChartIcon
|
|
3042
3046
|
} from '../icons/chart-pie';
|
|
3043
|
-
// Chromium aliases
|
|
3044
|
-
export { default as ChromiumIcon } from '../icons/chromium';
|
|
3045
|
-
export {
|
|
3046
|
-
/** @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 */
|
|
3047
|
-
default as ChromeIcon
|
|
3048
|
-
} from '../icons/chromium';
|
|
3049
3047
|
// ChartScatter aliases
|
|
3050
3048
|
export { default as ChartScatterIcon } from '../icons/chart-scatter';
|
|
3051
3049
|
export {
|
|
3052
3050
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
3053
3051
|
default as ScatterChartIcon
|
|
3054
3052
|
} from '../icons/chart-scatter';
|
|
3053
|
+
// Chromium aliases
|
|
3054
|
+
export { default as ChromiumIcon } from '../icons/chromium';
|
|
3055
|
+
export {
|
|
3056
|
+
/** @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
|
+
default as ChromeIcon
|
|
3058
|
+
} from '../icons/chromium';
|
|
3055
3059
|
// CircleAlert aliases
|
|
3056
3060
|
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3057
3061
|
export {
|
|
@@ -3094,18 +3098,18 @@ export {
|
|
|
3094
3098
|
/** @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 */
|
|
3095
3099
|
default as ArrowUpRightFromCircleIcon
|
|
3096
3100
|
} from '../icons/circle-arrow-out-up-right';
|
|
3097
|
-
// CircleArrowRight aliases
|
|
3098
|
-
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3099
|
-
export {
|
|
3100
|
-
/** @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 */
|
|
3101
|
-
default as ArrowRightCircleIcon
|
|
3102
|
-
} from '../icons/circle-arrow-right';
|
|
3103
3101
|
// CircleArrowUp aliases
|
|
3104
3102
|
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
3105
3103
|
export {
|
|
3106
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 */
|
|
3107
3105
|
default as ArrowUpCircleIcon
|
|
3108
3106
|
} from '../icons/circle-arrow-up';
|
|
3107
|
+
// CircleArrowRight aliases
|
|
3108
|
+
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3109
|
+
export {
|
|
3110
|
+
/** @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
|
+
default as ArrowRightCircleIcon
|
|
3112
|
+
} from '../icons/circle-arrow-right';
|
|
3109
3113
|
// CircleCheckBig aliases
|
|
3110
3114
|
export { default as CircleCheckBigIcon } from '../icons/circle-check-big';
|
|
3111
3115
|
export {
|
|
@@ -3124,18 +3128,18 @@ export {
|
|
|
3124
3128
|
/** @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 */
|
|
3125
3129
|
default as ChevronDownCircleIcon
|
|
3126
3130
|
} from '../icons/circle-chevron-down';
|
|
3127
|
-
// CircleChevronLeft aliases
|
|
3128
|
-
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3129
|
-
export {
|
|
3130
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3131
|
-
default as ChevronLeftCircleIcon
|
|
3132
|
-
} from '../icons/circle-chevron-left';
|
|
3133
3131
|
// CircleChevronRight aliases
|
|
3134
3132
|
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3135
3133
|
export {
|
|
3136
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 */
|
|
3137
3135
|
default as ChevronRightCircleIcon
|
|
3138
3136
|
} from '../icons/circle-chevron-right';
|
|
3137
|
+
// CircleChevronLeft aliases
|
|
3138
|
+
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3139
|
+
export {
|
|
3140
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3141
|
+
default as ChevronLeftCircleIcon
|
|
3142
|
+
} from '../icons/circle-chevron-left';
|
|
3139
3143
|
// CircleChevronUp aliases
|
|
3140
3144
|
export { default as CircleChevronUpIcon } from '../icons/circle-chevron-up';
|
|
3141
3145
|
export {
|
|
@@ -3172,30 +3176,30 @@ export {
|
|
|
3172
3176
|
/** @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 */
|
|
3173
3177
|
default as ParkingCircleIcon
|
|
3174
3178
|
} from '../icons/circle-parking';
|
|
3175
|
-
//
|
|
3176
|
-
export { default as
|
|
3179
|
+
// CirclePause aliases
|
|
3180
|
+
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3177
3181
|
export {
|
|
3178
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3179
|
-
default as
|
|
3180
|
-
} from '../icons/circle-
|
|
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';
|
|
3181
3185
|
// CirclePlay aliases
|
|
3182
3186
|
export { default as CirclePlayIcon } from '../icons/circle-play';
|
|
3183
3187
|
export {
|
|
3184
3188
|
/** @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 */
|
|
3185
3189
|
default as PlayCircleIcon
|
|
3186
3190
|
} from '../icons/circle-play';
|
|
3187
|
-
// CirclePause aliases
|
|
3188
|
-
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3189
|
-
export {
|
|
3190
|
-
/** @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 */
|
|
3191
|
-
default as PauseCircleIcon
|
|
3192
|
-
} from '../icons/circle-pause';
|
|
3193
3191
|
// CirclePlus aliases
|
|
3194
3192
|
export { default as CirclePlusIcon } from '../icons/circle-plus';
|
|
3195
3193
|
export {
|
|
3196
3194
|
/** @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 */
|
|
3197
3195
|
default as PlusCircleIcon
|
|
3198
3196
|
} from '../icons/circle-plus';
|
|
3197
|
+
// CirclePercent aliases
|
|
3198
|
+
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3199
|
+
export {
|
|
3200
|
+
/** @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 */
|
|
3201
|
+
default as PercentCircleIcon
|
|
3202
|
+
} from '../icons/circle-percent';
|
|
3199
3203
|
// CirclePower aliases
|
|
3200
3204
|
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3201
3205
|
export {
|
|
@@ -3212,12 +3216,6 @@ export {
|
|
|
3212
3216
|
/** @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 */
|
|
3213
3217
|
default as CircleHelpIcon
|
|
3214
3218
|
} from '../icons/circle-question-mark';
|
|
3215
|
-
// CircleSlash2 aliases
|
|
3216
|
-
export { default as CircleSlash2Icon } from '../icons/circle-slash-2';
|
|
3217
|
-
export {
|
|
3218
|
-
/** @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 */
|
|
3219
|
-
default as CircleSlashedIcon
|
|
3220
|
-
} from '../icons/circle-slash-2';
|
|
3221
3219
|
// CircleStop aliases
|
|
3222
3220
|
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3223
3221
|
export {
|
|
@@ -3236,24 +3234,30 @@ export {
|
|
|
3236
3234
|
/** @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 */
|
|
3237
3235
|
default as UserCircleIcon
|
|
3238
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';
|
|
3239
3243
|
// CircleX aliases
|
|
3240
3244
|
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3241
3245
|
export {
|
|
3242
3246
|
/** @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 */
|
|
3243
3247
|
default as XCircleIcon
|
|
3244
3248
|
} from '../icons/circle-x';
|
|
3245
|
-
// ClipboardPenLine aliases
|
|
3246
|
-
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3247
|
-
export {
|
|
3248
|
-
/** @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 */
|
|
3249
|
-
default as ClipboardSignatureIcon
|
|
3250
|
-
} from '../icons/clipboard-pen-line';
|
|
3251
3249
|
// ClipboardPen aliases
|
|
3252
3250
|
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3253
3251
|
export {
|
|
3254
3252
|
/** @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 */
|
|
3255
3253
|
default as ClipboardEditIcon
|
|
3256
3254
|
} from '../icons/clipboard-pen';
|
|
3255
|
+
// ClipboardPenLine aliases
|
|
3256
|
+
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3257
|
+
export {
|
|
3258
|
+
/** @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 */
|
|
3259
|
+
default as ClipboardSignatureIcon
|
|
3260
|
+
} from '../icons/clipboard-pen-line';
|
|
3257
3261
|
// CloudDownload aliases
|
|
3258
3262
|
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3259
3263
|
export {
|
|
@@ -3266,12 +3270,6 @@ export {
|
|
|
3266
3270
|
/** @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 */
|
|
3267
3271
|
default as UploadCloudIcon
|
|
3268
3272
|
} from '../icons/cloud-upload';
|
|
3269
|
-
// CodeXml aliases
|
|
3270
|
-
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3271
|
-
export {
|
|
3272
|
-
/** @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 */
|
|
3273
|
-
default as Code2Icon
|
|
3274
|
-
} from '../icons/code-xml';
|
|
3275
3273
|
// Columns2 aliases
|
|
3276
3274
|
export { default as Columns2Icon } from '../icons/columns-2';
|
|
3277
3275
|
export {
|
|
@@ -3288,24 +3286,24 @@ export {
|
|
|
3288
3286
|
/** @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 */
|
|
3289
3287
|
default as TableConfigIcon
|
|
3290
3288
|
} from '../icons/columns-3-cog';
|
|
3291
|
-
//
|
|
3292
|
-
export { default as
|
|
3289
|
+
// CodeXml aliases
|
|
3290
|
+
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3293
3291
|
export {
|
|
3294
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3295
|
-
default as
|
|
3296
|
-
} from '../icons/
|
|
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';
|
|
3297
3295
|
// Columns3 aliases
|
|
3298
3296
|
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3299
3297
|
export {
|
|
3300
3298
|
/** @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 */
|
|
3301
3299
|
default as PanelsLeftRightIcon
|
|
3302
3300
|
} from '../icons/columns-3';
|
|
3303
|
-
//
|
|
3304
|
-
export { default as
|
|
3301
|
+
// ContactRound aliases
|
|
3302
|
+
export { default as ContactRoundIcon } from '../icons/contact-round';
|
|
3305
3303
|
export {
|
|
3306
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3307
|
-
default as
|
|
3308
|
-
} from '../icons/
|
|
3304
|
+
/** @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 */
|
|
3305
|
+
default as Contact2Icon
|
|
3306
|
+
} from '../icons/contact-round';
|
|
3309
3307
|
// Earth aliases
|
|
3310
3308
|
export { default as EarthIcon } from '../icons/earth';
|
|
3311
3309
|
export {
|
|
@@ -3318,24 +3316,30 @@ export {
|
|
|
3318
3316
|
/** @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 */
|
|
3319
3317
|
default as MoreVerticalIcon
|
|
3320
3318
|
} 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';
|
|
3321
3325
|
// Ellipsis aliases
|
|
3322
3326
|
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3323
3327
|
export {
|
|
3324
3328
|
/** @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 */
|
|
3325
3329
|
default as MoreHorizontalIcon
|
|
3326
3330
|
} from '../icons/ellipsis';
|
|
3327
|
-
// FileAxis3d aliases
|
|
3328
|
-
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3329
|
-
export {
|
|
3330
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
3331
|
-
default as FileAxis3DIcon
|
|
3332
|
-
} from '../icons/file-axis-3d';
|
|
3333
3331
|
// FileBadge aliases
|
|
3334
3332
|
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
3335
3333
|
export {
|
|
3336
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 */
|
|
3337
3335
|
default as FileBadge2Icon
|
|
3338
3336
|
} from '../icons/file-badge';
|
|
3337
|
+
// FileAxis3d aliases
|
|
3338
|
+
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3339
|
+
export {
|
|
3340
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
3341
|
+
default as FileAxis3DIcon
|
|
3342
|
+
} from '../icons/file-axis-3d';
|
|
3339
3343
|
// FileBracesCorner aliases
|
|
3340
3344
|
export { default as FileBracesCornerIcon } from '../icons/file-braces-corner';
|
|
3341
3345
|
export {
|
|
@@ -3348,18 +3352,18 @@ export {
|
|
|
3348
3352
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
3349
3353
|
default as FileJsonIcon
|
|
3350
3354
|
} from '../icons/file-braces';
|
|
3351
|
-
// FileChartColumnIncreasing aliases
|
|
3352
|
-
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3353
|
-
export {
|
|
3354
|
-
/** @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 */
|
|
3355
|
-
default as FileBarChartIcon
|
|
3356
|
-
} from '../icons/file-chart-column-increasing';
|
|
3357
3355
|
// FileChartColumn aliases
|
|
3358
3356
|
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3359
3357
|
export {
|
|
3360
3358
|
/** @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 */
|
|
3361
3359
|
default as FileBarChart2Icon
|
|
3362
3360
|
} from '../icons/file-chart-column';
|
|
3361
|
+
// FileChartColumnIncreasing aliases
|
|
3362
|
+
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3363
|
+
export {
|
|
3364
|
+
/** @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 */
|
|
3365
|
+
default as FileBarChartIcon
|
|
3366
|
+
} from '../icons/file-chart-column-increasing';
|
|
3363
3367
|
// FileChartPie aliases
|
|
3364
3368
|
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3365
3369
|
export {
|
|
@@ -3372,18 +3376,18 @@ export {
|
|
|
3372
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 */
|
|
3373
3377
|
default as FileLineChartIcon
|
|
3374
3378
|
} from '../icons/file-chart-line';
|
|
3375
|
-
// FileCodeCorner aliases
|
|
3376
|
-
export { default as FileCodeCornerIcon } from '../icons/file-code-corner';
|
|
3377
|
-
export {
|
|
3378
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. This alias will be removed in v1.0 */
|
|
3379
|
-
default as FileCode2Icon
|
|
3380
|
-
} from '../icons/file-code-corner';
|
|
3381
3379
|
// FileCheckCorner aliases
|
|
3382
3380
|
export { default as FileCheckCornerIcon } from '../icons/file-check-corner';
|
|
3383
3381
|
export {
|
|
3384
3382
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. This alias will be removed in v1.0 */
|
|
3385
3383
|
default as FileCheck2Icon
|
|
3386
3384
|
} from '../icons/file-check-corner';
|
|
3385
|
+
// FileCodeCorner aliases
|
|
3386
|
+
export { default as FileCodeCornerIcon } from '../icons/file-code-corner';
|
|
3387
|
+
export {
|
|
3388
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. This alias will be removed in v1.0 */
|
|
3389
|
+
default as FileCode2Icon
|
|
3390
|
+
} from '../icons/file-code-corner';
|
|
3387
3391
|
// FileCog aliases
|
|
3388
3392
|
export { default as FileCogIcon } from '../icons/file-cog';
|
|
3389
3393
|
export {
|
|
@@ -3396,12 +3400,6 @@ export {
|
|
|
3396
3400
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. This alias will be removed in v1.0 */
|
|
3397
3401
|
default as FileWarningIcon
|
|
3398
3402
|
} from '../icons/file-exclamation-point';
|
|
3399
|
-
// FileKey aliases
|
|
3400
|
-
export { default as FileKeyIcon } from '../icons/file-key';
|
|
3401
|
-
export {
|
|
3402
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. This alias will be removed in v1.0 */
|
|
3403
|
-
default as FileKey2Icon
|
|
3404
|
-
} from '../icons/file-key';
|
|
3405
3403
|
// FileHeadphone aliases
|
|
3406
3404
|
export { default as FileHeadphoneIcon } from '../icons/file-headphone';
|
|
3407
3405
|
export {
|
|
@@ -3412,6 +3410,12 @@ export {
|
|
|
3412
3410
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileHeadphone} instead. This alias will be removed in v1.0 */
|
|
3413
3411
|
default as FileAudio2Icon
|
|
3414
3412
|
} from '../icons/file-headphone';
|
|
3413
|
+
// FileKey aliases
|
|
3414
|
+
export { default as FileKeyIcon } from '../icons/file-key';
|
|
3415
|
+
export {
|
|
3416
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. This alias will be removed in v1.0 */
|
|
3417
|
+
default as FileKey2Icon
|
|
3418
|
+
} from '../icons/file-key';
|
|
3415
3419
|
// FileLock aliases
|
|
3416
3420
|
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3417
3421
|
export {
|
|
@@ -3430,42 +3434,42 @@ export {
|
|
|
3430
3434
|
/** @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 */
|
|
3431
3435
|
default as FileSignatureIcon
|
|
3432
3436
|
} from '../icons/file-pen-line';
|
|
3433
|
-
// FilePen aliases
|
|
3434
|
-
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3435
|
-
export {
|
|
3436
|
-
/** @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 */
|
|
3437
|
-
default as FileEditIcon
|
|
3438
|
-
} from '../icons/file-pen';
|
|
3439
|
-
// FilePlusCorner aliases
|
|
3440
|
-
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3441
|
-
export {
|
|
3442
|
-
/** @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 */
|
|
3443
|
-
default as FilePlus2Icon
|
|
3444
|
-
} from '../icons/file-plus-corner';
|
|
3445
3437
|
// FilePlay aliases
|
|
3446
3438
|
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3447
3439
|
export {
|
|
3448
3440
|
/** @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 */
|
|
3449
3441
|
default as FileVideoIcon
|
|
3450
3442
|
} from '../icons/file-play';
|
|
3443
|
+
// FilePen aliases
|
|
3444
|
+
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3445
|
+
export {
|
|
3446
|
+
/** @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
|
+
default as FileEditIcon
|
|
3448
|
+
} from '../icons/file-pen';
|
|
3451
3449
|
// FileQuestionMark aliases
|
|
3452
3450
|
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3453
3451
|
export {
|
|
3454
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 */
|
|
3455
3453
|
default as FileQuestionIcon
|
|
3456
3454
|
} from '../icons/file-question-mark';
|
|
3457
|
-
// FileSearchCorner aliases
|
|
3458
|
-
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3459
|
-
export {
|
|
3460
|
-
/** @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 */
|
|
3461
|
-
default as FileSearch2Icon
|
|
3462
|
-
} from '../icons/file-search-corner';
|
|
3463
3455
|
// FileSignal aliases
|
|
3464
3456
|
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3465
3457
|
export {
|
|
3466
3458
|
/** @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 */
|
|
3467
3459
|
default as FileVolume2Icon
|
|
3468
3460
|
} from '../icons/file-signal';
|
|
3461
|
+
// FilePlusCorner aliases
|
|
3462
|
+
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3463
|
+
export {
|
|
3464
|
+
/** @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
|
+
default as FilePlus2Icon
|
|
3466
|
+
} from '../icons/file-plus-corner';
|
|
3467
|
+
// FileSearchCorner aliases
|
|
3468
|
+
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3469
|
+
export {
|
|
3470
|
+
/** @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
|
+
default as FileSearch2Icon
|
|
3472
|
+
} from '../icons/file-search-corner';
|
|
3469
3473
|
// FileTypeCorner aliases
|
|
3470
3474
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3471
3475
|
export {
|
|
@@ -3514,18 +3518,18 @@ export {
|
|
|
3514
3518
|
/** @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 */
|
|
3515
3519
|
default as FilterIcon
|
|
3516
3520
|
} from '../icons/funnel';
|
|
3517
|
-
// GitCommitHorizontal aliases
|
|
3518
|
-
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3519
|
-
export {
|
|
3520
|
-
/** @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 */
|
|
3521
|
-
default as GitCommitIcon
|
|
3522
|
-
} from '../icons/git-commit-horizontal';
|
|
3523
3521
|
// Grid2x2Check aliases
|
|
3524
3522
|
export { default as Grid2x2CheckIcon } from '../icons/grid-2x2-check';
|
|
3525
3523
|
export {
|
|
3526
3524
|
/** @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 */
|
|
3527
3525
|
default as Grid2X2CheckIcon
|
|
3528
3526
|
} from '../icons/grid-2x2-check';
|
|
3527
|
+
// GitCommitHorizontal aliases
|
|
3528
|
+
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3529
|
+
export {
|
|
3530
|
+
/** @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 */
|
|
3531
|
+
default as GitCommitIcon
|
|
3532
|
+
} from '../icons/git-commit-horizontal';
|
|
3529
3533
|
// Grid2x2Plus aliases
|
|
3530
3534
|
export { default as Grid2x2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3531
3535
|
export {
|
|
@@ -3544,12 +3548,6 @@ export {
|
|
|
3544
3548
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
3545
3549
|
default as Grid2X2Icon
|
|
3546
3550
|
} from '../icons/grid-2x2';
|
|
3547
|
-
// HandGrab aliases
|
|
3548
|
-
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3549
|
-
export {
|
|
3550
|
-
/** @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 */
|
|
3551
|
-
default as GrabIcon
|
|
3552
|
-
} from '../icons/hand-grab';
|
|
3553
3551
|
// Grid3x3 aliases
|
|
3554
3552
|
export { default as Grid3x3Icon } from '../icons/grid-3x3';
|
|
3555
3553
|
export {
|
|
@@ -3560,18 +3558,18 @@ export {
|
|
|
3560
3558
|
/** @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 */
|
|
3561
3559
|
default as Grid3X3Icon
|
|
3562
3560
|
} from '../icons/grid-3x3';
|
|
3563
|
-
// IceCreamBowl aliases
|
|
3564
|
-
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3565
|
-
export {
|
|
3566
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
3567
|
-
default as IceCream2Icon
|
|
3568
|
-
} from '../icons/ice-cream-bowl';
|
|
3569
3561
|
// HandHelping aliases
|
|
3570
3562
|
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3571
3563
|
export {
|
|
3572
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 */
|
|
3573
3565
|
default as HelpingHandIcon
|
|
3574
3566
|
} from '../icons/hand-helping';
|
|
3567
|
+
// HandGrab aliases
|
|
3568
|
+
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3569
|
+
export {
|
|
3570
|
+
/** @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
|
+
default as GrabIcon
|
|
3572
|
+
} from '../icons/hand-grab';
|
|
3575
3573
|
// House aliases
|
|
3576
3574
|
export { default as HouseIcon } from '../icons/house';
|
|
3577
3575
|
export {
|
|
@@ -3584,12 +3582,24 @@ export {
|
|
|
3584
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 */
|
|
3585
3583
|
default as IceCreamIcon
|
|
3586
3584
|
} from '../icons/ice-cream-cone';
|
|
3585
|
+
// IceCreamBowl aliases
|
|
3586
|
+
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3587
|
+
export {
|
|
3588
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
3589
|
+
default as IceCream2Icon
|
|
3590
|
+
} from '../icons/ice-cream-bowl';
|
|
3587
3591
|
// LaptopMinimal aliases
|
|
3588
3592
|
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3589
3593
|
export {
|
|
3590
3594
|
/** @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 */
|
|
3591
3595
|
default as Laptop2Icon
|
|
3592
3596
|
} from '../icons/laptop-minimal';
|
|
3597
|
+
// Layers aliases
|
|
3598
|
+
export { default as LayersIcon } from '../icons/layers';
|
|
3599
|
+
export {
|
|
3600
|
+
/** @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
|
+
default as Layers3Icon
|
|
3602
|
+
} from '../icons/layers';
|
|
3593
3603
|
// ListIndentDecrease aliases
|
|
3594
3604
|
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3595
3605
|
export {
|
|
@@ -3610,12 +3620,6 @@ export {
|
|
|
3610
3620
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. This alias will be removed in v1.0 */
|
|
3611
3621
|
default as IndentIncreaseIcon
|
|
3612
3622
|
} from '../icons/list-indent-increase';
|
|
3613
|
-
// Layers aliases
|
|
3614
|
-
export { default as LayersIcon } from '../icons/layers';
|
|
3615
|
-
export {
|
|
3616
|
-
/** @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 */
|
|
3617
|
-
default as Layers3Icon
|
|
3618
|
-
} from '../icons/layers';
|
|
3619
3623
|
// LoaderCircle aliases
|
|
3620
3624
|
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3621
3625
|
export {
|
|
@@ -3664,18 +3668,18 @@ export {
|
|
|
3664
3668
|
/** @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 */
|
|
3665
3669
|
default as Move3DIcon
|
|
3666
3670
|
} from '../icons/move-3d';
|
|
3667
|
-
// OctagonPause aliases
|
|
3668
|
-
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3669
|
-
export {
|
|
3670
|
-
/** @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 */
|
|
3671
|
-
default as PauseOctagonIcon
|
|
3672
|
-
} from '../icons/octagon-pause';
|
|
3673
3671
|
// OctagonAlert aliases
|
|
3674
3672
|
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3675
3673
|
export {
|
|
3676
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 */
|
|
3677
3675
|
default as AlertOctagonIcon
|
|
3678
3676
|
} from '../icons/octagon-alert';
|
|
3677
|
+
// OctagonPause aliases
|
|
3678
|
+
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3679
|
+
export {
|
|
3680
|
+
/** @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
|
+
default as PauseOctagonIcon
|
|
3682
|
+
} from '../icons/octagon-pause';
|
|
3679
3683
|
// OctagonX aliases
|
|
3680
3684
|
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3681
3685
|
export {
|
|
@@ -3688,18 +3692,18 @@ export {
|
|
|
3688
3692
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
3689
3693
|
default as Paintbrush2Icon
|
|
3690
3694
|
} from '../icons/paintbrush-vertical';
|
|
3691
|
-
// PanelLeftClose aliases
|
|
3692
|
-
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3693
|
-
export {
|
|
3694
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
3695
|
-
default as SidebarCloseIcon
|
|
3696
|
-
} from '../icons/panel-left-close';
|
|
3697
3695
|
// PanelBottomDashed aliases
|
|
3698
3696
|
export { default as PanelBottomDashedIcon } from '../icons/panel-bottom-dashed';
|
|
3699
3697
|
export {
|
|
3700
3698
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
3701
3699
|
default as PanelBottomInactiveIcon
|
|
3702
3700
|
} from '../icons/panel-bottom-dashed';
|
|
3701
|
+
// PanelLeftClose aliases
|
|
3702
|
+
export { default as PanelLeftCloseIcon } from '../icons/panel-left-close';
|
|
3703
|
+
export {
|
|
3704
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
3705
|
+
default as SidebarCloseIcon
|
|
3706
|
+
} from '../icons/panel-left-close';
|
|
3703
3707
|
// PanelLeftDashed aliases
|
|
3704
3708
|
export { default as PanelLeftDashedIcon } from '../icons/panel-left-dashed';
|
|
3705
3709
|
export {
|
|
@@ -3730,12 +3734,6 @@ export {
|
|
|
3730
3734
|
/** @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 */
|
|
3731
3735
|
default as PanelTopInactiveIcon
|
|
3732
3736
|
} from '../icons/panel-top-dashed';
|
|
3733
|
-
// PanelsTopLeft aliases
|
|
3734
|
-
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3735
|
-
export {
|
|
3736
|
-
/** @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 */
|
|
3737
|
-
default as LayoutIcon
|
|
3738
|
-
} from '../icons/panels-top-left';
|
|
3739
3737
|
// Pen aliases
|
|
3740
3738
|
export { default as PenIcon } from '../icons/pen';
|
|
3741
3739
|
export {
|
|
@@ -3748,30 +3746,36 @@ export {
|
|
|
3748
3746
|
/** @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 */
|
|
3749
3747
|
default as Edit3Icon
|
|
3750
3748
|
} from '../icons/pen-line';
|
|
3751
|
-
//
|
|
3752
|
-
export { default as
|
|
3749
|
+
// PanelsTopLeft aliases
|
|
3750
|
+
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3753
3751
|
export {
|
|
3754
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3755
|
-
default as
|
|
3756
|
-
} from '../icons/
|
|
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';
|
|
3757
3755
|
// RectangleEllipsis aliases
|
|
3758
3756
|
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3759
3757
|
export {
|
|
3760
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 */
|
|
3761
3759
|
default as FormInputIcon
|
|
3762
3760
|
} from '../icons/rectangle-ellipsis';
|
|
3763
|
-
//
|
|
3764
|
-
export { default as
|
|
3761
|
+
// PlugZap aliases
|
|
3762
|
+
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3765
3763
|
export {
|
|
3766
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3767
|
-
default as
|
|
3768
|
-
} from '../icons/
|
|
3764
|
+
/** @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
|
+
default as PlugZap2Icon
|
|
3766
|
+
} from '../icons/plug-zap';
|
|
3769
3767
|
// Rows2 aliases
|
|
3770
3768
|
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3771
3769
|
export {
|
|
3772
3770
|
/** @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 */
|
|
3773
3771
|
default as RowsIcon
|
|
3774
3772
|
} from '../icons/rows-2';
|
|
3773
|
+
// Rotate3d aliases
|
|
3774
|
+
export { default as Rotate3dIcon } from '../icons/rotate-3d';
|
|
3775
|
+
export {
|
|
3776
|
+
/** @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
|
+
default as Rotate3DIcon
|
|
3778
|
+
} from '../icons/rotate-3d';
|
|
3775
3779
|
// Rows3 aliases
|
|
3776
3780
|
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3777
3781
|
export {
|
|
@@ -3850,6 +3854,12 @@ export {
|
|
|
3850
3854
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
3851
3855
|
default as ArrowDownLeftFromSquareIcon
|
|
3852
3856
|
} from '../icons/square-arrow-out-down-left';
|
|
3857
|
+
// SquareArrowOutDownRight aliases
|
|
3858
|
+
export { default as SquareArrowOutDownRightIcon } from '../icons/square-arrow-out-down-right';
|
|
3859
|
+
export {
|
|
3860
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3861
|
+
default as ArrowDownRightFromSquareIcon
|
|
3862
|
+
} from '../icons/square-arrow-out-down-right';
|
|
3853
3863
|
// SquareArrowOutUpLeft aliases
|
|
3854
3864
|
export { default as SquareArrowOutUpLeftIcon } from '../icons/square-arrow-out-up-left';
|
|
3855
3865
|
export {
|
|
@@ -3868,42 +3878,36 @@ export {
|
|
|
3868
3878
|
/** @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 */
|
|
3869
3879
|
default as ArrowRightSquareIcon
|
|
3870
3880
|
} from '../icons/square-arrow-right';
|
|
3871
|
-
// SquareArrowOutDownRight aliases
|
|
3872
|
-
export { default as SquareArrowOutDownRightIcon } from '../icons/square-arrow-out-down-right';
|
|
3873
|
-
export {
|
|
3874
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3875
|
-
default as ArrowDownRightFromSquareIcon
|
|
3876
|
-
} from '../icons/square-arrow-out-down-right';
|
|
3877
3881
|
// SquareArrowUpLeft aliases
|
|
3878
3882
|
export { default as SquareArrowUpLeftIcon } from '../icons/square-arrow-up-left';
|
|
3879
3883
|
export {
|
|
3880
3884
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
3881
3885
|
default as ArrowUpLeftSquareIcon
|
|
3882
3886
|
} from '../icons/square-arrow-up-left';
|
|
3883
|
-
// SquareArrowUp aliases
|
|
3884
|
-
export { default as SquareArrowUpIcon } from '../icons/square-arrow-up';
|
|
3885
|
-
export {
|
|
3886
|
-
/** @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 */
|
|
3887
|
-
default as ArrowUpSquareIcon
|
|
3888
|
-
} from '../icons/square-arrow-up';
|
|
3889
3887
|
// SquareArrowUpRight aliases
|
|
3890
3888
|
export { default as SquareArrowUpRightIcon } from '../icons/square-arrow-up-right';
|
|
3891
3889
|
export {
|
|
3892
3890
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
3893
3891
|
default as ArrowUpRightSquareIcon
|
|
3894
3892
|
} from '../icons/square-arrow-up-right';
|
|
3895
|
-
//
|
|
3896
|
-
export { default as
|
|
3893
|
+
// SquareArrowUp aliases
|
|
3894
|
+
export { default as SquareArrowUpIcon } from '../icons/square-arrow-up';
|
|
3897
3895
|
export {
|
|
3898
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3899
|
-
default as
|
|
3900
|
-
} from '../icons/square-
|
|
3896
|
+
/** @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
|
+
default as ArrowUpSquareIcon
|
|
3898
|
+
} from '../icons/square-arrow-up';
|
|
3901
3899
|
// SquareBottomDashedScissors aliases
|
|
3902
3900
|
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
3903
3901
|
export {
|
|
3904
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 */
|
|
3905
3903
|
default as ScissorsSquareDashedBottomIcon
|
|
3906
3904
|
} from '../icons/square-bottom-dashed-scissors';
|
|
3905
|
+
// SquareAsterisk aliases
|
|
3906
|
+
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3907
|
+
export {
|
|
3908
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
3909
|
+
default as AsteriskSquareIcon
|
|
3910
|
+
} from '../icons/square-asterisk';
|
|
3907
3911
|
// SquareChartGantt aliases
|
|
3908
3912
|
export { default as SquareChartGanttIcon } from '../icons/square-chart-gantt';
|
|
3909
3913
|
export {
|
|
@@ -3920,36 +3924,36 @@ export {
|
|
|
3920
3924
|
/** @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 */
|
|
3921
3925
|
default as CheckSquareIcon
|
|
3922
3926
|
} from '../icons/square-check-big';
|
|
3923
|
-
// SquareCheck aliases
|
|
3924
|
-
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3925
|
-
export {
|
|
3926
|
-
/** @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 */
|
|
3927
|
-
default as CheckSquare2Icon
|
|
3928
|
-
} from '../icons/square-check';
|
|
3929
3927
|
// SquareChevronDown aliases
|
|
3930
3928
|
export { default as SquareChevronDownIcon } from '../icons/square-chevron-down';
|
|
3931
3929
|
export {
|
|
3932
3930
|
/** @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 */
|
|
3933
3931
|
default as ChevronDownSquareIcon
|
|
3934
3932
|
} from '../icons/square-chevron-down';
|
|
3933
|
+
// SquareCheck aliases
|
|
3934
|
+
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3935
|
+
export {
|
|
3936
|
+
/** @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
|
+
default as CheckSquare2Icon
|
|
3938
|
+
} from '../icons/square-check';
|
|
3935
3939
|
// SquareChevronLeft aliases
|
|
3936
3940
|
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
3937
3941
|
export {
|
|
3938
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 */
|
|
3939
3943
|
default as ChevronLeftSquareIcon
|
|
3940
3944
|
} from '../icons/square-chevron-left';
|
|
3941
|
-
// SquareChevronRight aliases
|
|
3942
|
-
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
3943
|
-
export {
|
|
3944
|
-
/** @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 */
|
|
3945
|
-
default as ChevronRightSquareIcon
|
|
3946
|
-
} from '../icons/square-chevron-right';
|
|
3947
3945
|
// SquareChevronUp aliases
|
|
3948
3946
|
export { default as SquareChevronUpIcon } from '../icons/square-chevron-up';
|
|
3949
3947
|
export {
|
|
3950
3948
|
/** @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 */
|
|
3951
3949
|
default as ChevronUpSquareIcon
|
|
3952
3950
|
} from '../icons/square-chevron-up';
|
|
3951
|
+
// SquareChevronRight aliases
|
|
3952
|
+
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
3953
|
+
export {
|
|
3954
|
+
/** @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
|
+
default as ChevronRightSquareIcon
|
|
3956
|
+
} from '../icons/square-chevron-right';
|
|
3953
3957
|
// SquareCode aliases
|
|
3954
3958
|
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
3955
3959
|
export {
|
|
@@ -3974,24 +3978,18 @@ export {
|
|
|
3974
3978
|
/** @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 */
|
|
3975
3979
|
default as BoxSelectIcon
|
|
3976
3980
|
} from '../icons/square-dashed';
|
|
3977
|
-
// SquareEqual aliases
|
|
3978
|
-
export { default as SquareEqualIcon } from '../icons/square-equal';
|
|
3979
|
-
export {
|
|
3980
|
-
/** @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 */
|
|
3981
|
-
default as EqualSquareIcon
|
|
3982
|
-
} from '../icons/square-equal';
|
|
3983
3981
|
// SquareDivide aliases
|
|
3984
3982
|
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
3985
3983
|
export {
|
|
3986
3984
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. This alias will be removed in v1.0 */
|
|
3987
3985
|
default as DivideSquareIcon
|
|
3988
3986
|
} from '../icons/square-divide';
|
|
3989
|
-
//
|
|
3990
|
-
export { default as
|
|
3987
|
+
// SquareEqual aliases
|
|
3988
|
+
export { default as SquareEqualIcon } from '../icons/square-equal';
|
|
3991
3989
|
export {
|
|
3992
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3993
|
-
default as
|
|
3994
|
-
} from '../icons/square-
|
|
3990
|
+
/** @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
|
+
default as EqualSquareIcon
|
|
3992
|
+
} from '../icons/square-equal';
|
|
3995
3993
|
// SquareFunction aliases
|
|
3996
3994
|
export { default as SquareFunctionIcon } from '../icons/square-function';
|
|
3997
3995
|
export {
|
|
@@ -4004,6 +4002,12 @@ export {
|
|
|
4004
4002
|
/** @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 */
|
|
4005
4003
|
default as KanbanSquareIcon
|
|
4006
4004
|
} from '../icons/square-kanban';
|
|
4005
|
+
// SquareDot aliases
|
|
4006
|
+
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4007
|
+
export {
|
|
4008
|
+
/** @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 */
|
|
4009
|
+
default as DotSquareIcon
|
|
4010
|
+
} from '../icons/square-dot';
|
|
4007
4011
|
// SquareLibrary aliases
|
|
4008
4012
|
export { default as SquareLibraryIcon } from '../icons/square-library';
|
|
4009
4013
|
export {
|
|
@@ -4028,18 +4032,18 @@ export {
|
|
|
4028
4032
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
4029
4033
|
default as MinusSquareIcon
|
|
4030
4034
|
} from '../icons/square-minus';
|
|
4031
|
-
// SquareMousePointer aliases
|
|
4032
|
-
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4033
|
-
export {
|
|
4034
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
4035
|
-
default as InspectIcon
|
|
4036
|
-
} from '../icons/square-mouse-pointer';
|
|
4037
4035
|
// SquareParkingOff aliases
|
|
4038
4036
|
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
4039
4037
|
export {
|
|
4040
4038
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. This alias will be removed in v1.0 */
|
|
4041
4039
|
default as ParkingSquareOffIcon
|
|
4042
4040
|
} from '../icons/square-parking-off';
|
|
4041
|
+
// SquareMousePointer aliases
|
|
4042
|
+
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4043
|
+
export {
|
|
4044
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
4045
|
+
default as InspectIcon
|
|
4046
|
+
} from '../icons/square-mouse-pointer';
|
|
4043
4047
|
// SquareParking aliases
|
|
4044
4048
|
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
4045
4049
|
export {
|
|
@@ -4058,6 +4062,18 @@ export {
|
|
|
4058
4062
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
4059
4063
|
default as PiSquareIcon
|
|
4060
4064
|
} from '../icons/square-pi';
|
|
4065
|
+
// SquarePilcrow aliases
|
|
4066
|
+
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4067
|
+
export {
|
|
4068
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
4069
|
+
default as PilcrowSquareIcon
|
|
4070
|
+
} from '../icons/square-pilcrow';
|
|
4071
|
+
// SquarePlay aliases
|
|
4072
|
+
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4073
|
+
export {
|
|
4074
|
+
/** @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
|
+
default as PlaySquareIcon
|
|
4076
|
+
} from '../icons/square-play';
|
|
4061
4077
|
// SquarePen aliases
|
|
4062
4078
|
export { default as SquarePenIcon } from '../icons/square-pen';
|
|
4063
4079
|
export {
|
|
@@ -4072,18 +4088,6 @@ export {
|
|
|
4072
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 */
|
|
4073
4089
|
default as PenSquareIcon
|
|
4074
4090
|
} from '../icons/square-pen';
|
|
4075
|
-
// SquarePlay aliases
|
|
4076
|
-
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4077
|
-
export {
|
|
4078
|
-
/** @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 */
|
|
4079
|
-
default as PlaySquareIcon
|
|
4080
|
-
} from '../icons/square-play';
|
|
4081
|
-
// SquarePilcrow aliases
|
|
4082
|
-
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4083
|
-
export {
|
|
4084
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
4085
|
-
default as PilcrowSquareIcon
|
|
4086
|
-
} from '../icons/square-pilcrow';
|
|
4087
4091
|
// SquarePlus aliases
|
|
4088
4092
|
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4089
4093
|
export {
|
|
@@ -4096,36 +4100,36 @@ export {
|
|
|
4096
4100
|
/** @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 */
|
|
4097
4101
|
default as PowerSquareIcon
|
|
4098
4102
|
} from '../icons/square-power';
|
|
4099
|
-
// SquareScissors aliases
|
|
4100
|
-
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4101
|
-
export {
|
|
4102
|
-
/** @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 */
|
|
4103
|
-
default as ScissorsSquareIcon
|
|
4104
|
-
} from '../icons/square-scissors';
|
|
4105
4103
|
// SquareSigma aliases
|
|
4106
4104
|
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4107
4105
|
export {
|
|
4108
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 */
|
|
4109
4107
|
default as SigmaSquareIcon
|
|
4110
4108
|
} from '../icons/square-sigma';
|
|
4109
|
+
// SquareScissors aliases
|
|
4110
|
+
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4111
|
+
export {
|
|
4112
|
+
/** @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
|
+
default as ScissorsSquareIcon
|
|
4114
|
+
} from '../icons/square-scissors';
|
|
4111
4115
|
// SquareSlash aliases
|
|
4112
4116
|
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
4113
4117
|
export {
|
|
4114
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 */
|
|
4115
4119
|
default as SlashSquareIcon
|
|
4116
4120
|
} from '../icons/square-slash';
|
|
4117
|
-
// SquareSplitHorizontal aliases
|
|
4118
|
-
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4119
|
-
export {
|
|
4120
|
-
/** @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 */
|
|
4121
|
-
default as SplitSquareHorizontalIcon
|
|
4122
|
-
} from '../icons/square-split-horizontal';
|
|
4123
4121
|
// SquareSplitVertical aliases
|
|
4124
4122
|
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4125
4123
|
export {
|
|
4126
4124
|
/** @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 */
|
|
4127
4125
|
default as SplitSquareVerticalIcon
|
|
4128
4126
|
} from '../icons/square-split-vertical';
|
|
4127
|
+
// SquareSplitHorizontal aliases
|
|
4128
|
+
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4129
|
+
export {
|
|
4130
|
+
/** @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
|
+
default as SplitSquareHorizontalIcon
|
|
4132
|
+
} from '../icons/square-split-horizontal';
|
|
4129
4133
|
// SquareTerminal aliases
|
|
4130
4134
|
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4131
4135
|
export {
|
|
@@ -4138,6 +4142,12 @@ export {
|
|
|
4138
4142
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
4139
4143
|
default as UserSquare2Icon
|
|
4140
4144
|
} from '../icons/square-user-round';
|
|
4145
|
+
// SquareUser aliases
|
|
4146
|
+
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4147
|
+
export {
|
|
4148
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
4149
|
+
default as UserSquareIcon
|
|
4150
|
+
} from '../icons/square-user';
|
|
4141
4151
|
// SquareX aliases
|
|
4142
4152
|
export { default as SquareXIcon } from '../icons/square-x';
|
|
4143
4153
|
export {
|
|
@@ -4150,12 +4160,6 @@ export {
|
|
|
4150
4160
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
4151
4161
|
default as TestTube2Icon
|
|
4152
4162
|
} from '../icons/test-tube-diagonal';
|
|
4153
|
-
// SquareUser aliases
|
|
4154
|
-
export { default as SquareUserIcon } from '../icons/square-user';
|
|
4155
|
-
export {
|
|
4156
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
4157
|
-
default as UserSquareIcon
|
|
4158
|
-
} from '../icons/square-user';
|
|
4159
4163
|
// TextAlignCenter aliases
|
|
4160
4164
|
export { default as TextAlignCenterIcon } from '../icons/text-align-center';
|
|
4161
4165
|
export {
|
|
@@ -4174,6 +4178,12 @@ export {
|
|
|
4174
4178
|
/** @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 */
|
|
4175
4179
|
default as AlignJustifyIcon
|
|
4176
4180
|
} 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';
|
|
4177
4187
|
// TextAlignStart aliases
|
|
4178
4188
|
export { default as TextAlignStartIcon } from '../icons/text-align-start';
|
|
4179
4189
|
export {
|
|
@@ -4184,12 +4194,6 @@ export {
|
|
|
4184
4194
|
/** @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 */
|
|
4185
4195
|
default as AlignLeftIcon
|
|
4186
4196
|
} from '../icons/text-align-start';
|
|
4187
|
-
// TextInitial aliases
|
|
4188
|
-
export { default as TextInitialIcon } from '../icons/text-initial';
|
|
4189
|
-
export {
|
|
4190
|
-
/** @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 */
|
|
4191
|
-
default as LetterTextIcon
|
|
4192
|
-
} from '../icons/text-initial';
|
|
4193
4197
|
// TextWrap aliases
|
|
4194
4198
|
export { default as TextWrapIcon } from '../icons/text-wrap';
|
|
4195
4199
|
export {
|
|
@@ -4202,24 +4206,30 @@ export {
|
|
|
4202
4206
|
/** @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 */
|
|
4203
4207
|
default as TextSelectionIcon
|
|
4204
4208
|
} from '../icons/text-select';
|
|
4205
|
-
// TramFront aliases
|
|
4206
|
-
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4207
|
-
export {
|
|
4208
|
-
/** @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 */
|
|
4209
|
-
default as TrainIcon
|
|
4210
|
-
} from '../icons/tram-front';
|
|
4211
4209
|
// TreePalm aliases
|
|
4212
4210
|
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4213
4211
|
export {
|
|
4214
4212
|
/** @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 */
|
|
4215
4213
|
default as PalmtreeIcon
|
|
4216
4214
|
} from '../icons/tree-palm';
|
|
4215
|
+
// TramFront aliases
|
|
4216
|
+
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4217
|
+
export {
|
|
4218
|
+
/** @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
|
+
default as TrainIcon
|
|
4220
|
+
} from '../icons/tram-front';
|
|
4217
4221
|
// TriangleAlert aliases
|
|
4218
4222
|
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4219
4223
|
export {
|
|
4220
4224
|
/** @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 */
|
|
4221
4225
|
default as AlertTriangleIcon
|
|
4222
4226
|
} 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';
|
|
4223
4233
|
// TvMinimal aliases
|
|
4224
4234
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
4225
4235
|
export {
|
|
@@ -4232,12 +4242,6 @@ export {
|
|
|
4232
4242
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
4233
4243
|
default as School2Icon
|
|
4234
4244
|
} from '../icons/university';
|
|
4235
|
-
// UserRoundCheck aliases
|
|
4236
|
-
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4237
|
-
export {
|
|
4238
|
-
/** @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 */
|
|
4239
|
-
default as UserCheck2Icon
|
|
4240
|
-
} from '../icons/user-round-check';
|
|
4241
4245
|
// UserRoundCog aliases
|
|
4242
4246
|
export { default as UserRoundCogIcon } from '../icons/user-round-cog';
|
|
4243
4247
|
export {
|
|
@@ -4274,12 +4278,6 @@ export {
|
|
|
4274
4278
|
/** @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 */
|
|
4275
4279
|
default as Users2Icon
|
|
4276
4280
|
} from '../icons/users-round';
|
|
4277
|
-
// Utensils aliases
|
|
4278
|
-
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4279
|
-
export {
|
|
4280
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
4281
|
-
default as ForkKnifeIcon
|
|
4282
|
-
} from '../icons/utensils';
|
|
4283
4281
|
// UtensilsCrossed aliases
|
|
4284
4282
|
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4285
4283
|
export {
|
|
@@ -4292,6 +4290,12 @@ export {
|
|
|
4292
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 */
|
|
4293
4291
|
default as Wallet2Icon
|
|
4294
4292
|
} from '../icons/wallet-minimal';
|
|
4293
|
+
// Utensils aliases
|
|
4294
|
+
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4295
|
+
export {
|
|
4296
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
4297
|
+
default as ForkKnifeIcon
|
|
4298
|
+
} from '../icons/utensils';
|
|
4295
4299
|
// WandSparkles aliases
|
|
4296
4300
|
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4297
4301
|
export {
|