@lucide/astro 0.554.0 → 0.555.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/aliases/aliases.ts +58 -58
- package/src/aliases/prefixed.ts +464 -458
- package/src/aliases/suffixed.ts +684 -678
- package/src/icons/calendars.ts +2 -2
- package/src/icons/form.ts +18 -0
- package/src/icons/index.ts +105 -102
- package/src/icons/scale.ts +2 -2
- package/src/icons/waves-arrow-down.ts +18 -0
- package/src/icons/waves-arrow-up.ts +18 -0
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
// ALargeSmall aliases
|
|
2
|
+
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
1
3
|
// AArrowUp aliases
|
|
2
4
|
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
5
|
+
// AArrowDown aliases
|
|
6
|
+
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
7
|
// Accessibility aliases
|
|
4
8
|
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
5
9
|
// Activity aliases
|
|
@@ -8,16 +12,14 @@ export { default as ActivityIcon } from '../icons/activity';
|
|
|
8
12
|
export { default as AirVentIcon } from '../icons/air-vent';
|
|
9
13
|
// Airplay aliases
|
|
10
14
|
export { default as AirplayIcon } from '../icons/airplay';
|
|
11
|
-
// ALargeSmall aliases
|
|
12
|
-
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
13
15
|
// AlarmClockOff aliases
|
|
14
16
|
export { default as AlarmClockOffIcon } from '../icons/alarm-clock-off';
|
|
15
|
-
// Album aliases
|
|
16
|
-
export { default as AlbumIcon } from '../icons/album';
|
|
17
17
|
// AlarmClock aliases
|
|
18
18
|
export { default as AlarmClockIcon } from '../icons/alarm-clock';
|
|
19
19
|
// AlarmSmoke aliases
|
|
20
20
|
export { default as AlarmSmokeIcon } from '../icons/alarm-smoke';
|
|
21
|
+
// Album aliases
|
|
22
|
+
export { default as AlbumIcon } from '../icons/album';
|
|
21
23
|
// AlignCenterHorizontal aliases
|
|
22
24
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
23
25
|
// AlignCenterVertical aliases
|
|
@@ -36,92 +38,92 @@ export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-ho
|
|
|
36
38
|
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
37
39
|
// AlignHorizontalJustifyEnd aliases
|
|
38
40
|
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
39
|
-
// AlignHorizontalSpaceAround aliases
|
|
40
|
-
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
41
|
-
// AlignHorizontalSpaceBetween aliases
|
|
42
|
-
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
43
41
|
// AlignHorizontalJustifyStart aliases
|
|
44
42
|
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
43
|
+
// AlignHorizontalSpaceBetween aliases
|
|
44
|
+
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
45
|
+
// AlignStartHorizontal aliases
|
|
46
|
+
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
45
47
|
// AlignStartVertical aliases
|
|
46
48
|
export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical';
|
|
47
49
|
// AlignVerticalDistributeCenter aliases
|
|
48
50
|
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
49
|
-
// AlignStartHorizontal aliases
|
|
50
|
-
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
51
51
|
// AlignVerticalDistributeEnd aliases
|
|
52
52
|
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
53
|
-
// AlignVerticalJustifyCenter aliases
|
|
54
|
-
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
55
53
|
// AlignVerticalDistributeStart aliases
|
|
56
54
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
57
|
-
//
|
|
58
|
-
export { default as
|
|
55
|
+
// AlignHorizontalSpaceAround aliases
|
|
56
|
+
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
57
|
+
// AlignVerticalJustifyCenter aliases
|
|
58
|
+
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
59
59
|
// AlignVerticalJustifyEnd aliases
|
|
60
60
|
export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-justify-end';
|
|
61
|
+
// AlignVerticalJustifyStart aliases
|
|
62
|
+
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
61
63
|
// AlignVerticalSpaceAround aliases
|
|
62
64
|
export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical-space-around';
|
|
63
65
|
// AlignVerticalSpaceBetween aliases
|
|
64
66
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
65
|
-
// Ampersand aliases
|
|
66
|
-
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
67
67
|
// Ambulance aliases
|
|
68
68
|
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
69
|
-
//
|
|
70
|
-
export { default as
|
|
69
|
+
// Ampersand aliases
|
|
70
|
+
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
71
71
|
// Amphora aliases
|
|
72
72
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
73
|
-
//
|
|
74
|
-
export { default as
|
|
73
|
+
// Ampersands aliases
|
|
74
|
+
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
75
75
|
// Angry aliases
|
|
76
76
|
export { default as AngryIcon } from '../icons/angry';
|
|
77
|
+
// Anchor aliases
|
|
78
|
+
export { default as AnchorIcon } from '../icons/anchor';
|
|
77
79
|
// Annoyed aliases
|
|
78
80
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
79
|
-
// Antenna aliases
|
|
80
|
-
export { default as AntennaIcon } from '../icons/antenna';
|
|
81
81
|
// Anvil aliases
|
|
82
82
|
export { default as AnvilIcon } from '../icons/anvil';
|
|
83
|
-
//
|
|
84
|
-
export { default as
|
|
83
|
+
// Antenna aliases
|
|
84
|
+
export { default as AntennaIcon } from '../icons/antenna';
|
|
85
85
|
// Aperture aliases
|
|
86
86
|
export { default as ApertureIcon } from '../icons/aperture';
|
|
87
|
+
// AppWindowMac aliases
|
|
88
|
+
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
87
89
|
// AppWindow aliases
|
|
88
90
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
89
91
|
// Apple aliases
|
|
90
92
|
export { default as AppleIcon } from '../icons/apple';
|
|
91
|
-
// ArchiveX aliases
|
|
92
|
-
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
93
93
|
// ArchiveRestore aliases
|
|
94
94
|
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
95
95
|
// Archive aliases
|
|
96
96
|
export { default as ArchiveIcon } from '../icons/archive';
|
|
97
|
+
// ArchiveX aliases
|
|
98
|
+
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
97
99
|
// Armchair aliases
|
|
98
100
|
export { default as ArmchairIcon } from '../icons/armchair';
|
|
99
|
-
// ArrowBigDown aliases
|
|
100
|
-
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
101
101
|
// ArrowBigDownDash aliases
|
|
102
102
|
export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
103
|
-
//
|
|
104
|
-
export { default as
|
|
105
|
-
// ArrowBigRightDash aliases
|
|
106
|
-
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
103
|
+
// ArrowBigDown aliases
|
|
104
|
+
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
107
105
|
// ArrowBigLeft aliases
|
|
108
106
|
export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
109
|
-
//
|
|
110
|
-
export { default as
|
|
107
|
+
// ArrowBigRightDash aliases
|
|
108
|
+
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
109
|
+
// ArrowBigLeftDash aliases
|
|
110
|
+
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
111
111
|
// ArrowBigRight aliases
|
|
112
112
|
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
113
|
-
//
|
|
114
|
-
export { default as
|
|
113
|
+
// ArrowBigUpDash aliases
|
|
114
|
+
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
115
115
|
// ArrowBigUp aliases
|
|
116
116
|
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
117
117
|
// ArrowDownLeft aliases
|
|
118
118
|
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
119
|
+
// ArrowDownFromLine aliases
|
|
120
|
+
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
119
121
|
// ArrowDownNarrowWide aliases
|
|
120
122
|
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
121
|
-
// ArrowDownToDot aliases
|
|
122
|
-
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
123
123
|
// ArrowDownRight aliases
|
|
124
124
|
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
125
|
+
// ArrowDownToDot aliases
|
|
126
|
+
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
125
127
|
// ArrowDownToLine aliases
|
|
126
128
|
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
127
129
|
// ArrowDownUp aliases
|
|
@@ -136,70 +138,70 @@ export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
|
136
138
|
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
137
139
|
// ArrowLeft aliases
|
|
138
140
|
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
139
|
-
// ArrowRightFromLine aliases
|
|
140
|
-
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
141
141
|
// ArrowRightLeft aliases
|
|
142
142
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
143
|
+
// ArrowRightFromLine aliases
|
|
144
|
+
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
143
145
|
// ArrowRightToLine aliases
|
|
144
146
|
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
145
|
-
// ArrowUpDown aliases
|
|
146
|
-
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
147
147
|
// ArrowRight aliases
|
|
148
148
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
149
|
+
// ArrowUpDown aliases
|
|
150
|
+
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
149
151
|
// ArrowUpFromDot aliases
|
|
150
152
|
export { default as ArrowUpFromDotIcon } from '../icons/arrow-up-from-dot';
|
|
151
|
-
// ArrowUpLeft aliases
|
|
152
|
-
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
153
153
|
// ArrowUpFromLine aliases
|
|
154
154
|
export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
155
|
+
// ArrowUpLeft aliases
|
|
156
|
+
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
155
157
|
// ArrowUpRight aliases
|
|
156
158
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
157
|
-
// ArrowUpWideNarrow aliases
|
|
158
|
-
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
159
|
-
// ArrowUpToLine aliases
|
|
160
|
-
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
161
159
|
// ArrowUp aliases
|
|
162
160
|
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
161
|
+
// ArrowUpToLine aliases
|
|
162
|
+
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
163
|
+
// ArrowUpWideNarrow aliases
|
|
164
|
+
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
163
165
|
// ArrowsUpFromLine aliases
|
|
164
166
|
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
165
167
|
// Asterisk aliases
|
|
166
168
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
167
169
|
// AtSign aliases
|
|
168
170
|
export { default as AtSignIcon } from '../icons/at-sign';
|
|
169
|
-
// AudioLines aliases
|
|
170
|
-
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
171
171
|
// Atom aliases
|
|
172
172
|
export { default as AtomIcon } from '../icons/atom';
|
|
173
|
+
// AudioLines aliases
|
|
174
|
+
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
173
175
|
// AudioWaveform aliases
|
|
174
176
|
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
175
177
|
// Award aliases
|
|
176
178
|
export { default as AwardIcon } from '../icons/award';
|
|
177
|
-
// Axe aliases
|
|
178
|
-
export { default as AxeIcon } from '../icons/axe';
|
|
179
|
-
// Backpack aliases
|
|
180
|
-
export { default as BackpackIcon } from '../icons/backpack';
|
|
181
179
|
// Baby aliases
|
|
182
180
|
export { default as BabyIcon } from '../icons/baby';
|
|
183
|
-
//
|
|
184
|
-
export { default as
|
|
181
|
+
// Backpack aliases
|
|
182
|
+
export { default as BackpackIcon } from '../icons/backpack';
|
|
183
|
+
// Axe aliases
|
|
184
|
+
export { default as AxeIcon } from '../icons/axe';
|
|
185
185
|
// BadgeAlert aliases
|
|
186
186
|
export { default as BadgeAlertIcon } from '../icons/badge-alert';
|
|
187
|
+
// BadgeDollarSign aliases
|
|
188
|
+
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
189
|
+
// BadgeCent aliases
|
|
190
|
+
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
187
191
|
// BadgeEuro aliases
|
|
188
192
|
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
189
193
|
// BadgeIndianRupee aliases
|
|
190
194
|
export { default as BadgeIndianRupeeIcon } from '../icons/badge-indian-rupee';
|
|
191
195
|
// BadgeInfo aliases
|
|
192
196
|
export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
193
|
-
// BadgeDollarSign aliases
|
|
194
|
-
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
195
197
|
// BadgeJapaneseYen aliases
|
|
196
198
|
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
197
|
-
// BadgePercent aliases
|
|
198
|
-
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
199
199
|
// BadgeMinus aliases
|
|
200
200
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
201
201
|
// BadgePlus aliases
|
|
202
202
|
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
203
|
+
// BadgePercent aliases
|
|
204
|
+
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
203
205
|
// BadgePoundSterling aliases
|
|
204
206
|
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
205
207
|
// BadgeRussianRuble aliases
|
|
@@ -214,154 +216,154 @@ export { default as BadgeXIcon } from '../icons/badge-x';
|
|
|
214
216
|
export { default as BadgeIcon } from '../icons/badge';
|
|
215
217
|
// BaggageClaim aliases
|
|
216
218
|
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
217
|
-
// BanknoteArrowDown aliases
|
|
218
|
-
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
219
219
|
// Ban aliases
|
|
220
220
|
export { default as BanIcon } from '../icons/ban';
|
|
221
221
|
// Banana aliases
|
|
222
222
|
export { default as BananaIcon } from '../icons/banana';
|
|
223
223
|
// Bandage aliases
|
|
224
224
|
export { default as BandageIcon } from '../icons/bandage';
|
|
225
|
+
// BanknoteArrowDown aliases
|
|
226
|
+
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
225
227
|
// BanknoteArrowUp aliases
|
|
226
228
|
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
227
|
-
// Banknote aliases
|
|
228
|
-
export { default as BanknoteIcon } from '../icons/banknote';
|
|
229
229
|
// BanknoteX aliases
|
|
230
230
|
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
231
|
-
//
|
|
232
|
-
export { default as
|
|
231
|
+
// Banknote aliases
|
|
232
|
+
export { default as BanknoteIcon } from '../icons/banknote';
|
|
233
233
|
// Barrel aliases
|
|
234
234
|
export { default as BarrelIcon } from '../icons/barrel';
|
|
235
|
+
// Barcode aliases
|
|
236
|
+
export { default as BarcodeIcon } from '../icons/barcode';
|
|
235
237
|
// Baseline aliases
|
|
236
238
|
export { default as BaselineIcon } from '../icons/baseline';
|
|
239
|
+
// BatteryCharging aliases
|
|
240
|
+
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
237
241
|
// Bath aliases
|
|
238
242
|
export { default as BathIcon } from '../icons/bath';
|
|
239
243
|
// BatteryFull aliases
|
|
240
244
|
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
241
|
-
// BatteryCharging aliases
|
|
242
|
-
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
243
245
|
// BatteryLow aliases
|
|
244
246
|
export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
245
|
-
// BatteryPlus aliases
|
|
246
|
-
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
247
|
-
// BatteryWarning aliases
|
|
248
|
-
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
249
247
|
// BatteryMedium aliases
|
|
250
248
|
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
251
|
-
//
|
|
252
|
-
export { default as
|
|
249
|
+
// BatteryWarning aliases
|
|
250
|
+
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
251
|
+
// BatteryPlus aliases
|
|
252
|
+
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
253
253
|
// Battery aliases
|
|
254
254
|
export { default as BatteryIcon } from '../icons/battery';
|
|
255
255
|
// Beaker aliases
|
|
256
256
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
257
|
+
// BeanOff aliases
|
|
258
|
+
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
257
259
|
// BedDouble aliases
|
|
258
260
|
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
259
261
|
// Bean aliases
|
|
260
262
|
export { default as BeanIcon } from '../icons/bean';
|
|
261
263
|
// BedSingle aliases
|
|
262
264
|
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
263
|
-
// Beef aliases
|
|
264
|
-
export { default as BeefIcon } from '../icons/beef';
|
|
265
265
|
// Bed aliases
|
|
266
266
|
export { default as BedIcon } from '../icons/bed';
|
|
267
|
+
// Beef aliases
|
|
268
|
+
export { default as BeefIcon } from '../icons/beef';
|
|
267
269
|
// BeerOff aliases
|
|
268
270
|
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
269
271
|
// Beer aliases
|
|
270
272
|
export { default as BeerIcon } from '../icons/beer';
|
|
271
|
-
// BellElectric aliases
|
|
272
|
-
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
273
273
|
// BellDot aliases
|
|
274
274
|
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
275
|
+
// BellElectric aliases
|
|
276
|
+
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
275
277
|
// BellMinus aliases
|
|
276
278
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
277
|
-
// BellPlus aliases
|
|
278
|
-
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
279
|
-
// BellOff aliases
|
|
280
|
-
export { default as BellOffIcon } from '../icons/bell-off';
|
|
281
279
|
// BellRing aliases
|
|
282
280
|
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
281
|
+
// BellOff aliases
|
|
282
|
+
export { default as BellOffIcon } from '../icons/bell-off';
|
|
283
|
+
// BellPlus aliases
|
|
284
|
+
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
283
285
|
// Bell aliases
|
|
284
286
|
export { default as BellIcon } from '../icons/bell';
|
|
285
287
|
// BetweenVerticalEnd aliases
|
|
286
288
|
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
287
|
-
// BicepsFlexed aliases
|
|
288
|
-
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
289
289
|
// BetweenVerticalStart aliases
|
|
290
290
|
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
291
291
|
// Bike aliases
|
|
292
292
|
export { default as BikeIcon } from '../icons/bike';
|
|
293
|
+
// BicepsFlexed aliases
|
|
294
|
+
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
293
295
|
// Binary aliases
|
|
294
296
|
export { default as BinaryIcon } from '../icons/binary';
|
|
295
297
|
// Binoculars aliases
|
|
296
298
|
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
299
|
+
// Biohazard aliases
|
|
300
|
+
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
297
301
|
// Bird aliases
|
|
298
302
|
export { default as BirdIcon } from '../icons/bird';
|
|
299
303
|
// Birdhouse aliases
|
|
300
304
|
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
301
|
-
// Biohazard aliases
|
|
302
|
-
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
303
305
|
// Bitcoin aliases
|
|
304
306
|
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
305
|
-
// Blinds aliases
|
|
306
|
-
export { default as BlindsIcon } from '../icons/blinds';
|
|
307
307
|
// Blend aliases
|
|
308
308
|
export { default as BlendIcon } from '../icons/blend';
|
|
309
|
-
//
|
|
310
|
-
export { default as
|
|
309
|
+
// Blinds aliases
|
|
310
|
+
export { default as BlindsIcon } from '../icons/blinds';
|
|
311
311
|
// Blocks aliases
|
|
312
312
|
export { default as BlocksIcon } from '../icons/blocks';
|
|
313
313
|
// BluetoothConnected aliases
|
|
314
314
|
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
315
|
-
//
|
|
316
|
-
export { default as
|
|
315
|
+
// BluetoothOff aliases
|
|
316
|
+
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
317
|
+
// Bold aliases
|
|
318
|
+
export { default as BoldIcon } from '../icons/bold';
|
|
317
319
|
// BluetoothSearching aliases
|
|
318
320
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
321
|
+
// Bluetooth aliases
|
|
322
|
+
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
319
323
|
// Bolt aliases
|
|
320
324
|
export { default as BoltIcon } from '../icons/bolt';
|
|
321
|
-
// Bold aliases
|
|
322
|
-
export { default as BoldIcon } from '../icons/bold';
|
|
323
|
-
// Bone aliases
|
|
324
|
-
export { default as BoneIcon } from '../icons/bone';
|
|
325
325
|
// Bomb aliases
|
|
326
326
|
export { default as BombIcon } from '../icons/bomb';
|
|
327
|
-
// BookAlert aliases
|
|
328
|
-
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
329
|
-
// BookAudio aliases
|
|
330
|
-
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
331
327
|
// BookA aliases
|
|
332
328
|
export { default as BookAIcon } from '../icons/book-a';
|
|
329
|
+
// BookAudio aliases
|
|
330
|
+
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
331
|
+
// Bone aliases
|
|
332
|
+
export { default as BoneIcon } from '../icons/bone';
|
|
333
|
+
// BookAlert aliases
|
|
334
|
+
export { default as BookAlertIcon } from '../icons/book-alert';
|
|
333
335
|
// BookCheck aliases
|
|
334
336
|
export { default as BookCheckIcon } from '../icons/book-check';
|
|
337
|
+
// BookCopy aliases
|
|
338
|
+
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
335
339
|
// BookDown aliases
|
|
336
340
|
export { default as BookDownIcon } from '../icons/book-down';
|
|
337
341
|
// BookHeadphones aliases
|
|
338
342
|
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
339
343
|
// BookHeart aliases
|
|
340
344
|
export { default as BookHeartIcon } from '../icons/book-heart';
|
|
341
|
-
// BookCopy aliases
|
|
342
|
-
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
343
345
|
// BookImage aliases
|
|
344
346
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
345
|
-
// BookLock aliases
|
|
346
|
-
export { default as BookLockIcon } from '../icons/book-lock';
|
|
347
347
|
// BookKey aliases
|
|
348
348
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
349
|
+
// BookLock aliases
|
|
350
|
+
export { default as BookLockIcon } from '../icons/book-lock';
|
|
349
351
|
// BookMarked aliases
|
|
350
352
|
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
351
353
|
// BookMinus aliases
|
|
352
354
|
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
355
|
+
// BookOpenText aliases
|
|
356
|
+
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
353
357
|
// BookOpenCheck aliases
|
|
354
358
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
355
359
|
// BookOpen aliases
|
|
356
360
|
export { default as BookOpenIcon } from '../icons/book-open';
|
|
357
|
-
// BookOpenText aliases
|
|
358
|
-
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
359
361
|
// BookPlus aliases
|
|
360
362
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
361
|
-
// BookType aliases
|
|
362
|
-
export { default as BookTypeIcon } from '../icons/book-type';
|
|
363
363
|
// BookText aliases
|
|
364
364
|
export { default as BookTextIcon } from '../icons/book-text';
|
|
365
|
+
// BookType aliases
|
|
366
|
+
export { default as BookTypeIcon } from '../icons/book-type';
|
|
365
367
|
// BookUp2 aliases
|
|
366
368
|
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
367
369
|
// BookUp aliases
|
|
@@ -370,32 +372,32 @@ export { default as BookUpIcon } from '../icons/book-up';
|
|
|
370
372
|
export { default as BookUserIcon } from '../icons/book-user';
|
|
371
373
|
// BookX aliases
|
|
372
374
|
export { default as BookXIcon } from '../icons/book-x';
|
|
375
|
+
// Book aliases
|
|
376
|
+
export { default as BookIcon } from '../icons/book';
|
|
377
|
+
// BookmarkMinus aliases
|
|
378
|
+
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
373
379
|
// BookmarkCheck aliases
|
|
374
380
|
export { default as BookmarkCheckIcon } from '../icons/bookmark-check';
|
|
375
381
|
// BookmarkPlus aliases
|
|
376
382
|
export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
377
|
-
// BookmarkMinus aliases
|
|
378
|
-
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
379
|
-
// Book aliases
|
|
380
|
-
export { default as BookIcon } from '../icons/book';
|
|
381
|
-
// Bookmark aliases
|
|
382
|
-
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
383
|
-
// BotMessageSquare aliases
|
|
384
|
-
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
385
383
|
// BookmarkX aliases
|
|
386
384
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
385
|
+
// Bookmark aliases
|
|
386
|
+
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
387
387
|
// BoomBox aliases
|
|
388
388
|
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
389
|
+
// BotMessageSquare aliases
|
|
390
|
+
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
391
|
+
// BotOff aliases
|
|
392
|
+
export { default as BotOffIcon } from '../icons/bot-off';
|
|
389
393
|
// Bot aliases
|
|
390
394
|
export { default as BotIcon } from '../icons/bot';
|
|
391
395
|
// BottleWine aliases
|
|
392
396
|
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
393
|
-
// BotOff aliases
|
|
394
|
-
export { default as BotOffIcon } from '../icons/bot-off';
|
|
395
|
-
// Box aliases
|
|
396
|
-
export { default as BoxIcon } from '../icons/box';
|
|
397
397
|
// BowArrow aliases
|
|
398
398
|
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
399
|
+
// Box aliases
|
|
400
|
+
export { default as BoxIcon } from '../icons/box';
|
|
399
401
|
// Boxes aliases
|
|
400
402
|
export { default as BoxesIcon } from '../icons/boxes';
|
|
401
403
|
// Brackets aliases
|
|
@@ -412,50 +414,48 @@ export { default as BrickWallFireIcon } from '../icons/brick-wall-fire';
|
|
|
412
414
|
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
413
415
|
// BrickWall aliases
|
|
414
416
|
export { default as BrickWallIcon } from '../icons/brick-wall';
|
|
415
|
-
// BriefcaseMedical aliases
|
|
416
|
-
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
417
|
-
// BriefcaseConveyorBelt aliases
|
|
418
|
-
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
419
417
|
// BriefcaseBusiness aliases
|
|
420
418
|
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
419
|
+
// BriefcaseConveyorBelt aliases
|
|
420
|
+
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
421
|
+
// BriefcaseMedical aliases
|
|
422
|
+
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
421
423
|
// Briefcase aliases
|
|
422
424
|
export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
423
|
-
// BrushCleaning aliases
|
|
424
|
-
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
425
425
|
// BringToFront aliases
|
|
426
426
|
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
427
|
-
//
|
|
428
|
-
export { default as
|
|
427
|
+
// BrushCleaning aliases
|
|
428
|
+
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
429
429
|
// Brush aliases
|
|
430
430
|
export { default as BrushIcon } from '../icons/brush';
|
|
431
|
+
// Bubbles aliases
|
|
432
|
+
export { default as BubblesIcon } from '../icons/bubbles';
|
|
431
433
|
// BugOff aliases
|
|
432
434
|
export { default as BugOffIcon } from '../icons/bug-off';
|
|
433
|
-
// AArrowDown aliases
|
|
434
|
-
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
435
|
-
// Bug aliases
|
|
436
|
-
export { default as BugIcon } from '../icons/bug';
|
|
437
435
|
// BugPlay aliases
|
|
438
436
|
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
437
|
+
// Bug aliases
|
|
438
|
+
export { default as BugIcon } from '../icons/bug';
|
|
439
439
|
// Building2 aliases
|
|
440
440
|
export { default as Building2Icon } from '../icons/building-2';
|
|
441
441
|
// Building aliases
|
|
442
442
|
export { default as BuildingIcon } from '../icons/building';
|
|
443
443
|
// BusFront aliases
|
|
444
444
|
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
445
|
-
// Bus aliases
|
|
446
|
-
export { default as BusIcon } from '../icons/bus';
|
|
447
445
|
// CableCar aliases
|
|
448
446
|
export { default as CableCarIcon } from '../icons/cable-car';
|
|
447
|
+
// Bus aliases
|
|
448
|
+
export { default as BusIcon } from '../icons/bus';
|
|
449
449
|
// Cable aliases
|
|
450
450
|
export { default as CableIcon } from '../icons/cable';
|
|
451
451
|
// CakeSlice aliases
|
|
452
452
|
export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
453
|
-
// Calculator aliases
|
|
454
|
-
export { default as CalculatorIcon } from '../icons/calculator';
|
|
455
453
|
// Cake aliases
|
|
456
454
|
export { default as CakeIcon } from '../icons/cake';
|
|
457
455
|
// Calendar1 aliases
|
|
458
456
|
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
457
|
+
// Calculator aliases
|
|
458
|
+
export { default as CalculatorIcon } from '../icons/calculator';
|
|
459
459
|
// CalendarArrowDown aliases
|
|
460
460
|
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
461
461
|
// CalendarArrowUp aliases
|
|
@@ -464,14 +464,14 @@ export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
|
464
464
|
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
465
465
|
// CalendarCheck aliases
|
|
466
466
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
467
|
-
// CalendarCog aliases
|
|
468
|
-
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
469
|
-
// CalendarFold aliases
|
|
470
|
-
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
471
467
|
// CalendarClock aliases
|
|
472
468
|
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
469
|
+
// CalendarCog aliases
|
|
470
|
+
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
473
471
|
// CalendarDays aliases
|
|
474
472
|
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
473
|
+
// CalendarFold aliases
|
|
474
|
+
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
475
475
|
// CalendarHeart aliases
|
|
476
476
|
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
477
477
|
// CalendarMinus2 aliases
|
|
@@ -488,26 +488,26 @@ export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
|
488
488
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
489
489
|
// CalendarSearch aliases
|
|
490
490
|
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
491
|
-
// CalendarX2 aliases
|
|
492
|
-
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
493
491
|
// CalendarSync aliases
|
|
494
492
|
export { default as CalendarSyncIcon } from '../icons/calendar-sync';
|
|
495
|
-
// Calendar aliases
|
|
496
|
-
export { default as CalendarIcon } from '../icons/calendar';
|
|
497
493
|
// CalendarX aliases
|
|
498
494
|
export { default as CalendarXIcon } from '../icons/calendar-x';
|
|
495
|
+
// CalendarX2 aliases
|
|
496
|
+
export { default as CalendarX2Icon } from '../icons/calendar-x-2';
|
|
497
|
+
// Calendar aliases
|
|
498
|
+
export { default as CalendarIcon } from '../icons/calendar';
|
|
499
|
+
// CameraOff aliases
|
|
500
|
+
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
499
501
|
// Calendars aliases
|
|
500
502
|
export { default as CalendarsIcon } from '../icons/calendars';
|
|
501
503
|
// Camera aliases
|
|
502
504
|
export { default as CameraIcon } from '../icons/camera';
|
|
503
|
-
// CameraOff aliases
|
|
504
|
-
export { default as CameraOffIcon } from '../icons/camera-off';
|
|
505
|
-
// CandyOff aliases
|
|
506
|
-
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
507
505
|
// CandyCane aliases
|
|
508
506
|
export { default as CandyCaneIcon } from '../icons/candy-cane';
|
|
509
507
|
// Candy aliases
|
|
510
508
|
export { default as CandyIcon } from '../icons/candy';
|
|
509
|
+
// CandyOff aliases
|
|
510
|
+
export { default as CandyOffIcon } from '../icons/candy-off';
|
|
511
511
|
// Cannabis aliases
|
|
512
512
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
513
513
|
// CaptionsOff aliases
|
|
@@ -526,70 +526,70 @@ export { default as CardSimIcon } from '../icons/card-sim';
|
|
|
526
526
|
export { default as CarrotIcon } from '../icons/carrot';
|
|
527
527
|
// CaseLower aliases
|
|
528
528
|
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
529
|
-
// CaseSensitive aliases
|
|
530
|
-
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
531
529
|
// CaseUpper aliases
|
|
532
530
|
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
533
531
|
// CassetteTape aliases
|
|
534
532
|
export { default as CassetteTapeIcon } from '../icons/cassette-tape';
|
|
533
|
+
// CaseSensitive aliases
|
|
534
|
+
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
535
535
|
// Cast aliases
|
|
536
536
|
export { default as CastIcon } from '../icons/cast';
|
|
537
537
|
// Castle aliases
|
|
538
538
|
export { default as CastleIcon } from '../icons/castle';
|
|
539
|
-
// Cctv aliases
|
|
540
|
-
export { default as CctvIcon } from '../icons/cctv';
|
|
541
539
|
// Cat aliases
|
|
542
540
|
export { default as CatIcon } from '../icons/cat';
|
|
543
|
-
//
|
|
544
|
-
export { default as
|
|
541
|
+
// Cctv aliases
|
|
542
|
+
export { default as CctvIcon } from '../icons/cctv';
|
|
545
543
|
// ChartBarDecreasing aliases
|
|
546
544
|
export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing';
|
|
545
|
+
// ChartBarIncreasing aliases
|
|
546
|
+
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
547
547
|
// ChartBarStacked aliases
|
|
548
548
|
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
549
|
-
//
|
|
550
|
-
export { default as
|
|
549
|
+
// ChartGantt aliases
|
|
550
|
+
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
551
551
|
// ChartColumnStacked aliases
|
|
552
552
|
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
553
553
|
// ChartNetwork aliases
|
|
554
554
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
555
|
-
//
|
|
556
|
-
export { default as
|
|
557
|
-
// ChartNoAxesCombined aliases
|
|
558
|
-
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
555
|
+
// ChartColumnDecreasing aliases
|
|
556
|
+
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
559
557
|
// ChartNoAxesColumnDecreasing aliases
|
|
560
558
|
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
559
|
+
// ChartNoAxesCombined aliases
|
|
560
|
+
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
561
561
|
// ChartSpline aliases
|
|
562
562
|
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
563
563
|
// CheckCheck aliases
|
|
564
564
|
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
565
|
+
// CheckLine aliases
|
|
566
|
+
export { default as CheckLineIcon } from '../icons/check-line';
|
|
565
567
|
// Check aliases
|
|
566
568
|
export { default as CheckIcon } from '../icons/check';
|
|
567
569
|
// ChefHat aliases
|
|
568
570
|
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
569
|
-
// CheckLine aliases
|
|
570
|
-
export { default as CheckLineIcon } from '../icons/check-line';
|
|
571
571
|
// Cherry aliases
|
|
572
572
|
export { default as CherryIcon } from '../icons/cherry';
|
|
573
573
|
// ChessBishop aliases
|
|
574
574
|
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
575
575
|
// ChessKing aliases
|
|
576
576
|
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
577
|
-
// ChessKnight aliases
|
|
578
|
-
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
579
577
|
// ChessPawn aliases
|
|
580
578
|
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
581
|
-
//
|
|
582
|
-
export { default as
|
|
579
|
+
// ChessKnight aliases
|
|
580
|
+
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
583
581
|
// ChessRook aliases
|
|
584
582
|
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
583
|
+
// ChessQueen aliases
|
|
584
|
+
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
585
585
|
// ChevronDown aliases
|
|
586
586
|
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
587
|
+
// ChevronLeft aliases
|
|
588
|
+
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
587
589
|
// ChevronFirst aliases
|
|
588
590
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
589
591
|
// ChevronLast aliases
|
|
590
592
|
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
591
|
-
// ChevronLeft aliases
|
|
592
|
-
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
593
593
|
// ChevronRight aliases
|
|
594
594
|
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
595
595
|
// ChevronUp aliases
|
|
@@ -602,10 +602,10 @@ export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
|
602
602
|
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
603
603
|
// ChevronsLeftRight aliases
|
|
604
604
|
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
605
|
-
// ChevronsLeft aliases
|
|
606
|
-
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
607
605
|
// ChevronsRightLeft aliases
|
|
608
606
|
export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
607
|
+
// ChevronsLeft aliases
|
|
608
|
+
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
609
609
|
// ChevronsRight aliases
|
|
610
610
|
export { default as ChevronsRightIcon } from '../icons/chevrons-right';
|
|
611
611
|
// ChevronsUpDown aliases
|
|
@@ -636,10 +636,10 @@ export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow
|
|
|
636
636
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
637
637
|
// CircleOff aliases
|
|
638
638
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
639
|
-
// CircleSlash aliases
|
|
640
|
-
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
641
639
|
// CirclePoundSterling aliases
|
|
642
640
|
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
641
|
+
// CircleSlash aliases
|
|
642
|
+
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
643
643
|
// CircleSmall aliases
|
|
644
644
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
645
645
|
// CircleStar aliases
|
|
@@ -660,14 +660,14 @@ export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
|
660
660
|
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
661
661
|
// ClipboardList aliases
|
|
662
662
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
663
|
-
// ClipboardPaste aliases
|
|
664
|
-
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
665
663
|
// ClipboardMinus aliases
|
|
666
664
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
667
|
-
//
|
|
668
|
-
export { default as
|
|
665
|
+
// ClipboardPaste aliases
|
|
666
|
+
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
669
667
|
// ClipboardType aliases
|
|
670
668
|
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
669
|
+
// ClipboardPlus aliases
|
|
670
|
+
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
671
671
|
// ClipboardX aliases
|
|
672
672
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
673
673
|
// Clipboard aliases
|
|
@@ -678,10 +678,10 @@ export { default as Clock1Icon } from '../icons/clock-1';
|
|
|
678
678
|
export { default as Clock10Icon } from '../icons/clock-10';
|
|
679
679
|
// Clock11 aliases
|
|
680
680
|
export { default as Clock11Icon } from '../icons/clock-11';
|
|
681
|
-
// Clock12 aliases
|
|
682
|
-
export { default as Clock12Icon } from '../icons/clock-12';
|
|
683
681
|
// Clock2 aliases
|
|
684
682
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
683
|
+
// Clock12 aliases
|
|
684
|
+
export { default as Clock12Icon } from '../icons/clock-12';
|
|
685
685
|
// Clock3 aliases
|
|
686
686
|
export { default as Clock3Icon } from '../icons/clock-3';
|
|
687
687
|
// Clock4 aliases
|
|
@@ -714,10 +714,10 @@ export { default as ClockIcon } from '../icons/clock';
|
|
|
714
714
|
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
715
715
|
// CloudAlert aliases
|
|
716
716
|
export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
717
|
-
// CloudCheck aliases
|
|
718
|
-
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
719
717
|
// CloudCog aliases
|
|
720
718
|
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
719
|
+
// CloudCheck aliases
|
|
720
|
+
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
721
721
|
// CloudDrizzle aliases
|
|
722
722
|
export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
723
723
|
// CloudFog aliases
|
|
@@ -754,12 +754,12 @@ export { default as ClubIcon } from '../icons/club';
|
|
|
754
754
|
export { default as CodeIcon } from '../icons/code';
|
|
755
755
|
// Codepen aliases
|
|
756
756
|
export { default as CodepenIcon } from '../icons/codepen';
|
|
757
|
+
// Coffee aliases
|
|
758
|
+
export { default as CoffeeIcon } from '../icons/coffee';
|
|
757
759
|
// Codesandbox aliases
|
|
758
760
|
export { default as CodesandboxIcon } from '../icons/codesandbox';
|
|
759
761
|
// Cog aliases
|
|
760
762
|
export { default as CogIcon } from '../icons/cog';
|
|
761
|
-
// Coffee aliases
|
|
762
|
-
export { default as CoffeeIcon } from '../icons/coffee';
|
|
763
763
|
// Coins aliases
|
|
764
764
|
export { default as CoinsIcon } from '../icons/coins';
|
|
765
765
|
// Columns4 aliases
|
|
@@ -778,20 +778,20 @@ export { default as ComputerIcon } from '../icons/computer';
|
|
|
778
778
|
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
779
779
|
// Cone aliases
|
|
780
780
|
export { default as ConeIcon } from '../icons/cone';
|
|
781
|
-
// Construction aliases
|
|
782
|
-
export { default as ConstructionIcon } from '../icons/construction';
|
|
783
781
|
// Contact aliases
|
|
784
782
|
export { default as ContactIcon } from '../icons/contact';
|
|
783
|
+
// Construction aliases
|
|
784
|
+
export { default as ConstructionIcon } from '../icons/construction';
|
|
785
785
|
// Container aliases
|
|
786
786
|
export { default as ContainerIcon } from '../icons/container';
|
|
787
787
|
// Contrast aliases
|
|
788
788
|
export { default as ContrastIcon } from '../icons/contrast';
|
|
789
789
|
// Cookie aliases
|
|
790
790
|
export { default as CookieIcon } from '../icons/cookie';
|
|
791
|
-
// CookingPot aliases
|
|
792
|
-
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
793
791
|
// CopyCheck aliases
|
|
794
792
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
793
|
+
// CookingPot aliases
|
|
794
|
+
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
795
795
|
// CopyMinus aliases
|
|
796
796
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
797
797
|
// CopyPlus aliases
|
|
@@ -800,10 +800,10 @@ export { default as CopyPlusIcon } from '../icons/copy-plus';
|
|
|
800
800
|
export { default as CopySlashIcon } from '../icons/copy-slash';
|
|
801
801
|
// CopyX aliases
|
|
802
802
|
export { default as CopyXIcon } from '../icons/copy-x';
|
|
803
|
-
// Copyleft aliases
|
|
804
|
-
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
805
803
|
// Copy aliases
|
|
806
804
|
export { default as CopyIcon } from '../icons/copy';
|
|
805
|
+
// Copyleft aliases
|
|
806
|
+
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
807
807
|
// Copyright aliases
|
|
808
808
|
export { default as CopyrightIcon } from '../icons/copyright';
|
|
809
809
|
// CornerDownLeft aliases
|
|
@@ -824,10 +824,10 @@ export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
|
824
824
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
825
825
|
// Cpu aliases
|
|
826
826
|
export { default as CpuIcon } from '../icons/cpu';
|
|
827
|
-
// CreativeCommons aliases
|
|
828
|
-
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
829
827
|
// CreditCard aliases
|
|
830
828
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
829
|
+
// CreativeCommons aliases
|
|
830
|
+
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
831
831
|
// Croissant aliases
|
|
832
832
|
export { default as CroissantIcon } from '../icons/croissant';
|
|
833
833
|
// Crop aliases
|
|
@@ -852,12 +852,12 @@ export { default as DamIcon } from '../icons/dam';
|
|
|
852
852
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
853
853
|
// DatabaseZap aliases
|
|
854
854
|
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
855
|
-
// DecimalsArrowLeft aliases
|
|
856
|
-
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
857
855
|
// Database aliases
|
|
858
856
|
export { default as DatabaseIcon } from '../icons/database';
|
|
859
857
|
// DecimalsArrowRight aliases
|
|
860
858
|
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
859
|
+
// DecimalsArrowLeft aliases
|
|
860
|
+
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
861
861
|
// Delete aliases
|
|
862
862
|
export { default as DeleteIcon } from '../icons/delete';
|
|
863
863
|
// Dessert aliases
|
|
@@ -872,10 +872,10 @@ export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
|
872
872
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
873
873
|
// Dice1 aliases
|
|
874
874
|
export { default as Dice1Icon } from '../icons/dice-1';
|
|
875
|
-
// Dice3 aliases
|
|
876
|
-
export { default as Dice3Icon } from '../icons/dice-3';
|
|
877
875
|
// Dice2 aliases
|
|
878
876
|
export { default as Dice2Icon } from '../icons/dice-2';
|
|
877
|
+
// Dice3 aliases
|
|
878
|
+
export { default as Dice3Icon } from '../icons/dice-3';
|
|
879
879
|
// Dice4 aliases
|
|
880
880
|
export { default as Dice4Icon } from '../icons/dice-4';
|
|
881
881
|
// Dice5 aliases
|
|
@@ -908,14 +908,14 @@ export { default as DogIcon } from '../icons/dog';
|
|
|
908
908
|
export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
909
909
|
// Donut aliases
|
|
910
910
|
export { default as DonutIcon } from '../icons/donut';
|
|
911
|
-
// DoorClosedLocked aliases
|
|
912
|
-
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
913
911
|
// DoorClosed aliases
|
|
914
912
|
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
915
|
-
//
|
|
916
|
-
export { default as
|
|
913
|
+
// DoorClosedLocked aliases
|
|
914
|
+
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
917
915
|
// DoorOpen aliases
|
|
918
916
|
export { default as DoorOpenIcon } from '../icons/door-open';
|
|
917
|
+
// Dot aliases
|
|
918
|
+
export { default as DotIcon } from '../icons/dot';
|
|
919
919
|
// Download aliases
|
|
920
920
|
export { default as DownloadIcon } from '../icons/download';
|
|
921
921
|
// DraftingCompass aliases
|
|
@@ -946,10 +946,10 @@ export { default as EarOffIcon } from '../icons/ear-off';
|
|
|
946
946
|
export { default as EarIcon } from '../icons/ear';
|
|
947
947
|
// EarthLock aliases
|
|
948
948
|
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
949
|
-
// Eclipse aliases
|
|
950
|
-
export { default as EclipseIcon } from '../icons/eclipse';
|
|
951
949
|
// EggFried aliases
|
|
952
950
|
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
951
|
+
// Eclipse aliases
|
|
952
|
+
export { default as EclipseIcon } from '../icons/eclipse';
|
|
953
953
|
// EggOff aliases
|
|
954
954
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
955
955
|
// Egg aliases
|
|
@@ -964,14 +964,14 @@ export { default as EqualIcon } from '../icons/equal';
|
|
|
964
964
|
export { default as EraserIcon } from '../icons/eraser';
|
|
965
965
|
// EthernetPort aliases
|
|
966
966
|
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
967
|
-
// Euro aliases
|
|
968
|
-
export { default as EuroIcon } from '../icons/euro';
|
|
969
967
|
// EvCharger aliases
|
|
970
968
|
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
971
969
|
// Expand aliases
|
|
972
970
|
export { default as ExpandIcon } from '../icons/expand';
|
|
973
971
|
// ExternalLink aliases
|
|
974
972
|
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
973
|
+
// Euro aliases
|
|
974
|
+
export { default as EuroIcon } from '../icons/euro';
|
|
975
975
|
// EyeClosed aliases
|
|
976
976
|
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
977
977
|
// EyeOff aliases
|
|
@@ -998,10 +998,10 @@ export { default as FigmaIcon } from '../icons/figma';
|
|
|
998
998
|
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
999
999
|
// FileBox aliases
|
|
1000
1000
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1001
|
-
// FileCheck aliases
|
|
1002
|
-
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1003
1001
|
// FileClock aliases
|
|
1004
1002
|
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1003
|
+
// FileCheck aliases
|
|
1004
|
+
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1005
1005
|
// FileCode aliases
|
|
1006
1006
|
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1007
1007
|
// FileDiff aliases
|
|
@@ -1054,10 +1054,10 @@ export { default as FileXIcon } from '../icons/file-x';
|
|
|
1054
1054
|
export { default as FileIcon } from '../icons/file';
|
|
1055
1055
|
// Files aliases
|
|
1056
1056
|
export { default as FilesIcon } from '../icons/files';
|
|
1057
|
-
// Film aliases
|
|
1058
|
-
export { default as FilmIcon } from '../icons/film';
|
|
1059
1057
|
// FireExtinguisher aliases
|
|
1060
1058
|
export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
1059
|
+
// Film aliases
|
|
1060
|
+
export { default as FilmIcon } from '../icons/film';
|
|
1061
1061
|
// FishOff aliases
|
|
1062
1062
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1063
1063
|
// FishSymbol aliases
|
|
@@ -1084,14 +1084,14 @@ export { default as FlashlightIcon } from '../icons/flashlight';
|
|
|
1084
1084
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1085
1085
|
// FlaskConical aliases
|
|
1086
1086
|
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1087
|
-
// FlaskRound aliases
|
|
1088
|
-
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1089
1087
|
// FlipHorizontal2 aliases
|
|
1090
1088
|
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1091
|
-
//
|
|
1092
|
-
export { default as
|
|
1089
|
+
// FlaskRound aliases
|
|
1090
|
+
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1093
1091
|
// FlipVertical2 aliases
|
|
1094
1092
|
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1093
|
+
// FlipHorizontal aliases
|
|
1094
|
+
export { default as FlipHorizontalIcon } from '../icons/flip-horizontal';
|
|
1095
1095
|
// FlipVertical aliases
|
|
1096
1096
|
export { default as FlipVerticalIcon } from '../icons/flip-vertical';
|
|
1097
1097
|
// Flower2 aliases
|
|
@@ -1110,22 +1110,22 @@ export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
|
1110
1110
|
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1111
1111
|
// FolderClock aliases
|
|
1112
1112
|
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1113
|
-
// FolderClosed aliases
|
|
1114
|
-
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1115
1113
|
// FolderCode aliases
|
|
1116
1114
|
export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
1117
|
-
//
|
|
1118
|
-
export { default as
|
|
1115
|
+
// FolderClosed aliases
|
|
1116
|
+
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1119
1117
|
// FolderDown aliases
|
|
1120
1118
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1119
|
+
// FolderDot aliases
|
|
1120
|
+
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1121
1121
|
// FolderGit2 aliases
|
|
1122
1122
|
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1123
1123
|
// FolderGit aliases
|
|
1124
1124
|
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1125
|
-
// FolderHeart aliases
|
|
1126
|
-
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1127
1125
|
// FolderInput aliases
|
|
1128
1126
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1127
|
+
// FolderHeart aliases
|
|
1128
|
+
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1129
1129
|
// FolderKanban aliases
|
|
1130
1130
|
export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
1131
1131
|
// FolderKey aliases
|
|
@@ -1154,18 +1154,20 @@ export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
|
1154
1154
|
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1155
1155
|
// FolderTree aliases
|
|
1156
1156
|
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1157
|
-
// FolderUp aliases
|
|
1158
|
-
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1159
1157
|
// FolderX aliases
|
|
1160
1158
|
export { default as FolderXIcon } from '../icons/folder-x';
|
|
1159
|
+
// FolderUp aliases
|
|
1160
|
+
export { default as FolderUpIcon } from '../icons/folder-up';
|
|
1161
1161
|
// Folder aliases
|
|
1162
1162
|
export { default as FolderIcon } from '../icons/folder';
|
|
1163
1163
|
// Folders aliases
|
|
1164
1164
|
export { default as FoldersIcon } from '../icons/folders';
|
|
1165
|
-
// Footprints aliases
|
|
1166
|
-
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1167
1165
|
// Forklift aliases
|
|
1168
1166
|
export { default as ForkliftIcon } from '../icons/forklift';
|
|
1167
|
+
// Form aliases
|
|
1168
|
+
export { default as FormIcon } from '../icons/form';
|
|
1169
|
+
// Footprints aliases
|
|
1170
|
+
export { default as FootprintsIcon } from '../icons/footprints';
|
|
1169
1171
|
// Forward aliases
|
|
1170
1172
|
export { default as ForwardIcon } from '../icons/forward';
|
|
1171
1173
|
// Frame aliases
|
|
@@ -1174,14 +1176,14 @@ export { default as FrameIcon } from '../icons/frame';
|
|
|
1174
1176
|
export { default as FramerIcon } from '../icons/framer';
|
|
1175
1177
|
// Frown aliases
|
|
1176
1178
|
export { default as FrownIcon } from '../icons/frown';
|
|
1177
|
-
// Fullscreen aliases
|
|
1178
|
-
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1179
1179
|
// Fuel aliases
|
|
1180
1180
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1181
|
-
//
|
|
1182
|
-
export { default as
|
|
1181
|
+
// Fullscreen aliases
|
|
1182
|
+
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1183
1183
|
// FunnelPlus aliases
|
|
1184
1184
|
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1185
|
+
// GalleryHorizontalEnd aliases
|
|
1186
|
+
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1185
1187
|
// GalleryHorizontal aliases
|
|
1186
1188
|
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1187
1189
|
// GalleryThumbnails aliases
|
|
@@ -1210,16 +1212,16 @@ export { default as GhostIcon } from '../icons/ghost';
|
|
|
1210
1212
|
export { default as GiftIcon } from '../icons/gift';
|
|
1211
1213
|
// GitBranchMinus aliases
|
|
1212
1214
|
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1213
|
-
// GitBranchPlus aliases
|
|
1214
|
-
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1215
1215
|
// GitBranch aliases
|
|
1216
1216
|
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1217
|
+
// GitBranchPlus aliases
|
|
1218
|
+
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1217
1219
|
// GitCommitVertical aliases
|
|
1218
1220
|
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1219
|
-
// GitCompareArrows aliases
|
|
1220
|
-
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1221
1221
|
// GitCompare aliases
|
|
1222
1222
|
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1223
|
+
// GitCompareArrows aliases
|
|
1224
|
+
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1223
1225
|
// GitFork aliases
|
|
1224
1226
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1225
1227
|
// GitGraph aliases
|
|
@@ -1230,10 +1232,10 @@ export { default as GitMergeIcon } from '../icons/git-merge';
|
|
|
1230
1232
|
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1231
1233
|
// GitPullRequestClosed aliases
|
|
1232
1234
|
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1233
|
-
// GitPullRequestCreateArrow aliases
|
|
1234
|
-
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1235
1235
|
// GitPullRequestCreate aliases
|
|
1236
1236
|
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1237
|
+
// GitPullRequestCreateArrow aliases
|
|
1238
|
+
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1237
1239
|
// GitPullRequestDraft aliases
|
|
1238
1240
|
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1239
1241
|
// GitPullRequest aliases
|
|
@@ -1256,20 +1258,20 @@ export { default as GoalIcon } from '../icons/goal';
|
|
|
1256
1258
|
export { default as GpuIcon } from '../icons/gpu';
|
|
1257
1259
|
// GraduationCap aliases
|
|
1258
1260
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1261
|
+
// Grid3x2 aliases
|
|
1262
|
+
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1259
1263
|
// Grape aliases
|
|
1260
1264
|
export { default as GrapeIcon } from '../icons/grape';
|
|
1265
|
+
// GripVertical aliases
|
|
1266
|
+
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1261
1267
|
// GripHorizontal aliases
|
|
1262
1268
|
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1263
|
-
// Grid3x2 aliases
|
|
1264
|
-
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1265
1269
|
// Grip aliases
|
|
1266
1270
|
export { default as GripIcon } from '../icons/grip';
|
|
1267
|
-
// GripVertical aliases
|
|
1268
|
-
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1269
|
-
// Guitar aliases
|
|
1270
|
-
export { default as GuitarIcon } from '../icons/guitar';
|
|
1271
1271
|
// Group aliases
|
|
1272
1272
|
export { default as GroupIcon } from '../icons/group';
|
|
1273
|
+
// Guitar aliases
|
|
1274
|
+
export { default as GuitarIcon } from '../icons/guitar';
|
|
1273
1275
|
// Ham aliases
|
|
1274
1276
|
export { default as HamIcon } from '../icons/ham';
|
|
1275
1277
|
// Hamburger aliases
|
|
@@ -1280,18 +1282,18 @@ export { default as HammerIcon } from '../icons/hammer';
|
|
|
1280
1282
|
export { default as HandCoinsIcon } from '../icons/hand-coins';
|
|
1281
1283
|
// HandFist aliases
|
|
1282
1284
|
export { default as HandFistIcon } from '../icons/hand-fist';
|
|
1283
|
-
// HandHeart aliases
|
|
1284
|
-
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1285
1285
|
// HandMetal aliases
|
|
1286
1286
|
export { default as HandMetalIcon } from '../icons/hand-metal';
|
|
1287
|
+
// HandHeart aliases
|
|
1288
|
+
export { default as HandHeartIcon } from '../icons/hand-heart';
|
|
1287
1289
|
// HandPlatter aliases
|
|
1288
1290
|
export { default as HandPlatterIcon } from '../icons/hand-platter';
|
|
1289
1291
|
// Hand aliases
|
|
1290
1292
|
export { default as HandIcon } from '../icons/hand';
|
|
1291
|
-
// Handshake aliases
|
|
1292
|
-
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1293
1293
|
// Handbag aliases
|
|
1294
1294
|
export { default as HandbagIcon } from '../icons/handbag';
|
|
1295
|
+
// Handshake aliases
|
|
1296
|
+
export { default as HandshakeIcon } from '../icons/handshake';
|
|
1295
1297
|
// HardDriveDownload aliases
|
|
1296
1298
|
export { default as HardDriveDownloadIcon } from '../icons/hard-drive-download';
|
|
1297
1299
|
// HardDriveUpload aliases
|
|
@@ -1306,16 +1308,16 @@ export { default as HashIcon } from '../icons/hash';
|
|
|
1306
1308
|
export { default as HatGlassesIcon } from '../icons/hat-glasses';
|
|
1307
1309
|
// Haze aliases
|
|
1308
1310
|
export { default as HazeIcon } from '../icons/haze';
|
|
1309
|
-
// HdmiPort aliases
|
|
1310
|
-
export { default as HdmiPortIcon } from '../icons/hdmi-port';
|
|
1311
1311
|
// Heading1 aliases
|
|
1312
1312
|
export { default as Heading1Icon } from '../icons/heading-1';
|
|
1313
|
+
// HdmiPort aliases
|
|
1314
|
+
export { default as HdmiPortIcon } from '../icons/hdmi-port';
|
|
1313
1315
|
// Heading2 aliases
|
|
1314
1316
|
export { default as Heading2Icon } from '../icons/heading-2';
|
|
1315
|
-
// Heading3 aliases
|
|
1316
|
-
export { default as Heading3Icon } from '../icons/heading-3';
|
|
1317
1317
|
// Heading4 aliases
|
|
1318
1318
|
export { default as Heading4Icon } from '../icons/heading-4';
|
|
1319
|
+
// Heading3 aliases
|
|
1320
|
+
export { default as Heading3Icon } from '../icons/heading-3';
|
|
1319
1321
|
// Heading5 aliases
|
|
1320
1322
|
export { default as Heading5Icon } from '../icons/heading-5';
|
|
1321
1323
|
// Heading6 aliases
|
|
@@ -1346,10 +1348,10 @@ export { default as HeartIcon } from '../icons/heart';
|
|
|
1346
1348
|
export { default as HeaterIcon } from '../icons/heater';
|
|
1347
1349
|
// Helicopter aliases
|
|
1348
1350
|
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1349
|
-
// Highlighter aliases
|
|
1350
|
-
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1351
1351
|
// Hexagon aliases
|
|
1352
1352
|
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1353
|
+
// Highlighter aliases
|
|
1354
|
+
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1353
1355
|
// History aliases
|
|
1354
1356
|
export { default as HistoryIcon } from '../icons/history';
|
|
1355
1357
|
// HopOff aliases
|
|
@@ -1380,14 +1382,14 @@ export { default as ImageDownIcon } from '../icons/image-down';
|
|
|
1380
1382
|
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1381
1383
|
// ImageOff aliases
|
|
1382
1384
|
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1383
|
-
// ImagePlus aliases
|
|
1384
|
-
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1385
1385
|
// ImagePlay aliases
|
|
1386
1386
|
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1387
1387
|
// ImageUp aliases
|
|
1388
1388
|
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1389
1389
|
// ImageUpscale aliases
|
|
1390
1390
|
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1391
|
+
// ImagePlus aliases
|
|
1392
|
+
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1391
1393
|
// Image aliases
|
|
1392
1394
|
export { default as ImageIcon } from '../icons/image';
|
|
1393
1395
|
// Images aliases
|
|
@@ -1412,18 +1414,18 @@ export { default as ItalicIcon } from '../icons/italic';
|
|
|
1412
1414
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1413
1415
|
// IterationCw aliases
|
|
1414
1416
|
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1415
|
-
// Joystick aliases
|
|
1416
|
-
export { default as JoystickIcon } from '../icons/joystick';
|
|
1417
1417
|
// JapaneseYen aliases
|
|
1418
1418
|
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1419
|
-
//
|
|
1420
|
-
export { default as
|
|
1419
|
+
// Joystick aliases
|
|
1420
|
+
export { default as JoystickIcon } from '../icons/joystick';
|
|
1421
1421
|
// Kayak aliases
|
|
1422
1422
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1423
|
-
//
|
|
1424
|
-
export { default as
|
|
1423
|
+
// Kanban aliases
|
|
1424
|
+
export { default as KanbanIcon } from '../icons/kanban';
|
|
1425
1425
|
// KeyRound aliases
|
|
1426
1426
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1427
|
+
// KeySquare aliases
|
|
1428
|
+
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1427
1429
|
// Key aliases
|
|
1428
1430
|
export { default as KeyIcon } from '../icons/key';
|
|
1429
1431
|
// KeyboardMusic aliases
|
|
@@ -1434,36 +1436,36 @@ export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
|
1434
1436
|
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1435
1437
|
// LampCeiling aliases
|
|
1436
1438
|
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1437
|
-
// LampDesk aliases
|
|
1438
|
-
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1439
1439
|
// LampFloor aliases
|
|
1440
1440
|
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1441
|
-
//
|
|
1442
|
-
export { default as
|
|
1441
|
+
// LampDesk aliases
|
|
1442
|
+
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1443
1443
|
// LampWallDown aliases
|
|
1444
1444
|
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1445
1445
|
// Lamp aliases
|
|
1446
1446
|
export { default as LampIcon } from '../icons/lamp';
|
|
1447
|
+
// LandPlot aliases
|
|
1448
|
+
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1449
|
+
// LampWallUp aliases
|
|
1450
|
+
export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
1447
1451
|
// Landmark aliases
|
|
1448
1452
|
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1449
1453
|
// Languages aliases
|
|
1450
1454
|
export { default as LanguagesIcon } from '../icons/languages';
|
|
1451
|
-
// LandPlot aliases
|
|
1452
|
-
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1453
|
-
// Laptop aliases
|
|
1454
|
-
export { default as LaptopIcon } from '../icons/laptop';
|
|
1455
1455
|
// LaptopMinimalCheck aliases
|
|
1456
1456
|
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1457
|
+
// Laptop aliases
|
|
1458
|
+
export { default as LaptopIcon } from '../icons/laptop';
|
|
1457
1459
|
// LassoSelect aliases
|
|
1458
1460
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1459
1461
|
// Lasso aliases
|
|
1460
1462
|
export { default as LassoIcon } from '../icons/lasso';
|
|
1461
1463
|
// Laugh aliases
|
|
1462
1464
|
export { default as LaughIcon } from '../icons/laugh';
|
|
1463
|
-
// LayoutDashboard aliases
|
|
1464
|
-
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1465
1465
|
// Layers2 aliases
|
|
1466
1466
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1467
|
+
// LayoutDashboard aliases
|
|
1468
|
+
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1467
1469
|
// LayoutGrid aliases
|
|
1468
1470
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1469
1471
|
// LayoutList aliases
|
|
@@ -1480,30 +1482,30 @@ export { default as LeafIcon } from '../icons/leaf';
|
|
|
1480
1482
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1481
1483
|
// Lectern aliases
|
|
1482
1484
|
export { default as LecternIcon } from '../icons/lectern';
|
|
1483
|
-
// LibraryBig aliases
|
|
1484
|
-
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1485
1485
|
// Library aliases
|
|
1486
1486
|
export { default as LibraryIcon } from '../icons/library';
|
|
1487
|
+
// LibraryBig aliases
|
|
1488
|
+
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1487
1489
|
// LifeBuoy aliases
|
|
1488
1490
|
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1489
1491
|
// Ligature aliases
|
|
1490
1492
|
export { default as LigatureIcon } from '../icons/ligature';
|
|
1491
1493
|
// LightbulbOff aliases
|
|
1492
1494
|
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1493
|
-
// Lightbulb aliases
|
|
1494
|
-
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1495
|
-
// LineSquiggle aliases
|
|
1496
|
-
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1497
1495
|
// Link2Off aliases
|
|
1498
1496
|
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1497
|
+
// Lightbulb aliases
|
|
1498
|
+
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1499
1499
|
// Link2 aliases
|
|
1500
1500
|
export { default as Link2Icon } from '../icons/link-2';
|
|
1501
|
+
// LineSquiggle aliases
|
|
1502
|
+
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1501
1503
|
// Link aliases
|
|
1502
1504
|
export { default as LinkIcon } from '../icons/link';
|
|
1503
|
-
// Linkedin aliases
|
|
1504
|
-
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1505
1505
|
// ListCheck aliases
|
|
1506
1506
|
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1507
|
+
// Linkedin aliases
|
|
1508
|
+
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1507
1509
|
// ListChecks aliases
|
|
1508
1510
|
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1509
1511
|
// ListChevronsDownUp aliases
|
|
@@ -1538,18 +1540,18 @@ export { default as ListTreeIcon } from '../icons/list-tree';
|
|
|
1538
1540
|
export { default as ListVideoIcon } from '../icons/list-video';
|
|
1539
1541
|
// ListX aliases
|
|
1540
1542
|
export { default as ListXIcon } from '../icons/list-x';
|
|
1541
|
-
// List aliases
|
|
1542
|
-
export { default as ListIcon } from '../icons/list';
|
|
1543
1543
|
// LoaderPinwheel aliases
|
|
1544
1544
|
export { default as LoaderPinwheelIcon } from '../icons/loader-pinwheel';
|
|
1545
|
-
//
|
|
1546
|
-
export { default as
|
|
1545
|
+
// List aliases
|
|
1546
|
+
export { default as ListIcon } from '../icons/list';
|
|
1547
1547
|
// LocateFixed aliases
|
|
1548
1548
|
export { default as LocateFixedIcon } from '../icons/locate-fixed';
|
|
1549
|
-
//
|
|
1550
|
-
export { default as
|
|
1549
|
+
// Loader aliases
|
|
1550
|
+
export { default as LoaderIcon } from '../icons/loader';
|
|
1551
1551
|
// LocateOff aliases
|
|
1552
1552
|
export { default as LocateOffIcon } from '../icons/locate-off';
|
|
1553
|
+
// Locate aliases
|
|
1554
|
+
export { default as LocateIcon } from '../icons/locate';
|
|
1553
1555
|
// LockKeyhole aliases
|
|
1554
1556
|
export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
1555
1557
|
// Lock aliases
|
|
@@ -1574,24 +1576,24 @@ export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
|
1574
1576
|
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1575
1577
|
// MailPlus aliases
|
|
1576
1578
|
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1577
|
-
// MailWarning aliases
|
|
1578
|
-
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1579
1579
|
// MailSearch aliases
|
|
1580
1580
|
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1581
|
+
// MailWarning aliases
|
|
1582
|
+
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1581
1583
|
// MailX aliases
|
|
1582
1584
|
export { default as MailXIcon } from '../icons/mail-x';
|
|
1583
1585
|
// Mailbox aliases
|
|
1584
1586
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1585
1587
|
// Mail aliases
|
|
1586
1588
|
export { default as MailIcon } from '../icons/mail';
|
|
1587
|
-
// Mails aliases
|
|
1588
|
-
export { default as MailsIcon } from '../icons/mails';
|
|
1589
1589
|
// MapMinus aliases
|
|
1590
1590
|
export { default as MapMinusIcon } from '../icons/map-minus';
|
|
1591
|
-
//
|
|
1592
|
-
export { default as
|
|
1591
|
+
// Mails aliases
|
|
1592
|
+
export { default as MailsIcon } from '../icons/mails';
|
|
1593
1593
|
// MapPinCheckInside aliases
|
|
1594
1594
|
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1595
|
+
// MapPinCheck aliases
|
|
1596
|
+
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1595
1597
|
// MapPinHouse aliases
|
|
1596
1598
|
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1597
1599
|
// MapPinMinusInside aliases
|
|
@@ -1604,10 +1606,10 @@ export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
|
1604
1606
|
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1605
1607
|
// MapPinPlus aliases
|
|
1606
1608
|
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1607
|
-
// MapPinX aliases
|
|
1608
|
-
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1609
1609
|
// MapPinXInside aliases
|
|
1610
1610
|
export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
1611
|
+
// MapPinX aliases
|
|
1612
|
+
export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
1611
1613
|
// MapPin aliases
|
|
1612
1614
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1613
1615
|
// MapPinned aliases
|
|
@@ -1616,24 +1618,24 @@ export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
|
1616
1618
|
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1617
1619
|
// Map aliases
|
|
1618
1620
|
export { default as MapIcon } from '../icons/map';
|
|
1619
|
-
// Martini aliases
|
|
1620
|
-
export { default as MartiniIcon } from '../icons/martini';
|
|
1621
|
-
// Mars aliases
|
|
1622
|
-
export { default as MarsIcon } from '../icons/mars';
|
|
1623
1621
|
// MarsStroke aliases
|
|
1624
1622
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1623
|
+
// Mars aliases
|
|
1624
|
+
export { default as MarsIcon } from '../icons/mars';
|
|
1625
1625
|
// Maximize2 aliases
|
|
1626
1626
|
export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
1627
|
+
// Martini aliases
|
|
1628
|
+
export { default as MartiniIcon } from '../icons/martini';
|
|
1627
1629
|
// Maximize aliases
|
|
1628
1630
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1629
1631
|
// Medal aliases
|
|
1630
1632
|
export { default as MedalIcon } from '../icons/medal';
|
|
1631
1633
|
// MegaphoneOff aliases
|
|
1632
1634
|
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1633
|
-
// Meh aliases
|
|
1634
|
-
export { default as MehIcon } from '../icons/meh';
|
|
1635
1635
|
// Megaphone aliases
|
|
1636
1636
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1637
|
+
// Meh aliases
|
|
1638
|
+
export { default as MehIcon } from '../icons/meh';
|
|
1637
1639
|
// MemoryStick aliases
|
|
1638
1640
|
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1639
1641
|
// Menu aliases
|
|
@@ -1660,34 +1662,34 @@ export { default as MessageCircleWarningIcon } from '../icons/message-circle-war
|
|
|
1660
1662
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1661
1663
|
// MessageCircle aliases
|
|
1662
1664
|
export { default as MessageCircleIcon } from '../icons/message-circle';
|
|
1663
|
-
// MessageSquareCode aliases
|
|
1664
|
-
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1665
1665
|
// MessageSquareDashed aliases
|
|
1666
1666
|
export { default as MessageSquareDashedIcon } from '../icons/message-square-dashed';
|
|
1667
|
+
// MessageSquareCode aliases
|
|
1668
|
+
export { default as MessageSquareCodeIcon } from '../icons/message-square-code';
|
|
1667
1669
|
// MessageSquareDiff aliases
|
|
1668
1670
|
export { default as MessageSquareDiffIcon } from '../icons/message-square-diff';
|
|
1669
1671
|
// MessageSquareDot aliases
|
|
1670
1672
|
export { default as MessageSquareDotIcon } from '../icons/message-square-dot';
|
|
1671
|
-
// MessageSquareLock aliases
|
|
1672
|
-
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1673
1673
|
// MessageSquareHeart aliases
|
|
1674
1674
|
export { default as MessageSquareHeartIcon } from '../icons/message-square-heart';
|
|
1675
|
+
// MessageSquareLock aliases
|
|
1676
|
+
export { default as MessageSquareLockIcon } from '../icons/message-square-lock';
|
|
1675
1677
|
// MessageSquareMore aliases
|
|
1676
1678
|
export { default as MessageSquareMoreIcon } from '../icons/message-square-more';
|
|
1677
1679
|
// MessageSquareOff aliases
|
|
1678
1680
|
export { default as MessageSquareOffIcon } from '../icons/message-square-off';
|
|
1679
|
-
// MessageSquarePlus aliases
|
|
1680
|
-
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1681
1681
|
// MessageSquareQuote aliases
|
|
1682
1682
|
export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote';
|
|
1683
|
+
// MessageSquarePlus aliases
|
|
1684
|
+
export { default as MessageSquarePlusIcon } from '../icons/message-square-plus';
|
|
1683
1685
|
// MessageSquareReply aliases
|
|
1684
1686
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1685
|
-
// MessageSquareShare aliases
|
|
1686
|
-
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1687
1687
|
// MessageSquareText aliases
|
|
1688
1688
|
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1689
1689
|
// MessageSquareWarning aliases
|
|
1690
1690
|
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1691
|
+
// MessageSquareShare aliases
|
|
1692
|
+
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1691
1693
|
// MessageSquareX aliases
|
|
1692
1694
|
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1693
1695
|
// MessageSquare aliases
|
|
@@ -1706,10 +1708,10 @@ export { default as MicroscopeIcon } from '../icons/microscope';
|
|
|
1706
1708
|
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1707
1709
|
// Milestone aliases
|
|
1708
1710
|
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1709
|
-
// MilkOff aliases
|
|
1710
|
-
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1711
1711
|
// Milk aliases
|
|
1712
1712
|
export { default as MilkIcon } from '../icons/milk';
|
|
1713
|
+
// MilkOff aliases
|
|
1714
|
+
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1713
1715
|
// Minimize2 aliases
|
|
1714
1716
|
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1715
1717
|
// Minimize aliases
|
|
@@ -1740,28 +1742,28 @@ export { default as MonitorSpeakerIcon } from '../icons/monitor-speaker';
|
|
|
1740
1742
|
export { default as MonitorStopIcon } from '../icons/monitor-stop';
|
|
1741
1743
|
// MonitorUp aliases
|
|
1742
1744
|
export { default as MonitorUpIcon } from '../icons/monitor-up';
|
|
1743
|
-
// MonitorX aliases
|
|
1744
|
-
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1745
1745
|
// Monitor aliases
|
|
1746
1746
|
export { default as MonitorIcon } from '../icons/monitor';
|
|
1747
|
+
// MonitorX aliases
|
|
1748
|
+
export { default as MonitorXIcon } from '../icons/monitor-x';
|
|
1747
1749
|
// MoonStar aliases
|
|
1748
1750
|
export { default as MoonStarIcon } from '../icons/moon-star';
|
|
1749
1751
|
// Moon aliases
|
|
1750
1752
|
export { default as MoonIcon } from '../icons/moon';
|
|
1751
|
-
// Motorbike aliases
|
|
1752
|
-
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1753
1753
|
// MountainSnow aliases
|
|
1754
1754
|
export { default as MountainSnowIcon } from '../icons/mountain-snow';
|
|
1755
|
+
// Motorbike aliases
|
|
1756
|
+
export { default as MotorbikeIcon } from '../icons/motorbike';
|
|
1755
1757
|
// Mountain aliases
|
|
1756
1758
|
export { default as MountainIcon } from '../icons/mountain';
|
|
1757
1759
|
// MouseOff aliases
|
|
1758
1760
|
export { default as MouseOffIcon } from '../icons/mouse-off';
|
|
1759
|
-
// MousePointer2Off aliases
|
|
1760
|
-
export { default as MousePointer2OffIcon } from '../icons/mouse-pointer-2-off';
|
|
1761
1761
|
// MousePointer2 aliases
|
|
1762
1762
|
export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
1763
1763
|
// MousePointerBan aliases
|
|
1764
1764
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1765
|
+
// MousePointer2Off aliases
|
|
1766
|
+
export { default as MousePointer2OffIcon } from '../icons/mouse-pointer-2-off';
|
|
1765
1767
|
// MousePointerClick aliases
|
|
1766
1768
|
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1767
1769
|
// MousePointer aliases
|
|
@@ -1770,10 +1772,10 @@ export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
|
1770
1772
|
export { default as MouseIcon } from '../icons/mouse';
|
|
1771
1773
|
// MoveDiagonal2 aliases
|
|
1772
1774
|
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1773
|
-
// MoveDiagonal aliases
|
|
1774
|
-
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1775
1775
|
// MoveDownLeft aliases
|
|
1776
1776
|
export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
1777
|
+
// MoveDiagonal aliases
|
|
1778
|
+
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1777
1779
|
// MoveDownRight aliases
|
|
1778
1780
|
export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
1779
1781
|
// MoveDown aliases
|
|
@@ -1784,10 +1786,10 @@ export { default as MoveLeftIcon } from '../icons/move-left';
|
|
|
1784
1786
|
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1785
1787
|
// MoveRight aliases
|
|
1786
1788
|
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1787
|
-
// MoveUpLeft aliases
|
|
1788
|
-
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1789
1789
|
// MoveUpRight aliases
|
|
1790
1790
|
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1791
|
+
// MoveUpLeft aliases
|
|
1792
|
+
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1791
1793
|
// MoveUp aliases
|
|
1792
1794
|
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1793
1795
|
// MoveVertical aliases
|
|
@@ -1806,10 +1808,10 @@ export { default as Music4Icon } from '../icons/music-4';
|
|
|
1806
1808
|
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1807
1809
|
// Navigation2 aliases
|
|
1808
1810
|
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1809
|
-
// Navigation aliases
|
|
1810
|
-
export { default as NavigationIcon } from '../icons/navigation';
|
|
1811
1811
|
// NavigationOff aliases
|
|
1812
1812
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1813
|
+
// Navigation aliases
|
|
1814
|
+
export { default as NavigationIcon } from '../icons/navigation';
|
|
1813
1815
|
// Network aliases
|
|
1814
1816
|
export { default as NetworkIcon } from '../icons/network';
|
|
1815
1817
|
// Newspaper aliases
|
|
@@ -1820,12 +1822,12 @@ export { default as NfcIcon } from '../icons/nfc';
|
|
|
1820
1822
|
export { default as NonBinaryIcon } from '../icons/non-binary';
|
|
1821
1823
|
// NotebookPen aliases
|
|
1822
1824
|
export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
1823
|
-
// NotebookTabs aliases
|
|
1824
|
-
export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
1825
1825
|
// NotebookText aliases
|
|
1826
1826
|
export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
1827
1827
|
// Notebook aliases
|
|
1828
1828
|
export { default as NotebookIcon } from '../icons/notebook';
|
|
1829
|
+
// NotebookTabs aliases
|
|
1830
|
+
export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
1829
1831
|
// NotepadTextDashed aliases
|
|
1830
1832
|
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1831
1833
|
// NotepadText aliases
|
|
@@ -1874,20 +1876,20 @@ export { default as PaletteIcon } from '../icons/palette';
|
|
|
1874
1876
|
export { default as PandaIcon } from '../icons/panda';
|
|
1875
1877
|
// PanelBottomClose aliases
|
|
1876
1878
|
export { default as PanelBottomCloseIcon } from '../icons/panel-bottom-close';
|
|
1877
|
-
// PanelBottom aliases
|
|
1878
|
-
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1879
1879
|
// PanelBottomOpen aliases
|
|
1880
1880
|
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1881
|
+
// PanelBottom aliases
|
|
1882
|
+
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1881
1883
|
// PanelLeftRightDashed aliases
|
|
1882
1884
|
export { default as PanelLeftRightDashedIcon } from '../icons/panel-left-right-dashed';
|
|
1883
1885
|
// PanelRightClose aliases
|
|
1884
1886
|
export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
1885
|
-
// PanelTopBottomDashed aliases
|
|
1886
|
-
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1887
|
-
// PanelRight aliases
|
|
1888
|
-
export { default as PanelRightIcon } from '../icons/panel-right';
|
|
1889
1887
|
// PanelRightOpen aliases
|
|
1890
1888
|
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1889
|
+
// PanelRight aliases
|
|
1890
|
+
export { default as PanelRightIcon } from '../icons/panel-right';
|
|
1891
|
+
// PanelTopBottomDashed aliases
|
|
1892
|
+
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1891
1893
|
// PanelTopClose aliases
|
|
1892
1894
|
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1893
1895
|
// PanelTopOpen aliases
|
|
@@ -1900,12 +1902,12 @@ export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
|
1900
1902
|
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1901
1903
|
// Paperclip aliases
|
|
1902
1904
|
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1903
|
-
// ParkingMeter aliases
|
|
1904
|
-
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1905
1905
|
// Parentheses aliases
|
|
1906
1906
|
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
1907
1907
|
// PartyPopper aliases
|
|
1908
1908
|
export { default as PartyPopperIcon } from '../icons/party-popper';
|
|
1909
|
+
// ParkingMeter aliases
|
|
1910
|
+
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1909
1911
|
// Pause aliases
|
|
1910
1912
|
export { default as PauseIcon } from '../icons/pause';
|
|
1911
1913
|
// PcCase aliases
|
|
@@ -1928,12 +1930,12 @@ export { default as PencilIcon } from '../icons/pencil';
|
|
|
1928
1930
|
export { default as PentagonIcon } from '../icons/pentagon';
|
|
1929
1931
|
// Percent aliases
|
|
1930
1932
|
export { default as PercentIcon } from '../icons/percent';
|
|
1933
|
+
// PersonStanding aliases
|
|
1934
|
+
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1931
1935
|
// PhilippinePeso aliases
|
|
1932
1936
|
export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
1933
1937
|
// PhoneCall aliases
|
|
1934
1938
|
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1935
|
-
// PersonStanding aliases
|
|
1936
|
-
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1937
1939
|
// PhoneForwarded aliases
|
|
1938
1940
|
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1939
1941
|
// PhoneIncoming aliases
|
|
@@ -1942,10 +1944,10 @@ export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
|
1942
1944
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
1943
1945
|
// PhoneOff aliases
|
|
1944
1946
|
export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
1945
|
-
// PhoneOutgoing aliases
|
|
1946
|
-
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
1947
1947
|
// Phone aliases
|
|
1948
1948
|
export { default as PhoneIcon } from '../icons/phone';
|
|
1949
|
+
// PhoneOutgoing aliases
|
|
1950
|
+
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
1949
1951
|
// Pi aliases
|
|
1950
1952
|
export { default as PiIcon } from '../icons/pi';
|
|
1951
1953
|
// Piano aliases
|
|
@@ -1960,36 +1962,36 @@ export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
|
1960
1962
|
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
1961
1963
|
// PilcrowLeft aliases
|
|
1962
1964
|
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1963
|
-
// PilcrowRight aliases
|
|
1964
|
-
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
1965
1965
|
// Pilcrow aliases
|
|
1966
1966
|
export { default as PilcrowIcon } from '../icons/pilcrow';
|
|
1967
|
+
// PilcrowRight aliases
|
|
1968
|
+
export { default as PilcrowRightIcon } from '../icons/pilcrow-right';
|
|
1967
1969
|
// PillBottle aliases
|
|
1968
1970
|
export { default as PillBottleIcon } from '../icons/pill-bottle';
|
|
1969
1971
|
// Pill aliases
|
|
1970
1972
|
export { default as PillIcon } from '../icons/pill';
|
|
1971
|
-
// Pin aliases
|
|
1972
|
-
export { default as PinIcon } from '../icons/pin';
|
|
1973
1973
|
// PinOff aliases
|
|
1974
1974
|
export { default as PinOffIcon } from '../icons/pin-off';
|
|
1975
1975
|
// Pipette aliases
|
|
1976
1976
|
export { default as PipetteIcon } from '../icons/pipette';
|
|
1977
1977
|
// Pizza aliases
|
|
1978
1978
|
export { default as PizzaIcon } from '../icons/pizza';
|
|
1979
|
+
// Pin aliases
|
|
1980
|
+
export { default as PinIcon } from '../icons/pin';
|
|
1979
1981
|
// PlaneLanding aliases
|
|
1980
1982
|
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
1981
1983
|
// PlaneTakeoff aliases
|
|
1982
1984
|
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
1983
|
-
// Plane aliases
|
|
1984
|
-
export { default as PlaneIcon } from '../icons/plane';
|
|
1985
1985
|
// Play aliases
|
|
1986
1986
|
export { default as PlayIcon } from '../icons/play';
|
|
1987
1987
|
// Plug2 aliases
|
|
1988
1988
|
export { default as Plug2Icon } from '../icons/plug-2';
|
|
1989
|
-
//
|
|
1990
|
-
export { default as
|
|
1989
|
+
// Plane aliases
|
|
1990
|
+
export { default as PlaneIcon } from '../icons/plane';
|
|
1991
1991
|
// Plug aliases
|
|
1992
1992
|
export { default as PlugIcon } from '../icons/plug';
|
|
1993
|
+
// Plus aliases
|
|
1994
|
+
export { default as PlusIcon } from '../icons/plus';
|
|
1993
1995
|
// PocketKnife aliases
|
|
1994
1996
|
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
1995
1997
|
// Pocket aliases
|
|
@@ -2000,28 +2002,28 @@ export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
|
2000
2002
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2001
2003
|
// Podcast aliases
|
|
2002
2004
|
export { default as PodcastIcon } from '../icons/podcast';
|
|
2003
|
-
// Popsicle aliases
|
|
2004
|
-
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2005
2005
|
// Popcorn aliases
|
|
2006
2006
|
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2007
|
+
// Popsicle aliases
|
|
2008
|
+
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2007
2009
|
// PoundSterling aliases
|
|
2008
2010
|
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2009
2011
|
// PowerOff aliases
|
|
2010
2012
|
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2011
|
-
// Presentation aliases
|
|
2012
|
-
export { default as PresentationIcon } from '../icons/presentation';
|
|
2013
2013
|
// Power aliases
|
|
2014
2014
|
export { default as PowerIcon } from '../icons/power';
|
|
2015
2015
|
// PrinterCheck aliases
|
|
2016
2016
|
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2017
|
+
// Presentation aliases
|
|
2018
|
+
export { default as PresentationIcon } from '../icons/presentation';
|
|
2017
2019
|
// Printer aliases
|
|
2018
2020
|
export { default as PrinterIcon } from '../icons/printer';
|
|
2019
|
-
// Projector aliases
|
|
2020
|
-
export { default as ProjectorIcon } from '../icons/projector';
|
|
2021
2021
|
// Proportions aliases
|
|
2022
2022
|
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2023
2023
|
// Puzzle aliases
|
|
2024
2024
|
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2025
|
+
// Projector aliases
|
|
2026
|
+
export { default as ProjectorIcon } from '../icons/projector';
|
|
2025
2027
|
// Pyramid aliases
|
|
2026
2028
|
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2027
2029
|
// QrCode aliases
|
|
@@ -2030,14 +2032,14 @@ export { default as QrCodeIcon } from '../icons/qr-code';
|
|
|
2030
2032
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2031
2033
|
// Rabbit aliases
|
|
2032
2034
|
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2033
|
-
// Radar aliases
|
|
2034
|
-
export { default as RadarIcon } from '../icons/radar';
|
|
2035
2035
|
// Radiation aliases
|
|
2036
2036
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2037
|
-
//
|
|
2038
|
-
export { default as
|
|
2037
|
+
// Radar aliases
|
|
2038
|
+
export { default as RadarIcon } from '../icons/radar';
|
|
2039
2039
|
// RadioTower aliases
|
|
2040
2040
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2041
|
+
// Radical aliases
|
|
2042
|
+
export { default as RadicalIcon } from '../icons/radical';
|
|
2041
2043
|
// RadioReceiver aliases
|
|
2042
2044
|
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2043
2045
|
// Radio aliases
|
|
@@ -2062,10 +2064,10 @@ export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee
|
|
|
2062
2064
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2063
2065
|
// ReceiptPoundSterling aliases
|
|
2064
2066
|
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2065
|
-
// ReceiptSwissFranc aliases
|
|
2066
|
-
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2067
2067
|
// ReceiptRussianRuble aliases
|
|
2068
2068
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2069
|
+
// ReceiptSwissFranc aliases
|
|
2070
|
+
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2069
2071
|
// ReceiptText aliases
|
|
2070
2072
|
export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
2071
2073
|
// ReceiptTurkishLira aliases
|
|
@@ -2092,16 +2094,16 @@ export { default as RedoIcon } from '../icons/redo';
|
|
|
2092
2094
|
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2093
2095
|
// RefreshCcw aliases
|
|
2094
2096
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2095
|
-
// RefreshCwOff aliases
|
|
2096
|
-
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2097
2097
|
// RefreshCw aliases
|
|
2098
2098
|
export { default as RefreshCwIcon } from '../icons/refresh-cw';
|
|
2099
|
+
// RefreshCwOff aliases
|
|
2100
|
+
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2099
2101
|
// Refrigerator aliases
|
|
2100
2102
|
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2101
|
-
// Regex aliases
|
|
2102
|
-
export { default as RegexIcon } from '../icons/regex';
|
|
2103
2103
|
// RemoveFormatting aliases
|
|
2104
2104
|
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2105
|
+
// Regex aliases
|
|
2106
|
+
export { default as RegexIcon } from '../icons/regex';
|
|
2105
2107
|
// Repeat1 aliases
|
|
2106
2108
|
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2107
2109
|
// Repeat2 aliases
|
|
@@ -2112,22 +2114,22 @@ export { default as RepeatIcon } from '../icons/repeat';
|
|
|
2112
2114
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2113
2115
|
// Replace aliases
|
|
2114
2116
|
export { default as ReplaceIcon } from '../icons/replace';
|
|
2115
|
-
//
|
|
2116
|
-
export { default as
|
|
2117
|
+
// Reply aliases
|
|
2118
|
+
export { default as ReplyIcon } from '../icons/reply';
|
|
2117
2119
|
// Rewind aliases
|
|
2118
2120
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2121
|
+
// ReplyAll aliases
|
|
2122
|
+
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2119
2123
|
// Ribbon aliases
|
|
2120
2124
|
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2121
|
-
// Reply aliases
|
|
2122
|
-
export { default as ReplyIcon } from '../icons/reply';
|
|
2123
2125
|
// Rocket aliases
|
|
2124
2126
|
export { default as RocketIcon } from '../icons/rocket';
|
|
2125
2127
|
// RockingChair aliases
|
|
2126
2128
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2127
|
-
// RollerCoaster aliases
|
|
2128
|
-
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2129
2129
|
// Rose aliases
|
|
2130
2130
|
export { default as RoseIcon } from '../icons/rose';
|
|
2131
|
+
// RollerCoaster aliases
|
|
2132
|
+
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2131
2133
|
// RotateCcwKey aliases
|
|
2132
2134
|
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2133
2135
|
// RotateCcwSquare aliases
|
|
@@ -2146,10 +2148,10 @@ export { default as RouteIcon } from '../icons/route';
|
|
|
2146
2148
|
export { default as RouterIcon } from '../icons/router';
|
|
2147
2149
|
// Rows4 aliases
|
|
2148
2150
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2149
|
-
// RulerDimensionLine aliases
|
|
2150
|
-
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2151
2151
|
// Rss aliases
|
|
2152
2152
|
export { default as RssIcon } from '../icons/rss';
|
|
2153
|
+
// RulerDimensionLine aliases
|
|
2154
|
+
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2153
2155
|
// Ruler aliases
|
|
2154
2156
|
export { default as RulerIcon } from '../icons/ruler';
|
|
2155
2157
|
// RussianRuble aliases
|
|
@@ -2172,10 +2174,10 @@ export { default as SaveAllIcon } from '../icons/save-all';
|
|
|
2172
2174
|
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2173
2175
|
// Save aliases
|
|
2174
2176
|
export { default as SaveIcon } from '../icons/save';
|
|
2175
|
-
// Scale aliases
|
|
2176
|
-
export { default as ScaleIcon } from '../icons/scale';
|
|
2177
2177
|
// Scaling aliases
|
|
2178
2178
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2179
|
+
// Scale aliases
|
|
2180
|
+
export { default as ScaleIcon } from '../icons/scale';
|
|
2179
2181
|
// ScanBarcode aliases
|
|
2180
2182
|
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2181
2183
|
// ScanEye aliases
|
|
@@ -2192,10 +2194,10 @@ export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
|
2192
2194
|
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2193
2195
|
// ScanText aliases
|
|
2194
2196
|
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2195
|
-
// Scan aliases
|
|
2196
|
-
export { default as ScanIcon } from '../icons/scan';
|
|
2197
2197
|
// School aliases
|
|
2198
2198
|
export { default as SchoolIcon } from '../icons/school';
|
|
2199
|
+
// Scan aliases
|
|
2200
|
+
export { default as ScanIcon } from '../icons/scan';
|
|
2199
2201
|
// ScissorsLineDashed aliases
|
|
2200
2202
|
export { default as ScissorsLineDashedIcon } from '../icons/scissors-line-dashed';
|
|
2201
2203
|
// Scissors aliases
|
|
@@ -2216,10 +2218,10 @@ export { default as SearchCodeIcon } from '../icons/search-code';
|
|
|
2216
2218
|
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2217
2219
|
// SearchX aliases
|
|
2218
2220
|
export { default as SearchXIcon } from '../icons/search-x';
|
|
2219
|
-
// Section aliases
|
|
2220
|
-
export { default as SectionIcon } from '../icons/section';
|
|
2221
2221
|
// Search aliases
|
|
2222
2222
|
export { default as SearchIcon } from '../icons/search';
|
|
2223
|
+
// Section aliases
|
|
2224
|
+
export { default as SectionIcon } from '../icons/section';
|
|
2223
2225
|
// SendToBack aliases
|
|
2224
2226
|
export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
2225
2227
|
// Send aliases
|
|
@@ -2228,18 +2230,18 @@ export { default as SendIcon } from '../icons/send';
|
|
|
2228
2230
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2229
2231
|
// SeparatorVertical aliases
|
|
2230
2232
|
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2233
|
+
// ServerCog aliases
|
|
2234
|
+
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2231
2235
|
// ServerCrash aliases
|
|
2232
2236
|
export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
2233
2237
|
// ServerOff aliases
|
|
2234
2238
|
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2235
|
-
// ServerCog aliases
|
|
2236
|
-
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2237
2239
|
// Server aliases
|
|
2238
2240
|
export { default as ServerIcon } from '../icons/server';
|
|
2239
|
-
// Settings2 aliases
|
|
2240
|
-
export { default as Settings2Icon } from '../icons/settings-2';
|
|
2241
2241
|
// Settings aliases
|
|
2242
2242
|
export { default as SettingsIcon } from '../icons/settings';
|
|
2243
|
+
// Settings2 aliases
|
|
2244
|
+
export { default as Settings2Icon } from '../icons/settings-2';
|
|
2243
2245
|
// Shapes aliases
|
|
2244
2246
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2245
2247
|
// Share2 aliases
|
|
@@ -2268,16 +2270,16 @@ export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
|
2268
2270
|
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2269
2271
|
// ShieldUser aliases
|
|
2270
2272
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2271
|
-
// Shield aliases
|
|
2272
|
-
export { default as ShieldIcon } from '../icons/shield';
|
|
2273
2273
|
// ShipWheel aliases
|
|
2274
2274
|
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2275
|
+
// Shield aliases
|
|
2276
|
+
export { default as ShieldIcon } from '../icons/shield';
|
|
2275
2277
|
// Ship aliases
|
|
2276
2278
|
export { default as ShipIcon } from '../icons/ship';
|
|
2277
|
-
// Shirt aliases
|
|
2278
|
-
export { default as ShirtIcon } from '../icons/shirt';
|
|
2279
2279
|
// ShoppingBag aliases
|
|
2280
2280
|
export { default as ShoppingBagIcon } from '../icons/shopping-bag';
|
|
2281
|
+
// Shirt aliases
|
|
2282
|
+
export { default as ShirtIcon } from '../icons/shirt';
|
|
2281
2283
|
// ShoppingBasket aliases
|
|
2282
2284
|
export { default as ShoppingBasketIcon } from '../icons/shopping-basket';
|
|
2283
2285
|
// ShoppingCart aliases
|
|
@@ -2294,10 +2296,10 @@ export { default as ShrimpIcon } from '../icons/shrimp';
|
|
|
2294
2296
|
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2295
2297
|
// Shrub aliases
|
|
2296
2298
|
export { default as ShrubIcon } from '../icons/shrub';
|
|
2297
|
-
// Shuffle aliases
|
|
2298
|
-
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2299
2299
|
// Sigma aliases
|
|
2300
2300
|
export { default as SigmaIcon } from '../icons/sigma';
|
|
2301
|
+
// Shuffle aliases
|
|
2302
|
+
export { default as ShuffleIcon } from '../icons/shuffle';
|
|
2301
2303
|
// SignalHigh aliases
|
|
2302
2304
|
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2303
2305
|
// SignalLow aliases
|
|
@@ -2338,14 +2340,14 @@ export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
|
2338
2340
|
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2339
2341
|
// SmilePlus aliases
|
|
2340
2342
|
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2341
|
-
// Smile aliases
|
|
2342
|
-
export { default as SmileIcon } from '../icons/smile';
|
|
2343
2343
|
// Snail aliases
|
|
2344
2344
|
export { default as SnailIcon } from '../icons/snail';
|
|
2345
|
-
//
|
|
2346
|
-
export { default as
|
|
2345
|
+
// Smile aliases
|
|
2346
|
+
export { default as SmileIcon } from '../icons/smile';
|
|
2347
2347
|
// Snowflake aliases
|
|
2348
2348
|
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2349
|
+
// SoapDispenserDroplet aliases
|
|
2350
|
+
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2349
2351
|
// Sofa aliases
|
|
2350
2352
|
export { default as SofaIcon } from '../icons/sofa';
|
|
2351
2353
|
// SolarPanel aliases
|
|
@@ -2366,20 +2368,20 @@ export { default as SpeechIcon } from '../icons/speech';
|
|
|
2366
2368
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2367
2369
|
// SpellCheck aliases
|
|
2368
2370
|
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2369
|
-
// SplinePointer aliases
|
|
2370
|
-
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2371
|
-
// Spline aliases
|
|
2372
|
-
export { default as SplineIcon } from '../icons/spline';
|
|
2373
2371
|
// Split aliases
|
|
2374
2372
|
export { default as SplitIcon } from '../icons/split';
|
|
2373
|
+
// Spline aliases
|
|
2374
|
+
export { default as SplineIcon } from '../icons/spline';
|
|
2375
2375
|
// Spool aliases
|
|
2376
2376
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2377
|
+
// SplinePointer aliases
|
|
2378
|
+
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2377
2379
|
// Spotlight aliases
|
|
2378
2380
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2379
|
-
// Sprout aliases
|
|
2380
|
-
export { default as SproutIcon } from '../icons/sprout';
|
|
2381
2381
|
// SprayCan aliases
|
|
2382
2382
|
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2383
|
+
// Sprout aliases
|
|
2384
|
+
export { default as SproutIcon } from '../icons/sprout';
|
|
2383
2385
|
// SquareDashedBottomCode aliases
|
|
2384
2386
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2385
2387
|
// SquareDashedBottom aliases
|
|
@@ -2398,32 +2400,32 @@ export { default as SquareSquareIcon } from '../icons/square-square';
|
|
|
2398
2400
|
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2399
2401
|
// SquareStar aliases
|
|
2400
2402
|
export { default as SquareStarIcon } from '../icons/square-star';
|
|
2401
|
-
// Square aliases
|
|
2402
|
-
export { default as SquareIcon } from '../icons/square';
|
|
2403
2403
|
// SquareStop aliases
|
|
2404
2404
|
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2405
|
-
//
|
|
2406
|
-
export { default as
|
|
2405
|
+
// Square aliases
|
|
2406
|
+
export { default as SquareIcon } from '../icons/square';
|
|
2407
2407
|
// SquaresExclude aliases
|
|
2408
2408
|
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2409
|
+
// SquaresIntersect aliases
|
|
2410
|
+
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2409
2411
|
// SquaresSubtract aliases
|
|
2410
2412
|
export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
2411
|
-
// SquircleDashed aliases
|
|
2412
|
-
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2413
2413
|
// SquaresUnite aliases
|
|
2414
2414
|
export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
2415
|
+
// SquircleDashed aliases
|
|
2416
|
+
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2415
2417
|
// Squircle aliases
|
|
2416
2418
|
export { default as SquircleIcon } from '../icons/squircle';
|
|
2417
|
-
// Squirrel aliases
|
|
2418
|
-
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2419
2419
|
// Stamp aliases
|
|
2420
2420
|
export { default as StampIcon } from '../icons/stamp';
|
|
2421
|
+
// Squirrel aliases
|
|
2422
|
+
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2421
2423
|
// StarHalf aliases
|
|
2422
2424
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2423
|
-
// Star aliases
|
|
2424
|
-
export { default as StarIcon } from '../icons/star';
|
|
2425
2425
|
// StarOff aliases
|
|
2426
2426
|
export { default as StarOffIcon } from '../icons/star-off';
|
|
2427
|
+
// Star aliases
|
|
2428
|
+
export { default as StarIcon } from '../icons/star';
|
|
2427
2429
|
// StepBack aliases
|
|
2428
2430
|
export { default as StepBackIcon } from '../icons/step-back';
|
|
2429
2431
|
// StepForward aliases
|
|
@@ -2436,22 +2438,22 @@ export { default as StickerIcon } from '../icons/sticker';
|
|
|
2436
2438
|
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2437
2439
|
// Store aliases
|
|
2438
2440
|
export { default as StoreIcon } from '../icons/store';
|
|
2439
|
-
// StretchVertical aliases
|
|
2440
|
-
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2441
2441
|
// StretchHorizontal aliases
|
|
2442
2442
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2443
2443
|
// Strikethrough aliases
|
|
2444
2444
|
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2445
|
-
//
|
|
2446
|
-
export { default as
|
|
2445
|
+
// StretchVertical aliases
|
|
2446
|
+
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2447
2447
|
// SunDim aliases
|
|
2448
2448
|
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2449
|
+
// Subscript aliases
|
|
2450
|
+
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2451
|
+
// SunMoon aliases
|
|
2452
|
+
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2449
2453
|
// SunMedium aliases
|
|
2450
2454
|
export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
2451
2455
|
// SunSnow aliases
|
|
2452
2456
|
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2453
|
-
// SunMoon aliases
|
|
2454
|
-
export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
2455
2457
|
// Sun aliases
|
|
2456
2458
|
export { default as SunIcon } from '../icons/sun';
|
|
2457
2459
|
// Sunrise aliases
|
|
@@ -2470,20 +2472,20 @@ export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
|
2470
2472
|
export { default as SwordIcon } from '../icons/sword';
|
|
2471
2473
|
// Swords aliases
|
|
2472
2474
|
export { default as SwordsIcon } from '../icons/swords';
|
|
2473
|
-
// Table2 aliases
|
|
2474
|
-
export { default as Table2Icon } from '../icons/table-2';
|
|
2475
2475
|
// Syringe aliases
|
|
2476
2476
|
export { default as SyringeIcon } from '../icons/syringe';
|
|
2477
|
+
// Table2 aliases
|
|
2478
|
+
export { default as Table2Icon } from '../icons/table-2';
|
|
2477
2479
|
// TableCellsMerge aliases
|
|
2478
2480
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2479
2481
|
// TableCellsSplit aliases
|
|
2480
2482
|
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2481
2483
|
// TableColumnsSplit aliases
|
|
2482
2484
|
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2483
|
-
// TableProperties aliases
|
|
2484
|
-
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2485
2485
|
// TableOfContents aliases
|
|
2486
2486
|
export { default as TableOfContentsIcon } from '../icons/table-of-contents';
|
|
2487
|
+
// TableProperties aliases
|
|
2488
|
+
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2487
2489
|
// TableRowsSplit aliases
|
|
2488
2490
|
export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
2489
2491
|
// Table aliases
|
|
@@ -2518,22 +2520,22 @@ export { default as TelescopeIcon } from '../icons/telescope';
|
|
|
2518
2520
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2519
2521
|
// Tent aliases
|
|
2520
2522
|
export { default as TentIcon } from '../icons/tent';
|
|
2521
|
-
// Terminal aliases
|
|
2522
|
-
export { default as TerminalIcon } from '../icons/terminal';
|
|
2523
2523
|
// TestTube aliases
|
|
2524
2524
|
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2525
|
+
// Terminal aliases
|
|
2526
|
+
export { default as TerminalIcon } from '../icons/terminal';
|
|
2525
2527
|
// TestTubes aliases
|
|
2526
2528
|
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2527
2529
|
// TextCursorInput aliases
|
|
2528
2530
|
export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
2529
|
-
// TextQuote aliases
|
|
2530
|
-
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2531
2531
|
// TextCursor aliases
|
|
2532
2532
|
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2533
2533
|
// TextSearch aliases
|
|
2534
2534
|
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2535
2535
|
// Theater aliases
|
|
2536
2536
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2537
|
+
// TextQuote aliases
|
|
2538
|
+
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2537
2539
|
// ThermometerSnowflake aliases
|
|
2538
2540
|
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2539
2541
|
// ThermometerSun aliases
|
|
@@ -2546,26 +2548,26 @@ export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
|
2546
2548
|
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2547
2549
|
// TicketCheck aliases
|
|
2548
2550
|
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2549
|
-
// TicketMinus aliases
|
|
2550
|
-
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2551
2551
|
// TicketPercent aliases
|
|
2552
2552
|
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2553
|
-
//
|
|
2554
|
-
export { default as
|
|
2553
|
+
// TicketMinus aliases
|
|
2554
|
+
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2555
2555
|
// TicketPlus aliases
|
|
2556
2556
|
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2557
2557
|
// TicketX aliases
|
|
2558
2558
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2559
|
+
// TicketSlash aliases
|
|
2560
|
+
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2559
2561
|
// Ticket aliases
|
|
2560
2562
|
export { default as TicketIcon } from '../icons/ticket';
|
|
2561
2563
|
// TicketsPlane aliases
|
|
2562
2564
|
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2565
|
+
// Tickets aliases
|
|
2566
|
+
export { default as TicketsIcon } from '../icons/tickets';
|
|
2563
2567
|
// TimerOff aliases
|
|
2564
2568
|
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2565
2569
|
// TimerReset aliases
|
|
2566
2570
|
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2567
|
-
// Tickets aliases
|
|
2568
|
-
export { default as TicketsIcon } from '../icons/tickets';
|
|
2569
2571
|
// Timer aliases
|
|
2570
2572
|
export { default as TimerIcon } from '../icons/timer';
|
|
2571
2573
|
// ToggleLeft aliases
|
|
@@ -2586,10 +2588,10 @@ export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
|
2586
2588
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2587
2589
|
// TowerControl aliases
|
|
2588
2590
|
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2589
|
-
// Tractor aliases
|
|
2590
|
-
export { default as TractorIcon } from '../icons/tractor';
|
|
2591
2591
|
// ToyBrick aliases
|
|
2592
2592
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2593
|
+
// Tractor aliases
|
|
2594
|
+
export { default as TractorIcon } from '../icons/tractor';
|
|
2593
2595
|
// TrafficCone aliases
|
|
2594
2596
|
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2595
2597
|
// TrainFrontTunnel aliases
|
|
@@ -2598,18 +2600,18 @@ export { default as TrainFrontTunnelIcon } from '../icons/train-front-tunnel';
|
|
|
2598
2600
|
export { default as TrainFrontIcon } from '../icons/train-front';
|
|
2599
2601
|
// TrainTrack aliases
|
|
2600
2602
|
export { default as TrainTrackIcon } from '../icons/train-track';
|
|
2601
|
-
// Transgender aliases
|
|
2602
|
-
export { default as TransgenderIcon } from '../icons/transgender';
|
|
2603
2603
|
// Trash2 aliases
|
|
2604
2604
|
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2605
|
+
// Transgender aliases
|
|
2606
|
+
export { default as TransgenderIcon } from '../icons/transgender';
|
|
2605
2607
|
// Trash aliases
|
|
2606
2608
|
export { default as TrashIcon } from '../icons/trash';
|
|
2609
|
+
// TreeDeciduous aliases
|
|
2610
|
+
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2607
2611
|
// TreePine aliases
|
|
2608
2612
|
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2609
2613
|
// Trees aliases
|
|
2610
2614
|
export { default as TreesIcon } from '../icons/trees';
|
|
2611
|
-
// TreeDeciduous aliases
|
|
2612
|
-
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2613
2615
|
// Trello aliases
|
|
2614
2616
|
export { default as TrelloIcon } from '../icons/trello';
|
|
2615
2617
|
// TrendingDown aliases
|
|
@@ -2622,24 +2624,24 @@ export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
|
2622
2624
|
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2623
2625
|
// TriangleRight aliases
|
|
2624
2626
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2625
|
-
// Trophy aliases
|
|
2626
|
-
export { default as TrophyIcon } from '../icons/trophy';
|
|
2627
2627
|
// Triangle aliases
|
|
2628
2628
|
export { default as TriangleIcon } from '../icons/triangle';
|
|
2629
|
-
//
|
|
2630
|
-
export { default as
|
|
2629
|
+
// Trophy aliases
|
|
2630
|
+
export { default as TrophyIcon } from '../icons/trophy';
|
|
2631
2631
|
// Truck aliases
|
|
2632
2632
|
export { default as TruckIcon } from '../icons/truck';
|
|
2633
|
-
//
|
|
2634
|
-
export { default as
|
|
2633
|
+
// TruckElectric aliases
|
|
2634
|
+
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2635
2635
|
// Turntable aliases
|
|
2636
2636
|
export { default as TurntableIcon } from '../icons/turntable';
|
|
2637
|
+
// TurkishLira aliases
|
|
2638
|
+
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2639
|
+
// Turtle aliases
|
|
2640
|
+
export { default as TurtleIcon } from '../icons/turtle';
|
|
2637
2641
|
// TvMinimalPlay aliases
|
|
2638
2642
|
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2639
2643
|
// Tv aliases
|
|
2640
2644
|
export { default as TvIcon } from '../icons/tv';
|
|
2641
|
-
// Turtle aliases
|
|
2642
|
-
export { default as TurtleIcon } from '../icons/turtle';
|
|
2643
2645
|
// Twitch aliases
|
|
2644
2646
|
export { default as TwitchIcon } from '../icons/twitch';
|
|
2645
2647
|
// Twitter aliases
|
|
@@ -2652,26 +2654,26 @@ export { default as TypeIcon } from '../icons/type';
|
|
|
2652
2654
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2653
2655
|
// Umbrella aliases
|
|
2654
2656
|
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2655
|
-
// Undo2 aliases
|
|
2656
|
-
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2657
2657
|
// Underline aliases
|
|
2658
2658
|
export { default as UnderlineIcon } from '../icons/underline';
|
|
2659
|
+
// Undo2 aliases
|
|
2660
|
+
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2659
2661
|
// UndoDot aliases
|
|
2660
2662
|
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2661
|
-
// UnfoldHorizontal aliases
|
|
2662
|
-
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2663
|
-
// UnfoldVertical aliases
|
|
2664
|
-
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2665
2663
|
// Undo aliases
|
|
2666
2664
|
export { default as UndoIcon } from '../icons/undo';
|
|
2665
|
+
// UnfoldHorizontal aliases
|
|
2666
|
+
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2667
2667
|
// Ungroup aliases
|
|
2668
2668
|
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2669
|
+
// UnfoldVertical aliases
|
|
2670
|
+
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2669
2671
|
// Unlink2 aliases
|
|
2670
2672
|
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2671
|
-
// Unplug aliases
|
|
2672
|
-
export { default as UnplugIcon } from '../icons/unplug';
|
|
2673
2673
|
// Unlink aliases
|
|
2674
2674
|
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2675
|
+
// Unplug aliases
|
|
2676
|
+
export { default as UnplugIcon } from '../icons/unplug';
|
|
2675
2677
|
// Upload aliases
|
|
2676
2678
|
export { default as UploadIcon } from '../icons/upload';
|
|
2677
2679
|
// Usb aliases
|
|
@@ -2684,10 +2686,10 @@ export { default as UserCogIcon } from '../icons/user-cog';
|
|
|
2684
2686
|
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2685
2687
|
// UserMinus aliases
|
|
2686
2688
|
export { default as UserMinusIcon } from '../icons/user-minus';
|
|
2687
|
-
// UserPlus aliases
|
|
2688
|
-
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2689
2689
|
// UserPen aliases
|
|
2690
2690
|
export { default as UserPenIcon } from '../icons/user-pen';
|
|
2691
|
+
// UserPlus aliases
|
|
2692
|
+
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2691
2693
|
// UserRoundPen aliases
|
|
2692
2694
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2693
2695
|
// UserRoundSearch aliases
|
|
@@ -2702,24 +2704,24 @@ export { default as UserXIcon } from '../icons/user-x';
|
|
|
2702
2704
|
export { default as UserIcon } from '../icons/user';
|
|
2703
2705
|
// Users aliases
|
|
2704
2706
|
export { default as UsersIcon } from '../icons/users';
|
|
2705
|
-
// UtilityPole aliases
|
|
2706
|
-
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2707
2707
|
// Variable aliases
|
|
2708
2708
|
export { default as VariableIcon } from '../icons/variable';
|
|
2709
|
+
// UtilityPole aliases
|
|
2710
|
+
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2709
2711
|
// Vault aliases
|
|
2710
2712
|
export { default as VaultIcon } from '../icons/vault';
|
|
2711
|
-
// Vegan aliases
|
|
2712
|
-
export { default as VeganIcon } from '../icons/vegan';
|
|
2713
2713
|
// VectorSquare aliases
|
|
2714
2714
|
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2715
|
+
// Vegan aliases
|
|
2716
|
+
export { default as VeganIcon } from '../icons/vegan';
|
|
2715
2717
|
// VenetianMask aliases
|
|
2716
2718
|
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2717
2719
|
// VenusAndMars aliases
|
|
2718
2720
|
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2719
|
-
// Venus aliases
|
|
2720
|
-
export { default as VenusIcon } from '../icons/venus';
|
|
2721
2721
|
// VibrateOff aliases
|
|
2722
2722
|
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2723
|
+
// Venus aliases
|
|
2724
|
+
export { default as VenusIcon } from '../icons/venus';
|
|
2723
2725
|
// Vibrate aliases
|
|
2724
2726
|
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2725
2727
|
// VideoOff aliases
|
|
@@ -2744,14 +2746,14 @@ export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
|
2744
2746
|
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2745
2747
|
// Volume aliases
|
|
2746
2748
|
export { default as VolumeIcon } from '../icons/volume';
|
|
2747
|
-
// Vote aliases
|
|
2748
|
-
export { default as VoteIcon } from '../icons/vote';
|
|
2749
2749
|
// WalletCards aliases
|
|
2750
2750
|
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2751
2751
|
// Wallet aliases
|
|
2752
2752
|
export { default as WalletIcon } from '../icons/wallet';
|
|
2753
2753
|
// Wallpaper aliases
|
|
2754
2754
|
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2755
|
+
// Vote aliases
|
|
2756
|
+
export { default as VoteIcon } from '../icons/vote';
|
|
2755
2757
|
// Wand aliases
|
|
2756
2758
|
export { default as WandIcon } from '../icons/wand';
|
|
2757
2759
|
// Warehouse aliases
|
|
@@ -2760,28 +2762,32 @@ export { default as WarehouseIcon } from '../icons/warehouse';
|
|
|
2760
2762
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2761
2763
|
// Watch aliases
|
|
2762
2764
|
export { default as WatchIcon } from '../icons/watch';
|
|
2763
|
-
//
|
|
2764
|
-
export { default as
|
|
2765
|
+
// WavesArrowDown aliases
|
|
2766
|
+
export { default as WavesArrowDownIcon } from '../icons/waves-arrow-down';
|
|
2767
|
+
// WavesArrowUp aliases
|
|
2768
|
+
export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
2765
2769
|
// WavesLadder aliases
|
|
2766
2770
|
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2771
|
+
// Waves aliases
|
|
2772
|
+
export { default as WavesIcon } from '../icons/waves';
|
|
2767
2773
|
// Waypoints aliases
|
|
2768
2774
|
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2769
|
-
// Webcam aliases
|
|
2770
|
-
export { default as WebcamIcon } from '../icons/webcam';
|
|
2771
2775
|
// WebhookOff aliases
|
|
2772
2776
|
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2773
2777
|
// Webhook aliases
|
|
2774
2778
|
export { default as WebhookIcon } from '../icons/webhook';
|
|
2779
|
+
// Webcam aliases
|
|
2780
|
+
export { default as WebcamIcon } from '../icons/webcam';
|
|
2775
2781
|
// Weight aliases
|
|
2776
2782
|
export { default as WeightIcon } from '../icons/weight';
|
|
2777
2783
|
// WheatOff aliases
|
|
2778
2784
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2785
|
+
// Wheat aliases
|
|
2786
|
+
export { default as WheatIcon } from '../icons/wheat';
|
|
2779
2787
|
// WholeWord aliases
|
|
2780
2788
|
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2781
2789
|
// WifiCog aliases
|
|
2782
2790
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2783
|
-
// Wheat aliases
|
|
2784
|
-
export { default as WheatIcon } from '../icons/wheat';
|
|
2785
2791
|
// WifiHigh aliases
|
|
2786
2792
|
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2787
2793
|
// WifiLow aliases
|
|
@@ -2800,20 +2806,20 @@ export { default as WifiIcon } from '../icons/wifi';
|
|
|
2800
2806
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2801
2807
|
// Wind aliases
|
|
2802
2808
|
export { default as WindIcon } from '../icons/wind';
|
|
2803
|
-
// WineOff aliases
|
|
2804
|
-
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2805
2809
|
// Wine aliases
|
|
2806
2810
|
export { default as WineIcon } from '../icons/wine';
|
|
2811
|
+
// WineOff aliases
|
|
2812
|
+
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2807
2813
|
// Workflow aliases
|
|
2808
2814
|
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2809
2815
|
// Worm aliases
|
|
2810
2816
|
export { default as WormIcon } from '../icons/worm';
|
|
2811
|
-
// Wrench aliases
|
|
2812
|
-
export { default as WrenchIcon } from '../icons/wrench';
|
|
2813
|
-
// X aliases
|
|
2814
|
-
export { default as XIcon } from '../icons/x';
|
|
2815
2817
|
// Youtube aliases
|
|
2816
2818
|
export { default as YoutubeIcon } from '../icons/youtube';
|
|
2819
|
+
// X aliases
|
|
2820
|
+
export { default as XIcon } from '../icons/x';
|
|
2821
|
+
// Wrench aliases
|
|
2822
|
+
export { default as WrenchIcon } from '../icons/wrench';
|
|
2817
2823
|
// ZapOff aliases
|
|
2818
2824
|
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2819
2825
|
// Zap aliases
|
|
@@ -2830,18 +2836,18 @@ export { default as ArrowDown10Icon } from '../icons/arrow-down-1-0';
|
|
|
2830
2836
|
export { default as ArrowUp01Icon } from '../icons/arrow-up-0-1';
|
|
2831
2837
|
// ArrowUp10 aliases
|
|
2832
2838
|
export { default as ArrowUp10Icon } from '../icons/arrow-up-1-0';
|
|
2833
|
-
// AlarmClockMinus aliases
|
|
2834
|
-
export { default as AlarmClockMinusIcon } from '../icons/alarm-clock-minus';
|
|
2835
|
-
export {
|
|
2836
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. This alias will be removed in v1.0 */
|
|
2837
|
-
default as AlarmMinusIcon
|
|
2838
|
-
} from '../icons/alarm-clock-minus';
|
|
2839
2839
|
// AlarmClockCheck aliases
|
|
2840
2840
|
export { default as AlarmClockCheckIcon } from '../icons/alarm-clock-check';
|
|
2841
2841
|
export {
|
|
2842
2842
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockCheck} instead. This alias will be removed in v1.0 */
|
|
2843
2843
|
default as AlarmCheckIcon
|
|
2844
2844
|
} from '../icons/alarm-clock-check';
|
|
2845
|
+
// AlarmClockMinus aliases
|
|
2846
|
+
export { default as AlarmClockMinusIcon } from '../icons/alarm-clock-minus';
|
|
2847
|
+
export {
|
|
2848
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. This alias will be removed in v1.0 */
|
|
2849
|
+
default as AlarmMinusIcon
|
|
2850
|
+
} from '../icons/alarm-clock-minus';
|
|
2845
2851
|
// AlarmClockPlus aliases
|
|
2846
2852
|
export { default as AlarmClockPlusIcon } from '../icons/alarm-clock-plus';
|
|
2847
2853
|
export {
|
|
@@ -2890,18 +2896,18 @@ export {
|
|
|
2890
2896
|
/** @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 */
|
|
2891
2897
|
default as Axis3DIcon
|
|
2892
2898
|
} from '../icons/axis-3d';
|
|
2893
|
-
// BadgeCheck aliases
|
|
2894
|
-
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
2895
|
-
export {
|
|
2896
|
-
/** @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 */
|
|
2897
|
-
default as VerifiedIcon
|
|
2898
|
-
} from '../icons/badge-check';
|
|
2899
2899
|
// BadgeQuestionMark aliases
|
|
2900
2900
|
export { default as BadgeQuestionMarkIcon } from '../icons/badge-question-mark';
|
|
2901
2901
|
export {
|
|
2902
2902
|
/** @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 */
|
|
2903
2903
|
default as BadgeHelpIcon
|
|
2904
2904
|
} from '../icons/badge-question-mark';
|
|
2905
|
+
// BadgeCheck aliases
|
|
2906
|
+
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
2907
|
+
export {
|
|
2908
|
+
/** @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 */
|
|
2909
|
+
default as VerifiedIcon
|
|
2910
|
+
} from '../icons/badge-check';
|
|
2905
2911
|
// BetweenHorizontalEnd aliases
|
|
2906
2912
|
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
2907
2913
|
export {
|
|
@@ -2920,24 +2926,24 @@ export {
|
|
|
2920
2926
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. This alias will be removed in v1.0.0 */
|
|
2921
2927
|
default as BookTemplateIcon
|
|
2922
2928
|
} from '../icons/book-dashed';
|
|
2923
|
-
//
|
|
2924
|
-
export { default as
|
|
2929
|
+
// Braces aliases
|
|
2930
|
+
export { default as BracesIcon } from '../icons/braces';
|
|
2925
2931
|
export {
|
|
2926
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
2927
|
-
default as
|
|
2928
|
-
} from '../icons/
|
|
2932
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. This alias will be removed in v1.0 */
|
|
2933
|
+
default as CurlyBracesIcon
|
|
2934
|
+
} from '../icons/braces';
|
|
2929
2935
|
// ChartArea aliases
|
|
2930
2936
|
export { default as ChartAreaIcon } from '../icons/chart-area';
|
|
2931
2937
|
export {
|
|
2932
2938
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
2933
2939
|
default as AreaChartIcon
|
|
2934
2940
|
} from '../icons/chart-area';
|
|
2935
|
-
//
|
|
2936
|
-
export { default as
|
|
2941
|
+
// Captions aliases
|
|
2942
|
+
export { default as CaptionsIcon } from '../icons/captions';
|
|
2937
2943
|
export {
|
|
2938
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
2939
|
-
default as
|
|
2940
|
-
} from '../icons/
|
|
2944
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. This alias will be removed in v1.0 */
|
|
2945
|
+
default as SubtitlesIcon
|
|
2946
|
+
} from '../icons/captions';
|
|
2941
2947
|
// ChartBarBig aliases
|
|
2942
2948
|
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
2943
2949
|
export {
|
|
@@ -2968,18 +2974,24 @@ export {
|
|
|
2968
2974
|
/** @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 */
|
|
2969
2975
|
default as BarChart4Icon
|
|
2970
2976
|
} from '../icons/chart-column-increasing';
|
|
2977
|
+
// ChartColumn aliases
|
|
2978
|
+
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
2979
|
+
export {
|
|
2980
|
+
/** @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 */
|
|
2981
|
+
default as BarChart3Icon
|
|
2982
|
+
} from '../icons/chart-column';
|
|
2971
2983
|
// ChartLine aliases
|
|
2972
2984
|
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
2973
2985
|
export {
|
|
2974
2986
|
/** @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 */
|
|
2975
2987
|
default as LineChartIcon
|
|
2976
2988
|
} from '../icons/chart-line';
|
|
2977
|
-
//
|
|
2978
|
-
export { default as
|
|
2989
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
2990
|
+
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
2979
2991
|
export {
|
|
2980
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
2981
|
-
default as
|
|
2982
|
-
} from '../icons/chart-column';
|
|
2992
|
+
/** @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 */
|
|
2993
|
+
default as BarChartIcon
|
|
2994
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
2983
2995
|
// ChartNoAxesColumn aliases
|
|
2984
2996
|
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
2985
2997
|
export {
|
|
@@ -2992,18 +3004,6 @@ export {
|
|
|
2992
3004
|
/** @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 */
|
|
2993
3005
|
default as GanttChartIcon
|
|
2994
3006
|
} from '../icons/chart-no-axes-gantt';
|
|
2995
|
-
// ChartNoAxesColumnIncreasing aliases
|
|
2996
|
-
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
2997
|
-
export {
|
|
2998
|
-
/** @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 */
|
|
2999
|
-
default as BarChartIcon
|
|
3000
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
3001
|
-
// ChartPie aliases
|
|
3002
|
-
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3003
|
-
export {
|
|
3004
|
-
/** @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 */
|
|
3005
|
-
default as PieChartIcon
|
|
3006
|
-
} from '../icons/chart-pie';
|
|
3007
3007
|
// ChartScatter aliases
|
|
3008
3008
|
export { default as ChartScatterIcon } from '../icons/chart-scatter';
|
|
3009
3009
|
export {
|
|
@@ -3016,18 +3016,24 @@ export {
|
|
|
3016
3016
|
/** @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 */
|
|
3017
3017
|
default as ChromeIcon
|
|
3018
3018
|
} from '../icons/chromium';
|
|
3019
|
-
//
|
|
3020
|
-
export { default as
|
|
3019
|
+
// ChartPie aliases
|
|
3020
|
+
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3021
3021
|
export {
|
|
3022
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3023
|
-
default as
|
|
3024
|
-
} from '../icons/
|
|
3022
|
+
/** @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 */
|
|
3023
|
+
default as PieChartIcon
|
|
3024
|
+
} from '../icons/chart-pie';
|
|
3025
3025
|
// CircleAlert aliases
|
|
3026
3026
|
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3027
3027
|
export {
|
|
3028
3028
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
3029
3029
|
default as AlertCircleIcon
|
|
3030
3030
|
} from '../icons/circle-alert';
|
|
3031
|
+
// CircleArrowDown aliases
|
|
3032
|
+
export { default as CircleArrowDownIcon } from '../icons/circle-arrow-down';
|
|
3033
|
+
export {
|
|
3034
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
3035
|
+
default as ArrowDownCircleIcon
|
|
3036
|
+
} from '../icons/circle-arrow-down';
|
|
3031
3037
|
// CircleArrowLeft aliases
|
|
3032
3038
|
export { default as CircleArrowLeftIcon } from '../icons/circle-arrow-left';
|
|
3033
3039
|
export {
|
|
@@ -3070,18 +3076,18 @@ export {
|
|
|
3070
3076
|
/** @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 */
|
|
3071
3077
|
default as ArrowUpCircleIcon
|
|
3072
3078
|
} from '../icons/circle-arrow-up';
|
|
3073
|
-
// CircleCheckBig aliases
|
|
3074
|
-
export { default as CircleCheckBigIcon } from '../icons/circle-check-big';
|
|
3075
|
-
export {
|
|
3076
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
3077
|
-
default as CheckCircleIcon
|
|
3078
|
-
} from '../icons/circle-check-big';
|
|
3079
3079
|
// CircleCheck aliases
|
|
3080
3080
|
export { default as CircleCheckIcon } from '../icons/circle-check';
|
|
3081
3081
|
export {
|
|
3082
3082
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. This alias will be removed in v1.0 */
|
|
3083
3083
|
default as CheckCircle2Icon
|
|
3084
3084
|
} from '../icons/circle-check';
|
|
3085
|
+
// CircleCheckBig aliases
|
|
3086
|
+
export { default as CircleCheckBigIcon } from '../icons/circle-check-big';
|
|
3087
|
+
export {
|
|
3088
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
3089
|
+
default as CheckCircleIcon
|
|
3090
|
+
} from '../icons/circle-check-big';
|
|
3085
3091
|
// CircleChevronDown aliases
|
|
3086
3092
|
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3087
3093
|
export {
|
|
@@ -3106,18 +3112,18 @@ export {
|
|
|
3106
3112
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. This alias will be removed in v1.0 */
|
|
3107
3113
|
default as ChevronUpCircleIcon
|
|
3108
3114
|
} from '../icons/circle-chevron-up';
|
|
3109
|
-
// CircleDivide aliases
|
|
3110
|
-
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3111
|
-
export {
|
|
3112
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
3113
|
-
default as DivideCircleIcon
|
|
3114
|
-
} from '../icons/circle-divide';
|
|
3115
3115
|
// CircleGauge aliases
|
|
3116
3116
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3117
3117
|
export {
|
|
3118
3118
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
3119
3119
|
default as GaugeCircleIcon
|
|
3120
3120
|
} from '../icons/circle-gauge';
|
|
3121
|
+
// CircleDivide aliases
|
|
3122
|
+
export { default as CircleDivideIcon } from '../icons/circle-divide';
|
|
3123
|
+
export {
|
|
3124
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
3125
|
+
default as DivideCircleIcon
|
|
3126
|
+
} from '../icons/circle-divide';
|
|
3121
3127
|
// CircleMinus aliases
|
|
3122
3128
|
export { default as CircleMinusIcon } from '../icons/circle-minus';
|
|
3123
3129
|
export {
|
|
@@ -3212,18 +3218,18 @@ export {
|
|
|
3212
3218
|
/** @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 */
|
|
3213
3219
|
default as ClipboardSignatureIcon
|
|
3214
3220
|
} from '../icons/clipboard-pen-line';
|
|
3215
|
-
// ClipboardPen aliases
|
|
3216
|
-
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3217
|
-
export {
|
|
3218
|
-
/** @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 */
|
|
3219
|
-
default as ClipboardEditIcon
|
|
3220
|
-
} from '../icons/clipboard-pen';
|
|
3221
3221
|
// CloudUpload aliases
|
|
3222
3222
|
export { default as CloudUploadIcon } from '../icons/cloud-upload';
|
|
3223
3223
|
export {
|
|
3224
3224
|
/** @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 */
|
|
3225
3225
|
default as UploadCloudIcon
|
|
3226
3226
|
} from '../icons/cloud-upload';
|
|
3227
|
+
// ClipboardPen aliases
|
|
3228
|
+
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3229
|
+
export {
|
|
3230
|
+
/** @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 */
|
|
3231
|
+
default as ClipboardEditIcon
|
|
3232
|
+
} from '../icons/clipboard-pen';
|
|
3227
3233
|
// CloudDownload aliases
|
|
3228
3234
|
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3229
3235
|
export {
|
|
@@ -3270,24 +3276,24 @@ export {
|
|
|
3270
3276
|
/** @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 */
|
|
3271
3277
|
default as PercentDiamondIcon
|
|
3272
3278
|
} from '../icons/diamond-percent';
|
|
3273
|
-
//
|
|
3274
|
-
export { default as
|
|
3279
|
+
// EllipsisVertical aliases
|
|
3280
|
+
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3275
3281
|
export {
|
|
3276
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3277
|
-
default as
|
|
3278
|
-
} from '../icons/
|
|
3282
|
+
/** @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 */
|
|
3283
|
+
default as MoreVerticalIcon
|
|
3284
|
+
} from '../icons/ellipsis-vertical';
|
|
3279
3285
|
// Ellipsis aliases
|
|
3280
3286
|
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3281
3287
|
export {
|
|
3282
3288
|
/** @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 */
|
|
3283
3289
|
default as MoreHorizontalIcon
|
|
3284
3290
|
} from '../icons/ellipsis';
|
|
3285
|
-
//
|
|
3286
|
-
export { default as
|
|
3291
|
+
// Earth aliases
|
|
3292
|
+
export { default as EarthIcon } from '../icons/earth';
|
|
3287
3293
|
export {
|
|
3288
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3289
|
-
default as
|
|
3290
|
-
} from '../icons/
|
|
3294
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
3295
|
+
default as Globe2Icon
|
|
3296
|
+
} from '../icons/earth';
|
|
3291
3297
|
// FileAxis3d aliases
|
|
3292
3298
|
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3293
3299
|
export {
|
|
@@ -3312,18 +3318,18 @@ export {
|
|
|
3312
3318
|
/** @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 */
|
|
3313
3319
|
default as FileJsonIcon
|
|
3314
3320
|
} from '../icons/file-braces';
|
|
3315
|
-
// FileChartColumn aliases
|
|
3316
|
-
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3317
|
-
export {
|
|
3318
|
-
/** @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 */
|
|
3319
|
-
default as FileBarChart2Icon
|
|
3320
|
-
} from '../icons/file-chart-column';
|
|
3321
3321
|
// FileChartColumnIncreasing aliases
|
|
3322
3322
|
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3323
3323
|
export {
|
|
3324
3324
|
/** @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 */
|
|
3325
3325
|
default as FileBarChartIcon
|
|
3326
3326
|
} from '../icons/file-chart-column-increasing';
|
|
3327
|
+
// FileChartColumn aliases
|
|
3328
|
+
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3329
|
+
export {
|
|
3330
|
+
/** @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 */
|
|
3331
|
+
default as FileBarChart2Icon
|
|
3332
|
+
} from '../icons/file-chart-column';
|
|
3327
3333
|
// FileChartLine aliases
|
|
3328
3334
|
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3329
3335
|
export {
|
|
@@ -3348,6 +3354,16 @@ export {
|
|
|
3348
3354
|
/** @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 */
|
|
3349
3355
|
default as FileCode2Icon
|
|
3350
3356
|
} from '../icons/file-code-corner';
|
|
3357
|
+
// FileHeadphone aliases
|
|
3358
|
+
export { default as FileHeadphoneIcon } from '../icons/file-headphone';
|
|
3359
|
+
export {
|
|
3360
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileHeadphone} instead. This alias will be removed in v1.0 */
|
|
3361
|
+
default as FileAudioIcon
|
|
3362
|
+
} from '../icons/file-headphone';
|
|
3363
|
+
export {
|
|
3364
|
+
/** @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 */
|
|
3365
|
+
default as FileAudio2Icon
|
|
3366
|
+
} from '../icons/file-headphone';
|
|
3351
3367
|
// FileCog aliases
|
|
3352
3368
|
export { default as FileCogIcon } from '../icons/file-cog';
|
|
3353
3369
|
export {
|
|
@@ -3362,20 +3378,10 @@ export {
|
|
|
3362
3378
|
} from '../icons/file-exclamation-point';
|
|
3363
3379
|
// FileKey aliases
|
|
3364
3380
|
export { default as FileKeyIcon } from '../icons/file-key';
|
|
3365
|
-
export {
|
|
3366
|
-
/** @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 */
|
|
3367
|
-
default as FileKey2Icon
|
|
3368
|
-
} from '../icons/file-key';
|
|
3369
|
-
// FileHeadphone aliases
|
|
3370
|
-
export { default as FileHeadphoneIcon } from '../icons/file-headphone';
|
|
3371
|
-
export {
|
|
3372
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileHeadphone} instead. This alias will be removed in v1.0 */
|
|
3373
|
-
default as FileAudioIcon
|
|
3374
|
-
} from '../icons/file-headphone';
|
|
3375
|
-
export {
|
|
3376
|
-
/** @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 */
|
|
3377
|
-
default as FileAudio2Icon
|
|
3378
|
-
} from '../icons/file-headphone';
|
|
3381
|
+
export {
|
|
3382
|
+
/** @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 */
|
|
3383
|
+
default as FileKey2Icon
|
|
3384
|
+
} from '../icons/file-key';
|
|
3379
3385
|
// FileLock aliases
|
|
3380
3386
|
export { default as FileLockIcon } from '../icons/file-lock';
|
|
3381
3387
|
export {
|
|
@@ -3400,30 +3406,30 @@ export {
|
|
|
3400
3406
|
/** @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 */
|
|
3401
3407
|
default as FileEditIcon
|
|
3402
3408
|
} from '../icons/file-pen';
|
|
3403
|
-
// FilePlay aliases
|
|
3404
|
-
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3405
|
-
export {
|
|
3406
|
-
/** @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 */
|
|
3407
|
-
default as FileVideoIcon
|
|
3408
|
-
} from '../icons/file-play';
|
|
3409
3409
|
// FilePlusCorner aliases
|
|
3410
3410
|
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3411
3411
|
export {
|
|
3412
3412
|
/** @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 */
|
|
3413
3413
|
default as FilePlus2Icon
|
|
3414
3414
|
} from '../icons/file-plus-corner';
|
|
3415
|
-
//
|
|
3416
|
-
export { default as
|
|
3415
|
+
// FilePlay aliases
|
|
3416
|
+
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3417
3417
|
export {
|
|
3418
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3419
|
-
default as
|
|
3420
|
-
} from '../icons/file-
|
|
3418
|
+
/** @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 */
|
|
3419
|
+
default as FileVideoIcon
|
|
3420
|
+
} from '../icons/file-play';
|
|
3421
3421
|
// FileQuestionMark aliases
|
|
3422
3422
|
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3423
3423
|
export {
|
|
3424
3424
|
/** @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 */
|
|
3425
3425
|
default as FileQuestionIcon
|
|
3426
3426
|
} from '../icons/file-question-mark';
|
|
3427
|
+
// FileSearchCorner aliases
|
|
3428
|
+
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3429
|
+
export {
|
|
3430
|
+
/** @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 */
|
|
3431
|
+
default as FileSearch2Icon
|
|
3432
|
+
} from '../icons/file-search-corner';
|
|
3427
3433
|
// FileSignal aliases
|
|
3428
3434
|
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3429
3435
|
export {
|
|
@@ -3436,30 +3442,30 @@ export {
|
|
|
3436
3442
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. This alias will be removed in v1.0 */
|
|
3437
3443
|
default as FileVideo2Icon
|
|
3438
3444
|
} from '../icons/file-video-camera';
|
|
3439
|
-
// FileXCorner aliases
|
|
3440
|
-
export { default as FileXCornerIcon } from '../icons/file-x-corner';
|
|
3441
|
-
export {
|
|
3442
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. This alias will be removed in v1.0 */
|
|
3443
|
-
default as FileX2Icon
|
|
3444
|
-
} from '../icons/file-x-corner';
|
|
3445
3445
|
// FileTypeCorner aliases
|
|
3446
3446
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3447
3447
|
export {
|
|
3448
3448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
3449
3449
|
default as FileType2Icon
|
|
3450
3450
|
} from '../icons/file-type-corner';
|
|
3451
|
-
//
|
|
3452
|
-
export { default as
|
|
3451
|
+
// FileXCorner aliases
|
|
3452
|
+
export { default as FileXCornerIcon } from '../icons/file-x-corner';
|
|
3453
3453
|
export {
|
|
3454
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3455
|
-
default as
|
|
3456
|
-
} from '../icons/
|
|
3454
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. This alias will be removed in v1.0 */
|
|
3455
|
+
default as FileX2Icon
|
|
3456
|
+
} from '../icons/file-x-corner';
|
|
3457
3457
|
// FolderCog aliases
|
|
3458
3458
|
export { default as FolderCogIcon } from '../icons/folder-cog';
|
|
3459
3459
|
export {
|
|
3460
3460
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
|
|
3461
3461
|
default as FolderCog2Icon
|
|
3462
3462
|
} from '../icons/folder-cog';
|
|
3463
|
+
// FingerprintPattern aliases
|
|
3464
|
+
export { default as FingerprintPatternIcon } from '../icons/fingerprint-pattern';
|
|
3465
|
+
export {
|
|
3466
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. This alias will be removed in v1.0 */
|
|
3467
|
+
default as FingerprintIcon
|
|
3468
|
+
} from '../icons/fingerprint-pattern';
|
|
3463
3469
|
// FolderPen aliases
|
|
3464
3470
|
export { default as FolderPenIcon } from '../icons/folder-pen';
|
|
3465
3471
|
export {
|
|
@@ -3542,6 +3548,12 @@ export {
|
|
|
3542
3548
|
/** @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 */
|
|
3543
3549
|
default as IceCream2Icon
|
|
3544
3550
|
} from '../icons/ice-cream-bowl';
|
|
3551
|
+
// LaptopMinimal aliases
|
|
3552
|
+
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3553
|
+
export {
|
|
3554
|
+
/** @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 */
|
|
3555
|
+
default as Laptop2Icon
|
|
3556
|
+
} from '../icons/laptop-minimal';
|
|
3545
3557
|
// IceCreamCone aliases
|
|
3546
3558
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3547
3559
|
export {
|
|
@@ -3554,12 +3566,6 @@ export {
|
|
|
3554
3566
|
/** @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 */
|
|
3555
3567
|
default as Layers3Icon
|
|
3556
3568
|
} from '../icons/layers';
|
|
3557
|
-
// LaptopMinimal aliases
|
|
3558
|
-
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3559
|
-
export {
|
|
3560
|
-
/** @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 */
|
|
3561
|
-
default as Laptop2Icon
|
|
3562
|
-
} from '../icons/laptop-minimal';
|
|
3563
3569
|
// ListIndentDecrease aliases
|
|
3564
3570
|
export { default as ListIndentDecreaseIcon } from '../icons/list-indent-decrease';
|
|
3565
3571
|
export {
|
|
@@ -3580,18 +3586,18 @@ export {
|
|
|
3580
3586
|
/** @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 */
|
|
3581
3587
|
default as IndentIncreaseIcon
|
|
3582
3588
|
} from '../icons/list-indent-increase';
|
|
3583
|
-
// LoaderCircle aliases
|
|
3584
|
-
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3585
|
-
export {
|
|
3586
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
3587
|
-
default as Loader2Icon
|
|
3588
|
-
} from '../icons/loader-circle';
|
|
3589
3589
|
// LockKeyholeOpen aliases
|
|
3590
3590
|
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3591
3591
|
export {
|
|
3592
3592
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
3593
3593
|
default as UnlockKeyholeIcon
|
|
3594
3594
|
} from '../icons/lock-keyhole-open';
|
|
3595
|
+
// LoaderCircle aliases
|
|
3596
|
+
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3597
|
+
export {
|
|
3598
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
3599
|
+
default as Loader2Icon
|
|
3600
|
+
} from '../icons/loader-circle';
|
|
3595
3601
|
// LockOpen aliases
|
|
3596
3602
|
export { default as LockOpenIcon } from '../icons/lock-open';
|
|
3597
3603
|
export {
|
|
@@ -3634,18 +3640,18 @@ export {
|
|
|
3634
3640
|
/** @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 */
|
|
3635
3641
|
default as AlertOctagonIcon
|
|
3636
3642
|
} from '../icons/octagon-alert';
|
|
3637
|
-
// OctagonPause aliases
|
|
3638
|
-
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3639
|
-
export {
|
|
3640
|
-
/** @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 */
|
|
3641
|
-
default as PauseOctagonIcon
|
|
3642
|
-
} from '../icons/octagon-pause';
|
|
3643
3643
|
// OctagonX aliases
|
|
3644
3644
|
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3645
3645
|
export {
|
|
3646
3646
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. This alias will be removed in v1.0 */
|
|
3647
3647
|
default as XOctagonIcon
|
|
3648
3648
|
} from '../icons/octagon-x';
|
|
3649
|
+
// OctagonPause aliases
|
|
3650
|
+
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3651
|
+
export {
|
|
3652
|
+
/** @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 */
|
|
3653
|
+
default as PauseOctagonIcon
|
|
3654
|
+
} from '../icons/octagon-pause';
|
|
3649
3655
|
// PaintbrushVertical aliases
|
|
3650
3656
|
export { default as PaintbrushVerticalIcon } from '../icons/paintbrush-vertical';
|
|
3651
3657
|
export {
|
|
@@ -3682,12 +3688,12 @@ export {
|
|
|
3682
3688
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
3683
3689
|
default as PanelRightInactiveIcon
|
|
3684
3690
|
} from '../icons/panel-right-dashed';
|
|
3685
|
-
//
|
|
3686
|
-
export { default as
|
|
3691
|
+
// PanelsTopLeft aliases
|
|
3692
|
+
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3687
3693
|
export {
|
|
3688
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3689
|
-
default as
|
|
3690
|
-
} from '../icons/
|
|
3694
|
+
/** @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 */
|
|
3695
|
+
default as LayoutIcon
|
|
3696
|
+
} from '../icons/panels-top-left';
|
|
3691
3697
|
// PanelLeft aliases
|
|
3692
3698
|
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3693
3699
|
export {
|
|
@@ -3700,18 +3706,18 @@ export {
|
|
|
3700
3706
|
/** @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 */
|
|
3701
3707
|
default as Edit3Icon
|
|
3702
3708
|
} from '../icons/pen-line';
|
|
3703
|
-
// PanelsTopLeft aliases
|
|
3704
|
-
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3705
|
-
export {
|
|
3706
|
-
/** @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 */
|
|
3707
|
-
default as LayoutIcon
|
|
3708
|
-
} from '../icons/panels-top-left';
|
|
3709
3709
|
// Pen aliases
|
|
3710
3710
|
export { default as PenIcon } from '../icons/pen';
|
|
3711
3711
|
export {
|
|
3712
3712
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
3713
3713
|
default as Edit2Icon
|
|
3714
3714
|
} from '../icons/pen';
|
|
3715
|
+
// PanelTopDashed aliases
|
|
3716
|
+
export { default as PanelTopDashedIcon } from '../icons/panel-top-dashed';
|
|
3717
|
+
export {
|
|
3718
|
+
/** @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 */
|
|
3719
|
+
default as PanelTopInactiveIcon
|
|
3720
|
+
} from '../icons/panel-top-dashed';
|
|
3715
3721
|
// PlugZap aliases
|
|
3716
3722
|
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3717
3723
|
export {
|
|
@@ -3802,18 +3808,18 @@ export {
|
|
|
3802
3808
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
3803
3809
|
default as ArrowDownSquareIcon
|
|
3804
3810
|
} from '../icons/square-arrow-down';
|
|
3805
|
-
// SquareArrowOutDownLeft aliases
|
|
3806
|
-
export { default as SquareArrowOutDownLeftIcon } from '../icons/square-arrow-out-down-left';
|
|
3807
|
-
export {
|
|
3808
|
-
/** @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 */
|
|
3809
|
-
default as ArrowDownLeftFromSquareIcon
|
|
3810
|
-
} from '../icons/square-arrow-out-down-left';
|
|
3811
3811
|
// SquareArrowLeft aliases
|
|
3812
3812
|
export { default as SquareArrowLeftIcon } from '../icons/square-arrow-left';
|
|
3813
3813
|
export {
|
|
3814
3814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
|
|
3815
3815
|
default as ArrowLeftSquareIcon
|
|
3816
3816
|
} from '../icons/square-arrow-left';
|
|
3817
|
+
// SquareArrowOutDownLeft aliases
|
|
3818
|
+
export { default as SquareArrowOutDownLeftIcon } from '../icons/square-arrow-out-down-left';
|
|
3819
|
+
export {
|
|
3820
|
+
/** @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 */
|
|
3821
|
+
default as ArrowDownLeftFromSquareIcon
|
|
3822
|
+
} from '../icons/square-arrow-out-down-left';
|
|
3817
3823
|
// SquareArrowOutDownRight aliases
|
|
3818
3824
|
export { default as SquareArrowOutDownRightIcon } from '../icons/square-arrow-out-down-right';
|
|
3819
3825
|
export {
|
|
@@ -3862,12 +3868,6 @@ export {
|
|
|
3862
3868
|
/** @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 */
|
|
3863
3869
|
default as ScissorsSquareDashedBottomIcon
|
|
3864
3870
|
} from '../icons/square-bottom-dashed-scissors';
|
|
3865
|
-
// SquareAsterisk aliases
|
|
3866
|
-
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3867
|
-
export {
|
|
3868
|
-
/** @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 */
|
|
3869
|
-
default as AsteriskSquareIcon
|
|
3870
|
-
} from '../icons/square-asterisk';
|
|
3871
3871
|
// SquareChartGantt aliases
|
|
3872
3872
|
export { default as SquareChartGanttIcon } from '../icons/square-chart-gantt';
|
|
3873
3873
|
export {
|
|
@@ -3878,24 +3878,30 @@ export {
|
|
|
3878
3878
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
3879
3879
|
default as SquareGanttChartIcon
|
|
3880
3880
|
} from '../icons/square-chart-gantt';
|
|
3881
|
+
// SquareAsterisk aliases
|
|
3882
|
+
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3883
|
+
export {
|
|
3884
|
+
/** @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 */
|
|
3885
|
+
default as AsteriskSquareIcon
|
|
3886
|
+
} from '../icons/square-asterisk';
|
|
3881
3887
|
// SquareCheckBig aliases
|
|
3882
3888
|
export { default as SquareCheckBigIcon } from '../icons/square-check-big';
|
|
3883
3889
|
export {
|
|
3884
3890
|
/** @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 */
|
|
3885
3891
|
default as CheckSquareIcon
|
|
3886
3892
|
} from '../icons/square-check-big';
|
|
3887
|
-
// SquareCheck aliases
|
|
3888
|
-
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3889
|
-
export {
|
|
3890
|
-
/** @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 */
|
|
3891
|
-
default as CheckSquare2Icon
|
|
3892
|
-
} from '../icons/square-check';
|
|
3893
3893
|
// SquareChevronDown aliases
|
|
3894
3894
|
export { default as SquareChevronDownIcon } from '../icons/square-chevron-down';
|
|
3895
3895
|
export {
|
|
3896
3896
|
/** @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 */
|
|
3897
3897
|
default as ChevronDownSquareIcon
|
|
3898
3898
|
} from '../icons/square-chevron-down';
|
|
3899
|
+
// SquareCheck aliases
|
|
3900
|
+
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3901
|
+
export {
|
|
3902
|
+
/** @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 */
|
|
3903
|
+
default as CheckSquare2Icon
|
|
3904
|
+
} from '../icons/square-check';
|
|
3899
3905
|
// SquareChevronLeft aliases
|
|
3900
3906
|
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
3901
3907
|
export {
|
|
@@ -3932,18 +3938,18 @@ export {
|
|
|
3932
3938
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
3933
3939
|
default as MousePointerSquareDashedIcon
|
|
3934
3940
|
} from '../icons/square-dashed-mouse-pointer';
|
|
3935
|
-
// SquareDivide aliases
|
|
3936
|
-
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
3937
|
-
export {
|
|
3938
|
-
/** @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 */
|
|
3939
|
-
default as DivideSquareIcon
|
|
3940
|
-
} from '../icons/square-divide';
|
|
3941
3941
|
// SquareDashed aliases
|
|
3942
3942
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
3943
3943
|
export {
|
|
3944
3944
|
/** @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 */
|
|
3945
3945
|
default as BoxSelectIcon
|
|
3946
3946
|
} from '../icons/square-dashed';
|
|
3947
|
+
// SquareDivide aliases
|
|
3948
|
+
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
3949
|
+
export {
|
|
3950
|
+
/** @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 */
|
|
3951
|
+
default as DivideSquareIcon
|
|
3952
|
+
} from '../icons/square-divide';
|
|
3947
3953
|
// SquareDot aliases
|
|
3948
3954
|
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
3949
3955
|
export {
|
|
@@ -3974,30 +3980,30 @@ export {
|
|
|
3974
3980
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
3975
3981
|
default as MSquareIcon
|
|
3976
3982
|
} from '../icons/square-m';
|
|
3977
|
-
// SquareMenu aliases
|
|
3978
|
-
export { default as SquareMenuIcon } from '../icons/square-menu';
|
|
3979
|
-
export {
|
|
3980
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
3981
|
-
default as MenuSquareIcon
|
|
3982
|
-
} from '../icons/square-menu';
|
|
3983
3983
|
// SquareKanban aliases
|
|
3984
3984
|
export { default as SquareKanbanIcon } from '../icons/square-kanban';
|
|
3985
3985
|
export {
|
|
3986
3986
|
/** @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 */
|
|
3987
3987
|
default as KanbanSquareIcon
|
|
3988
3988
|
} from '../icons/square-kanban';
|
|
3989
|
-
//
|
|
3990
|
-
export { default as
|
|
3989
|
+
// SquareMenu aliases
|
|
3990
|
+
export { default as SquareMenuIcon } from '../icons/square-menu';
|
|
3991
3991
|
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-
|
|
3992
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
3993
|
+
default as MenuSquareIcon
|
|
3994
|
+
} from '../icons/square-menu';
|
|
3995
3995
|
// SquareMinus aliases
|
|
3996
3996
|
export { default as SquareMinusIcon } from '../icons/square-minus';
|
|
3997
3997
|
export {
|
|
3998
3998
|
/** @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 */
|
|
3999
3999
|
default as MinusSquareIcon
|
|
4000
4000
|
} from '../icons/square-minus';
|
|
4001
|
+
// SquareMousePointer aliases
|
|
4002
|
+
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4003
|
+
export {
|
|
4004
|
+
/** @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 */
|
|
4005
|
+
default as InspectIcon
|
|
4006
|
+
} from '../icons/square-mouse-pointer';
|
|
4001
4007
|
// SquareParkingOff aliases
|
|
4002
4008
|
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
4003
4009
|
export {
|
|
@@ -4036,12 +4042,6 @@ export {
|
|
|
4036
4042
|
/** @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 */
|
|
4037
4043
|
default as PiSquareIcon
|
|
4038
4044
|
} from '../icons/square-pi';
|
|
4039
|
-
// SquarePilcrow aliases
|
|
4040
|
-
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4041
|
-
export {
|
|
4042
|
-
/** @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 */
|
|
4043
|
-
default as PilcrowSquareIcon
|
|
4044
|
-
} from '../icons/square-pilcrow';
|
|
4045
4045
|
// SquarePlay aliases
|
|
4046
4046
|
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4047
4047
|
export {
|
|
@@ -4060,30 +4060,30 @@ export {
|
|
|
4060
4060
|
/** @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 */
|
|
4061
4061
|
default as PowerSquareIcon
|
|
4062
4062
|
} from '../icons/square-power';
|
|
4063
|
-
//
|
|
4064
|
-
export { default as
|
|
4063
|
+
// SquarePilcrow aliases
|
|
4064
|
+
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4065
4065
|
export {
|
|
4066
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4067
|
-
default as
|
|
4068
|
-
} from '../icons/square-
|
|
4066
|
+
/** @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 */
|
|
4067
|
+
default as PilcrowSquareIcon
|
|
4068
|
+
} from '../icons/square-pilcrow';
|
|
4069
4069
|
// SquareScissors aliases
|
|
4070
4070
|
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4071
4071
|
export {
|
|
4072
4072
|
/** @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 */
|
|
4073
4073
|
default as ScissorsSquareIcon
|
|
4074
4074
|
} from '../icons/square-scissors';
|
|
4075
|
+
// SquareSigma aliases
|
|
4076
|
+
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4077
|
+
export {
|
|
4078
|
+
/** @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 */
|
|
4079
|
+
default as SigmaSquareIcon
|
|
4080
|
+
} from '../icons/square-sigma';
|
|
4075
4081
|
// SquareSlash aliases
|
|
4076
4082
|
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
4077
4083
|
export {
|
|
4078
4084
|
/** @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 */
|
|
4079
4085
|
default as SlashSquareIcon
|
|
4080
4086
|
} from '../icons/square-slash';
|
|
4081
|
-
// SquareTerminal aliases
|
|
4082
|
-
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4083
|
-
export {
|
|
4084
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
4085
|
-
default as TerminalSquareIcon
|
|
4086
|
-
} from '../icons/square-terminal';
|
|
4087
4087
|
// SquareSplitHorizontal aliases
|
|
4088
4088
|
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4089
4089
|
export {
|
|
@@ -4108,6 +4108,12 @@ export {
|
|
|
4108
4108
|
/** @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 */
|
|
4109
4109
|
default as UserSquareIcon
|
|
4110
4110
|
} from '../icons/square-user';
|
|
4111
|
+
// SquareTerminal aliases
|
|
4112
|
+
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4113
|
+
export {
|
|
4114
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
4115
|
+
default as TerminalSquareIcon
|
|
4116
|
+
} from '../icons/square-terminal';
|
|
4111
4117
|
// SquareX aliases
|
|
4112
4118
|
export { default as SquareXIcon } from '../icons/square-x';
|
|
4113
4119
|
export {
|
|
@@ -4120,18 +4126,18 @@ export {
|
|
|
4120
4126
|
/** @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 */
|
|
4121
4127
|
default as TestTube2Icon
|
|
4122
4128
|
} from '../icons/test-tube-diagonal';
|
|
4123
|
-
// TextAlignEnd aliases
|
|
4124
|
-
export { default as TextAlignEndIcon } from '../icons/text-align-end';
|
|
4125
|
-
export {
|
|
4126
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
4127
|
-
default as AlignRightIcon
|
|
4128
|
-
} from '../icons/text-align-end';
|
|
4129
4129
|
// TextAlignCenter aliases
|
|
4130
4130
|
export { default as TextAlignCenterIcon } from '../icons/text-align-center';
|
|
4131
4131
|
export {
|
|
4132
4132
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. This alias will be removed in v1.0 */
|
|
4133
4133
|
default as AlignCenterIcon
|
|
4134
4134
|
} from '../icons/text-align-center';
|
|
4135
|
+
// TextAlignEnd aliases
|
|
4136
|
+
export { default as TextAlignEndIcon } from '../icons/text-align-end';
|
|
4137
|
+
export {
|
|
4138
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
4139
|
+
default as AlignRightIcon
|
|
4140
|
+
} from '../icons/text-align-end';
|
|
4135
4141
|
// TextAlignJustify aliases
|
|
4136
4142
|
export { default as TextAlignJustifyIcon } from '../icons/text-align-justify';
|
|
4137
4143
|
export {
|
|
@@ -4172,30 +4178,30 @@ export {
|
|
|
4172
4178
|
/** @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 */
|
|
4173
4179
|
default as TrainIcon
|
|
4174
4180
|
} from '../icons/tram-front';
|
|
4175
|
-
// TriangleAlert aliases
|
|
4176
|
-
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4177
|
-
export {
|
|
4178
|
-
/** @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 */
|
|
4179
|
-
default as AlertTriangleIcon
|
|
4180
|
-
} from '../icons/triangle-alert';
|
|
4181
4181
|
// TreePalm aliases
|
|
4182
4182
|
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4183
4183
|
export {
|
|
4184
4184
|
/** @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 */
|
|
4185
4185
|
default as PalmtreeIcon
|
|
4186
4186
|
} from '../icons/tree-palm';
|
|
4187
|
-
//
|
|
4188
|
-
export { default as
|
|
4187
|
+
// TriangleAlert aliases
|
|
4188
|
+
export { default as TriangleAlertIcon } from '../icons/triangle-alert';
|
|
4189
4189
|
export {
|
|
4190
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4191
|
-
default as
|
|
4192
|
-
} from '../icons/
|
|
4190
|
+
/** @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 */
|
|
4191
|
+
default as AlertTriangleIcon
|
|
4192
|
+
} from '../icons/triangle-alert';
|
|
4193
4193
|
// TvMinimal aliases
|
|
4194
4194
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
4195
4195
|
export {
|
|
4196
4196
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|
|
4197
4197
|
default as Tv2Icon
|
|
4198
4198
|
} from '../icons/tv-minimal';
|
|
4199
|
+
// University aliases
|
|
4200
|
+
export { default as UniversityIcon } from '../icons/university';
|
|
4201
|
+
export {
|
|
4202
|
+
/** @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 */
|
|
4203
|
+
default as School2Icon
|
|
4204
|
+
} from '../icons/university';
|
|
4199
4205
|
// UserRoundCheck aliases
|
|
4200
4206
|
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4201
4207
|
export {
|
|
@@ -4232,18 +4238,18 @@ export {
|
|
|
4232
4238
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
4233
4239
|
default as User2Icon
|
|
4234
4240
|
} from '../icons/user-round';
|
|
4235
|
-
// UsersRound aliases
|
|
4236
|
-
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
4237
|
-
export {
|
|
4238
|
-
/** @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 */
|
|
4239
|
-
default as Users2Icon
|
|
4240
|
-
} from '../icons/users-round';
|
|
4241
4241
|
// UtensilsCrossed aliases
|
|
4242
4242
|
export { default as UtensilsCrossedIcon } from '../icons/utensils-crossed';
|
|
4243
4243
|
export {
|
|
4244
4244
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. This alias will be removed in v1.0 */
|
|
4245
4245
|
default as ForkKnifeCrossedIcon
|
|
4246
4246
|
} from '../icons/utensils-crossed';
|
|
4247
|
+
// UsersRound aliases
|
|
4248
|
+
export { default as UsersRoundIcon } from '../icons/users-round';
|
|
4249
|
+
export {
|
|
4250
|
+
/** @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 */
|
|
4251
|
+
default as Users2Icon
|
|
4252
|
+
} from '../icons/users-round';
|
|
4247
4253
|
// Utensils aliases
|
|
4248
4254
|
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4249
4255
|
export {
|