@lucide/astro 0.561.0 → 0.563.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +2 -2
- package/README.md +11 -2
- package/package.json +6 -4
- package/src/Icon.astro +3 -0
- package/src/aliases/aliases.ts +144 -144
- package/src/aliases/prefixed.ts +674 -668
- package/src/aliases/suffixed.ts +1064 -1058
- package/src/createLucideIcon.ts +2 -1
- package/src/icons/bookmark-check.ts +2 -2
- package/src/icons/bookmark-minus.ts +2 -2
- package/src/icons/bookmark-plus.ts +2 -2
- package/src/icons/bookmark-x.ts +2 -2
- package/src/icons/bookmark.ts +2 -2
- package/src/icons/cloud-off.ts +2 -2
- package/src/icons/cloudy.ts +2 -2
- package/src/icons/globe-x.ts +18 -0
- package/src/icons/index.ts +95 -92
- package/src/icons/lasso.ts +2 -2
- package/src/icons/message-square-dashed.ts +2 -2
- package/src/icons/monitor-off.ts +2 -2
- package/src/icons/paint-bucket.ts +2 -2
- package/src/icons/printer-x.ts +18 -0
- package/src/icons/star-off.ts +2 -2
- package/src/icons/tickets-plane.ts +2 -2
- package/src/icons/toolbox.ts +18 -0
- package/src/icons/waypoints.ts +2 -2
- package/src/types.ts +1 -0
- package/src/utils/hasA11yProp.ts +15 -0
- package/src/{utils.ts → utils/mergeClasses.ts} +1 -12
- package/src/utils/toKebabCase.ts +8 -0
package/src/aliases/suffixed.ts
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
// AArrowDown aliases
|
|
2
2
|
export { default as AArrowDownIcon } from '../icons/a-arrow-down';
|
|
3
|
-
// Accessibility aliases
|
|
4
|
-
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
5
|
-
// AArrowUp aliases
|
|
6
|
-
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
7
3
|
// Activity aliases
|
|
8
4
|
export { default as ActivityIcon } from '../icons/activity';
|
|
5
|
+
// Accessibility aliases
|
|
6
|
+
export { default as AccessibilityIcon } from '../icons/accessibility';
|
|
9
7
|
// AirVent aliases
|
|
10
8
|
export { default as AirVentIcon } from '../icons/air-vent';
|
|
11
9
|
// Airplay aliases
|
|
@@ -22,34 +20,36 @@ export { default as AlbumIcon } from '../icons/album';
|
|
|
22
20
|
export { default as AlignCenterHorizontalIcon } from '../icons/align-center-horizontal';
|
|
23
21
|
// AlignCenterVertical aliases
|
|
24
22
|
export { default as AlignCenterVerticalIcon } from '../icons/align-center-vertical';
|
|
25
|
-
// AlignEndHorizontal aliases
|
|
26
|
-
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
27
23
|
// AlignEndVertical aliases
|
|
28
24
|
export { default as AlignEndVerticalIcon } from '../icons/align-end-vertical';
|
|
29
|
-
//
|
|
30
|
-
export { default as
|
|
25
|
+
// AlignEndHorizontal aliases
|
|
26
|
+
export { default as AlignEndHorizontalIcon } from '../icons/align-end-horizontal';
|
|
31
27
|
// AlignHorizontalDistributeCenter aliases
|
|
32
28
|
export { default as AlignHorizontalDistributeCenterIcon } from '../icons/align-horizontal-distribute-center';
|
|
33
|
-
//
|
|
34
|
-
export { default as
|
|
29
|
+
// AlignHorizontalDistributeEnd aliases
|
|
30
|
+
export { default as AlignHorizontalDistributeEndIcon } from '../icons/align-horizontal-distribute-end';
|
|
35
31
|
// AlignHorizontalDistributeStart aliases
|
|
36
32
|
export { default as AlignHorizontalDistributeStartIcon } from '../icons/align-horizontal-distribute-start';
|
|
37
33
|
// AlignHorizontalJustifyEnd aliases
|
|
38
34
|
export { default as AlignHorizontalJustifyEndIcon } from '../icons/align-horizontal-justify-end';
|
|
39
|
-
//
|
|
40
|
-
export { default as
|
|
35
|
+
// AlignHorizontalJustifyCenter aliases
|
|
36
|
+
export { default as AlignHorizontalJustifyCenterIcon } from '../icons/align-horizontal-justify-center';
|
|
41
37
|
// AlignHorizontalSpaceAround aliases
|
|
42
38
|
export { default as AlignHorizontalSpaceAroundIcon } from '../icons/align-horizontal-space-around';
|
|
39
|
+
// AlignHorizontalJustifyStart aliases
|
|
40
|
+
export { default as AlignHorizontalJustifyStartIcon } from '../icons/align-horizontal-justify-start';
|
|
43
41
|
// AlignHorizontalSpaceBetween aliases
|
|
44
42
|
export { default as AlignHorizontalSpaceBetweenIcon } from '../icons/align-horizontal-space-between';
|
|
45
43
|
// AlignStartHorizontal aliases
|
|
46
44
|
export { default as AlignStartHorizontalIcon } from '../icons/align-start-horizontal';
|
|
47
45
|
// AlignStartVertical aliases
|
|
48
46
|
export { default as AlignStartVerticalIcon } from '../icons/align-start-vertical';
|
|
49
|
-
// AlignVerticalDistributeEnd aliases
|
|
50
|
-
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
51
47
|
// AlignVerticalDistributeCenter aliases
|
|
52
48
|
export { default as AlignVerticalDistributeCenterIcon } from '../icons/align-vertical-distribute-center';
|
|
49
|
+
// AlignVerticalDistributeEnd aliases
|
|
50
|
+
export { default as AlignVerticalDistributeEndIcon } from '../icons/align-vertical-distribute-end';
|
|
51
|
+
// AlignVerticalJustifyCenter aliases
|
|
52
|
+
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
53
53
|
// AlignVerticalDistributeStart aliases
|
|
54
54
|
export { default as AlignVerticalDistributeStartIcon } from '../icons/align-vertical-distribute-start';
|
|
55
55
|
// AlignVerticalJustifyEnd aliases
|
|
@@ -58,38 +58,36 @@ export { default as AlignVerticalJustifyEndIcon } from '../icons/align-vertical-
|
|
|
58
58
|
export { default as AlignVerticalJustifyStartIcon } from '../icons/align-vertical-justify-start';
|
|
59
59
|
// AlignVerticalSpaceAround aliases
|
|
60
60
|
export { default as AlignVerticalSpaceAroundIcon } from '../icons/align-vertical-space-around';
|
|
61
|
-
// AlignVerticalJustifyCenter aliases
|
|
62
|
-
export { default as AlignVerticalJustifyCenterIcon } from '../icons/align-vertical-justify-center';
|
|
63
61
|
// AlignVerticalSpaceBetween aliases
|
|
64
62
|
export { default as AlignVerticalSpaceBetweenIcon } from '../icons/align-vertical-space-between';
|
|
65
|
-
// Ambulance aliases
|
|
66
|
-
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
67
|
-
// Ampersands aliases
|
|
68
|
-
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
69
63
|
// Ampersand aliases
|
|
70
64
|
export { default as AmpersandIcon } from '../icons/ampersand';
|
|
65
|
+
// Ampersands aliases
|
|
66
|
+
export { default as AmpersandsIcon } from '../icons/ampersands';
|
|
71
67
|
// Amphora aliases
|
|
72
68
|
export { default as AmphoraIcon } from '../icons/amphora';
|
|
73
|
-
//
|
|
74
|
-
export { default as
|
|
69
|
+
// Ambulance aliases
|
|
70
|
+
export { default as AmbulanceIcon } from '../icons/ambulance';
|
|
75
71
|
// Angry aliases
|
|
76
72
|
export { default as AngryIcon } from '../icons/angry';
|
|
77
|
-
//
|
|
78
|
-
export { default as
|
|
73
|
+
// Anchor aliases
|
|
74
|
+
export { default as AnchorIcon } from '../icons/anchor';
|
|
79
75
|
// Annoyed aliases
|
|
80
76
|
export { default as AnnoyedIcon } from '../icons/annoyed';
|
|
81
|
-
//
|
|
82
|
-
export { default as
|
|
77
|
+
// Antenna aliases
|
|
78
|
+
export { default as AntennaIcon } from '../icons/antenna';
|
|
83
79
|
// Aperture aliases
|
|
84
80
|
export { default as ApertureIcon } from '../icons/aperture';
|
|
81
|
+
// Anvil aliases
|
|
82
|
+
export { default as AnvilIcon } from '../icons/anvil';
|
|
85
83
|
// AppWindowMac aliases
|
|
86
84
|
export { default as AppWindowMacIcon } from '../icons/app-window-mac';
|
|
87
85
|
// AppWindow aliases
|
|
88
86
|
export { default as AppWindowIcon } from '../icons/app-window';
|
|
89
|
-
// ArchiveRestore aliases
|
|
90
|
-
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
91
87
|
// Apple aliases
|
|
92
88
|
export { default as AppleIcon } from '../icons/apple';
|
|
89
|
+
// ArchiveRestore aliases
|
|
90
|
+
export { default as ArchiveRestoreIcon } from '../icons/archive-restore';
|
|
93
91
|
// ArchiveX aliases
|
|
94
92
|
export { default as ArchiveXIcon } from '../icons/archive-x';
|
|
95
93
|
// Archive aliases
|
|
@@ -102,48 +100,48 @@ export { default as ArrowBigDownDashIcon } from '../icons/arrow-big-down-dash';
|
|
|
102
100
|
export { default as ArrowBigDownIcon } from '../icons/arrow-big-down';
|
|
103
101
|
// ArrowBigLeftDash aliases
|
|
104
102
|
export { default as ArrowBigLeftDashIcon } from '../icons/arrow-big-left-dash';
|
|
105
|
-
// ArrowBigRightDash aliases
|
|
106
|
-
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
107
103
|
// ArrowBigLeft aliases
|
|
108
104
|
export { default as ArrowBigLeftIcon } from '../icons/arrow-big-left';
|
|
105
|
+
// ArrowBigRightDash aliases
|
|
106
|
+
export { default as ArrowBigRightDashIcon } from '../icons/arrow-big-right-dash';
|
|
107
|
+
// ArrowBigRight aliases
|
|
108
|
+
export { default as ArrowBigRightIcon } from '../icons/arrow-big-right';
|
|
109
109
|
// ArrowBigUpDash aliases
|
|
110
110
|
export { default as ArrowBigUpDashIcon } from '../icons/arrow-big-up-dash';
|
|
111
|
-
// ArrowBigUp aliases
|
|
112
|
-
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
113
111
|
// ArrowDownFromLine aliases
|
|
114
112
|
export { default as ArrowDownFromLineIcon } from '../icons/arrow-down-from-line';
|
|
115
|
-
//
|
|
116
|
-
export { default as
|
|
117
|
-
// ArrowDownNarrowWide aliases
|
|
118
|
-
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
113
|
+
// ArrowBigUp aliases
|
|
114
|
+
export { default as ArrowBigUpIcon } from '../icons/arrow-big-up';
|
|
119
115
|
// ArrowDownLeft aliases
|
|
120
116
|
export { default as ArrowDownLeftIcon } from '../icons/arrow-down-left';
|
|
117
|
+
// ArrowDownNarrowWide aliases
|
|
118
|
+
export { default as ArrowDownNarrowWideIcon } from '../icons/arrow-down-narrow-wide';
|
|
121
119
|
// ArrowDownRight aliases
|
|
122
120
|
export { default as ArrowDownRightIcon } from '../icons/arrow-down-right';
|
|
123
|
-
// ArrowDownToLine aliases
|
|
124
|
-
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
125
121
|
// ArrowDownToDot aliases
|
|
126
122
|
export { default as ArrowDownToDotIcon } from '../icons/arrow-down-to-dot';
|
|
127
|
-
//
|
|
128
|
-
export { default as
|
|
129
|
-
// ArrowDownUp aliases
|
|
130
|
-
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
123
|
+
// ArrowDownToLine aliases
|
|
124
|
+
export { default as ArrowDownToLineIcon } from '../icons/arrow-down-to-line';
|
|
131
125
|
// ArrowDown aliases
|
|
132
126
|
export { default as ArrowDownIcon } from '../icons/arrow-down';
|
|
133
127
|
// ArrowLeftFromLine aliases
|
|
134
128
|
export { default as ArrowLeftFromLineIcon } from '../icons/arrow-left-from-line';
|
|
129
|
+
// ArrowDownUp aliases
|
|
130
|
+
export { default as ArrowDownUpIcon } from '../icons/arrow-down-up';
|
|
131
|
+
// ArrowLeftRight aliases
|
|
132
|
+
export { default as ArrowLeftRightIcon } from '../icons/arrow-left-right';
|
|
135
133
|
// ArrowLeftToLine aliases
|
|
136
134
|
export { default as ArrowLeftToLineIcon } from '../icons/arrow-left-to-line';
|
|
137
135
|
// ArrowLeft aliases
|
|
138
136
|
export { default as ArrowLeftIcon } from '../icons/arrow-left';
|
|
139
137
|
// ArrowRightFromLine aliases
|
|
140
138
|
export { default as ArrowRightFromLineIcon } from '../icons/arrow-right-from-line';
|
|
141
|
-
// ArrowRightToLine aliases
|
|
142
|
-
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
143
139
|
// ArrowRightLeft aliases
|
|
144
140
|
export { default as ArrowRightLeftIcon } from '../icons/arrow-right-left';
|
|
145
141
|
// ArrowRight aliases
|
|
146
142
|
export { default as ArrowRightIcon } from '../icons/arrow-right';
|
|
143
|
+
// ArrowRightToLine aliases
|
|
144
|
+
export { default as ArrowRightToLineIcon } from '../icons/arrow-right-to-line';
|
|
147
145
|
// ArrowUpDown aliases
|
|
148
146
|
export { default as ArrowUpDownIcon } from '../icons/arrow-up-down';
|
|
149
147
|
// ArrowUpFromDot aliases
|
|
@@ -154,26 +152,28 @@ export { default as ArrowUpFromLineIcon } from '../icons/arrow-up-from-line';
|
|
|
154
152
|
export { default as ArrowUpLeftIcon } from '../icons/arrow-up-left';
|
|
155
153
|
// ArrowUpRight aliases
|
|
156
154
|
export { default as ArrowUpRightIcon } from '../icons/arrow-up-right';
|
|
157
|
-
// ArrowUpWideNarrow aliases
|
|
158
|
-
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
159
|
-
// ArrowsUpFromLine aliases
|
|
160
|
-
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
161
155
|
// ArrowUpToLine aliases
|
|
162
156
|
export { default as ArrowUpToLineIcon } from '../icons/arrow-up-to-line';
|
|
157
|
+
// ArrowUpWideNarrow aliases
|
|
158
|
+
export { default as ArrowUpWideNarrowIcon } from '../icons/arrow-up-wide-narrow';
|
|
163
159
|
// ArrowUp aliases
|
|
164
160
|
export { default as ArrowUpIcon } from '../icons/arrow-up';
|
|
165
|
-
//
|
|
166
|
-
export { default as
|
|
161
|
+
// ArrowsUpFromLine aliases
|
|
162
|
+
export { default as ArrowsUpFromLineIcon } from '../icons/arrows-up-from-line';
|
|
167
163
|
// Asterisk aliases
|
|
168
164
|
export { default as AsteriskIcon } from '../icons/asterisk';
|
|
169
165
|
// Atom aliases
|
|
170
166
|
export { default as AtomIcon } from '../icons/atom';
|
|
171
|
-
//
|
|
172
|
-
export { default as
|
|
173
|
-
// AudioLines aliases
|
|
174
|
-
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
167
|
+
// AtSign aliases
|
|
168
|
+
export { default as AtSignIcon } from '../icons/at-sign';
|
|
175
169
|
// Award aliases
|
|
176
170
|
export { default as AwardIcon } from '../icons/award';
|
|
171
|
+
// AudioLines aliases
|
|
172
|
+
export { default as AudioLinesIcon } from '../icons/audio-lines';
|
|
173
|
+
// AudioWaveform aliases
|
|
174
|
+
export { default as AudioWaveformIcon } from '../icons/audio-waveform';
|
|
175
|
+
// Axe aliases
|
|
176
|
+
export { default as AxeIcon } from '../icons/axe';
|
|
177
177
|
// Baby aliases
|
|
178
178
|
export { default as BabyIcon } from '../icons/baby';
|
|
179
179
|
// BadgeAlert aliases
|
|
@@ -184,150 +184,146 @@ export { default as BackpackIcon } from '../icons/backpack';
|
|
|
184
184
|
export { default as BadgeCentIcon } from '../icons/badge-cent';
|
|
185
185
|
// BadgeDollarSign aliases
|
|
186
186
|
export { default as BadgeDollarSignIcon } from '../icons/badge-dollar-sign';
|
|
187
|
-
// Axe aliases
|
|
188
|
-
export { default as AxeIcon } from '../icons/axe';
|
|
189
187
|
// BadgeEuro aliases
|
|
190
188
|
export { default as BadgeEuroIcon } from '../icons/badge-euro';
|
|
191
|
-
// BadgeJapaneseYen aliases
|
|
192
|
-
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
193
189
|
// BadgeIndianRupee aliases
|
|
194
190
|
export { default as BadgeIndianRupeeIcon } from '../icons/badge-indian-rupee';
|
|
195
191
|
// BadgeInfo aliases
|
|
196
192
|
export { default as BadgeInfoIcon } from '../icons/badge-info';
|
|
193
|
+
// BadgeJapaneseYen aliases
|
|
194
|
+
export { default as BadgeJapaneseYenIcon } from '../icons/badge-japanese-yen';
|
|
197
195
|
// BadgeMinus aliases
|
|
198
196
|
export { default as BadgeMinusIcon } from '../icons/badge-minus';
|
|
199
|
-
// BadgePoundSterling aliases
|
|
200
|
-
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
201
197
|
// BadgePercent aliases
|
|
202
198
|
export { default as BadgePercentIcon } from '../icons/badge-percent';
|
|
203
199
|
// BadgePlus aliases
|
|
204
200
|
export { default as BadgePlusIcon } from '../icons/badge-plus';
|
|
205
|
-
//
|
|
206
|
-
export { default as
|
|
201
|
+
// BadgePoundSterling aliases
|
|
202
|
+
export { default as BadgePoundSterlingIcon } from '../icons/badge-pound-sterling';
|
|
207
203
|
// BadgeRussianRuble aliases
|
|
208
204
|
export { default as BadgeRussianRubleIcon } from '../icons/badge-russian-ruble';
|
|
205
|
+
// BadgeSwissFranc aliases
|
|
206
|
+
export { default as BadgeSwissFrancIcon } from '../icons/badge-swiss-franc';
|
|
209
207
|
// BadgeTurkishLira aliases
|
|
210
208
|
export { default as BadgeTurkishLiraIcon } from '../icons/badge-turkish-lira';
|
|
211
209
|
// BadgeX aliases
|
|
212
210
|
export { default as BadgeXIcon } from '../icons/badge-x';
|
|
213
211
|
// Badge aliases
|
|
214
212
|
export { default as BadgeIcon } from '../icons/badge';
|
|
215
|
-
// BaggageClaim aliases
|
|
216
|
-
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
217
213
|
// Balloon aliases
|
|
218
214
|
export { default as BalloonIcon } from '../icons/balloon';
|
|
215
|
+
// BaggageClaim aliases
|
|
216
|
+
export { default as BaggageClaimIcon } from '../icons/baggage-claim';
|
|
219
217
|
// Banana aliases
|
|
220
218
|
export { default as BananaIcon } from '../icons/banana';
|
|
221
219
|
// Bandage aliases
|
|
222
220
|
export { default as BandageIcon } from '../icons/bandage';
|
|
223
221
|
// Ban aliases
|
|
224
222
|
export { default as BanIcon } from '../icons/ban';
|
|
225
|
-
// BanknoteArrowUp aliases
|
|
226
|
-
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
227
223
|
// BanknoteArrowDown aliases
|
|
228
224
|
export { default as BanknoteArrowDownIcon } from '../icons/banknote-arrow-down';
|
|
225
|
+
// BanknoteArrowUp aliases
|
|
226
|
+
export { default as BanknoteArrowUpIcon } from '../icons/banknote-arrow-up';
|
|
229
227
|
// BanknoteX aliases
|
|
230
228
|
export { default as BanknoteXIcon } from '../icons/banknote-x';
|
|
231
229
|
// Banknote aliases
|
|
232
230
|
export { default as BanknoteIcon } from '../icons/banknote';
|
|
233
|
-
// Barrel aliases
|
|
234
|
-
export { default as BarrelIcon } from '../icons/barrel';
|
|
235
231
|
// Barcode aliases
|
|
236
232
|
export { default as BarcodeIcon } from '../icons/barcode';
|
|
237
|
-
//
|
|
238
|
-
export { default as
|
|
233
|
+
// Barrel aliases
|
|
234
|
+
export { default as BarrelIcon } from '../icons/barrel';
|
|
239
235
|
// Baseline aliases
|
|
240
236
|
export { default as BaselineIcon } from '../icons/baseline';
|
|
241
|
-
//
|
|
242
|
-
export { default as
|
|
237
|
+
// Bath aliases
|
|
238
|
+
export { default as BathIcon } from '../icons/bath';
|
|
243
239
|
// BatteryCharging aliases
|
|
244
240
|
export { default as BatteryChargingIcon } from '../icons/battery-charging';
|
|
241
|
+
// BatteryFull aliases
|
|
242
|
+
export { default as BatteryFullIcon } from '../icons/battery-full';
|
|
243
|
+
// BatteryMedium aliases
|
|
244
|
+
export { default as BatteryMediumIcon } from '../icons/battery-medium';
|
|
245
245
|
// BatteryLow aliases
|
|
246
246
|
export { default as BatteryLowIcon } from '../icons/battery-low';
|
|
247
|
-
// BatteryWarning aliases
|
|
248
|
-
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
249
247
|
// BatteryPlus aliases
|
|
250
248
|
export { default as BatteryPlusIcon } from '../icons/battery-plus';
|
|
251
|
-
//
|
|
252
|
-
export { default as
|
|
249
|
+
// BatteryWarning aliases
|
|
250
|
+
export { default as BatteryWarningIcon } from '../icons/battery-warning';
|
|
253
251
|
// Battery aliases
|
|
254
252
|
export { default as BatteryIcon } from '../icons/battery';
|
|
255
253
|
// Beaker aliases
|
|
256
254
|
export { default as BeakerIcon } from '../icons/beaker';
|
|
257
255
|
// Bean aliases
|
|
258
256
|
export { default as BeanIcon } from '../icons/bean';
|
|
259
|
-
// BeanOff aliases
|
|
260
|
-
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
261
257
|
// BedDouble aliases
|
|
262
258
|
export { default as BedDoubleIcon } from '../icons/bed-double';
|
|
259
|
+
// BeanOff aliases
|
|
260
|
+
export { default as BeanOffIcon } from '../icons/bean-off';
|
|
263
261
|
// BedSingle aliases
|
|
264
262
|
export { default as BedSingleIcon } from '../icons/bed-single';
|
|
265
|
-
// Beef aliases
|
|
266
|
-
export { default as BeefIcon } from '../icons/beef';
|
|
267
263
|
// Bed aliases
|
|
268
264
|
export { default as BedIcon } from '../icons/bed';
|
|
265
|
+
// Beef aliases
|
|
266
|
+
export { default as BeefIcon } from '../icons/beef';
|
|
269
267
|
// BeerOff aliases
|
|
270
268
|
export { default as BeerOffIcon } from '../icons/beer-off';
|
|
271
269
|
// Beer aliases
|
|
272
270
|
export { default as BeerIcon } from '../icons/beer';
|
|
273
271
|
// BellDot aliases
|
|
274
272
|
export { default as BellDotIcon } from '../icons/bell-dot';
|
|
275
|
-
// BellElectric aliases
|
|
276
|
-
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
277
273
|
// BellMinus aliases
|
|
278
274
|
export { default as BellMinusIcon } from '../icons/bell-minus';
|
|
279
|
-
// ALargeSmall aliases
|
|
280
|
-
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
281
|
-
// BellOff aliases
|
|
282
|
-
export { default as BellOffIcon } from '../icons/bell-off';
|
|
283
275
|
// BellPlus aliases
|
|
284
276
|
export { default as BellPlusIcon } from '../icons/bell-plus';
|
|
277
|
+
// BellElectric aliases
|
|
278
|
+
export { default as BellElectricIcon } from '../icons/bell-electric';
|
|
285
279
|
// BellRing aliases
|
|
286
280
|
export { default as BellRingIcon } from '../icons/bell-ring';
|
|
287
|
-
//
|
|
288
|
-
export { default as
|
|
289
|
-
// BetweenVerticalStart aliases
|
|
290
|
-
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
281
|
+
// BellOff aliases
|
|
282
|
+
export { default as BellOffIcon } from '../icons/bell-off';
|
|
291
283
|
// Bell aliases
|
|
292
284
|
export { default as BellIcon } from '../icons/bell';
|
|
285
|
+
// BetweenVerticalStart aliases
|
|
286
|
+
export { default as BetweenVerticalStartIcon } from '../icons/between-vertical-start';
|
|
293
287
|
// BicepsFlexed aliases
|
|
294
288
|
export { default as BicepsFlexedIcon } from '../icons/biceps-flexed';
|
|
295
|
-
//
|
|
296
|
-
export { default as
|
|
289
|
+
// BetweenVerticalEnd aliases
|
|
290
|
+
export { default as BetweenVerticalEndIcon } from '../icons/between-vertical-end';
|
|
297
291
|
// Bike aliases
|
|
298
292
|
export { default as BikeIcon } from '../icons/bike';
|
|
299
|
-
//
|
|
300
|
-
export { default as
|
|
293
|
+
// Binary aliases
|
|
294
|
+
export { default as BinaryIcon } from '../icons/binary';
|
|
301
295
|
// Biohazard aliases
|
|
302
296
|
export { default as BiohazardIcon } from '../icons/biohazard';
|
|
303
297
|
// Bird aliases
|
|
304
298
|
export { default as BirdIcon } from '../icons/bird';
|
|
299
|
+
// Binoculars aliases
|
|
300
|
+
export { default as BinocularsIcon } from '../icons/binoculars';
|
|
301
|
+
// Birdhouse aliases
|
|
302
|
+
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
305
303
|
// Bitcoin aliases
|
|
306
304
|
export { default as BitcoinIcon } from '../icons/bitcoin';
|
|
307
305
|
// Blend aliases
|
|
308
306
|
export { default as BlendIcon } from '../icons/blend';
|
|
309
|
-
// Birdhouse aliases
|
|
310
|
-
export { default as BirdhouseIcon } from '../icons/birdhouse';
|
|
311
|
-
// Blocks aliases
|
|
312
|
-
export { default as BlocksIcon } from '../icons/blocks';
|
|
313
307
|
// Blinds aliases
|
|
314
308
|
export { default as BlindsIcon } from '../icons/blinds';
|
|
315
|
-
//
|
|
316
|
-
export { default as
|
|
309
|
+
// Blocks aliases
|
|
310
|
+
export { default as BlocksIcon } from '../icons/blocks';
|
|
317
311
|
// BluetoothOff aliases
|
|
318
312
|
export { default as BluetoothOffIcon } from '../icons/bluetooth-off';
|
|
313
|
+
// BluetoothConnected aliases
|
|
314
|
+
export { default as BluetoothConnectedIcon } from '../icons/bluetooth-connected';
|
|
319
315
|
// BluetoothSearching aliases
|
|
320
316
|
export { default as BluetoothSearchingIcon } from '../icons/bluetooth-searching';
|
|
321
317
|
// Bluetooth aliases
|
|
322
318
|
export { default as BluetoothIcon } from '../icons/bluetooth';
|
|
323
319
|
// Bold aliases
|
|
324
320
|
export { default as BoldIcon } from '../icons/bold';
|
|
321
|
+
// Bomb aliases
|
|
322
|
+
export { default as BombIcon } from '../icons/bomb';
|
|
325
323
|
// Bolt aliases
|
|
326
324
|
export { default as BoltIcon } from '../icons/bolt';
|
|
327
325
|
// Bone aliases
|
|
328
326
|
export { default as BoneIcon } from '../icons/bone';
|
|
329
|
-
// Bomb aliases
|
|
330
|
-
export { default as BombIcon } from '../icons/bomb';
|
|
331
327
|
// BookA aliases
|
|
332
328
|
export { default as BookAIcon } from '../icons/book-a';
|
|
333
329
|
// BookAlert aliases
|
|
@@ -336,10 +332,10 @@ export { default as BookAlertIcon } from '../icons/book-alert';
|
|
|
336
332
|
export { default as BookAudioIcon } from '../icons/book-audio';
|
|
337
333
|
// BookCheck aliases
|
|
338
334
|
export { default as BookCheckIcon } from '../icons/book-check';
|
|
339
|
-
// BookDown aliases
|
|
340
|
-
export { default as BookDownIcon } from '../icons/book-down';
|
|
341
335
|
// BookCopy aliases
|
|
342
336
|
export { default as BookCopyIcon } from '../icons/book-copy';
|
|
337
|
+
// BookDown aliases
|
|
338
|
+
export { default as BookDownIcon } from '../icons/book-down';
|
|
343
339
|
// BookHeadphones aliases
|
|
344
340
|
export { default as BookHeadphonesIcon } from '../icons/book-headphones';
|
|
345
341
|
// BookHeart aliases
|
|
@@ -348,34 +344,34 @@ export { default as BookHeartIcon } from '../icons/book-heart';
|
|
|
348
344
|
export { default as BookImageIcon } from '../icons/book-image';
|
|
349
345
|
// BookKey aliases
|
|
350
346
|
export { default as BookKeyIcon } from '../icons/book-key';
|
|
351
|
-
// BookLock aliases
|
|
352
|
-
export { default as BookLockIcon } from '../icons/book-lock';
|
|
353
347
|
// BookMarked aliases
|
|
354
348
|
export { default as BookMarkedIcon } from '../icons/book-marked';
|
|
355
|
-
//
|
|
356
|
-
export { default as
|
|
349
|
+
// BookLock aliases
|
|
350
|
+
export { default as BookLockIcon } from '../icons/book-lock';
|
|
357
351
|
// BookOpenCheck aliases
|
|
358
352
|
export { default as BookOpenCheckIcon } from '../icons/book-open-check';
|
|
353
|
+
// BookMinus aliases
|
|
354
|
+
export { default as BookMinusIcon } from '../icons/book-minus';
|
|
359
355
|
// BookOpenText aliases
|
|
360
356
|
export { default as BookOpenTextIcon } from '../icons/book-open-text';
|
|
361
357
|
// BookOpen aliases
|
|
362
358
|
export { default as BookOpenIcon } from '../icons/book-open';
|
|
363
|
-
// BookSearch aliases
|
|
364
|
-
export { default as BookSearchIcon } from '../icons/book-search';
|
|
365
359
|
// BookPlus aliases
|
|
366
360
|
export { default as BookPlusIcon } from '../icons/book-plus';
|
|
367
|
-
//
|
|
368
|
-
export { default as
|
|
369
|
-
// BookType aliases
|
|
370
|
-
export { default as BookTypeIcon } from '../icons/book-type';
|
|
361
|
+
// BookSearch aliases
|
|
362
|
+
export { default as BookSearchIcon } from '../icons/book-search';
|
|
371
363
|
// BookText aliases
|
|
372
364
|
export { default as BookTextIcon } from '../icons/book-text';
|
|
365
|
+
// BookType aliases
|
|
366
|
+
export { default as BookTypeIcon } from '../icons/book-type';
|
|
367
|
+
// BookUp2 aliases
|
|
368
|
+
export { default as BookUp2Icon } from '../icons/book-up-2';
|
|
373
369
|
// BookUp aliases
|
|
374
370
|
export { default as BookUpIcon } from '../icons/book-up';
|
|
375
|
-
// BookUser aliases
|
|
376
|
-
export { default as BookUserIcon } from '../icons/book-user';
|
|
377
371
|
// BookX aliases
|
|
378
372
|
export { default as BookXIcon } from '../icons/book-x';
|
|
373
|
+
// BookUser aliases
|
|
374
|
+
export { default as BookUserIcon } from '../icons/book-user';
|
|
379
375
|
// Book aliases
|
|
380
376
|
export { default as BookIcon } from '../icons/book';
|
|
381
377
|
// BookmarkCheck aliases
|
|
@@ -386,18 +382,18 @@ export { default as BookmarkPlusIcon } from '../icons/bookmark-plus';
|
|
|
386
382
|
export { default as BookmarkXIcon } from '../icons/bookmark-x';
|
|
387
383
|
// BookmarkMinus aliases
|
|
388
384
|
export { default as BookmarkMinusIcon } from '../icons/bookmark-minus';
|
|
385
|
+
// BoomBox aliases
|
|
386
|
+
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
389
387
|
// Bookmark aliases
|
|
390
388
|
export { default as BookmarkIcon } from '../icons/bookmark';
|
|
391
389
|
// BotMessageSquare aliases
|
|
392
390
|
export { default as BotMessageSquareIcon } from '../icons/bot-message-square';
|
|
393
|
-
// BoomBox aliases
|
|
394
|
-
export { default as BoomBoxIcon } from '../icons/boom-box';
|
|
395
391
|
// BotOff aliases
|
|
396
392
|
export { default as BotOffIcon } from '../icons/bot-off';
|
|
397
|
-
// Bot aliases
|
|
398
|
-
export { default as BotIcon } from '../icons/bot';
|
|
399
393
|
// BottleWine aliases
|
|
400
394
|
export { default as BottleWineIcon } from '../icons/bottle-wine';
|
|
395
|
+
// Bot aliases
|
|
396
|
+
export { default as BotIcon } from '../icons/bot';
|
|
401
397
|
// BowArrow aliases
|
|
402
398
|
export { default as BowArrowIcon } from '../icons/bow-arrow';
|
|
403
399
|
// Box aliases
|
|
@@ -412,18 +408,18 @@ export { default as BrainCircuitIcon } from '../icons/brain-circuit';
|
|
|
412
408
|
export { default as BrainCogIcon } from '../icons/brain-cog';
|
|
413
409
|
// Brain aliases
|
|
414
410
|
export { default as BrainIcon } from '../icons/brain';
|
|
415
|
-
// BrickWallShield aliases
|
|
416
|
-
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
417
|
-
// BriefcaseBusiness aliases
|
|
418
|
-
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
419
411
|
// BrickWallFire aliases
|
|
420
412
|
export { default as BrickWallFireIcon } from '../icons/brick-wall-fire';
|
|
413
|
+
// BrickWallShield aliases
|
|
414
|
+
export { default as BrickWallShieldIcon } from '../icons/brick-wall-shield';
|
|
421
415
|
// BrickWall aliases
|
|
422
416
|
export { default as BrickWallIcon } from '../icons/brick-wall';
|
|
423
|
-
//
|
|
424
|
-
export { default as
|
|
417
|
+
// BriefcaseBusiness aliases
|
|
418
|
+
export { default as BriefcaseBusinessIcon } from '../icons/briefcase-business';
|
|
425
419
|
// BriefcaseConveyorBelt aliases
|
|
426
420
|
export { default as BriefcaseConveyorBeltIcon } from '../icons/briefcase-conveyor-belt';
|
|
421
|
+
// BriefcaseMedical aliases
|
|
422
|
+
export { default as BriefcaseMedicalIcon } from '../icons/briefcase-medical';
|
|
427
423
|
// BringToFront aliases
|
|
428
424
|
export { default as BringToFrontIcon } from '../icons/bring-to-front';
|
|
429
425
|
// Briefcase aliases
|
|
@@ -432,64 +428,64 @@ export { default as BriefcaseIcon } from '../icons/briefcase';
|
|
|
432
428
|
export { default as BrushCleaningIcon } from '../icons/brush-cleaning';
|
|
433
429
|
// Bubbles aliases
|
|
434
430
|
export { default as BubblesIcon } from '../icons/bubbles';
|
|
435
|
-
// Brush aliases
|
|
436
|
-
export { default as BrushIcon } from '../icons/brush';
|
|
437
431
|
// BugOff aliases
|
|
438
432
|
export { default as BugOffIcon } from '../icons/bug-off';
|
|
439
|
-
//
|
|
440
|
-
export { default as
|
|
433
|
+
// Brush aliases
|
|
434
|
+
export { default as BrushIcon } from '../icons/brush';
|
|
441
435
|
// Bug aliases
|
|
442
436
|
export { default as BugIcon } from '../icons/bug';
|
|
443
|
-
// BusFront aliases
|
|
444
|
-
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
445
437
|
// Building2 aliases
|
|
446
438
|
export { default as Building2Icon } from '../icons/building-2';
|
|
439
|
+
// BugPlay aliases
|
|
440
|
+
export { default as BugPlayIcon } from '../icons/bug-play';
|
|
441
|
+
// BusFront aliases
|
|
442
|
+
export { default as BusFrontIcon } from '../icons/bus-front';
|
|
447
443
|
// Building aliases
|
|
448
444
|
export { default as BuildingIcon } from '../icons/building';
|
|
449
445
|
// Bus aliases
|
|
450
446
|
export { default as BusIcon } from '../icons/bus';
|
|
451
|
-
// Cable aliases
|
|
452
|
-
export { default as CableIcon } from '../icons/cable';
|
|
453
447
|
// CableCar aliases
|
|
454
448
|
export { default as CableCarIcon } from '../icons/cable-car';
|
|
449
|
+
// Cable aliases
|
|
450
|
+
export { default as CableIcon } from '../icons/cable';
|
|
455
451
|
// CakeSlice aliases
|
|
456
452
|
export { default as CakeSliceIcon } from '../icons/cake-slice';
|
|
457
|
-
// Cake aliases
|
|
458
|
-
export { default as CakeIcon } from '../icons/cake';
|
|
459
453
|
// Calculator aliases
|
|
460
454
|
export { default as CalculatorIcon } from '../icons/calculator';
|
|
461
455
|
// Calendar1 aliases
|
|
462
456
|
export { default as Calendar1Icon } from '../icons/calendar-1';
|
|
457
|
+
// Cake aliases
|
|
458
|
+
export { default as CakeIcon } from '../icons/cake';
|
|
463
459
|
// CalendarArrowDown aliases
|
|
464
460
|
export { default as CalendarArrowDownIcon } from '../icons/calendar-arrow-down';
|
|
461
|
+
// CalendarArrowUp aliases
|
|
462
|
+
export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
465
463
|
// CalendarCheck2 aliases
|
|
466
464
|
export { default as CalendarCheck2Icon } from '../icons/calendar-check-2';
|
|
467
465
|
// CalendarCheck aliases
|
|
468
466
|
export { default as CalendarCheckIcon } from '../icons/calendar-check';
|
|
469
|
-
// CalendarArrowUp aliases
|
|
470
|
-
export { default as CalendarArrowUpIcon } from '../icons/calendar-arrow-up';
|
|
471
467
|
// CalendarClock aliases
|
|
472
468
|
export { default as CalendarClockIcon } from '../icons/calendar-clock';
|
|
473
469
|
// CalendarCog aliases
|
|
474
470
|
export { default as CalendarCogIcon } from '../icons/calendar-cog';
|
|
475
471
|
// CalendarDays aliases
|
|
476
472
|
export { default as CalendarDaysIcon } from '../icons/calendar-days';
|
|
477
|
-
// CalendarHeart aliases
|
|
478
|
-
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
479
473
|
// CalendarFold aliases
|
|
480
474
|
export { default as CalendarFoldIcon } from '../icons/calendar-fold';
|
|
475
|
+
// CalendarHeart aliases
|
|
476
|
+
export { default as CalendarHeartIcon } from '../icons/calendar-heart';
|
|
481
477
|
// CalendarMinus2 aliases
|
|
482
478
|
export { default as CalendarMinus2Icon } from '../icons/calendar-minus-2';
|
|
483
479
|
// CalendarMinus aliases
|
|
484
480
|
export { default as CalendarMinusIcon } from '../icons/calendar-minus';
|
|
485
|
-
// CalendarPlus2 aliases
|
|
486
|
-
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
487
|
-
// CalendarPlus aliases
|
|
488
|
-
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
489
481
|
// CalendarOff aliases
|
|
490
482
|
export { default as CalendarOffIcon } from '../icons/calendar-off';
|
|
483
|
+
// CalendarPlus2 aliases
|
|
484
|
+
export { default as CalendarPlus2Icon } from '../icons/calendar-plus-2';
|
|
491
485
|
// CalendarRange aliases
|
|
492
486
|
export { default as CalendarRangeIcon } from '../icons/calendar-range';
|
|
487
|
+
// CalendarPlus aliases
|
|
488
|
+
export { default as CalendarPlusIcon } from '../icons/calendar-plus';
|
|
493
489
|
// CalendarSearch aliases
|
|
494
490
|
export { default as CalendarSearchIcon } from '../icons/calendar-search';
|
|
495
491
|
// CalendarX2 aliases
|
|
@@ -518,22 +514,22 @@ export { default as CannabisOffIcon } from '../icons/cannabis-off';
|
|
|
518
514
|
export { default as CannabisIcon } from '../icons/cannabis';
|
|
519
515
|
// CaptionsOff aliases
|
|
520
516
|
export { default as CaptionsOffIcon } from '../icons/captions-off';
|
|
521
|
-
// CarFront aliases
|
|
522
|
-
export { default as CarFrontIcon } from '../icons/car-front';
|
|
523
517
|
// CarTaxiFront aliases
|
|
524
518
|
export { default as CarTaxiFrontIcon } from '../icons/car-taxi-front';
|
|
519
|
+
// CarFront aliases
|
|
520
|
+
export { default as CarFrontIcon } from '../icons/car-front';
|
|
525
521
|
// Car aliases
|
|
526
522
|
export { default as CarIcon } from '../icons/car';
|
|
527
523
|
// Caravan aliases
|
|
528
524
|
export { default as CaravanIcon } from '../icons/caravan';
|
|
529
|
-
// CardSim aliases
|
|
530
|
-
export { default as CardSimIcon } from '../icons/card-sim';
|
|
531
525
|
// Carrot aliases
|
|
532
526
|
export { default as CarrotIcon } from '../icons/carrot';
|
|
533
|
-
//
|
|
534
|
-
export { default as
|
|
527
|
+
// CardSim aliases
|
|
528
|
+
export { default as CardSimIcon } from '../icons/card-sim';
|
|
535
529
|
// CaseSensitive aliases
|
|
536
530
|
export { default as CaseSensitiveIcon } from '../icons/case-sensitive';
|
|
531
|
+
// CaseLower aliases
|
|
532
|
+
export { default as CaseLowerIcon } from '../icons/case-lower';
|
|
537
533
|
// CaseUpper aliases
|
|
538
534
|
export { default as CaseUpperIcon } from '../icons/case-upper';
|
|
539
535
|
// CassetteTape aliases
|
|
@@ -552,212 +548,216 @@ export { default as ChartBarDecreasingIcon } from '../icons/chart-bar-decreasing
|
|
|
552
548
|
export { default as ChartBarStackedIcon } from '../icons/chart-bar-stacked';
|
|
553
549
|
// ChartBarIncreasing aliases
|
|
554
550
|
export { default as ChartBarIncreasingIcon } from '../icons/chart-bar-increasing';
|
|
555
|
-
// ChartColumnDecreasing aliases
|
|
556
|
-
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
557
551
|
// ChartColumnStacked aliases
|
|
558
552
|
export { default as ChartColumnStackedIcon } from '../icons/chart-column-stacked';
|
|
553
|
+
// ChartColumnDecreasing aliases
|
|
554
|
+
export { default as ChartColumnDecreasingIcon } from '../icons/chart-column-decreasing';
|
|
559
555
|
// ChartGantt aliases
|
|
560
556
|
export { default as ChartGanttIcon } from '../icons/chart-gantt';
|
|
561
|
-
// ChartNoAxesCombined aliases
|
|
562
|
-
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
563
557
|
// ChartNetwork aliases
|
|
564
558
|
export { default as ChartNetworkIcon } from '../icons/chart-network';
|
|
565
559
|
// ChartNoAxesColumnDecreasing aliases
|
|
566
560
|
export { default as ChartNoAxesColumnDecreasingIcon } from '../icons/chart-no-axes-column-decreasing';
|
|
567
|
-
//
|
|
568
|
-
export { default as
|
|
561
|
+
// ChartNoAxesCombined aliases
|
|
562
|
+
export { default as ChartNoAxesCombinedIcon } from '../icons/chart-no-axes-combined';
|
|
569
563
|
// CheckCheck aliases
|
|
570
564
|
export { default as CheckCheckIcon } from '../icons/check-check';
|
|
571
|
-
//
|
|
572
|
-
export { default as
|
|
565
|
+
// AArrowUp aliases
|
|
566
|
+
export { default as AArrowUpIcon } from '../icons/a-arrow-up';
|
|
567
|
+
// ALargeSmall aliases
|
|
568
|
+
export { default as ALargeSmallIcon } from '../icons/a-large-small';
|
|
569
|
+
// ChartSpline aliases
|
|
570
|
+
export { default as ChartSplineIcon } from '../icons/chart-spline';
|
|
573
571
|
// Check aliases
|
|
574
572
|
export { default as CheckIcon } from '../icons/check';
|
|
575
|
-
//
|
|
576
|
-
export { default as
|
|
577
|
-
// ChefHat aliases
|
|
578
|
-
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
579
|
-
//
|
|
580
|
-
export { default as
|
|
581
|
-
// ChessKnight aliases
|
|
582
|
-
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
573
|
+
// CheckLine aliases
|
|
574
|
+
export { default as CheckLineIcon } from '../icons/check-line';
|
|
575
|
+
// ChefHat aliases
|
|
576
|
+
export { default as ChefHatIcon } from '../icons/chef-hat';
|
|
577
|
+
// Cherry aliases
|
|
578
|
+
export { default as CherryIcon } from '../icons/cherry';
|
|
583
579
|
// ChessKing aliases
|
|
584
580
|
export { default as ChessKingIcon } from '../icons/chess-king';
|
|
581
|
+
// ChessKnight aliases
|
|
582
|
+
export { default as ChessKnightIcon } from '../icons/chess-knight';
|
|
583
|
+
// ChessBishop aliases
|
|
584
|
+
export { default as ChessBishopIcon } from '../icons/chess-bishop';
|
|
585
585
|
// ChessPawn aliases
|
|
586
586
|
export { default as ChessPawnIcon } from '../icons/chess-pawn';
|
|
587
587
|
// ChessQueen aliases
|
|
588
588
|
export { default as ChessQueenIcon } from '../icons/chess-queen';
|
|
589
|
-
// ChevronDown aliases
|
|
590
|
-
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
591
589
|
// ChessRook aliases
|
|
592
590
|
export { default as ChessRookIcon } from '../icons/chess-rook';
|
|
591
|
+
// ChevronDown aliases
|
|
592
|
+
export { default as ChevronDownIcon } from '../icons/chevron-down';
|
|
593
593
|
// ChevronFirst aliases
|
|
594
594
|
export { default as ChevronFirstIcon } from '../icons/chevron-first';
|
|
595
595
|
// ChevronLeft aliases
|
|
596
596
|
export { default as ChevronLeftIcon } from '../icons/chevron-left';
|
|
597
597
|
// ChevronRight aliases
|
|
598
598
|
export { default as ChevronRightIcon } from '../icons/chevron-right';
|
|
599
|
-
// ChevronUp aliases
|
|
600
|
-
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
601
599
|
// ChevronLast aliases
|
|
602
600
|
export { default as ChevronLastIcon } from '../icons/chevron-last';
|
|
601
|
+
// ChevronUp aliases
|
|
602
|
+
export { default as ChevronUpIcon } from '../icons/chevron-up';
|
|
603
603
|
// ChevronsDownUp aliases
|
|
604
604
|
export { default as ChevronsDownUpIcon } from '../icons/chevrons-down-up';
|
|
605
|
+
// ChevronsLeftRightEllipsis aliases
|
|
606
|
+
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
605
607
|
// ChevronsDown aliases
|
|
606
608
|
export { default as ChevronsDownIcon } from '../icons/chevrons-down';
|
|
607
609
|
// ChevronsLeftRight aliases
|
|
608
610
|
export { default as ChevronsLeftRightIcon } from '../icons/chevrons-left-right';
|
|
609
|
-
// ChevronsLeftRightEllipsis aliases
|
|
610
|
-
export { default as ChevronsLeftRightEllipsisIcon } from '../icons/chevrons-left-right-ellipsis';
|
|
611
611
|
// ChevronsLeft aliases
|
|
612
612
|
export { default as ChevronsLeftIcon } from '../icons/chevrons-left';
|
|
613
613
|
// ChevronsRightLeft aliases
|
|
614
614
|
export { default as ChevronsRightLeftIcon } from '../icons/chevrons-right-left';
|
|
615
615
|
// ChevronsRight aliases
|
|
616
616
|
export { default as ChevronsRightIcon } from '../icons/chevrons-right';
|
|
617
|
-
// ChevronsUp aliases
|
|
618
|
-
export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
619
617
|
// ChevronsUpDown aliases
|
|
620
618
|
export { default as ChevronsUpDownIcon } from '../icons/chevrons-up-down';
|
|
619
|
+
// ChevronsUp aliases
|
|
620
|
+
export { default as ChevronsUpIcon } from '../icons/chevrons-up';
|
|
621
|
+
// Church aliases
|
|
622
|
+
export { default as ChurchIcon } from '../icons/church';
|
|
621
623
|
// CigaretteOff aliases
|
|
622
624
|
export { default as CigaretteOffIcon } from '../icons/cigarette-off';
|
|
623
625
|
// Cigarette aliases
|
|
624
626
|
export { default as CigaretteIcon } from '../icons/cigarette';
|
|
625
627
|
// CircleDashed aliases
|
|
626
628
|
export { default as CircleDashedIcon } from '../icons/circle-dashed';
|
|
627
|
-
// Church aliases
|
|
628
|
-
export { default as ChurchIcon } from '../icons/church';
|
|
629
629
|
// CircleDollarSign aliases
|
|
630
630
|
export { default as CircleDollarSignIcon } from '../icons/circle-dollar-sign';
|
|
631
|
-
// CircleDot aliases
|
|
632
|
-
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
633
631
|
// CircleDotDashed aliases
|
|
634
632
|
export { default as CircleDotDashedIcon } from '../icons/circle-dot-dashed';
|
|
635
633
|
// CircleEqual aliases
|
|
636
634
|
export { default as CircleEqualIcon } from '../icons/circle-equal';
|
|
637
|
-
//
|
|
638
|
-
export { default as
|
|
635
|
+
// CircleDot aliases
|
|
636
|
+
export { default as CircleDotIcon } from '../icons/circle-dot';
|
|
639
637
|
// CircleEllipsis aliases
|
|
640
638
|
export { default as CircleEllipsisIcon } from '../icons/circle-ellipsis';
|
|
639
|
+
// CircleFadingArrowUp aliases
|
|
640
|
+
export { default as CircleFadingArrowUpIcon } from '../icons/circle-fading-arrow-up';
|
|
641
641
|
// CircleFadingPlus aliases
|
|
642
642
|
export { default as CircleFadingPlusIcon } from '../icons/circle-fading-plus';
|
|
643
643
|
// CircleOff aliases
|
|
644
644
|
export { default as CircleOffIcon } from '../icons/circle-off';
|
|
645
|
-
// CirclePile aliases
|
|
646
|
-
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
647
645
|
// CirclePoundSterling aliases
|
|
648
646
|
export { default as CirclePoundSterlingIcon } from '../icons/circle-pound-sterling';
|
|
647
|
+
// CirclePile aliases
|
|
648
|
+
export { default as CirclePileIcon } from '../icons/circle-pile';
|
|
649
649
|
// CircleSlash aliases
|
|
650
650
|
export { default as CircleSlashIcon } from '../icons/circle-slash';
|
|
651
651
|
// CircleSmall aliases
|
|
652
652
|
export { default as CircleSmallIcon } from '../icons/circle-small';
|
|
653
|
-
// CircleStar aliases
|
|
654
|
-
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
655
653
|
// Circle aliases
|
|
656
654
|
export { default as CircleIcon } from '../icons/circle';
|
|
655
|
+
// CircleStar aliases
|
|
656
|
+
export { default as CircleStarIcon } from '../icons/circle-star';
|
|
657
657
|
// CircuitBoard aliases
|
|
658
658
|
export { default as CircuitBoardIcon } from '../icons/circuit-board';
|
|
659
659
|
// Citrus aliases
|
|
660
660
|
export { default as CitrusIcon } from '../icons/citrus';
|
|
661
|
-
// Clapperboard aliases
|
|
662
|
-
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
663
661
|
// ClipboardCheck aliases
|
|
664
662
|
export { default as ClipboardCheckIcon } from '../icons/clipboard-check';
|
|
665
|
-
//
|
|
666
|
-
export { default as
|
|
663
|
+
// Clapperboard aliases
|
|
664
|
+
export { default as ClapperboardIcon } from '../icons/clapperboard';
|
|
667
665
|
// ClipboardClock aliases
|
|
668
666
|
export { default as ClipboardClockIcon } from '../icons/clipboard-clock';
|
|
667
|
+
// ClipboardCopy aliases
|
|
668
|
+
export { default as ClipboardCopyIcon } from '../icons/clipboard-copy';
|
|
669
|
+
// ClipboardPaste aliases
|
|
670
|
+
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
669
671
|
// ClipboardList aliases
|
|
670
672
|
export { default as ClipboardListIcon } from '../icons/clipboard-list';
|
|
671
673
|
// ClipboardMinus aliases
|
|
672
674
|
export { default as ClipboardMinusIcon } from '../icons/clipboard-minus';
|
|
673
|
-
// ClipboardPaste aliases
|
|
674
|
-
export { default as ClipboardPasteIcon } from '../icons/clipboard-paste';
|
|
675
675
|
// ClipboardPlus aliases
|
|
676
676
|
export { default as ClipboardPlusIcon } from '../icons/clipboard-plus';
|
|
677
|
-
// ClipboardType aliases
|
|
678
|
-
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
679
677
|
// ClipboardX aliases
|
|
680
678
|
export { default as ClipboardXIcon } from '../icons/clipboard-x';
|
|
681
679
|
// Clipboard aliases
|
|
682
680
|
export { default as ClipboardIcon } from '../icons/clipboard';
|
|
681
|
+
// ClipboardType aliases
|
|
682
|
+
export { default as ClipboardTypeIcon } from '../icons/clipboard-type';
|
|
683
683
|
// Clock1 aliases
|
|
684
684
|
export { default as Clock1Icon } from '../icons/clock-1';
|
|
685
685
|
// Clock10 aliases
|
|
686
686
|
export { default as Clock10Icon } from '../icons/clock-10';
|
|
687
687
|
// Clock11 aliases
|
|
688
688
|
export { default as Clock11Icon } from '../icons/clock-11';
|
|
689
|
-
// Clock12 aliases
|
|
690
|
-
export { default as Clock12Icon } from '../icons/clock-12';
|
|
691
689
|
// Clock2 aliases
|
|
692
690
|
export { default as Clock2Icon } from '../icons/clock-2';
|
|
693
|
-
// Clock5 aliases
|
|
694
|
-
export { default as Clock5Icon } from '../icons/clock-5';
|
|
695
691
|
// Clock3 aliases
|
|
696
692
|
export { default as Clock3Icon } from '../icons/clock-3';
|
|
697
693
|
// Clock4 aliases
|
|
698
694
|
export { default as Clock4Icon } from '../icons/clock-4';
|
|
699
|
-
//
|
|
700
|
-
export { default as
|
|
695
|
+
// Clock12 aliases
|
|
696
|
+
export { default as Clock12Icon } from '../icons/clock-12';
|
|
697
|
+
// Clock5 aliases
|
|
698
|
+
export { default as Clock5Icon } from '../icons/clock-5';
|
|
701
699
|
// Clock6 aliases
|
|
702
700
|
export { default as Clock6Icon } from '../icons/clock-6';
|
|
703
|
-
//
|
|
704
|
-
export { default as
|
|
701
|
+
// Clock7 aliases
|
|
702
|
+
export { default as Clock7Icon } from '../icons/clock-7';
|
|
705
703
|
// Clock8 aliases
|
|
706
704
|
export { default as Clock8Icon } from '../icons/clock-8';
|
|
707
|
-
//
|
|
708
|
-
export { default as
|
|
705
|
+
// Clock9 aliases
|
|
706
|
+
export { default as Clock9Icon } from '../icons/clock-9';
|
|
709
707
|
// ClockAlert aliases
|
|
710
708
|
export { default as ClockAlertIcon } from '../icons/clock-alert';
|
|
709
|
+
// ClockArrowDown aliases
|
|
710
|
+
export { default as ClockArrowDownIcon } from '../icons/clock-arrow-down';
|
|
711
711
|
// ClockCheck aliases
|
|
712
712
|
export { default as ClockCheckIcon } from '../icons/clock-check';
|
|
713
|
-
// ClockFading aliases
|
|
714
|
-
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
715
713
|
// ClockArrowUp aliases
|
|
716
714
|
export { default as ClockArrowUpIcon } from '../icons/clock-arrow-up';
|
|
715
|
+
// ClockFading aliases
|
|
716
|
+
export { default as ClockFadingIcon } from '../icons/clock-fading';
|
|
717
717
|
// ClockPlus aliases
|
|
718
718
|
export { default as ClockPlusIcon } from '../icons/clock-plus';
|
|
719
|
-
// Clock aliases
|
|
720
|
-
export { default as ClockIcon } from '../icons/clock';
|
|
721
719
|
// ClosedCaption aliases
|
|
722
720
|
export { default as ClosedCaptionIcon } from '../icons/closed-caption';
|
|
721
|
+
// Clock aliases
|
|
722
|
+
export { default as ClockIcon } from '../icons/clock';
|
|
723
723
|
// CloudAlert aliases
|
|
724
724
|
export { default as CloudAlertIcon } from '../icons/cloud-alert';
|
|
725
|
-
// CloudCheck aliases
|
|
726
|
-
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
727
725
|
// CloudBackup aliases
|
|
728
726
|
export { default as CloudBackupIcon } from '../icons/cloud-backup';
|
|
729
|
-
//
|
|
730
|
-
export { default as
|
|
727
|
+
// CloudCheck aliases
|
|
728
|
+
export { default as CloudCheckIcon } from '../icons/cloud-check';
|
|
731
729
|
// CloudDrizzle aliases
|
|
732
730
|
export { default as CloudDrizzleIcon } from '../icons/cloud-drizzle';
|
|
733
|
-
//
|
|
734
|
-
export { default as
|
|
731
|
+
// CloudCog aliases
|
|
732
|
+
export { default as CloudCogIcon } from '../icons/cloud-cog';
|
|
735
733
|
// CloudHail aliases
|
|
736
734
|
export { default as CloudHailIcon } from '../icons/cloud-hail';
|
|
735
|
+
// CloudFog aliases
|
|
736
|
+
export { default as CloudFogIcon } from '../icons/cloud-fog';
|
|
737
737
|
// CloudLightning aliases
|
|
738
738
|
export { default as CloudLightningIcon } from '../icons/cloud-lightning';
|
|
739
|
+
// CloudOff aliases
|
|
740
|
+
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
739
741
|
// CloudMoonRain aliases
|
|
740
742
|
export { default as CloudMoonRainIcon } from '../icons/cloud-moon-rain';
|
|
741
743
|
// CloudMoon aliases
|
|
742
744
|
export { default as CloudMoonIcon } from '../icons/cloud-moon';
|
|
743
745
|
// CloudRainWind aliases
|
|
744
746
|
export { default as CloudRainWindIcon } from '../icons/cloud-rain-wind';
|
|
745
|
-
// CloudOff aliases
|
|
746
|
-
export { default as CloudOffIcon } from '../icons/cloud-off';
|
|
747
747
|
// CloudRain aliases
|
|
748
748
|
export { default as CloudRainIcon } from '../icons/cloud-rain';
|
|
749
|
-
// CloudSunRain aliases
|
|
750
|
-
export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
751
749
|
// CloudSnow aliases
|
|
752
750
|
export { default as CloudSnowIcon } from '../icons/cloud-snow';
|
|
751
|
+
// CloudSunRain aliases
|
|
752
|
+
export { default as CloudSunRainIcon } from '../icons/cloud-sun-rain';
|
|
753
753
|
// CloudSun aliases
|
|
754
754
|
export { default as CloudSunIcon } from '../icons/cloud-sun';
|
|
755
|
-
// Cloudy aliases
|
|
756
|
-
export { default as CloudyIcon } from '../icons/cloudy';
|
|
757
|
-
// Cloud aliases
|
|
758
|
-
export { default as CloudIcon } from '../icons/cloud';
|
|
759
755
|
// CloudSync aliases
|
|
760
756
|
export { default as CloudSyncIcon } from '../icons/cloud-sync';
|
|
757
|
+
// Cloud aliases
|
|
758
|
+
export { default as CloudIcon } from '../icons/cloud';
|
|
759
|
+
// Cloudy aliases
|
|
760
|
+
export { default as CloudyIcon } from '../icons/cloudy';
|
|
761
761
|
// Clover aliases
|
|
762
762
|
export { default as CloverIcon } from '../icons/clover';
|
|
763
763
|
// Club aliases
|
|
@@ -768,28 +768,28 @@ export { default as CodeIcon } from '../icons/code';
|
|
|
768
768
|
export { default as CodepenIcon } from '../icons/codepen';
|
|
769
769
|
// Coffee aliases
|
|
770
770
|
export { default as CoffeeIcon } from '../icons/coffee';
|
|
771
|
-
// Codesandbox aliases
|
|
772
|
-
export { default as CodesandboxIcon } from '../icons/codesandbox';
|
|
773
771
|
// Cog aliases
|
|
774
772
|
export { default as CogIcon } from '../icons/cog';
|
|
773
|
+
// Codesandbox aliases
|
|
774
|
+
export { default as CodesandboxIcon } from '../icons/codesandbox';
|
|
775
775
|
// Coins aliases
|
|
776
776
|
export { default as CoinsIcon } from '../icons/coins';
|
|
777
|
-
// Combine aliases
|
|
778
|
-
export { default as CombineIcon } from '../icons/combine';
|
|
779
777
|
// Columns4 aliases
|
|
780
778
|
export { default as Columns4Icon } from '../icons/columns-4';
|
|
781
779
|
// Command aliases
|
|
782
780
|
export { default as CommandIcon } from '../icons/command';
|
|
783
781
|
// Compass aliases
|
|
784
782
|
export { default as CompassIcon } from '../icons/compass';
|
|
783
|
+
// Combine aliases
|
|
784
|
+
export { default as CombineIcon } from '../icons/combine';
|
|
785
785
|
// Component aliases
|
|
786
786
|
export { default as ComponentIcon } from '../icons/component';
|
|
787
|
-
// ConciergeBell aliases
|
|
788
|
-
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
789
787
|
// Computer aliases
|
|
790
788
|
export { default as ComputerIcon } from '../icons/computer';
|
|
791
789
|
// Cone aliases
|
|
792
790
|
export { default as ConeIcon } from '../icons/cone';
|
|
791
|
+
// ConciergeBell aliases
|
|
792
|
+
export { default as ConciergeBellIcon } from '../icons/concierge-bell';
|
|
793
793
|
// Construction aliases
|
|
794
794
|
export { default as ConstructionIcon } from '../icons/construction';
|
|
795
795
|
// Contact aliases
|
|
@@ -798,12 +798,12 @@ export { default as ContactIcon } from '../icons/contact';
|
|
|
798
798
|
export { default as ContainerIcon } from '../icons/container';
|
|
799
799
|
// Contrast aliases
|
|
800
800
|
export { default as ContrastIcon } from '../icons/contrast';
|
|
801
|
+
// CookingPot aliases
|
|
802
|
+
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
801
803
|
// Cookie aliases
|
|
802
804
|
export { default as CookieIcon } from '../icons/cookie';
|
|
803
805
|
// CopyCheck aliases
|
|
804
806
|
export { default as CopyCheckIcon } from '../icons/copy-check';
|
|
805
|
-
// CookingPot aliases
|
|
806
|
-
export { default as CookingPotIcon } from '../icons/cooking-pot';
|
|
807
807
|
// CopyMinus aliases
|
|
808
808
|
export { default as CopyMinusIcon } from '../icons/copy-minus';
|
|
809
809
|
// CopyPlus aliases
|
|
@@ -816,60 +816,60 @@ export { default as CopyXIcon } from '../icons/copy-x';
|
|
|
816
816
|
export { default as CopyIcon } from '../icons/copy';
|
|
817
817
|
// Copyleft aliases
|
|
818
818
|
export { default as CopyleftIcon } from '../icons/copyleft';
|
|
819
|
-
// Copyright aliases
|
|
820
|
-
export { default as CopyrightIcon } from '../icons/copyright';
|
|
821
819
|
// CornerDownLeft aliases
|
|
822
820
|
export { default as CornerDownLeftIcon } from '../icons/corner-down-left';
|
|
821
|
+
// Copyright aliases
|
|
822
|
+
export { default as CopyrightIcon } from '../icons/copyright';
|
|
823
823
|
// CornerDownRight aliases
|
|
824
824
|
export { default as CornerDownRightIcon } from '../icons/corner-down-right';
|
|
825
825
|
// CornerLeftDown aliases
|
|
826
826
|
export { default as CornerLeftDownIcon } from '../icons/corner-left-down';
|
|
827
|
-
// CornerRightDown aliases
|
|
828
|
-
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
829
827
|
// CornerLeftUp aliases
|
|
830
828
|
export { default as CornerLeftUpIcon } from '../icons/corner-left-up';
|
|
831
|
-
// CornerRightUp aliases
|
|
832
|
-
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
833
829
|
// CornerUpLeft aliases
|
|
834
830
|
export { default as CornerUpLeftIcon } from '../icons/corner-up-left';
|
|
831
|
+
// CornerRightUp aliases
|
|
832
|
+
export { default as CornerRightUpIcon } from '../icons/corner-right-up';
|
|
833
|
+
// CornerRightDown aliases
|
|
834
|
+
export { default as CornerRightDownIcon } from '../icons/corner-right-down';
|
|
835
835
|
// CornerUpRight aliases
|
|
836
836
|
export { default as CornerUpRightIcon } from '../icons/corner-up-right';
|
|
837
|
+
// CreativeCommons aliases
|
|
838
|
+
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
837
839
|
// Cpu aliases
|
|
838
840
|
export { default as CpuIcon } from '../icons/cpu';
|
|
839
841
|
// CreditCard aliases
|
|
840
842
|
export { default as CreditCardIcon } from '../icons/credit-card';
|
|
841
|
-
// CreativeCommons aliases
|
|
842
|
-
export { default as CreativeCommonsIcon } from '../icons/creative-commons';
|
|
843
843
|
// Croissant aliases
|
|
844
844
|
export { default as CroissantIcon } from '../icons/croissant';
|
|
845
845
|
// Crop aliases
|
|
846
846
|
export { default as CropIcon } from '../icons/crop';
|
|
847
|
-
// Crown aliases
|
|
848
|
-
export { default as CrownIcon } from '../icons/crown';
|
|
849
847
|
// Cross aliases
|
|
850
848
|
export { default as CrossIcon } from '../icons/cross';
|
|
851
849
|
// Crosshair aliases
|
|
852
850
|
export { default as CrosshairIcon } from '../icons/crosshair';
|
|
853
|
-
// Currency aliases
|
|
854
|
-
export { default as CurrencyIcon } from '../icons/currency';
|
|
855
851
|
// Cuboid aliases
|
|
856
852
|
export { default as CuboidIcon } from '../icons/cuboid';
|
|
853
|
+
// Crown aliases
|
|
854
|
+
export { default as CrownIcon } from '../icons/crown';
|
|
857
855
|
// CupSoda aliases
|
|
858
856
|
export { default as CupSodaIcon } from '../icons/cup-soda';
|
|
859
857
|
// Cylinder aliases
|
|
860
858
|
export { default as CylinderIcon } from '../icons/cylinder';
|
|
859
|
+
// Currency aliases
|
|
860
|
+
export { default as CurrencyIcon } from '../icons/currency';
|
|
861
861
|
// Dam aliases
|
|
862
862
|
export { default as DamIcon } from '../icons/dam';
|
|
863
|
+
// DatabaseZap aliases
|
|
864
|
+
export { default as DatabaseZapIcon } from '../icons/database-zap';
|
|
863
865
|
// DatabaseBackup aliases
|
|
864
866
|
export { default as DatabaseBackupIcon } from '../icons/database-backup';
|
|
865
|
-
// Database aliases
|
|
866
|
-
export { default as DatabaseIcon } from '../icons/database';
|
|
867
867
|
// DecimalsArrowLeft aliases
|
|
868
868
|
export { default as DecimalsArrowLeftIcon } from '../icons/decimals-arrow-left';
|
|
869
869
|
// DecimalsArrowRight aliases
|
|
870
870
|
export { default as DecimalsArrowRightIcon } from '../icons/decimals-arrow-right';
|
|
871
|
-
//
|
|
872
|
-
export { default as
|
|
871
|
+
// Database aliases
|
|
872
|
+
export { default as DatabaseIcon } from '../icons/database';
|
|
873
873
|
// Delete aliases
|
|
874
874
|
export { default as DeleteIcon } from '../icons/delete';
|
|
875
875
|
// Dessert aliases
|
|
@@ -884,32 +884,32 @@ export { default as DiamondPlusIcon } from '../icons/diamond-plus';
|
|
|
884
884
|
export { default as DiamondIcon } from '../icons/diamond';
|
|
885
885
|
// Dice1 aliases
|
|
886
886
|
export { default as Dice1Icon } from '../icons/dice-1';
|
|
887
|
-
// Dice2 aliases
|
|
888
|
-
export { default as Dice2Icon } from '../icons/dice-2';
|
|
889
887
|
// Dice3 aliases
|
|
890
888
|
export { default as Dice3Icon } from '../icons/dice-3';
|
|
889
|
+
// Dice2 aliases
|
|
890
|
+
export { default as Dice2Icon } from '../icons/dice-2';
|
|
891
891
|
// Dice4 aliases
|
|
892
892
|
export { default as Dice4Icon } from '../icons/dice-4';
|
|
893
893
|
// Dice5 aliases
|
|
894
894
|
export { default as Dice5Icon } from '../icons/dice-5';
|
|
895
|
-
// Dices aliases
|
|
896
|
-
export { default as DicesIcon } from '../icons/dices';
|
|
897
895
|
// Dice6 aliases
|
|
898
896
|
export { default as Dice6Icon } from '../icons/dice-6';
|
|
897
|
+
// Dices aliases
|
|
898
|
+
export { default as DicesIcon } from '../icons/dices';
|
|
899
899
|
// Diff aliases
|
|
900
900
|
export { default as DiffIcon } from '../icons/diff';
|
|
901
|
-
// Disc2 aliases
|
|
902
|
-
export { default as Disc2Icon } from '../icons/disc-2';
|
|
903
901
|
// Disc3 aliases
|
|
904
902
|
export { default as Disc3Icon } from '../icons/disc-3';
|
|
905
903
|
// DiscAlbum aliases
|
|
906
904
|
export { default as DiscAlbumIcon } from '../icons/disc-album';
|
|
905
|
+
// Disc2 aliases
|
|
906
|
+
export { default as Disc2Icon } from '../icons/disc-2';
|
|
907
|
+
// Disc aliases
|
|
908
|
+
export { default as DiscIcon } from '../icons/disc';
|
|
907
909
|
// Divide aliases
|
|
908
910
|
export { default as DivideIcon } from '../icons/divide';
|
|
909
911
|
// DnaOff aliases
|
|
910
912
|
export { default as DnaOffIcon } from '../icons/dna-off';
|
|
911
|
-
// Disc aliases
|
|
912
|
-
export { default as DiscIcon } from '../icons/disc';
|
|
913
913
|
// Dna aliases
|
|
914
914
|
export { default as DnaIcon } from '../icons/dna';
|
|
915
915
|
// Dock aliases
|
|
@@ -918,14 +918,14 @@ export { default as DockIcon } from '../icons/dock';
|
|
|
918
918
|
export { default as DogIcon } from '../icons/dog';
|
|
919
919
|
// DollarSign aliases
|
|
920
920
|
export { default as DollarSignIcon } from '../icons/dollar-sign';
|
|
921
|
-
// DoorClosedLocked aliases
|
|
922
|
-
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
923
921
|
// Donut aliases
|
|
924
922
|
export { default as DonutIcon } from '../icons/donut';
|
|
925
|
-
// DoorOpen aliases
|
|
926
|
-
export { default as DoorOpenIcon } from '../icons/door-open';
|
|
927
923
|
// DoorClosed aliases
|
|
928
924
|
export { default as DoorClosedIcon } from '../icons/door-closed';
|
|
925
|
+
// DoorClosedLocked aliases
|
|
926
|
+
export { default as DoorClosedLockedIcon } from '../icons/door-closed-locked';
|
|
927
|
+
// DoorOpen aliases
|
|
928
|
+
export { default as DoorOpenIcon } from '../icons/door-open';
|
|
929
929
|
// Dot aliases
|
|
930
930
|
export { default as DotIcon } from '../icons/dot';
|
|
931
931
|
// Download aliases
|
|
@@ -936,10 +936,10 @@ export { default as DraftingCompassIcon } from '../icons/drafting-compass';
|
|
|
936
936
|
export { default as DramaIcon } from '../icons/drama';
|
|
937
937
|
// Dribbble aliases
|
|
938
938
|
export { default as DribbbleIcon } from '../icons/dribbble';
|
|
939
|
-
// Drone aliases
|
|
940
|
-
export { default as DroneIcon } from '../icons/drone';
|
|
941
939
|
// Drill aliases
|
|
942
940
|
export { default as DrillIcon } from '../icons/drill';
|
|
941
|
+
// Drone aliases
|
|
942
|
+
export { default as DroneIcon } from '../icons/drone';
|
|
943
943
|
// DropletOff aliases
|
|
944
944
|
export { default as DropletOffIcon } from '../icons/droplet-off';
|
|
945
945
|
// Droplet aliases
|
|
@@ -954,86 +954,86 @@ export { default as DrumstickIcon } from '../icons/drumstick';
|
|
|
954
954
|
export { default as DumbbellIcon } from '../icons/dumbbell';
|
|
955
955
|
// EarOff aliases
|
|
956
956
|
export { default as EarOffIcon } from '../icons/ear-off';
|
|
957
|
-
// EarthLock aliases
|
|
958
|
-
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
959
957
|
// Ear aliases
|
|
960
958
|
export { default as EarIcon } from '../icons/ear';
|
|
961
|
-
//
|
|
962
|
-
export { default as
|
|
959
|
+
// EarthLock aliases
|
|
960
|
+
export { default as EarthLockIcon } from '../icons/earth-lock';
|
|
963
961
|
// EggFried aliases
|
|
964
962
|
export { default as EggFriedIcon } from '../icons/egg-fried';
|
|
965
963
|
// EggOff aliases
|
|
966
964
|
export { default as EggOffIcon } from '../icons/egg-off';
|
|
965
|
+
// Eclipse aliases
|
|
966
|
+
export { default as EclipseIcon } from '../icons/eclipse';
|
|
967
967
|
// Egg aliases
|
|
968
968
|
export { default as EggIcon } from '../icons/egg';
|
|
969
969
|
// EqualApproximately aliases
|
|
970
970
|
export { default as EqualApproximatelyIcon } from '../icons/equal-approximately';
|
|
971
|
+
// Equal aliases
|
|
972
|
+
export { default as EqualIcon } from '../icons/equal';
|
|
971
973
|
// EqualNot aliases
|
|
972
974
|
export { default as EqualNotIcon } from '../icons/equal-not';
|
|
973
975
|
// EthernetPort aliases
|
|
974
976
|
export { default as EthernetPortIcon } from '../icons/ethernet-port';
|
|
975
|
-
// Euro aliases
|
|
976
|
-
export { default as EuroIcon } from '../icons/euro';
|
|
977
|
-
// Equal aliases
|
|
978
|
-
export { default as EqualIcon } from '../icons/equal';
|
|
979
977
|
// Eraser aliases
|
|
980
978
|
export { default as EraserIcon } from '../icons/eraser';
|
|
981
979
|
// EvCharger aliases
|
|
982
980
|
export { default as EvChargerIcon } from '../icons/ev-charger';
|
|
983
|
-
//
|
|
984
|
-
export { default as
|
|
985
|
-
// Expand aliases
|
|
986
|
-
export { default as ExpandIcon } from '../icons/expand';
|
|
981
|
+
// Euro aliases
|
|
982
|
+
export { default as EuroIcon } from '../icons/euro';
|
|
987
983
|
// ExternalLink aliases
|
|
988
984
|
export { default as ExternalLinkIcon } from '../icons/external-link';
|
|
985
|
+
// Expand aliases
|
|
986
|
+
export { default as ExpandIcon } from '../icons/expand';
|
|
987
|
+
// EyeClosed aliases
|
|
988
|
+
export { default as EyeClosedIcon } from '../icons/eye-closed';
|
|
989
989
|
// EyeOff aliases
|
|
990
990
|
export { default as EyeOffIcon } from '../icons/eye-off';
|
|
991
991
|
// Eye aliases
|
|
992
992
|
export { default as EyeIcon } from '../icons/eye';
|
|
993
|
-
// Facebook aliases
|
|
994
|
-
export { default as FacebookIcon } from '../icons/facebook';
|
|
995
|
-
// Factory aliases
|
|
996
|
-
export { default as FactoryIcon } from '../icons/factory';
|
|
997
993
|
// Fan aliases
|
|
998
994
|
export { default as FanIcon } from '../icons/fan';
|
|
999
995
|
// FastForward aliases
|
|
1000
996
|
export { default as FastForwardIcon } from '../icons/fast-forward';
|
|
1001
|
-
//
|
|
1002
|
-
export { default as
|
|
997
|
+
// Factory aliases
|
|
998
|
+
export { default as FactoryIcon } from '../icons/factory';
|
|
999
|
+
// Facebook aliases
|
|
1000
|
+
export { default as FacebookIcon } from '../icons/facebook';
|
|
1003
1001
|
// Feather aliases
|
|
1004
1002
|
export { default as FeatherIcon } from '../icons/feather';
|
|
1003
|
+
// Fence aliases
|
|
1004
|
+
export { default as FenceIcon } from '../icons/fence';
|
|
1005
1005
|
// FerrisWheel aliases
|
|
1006
1006
|
export { default as FerrisWheelIcon } from '../icons/ferris-wheel';
|
|
1007
1007
|
// Figma aliases
|
|
1008
1008
|
export { default as FigmaIcon } from '../icons/figma';
|
|
1009
1009
|
// FileArchive aliases
|
|
1010
1010
|
export { default as FileArchiveIcon } from '../icons/file-archive';
|
|
1011
|
-
// FileCheck aliases
|
|
1012
|
-
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1013
|
-
// FileClock aliases
|
|
1014
|
-
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1015
1011
|
// FileBox aliases
|
|
1016
1012
|
export { default as FileBoxIcon } from '../icons/file-box';
|
|
1013
|
+
// FileCheck aliases
|
|
1014
|
+
export { default as FileCheckIcon } from '../icons/file-check';
|
|
1017
1015
|
// FileCode aliases
|
|
1018
1016
|
export { default as FileCodeIcon } from '../icons/file-code';
|
|
1017
|
+
// FileClock aliases
|
|
1018
|
+
export { default as FileClockIcon } from '../icons/file-clock';
|
|
1019
1019
|
// FileDiff aliases
|
|
1020
1020
|
export { default as FileDiffIcon } from '../icons/file-diff';
|
|
1021
|
-
// FileDigit aliases
|
|
1022
|
-
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1023
1021
|
// FileDown aliases
|
|
1024
1022
|
export { default as FileDownIcon } from '../icons/file-down';
|
|
1025
|
-
//
|
|
1026
|
-
export { default as
|
|
1023
|
+
// FileDigit aliases
|
|
1024
|
+
export { default as FileDigitIcon } from '../icons/file-digit';
|
|
1027
1025
|
// FileImage aliases
|
|
1028
1026
|
export { default as FileImageIcon } from '../icons/file-image';
|
|
1029
1027
|
// FileInput aliases
|
|
1030
1028
|
export { default as FileInputIcon } from '../icons/file-input';
|
|
1029
|
+
// FileHeart aliases
|
|
1030
|
+
export { default as FileHeartIcon } from '../icons/file-heart';
|
|
1031
1031
|
// FileMinus aliases
|
|
1032
1032
|
export { default as FileMinusIcon } from '../icons/file-minus';
|
|
1033
|
-
// FileMusic aliases
|
|
1034
|
-
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1035
1033
|
// FileOutput aliases
|
|
1036
1034
|
export { default as FileOutputIcon } from '../icons/file-output';
|
|
1035
|
+
// FileMusic aliases
|
|
1036
|
+
export { default as FileMusicIcon } from '../icons/file-music';
|
|
1037
1037
|
// FilePlus aliases
|
|
1038
1038
|
export { default as FilePlusIcon } from '../icons/file-plus';
|
|
1039
1039
|
// FileScan aliases
|
|
@@ -1074,56 +1074,56 @@ export { default as FireExtinguisherIcon } from '../icons/fire-extinguisher';
|
|
|
1074
1074
|
export { default as FishOffIcon } from '../icons/fish-off';
|
|
1075
1075
|
// FishSymbol aliases
|
|
1076
1076
|
export { default as FishSymbolIcon } from '../icons/fish-symbol';
|
|
1077
|
-
// Fish aliases
|
|
1078
|
-
export { default as FishIcon } from '../icons/fish';
|
|
1079
|
-
// FlagOff aliases
|
|
1080
|
-
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1081
1077
|
// FishingHook aliases
|
|
1082
1078
|
export { default as FishingHookIcon } from '../icons/fishing-hook';
|
|
1083
|
-
//
|
|
1084
|
-
export { default as
|
|
1079
|
+
// Fish aliases
|
|
1080
|
+
export { default as FishIcon } from '../icons/fish';
|
|
1081
|
+
// FlagOff aliases
|
|
1082
|
+
export { default as FlagOffIcon } from '../icons/flag-off';
|
|
1085
1083
|
// FlagTriangleRight aliases
|
|
1086
1084
|
export { default as FlagTriangleRightIcon } from '../icons/flag-triangle-right';
|
|
1087
|
-
// FlameKindling aliases
|
|
1088
|
-
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1089
|
-
// Flame aliases
|
|
1090
|
-
export { default as FlameIcon } from '../icons/flame';
|
|
1091
1085
|
// Flag aliases
|
|
1092
1086
|
export { default as FlagIcon } from '../icons/flag';
|
|
1087
|
+
// FlagTriangleLeft aliases
|
|
1088
|
+
export { default as FlagTriangleLeftIcon } from '../icons/flag-triangle-left';
|
|
1089
|
+
// FlameKindling aliases
|
|
1090
|
+
export { default as FlameKindlingIcon } from '../icons/flame-kindling';
|
|
1093
1091
|
// FlashlightOff aliases
|
|
1094
1092
|
export { default as FlashlightOffIcon } from '../icons/flashlight-off';
|
|
1093
|
+
// Flame aliases
|
|
1094
|
+
export { default as FlameIcon } from '../icons/flame';
|
|
1095
1095
|
// Flashlight aliases
|
|
1096
1096
|
export { default as FlashlightIcon } from '../icons/flashlight';
|
|
1097
|
+
// FlaskConical aliases
|
|
1098
|
+
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1097
1099
|
// FlaskConicalOff aliases
|
|
1098
1100
|
export { default as FlaskConicalOffIcon } from '../icons/flask-conical-off';
|
|
1099
1101
|
// FlaskRound aliases
|
|
1100
1102
|
export { default as FlaskRoundIcon } from '../icons/flask-round';
|
|
1101
|
-
// FlaskConical aliases
|
|
1102
|
-
export { default as FlaskConicalIcon } from '../icons/flask-conical';
|
|
1103
1103
|
// FlipHorizontal aliases
|
|
1104
1104
|
export { default as FlipHorizontalIcon } from '../icons/flip-horizontal';
|
|
1105
|
-
// FlipVertical2 aliases
|
|
1106
|
-
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1107
1105
|
// FlipHorizontal2 aliases
|
|
1108
1106
|
export { default as FlipHorizontal2Icon } from '../icons/flip-horizontal-2';
|
|
1109
1107
|
// FlipVertical aliases
|
|
1110
1108
|
export { default as FlipVerticalIcon } from '../icons/flip-vertical';
|
|
1109
|
+
// FlipVertical2 aliases
|
|
1110
|
+
export { default as FlipVertical2Icon } from '../icons/flip-vertical-2';
|
|
1111
1111
|
// Flower2 aliases
|
|
1112
1112
|
export { default as Flower2Icon } from '../icons/flower-2';
|
|
1113
1113
|
// Flower aliases
|
|
1114
1114
|
export { default as FlowerIcon } from '../icons/flower';
|
|
1115
|
-
//
|
|
1116
|
-
export { default as
|
|
1115
|
+
// Focus aliases
|
|
1116
|
+
export { default as FocusIcon } from '../icons/focus';
|
|
1117
1117
|
// FoldHorizontal aliases
|
|
1118
1118
|
export { default as FoldHorizontalIcon } from '../icons/fold-horizontal';
|
|
1119
1119
|
// FolderArchive aliases
|
|
1120
1120
|
export { default as FolderArchiveIcon } from '../icons/folder-archive';
|
|
1121
|
-
//
|
|
1122
|
-
export { default as
|
|
1123
|
-
// FolderCheck aliases
|
|
1124
|
-
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1121
|
+
// FoldVertical aliases
|
|
1122
|
+
export { default as FoldVerticalIcon } from '../icons/fold-vertical';
|
|
1125
1123
|
// FolderClock aliases
|
|
1126
1124
|
export { default as FolderClockIcon } from '../icons/folder-clock';
|
|
1125
|
+
// FolderCheck aliases
|
|
1126
|
+
export { default as FolderCheckIcon } from '../icons/folder-check';
|
|
1127
1127
|
// FolderClosed aliases
|
|
1128
1128
|
export { default as FolderClosedIcon } from '../icons/folder-closed';
|
|
1129
1129
|
// FolderCode aliases
|
|
@@ -1132,40 +1132,40 @@ export { default as FolderCodeIcon } from '../icons/folder-code';
|
|
|
1132
1132
|
export { default as FolderDotIcon } from '../icons/folder-dot';
|
|
1133
1133
|
// FolderDown aliases
|
|
1134
1134
|
export { default as FolderDownIcon } from '../icons/folder-down';
|
|
1135
|
-
// FolderGit2 aliases
|
|
1136
|
-
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1137
|
-
// FolderGit aliases
|
|
1138
|
-
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1139
1135
|
// FolderHeart aliases
|
|
1140
1136
|
export { default as FolderHeartIcon } from '../icons/folder-heart';
|
|
1137
|
+
// FolderGit aliases
|
|
1138
|
+
export { default as FolderGitIcon } from '../icons/folder-git';
|
|
1139
|
+
// FolderGit2 aliases
|
|
1140
|
+
export { default as FolderGit2Icon } from '../icons/folder-git-2';
|
|
1141
1141
|
// FolderInput aliases
|
|
1142
1142
|
export { default as FolderInputIcon } from '../icons/folder-input';
|
|
1143
1143
|
// FolderKanban aliases
|
|
1144
1144
|
export { default as FolderKanbanIcon } from '../icons/folder-kanban';
|
|
1145
|
-
// FolderKey aliases
|
|
1146
|
-
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1147
1145
|
// FolderLock aliases
|
|
1148
1146
|
export { default as FolderLockIcon } from '../icons/folder-lock';
|
|
1147
|
+
// FolderKey aliases
|
|
1148
|
+
export { default as FolderKeyIcon } from '../icons/folder-key';
|
|
1149
1149
|
// FolderMinus aliases
|
|
1150
1150
|
export { default as FolderMinusIcon } from '../icons/folder-minus';
|
|
1151
|
-
// FolderOpenDot aliases
|
|
1152
|
-
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1153
1151
|
// FolderOpen aliases
|
|
1154
1152
|
export { default as FolderOpenIcon } from '../icons/folder-open';
|
|
1155
|
-
//
|
|
1156
|
-
export { default as
|
|
1153
|
+
// FolderOpenDot aliases
|
|
1154
|
+
export { default as FolderOpenDotIcon } from '../icons/folder-open-dot';
|
|
1157
1155
|
// FolderPlus aliases
|
|
1158
1156
|
export { default as FolderPlusIcon } from '../icons/folder-plus';
|
|
1157
|
+
// FolderOutput aliases
|
|
1158
|
+
export { default as FolderOutputIcon } from '../icons/folder-output';
|
|
1159
1159
|
// FolderRoot aliases
|
|
1160
1160
|
export { default as FolderRootIcon } from '../icons/folder-root';
|
|
1161
1161
|
// FolderSearch2 aliases
|
|
1162
1162
|
export { default as FolderSearch2Icon } from '../icons/folder-search-2';
|
|
1163
1163
|
// FolderSearch aliases
|
|
1164
1164
|
export { default as FolderSearchIcon } from '../icons/folder-search';
|
|
1165
|
-
// FolderSymlink aliases
|
|
1166
|
-
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1167
1165
|
// FolderSync aliases
|
|
1168
1166
|
export { default as FolderSyncIcon } from '../icons/folder-sync';
|
|
1167
|
+
// FolderSymlink aliases
|
|
1168
|
+
export { default as FolderSymlinkIcon } from '../icons/folder-symlink';
|
|
1169
1169
|
// FolderTree aliases
|
|
1170
1170
|
export { default as FolderTreeIcon } from '../icons/folder-tree';
|
|
1171
1171
|
// FolderUp aliases
|
|
@@ -1186,90 +1186,92 @@ export { default as FormIcon } from '../icons/form';
|
|
|
1186
1186
|
export { default as ForwardIcon } from '../icons/forward';
|
|
1187
1187
|
// Frame aliases
|
|
1188
1188
|
export { default as FrameIcon } from '../icons/frame';
|
|
1189
|
-
// Frown aliases
|
|
1190
|
-
export { default as FrownIcon } from '../icons/frown';
|
|
1191
1189
|
// Framer aliases
|
|
1192
1190
|
export { default as FramerIcon } from '../icons/framer';
|
|
1191
|
+
// Frown aliases
|
|
1192
|
+
export { default as FrownIcon } from '../icons/frown';
|
|
1193
1193
|
// Fuel aliases
|
|
1194
1194
|
export { default as FuelIcon } from '../icons/fuel';
|
|
1195
|
-
// FunnelPlus aliases
|
|
1196
|
-
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1197
1195
|
// Fullscreen aliases
|
|
1198
1196
|
export { default as FullscreenIcon } from '../icons/fullscreen';
|
|
1199
1197
|
// GalleryHorizontalEnd aliases
|
|
1200
1198
|
export { default as GalleryHorizontalEndIcon } from '../icons/gallery-horizontal-end';
|
|
1201
1199
|
// GalleryHorizontal aliases
|
|
1202
1200
|
export { default as GalleryHorizontalIcon } from '../icons/gallery-horizontal';
|
|
1203
|
-
//
|
|
1204
|
-
export { default as
|
|
1201
|
+
// FunnelPlus aliases
|
|
1202
|
+
export { default as FunnelPlusIcon } from '../icons/funnel-plus';
|
|
1205
1203
|
// GalleryThumbnails aliases
|
|
1206
1204
|
export { default as GalleryThumbnailsIcon } from '../icons/gallery-thumbnails';
|
|
1205
|
+
// GalleryVerticalEnd aliases
|
|
1206
|
+
export { default as GalleryVerticalEndIcon } from '../icons/gallery-vertical-end';
|
|
1207
1207
|
// GalleryVertical aliases
|
|
1208
1208
|
export { default as GalleryVerticalIcon } from '../icons/gallery-vertical';
|
|
1209
1209
|
// Gamepad2 aliases
|
|
1210
1210
|
export { default as Gamepad2Icon } from '../icons/gamepad-2';
|
|
1211
|
+
// GamepadDirectional aliases
|
|
1212
|
+
export { default as GamepadDirectionalIcon } from '../icons/gamepad-directional';
|
|
1211
1213
|
// Gamepad aliases
|
|
1212
1214
|
export { default as GamepadIcon } from '../icons/gamepad';
|
|
1213
1215
|
// Gauge aliases
|
|
1214
1216
|
export { default as GaugeIcon } from '../icons/gauge';
|
|
1215
|
-
// GamepadDirectional aliases
|
|
1216
|
-
export { default as GamepadDirectionalIcon } from '../icons/gamepad-directional';
|
|
1217
1217
|
// Gavel aliases
|
|
1218
1218
|
export { default as GavelIcon } from '../icons/gavel';
|
|
1219
1219
|
// Gem aliases
|
|
1220
1220
|
export { default as GemIcon } from '../icons/gem';
|
|
1221
1221
|
// Ghost aliases
|
|
1222
1222
|
export { default as GhostIcon } from '../icons/ghost';
|
|
1223
|
-
// Gift aliases
|
|
1224
|
-
export { default as GiftIcon } from '../icons/gift';
|
|
1225
1223
|
// GeorgianLari aliases
|
|
1226
1224
|
export { default as GeorgianLariIcon } from '../icons/georgian-lari';
|
|
1227
1225
|
// GitBranchMinus aliases
|
|
1228
1226
|
export { default as GitBranchMinusIcon } from '../icons/git-branch-minus';
|
|
1227
|
+
// Gift aliases
|
|
1228
|
+
export { default as GiftIcon } from '../icons/gift';
|
|
1229
1229
|
// GitBranchPlus aliases
|
|
1230
1230
|
export { default as GitBranchPlusIcon } from '../icons/git-branch-plus';
|
|
1231
|
-
// GitCommitVertical aliases
|
|
1232
|
-
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1233
1231
|
// GitBranch aliases
|
|
1234
1232
|
export { default as GitBranchIcon } from '../icons/git-branch';
|
|
1235
|
-
//
|
|
1236
|
-
export { default as
|
|
1233
|
+
// GitCommitVertical aliases
|
|
1234
|
+
export { default as GitCommitVerticalIcon } from '../icons/git-commit-vertical';
|
|
1237
1235
|
// GitCompareArrows aliases
|
|
1238
1236
|
export { default as GitCompareArrowsIcon } from '../icons/git-compare-arrows';
|
|
1239
1237
|
// GitFork aliases
|
|
1240
1238
|
export { default as GitForkIcon } from '../icons/git-fork';
|
|
1241
1239
|
// GitGraph aliases
|
|
1242
1240
|
export { default as GitGraphIcon } from '../icons/git-graph';
|
|
1241
|
+
// GitCompare aliases
|
|
1242
|
+
export { default as GitCompareIcon } from '../icons/git-compare';
|
|
1243
1243
|
// GitMerge aliases
|
|
1244
1244
|
export { default as GitMergeIcon } from '../icons/git-merge';
|
|
1245
1245
|
// GitPullRequestArrow aliases
|
|
1246
1246
|
export { default as GitPullRequestArrowIcon } from '../icons/git-pull-request-arrow';
|
|
1247
|
-
//
|
|
1248
|
-
export { default as
|
|
1247
|
+
// GitPullRequestClosed aliases
|
|
1248
|
+
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1249
1249
|
// GitPullRequestCreate aliases
|
|
1250
1250
|
export { default as GitPullRequestCreateIcon } from '../icons/git-pull-request-create';
|
|
1251
|
+
// GitPullRequestCreateArrow aliases
|
|
1252
|
+
export { default as GitPullRequestCreateArrowIcon } from '../icons/git-pull-request-create-arrow';
|
|
1251
1253
|
// GitPullRequestDraft aliases
|
|
1252
1254
|
export { default as GitPullRequestDraftIcon } from '../icons/git-pull-request-draft';
|
|
1253
|
-
// GitPullRequestClosed aliases
|
|
1254
|
-
export { default as GitPullRequestClosedIcon } from '../icons/git-pull-request-closed';
|
|
1255
1255
|
// GitPullRequest aliases
|
|
1256
1256
|
export { default as GitPullRequestIcon } from '../icons/git-pull-request';
|
|
1257
1257
|
// Github aliases
|
|
1258
1258
|
export { default as GithubIcon } from '../icons/github';
|
|
1259
1259
|
// Gitlab aliases
|
|
1260
1260
|
export { default as GitlabIcon } from '../icons/gitlab';
|
|
1261
|
-
// GlassWater aliases
|
|
1262
|
-
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1263
1261
|
// Glasses aliases
|
|
1264
1262
|
export { default as GlassesIcon } from '../icons/glasses';
|
|
1263
|
+
// GlassWater aliases
|
|
1264
|
+
export { default as GlassWaterIcon } from '../icons/glass-water';
|
|
1265
1265
|
// GlobeLock aliases
|
|
1266
1266
|
export { default as GlobeLockIcon } from '../icons/globe-lock';
|
|
1267
|
+
// GlobeX aliases
|
|
1268
|
+
export { default as GlobeXIcon } from '../icons/globe-x';
|
|
1267
1269
|
// Globe aliases
|
|
1268
1270
|
export { default as GlobeIcon } from '../icons/globe';
|
|
1269
|
-
// Goal aliases
|
|
1270
|
-
export { default as GoalIcon } from '../icons/goal';
|
|
1271
1271
|
// Gpu aliases
|
|
1272
1272
|
export { default as GpuIcon } from '../icons/gpu';
|
|
1273
|
+
// Goal aliases
|
|
1274
|
+
export { default as GoalIcon } from '../icons/goal';
|
|
1273
1275
|
// GraduationCap aliases
|
|
1274
1276
|
export { default as GraduationCapIcon } from '../icons/graduation-cap';
|
|
1275
1277
|
// Grape aliases
|
|
@@ -1278,12 +1280,12 @@ export { default as GrapeIcon } from '../icons/grape';
|
|
|
1278
1280
|
export { default as Grid3x2Icon } from '../icons/grid-3x2';
|
|
1279
1281
|
// GripHorizontal aliases
|
|
1280
1282
|
export { default as GripHorizontalIcon } from '../icons/grip-horizontal';
|
|
1283
|
+
// Grip aliases
|
|
1284
|
+
export { default as GripIcon } from '../icons/grip';
|
|
1281
1285
|
// GripVertical aliases
|
|
1282
1286
|
export { default as GripVerticalIcon } from '../icons/grip-vertical';
|
|
1283
1287
|
// Group aliases
|
|
1284
1288
|
export { default as GroupIcon } from '../icons/group';
|
|
1285
|
-
// Grip aliases
|
|
1286
|
-
export { default as GripIcon } from '../icons/grip';
|
|
1287
1289
|
// Guitar aliases
|
|
1288
1290
|
export { default as GuitarIcon } from '../icons/guitar';
|
|
1289
1291
|
// Ham aliases
|
|
@@ -1364,10 +1366,10 @@ export { default as HeartPulseIcon } from '../icons/heart-pulse';
|
|
|
1364
1366
|
export { default as HeaterIcon } from '../icons/heater';
|
|
1365
1367
|
// Helicopter aliases
|
|
1366
1368
|
export { default as HelicopterIcon } from '../icons/helicopter';
|
|
1367
|
-
// Hexagon aliases
|
|
1368
|
-
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1369
1369
|
// Highlighter aliases
|
|
1370
1370
|
export { default as HighlighterIcon } from '../icons/highlighter';
|
|
1371
|
+
// Hexagon aliases
|
|
1372
|
+
export { default as HexagonIcon } from '../icons/hexagon';
|
|
1371
1373
|
// History aliases
|
|
1372
1374
|
export { default as HistoryIcon } from '../icons/history';
|
|
1373
1375
|
// HopOff aliases
|
|
@@ -1380,10 +1382,10 @@ export { default as HospitalIcon } from '../icons/hospital';
|
|
|
1380
1382
|
export { default as HotelIcon } from '../icons/hotel';
|
|
1381
1383
|
// Hourglass aliases
|
|
1382
1384
|
export { default as HourglassIcon } from '../icons/hourglass';
|
|
1383
|
-
// HouseHeart aliases
|
|
1384
|
-
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1385
1385
|
// HousePlug aliases
|
|
1386
1386
|
export { default as HousePlugIcon } from '../icons/house-plug';
|
|
1387
|
+
// HouseHeart aliases
|
|
1388
|
+
export { default as HouseHeartIcon } from '../icons/house-heart';
|
|
1387
1389
|
// HousePlus aliases
|
|
1388
1390
|
export { default as HousePlusIcon } from '../icons/house-plus';
|
|
1389
1391
|
// HouseWifi aliases
|
|
@@ -1392,34 +1394,34 @@ export { default as HouseWifiIcon } from '../icons/house-wifi';
|
|
|
1392
1394
|
export { default as IdCardLanyardIcon } from '../icons/id-card-lanyard';
|
|
1393
1395
|
// IdCard aliases
|
|
1394
1396
|
export { default as IdCardIcon } from '../icons/id-card';
|
|
1395
|
-
// ImageDown aliases
|
|
1396
|
-
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1397
1397
|
// ImageMinus aliases
|
|
1398
1398
|
export { default as ImageMinusIcon } from '../icons/image-minus';
|
|
1399
|
-
//
|
|
1400
|
-
export { default as
|
|
1399
|
+
// ImageDown aliases
|
|
1400
|
+
export { default as ImageDownIcon } from '../icons/image-down';
|
|
1401
1401
|
// ImagePlay aliases
|
|
1402
1402
|
export { default as ImagePlayIcon } from '../icons/image-play';
|
|
1403
|
-
//
|
|
1404
|
-
export { default as
|
|
1403
|
+
// ImageOff aliases
|
|
1404
|
+
export { default as ImageOffIcon } from '../icons/image-off';
|
|
1405
1405
|
// ImagePlus aliases
|
|
1406
1406
|
export { default as ImagePlusIcon } from '../icons/image-plus';
|
|
1407
|
+
// ImageUp aliases
|
|
1408
|
+
export { default as ImageUpIcon } from '../icons/image-up';
|
|
1407
1409
|
// ImageUpscale aliases
|
|
1408
1410
|
export { default as ImageUpscaleIcon } from '../icons/image-upscale';
|
|
1409
1411
|
// Image aliases
|
|
1410
1412
|
export { default as ImageIcon } from '../icons/image';
|
|
1411
1413
|
// Images aliases
|
|
1412
1414
|
export { default as ImagesIcon } from '../icons/images';
|
|
1413
|
-
// Inbox aliases
|
|
1414
|
-
export { default as InboxIcon } from '../icons/inbox';
|
|
1415
1415
|
// Import aliases
|
|
1416
1416
|
export { default as ImportIcon } from '../icons/import';
|
|
1417
|
+
// Inbox aliases
|
|
1418
|
+
export { default as InboxIcon } from '../icons/inbox';
|
|
1419
|
+
// Infinity aliases
|
|
1420
|
+
export { default as InfinityIcon } from '../icons/infinity';
|
|
1417
1421
|
// IndianRupee aliases
|
|
1418
1422
|
export { default as IndianRupeeIcon } from '../icons/indian-rupee';
|
|
1419
1423
|
// Info aliases
|
|
1420
1424
|
export { default as InfoIcon } from '../icons/info';
|
|
1421
|
-
// Infinity aliases
|
|
1422
|
-
export { default as InfinityIcon } from '../icons/infinity';
|
|
1423
1425
|
// InspectionPanel aliases
|
|
1424
1426
|
export { default as InspectionPanelIcon } from '../icons/inspection-panel';
|
|
1425
1427
|
// Instagram aliases
|
|
@@ -1428,22 +1430,22 @@ export { default as InstagramIcon } from '../icons/instagram';
|
|
|
1428
1430
|
export { default as ItalicIcon } from '../icons/italic';
|
|
1429
1431
|
// IterationCcw aliases
|
|
1430
1432
|
export { default as IterationCcwIcon } from '../icons/iteration-ccw';
|
|
1431
|
-
// IterationCw aliases
|
|
1432
|
-
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1433
|
-
// Kanban aliases
|
|
1434
|
-
export { default as KanbanIcon } from '../icons/kanban';
|
|
1435
1433
|
// JapaneseYen aliases
|
|
1436
1434
|
export { default as JapaneseYenIcon } from '../icons/japanese-yen';
|
|
1435
|
+
// Kanban aliases
|
|
1436
|
+
export { default as KanbanIcon } from '../icons/kanban';
|
|
1437
|
+
// IterationCw aliases
|
|
1438
|
+
export { default as IterationCwIcon } from '../icons/iteration-cw';
|
|
1437
1439
|
// Joystick aliases
|
|
1438
1440
|
export { default as JoystickIcon } from '../icons/joystick';
|
|
1439
1441
|
// Kayak aliases
|
|
1440
1442
|
export { default as KayakIcon } from '../icons/kayak';
|
|
1441
1443
|
// KeyRound aliases
|
|
1442
1444
|
export { default as KeyRoundIcon } from '../icons/key-round';
|
|
1443
|
-
// KeySquare aliases
|
|
1444
|
-
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1445
1445
|
// Key aliases
|
|
1446
1446
|
export { default as KeyIcon } from '../icons/key';
|
|
1447
|
+
// KeySquare aliases
|
|
1448
|
+
export { default as KeySquareIcon } from '../icons/key-square';
|
|
1447
1449
|
// KeyboardMusic aliases
|
|
1448
1450
|
export { default as KeyboardMusicIcon } from '../icons/keyboard-music';
|
|
1449
1451
|
// KeyboardOff aliases
|
|
@@ -1452,10 +1454,10 @@ export { default as KeyboardOffIcon } from '../icons/keyboard-off';
|
|
|
1452
1454
|
export { default as KeyboardIcon } from '../icons/keyboard';
|
|
1453
1455
|
// LampCeiling aliases
|
|
1454
1456
|
export { default as LampCeilingIcon } from '../icons/lamp-ceiling';
|
|
1455
|
-
// LampFloor aliases
|
|
1456
|
-
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1457
1457
|
// LampDesk aliases
|
|
1458
1458
|
export { default as LampDeskIcon } from '../icons/lamp-desk';
|
|
1459
|
+
// LampFloor aliases
|
|
1460
|
+
export { default as LampFloorIcon } from '../icons/lamp-floor';
|
|
1459
1461
|
// LampWallDown aliases
|
|
1460
1462
|
export { default as LampWallDownIcon } from '../icons/lamp-wall-down';
|
|
1461
1463
|
// LampWallUp aliases
|
|
@@ -1464,66 +1466,66 @@ export { default as LampWallUpIcon } from '../icons/lamp-wall-up';
|
|
|
1464
1466
|
export { default as LampIcon } from '../icons/lamp';
|
|
1465
1467
|
// LandPlot aliases
|
|
1466
1468
|
export { default as LandPlotIcon } from '../icons/land-plot';
|
|
1467
|
-
// Landmark aliases
|
|
1468
|
-
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1469
1469
|
// Languages aliases
|
|
1470
1470
|
export { default as LanguagesIcon } from '../icons/languages';
|
|
1471
|
+
// Landmark aliases
|
|
1472
|
+
export { default as LandmarkIcon } from '../icons/landmark';
|
|
1471
1473
|
// LaptopMinimalCheck aliases
|
|
1472
1474
|
export { default as LaptopMinimalCheckIcon } from '../icons/laptop-minimal-check';
|
|
1473
1475
|
// Laptop aliases
|
|
1474
1476
|
export { default as LaptopIcon } from '../icons/laptop';
|
|
1475
1477
|
// LassoSelect aliases
|
|
1476
1478
|
export { default as LassoSelectIcon } from '../icons/lasso-select';
|
|
1477
|
-
// Lasso aliases
|
|
1478
|
-
export { default as LassoIcon } from '../icons/lasso';
|
|
1479
1479
|
// Laugh aliases
|
|
1480
1480
|
export { default as LaughIcon } from '../icons/laugh';
|
|
1481
|
+
// Lasso aliases
|
|
1482
|
+
export { default as LassoIcon } from '../icons/lasso';
|
|
1481
1483
|
// Layers2 aliases
|
|
1482
1484
|
export { default as Layers2Icon } from '../icons/layers-2';
|
|
1483
1485
|
// LayersPlus aliases
|
|
1484
1486
|
export { default as LayersPlusIcon } from '../icons/layers-plus';
|
|
1485
|
-
// LayoutDashboard aliases
|
|
1486
|
-
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1487
1487
|
// LayoutGrid aliases
|
|
1488
1488
|
export { default as LayoutGridIcon } from '../icons/layout-grid';
|
|
1489
|
+
// LayoutDashboard aliases
|
|
1490
|
+
export { default as LayoutDashboardIcon } from '../icons/layout-dashboard';
|
|
1489
1491
|
// LayoutList aliases
|
|
1490
1492
|
export { default as LayoutListIcon } from '../icons/layout-list';
|
|
1491
1493
|
// LayoutPanelLeft aliases
|
|
1492
1494
|
export { default as LayoutPanelLeftIcon } from '../icons/layout-panel-left';
|
|
1493
1495
|
// LayoutPanelTop aliases
|
|
1494
1496
|
export { default as LayoutPanelTopIcon } from '../icons/layout-panel-top';
|
|
1495
|
-
// LayoutTemplate aliases
|
|
1496
|
-
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1497
1497
|
// Leaf aliases
|
|
1498
1498
|
export { default as LeafIcon } from '../icons/leaf';
|
|
1499
|
-
//
|
|
1500
|
-
export { default as
|
|
1499
|
+
// LayoutTemplate aliases
|
|
1500
|
+
export { default as LayoutTemplateIcon } from '../icons/layout-template';
|
|
1501
1501
|
// LeafyGreen aliases
|
|
1502
1502
|
export { default as LeafyGreenIcon } from '../icons/leafy-green';
|
|
1503
|
-
//
|
|
1504
|
-
export { default as
|
|
1503
|
+
// Lectern aliases
|
|
1504
|
+
export { default as LecternIcon } from '../icons/lectern';
|
|
1505
1505
|
// LibraryBig aliases
|
|
1506
1506
|
export { default as LibraryBigIcon } from '../icons/library-big';
|
|
1507
|
+
// Library aliases
|
|
1508
|
+
export { default as LibraryIcon } from '../icons/library';
|
|
1507
1509
|
// LifeBuoy aliases
|
|
1508
1510
|
export { default as LifeBuoyIcon } from '../icons/life-buoy';
|
|
1509
1511
|
// Ligature aliases
|
|
1510
1512
|
export { default as LigatureIcon } from '../icons/ligature';
|
|
1511
1513
|
// LightbulbOff aliases
|
|
1512
1514
|
export { default as LightbulbOffIcon } from '../icons/lightbulb-off';
|
|
1513
|
-
// Lightbulb aliases
|
|
1514
|
-
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1515
1515
|
// LineSquiggle aliases
|
|
1516
1516
|
export { default as LineSquiggleIcon } from '../icons/line-squiggle';
|
|
1517
|
-
//
|
|
1518
|
-
export { default as
|
|
1517
|
+
// Lightbulb aliases
|
|
1518
|
+
export { default as LightbulbIcon } from '../icons/lightbulb';
|
|
1519
1519
|
// Link2 aliases
|
|
1520
1520
|
export { default as Link2Icon } from '../icons/link-2';
|
|
1521
|
-
//
|
|
1522
|
-
export { default as
|
|
1521
|
+
// Link2Off aliases
|
|
1522
|
+
export { default as Link2OffIcon } from '../icons/link-2-off';
|
|
1523
1523
|
// Link aliases
|
|
1524
1524
|
export { default as LinkIcon } from '../icons/link';
|
|
1525
1525
|
// ListCheck aliases
|
|
1526
1526
|
export { default as ListCheckIcon } from '../icons/list-check';
|
|
1527
|
+
// Linkedin aliases
|
|
1528
|
+
export { default as LinkedinIcon } from '../icons/linkedin';
|
|
1527
1529
|
// ListChecks aliases
|
|
1528
1530
|
export { default as ListChecksIcon } from '../icons/list-checks';
|
|
1529
1531
|
// ListChevronsDownUp aliases
|
|
@@ -1532,20 +1534,20 @@ export { default as ListChevronsDownUpIcon } from '../icons/list-chevrons-down-u
|
|
|
1532
1534
|
export { default as ListChevronsUpDownIcon } from '../icons/list-chevrons-up-down';
|
|
1533
1535
|
// ListCollapse aliases
|
|
1534
1536
|
export { default as ListCollapseIcon } from '../icons/list-collapse';
|
|
1535
|
-
// ListEnd aliases
|
|
1536
|
-
export { default as ListEndIcon } from '../icons/list-end';
|
|
1537
1537
|
// ListFilterPlus aliases
|
|
1538
1538
|
export { default as ListFilterPlusIcon } from '../icons/list-filter-plus';
|
|
1539
|
+
// ListEnd aliases
|
|
1540
|
+
export { default as ListEndIcon } from '../icons/list-end';
|
|
1539
1541
|
// ListFilter aliases
|
|
1540
1542
|
export { default as ListFilterIcon } from '../icons/list-filter';
|
|
1541
1543
|
// ListMinus aliases
|
|
1542
1544
|
export { default as ListMinusIcon } from '../icons/list-minus';
|
|
1543
1545
|
// ListMusic aliases
|
|
1544
1546
|
export { default as ListMusicIcon } from '../icons/list-music';
|
|
1545
|
-
// ListOrdered aliases
|
|
1546
|
-
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1547
1547
|
// ListPlus aliases
|
|
1548
1548
|
export { default as ListPlusIcon } from '../icons/list-plus';
|
|
1549
|
+
// ListOrdered aliases
|
|
1550
|
+
export { default as ListOrderedIcon } from '../icons/list-ordered';
|
|
1549
1551
|
// ListRestart aliases
|
|
1550
1552
|
export { default as ListRestartIcon } from '../icons/list-restart';
|
|
1551
1553
|
// ListStart aliases
|
|
@@ -1572,10 +1574,10 @@ export { default as LocateOffIcon } from '../icons/locate-off';
|
|
|
1572
1574
|
export { default as LocateIcon } from '../icons/locate';
|
|
1573
1575
|
// LockKeyhole aliases
|
|
1574
1576
|
export { default as LockKeyholeIcon } from '../icons/lock-keyhole';
|
|
1575
|
-
// Lock aliases
|
|
1576
|
-
export { default as LockIcon } from '../icons/lock';
|
|
1577
1577
|
// LogIn aliases
|
|
1578
1578
|
export { default as LogInIcon } from '../icons/log-in';
|
|
1579
|
+
// Lock aliases
|
|
1580
|
+
export { default as LockIcon } from '../icons/lock';
|
|
1579
1581
|
// LogOut aliases
|
|
1580
1582
|
export { default as LogOutIcon } from '../icons/log-out';
|
|
1581
1583
|
// Logs aliases
|
|
@@ -1590,20 +1592,20 @@ export { default as MagnetIcon } from '../icons/magnet';
|
|
|
1590
1592
|
export { default as MailCheckIcon } from '../icons/mail-check';
|
|
1591
1593
|
// MailMinus aliases
|
|
1592
1594
|
export { default as MailMinusIcon } from '../icons/mail-minus';
|
|
1595
|
+
// MailPlus aliases
|
|
1596
|
+
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1593
1597
|
// MailOpen aliases
|
|
1594
1598
|
export { default as MailOpenIcon } from '../icons/mail-open';
|
|
1595
1599
|
// MailSearch aliases
|
|
1596
1600
|
export { default as MailSearchIcon } from '../icons/mail-search';
|
|
1597
|
-
// MailPlus aliases
|
|
1598
|
-
export { default as MailPlusIcon } from '../icons/mail-plus';
|
|
1599
|
-
// MailWarning aliases
|
|
1600
|
-
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1601
1601
|
// MailX aliases
|
|
1602
1602
|
export { default as MailXIcon } from '../icons/mail-x';
|
|
1603
|
-
//
|
|
1604
|
-
export { default as
|
|
1603
|
+
// MailWarning aliases
|
|
1604
|
+
export { default as MailWarningIcon } from '../icons/mail-warning';
|
|
1605
1605
|
// Mailbox aliases
|
|
1606
1606
|
export { default as MailboxIcon } from '../icons/mailbox';
|
|
1607
|
+
// Mail aliases
|
|
1608
|
+
export { default as MailIcon } from '../icons/mail';
|
|
1607
1609
|
// Mails aliases
|
|
1608
1610
|
export { default as MailsIcon } from '../icons/mails';
|
|
1609
1611
|
// MapMinus aliases
|
|
@@ -1612,16 +1614,16 @@ export { default as MapMinusIcon } from '../icons/map-minus';
|
|
|
1612
1614
|
export { default as MapPinCheckInsideIcon } from '../icons/map-pin-check-inside';
|
|
1613
1615
|
// MapPinCheck aliases
|
|
1614
1616
|
export { default as MapPinCheckIcon } from '../icons/map-pin-check';
|
|
1615
|
-
// MapPinHouse aliases
|
|
1616
|
-
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1617
1617
|
// MapPinMinusInside aliases
|
|
1618
1618
|
export { default as MapPinMinusInsideIcon } from '../icons/map-pin-minus-inside';
|
|
1619
|
+
// MapPinHouse aliases
|
|
1620
|
+
export { default as MapPinHouseIcon } from '../icons/map-pin-house';
|
|
1619
1621
|
// MapPinMinus aliases
|
|
1620
1622
|
export { default as MapPinMinusIcon } from '../icons/map-pin-minus';
|
|
1621
|
-
// MapPinOff aliases
|
|
1622
|
-
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1623
1623
|
// MapPinPlusInside aliases
|
|
1624
1624
|
export { default as MapPinPlusInsideIcon } from '../icons/map-pin-plus-inside';
|
|
1625
|
+
// MapPinOff aliases
|
|
1626
|
+
export { default as MapPinOffIcon } from '../icons/map-pin-off';
|
|
1625
1627
|
// MapPinPlus aliases
|
|
1626
1628
|
export { default as MapPinPlusIcon } from '../icons/map-pin-plus';
|
|
1627
1629
|
// MapPinX aliases
|
|
@@ -1630,16 +1632,16 @@ export { default as MapPinXIcon } from '../icons/map-pin-x';
|
|
|
1630
1632
|
export { default as MapPinXInsideIcon } from '../icons/map-pin-x-inside';
|
|
1631
1633
|
// MapPin aliases
|
|
1632
1634
|
export { default as MapPinIcon } from '../icons/map-pin';
|
|
1633
|
-
// MapPinned aliases
|
|
1634
|
-
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1635
|
-
// Map aliases
|
|
1636
|
-
export { default as MapIcon } from '../icons/map';
|
|
1637
1635
|
// MapPlus aliases
|
|
1638
1636
|
export { default as MapPlusIcon } from '../icons/map-plus';
|
|
1639
|
-
//
|
|
1640
|
-
export { default as
|
|
1637
|
+
// Map aliases
|
|
1638
|
+
export { default as MapIcon } from '../icons/map';
|
|
1639
|
+
// MapPinned aliases
|
|
1640
|
+
export { default as MapPinnedIcon } from '../icons/map-pinned';
|
|
1641
1641
|
// MarsStroke aliases
|
|
1642
1642
|
export { default as MarsStrokeIcon } from '../icons/mars-stroke';
|
|
1643
|
+
// Mars aliases
|
|
1644
|
+
export { default as MarsIcon } from '../icons/mars';
|
|
1643
1645
|
// Martini aliases
|
|
1644
1646
|
export { default as MartiniIcon } from '../icons/martini';
|
|
1645
1647
|
// Maximize2 aliases
|
|
@@ -1648,34 +1650,34 @@ export { default as Maximize2Icon } from '../icons/maximize-2';
|
|
|
1648
1650
|
export { default as MaximizeIcon } from '../icons/maximize';
|
|
1649
1651
|
// Medal aliases
|
|
1650
1652
|
export { default as MedalIcon } from '../icons/medal';
|
|
1651
|
-
// MegaphoneOff aliases
|
|
1652
|
-
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1653
1653
|
// Megaphone aliases
|
|
1654
1654
|
export { default as MegaphoneIcon } from '../icons/megaphone';
|
|
1655
|
-
//
|
|
1656
|
-
export { default as
|
|
1655
|
+
// MegaphoneOff aliases
|
|
1656
|
+
export { default as MegaphoneOffIcon } from '../icons/megaphone-off';
|
|
1657
1657
|
// MemoryStick aliases
|
|
1658
1658
|
export { default as MemoryStickIcon } from '../icons/memory-stick';
|
|
1659
|
+
// Meh aliases
|
|
1660
|
+
export { default as MehIcon } from '../icons/meh';
|
|
1659
1661
|
// Menu aliases
|
|
1660
1662
|
export { default as MenuIcon } from '../icons/menu';
|
|
1661
|
-
// Merge aliases
|
|
1662
|
-
export { default as MergeIcon } from '../icons/merge';
|
|
1663
1663
|
// MessageCircleCode aliases
|
|
1664
1664
|
export { default as MessageCircleCodeIcon } from '../icons/message-circle-code';
|
|
1665
|
+
// Merge aliases
|
|
1666
|
+
export { default as MergeIcon } from '../icons/merge';
|
|
1667
|
+
// MessageCircleHeart aliases
|
|
1668
|
+
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1665
1669
|
// MessageCircleDashed aliases
|
|
1666
1670
|
export { default as MessageCircleDashedIcon } from '../icons/message-circle-dashed';
|
|
1667
1671
|
// MessageCircleMore aliases
|
|
1668
1672
|
export { default as MessageCircleMoreIcon } from '../icons/message-circle-more';
|
|
1669
1673
|
// MessageCircleOff aliases
|
|
1670
1674
|
export { default as MessageCircleOffIcon } from '../icons/message-circle-off';
|
|
1671
|
-
// MessageCircleHeart aliases
|
|
1672
|
-
export { default as MessageCircleHeartIcon } from '../icons/message-circle-heart';
|
|
1673
1675
|
// MessageCirclePlus aliases
|
|
1674
1676
|
export { default as MessageCirclePlusIcon } from '../icons/message-circle-plus';
|
|
1675
|
-
// MessageCircleReply aliases
|
|
1676
|
-
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1677
1677
|
// MessageCircleWarning aliases
|
|
1678
1678
|
export { default as MessageCircleWarningIcon } from '../icons/message-circle-warning';
|
|
1679
|
+
// MessageCircleReply aliases
|
|
1680
|
+
export { default as MessageCircleReplyIcon } from '../icons/message-circle-reply';
|
|
1679
1681
|
// MessageCircleX aliases
|
|
1680
1682
|
export { default as MessageCircleXIcon } from '../icons/message-circle-x';
|
|
1681
1683
|
// MessageCircle aliases
|
|
@@ -1704,50 +1706,50 @@ export { default as MessageSquareQuoteIcon } from '../icons/message-square-quote
|
|
|
1704
1706
|
export { default as MessageSquareShareIcon } from '../icons/message-square-share';
|
|
1705
1707
|
// MessageSquareReply aliases
|
|
1706
1708
|
export { default as MessageSquareReplyIcon } from '../icons/message-square-reply';
|
|
1707
|
-
// MessageSquareWarning aliases
|
|
1708
|
-
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1709
|
-
// MessageSquareX aliases
|
|
1710
|
-
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1711
1709
|
// MessageSquareText aliases
|
|
1712
1710
|
export { default as MessageSquareTextIcon } from '../icons/message-square-text';
|
|
1713
|
-
//
|
|
1714
|
-
export { default as
|
|
1711
|
+
// MessageSquareWarning aliases
|
|
1712
|
+
export { default as MessageSquareWarningIcon } from '../icons/message-square-warning';
|
|
1713
|
+
// MessageSquareX aliases
|
|
1714
|
+
export { default as MessageSquareXIcon } from '../icons/message-square-x';
|
|
1715
1715
|
// MessageSquare aliases
|
|
1716
1716
|
export { default as MessageSquareIcon } from '../icons/message-square';
|
|
1717
|
-
//
|
|
1718
|
-
export { default as
|
|
1717
|
+
// MessagesSquare aliases
|
|
1718
|
+
export { default as MessagesSquareIcon } from '../icons/messages-square';
|
|
1719
1719
|
// Mic aliases
|
|
1720
1720
|
export { default as MicIcon } from '../icons/mic';
|
|
1721
|
+
// MicOff aliases
|
|
1722
|
+
export { default as MicOffIcon } from '../icons/mic-off';
|
|
1721
1723
|
// Microchip aliases
|
|
1722
1724
|
export { default as MicrochipIcon } from '../icons/microchip';
|
|
1723
1725
|
// Microscope aliases
|
|
1724
1726
|
export { default as MicroscopeIcon } from '../icons/microscope';
|
|
1727
|
+
// Milestone aliases
|
|
1728
|
+
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1725
1729
|
// Microwave aliases
|
|
1726
1730
|
export { default as MicrowaveIcon } from '../icons/microwave';
|
|
1727
1731
|
// MilkOff aliases
|
|
1728
1732
|
export { default as MilkOffIcon } from '../icons/milk-off';
|
|
1729
|
-
// Milestone aliases
|
|
1730
|
-
export { default as MilestoneIcon } from '../icons/milestone';
|
|
1731
1733
|
// Milk aliases
|
|
1732
1734
|
export { default as MilkIcon } from '../icons/milk';
|
|
1733
|
-
// Minimize2 aliases
|
|
1734
|
-
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1735
1735
|
// Minimize aliases
|
|
1736
1736
|
export { default as MinimizeIcon } from '../icons/minimize';
|
|
1737
|
+
// Minimize2 aliases
|
|
1738
|
+
export { default as Minimize2Icon } from '../icons/minimize-2';
|
|
1737
1739
|
// Minus aliases
|
|
1738
1740
|
export { default as MinusIcon } from '../icons/minus';
|
|
1739
|
-
// MonitorCloud aliases
|
|
1740
|
-
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1741
1741
|
// MonitorCheck aliases
|
|
1742
1742
|
export { default as MonitorCheckIcon } from '../icons/monitor-check';
|
|
1743
|
+
// MonitorCloud aliases
|
|
1744
|
+
export { default as MonitorCloudIcon } from '../icons/monitor-cloud';
|
|
1743
1745
|
// MonitorCog aliases
|
|
1744
1746
|
export { default as MonitorCogIcon } from '../icons/monitor-cog';
|
|
1745
|
-
// MonitorDot aliases
|
|
1746
|
-
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1747
|
-
// MonitorOff aliases
|
|
1748
|
-
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1749
1747
|
// MonitorDown aliases
|
|
1750
1748
|
export { default as MonitorDownIcon } from '../icons/monitor-down';
|
|
1749
|
+
// MonitorOff aliases
|
|
1750
|
+
export { default as MonitorOffIcon } from '../icons/monitor-off';
|
|
1751
|
+
// MonitorDot aliases
|
|
1752
|
+
export { default as MonitorDotIcon } from '../icons/monitor-dot';
|
|
1751
1753
|
// MonitorPause aliases
|
|
1752
1754
|
export { default as MonitorPauseIcon } from '../icons/monitor-pause';
|
|
1753
1755
|
// MonitorPlay aliases
|
|
@@ -1784,48 +1786,48 @@ export { default as MousePointer2Icon } from '../icons/mouse-pointer-2';
|
|
|
1784
1786
|
export { default as MousePointerBanIcon } from '../icons/mouse-pointer-ban';
|
|
1785
1787
|
// MousePointerClick aliases
|
|
1786
1788
|
export { default as MousePointerClickIcon } from '../icons/mouse-pointer-click';
|
|
1787
|
-
// MousePointer aliases
|
|
1788
|
-
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1789
1789
|
// Mouse aliases
|
|
1790
1790
|
export { default as MouseIcon } from '../icons/mouse';
|
|
1791
|
-
//
|
|
1792
|
-
export { default as
|
|
1791
|
+
// MousePointer aliases
|
|
1792
|
+
export { default as MousePointerIcon } from '../icons/mouse-pointer';
|
|
1793
1793
|
// MoveDiagonal2 aliases
|
|
1794
1794
|
export { default as MoveDiagonal2Icon } from '../icons/move-diagonal-2';
|
|
1795
|
+
// MoveDiagonal aliases
|
|
1796
|
+
export { default as MoveDiagonalIcon } from '../icons/move-diagonal';
|
|
1795
1797
|
// MoveDownLeft aliases
|
|
1796
1798
|
export { default as MoveDownLeftIcon } from '../icons/move-down-left';
|
|
1797
|
-
// MoveDown aliases
|
|
1798
|
-
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1799
1799
|
// MoveDownRight aliases
|
|
1800
1800
|
export { default as MoveDownRightIcon } from '../icons/move-down-right';
|
|
1801
|
+
// MoveDown aliases
|
|
1802
|
+
export { default as MoveDownIcon } from '../icons/move-down';
|
|
1801
1803
|
// MoveHorizontal aliases
|
|
1802
1804
|
export { default as MoveHorizontalIcon } from '../icons/move-horizontal';
|
|
1803
1805
|
// MoveRight aliases
|
|
1804
1806
|
export { default as MoveRightIcon } from '../icons/move-right';
|
|
1805
1807
|
// MoveLeft aliases
|
|
1806
1808
|
export { default as MoveLeftIcon } from '../icons/move-left';
|
|
1807
|
-
// MoveUpRight aliases
|
|
1808
|
-
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1809
1809
|
// MoveUpLeft aliases
|
|
1810
1810
|
export { default as MoveUpLeftIcon } from '../icons/move-up-left';
|
|
1811
1811
|
// MoveUp aliases
|
|
1812
1812
|
export { default as MoveUpIcon } from '../icons/move-up';
|
|
1813
1813
|
// MoveVertical aliases
|
|
1814
1814
|
export { default as MoveVerticalIcon } from '../icons/move-vertical';
|
|
1815
|
+
// MoveUpRight aliases
|
|
1816
|
+
export { default as MoveUpRightIcon } from '../icons/move-up-right';
|
|
1815
1817
|
// Move aliases
|
|
1816
1818
|
export { default as MoveIcon } from '../icons/move';
|
|
1817
1819
|
// Music2 aliases
|
|
1818
1820
|
export { default as Music2Icon } from '../icons/music-2';
|
|
1819
|
-
// Music4 aliases
|
|
1820
|
-
export { default as Music4Icon } from '../icons/music-4';
|
|
1821
1821
|
// Music3 aliases
|
|
1822
1822
|
export { default as Music3Icon } from '../icons/music-3';
|
|
1823
|
+
// Music4 aliases
|
|
1824
|
+
export { default as Music4Icon } from '../icons/music-4';
|
|
1823
1825
|
// Music aliases
|
|
1824
1826
|
export { default as MusicIcon } from '../icons/music';
|
|
1825
|
-
// Navigation2Off aliases
|
|
1826
|
-
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1827
1827
|
// Navigation2 aliases
|
|
1828
1828
|
export { default as Navigation2Icon } from '../icons/navigation-2';
|
|
1829
|
+
// Navigation2Off aliases
|
|
1830
|
+
export { default as Navigation2OffIcon } from '../icons/navigation-2-off';
|
|
1829
1831
|
// NavigationOff aliases
|
|
1830
1832
|
export { default as NavigationOffIcon } from '../icons/navigation-off';
|
|
1831
1833
|
// Navigation aliases
|
|
@@ -1844,60 +1846,60 @@ export { default as NotebookPenIcon } from '../icons/notebook-pen';
|
|
|
1844
1846
|
export { default as NotebookTabsIcon } from '../icons/notebook-tabs';
|
|
1845
1847
|
// NotebookText aliases
|
|
1846
1848
|
export { default as NotebookTextIcon } from '../icons/notebook-text';
|
|
1847
|
-
// NotepadTextDashed aliases
|
|
1848
|
-
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1849
1849
|
// Notebook aliases
|
|
1850
1850
|
export { default as NotebookIcon } from '../icons/notebook';
|
|
1851
|
+
// NotepadTextDashed aliases
|
|
1852
|
+
export { default as NotepadTextDashedIcon } from '../icons/notepad-text-dashed';
|
|
1851
1853
|
// NotepadText aliases
|
|
1852
1854
|
export { default as NotepadTextIcon } from '../icons/notepad-text';
|
|
1853
1855
|
// NutOff aliases
|
|
1854
1856
|
export { default as NutOffIcon } from '../icons/nut-off';
|
|
1855
|
-
// OctagonMinus aliases
|
|
1856
|
-
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1857
1857
|
// Nut aliases
|
|
1858
1858
|
export { default as NutIcon } from '../icons/nut';
|
|
1859
|
+
// OctagonMinus aliases
|
|
1860
|
+
export { default as OctagonMinusIcon } from '../icons/octagon-minus';
|
|
1859
1861
|
// Octagon aliases
|
|
1860
1862
|
export { default as OctagonIcon } from '../icons/octagon';
|
|
1861
|
-
// Omega aliases
|
|
1862
|
-
export { default as OmegaIcon } from '../icons/omega';
|
|
1863
1863
|
// Option aliases
|
|
1864
1864
|
export { default as OptionIcon } from '../icons/option';
|
|
1865
|
-
// Origami aliases
|
|
1866
|
-
export { default as OrigamiIcon } from '../icons/origami';
|
|
1867
1865
|
// Orbit aliases
|
|
1868
1866
|
export { default as OrbitIcon } from '../icons/orbit';
|
|
1867
|
+
// Omega aliases
|
|
1868
|
+
export { default as OmegaIcon } from '../icons/omega';
|
|
1869
1869
|
// Package2 aliases
|
|
1870
1870
|
export { default as Package2Icon } from '../icons/package-2';
|
|
1871
|
+
// Origami aliases
|
|
1872
|
+
export { default as OrigamiIcon } from '../icons/origami';
|
|
1871
1873
|
// PackageCheck aliases
|
|
1872
1874
|
export { default as PackageCheckIcon } from '../icons/package-check';
|
|
1873
|
-
// PackageOpen aliases
|
|
1874
|
-
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1875
1875
|
// PackageMinus aliases
|
|
1876
1876
|
export { default as PackageMinusIcon } from '../icons/package-minus';
|
|
1877
|
+
// PackageOpen aliases
|
|
1878
|
+
export { default as PackageOpenIcon } from '../icons/package-open';
|
|
1877
1879
|
// PackagePlus aliases
|
|
1878
1880
|
export { default as PackagePlusIcon } from '../icons/package-plus';
|
|
1879
1881
|
// PackageSearch aliases
|
|
1880
1882
|
export { default as PackageSearchIcon } from '../icons/package-search';
|
|
1881
|
-
// PackageX aliases
|
|
1882
|
-
export { default as PackageXIcon } from '../icons/package-x';
|
|
1883
1883
|
// Package aliases
|
|
1884
1884
|
export { default as PackageIcon } from '../icons/package';
|
|
1885
|
-
//
|
|
1886
|
-
export { default as
|
|
1885
|
+
// PackageX aliases
|
|
1886
|
+
export { default as PackageXIcon } from '../icons/package-x';
|
|
1887
1887
|
// PaintBucket aliases
|
|
1888
1888
|
export { default as PaintBucketIcon } from '../icons/paint-bucket';
|
|
1889
1889
|
// Paintbrush aliases
|
|
1890
1890
|
export { default as PaintbrushIcon } from '../icons/paintbrush';
|
|
1891
|
+
// PaintRoller aliases
|
|
1892
|
+
export { default as PaintRollerIcon } from '../icons/paint-roller';
|
|
1891
1893
|
// Palette aliases
|
|
1892
1894
|
export { default as PaletteIcon } from '../icons/palette';
|
|
1893
1895
|
// Panda aliases
|
|
1894
1896
|
export { default as PandaIcon } from '../icons/panda';
|
|
1895
1897
|
// PanelBottomClose aliases
|
|
1896
1898
|
export { default as PanelBottomCloseIcon } from '../icons/panel-bottom-close';
|
|
1897
|
-
// PanelBottomOpen aliases
|
|
1898
|
-
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1899
1899
|
// PanelBottom aliases
|
|
1900
1900
|
export { default as PanelBottomIcon } from '../icons/panel-bottom';
|
|
1901
|
+
// PanelBottomOpen aliases
|
|
1902
|
+
export { default as PanelBottomOpenIcon } from '../icons/panel-bottom-open';
|
|
1901
1903
|
// PanelLeftRightDashed aliases
|
|
1902
1904
|
export { default as PanelLeftRightDashedIcon } from '../icons/panel-left-right-dashed';
|
|
1903
1905
|
// PanelRightClose aliases
|
|
@@ -1906,58 +1908,58 @@ export { default as PanelRightCloseIcon } from '../icons/panel-right-close';
|
|
|
1906
1908
|
export { default as PanelRightOpenIcon } from '../icons/panel-right-open';
|
|
1907
1909
|
// PanelRight aliases
|
|
1908
1910
|
export { default as PanelRightIcon } from '../icons/panel-right';
|
|
1909
|
-
// PanelTopBottomDashed aliases
|
|
1910
|
-
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1911
1911
|
// PanelTopClose aliases
|
|
1912
1912
|
export { default as PanelTopCloseIcon } from '../icons/panel-top-close';
|
|
1913
|
-
//
|
|
1914
|
-
export { default as
|
|
1913
|
+
// PanelTopBottomDashed aliases
|
|
1914
|
+
export { default as PanelTopBottomDashedIcon } from '../icons/panel-top-bottom-dashed';
|
|
1915
1915
|
// PanelTopOpen aliases
|
|
1916
1916
|
export { default as PanelTopOpenIcon } from '../icons/panel-top-open';
|
|
1917
|
-
//
|
|
1918
|
-
export { default as
|
|
1917
|
+
// PanelTop aliases
|
|
1918
|
+
export { default as PanelTopIcon } from '../icons/panel-top';
|
|
1919
1919
|
// PanelsRightBottom aliases
|
|
1920
1920
|
export { default as PanelsRightBottomIcon } from '../icons/panels-right-bottom';
|
|
1921
|
-
//
|
|
1922
|
-
export { default as
|
|
1921
|
+
// PanelsLeftBottom aliases
|
|
1922
|
+
export { default as PanelsLeftBottomIcon } from '../icons/panels-left-bottom';
|
|
1923
1923
|
// Parentheses aliases
|
|
1924
1924
|
export { default as ParenthesesIcon } from '../icons/parentheses';
|
|
1925
|
+
// Paperclip aliases
|
|
1926
|
+
export { default as PaperclipIcon } from '../icons/paperclip';
|
|
1925
1927
|
// ParkingMeter aliases
|
|
1926
1928
|
export { default as ParkingMeterIcon } from '../icons/parking-meter';
|
|
1927
|
-
// Pause aliases
|
|
1928
|
-
export { default as PauseIcon } from '../icons/pause';
|
|
1929
1929
|
// PartyPopper aliases
|
|
1930
1930
|
export { default as PartyPopperIcon } from '../icons/party-popper';
|
|
1931
|
+
// Pause aliases
|
|
1932
|
+
export { default as PauseIcon } from '../icons/pause';
|
|
1931
1933
|
// PawPrint aliases
|
|
1932
1934
|
export { default as PawPrintIcon } from '../icons/paw-print';
|
|
1933
1935
|
// PcCase aliases
|
|
1934
1936
|
export { default as PcCaseIcon } from '../icons/pc-case';
|
|
1935
1937
|
// PenOff aliases
|
|
1936
1938
|
export { default as PenOffIcon } from '../icons/pen-off';
|
|
1937
|
-
// PenTool aliases
|
|
1938
|
-
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
1939
1939
|
// PencilLine aliases
|
|
1940
1940
|
export { default as PencilLineIcon } from '../icons/pencil-line';
|
|
1941
|
-
//
|
|
1942
|
-
export { default as
|
|
1941
|
+
// PenTool aliases
|
|
1942
|
+
export { default as PenToolIcon } from '../icons/pen-tool';
|
|
1943
1943
|
// PencilOff aliases
|
|
1944
1944
|
export { default as PencilOffIcon } from '../icons/pencil-off';
|
|
1945
|
+
// PencilRuler aliases
|
|
1946
|
+
export { default as PencilRulerIcon } from '../icons/pencil-ruler';
|
|
1945
1947
|
// Pencil aliases
|
|
1946
1948
|
export { default as PencilIcon } from '../icons/pencil';
|
|
1947
1949
|
// Pentagon aliases
|
|
1948
1950
|
export { default as PentagonIcon } from '../icons/pentagon';
|
|
1949
1951
|
// Percent aliases
|
|
1950
1952
|
export { default as PercentIcon } from '../icons/percent';
|
|
1951
|
-
// PersonStanding aliases
|
|
1952
|
-
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1953
1953
|
// PhilippinePeso aliases
|
|
1954
1954
|
export { default as PhilippinePesoIcon } from '../icons/philippine-peso';
|
|
1955
|
+
// PersonStanding aliases
|
|
1956
|
+
export { default as PersonStandingIcon } from '../icons/person-standing';
|
|
1955
1957
|
// PhoneCall aliases
|
|
1956
1958
|
export { default as PhoneCallIcon } from '../icons/phone-call';
|
|
1957
|
-
// PhoneForwarded aliases
|
|
1958
|
-
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1959
1959
|
// PhoneIncoming aliases
|
|
1960
1960
|
export { default as PhoneIncomingIcon } from '../icons/phone-incoming';
|
|
1961
|
+
// PhoneForwarded aliases
|
|
1962
|
+
export { default as PhoneForwardedIcon } from '../icons/phone-forwarded';
|
|
1961
1963
|
// PhoneMissed aliases
|
|
1962
1964
|
export { default as PhoneMissedIcon } from '../icons/phone-missed';
|
|
1963
1965
|
// PhoneOff aliases
|
|
@@ -1966,18 +1968,18 @@ export { default as PhoneOffIcon } from '../icons/phone-off';
|
|
|
1966
1968
|
export { default as PhoneOutgoingIcon } from '../icons/phone-outgoing';
|
|
1967
1969
|
// Phone aliases
|
|
1968
1970
|
export { default as PhoneIcon } from '../icons/phone';
|
|
1969
|
-
// Pi aliases
|
|
1970
|
-
export { default as PiIcon } from '../icons/pi';
|
|
1971
1971
|
// Piano aliases
|
|
1972
1972
|
export { default as PianoIcon } from '../icons/piano';
|
|
1973
1973
|
// Pickaxe aliases
|
|
1974
1974
|
export { default as PickaxeIcon } from '../icons/pickaxe';
|
|
1975
|
+
// Pi aliases
|
|
1976
|
+
export { default as PiIcon } from '../icons/pi';
|
|
1975
1977
|
// PictureInPicture2 aliases
|
|
1976
1978
|
export { default as PictureInPicture2Icon } from '../icons/picture-in-picture-2';
|
|
1977
|
-
// PiggyBank aliases
|
|
1978
|
-
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
1979
1979
|
// PictureInPicture aliases
|
|
1980
1980
|
export { default as PictureInPictureIcon } from '../icons/picture-in-picture';
|
|
1981
|
+
// PiggyBank aliases
|
|
1982
|
+
export { default as PiggyBankIcon } from '../icons/piggy-bank';
|
|
1981
1983
|
// PilcrowLeft aliases
|
|
1982
1984
|
export { default as PilcrowLeftIcon } from '../icons/pilcrow-left';
|
|
1983
1985
|
// PilcrowRight aliases
|
|
@@ -1996,68 +1998,70 @@ export { default as PinIcon } from '../icons/pin';
|
|
|
1996
1998
|
export { default as PipetteIcon } from '../icons/pipette';
|
|
1997
1999
|
// Pizza aliases
|
|
1998
2000
|
export { default as PizzaIcon } from '../icons/pizza';
|
|
1999
|
-
// PlaneTakeoff aliases
|
|
2000
|
-
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
2001
2001
|
// PlaneLanding aliases
|
|
2002
2002
|
export { default as PlaneLandingIcon } from '../icons/plane-landing';
|
|
2003
|
+
// PlaneTakeoff aliases
|
|
2004
|
+
export { default as PlaneTakeoffIcon } from '../icons/plane-takeoff';
|
|
2003
2005
|
// Plane aliases
|
|
2004
2006
|
export { default as PlaneIcon } from '../icons/plane';
|
|
2005
2007
|
// Play aliases
|
|
2006
2008
|
export { default as PlayIcon } from '../icons/play';
|
|
2007
|
-
// Plug aliases
|
|
2008
|
-
export { default as PlugIcon } from '../icons/plug';
|
|
2009
2009
|
// Plug2 aliases
|
|
2010
2010
|
export { default as Plug2Icon } from '../icons/plug-2';
|
|
2011
|
+
// Plug aliases
|
|
2012
|
+
export { default as PlugIcon } from '../icons/plug';
|
|
2011
2013
|
// Plus aliases
|
|
2012
2014
|
export { default as PlusIcon } from '../icons/plus';
|
|
2013
|
-
// Pocket aliases
|
|
2014
|
-
export { default as PocketIcon } from '../icons/pocket';
|
|
2015
2015
|
// PocketKnife aliases
|
|
2016
2016
|
export { default as PocketKnifeIcon } from '../icons/pocket-knife';
|
|
2017
|
-
//
|
|
2018
|
-
export { default as
|
|
2017
|
+
// Pocket aliases
|
|
2018
|
+
export { default as PocketIcon } from '../icons/pocket';
|
|
2019
2019
|
// PointerOff aliases
|
|
2020
2020
|
export { default as PointerOffIcon } from '../icons/pointer-off';
|
|
2021
|
-
//
|
|
2022
|
-
export { default as
|
|
2021
|
+
// Podcast aliases
|
|
2022
|
+
export { default as PodcastIcon } from '../icons/podcast';
|
|
2023
2023
|
// Pointer aliases
|
|
2024
2024
|
export { default as PointerIcon } from '../icons/pointer';
|
|
2025
|
+
// Popcorn aliases
|
|
2026
|
+
export { default as PopcornIcon } from '../icons/popcorn';
|
|
2025
2027
|
// Popsicle aliases
|
|
2026
2028
|
export { default as PopsicleIcon } from '../icons/popsicle';
|
|
2027
2029
|
// PoundSterling aliases
|
|
2028
2030
|
export { default as PoundSterlingIcon } from '../icons/pound-sterling';
|
|
2029
|
-
// PowerOff aliases
|
|
2030
|
-
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2031
2031
|
// Power aliases
|
|
2032
2032
|
export { default as PowerIcon } from '../icons/power';
|
|
2033
2033
|
// Presentation aliases
|
|
2034
2034
|
export { default as PresentationIcon } from '../icons/presentation';
|
|
2035
|
+
// PowerOff aliases
|
|
2036
|
+
export { default as PowerOffIcon } from '../icons/power-off';
|
|
2035
2037
|
// PrinterCheck aliases
|
|
2036
2038
|
export { default as PrinterCheckIcon } from '../icons/printer-check';
|
|
2039
|
+
// PrinterX aliases
|
|
2040
|
+
export { default as PrinterXIcon } from '../icons/printer-x';
|
|
2037
2041
|
// Printer aliases
|
|
2038
2042
|
export { default as PrinterIcon } from '../icons/printer';
|
|
2039
2043
|
// Projector aliases
|
|
2040
2044
|
export { default as ProjectorIcon } from '../icons/projector';
|
|
2041
|
-
// Proportions aliases
|
|
2042
|
-
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2043
2045
|
// Puzzle aliases
|
|
2044
2046
|
export { default as PuzzleIcon } from '../icons/puzzle';
|
|
2045
|
-
//
|
|
2046
|
-
export { default as
|
|
2047
|
+
// Proportions aliases
|
|
2048
|
+
export { default as ProportionsIcon } from '../icons/proportions';
|
|
2047
2049
|
// Pyramid aliases
|
|
2048
2050
|
export { default as PyramidIcon } from '../icons/pyramid';
|
|
2051
|
+
// QrCode aliases
|
|
2052
|
+
export { default as QrCodeIcon } from '../icons/qr-code';
|
|
2049
2053
|
// Quote aliases
|
|
2050
2054
|
export { default as QuoteIcon } from '../icons/quote';
|
|
2051
|
-
// Radar aliases
|
|
2052
|
-
export { default as RadarIcon } from '../icons/radar';
|
|
2053
2055
|
// Rabbit aliases
|
|
2054
2056
|
export { default as RabbitIcon } from '../icons/rabbit';
|
|
2057
|
+
// Radar aliases
|
|
2058
|
+
export { default as RadarIcon } from '../icons/radar';
|
|
2059
|
+
// RadioReceiver aliases
|
|
2060
|
+
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2055
2061
|
// Radiation aliases
|
|
2056
2062
|
export { default as RadiationIcon } from '../icons/radiation';
|
|
2057
2063
|
// Radical aliases
|
|
2058
2064
|
export { default as RadicalIcon } from '../icons/radical';
|
|
2059
|
-
// RadioReceiver aliases
|
|
2060
|
-
export { default as RadioReceiverIcon } from '../icons/radio-receiver';
|
|
2061
2065
|
// RadioTower aliases
|
|
2062
2066
|
export { default as RadioTowerIcon } from '../icons/radio-tower';
|
|
2063
2067
|
// Radio aliases
|
|
@@ -2068,150 +2072,150 @@ export { default as RadiusIcon } from '../icons/radius';
|
|
|
2068
2072
|
export { default as RailSymbolIcon } from '../icons/rail-symbol';
|
|
2069
2073
|
// Rainbow aliases
|
|
2070
2074
|
export { default as RainbowIcon } from '../icons/rainbow';
|
|
2071
|
-
// Rat aliases
|
|
2072
|
-
export { default as RatIcon } from '../icons/rat';
|
|
2073
2075
|
// Ratio aliases
|
|
2074
2076
|
export { default as RatioIcon } from '../icons/ratio';
|
|
2075
2077
|
// ReceiptCent aliases
|
|
2076
2078
|
export { default as ReceiptCentIcon } from '../icons/receipt-cent';
|
|
2077
2079
|
// ReceiptEuro aliases
|
|
2078
2080
|
export { default as ReceiptEuroIcon } from '../icons/receipt-euro';
|
|
2081
|
+
// Rat aliases
|
|
2082
|
+
export { default as RatIcon } from '../icons/rat';
|
|
2083
|
+
// ReceiptPoundSterling aliases
|
|
2084
|
+
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2079
2085
|
// ReceiptIndianRupee aliases
|
|
2080
2086
|
export { default as ReceiptIndianRupeeIcon } from '../icons/receipt-indian-rupee';
|
|
2081
2087
|
// ReceiptJapaneseYen aliases
|
|
2082
2088
|
export { default as ReceiptJapaneseYenIcon } from '../icons/receipt-japanese-yen';
|
|
2083
|
-
// ReceiptPoundSterling aliases
|
|
2084
|
-
export { default as ReceiptPoundSterlingIcon } from '../icons/receipt-pound-sterling';
|
|
2085
2089
|
// ReceiptRussianRuble aliases
|
|
2086
2090
|
export { default as ReceiptRussianRubleIcon } from '../icons/receipt-russian-ruble';
|
|
2087
2091
|
// ReceiptSwissFranc aliases
|
|
2088
2092
|
export { default as ReceiptSwissFrancIcon } from '../icons/receipt-swiss-franc';
|
|
2089
2093
|
// ReceiptText aliases
|
|
2090
2094
|
export { default as ReceiptTextIcon } from '../icons/receipt-text';
|
|
2091
|
-
// Receipt aliases
|
|
2092
|
-
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2093
2095
|
// ReceiptTurkishLira aliases
|
|
2094
2096
|
export { default as ReceiptTurkishLiraIcon } from '../icons/receipt-turkish-lira';
|
|
2097
|
+
// Receipt aliases
|
|
2098
|
+
export { default as ReceiptIcon } from '../icons/receipt';
|
|
2095
2099
|
// RectangleGoggles aliases
|
|
2096
2100
|
export { default as RectangleGogglesIcon } from '../icons/rectangle-goggles';
|
|
2097
2101
|
// RectangleCircle aliases
|
|
2098
2102
|
export { default as RectangleCircleIcon } from '../icons/rectangle-circle';
|
|
2099
|
-
// RectangleVertical aliases
|
|
2100
|
-
export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
2101
2103
|
// RectangleHorizontal aliases
|
|
2102
2104
|
export { default as RectangleHorizontalIcon } from '../icons/rectangle-horizontal';
|
|
2105
|
+
// RectangleVertical aliases
|
|
2106
|
+
export { default as RectangleVerticalIcon } from '../icons/rectangle-vertical';
|
|
2103
2107
|
// Recycle aliases
|
|
2104
2108
|
export { default as RecycleIcon } from '../icons/recycle';
|
|
2105
|
-
// RedoDot aliases
|
|
2106
|
-
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2107
|
-
// Redo aliases
|
|
2108
|
-
export { default as RedoIcon } from '../icons/redo';
|
|
2109
2109
|
// Redo2 aliases
|
|
2110
2110
|
export { default as Redo2Icon } from '../icons/redo-2';
|
|
2111
|
-
//
|
|
2112
|
-
export { default as
|
|
2111
|
+
// RedoDot aliases
|
|
2112
|
+
export { default as RedoDotIcon } from '../icons/redo-dot';
|
|
2113
2113
|
// RefreshCcw aliases
|
|
2114
2114
|
export { default as RefreshCcwIcon } from '../icons/refresh-ccw';
|
|
2115
|
-
//
|
|
2116
|
-
export { default as
|
|
2115
|
+
// RefreshCcwDot aliases
|
|
2116
|
+
export { default as RefreshCcwDotIcon } from '../icons/refresh-ccw-dot';
|
|
2117
|
+
// Redo aliases
|
|
2118
|
+
export { default as RedoIcon } from '../icons/redo';
|
|
2117
2119
|
// RefreshCw aliases
|
|
2118
2120
|
export { default as RefreshCwIcon } from '../icons/refresh-cw';
|
|
2119
2121
|
// Refrigerator aliases
|
|
2120
2122
|
export { default as RefrigeratorIcon } from '../icons/refrigerator';
|
|
2123
|
+
// RefreshCwOff aliases
|
|
2124
|
+
export { default as RefreshCwOffIcon } from '../icons/refresh-cw-off';
|
|
2121
2125
|
// Regex aliases
|
|
2122
2126
|
export { default as RegexIcon } from '../icons/regex';
|
|
2123
|
-
// RemoveFormatting aliases
|
|
2124
|
-
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2125
2127
|
// Repeat1 aliases
|
|
2126
2128
|
export { default as Repeat1Icon } from '../icons/repeat-1';
|
|
2129
|
+
// RemoveFormatting aliases
|
|
2130
|
+
export { default as RemoveFormattingIcon } from '../icons/remove-formatting';
|
|
2127
2131
|
// Repeat2 aliases
|
|
2128
2132
|
export { default as Repeat2Icon } from '../icons/repeat-2';
|
|
2129
2133
|
// Repeat aliases
|
|
2130
2134
|
export { default as RepeatIcon } from '../icons/repeat';
|
|
2131
|
-
// Replace aliases
|
|
2132
|
-
export { default as ReplaceIcon } from '../icons/replace';
|
|
2133
2135
|
// ReplaceAll aliases
|
|
2134
2136
|
export { default as ReplaceAllIcon } from '../icons/replace-all';
|
|
2135
|
-
//
|
|
2136
|
-
export { default as
|
|
2137
|
+
// Replace aliases
|
|
2138
|
+
export { default as ReplaceIcon } from '../icons/replace';
|
|
2137
2139
|
// Reply aliases
|
|
2138
2140
|
export { default as ReplyIcon } from '../icons/reply';
|
|
2139
|
-
//
|
|
2140
|
-
export { default as
|
|
2141
|
+
// ReplyAll aliases
|
|
2142
|
+
export { default as ReplyAllIcon } from '../icons/reply-all';
|
|
2141
2143
|
// Rewind aliases
|
|
2142
2144
|
export { default as RewindIcon } from '../icons/rewind';
|
|
2143
2145
|
// Rocket aliases
|
|
2144
2146
|
export { default as RocketIcon } from '../icons/rocket';
|
|
2147
|
+
// Ribbon aliases
|
|
2148
|
+
export { default as RibbonIcon } from '../icons/ribbon';
|
|
2145
2149
|
// RockingChair aliases
|
|
2146
2150
|
export { default as RockingChairIcon } from '../icons/rocking-chair';
|
|
2147
|
-
// RollerCoaster aliases
|
|
2148
|
-
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2149
2151
|
// Rose aliases
|
|
2150
2152
|
export { default as RoseIcon } from '../icons/rose';
|
|
2153
|
+
// RollerCoaster aliases
|
|
2154
|
+
export { default as RollerCoasterIcon } from '../icons/roller-coaster';
|
|
2151
2155
|
// RotateCcwKey aliases
|
|
2152
2156
|
export { default as RotateCcwKeyIcon } from '../icons/rotate-ccw-key';
|
|
2153
2157
|
// RotateCcwSquare aliases
|
|
2154
2158
|
export { default as RotateCcwSquareIcon } from '../icons/rotate-ccw-square';
|
|
2155
|
-
// RotateCwSquare aliases
|
|
2156
|
-
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2157
2159
|
// RotateCcw aliases
|
|
2158
2160
|
export { default as RotateCcwIcon } from '../icons/rotate-ccw';
|
|
2161
|
+
// RotateCwSquare aliases
|
|
2162
|
+
export { default as RotateCwSquareIcon } from '../icons/rotate-cw-square';
|
|
2163
|
+
// RouteOff aliases
|
|
2164
|
+
export { default as RouteOffIcon } from '../icons/route-off';
|
|
2159
2165
|
// RotateCw aliases
|
|
2160
2166
|
export { default as RotateCwIcon } from '../icons/rotate-cw';
|
|
2161
2167
|
// Route aliases
|
|
2162
2168
|
export { default as RouteIcon } from '../icons/route';
|
|
2163
2169
|
// Router aliases
|
|
2164
2170
|
export { default as RouterIcon } from '../icons/router';
|
|
2165
|
-
// RouteOff aliases
|
|
2166
|
-
export { default as RouteOffIcon } from '../icons/route-off';
|
|
2167
2171
|
// Rows4 aliases
|
|
2168
2172
|
export { default as Rows4Icon } from '../icons/rows-4';
|
|
2173
|
+
// RulerDimensionLine aliases
|
|
2174
|
+
export { default as RulerDimensionLineIcon } from '../icons/ruler-dimension-line';
|
|
2169
2175
|
// Rss aliases
|
|
2170
2176
|
export { default as RssIcon } from '../icons/rss';
|
|
2171
|
-
// Ruler aliases
|
|
2172
|
-
export { default as RulerIcon } from '../icons/ruler';
|
|
2173
2177
|
// RussianRuble aliases
|
|
2174
2178
|
export { default as RussianRubleIcon } from '../icons/russian-ruble';
|
|
2175
|
-
//
|
|
2176
|
-
export { default as
|
|
2177
|
-
// Salad aliases
|
|
2178
|
-
export { default as SaladIcon } from '../icons/salad';
|
|
2179
|
+
// Ruler aliases
|
|
2180
|
+
export { default as RulerIcon } from '../icons/ruler';
|
|
2179
2181
|
// Sailboat aliases
|
|
2180
2182
|
export { default as SailboatIcon } from '../icons/sailboat';
|
|
2183
|
+
// Salad aliases
|
|
2184
|
+
export { default as SaladIcon } from '../icons/salad';
|
|
2181
2185
|
// Sandwich aliases
|
|
2182
2186
|
export { default as SandwichIcon } from '../icons/sandwich';
|
|
2183
2187
|
// SatelliteDish aliases
|
|
2184
2188
|
export { default as SatelliteDishIcon } from '../icons/satellite-dish';
|
|
2185
2189
|
// Satellite aliases
|
|
2186
2190
|
export { default as SatelliteIcon } from '../icons/satellite';
|
|
2187
|
-
// SaudiRiyal aliases
|
|
2188
|
-
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2189
|
-
// SaveAll aliases
|
|
2190
|
-
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2191
2191
|
// SaveOff aliases
|
|
2192
2192
|
export { default as SaveOffIcon } from '../icons/save-off';
|
|
2193
|
+
// SaudiRiyal aliases
|
|
2194
|
+
export { default as SaudiRiyalIcon } from '../icons/saudi-riyal';
|
|
2193
2195
|
// Save aliases
|
|
2194
2196
|
export { default as SaveIcon } from '../icons/save';
|
|
2197
|
+
// SaveAll aliases
|
|
2198
|
+
export { default as SaveAllIcon } from '../icons/save-all';
|
|
2195
2199
|
// Scale aliases
|
|
2196
2200
|
export { default as ScaleIcon } from '../icons/scale';
|
|
2197
2201
|
// Scaling aliases
|
|
2198
2202
|
export { default as ScalingIcon } from '../icons/scaling';
|
|
2203
|
+
// ScanEye aliases
|
|
2204
|
+
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2199
2205
|
// ScanBarcode aliases
|
|
2200
2206
|
export { default as ScanBarcodeIcon } from '../icons/scan-barcode';
|
|
2201
2207
|
// ScanFace aliases
|
|
2202
2208
|
export { default as ScanFaceIcon } from '../icons/scan-face';
|
|
2203
|
-
// ScanEye aliases
|
|
2204
|
-
export { default as ScanEyeIcon } from '../icons/scan-eye';
|
|
2205
|
-
// ScanHeart aliases
|
|
2206
|
-
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2207
2209
|
// ScanLine aliases
|
|
2208
2210
|
export { default as ScanLineIcon } from '../icons/scan-line';
|
|
2211
|
+
// ScanHeart aliases
|
|
2212
|
+
export { default as ScanHeartIcon } from '../icons/scan-heart';
|
|
2209
2213
|
// ScanQrCode aliases
|
|
2210
2214
|
export { default as ScanQrCodeIcon } from '../icons/scan-qr-code';
|
|
2211
|
-
// ScanSearch aliases
|
|
2212
|
-
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2213
2215
|
// ScanText aliases
|
|
2214
2216
|
export { default as ScanTextIcon } from '../icons/scan-text';
|
|
2217
|
+
// ScanSearch aliases
|
|
2218
|
+
export { default as ScanSearchIcon } from '../icons/scan-search';
|
|
2215
2219
|
// Scan aliases
|
|
2216
2220
|
export { default as ScanIcon } from '../icons/scan';
|
|
2217
2221
|
// School aliases
|
|
@@ -2234,68 +2238,68 @@ export { default as ScrollIcon } from '../icons/scroll';
|
|
|
2234
2238
|
export { default as SearchAlertIcon } from '../icons/search-alert';
|
|
2235
2239
|
// SearchCheck aliases
|
|
2236
2240
|
export { default as SearchCheckIcon } from '../icons/search-check';
|
|
2237
|
-
// SearchCode aliases
|
|
2238
|
-
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2239
2241
|
// SearchSlash aliases
|
|
2240
2242
|
export { default as SearchSlashIcon } from '../icons/search-slash';
|
|
2243
|
+
// SearchCode aliases
|
|
2244
|
+
export { default as SearchCodeIcon } from '../icons/search-code';
|
|
2241
2245
|
// SearchX aliases
|
|
2242
2246
|
export { default as SearchXIcon } from '../icons/search-x';
|
|
2243
2247
|
// Search aliases
|
|
2244
2248
|
export { default as SearchIcon } from '../icons/search';
|
|
2249
|
+
// Section aliases
|
|
2250
|
+
export { default as SectionIcon } from '../icons/section';
|
|
2245
2251
|
// SendToBack aliases
|
|
2246
2252
|
export { default as SendToBackIcon } from '../icons/send-to-back';
|
|
2247
2253
|
// Send aliases
|
|
2248
2254
|
export { default as SendIcon } from '../icons/send';
|
|
2249
|
-
// Section aliases
|
|
2250
|
-
export { default as SectionIcon } from '../icons/section';
|
|
2251
2255
|
// SeparatorHorizontal aliases
|
|
2252
2256
|
export { default as SeparatorHorizontalIcon } from '../icons/separator-horizontal';
|
|
2253
|
-
// SeparatorVertical aliases
|
|
2254
|
-
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2255
2257
|
// ServerCog aliases
|
|
2256
2258
|
export { default as ServerCogIcon } from '../icons/server-cog';
|
|
2259
|
+
// SeparatorVertical aliases
|
|
2260
|
+
export { default as SeparatorVerticalIcon } from '../icons/separator-vertical';
|
|
2257
2261
|
// ServerCrash aliases
|
|
2258
2262
|
export { default as ServerCrashIcon } from '../icons/server-crash';
|
|
2259
|
-
// Server aliases
|
|
2260
|
-
export { default as ServerIcon } from '../icons/server';
|
|
2261
2263
|
// ServerOff aliases
|
|
2262
2264
|
export { default as ServerOffIcon } from '../icons/server-off';
|
|
2263
|
-
//
|
|
2264
|
-
export { default as
|
|
2265
|
+
// Server aliases
|
|
2266
|
+
export { default as ServerIcon } from '../icons/server';
|
|
2265
2267
|
// Settings2 aliases
|
|
2266
2268
|
export { default as Settings2Icon } from '../icons/settings-2';
|
|
2269
|
+
// Settings aliases
|
|
2270
|
+
export { default as SettingsIcon } from '../icons/settings';
|
|
2267
2271
|
// Shapes aliases
|
|
2268
2272
|
export { default as ShapesIcon } from '../icons/shapes';
|
|
2269
2273
|
// Share2 aliases
|
|
2270
2274
|
export { default as Share2Icon } from '../icons/share-2';
|
|
2271
|
-
// Share aliases
|
|
2272
|
-
export { default as ShareIcon } from '../icons/share';
|
|
2273
2275
|
// Sheet aliases
|
|
2274
2276
|
export { default as SheetIcon } from '../icons/sheet';
|
|
2275
2277
|
// Shell aliases
|
|
2276
2278
|
export { default as ShellIcon } from '../icons/shell';
|
|
2277
2279
|
// ShieldAlert aliases
|
|
2278
2280
|
export { default as ShieldAlertIcon } from '../icons/shield-alert';
|
|
2281
|
+
// Share aliases
|
|
2282
|
+
export { default as ShareIcon } from '../icons/share';
|
|
2279
2283
|
// ShieldBan aliases
|
|
2280
2284
|
export { default as ShieldBanIcon } from '../icons/shield-ban';
|
|
2281
2285
|
// ShieldCheck aliases
|
|
2282
2286
|
export { default as ShieldCheckIcon } from '../icons/shield-check';
|
|
2283
|
-
// ShieldEllipsis aliases
|
|
2284
|
-
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2285
2287
|
// ShieldHalf aliases
|
|
2286
2288
|
export { default as ShieldHalfIcon } from '../icons/shield-half';
|
|
2289
|
+
// ShieldEllipsis aliases
|
|
2290
|
+
export { default as ShieldEllipsisIcon } from '../icons/shield-ellipsis';
|
|
2287
2291
|
// ShieldMinus aliases
|
|
2288
2292
|
export { default as ShieldMinusIcon } from '../icons/shield-minus';
|
|
2289
2293
|
// ShieldOff aliases
|
|
2290
2294
|
export { default as ShieldOffIcon } from '../icons/shield-off';
|
|
2291
2295
|
// ShieldUser aliases
|
|
2292
2296
|
export { default as ShieldUserIcon } from '../icons/shield-user';
|
|
2293
|
-
// ShieldPlus aliases
|
|
2294
|
-
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2295
|
-
// Shield aliases
|
|
2296
|
-
export { default as ShieldIcon } from '../icons/shield';
|
|
2297
2297
|
// ShipWheel aliases
|
|
2298
2298
|
export { default as ShipWheelIcon } from '../icons/ship-wheel';
|
|
2299
|
+
// Shield aliases
|
|
2300
|
+
export { default as ShieldIcon } from '../icons/shield';
|
|
2301
|
+
// ShieldPlus aliases
|
|
2302
|
+
export { default as ShieldPlusIcon } from '../icons/shield-plus';
|
|
2299
2303
|
// Ship aliases
|
|
2300
2304
|
export { default as ShipIcon } from '../icons/ship';
|
|
2301
2305
|
// Shirt aliases
|
|
@@ -2310,12 +2314,12 @@ export { default as ShoppingCartIcon } from '../icons/shopping-cart';
|
|
|
2310
2314
|
export { default as ShowerHeadIcon } from '../icons/shower-head';
|
|
2311
2315
|
// Shovel aliases
|
|
2312
2316
|
export { default as ShovelIcon } from '../icons/shovel';
|
|
2317
|
+
// Shredder aliases
|
|
2318
|
+
export { default as ShredderIcon } from '../icons/shredder';
|
|
2313
2319
|
// Shrimp aliases
|
|
2314
2320
|
export { default as ShrimpIcon } from '../icons/shrimp';
|
|
2315
2321
|
// Shrink aliases
|
|
2316
2322
|
export { default as ShrinkIcon } from '../icons/shrink';
|
|
2317
|
-
// Shredder aliases
|
|
2318
|
-
export { default as ShredderIcon } from '../icons/shredder';
|
|
2319
2323
|
// Shrub aliases
|
|
2320
2324
|
export { default as ShrubIcon } from '../icons/shrub';
|
|
2321
2325
|
// Shuffle aliases
|
|
@@ -2324,10 +2328,10 @@ export { default as ShuffleIcon } from '../icons/shuffle';
|
|
|
2324
2328
|
export { default as SigmaIcon } from '../icons/sigma';
|
|
2325
2329
|
// SignalHigh aliases
|
|
2326
2330
|
export { default as SignalHighIcon } from '../icons/signal-high';
|
|
2327
|
-
// SignalMedium aliases
|
|
2328
|
-
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2329
2331
|
// SignalLow aliases
|
|
2330
2332
|
export { default as SignalLowIcon } from '../icons/signal-low';
|
|
2333
|
+
// SignalMedium aliases
|
|
2334
|
+
export { default as SignalMediumIcon } from '../icons/signal-medium';
|
|
2331
2335
|
// SignalZero aliases
|
|
2332
2336
|
export { default as SignalZeroIcon } from '../icons/signal-zero';
|
|
2333
2337
|
// Signal aliases
|
|
@@ -2336,98 +2340,98 @@ export { default as SignalIcon } from '../icons/signal';
|
|
|
2336
2340
|
export { default as SignatureIcon } from '../icons/signature';
|
|
2337
2341
|
// SignpostBig aliases
|
|
2338
2342
|
export { default as SignpostBigIcon } from '../icons/signpost-big';
|
|
2339
|
-
// Siren aliases
|
|
2340
|
-
export { default as SirenIcon } from '../icons/siren';
|
|
2341
2343
|
// Signpost aliases
|
|
2342
2344
|
export { default as SignpostIcon } from '../icons/signpost';
|
|
2345
|
+
// Siren aliases
|
|
2346
|
+
export { default as SirenIcon } from '../icons/siren';
|
|
2343
2347
|
// SkipBack aliases
|
|
2344
2348
|
export { default as SkipBackIcon } from '../icons/skip-back';
|
|
2345
2349
|
// SkipForward aliases
|
|
2346
2350
|
export { default as SkipForwardIcon } from '../icons/skip-forward';
|
|
2347
2351
|
// Skull aliases
|
|
2348
2352
|
export { default as SkullIcon } from '../icons/skull';
|
|
2353
|
+
// Slash aliases
|
|
2354
|
+
export { default as SlashIcon } from '../icons/slash';
|
|
2349
2355
|
// Slack aliases
|
|
2350
2356
|
export { default as SlackIcon } from '../icons/slack';
|
|
2351
2357
|
// Slice aliases
|
|
2352
2358
|
export { default as SliceIcon } from '../icons/slice';
|
|
2353
|
-
// Slash aliases
|
|
2354
|
-
export { default as SlashIcon } from '../icons/slash';
|
|
2355
2359
|
// SlidersHorizontal aliases
|
|
2356
2360
|
export { default as SlidersHorizontalIcon } from '../icons/sliders-horizontal';
|
|
2357
2361
|
// SmartphoneCharging aliases
|
|
2358
2362
|
export { default as SmartphoneChargingIcon } from '../icons/smartphone-charging';
|
|
2359
2363
|
// SmartphoneNfc aliases
|
|
2360
2364
|
export { default as SmartphoneNfcIcon } from '../icons/smartphone-nfc';
|
|
2361
|
-
// SmilePlus aliases
|
|
2362
|
-
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2363
2365
|
// Smartphone aliases
|
|
2364
2366
|
export { default as SmartphoneIcon } from '../icons/smartphone';
|
|
2367
|
+
// SmilePlus aliases
|
|
2368
|
+
export { default as SmilePlusIcon } from '../icons/smile-plus';
|
|
2365
2369
|
// Smile aliases
|
|
2366
2370
|
export { default as SmileIcon } from '../icons/smile';
|
|
2367
2371
|
// Snail aliases
|
|
2368
2372
|
export { default as SnailIcon } from '../icons/snail';
|
|
2373
|
+
// SoapDispenserDroplet aliases
|
|
2374
|
+
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2369
2375
|
// Snowflake aliases
|
|
2370
2376
|
export { default as SnowflakeIcon } from '../icons/snowflake';
|
|
2371
2377
|
// Sofa aliases
|
|
2372
2378
|
export { default as SofaIcon } from '../icons/sofa';
|
|
2373
|
-
// SoapDispenserDroplet aliases
|
|
2374
|
-
export { default as SoapDispenserDropletIcon } from '../icons/soap-dispenser-droplet';
|
|
2375
|
-
// SolarPanel aliases
|
|
2376
|
-
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2377
2379
|
// Soup aliases
|
|
2378
2380
|
export { default as SoupIcon } from '../icons/soup';
|
|
2381
|
+
// SolarPanel aliases
|
|
2382
|
+
export { default as SolarPanelIcon } from '../icons/solar-panel';
|
|
2383
|
+
// Space aliases
|
|
2384
|
+
export { default as SpaceIcon } from '../icons/space';
|
|
2379
2385
|
// Spade aliases
|
|
2380
2386
|
export { default as SpadeIcon } from '../icons/spade';
|
|
2381
2387
|
// Sparkle aliases
|
|
2382
2388
|
export { default as SparkleIcon } from '../icons/sparkle';
|
|
2383
|
-
// Space aliases
|
|
2384
|
-
export { default as SpaceIcon } from '../icons/space';
|
|
2385
2389
|
// Speaker aliases
|
|
2386
2390
|
export { default as SpeakerIcon } from '../icons/speaker';
|
|
2387
2391
|
// Speech aliases
|
|
2388
2392
|
export { default as SpeechIcon } from '../icons/speech';
|
|
2389
2393
|
// SpellCheck2 aliases
|
|
2390
2394
|
export { default as SpellCheck2Icon } from '../icons/spell-check-2';
|
|
2391
|
-
// SpellCheck aliases
|
|
2392
|
-
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2393
2395
|
// SplinePointer aliases
|
|
2394
2396
|
export { default as SplinePointerIcon } from '../icons/spline-pointer';
|
|
2397
|
+
// SpellCheck aliases
|
|
2398
|
+
export { default as SpellCheckIcon } from '../icons/spell-check';
|
|
2395
2399
|
// Spline aliases
|
|
2396
2400
|
export { default as SplineIcon } from '../icons/spline';
|
|
2397
|
-
// Split aliases
|
|
2398
|
-
export { default as SplitIcon } from '../icons/split';
|
|
2399
2401
|
// Spool aliases
|
|
2400
2402
|
export { default as SpoolIcon } from '../icons/spool';
|
|
2401
|
-
// SprayCan aliases
|
|
2402
|
-
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2403
2403
|
// Spotlight aliases
|
|
2404
2404
|
export { default as SpotlightIcon } from '../icons/spotlight';
|
|
2405
|
+
// Split aliases
|
|
2406
|
+
export { default as SplitIcon } from '../icons/split';
|
|
2407
|
+
// SprayCan aliases
|
|
2408
|
+
export { default as SprayCanIcon } from '../icons/spray-can';
|
|
2405
2409
|
// Sprout aliases
|
|
2406
2410
|
export { default as SproutIcon } from '../icons/sprout';
|
|
2407
2411
|
// SquareDashedBottomCode aliases
|
|
2408
2412
|
export { default as SquareDashedBottomCodeIcon } from '../icons/square-dashed-bottom-code';
|
|
2409
2413
|
// SquareDashedBottom aliases
|
|
2410
2414
|
export { default as SquareDashedBottomIcon } from '../icons/square-dashed-bottom';
|
|
2415
|
+
// SquareRoundCorner aliases
|
|
2416
|
+
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2411
2417
|
// SquareDashedTopSolid aliases
|
|
2412
2418
|
export { default as SquareDashedTopSolidIcon } from '../icons/square-dashed-top-solid';
|
|
2413
2419
|
// SquarePause aliases
|
|
2414
2420
|
export { default as SquarePauseIcon } from '../icons/square-pause';
|
|
2415
|
-
// SquareRoundCorner aliases
|
|
2416
|
-
export { default as SquareRoundCornerIcon } from '../icons/square-round-corner';
|
|
2417
2421
|
// SquareRadical aliases
|
|
2418
2422
|
export { default as SquareRadicalIcon } from '../icons/square-radical';
|
|
2419
2423
|
// SquareSquare aliases
|
|
2420
2424
|
export { default as SquareSquareIcon } from '../icons/square-square';
|
|
2421
|
-
// SquareStack aliases
|
|
2422
|
-
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2423
2425
|
// SquareStar aliases
|
|
2424
2426
|
export { default as SquareStarIcon } from '../icons/square-star';
|
|
2427
|
+
// SquaresExclude aliases
|
|
2428
|
+
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2429
|
+
// SquareStack aliases
|
|
2430
|
+
export { default as SquareStackIcon } from '../icons/square-stack';
|
|
2425
2431
|
// SquareStop aliases
|
|
2426
2432
|
export { default as SquareStopIcon } from '../icons/square-stop';
|
|
2427
2433
|
// Square aliases
|
|
2428
2434
|
export { default as SquareIcon } from '../icons/square';
|
|
2429
|
-
// SquaresExclude aliases
|
|
2430
|
-
export { default as SquaresExcludeIcon } from '../icons/squares-exclude';
|
|
2431
2435
|
// SquaresIntersect aliases
|
|
2432
2436
|
export { default as SquaresIntersectIcon } from '../icons/squares-intersect';
|
|
2433
2437
|
// SquaresSubtract aliases
|
|
@@ -2436,42 +2440,42 @@ export { default as SquaresSubtractIcon } from '../icons/squares-subtract';
|
|
|
2436
2440
|
export { default as SquaresUniteIcon } from '../icons/squares-unite';
|
|
2437
2441
|
// SquircleDashed aliases
|
|
2438
2442
|
export { default as SquircleDashedIcon } from '../icons/squircle-dashed';
|
|
2439
|
-
// Squirrel aliases
|
|
2440
|
-
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2441
2443
|
// Squircle aliases
|
|
2442
2444
|
export { default as SquircleIcon } from '../icons/squircle';
|
|
2443
2445
|
// StarHalf aliases
|
|
2444
2446
|
export { default as StarHalfIcon } from '../icons/star-half';
|
|
2445
2447
|
// Stamp aliases
|
|
2446
2448
|
export { default as StampIcon } from '../icons/stamp';
|
|
2447
|
-
//
|
|
2448
|
-
export { default as
|
|
2449
|
+
// Squirrel aliases
|
|
2450
|
+
export { default as SquirrelIcon } from '../icons/squirrel';
|
|
2449
2451
|
// Star aliases
|
|
2450
2452
|
export { default as StarIcon } from '../icons/star';
|
|
2451
2453
|
// StepBack aliases
|
|
2452
2454
|
export { default as StepBackIcon } from '../icons/step-back';
|
|
2455
|
+
// StarOff aliases
|
|
2456
|
+
export { default as StarOffIcon } from '../icons/star-off';
|
|
2453
2457
|
// StepForward aliases
|
|
2454
2458
|
export { default as StepForwardIcon } from '../icons/step-forward';
|
|
2455
2459
|
// Stethoscope aliases
|
|
2456
2460
|
export { default as StethoscopeIcon } from '../icons/stethoscope';
|
|
2457
|
-
// StickyNote aliases
|
|
2458
|
-
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2459
2461
|
// Sticker aliases
|
|
2460
2462
|
export { default as StickerIcon } from '../icons/sticker';
|
|
2463
|
+
// StickyNote aliases
|
|
2464
|
+
export { default as StickyNoteIcon } from '../icons/sticky-note';
|
|
2461
2465
|
// Stone aliases
|
|
2462
2466
|
export { default as StoneIcon } from '../icons/stone';
|
|
2463
2467
|
// Store aliases
|
|
2464
2468
|
export { default as StoreIcon } from '../icons/store';
|
|
2465
2469
|
// StretchHorizontal aliases
|
|
2466
2470
|
export { default as StretchHorizontalIcon } from '../icons/stretch-horizontal';
|
|
2467
|
-
// StretchVertical aliases
|
|
2468
|
-
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2469
2471
|
// Strikethrough aliases
|
|
2470
2472
|
export { default as StrikethroughIcon } from '../icons/strikethrough';
|
|
2471
|
-
//
|
|
2472
|
-
export { default as
|
|
2473
|
+
// StretchVertical aliases
|
|
2474
|
+
export { default as StretchVerticalIcon } from '../icons/stretch-vertical';
|
|
2473
2475
|
// Subscript aliases
|
|
2474
2476
|
export { default as SubscriptIcon } from '../icons/subscript';
|
|
2477
|
+
// SunDim aliases
|
|
2478
|
+
export { default as SunDimIcon } from '../icons/sun-dim';
|
|
2475
2479
|
// SunMedium aliases
|
|
2476
2480
|
export { default as SunMediumIcon } from '../icons/sun-medium';
|
|
2477
2481
|
// SunMoon aliases
|
|
@@ -2480,18 +2484,18 @@ export { default as SunMoonIcon } from '../icons/sun-moon';
|
|
|
2480
2484
|
export { default as SunSnowIcon } from '../icons/sun-snow';
|
|
2481
2485
|
// Sunrise aliases
|
|
2482
2486
|
export { default as SunriseIcon } from '../icons/sunrise';
|
|
2483
|
-
// Sunset aliases
|
|
2484
|
-
export { default as SunsetIcon } from '../icons/sunset';
|
|
2485
2487
|
// Sun aliases
|
|
2486
2488
|
export { default as SunIcon } from '../icons/sun';
|
|
2487
|
-
//
|
|
2488
|
-
export { default as
|
|
2489
|
+
// Sunset aliases
|
|
2490
|
+
export { default as SunsetIcon } from '../icons/sunset';
|
|
2489
2491
|
// SwatchBook aliases
|
|
2490
2492
|
export { default as SwatchBookIcon } from '../icons/swatch-book';
|
|
2491
|
-
//
|
|
2492
|
-
export { default as
|
|
2493
|
+
// Superscript aliases
|
|
2494
|
+
export { default as SuperscriptIcon } from '../icons/superscript';
|
|
2493
2495
|
// SwitchCamera aliases
|
|
2494
2496
|
export { default as SwitchCameraIcon } from '../icons/switch-camera';
|
|
2497
|
+
// SwissFranc aliases
|
|
2498
|
+
export { default as SwissFrancIcon } from '../icons/swiss-franc';
|
|
2495
2499
|
// Sword aliases
|
|
2496
2500
|
export { default as SwordIcon } from '../icons/sword';
|
|
2497
2501
|
// Swords aliases
|
|
@@ -2502,10 +2506,10 @@ export { default as SyringeIcon } from '../icons/syringe';
|
|
|
2502
2506
|
export { default as Table2Icon } from '../icons/table-2';
|
|
2503
2507
|
// TableCellsMerge aliases
|
|
2504
2508
|
export { default as TableCellsMergeIcon } from '../icons/table-cells-merge';
|
|
2505
|
-
// TableCellsSplit aliases
|
|
2506
|
-
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2507
2509
|
// TableColumnsSplit aliases
|
|
2508
2510
|
export { default as TableColumnsSplitIcon } from '../icons/table-columns-split';
|
|
2511
|
+
// TableCellsSplit aliases
|
|
2512
|
+
export { default as TableCellsSplitIcon } from '../icons/table-cells-split';
|
|
2509
2513
|
// TableProperties aliases
|
|
2510
2514
|
export { default as TablePropertiesIcon } from '../icons/table-properties';
|
|
2511
2515
|
// TableOfContents aliases
|
|
@@ -2516,24 +2520,24 @@ export { default as TableRowsSplitIcon } from '../icons/table-rows-split';
|
|
|
2516
2520
|
export { default as TableIcon } from '../icons/table';
|
|
2517
2521
|
// TabletSmartphone aliases
|
|
2518
2522
|
export { default as TabletSmartphoneIcon } from '../icons/tablet-smartphone';
|
|
2519
|
-
// Tablets aliases
|
|
2520
|
-
export { default as TabletsIcon } from '../icons/tablets';
|
|
2521
2523
|
// Tablet aliases
|
|
2522
2524
|
export { default as TabletIcon } from '../icons/tablet';
|
|
2523
2525
|
// Tag aliases
|
|
2524
2526
|
export { default as TagIcon } from '../icons/tag';
|
|
2527
|
+
// Tablets aliases
|
|
2528
|
+
export { default as TabletsIcon } from '../icons/tablets';
|
|
2525
2529
|
// Tags aliases
|
|
2526
2530
|
export { default as TagsIcon } from '../icons/tags';
|
|
2527
|
-
// Tally2 aliases
|
|
2528
|
-
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2529
2531
|
// Tally1 aliases
|
|
2530
2532
|
export { default as Tally1Icon } from '../icons/tally-1';
|
|
2533
|
+
// Tally2 aliases
|
|
2534
|
+
export { default as Tally2Icon } from '../icons/tally-2';
|
|
2531
2535
|
// Tally3 aliases
|
|
2532
2536
|
export { default as Tally3Icon } from '../icons/tally-3';
|
|
2533
|
-
// Tally4 aliases
|
|
2534
|
-
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2535
2537
|
// Tally5 aliases
|
|
2536
2538
|
export { default as Tally5Icon } from '../icons/tally-5';
|
|
2539
|
+
// Tally4 aliases
|
|
2540
|
+
export { default as Tally4Icon } from '../icons/tally-4';
|
|
2537
2541
|
// Tangent aliases
|
|
2538
2542
|
export { default as TangentIcon } from '../icons/tangent';
|
|
2539
2543
|
// Target aliases
|
|
@@ -2544,78 +2548,80 @@ export { default as TelescopeIcon } from '../icons/telescope';
|
|
|
2544
2548
|
export { default as TentTreeIcon } from '../icons/tent-tree';
|
|
2545
2549
|
// Tent aliases
|
|
2546
2550
|
export { default as TentIcon } from '../icons/tent';
|
|
2551
|
+
// TestTube aliases
|
|
2552
|
+
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2547
2553
|
// TestTubes aliases
|
|
2548
2554
|
export { default as TestTubesIcon } from '../icons/test-tubes';
|
|
2549
2555
|
// Terminal aliases
|
|
2550
2556
|
export { default as TerminalIcon } from '../icons/terminal';
|
|
2551
|
-
// TestTube aliases
|
|
2552
|
-
export { default as TestTubeIcon } from '../icons/test-tube';
|
|
2553
2557
|
// TextCursorInput aliases
|
|
2554
2558
|
export { default as TextCursorInputIcon } from '../icons/text-cursor-input';
|
|
2555
2559
|
// TextCursor aliases
|
|
2556
2560
|
export { default as TextCursorIcon } from '../icons/text-cursor';
|
|
2557
2561
|
// TextQuote aliases
|
|
2558
2562
|
export { default as TextQuoteIcon } from '../icons/text-quote';
|
|
2559
|
-
// TextSearch aliases
|
|
2560
|
-
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2561
|
-
// ThermometerSnowflake aliases
|
|
2562
|
-
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2563
2563
|
// Theater aliases
|
|
2564
2564
|
export { default as TheaterIcon } from '../icons/theater';
|
|
2565
|
+
// ThermometerSnowflake aliases
|
|
2566
|
+
export { default as ThermometerSnowflakeIcon } from '../icons/thermometer-snowflake';
|
|
2567
|
+
// TextSearch aliases
|
|
2568
|
+
export { default as TextSearchIcon } from '../icons/text-search';
|
|
2565
2569
|
// ThermometerSun aliases
|
|
2566
2570
|
export { default as ThermometerSunIcon } from '../icons/thermometer-sun';
|
|
2567
|
-
// ThumbsDown aliases
|
|
2568
|
-
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2569
2571
|
// Thermometer aliases
|
|
2570
2572
|
export { default as ThermometerIcon } from '../icons/thermometer';
|
|
2573
|
+
// ThumbsDown aliases
|
|
2574
|
+
export { default as ThumbsDownIcon } from '../icons/thumbs-down';
|
|
2571
2575
|
// ThumbsUp aliases
|
|
2572
2576
|
export { default as ThumbsUpIcon } from '../icons/thumbs-up';
|
|
2573
2577
|
// TicketCheck aliases
|
|
2574
2578
|
export { default as TicketCheckIcon } from '../icons/ticket-check';
|
|
2575
|
-
// TicketMinus aliases
|
|
2576
|
-
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2577
2579
|
// TicketPercent aliases
|
|
2578
2580
|
export { default as TicketPercentIcon } from '../icons/ticket-percent';
|
|
2581
|
+
// TicketMinus aliases
|
|
2582
|
+
export { default as TicketMinusIcon } from '../icons/ticket-minus';
|
|
2579
2583
|
// TicketPlus aliases
|
|
2580
2584
|
export { default as TicketPlusIcon } from '../icons/ticket-plus';
|
|
2581
2585
|
// TicketSlash aliases
|
|
2582
2586
|
export { default as TicketSlashIcon } from '../icons/ticket-slash';
|
|
2583
|
-
// Ticket aliases
|
|
2584
|
-
export { default as TicketIcon } from '../icons/ticket';
|
|
2585
2587
|
// TicketX aliases
|
|
2586
2588
|
export { default as TicketXIcon } from '../icons/ticket-x';
|
|
2589
|
+
// Ticket aliases
|
|
2590
|
+
export { default as TicketIcon } from '../icons/ticket';
|
|
2587
2591
|
// TicketsPlane aliases
|
|
2588
2592
|
export { default as TicketsPlaneIcon } from '../icons/tickets-plane';
|
|
2589
2593
|
// Tickets aliases
|
|
2590
2594
|
export { default as TicketsIcon } from '../icons/tickets';
|
|
2591
|
-
// TimerOff aliases
|
|
2592
|
-
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2593
2595
|
// TimerReset aliases
|
|
2594
2596
|
export { default as TimerResetIcon } from '../icons/timer-reset';
|
|
2595
2597
|
// Timer aliases
|
|
2596
2598
|
export { default as TimerIcon } from '../icons/timer';
|
|
2599
|
+
// TimerOff aliases
|
|
2600
|
+
export { default as TimerOffIcon } from '../icons/timer-off';
|
|
2597
2601
|
// ToggleLeft aliases
|
|
2598
2602
|
export { default as ToggleLeftIcon } from '../icons/toggle-left';
|
|
2599
|
-
// ToggleRight aliases
|
|
2600
|
-
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2601
2603
|
// Toilet aliases
|
|
2602
2604
|
export { default as ToiletIcon } from '../icons/toilet';
|
|
2603
|
-
//
|
|
2604
|
-
export { default as
|
|
2605
|
+
// ToggleRight aliases
|
|
2606
|
+
export { default as ToggleRightIcon } from '../icons/toggle-right';
|
|
2605
2607
|
// Tornado aliases
|
|
2606
2608
|
export { default as TornadoIcon } from '../icons/tornado';
|
|
2609
|
+
// Toolbox aliases
|
|
2610
|
+
export { default as ToolboxIcon } from '../icons/toolbox';
|
|
2611
|
+
// ToolCase aliases
|
|
2612
|
+
export { default as ToolCaseIcon } from '../icons/tool-case';
|
|
2607
2613
|
// Torus aliases
|
|
2608
2614
|
export { default as TorusIcon } from '../icons/torus';
|
|
2609
2615
|
// TouchpadOff aliases
|
|
2610
2616
|
export { default as TouchpadOffIcon } from '../icons/touchpad-off';
|
|
2611
2617
|
// Touchpad aliases
|
|
2612
2618
|
export { default as TouchpadIcon } from '../icons/touchpad';
|
|
2613
|
-
// TowerControl aliases
|
|
2614
|
-
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2615
2619
|
// ToyBrick aliases
|
|
2616
2620
|
export { default as ToyBrickIcon } from '../icons/toy-brick';
|
|
2617
2621
|
// Tractor aliases
|
|
2618
2622
|
export { default as TractorIcon } from '../icons/tractor';
|
|
2623
|
+
// TowerControl aliases
|
|
2624
|
+
export { default as TowerControlIcon } from '../icons/tower-control';
|
|
2619
2625
|
// TrafficCone aliases
|
|
2620
2626
|
export { default as TrafficConeIcon } from '../icons/traffic-cone';
|
|
2621
2627
|
// TrainFrontTunnel aliases
|
|
@@ -2630,46 +2636,46 @@ export { default as TransgenderIcon } from '../icons/transgender';
|
|
|
2630
2636
|
export { default as Trash2Icon } from '../icons/trash-2';
|
|
2631
2637
|
// Trash aliases
|
|
2632
2638
|
export { default as TrashIcon } from '../icons/trash';
|
|
2633
|
-
// TreePine aliases
|
|
2634
|
-
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2635
2639
|
// TreeDeciduous aliases
|
|
2636
2640
|
export { default as TreeDeciduousIcon } from '../icons/tree-deciduous';
|
|
2641
|
+
// TreePine aliases
|
|
2642
|
+
export { default as TreePineIcon } from '../icons/tree-pine';
|
|
2643
|
+
// Trello aliases
|
|
2644
|
+
export { default as TrelloIcon } from '../icons/trello';
|
|
2637
2645
|
// Trees aliases
|
|
2638
2646
|
export { default as TreesIcon } from '../icons/trees';
|
|
2639
2647
|
// TrendingDown aliases
|
|
2640
2648
|
export { default as TrendingDownIcon } from '../icons/trending-down';
|
|
2641
|
-
// Trello aliases
|
|
2642
|
-
export { default as TrelloIcon } from '../icons/trello';
|
|
2643
|
-
// TrendingUpDown aliases
|
|
2644
|
-
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2645
|
-
// TrendingUp aliases
|
|
2646
|
-
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2647
2649
|
// TriangleDashed aliases
|
|
2648
2650
|
export { default as TriangleDashedIcon } from '../icons/triangle-dashed';
|
|
2651
|
+
// TrendingUp aliases
|
|
2652
|
+
export { default as TrendingUpIcon } from '../icons/trending-up';
|
|
2653
|
+
// TrendingUpDown aliases
|
|
2654
|
+
export { default as TrendingUpDownIcon } from '../icons/trending-up-down';
|
|
2649
2655
|
// TriangleRight aliases
|
|
2650
2656
|
export { default as TriangleRightIcon } from '../icons/triangle-right';
|
|
2651
|
-
// Triangle aliases
|
|
2652
|
-
export { default as TriangleIcon } from '../icons/triangle';
|
|
2653
2657
|
// Trophy aliases
|
|
2654
2658
|
export { default as TrophyIcon } from '../icons/trophy';
|
|
2659
|
+
// Triangle aliases
|
|
2660
|
+
export { default as TriangleIcon } from '../icons/triangle';
|
|
2661
|
+
// TruckElectric aliases
|
|
2662
|
+
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2655
2663
|
// Truck aliases
|
|
2656
2664
|
export { default as TruckIcon } from '../icons/truck';
|
|
2657
2665
|
// TurkishLira aliases
|
|
2658
2666
|
export { default as TurkishLiraIcon } from '../icons/turkish-lira';
|
|
2659
|
-
// TruckElectric aliases
|
|
2660
|
-
export { default as TruckElectricIcon } from '../icons/truck-electric';
|
|
2661
|
-
// Turtle aliases
|
|
2662
|
-
export { default as TurtleIcon } from '../icons/turtle';
|
|
2663
|
-
// TvMinimalPlay aliases
|
|
2664
|
-
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2665
2667
|
// Turntable aliases
|
|
2666
2668
|
export { default as TurntableIcon } from '../icons/turntable';
|
|
2669
|
+
// Turtle aliases
|
|
2670
|
+
export { default as TurtleIcon } from '../icons/turtle';
|
|
2667
2671
|
// Tv aliases
|
|
2668
2672
|
export { default as TvIcon } from '../icons/tv';
|
|
2669
|
-
// Twitch aliases
|
|
2670
|
-
export { default as TwitchIcon } from '../icons/twitch';
|
|
2671
2673
|
// Twitter aliases
|
|
2672
2674
|
export { default as TwitterIcon } from '../icons/twitter';
|
|
2675
|
+
// TvMinimalPlay aliases
|
|
2676
|
+
export { default as TvMinimalPlayIcon } from '../icons/tv-minimal-play';
|
|
2677
|
+
// Twitch aliases
|
|
2678
|
+
export { default as TwitchIcon } from '../icons/twitch';
|
|
2673
2679
|
// TypeOutline aliases
|
|
2674
2680
|
export { default as TypeOutlineIcon } from '../icons/type-outline';
|
|
2675
2681
|
// Type aliases
|
|
@@ -2678,36 +2684,36 @@ export { default as TypeIcon } from '../icons/type';
|
|
|
2678
2684
|
export { default as UmbrellaOffIcon } from '../icons/umbrella-off';
|
|
2679
2685
|
// Umbrella aliases
|
|
2680
2686
|
export { default as UmbrellaIcon } from '../icons/umbrella';
|
|
2681
|
-
// Underline aliases
|
|
2682
|
-
export { default as UnderlineIcon } from '../icons/underline';
|
|
2683
|
-
// UndoDot aliases
|
|
2684
|
-
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2685
2687
|
// Undo2 aliases
|
|
2686
2688
|
export { default as Undo2Icon } from '../icons/undo-2';
|
|
2689
|
+
// Underline aliases
|
|
2690
|
+
export { default as UnderlineIcon } from '../icons/underline';
|
|
2687
2691
|
// Undo aliases
|
|
2688
2692
|
export { default as UndoIcon } from '../icons/undo';
|
|
2693
|
+
// UndoDot aliases
|
|
2694
|
+
export { default as UndoDotIcon } from '../icons/undo-dot';
|
|
2689
2695
|
// UnfoldHorizontal aliases
|
|
2690
2696
|
export { default as UnfoldHorizontalIcon } from '../icons/unfold-horizontal';
|
|
2691
|
-
// UnfoldVertical aliases
|
|
2692
|
-
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2693
2697
|
// Ungroup aliases
|
|
2694
2698
|
export { default as UngroupIcon } from '../icons/ungroup';
|
|
2695
2699
|
// Unlink2 aliases
|
|
2696
2700
|
export { default as Unlink2Icon } from '../icons/unlink-2';
|
|
2701
|
+
// UnfoldVertical aliases
|
|
2702
|
+
export { default as UnfoldVerticalIcon } from '../icons/unfold-vertical';
|
|
2697
2703
|
// Unlink aliases
|
|
2698
2704
|
export { default as UnlinkIcon } from '../icons/unlink';
|
|
2699
2705
|
// Unplug aliases
|
|
2700
2706
|
export { default as UnplugIcon } from '../icons/unplug';
|
|
2701
2707
|
// Upload aliases
|
|
2702
2708
|
export { default as UploadIcon } from '../icons/upload';
|
|
2703
|
-
// Usb aliases
|
|
2704
|
-
export { default as UsbIcon } from '../icons/usb';
|
|
2705
2709
|
// UserCheck aliases
|
|
2706
2710
|
export { default as UserCheckIcon } from '../icons/user-check';
|
|
2707
|
-
//
|
|
2708
|
-
export { default as
|
|
2711
|
+
// Usb aliases
|
|
2712
|
+
export { default as UsbIcon } from '../icons/usb';
|
|
2709
2713
|
// UserLock aliases
|
|
2710
2714
|
export { default as UserLockIcon } from '../icons/user-lock';
|
|
2715
|
+
// UserCog aliases
|
|
2716
|
+
export { default as UserCogIcon } from '../icons/user-cog';
|
|
2711
2717
|
// UserMinus aliases
|
|
2712
2718
|
export { default as UserMinusIcon } from '../icons/user-minus';
|
|
2713
2719
|
// UserPen aliases
|
|
@@ -2716,12 +2722,12 @@ export { default as UserPenIcon } from '../icons/user-pen';
|
|
|
2716
2722
|
export { default as UserPlusIcon } from '../icons/user-plus';
|
|
2717
2723
|
// UserRoundPen aliases
|
|
2718
2724
|
export { default as UserRoundPenIcon } from '../icons/user-round-pen';
|
|
2719
|
-
// UserStar aliases
|
|
2720
|
-
export { default as UserStarIcon } from '../icons/user-star';
|
|
2721
2725
|
// UserSearch aliases
|
|
2722
2726
|
export { default as UserSearchIcon } from '../icons/user-search';
|
|
2723
2727
|
// UserRoundSearch aliases
|
|
2724
2728
|
export { default as UserRoundSearchIcon } from '../icons/user-round-search';
|
|
2729
|
+
// UserStar aliases
|
|
2730
|
+
export { default as UserStarIcon } from '../icons/user-star';
|
|
2725
2731
|
// UserX aliases
|
|
2726
2732
|
export { default as UserXIcon } from '../icons/user-x';
|
|
2727
2733
|
// User aliases
|
|
@@ -2730,38 +2736,38 @@ export { default as UserIcon } from '../icons/user';
|
|
|
2730
2736
|
export { default as UsersIcon } from '../icons/users';
|
|
2731
2737
|
// UtilityPole aliases
|
|
2732
2738
|
export { default as UtilityPoleIcon } from '../icons/utility-pole';
|
|
2733
|
-
// Van aliases
|
|
2734
|
-
export { default as VanIcon } from '../icons/van';
|
|
2735
2739
|
// Variable aliases
|
|
2736
2740
|
export { default as VariableIcon } from '../icons/variable';
|
|
2737
2741
|
// Vault aliases
|
|
2738
2742
|
export { default as VaultIcon } from '../icons/vault';
|
|
2739
|
-
//
|
|
2740
|
-
export { default as
|
|
2743
|
+
// Van aliases
|
|
2744
|
+
export { default as VanIcon } from '../icons/van';
|
|
2741
2745
|
// Vegan aliases
|
|
2742
2746
|
export { default as VeganIcon } from '../icons/vegan';
|
|
2747
|
+
// VectorSquare aliases
|
|
2748
|
+
export { default as VectorSquareIcon } from '../icons/vector-square';
|
|
2743
2749
|
// VenetianMask aliases
|
|
2744
2750
|
export { default as VenetianMaskIcon } from '../icons/venetian-mask';
|
|
2745
|
-
// VenusAndMars aliases
|
|
2746
|
-
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2747
2751
|
// Venus aliases
|
|
2748
2752
|
export { default as VenusIcon } from '../icons/venus';
|
|
2749
|
-
//
|
|
2750
|
-
export { default as
|
|
2753
|
+
// VenusAndMars aliases
|
|
2754
|
+
export { default as VenusAndMarsIcon } from '../icons/venus-and-mars';
|
|
2751
2755
|
// Vibrate aliases
|
|
2752
2756
|
export { default as VibrateIcon } from '../icons/vibrate';
|
|
2753
|
-
//
|
|
2754
|
-
export { default as
|
|
2755
|
-
// Videotape aliases
|
|
2756
|
-
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2757
|
+
// VibrateOff aliases
|
|
2758
|
+
export { default as VibrateOffIcon } from '../icons/vibrate-off';
|
|
2757
2759
|
// VideoOff aliases
|
|
2758
2760
|
export { default as VideoOffIcon } from '../icons/video-off';
|
|
2761
|
+
// Video aliases
|
|
2762
|
+
export { default as VideoIcon } from '../icons/video';
|
|
2759
2763
|
// View aliases
|
|
2760
2764
|
export { default as ViewIcon } from '../icons/view';
|
|
2761
|
-
// Voicemail aliases
|
|
2762
|
-
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2763
2765
|
// Volleyball aliases
|
|
2764
2766
|
export { default as VolleyballIcon } from '../icons/volleyball';
|
|
2767
|
+
// Videotape aliases
|
|
2768
|
+
export { default as VideotapeIcon } from '../icons/videotape';
|
|
2769
|
+
// Voicemail aliases
|
|
2770
|
+
export { default as VoicemailIcon } from '../icons/voicemail';
|
|
2765
2771
|
// Volume1 aliases
|
|
2766
2772
|
export { default as Volume1Icon } from '../icons/volume-1';
|
|
2767
2773
|
// Volume2 aliases
|
|
@@ -2770,10 +2776,10 @@ export { default as Volume2Icon } from '../icons/volume-2';
|
|
|
2770
2776
|
export { default as VolumeOffIcon } from '../icons/volume-off';
|
|
2771
2777
|
// VolumeX aliases
|
|
2772
2778
|
export { default as VolumeXIcon } from '../icons/volume-x';
|
|
2773
|
-
// Vote aliases
|
|
2774
|
-
export { default as VoteIcon } from '../icons/vote';
|
|
2775
2779
|
// Volume aliases
|
|
2776
2780
|
export { default as VolumeIcon } from '../icons/volume';
|
|
2781
|
+
// Vote aliases
|
|
2782
|
+
export { default as VoteIcon } from '../icons/vote';
|
|
2777
2783
|
// WalletCards aliases
|
|
2778
2784
|
export { default as WalletCardsIcon } from '../icons/wallet-cards';
|
|
2779
2785
|
// Wallet aliases
|
|
@@ -2782,10 +2788,10 @@ export { default as WalletIcon } from '../icons/wallet';
|
|
|
2782
2788
|
export { default as WallpaperIcon } from '../icons/wallpaper';
|
|
2783
2789
|
// Wand aliases
|
|
2784
2790
|
export { default as WandIcon } from '../icons/wand';
|
|
2785
|
-
// Warehouse aliases
|
|
2786
|
-
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2787
2791
|
// WashingMachine aliases
|
|
2788
2792
|
export { default as WashingMachineIcon } from '../icons/washing-machine';
|
|
2793
|
+
// Warehouse aliases
|
|
2794
|
+
export { default as WarehouseIcon } from '../icons/warehouse';
|
|
2789
2795
|
// Watch aliases
|
|
2790
2796
|
export { default as WatchIcon } from '../icons/watch';
|
|
2791
2797
|
// WavesArrowDown aliases
|
|
@@ -2796,10 +2802,10 @@ export { default as WavesArrowUpIcon } from '../icons/waves-arrow-up';
|
|
|
2796
2802
|
export { default as WavesLadderIcon } from '../icons/waves-ladder';
|
|
2797
2803
|
// Waves aliases
|
|
2798
2804
|
export { default as WavesIcon } from '../icons/waves';
|
|
2799
|
-
// Waypoints aliases
|
|
2800
|
-
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2801
2805
|
// Webcam aliases
|
|
2802
2806
|
export { default as WebcamIcon } from '../icons/webcam';
|
|
2807
|
+
// Waypoints aliases
|
|
2808
|
+
export { default as WaypointsIcon } from '../icons/waypoints';
|
|
2803
2809
|
// WebhookOff aliases
|
|
2804
2810
|
export { default as WebhookOffIcon } from '../icons/webhook-off';
|
|
2805
2811
|
// Webhook aliases
|
|
@@ -2812,44 +2818,44 @@ export { default as WeightIcon } from '../icons/weight';
|
|
|
2812
2818
|
export { default as WheatOffIcon } from '../icons/wheat-off';
|
|
2813
2819
|
// Wheat aliases
|
|
2814
2820
|
export { default as WheatIcon } from '../icons/wheat';
|
|
2815
|
-
// WholeWord aliases
|
|
2816
|
-
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2817
2821
|
// WifiCog aliases
|
|
2818
2822
|
export { default as WifiCogIcon } from '../icons/wifi-cog';
|
|
2823
|
+
// WholeWord aliases
|
|
2824
|
+
export { default as WholeWordIcon } from '../icons/whole-word';
|
|
2819
2825
|
// WifiHigh aliases
|
|
2820
2826
|
export { default as WifiHighIcon } from '../icons/wifi-high';
|
|
2821
2827
|
// WifiLow aliases
|
|
2822
2828
|
export { default as WifiLowIcon } from '../icons/wifi-low';
|
|
2823
2829
|
// WifiOff aliases
|
|
2824
2830
|
export { default as WifiOffIcon } from '../icons/wifi-off';
|
|
2831
|
+
// WifiPen aliases
|
|
2832
|
+
export { default as WifiPenIcon } from '../icons/wifi-pen';
|
|
2825
2833
|
// WifiSync aliases
|
|
2826
2834
|
export { default as WifiSyncIcon } from '../icons/wifi-sync';
|
|
2827
|
-
// Wifi aliases
|
|
2828
|
-
export { default as WifiIcon } from '../icons/wifi';
|
|
2829
2835
|
// WifiZero aliases
|
|
2830
2836
|
export { default as WifiZeroIcon } from '../icons/wifi-zero';
|
|
2831
|
-
//
|
|
2832
|
-
export { default as
|
|
2837
|
+
// Wifi aliases
|
|
2838
|
+
export { default as WifiIcon } from '../icons/wifi';
|
|
2833
2839
|
// WindArrowDown aliases
|
|
2834
2840
|
export { default as WindArrowDownIcon } from '../icons/wind-arrow-down';
|
|
2835
|
-
// WineOff aliases
|
|
2836
|
-
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2837
2841
|
// Wind aliases
|
|
2838
2842
|
export { default as WindIcon } from '../icons/wind';
|
|
2843
|
+
// WineOff aliases
|
|
2844
|
+
export { default as WineOffIcon } from '../icons/wine-off';
|
|
2839
2845
|
// Wine aliases
|
|
2840
2846
|
export { default as WineIcon } from '../icons/wine';
|
|
2847
|
+
// Workflow aliases
|
|
2848
|
+
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2841
2849
|
// Worm aliases
|
|
2842
2850
|
export { default as WormIcon } from '../icons/worm';
|
|
2843
2851
|
// Wrench aliases
|
|
2844
2852
|
export { default as WrenchIcon } from '../icons/wrench';
|
|
2845
|
-
// Workflow aliases
|
|
2846
|
-
export { default as WorkflowIcon } from '../icons/workflow';
|
|
2847
2853
|
// X aliases
|
|
2848
2854
|
export { default as XIcon } from '../icons/x';
|
|
2849
|
-
// ZapOff aliases
|
|
2850
|
-
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2851
2855
|
// Youtube aliases
|
|
2852
2856
|
export { default as YoutubeIcon } from '../icons/youtube';
|
|
2857
|
+
// ZapOff aliases
|
|
2858
|
+
export { default as ZapOffIcon } from '../icons/zap-off';
|
|
2853
2859
|
// Zap aliases
|
|
2854
2860
|
export { default as ZapIcon } from '../icons/zap';
|
|
2855
2861
|
// ZoomIn aliases
|
|
@@ -2918,12 +2924,6 @@ export {
|
|
|
2918
2924
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
2919
2925
|
default as ArrowUpZaIcon
|
|
2920
2926
|
} from '../icons/arrow-up-z-a';
|
|
2921
|
-
// Axis3d aliases
|
|
2922
|
-
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2923
|
-
export {
|
|
2924
|
-
/** @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 */
|
|
2925
|
-
default as Axis3DIcon
|
|
2926
|
-
} from '../icons/axis-3d';
|
|
2927
2927
|
// BadgeCheck aliases
|
|
2928
2928
|
export { default as BadgeCheckIcon } from '../icons/badge-check';
|
|
2929
2929
|
export {
|
|
@@ -2936,6 +2936,12 @@ export {
|
|
|
2936
2936
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. This alias will be removed in v1.0 */
|
|
2937
2937
|
default as BadgeHelpIcon
|
|
2938
2938
|
} from '../icons/badge-question-mark';
|
|
2939
|
+
// Axis3d aliases
|
|
2940
|
+
export { default as Axis3dIcon } from '../icons/axis-3d';
|
|
2941
|
+
export {
|
|
2942
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
|
|
2943
|
+
default as Axis3DIcon
|
|
2944
|
+
} from '../icons/axis-3d';
|
|
2939
2945
|
// BetweenHorizontalEnd aliases
|
|
2940
2946
|
export { default as BetweenHorizontalEndIcon } from '../icons/between-horizontal-end';
|
|
2941
2947
|
export {
|
|
@@ -2960,18 +2966,18 @@ export {
|
|
|
2960
2966
|
/** @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 */
|
|
2961
2967
|
default as CurlyBracesIcon
|
|
2962
2968
|
} from '../icons/braces';
|
|
2963
|
-
// Captions aliases
|
|
2964
|
-
export { default as CaptionsIcon } from '../icons/captions';
|
|
2965
|
-
export {
|
|
2966
|
-
/** @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 */
|
|
2967
|
-
default as SubtitlesIcon
|
|
2968
|
-
} from '../icons/captions';
|
|
2969
2969
|
// ChartArea aliases
|
|
2970
2970
|
export { default as ChartAreaIcon } from '../icons/chart-area';
|
|
2971
2971
|
export {
|
|
2972
2972
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
2973
2973
|
default as AreaChartIcon
|
|
2974
2974
|
} from '../icons/chart-area';
|
|
2975
|
+
// Captions aliases
|
|
2976
|
+
export { default as CaptionsIcon } from '../icons/captions';
|
|
2977
|
+
export {
|
|
2978
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. This alias will be removed in v1.0 */
|
|
2979
|
+
default as SubtitlesIcon
|
|
2980
|
+
} from '../icons/captions';
|
|
2975
2981
|
// ChartBarBig aliases
|
|
2976
2982
|
export { default as ChartBarBigIcon } from '../icons/chart-bar-big';
|
|
2977
2983
|
export {
|
|
@@ -3002,60 +3008,60 @@ export {
|
|
|
3002
3008
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3003
3009
|
default as BarChart4Icon
|
|
3004
3010
|
} from '../icons/chart-column-increasing';
|
|
3005
|
-
//
|
|
3006
|
-
export { default as
|
|
3011
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
3012
|
+
export { default as ChartNoAxesColumnIncreasingIcon } from '../icons/chart-no-axes-column-increasing';
|
|
3007
3013
|
export {
|
|
3008
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3009
|
-
default as
|
|
3010
|
-
} from '../icons/chart-column';
|
|
3014
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3015
|
+
default as BarChartIcon
|
|
3016
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
3011
3017
|
// ChartLine aliases
|
|
3012
3018
|
export { default as ChartLineIcon } from '../icons/chart-line';
|
|
3013
3019
|
export {
|
|
3014
3020
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. This alias will be removed in v1.0 */
|
|
3015
3021
|
default as LineChartIcon
|
|
3016
3022
|
} from '../icons/chart-line';
|
|
3017
|
-
//
|
|
3018
|
-
export { default as
|
|
3019
|
-
export {
|
|
3020
|
-
/** @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 */
|
|
3021
|
-
default as BarChartIcon
|
|
3022
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
3023
|
-
// ChartNoAxesColumn aliases
|
|
3024
|
-
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
3023
|
+
// ChartColumn aliases
|
|
3024
|
+
export { default as ChartColumnIcon } from '../icons/chart-column';
|
|
3025
3025
|
export {
|
|
3026
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3027
|
-
default as
|
|
3028
|
-
} from '../icons/chart-
|
|
3026
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
3027
|
+
default as BarChart3Icon
|
|
3028
|
+
} from '../icons/chart-column';
|
|
3029
3029
|
// ChartNoAxesGantt aliases
|
|
3030
3030
|
export { default as ChartNoAxesGanttIcon } from '../icons/chart-no-axes-gantt';
|
|
3031
3031
|
export {
|
|
3032
3032
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
3033
3033
|
default as GanttChartIcon
|
|
3034
3034
|
} from '../icons/chart-no-axes-gantt';
|
|
3035
|
-
//
|
|
3036
|
-
export { default as
|
|
3035
|
+
// ChartNoAxesColumn aliases
|
|
3036
|
+
export { default as ChartNoAxesColumnIcon } from '../icons/chart-no-axes-column';
|
|
3037
3037
|
export {
|
|
3038
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3039
|
-
default as
|
|
3040
|
-
} from '../icons/chart-
|
|
3038
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. This alias will be removed in v1.0 */
|
|
3039
|
+
default as BarChart2Icon
|
|
3040
|
+
} from '../icons/chart-no-axes-column';
|
|
3041
3041
|
// ChartPie aliases
|
|
3042
3042
|
export { default as ChartPieIcon } from '../icons/chart-pie';
|
|
3043
3043
|
export {
|
|
3044
3044
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
3045
3045
|
default as PieChartIcon
|
|
3046
3046
|
} from '../icons/chart-pie';
|
|
3047
|
-
//
|
|
3048
|
-
export { default as
|
|
3047
|
+
// ChartScatter aliases
|
|
3048
|
+
export { default as ChartScatterIcon } from '../icons/chart-scatter';
|
|
3049
3049
|
export {
|
|
3050
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3051
|
-
default as
|
|
3052
|
-
} from '../icons/
|
|
3050
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
3051
|
+
default as ScatterChartIcon
|
|
3052
|
+
} from '../icons/chart-scatter';
|
|
3053
3053
|
// Chromium aliases
|
|
3054
3054
|
export { default as ChromiumIcon } from '../icons/chromium';
|
|
3055
3055
|
export {
|
|
3056
3056
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Chromium} instead. This alias will be removed in v1.0 */
|
|
3057
3057
|
default as ChromeIcon
|
|
3058
3058
|
} from '../icons/chromium';
|
|
3059
|
+
// CircleAlert aliases
|
|
3060
|
+
export { default as CircleAlertIcon } from '../icons/circle-alert';
|
|
3061
|
+
export {
|
|
3062
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
3063
|
+
default as AlertCircleIcon
|
|
3064
|
+
} from '../icons/circle-alert';
|
|
3059
3065
|
// CircleArrowDown aliases
|
|
3060
3066
|
export { default as CircleArrowDownIcon } from '../icons/circle-arrow-down';
|
|
3061
3067
|
export {
|
|
@@ -3092,48 +3098,48 @@ export {
|
|
|
3092
3098
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
3093
3099
|
default as ArrowUpRightFromCircleIcon
|
|
3094
3100
|
} from '../icons/circle-arrow-out-up-right';
|
|
3095
|
-
// CircleArrowRight aliases
|
|
3096
|
-
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3097
|
-
export {
|
|
3098
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
3099
|
-
default as ArrowRightCircleIcon
|
|
3100
|
-
} from '../icons/circle-arrow-right';
|
|
3101
3101
|
// CircleArrowUp aliases
|
|
3102
3102
|
export { default as CircleArrowUpIcon } from '../icons/circle-arrow-up';
|
|
3103
3103
|
export {
|
|
3104
3104
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
3105
3105
|
default as ArrowUpCircleIcon
|
|
3106
3106
|
} from '../icons/circle-arrow-up';
|
|
3107
|
-
//
|
|
3108
|
-
export { default as
|
|
3107
|
+
// CircleArrowRight aliases
|
|
3108
|
+
export { default as CircleArrowRightIcon } from '../icons/circle-arrow-right';
|
|
3109
3109
|
export {
|
|
3110
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3111
|
-
default as
|
|
3112
|
-
} from '../icons/circle-
|
|
3110
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
3111
|
+
default as ArrowRightCircleIcon
|
|
3112
|
+
} from '../icons/circle-arrow-right';
|
|
3113
3113
|
// CircleCheckBig aliases
|
|
3114
3114
|
export { default as CircleCheckBigIcon } from '../icons/circle-check-big';
|
|
3115
3115
|
export {
|
|
3116
3116
|
/** @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 */
|
|
3117
3117
|
default as CheckCircleIcon
|
|
3118
3118
|
} from '../icons/circle-check-big';
|
|
3119
|
+
// CircleCheck aliases
|
|
3120
|
+
export { default as CircleCheckIcon } from '../icons/circle-check';
|
|
3121
|
+
export {
|
|
3122
|
+
/** @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 */
|
|
3123
|
+
default as CheckCircle2Icon
|
|
3124
|
+
} from '../icons/circle-check';
|
|
3119
3125
|
// CircleChevronDown aliases
|
|
3120
3126
|
export { default as CircleChevronDownIcon } from '../icons/circle-chevron-down';
|
|
3121
3127
|
export {
|
|
3122
3128
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. This alias will be removed in v1.0 */
|
|
3123
3129
|
default as ChevronDownCircleIcon
|
|
3124
3130
|
} from '../icons/circle-chevron-down';
|
|
3125
|
-
// CircleChevronLeft aliases
|
|
3126
|
-
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3127
|
-
export {
|
|
3128
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3129
|
-
default as ChevronLeftCircleIcon
|
|
3130
|
-
} from '../icons/circle-chevron-left';
|
|
3131
3131
|
// CircleChevronRight aliases
|
|
3132
3132
|
export { default as CircleChevronRightIcon } from '../icons/circle-chevron-right';
|
|
3133
3133
|
export {
|
|
3134
3134
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
3135
3135
|
default as ChevronRightCircleIcon
|
|
3136
3136
|
} from '../icons/circle-chevron-right';
|
|
3137
|
+
// CircleChevronLeft aliases
|
|
3138
|
+
export { default as CircleChevronLeftIcon } from '../icons/circle-chevron-left';
|
|
3139
|
+
export {
|
|
3140
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
3141
|
+
default as ChevronLeftCircleIcon
|
|
3142
|
+
} from '../icons/circle-chevron-left';
|
|
3137
3143
|
// CircleChevronUp aliases
|
|
3138
3144
|
export { default as CircleChevronUpIcon } from '../icons/circle-chevron-up';
|
|
3139
3145
|
export {
|
|
@@ -3146,12 +3152,6 @@ export {
|
|
|
3146
3152
|
/** @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 */
|
|
3147
3153
|
default as DivideCircleIcon
|
|
3148
3154
|
} from '../icons/circle-divide';
|
|
3149
|
-
// CircleParkingOff aliases
|
|
3150
|
-
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3151
|
-
export {
|
|
3152
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
3153
|
-
default as ParkingCircleOffIcon
|
|
3154
|
-
} from '../icons/circle-parking-off';
|
|
3155
3155
|
// CircleGauge aliases
|
|
3156
3156
|
export { default as CircleGaugeIcon } from '../icons/circle-gauge';
|
|
3157
3157
|
export {
|
|
@@ -3164,58 +3164,58 @@ export {
|
|
|
3164
3164
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
3165
3165
|
default as MinusCircleIcon
|
|
3166
3166
|
} from '../icons/circle-minus';
|
|
3167
|
-
//
|
|
3168
|
-
export { default as
|
|
3169
|
-
export {
|
|
3170
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. This alias will be removed in v1.0 */
|
|
3171
|
-
default as PauseCircleIcon
|
|
3172
|
-
} from '../icons/circle-pause';
|
|
3173
|
-
// CirclePercent aliases
|
|
3174
|
-
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3167
|
+
// CircleParkingOff aliases
|
|
3168
|
+
export { default as CircleParkingOffIcon } from '../icons/circle-parking-off';
|
|
3175
3169
|
export {
|
|
3176
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3177
|
-
default as
|
|
3178
|
-
} from '../icons/circle-
|
|
3170
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
3171
|
+
default as ParkingCircleOffIcon
|
|
3172
|
+
} from '../icons/circle-parking-off';
|
|
3179
3173
|
// CircleParking aliases
|
|
3180
3174
|
export { default as CircleParkingIcon } from '../icons/circle-parking';
|
|
3181
3175
|
export {
|
|
3182
3176
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. This alias will be removed in v1.0 */
|
|
3183
3177
|
default as ParkingCircleIcon
|
|
3184
3178
|
} from '../icons/circle-parking';
|
|
3179
|
+
// CirclePause aliases
|
|
3180
|
+
export { default as CirclePauseIcon } from '../icons/circle-pause';
|
|
3181
|
+
export {
|
|
3182
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. This alias will be removed in v1.0 */
|
|
3183
|
+
default as PauseCircleIcon
|
|
3184
|
+
} from '../icons/circle-pause';
|
|
3185
3185
|
// CirclePlay aliases
|
|
3186
3186
|
export { default as CirclePlayIcon } from '../icons/circle-play';
|
|
3187
3187
|
export {
|
|
3188
3188
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
3189
3189
|
default as PlayCircleIcon
|
|
3190
3190
|
} from '../icons/circle-play';
|
|
3191
|
-
// CircleQuestionMark aliases
|
|
3192
|
-
export { default as CircleQuestionMarkIcon } from '../icons/circle-question-mark';
|
|
3193
|
-
export {
|
|
3194
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3195
|
-
default as HelpCircleIcon
|
|
3196
|
-
} from '../icons/circle-question-mark';
|
|
3197
|
-
export {
|
|
3198
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3199
|
-
default as CircleHelpIcon
|
|
3200
|
-
} from '../icons/circle-question-mark';
|
|
3201
3191
|
// CirclePlus aliases
|
|
3202
3192
|
export { default as CirclePlusIcon } from '../icons/circle-plus';
|
|
3203
3193
|
export {
|
|
3204
3194
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
3205
3195
|
default as PlusCircleIcon
|
|
3206
3196
|
} from '../icons/circle-plus';
|
|
3197
|
+
// CirclePercent aliases
|
|
3198
|
+
export { default as CirclePercentIcon } from '../icons/circle-percent';
|
|
3199
|
+
export {
|
|
3200
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
3201
|
+
default as PercentCircleIcon
|
|
3202
|
+
} from '../icons/circle-percent';
|
|
3207
3203
|
// CirclePower aliases
|
|
3208
3204
|
export { default as CirclePowerIcon } from '../icons/circle-power';
|
|
3209
3205
|
export {
|
|
3210
3206
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePower} instead. This alias will be removed in v1.0 */
|
|
3211
3207
|
default as PowerCircleIcon
|
|
3212
3208
|
} from '../icons/circle-power';
|
|
3213
|
-
//
|
|
3214
|
-
export { default as
|
|
3209
|
+
// CircleQuestionMark aliases
|
|
3210
|
+
export { default as CircleQuestionMarkIcon } from '../icons/circle-question-mark';
|
|
3215
3211
|
export {
|
|
3216
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3217
|
-
default as
|
|
3218
|
-
} from '../icons/circle-
|
|
3212
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3213
|
+
default as HelpCircleIcon
|
|
3214
|
+
} from '../icons/circle-question-mark';
|
|
3215
|
+
export {
|
|
3216
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3217
|
+
default as CircleHelpIcon
|
|
3218
|
+
} from '../icons/circle-question-mark';
|
|
3219
3219
|
// CircleStop aliases
|
|
3220
3220
|
export { default as CircleStopIcon } from '../icons/circle-stop';
|
|
3221
3221
|
export {
|
|
@@ -3234,24 +3234,30 @@ export {
|
|
|
3234
3234
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
3235
3235
|
default as UserCircleIcon
|
|
3236
3236
|
} from '../icons/circle-user';
|
|
3237
|
+
// CircleSlash2 aliases
|
|
3238
|
+
export { default as CircleSlash2Icon } from '../icons/circle-slash-2';
|
|
3239
|
+
export {
|
|
3240
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
3241
|
+
default as CircleSlashedIcon
|
|
3242
|
+
} from '../icons/circle-slash-2';
|
|
3237
3243
|
// CircleX aliases
|
|
3238
3244
|
export { default as CircleXIcon } from '../icons/circle-x';
|
|
3239
3245
|
export {
|
|
3240
3246
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
3241
3247
|
default as XCircleIcon
|
|
3242
3248
|
} from '../icons/circle-x';
|
|
3243
|
-
// ClipboardPenLine aliases
|
|
3244
|
-
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3245
|
-
export {
|
|
3246
|
-
/** @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 */
|
|
3247
|
-
default as ClipboardSignatureIcon
|
|
3248
|
-
} from '../icons/clipboard-pen-line';
|
|
3249
3249
|
// ClipboardPen aliases
|
|
3250
3250
|
export { default as ClipboardPenIcon } from '../icons/clipboard-pen';
|
|
3251
3251
|
export {
|
|
3252
3252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. This alias will be removed in v1.0 */
|
|
3253
3253
|
default as ClipboardEditIcon
|
|
3254
3254
|
} from '../icons/clipboard-pen';
|
|
3255
|
+
// ClipboardPenLine aliases
|
|
3256
|
+
export { default as ClipboardPenLineIcon } from '../icons/clipboard-pen-line';
|
|
3257
|
+
export {
|
|
3258
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. This alias will be removed in v1.0 */
|
|
3259
|
+
default as ClipboardSignatureIcon
|
|
3260
|
+
} from '../icons/clipboard-pen-line';
|
|
3255
3261
|
// CloudDownload aliases
|
|
3256
3262
|
export { default as CloudDownloadIcon } from '../icons/cloud-download';
|
|
3257
3263
|
export {
|
|
@@ -3270,12 +3276,6 @@ export {
|
|
|
3270
3276
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
3271
3277
|
default as ColumnsIcon
|
|
3272
3278
|
} from '../icons/columns-2';
|
|
3273
|
-
// CodeXml aliases
|
|
3274
|
-
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3275
|
-
export {
|
|
3276
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
3277
|
-
default as Code2Icon
|
|
3278
|
-
} from '../icons/code-xml';
|
|
3279
3279
|
// Columns3Cog aliases
|
|
3280
3280
|
export { default as Columns3CogIcon } from '../icons/columns-3-cog';
|
|
3281
3281
|
export {
|
|
@@ -3286,90 +3286,96 @@ export {
|
|
|
3286
3286
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
3287
3287
|
default as TableConfigIcon
|
|
3288
3288
|
} from '../icons/columns-3-cog';
|
|
3289
|
+
// CodeXml aliases
|
|
3290
|
+
export { default as CodeXmlIcon } from '../icons/code-xml';
|
|
3291
|
+
export {
|
|
3292
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
3293
|
+
default as Code2Icon
|
|
3294
|
+
} from '../icons/code-xml';
|
|
3289
3295
|
// Columns3 aliases
|
|
3290
3296
|
export { default as Columns3Icon } from '../icons/columns-3';
|
|
3291
3297
|
export {
|
|
3292
3298
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
3293
3299
|
default as PanelsLeftRightIcon
|
|
3294
3300
|
} from '../icons/columns-3';
|
|
3295
|
-
// DiamondPercent aliases
|
|
3296
|
-
export { default as DiamondPercentIcon } from '../icons/diamond-percent';
|
|
3297
|
-
export {
|
|
3298
|
-
/** @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 */
|
|
3299
|
-
default as PercentDiamondIcon
|
|
3300
|
-
} from '../icons/diamond-percent';
|
|
3301
3301
|
// ContactRound aliases
|
|
3302
3302
|
export { default as ContactRoundIcon } from '../icons/contact-round';
|
|
3303
3303
|
export {
|
|
3304
3304
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
3305
3305
|
default as Contact2Icon
|
|
3306
3306
|
} from '../icons/contact-round';
|
|
3307
|
+
// Earth aliases
|
|
3308
|
+
export { default as EarthIcon } from '../icons/earth';
|
|
3309
|
+
export {
|
|
3310
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
3311
|
+
default as Globe2Icon
|
|
3312
|
+
} from '../icons/earth';
|
|
3307
3313
|
// EllipsisVertical aliases
|
|
3308
3314
|
export { default as EllipsisVerticalIcon } from '../icons/ellipsis-vertical';
|
|
3309
3315
|
export {
|
|
3310
3316
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
3311
3317
|
default as MoreVerticalIcon
|
|
3312
3318
|
} from '../icons/ellipsis-vertical';
|
|
3313
|
-
//
|
|
3314
|
-
export { default as
|
|
3319
|
+
// DiamondPercent aliases
|
|
3320
|
+
export { default as DiamondPercentIcon } from '../icons/diamond-percent';
|
|
3315
3321
|
export {
|
|
3316
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3317
|
-
default as
|
|
3318
|
-
} from '../icons/
|
|
3322
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
3323
|
+
default as PercentDiamondIcon
|
|
3324
|
+
} from '../icons/diamond-percent';
|
|
3319
3325
|
// Ellipsis aliases
|
|
3320
3326
|
export { default as EllipsisIcon } from '../icons/ellipsis';
|
|
3321
3327
|
export {
|
|
3322
3328
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
3323
3329
|
default as MoreHorizontalIcon
|
|
3324
3330
|
} from '../icons/ellipsis';
|
|
3325
|
-
// FileAxis3d aliases
|
|
3326
|
-
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3327
|
-
export {
|
|
3328
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
3329
|
-
default as FileAxis3DIcon
|
|
3330
|
-
} from '../icons/file-axis-3d';
|
|
3331
3331
|
// FileBadge aliases
|
|
3332
3332
|
export { default as FileBadgeIcon } from '../icons/file-badge';
|
|
3333
3333
|
export {
|
|
3334
3334
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. This alias will be removed in v1.0 */
|
|
3335
3335
|
default as FileBadge2Icon
|
|
3336
3336
|
} from '../icons/file-badge';
|
|
3337
|
-
//
|
|
3338
|
-
export { default as
|
|
3337
|
+
// FileAxis3d aliases
|
|
3338
|
+
export { default as FileAxis3dIcon } from '../icons/file-axis-3d';
|
|
3339
3339
|
export {
|
|
3340
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3341
|
-
default as
|
|
3342
|
-
} from '../icons/file-
|
|
3340
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
3341
|
+
default as FileAxis3DIcon
|
|
3342
|
+
} from '../icons/file-axis-3d';
|
|
3343
3343
|
// FileBracesCorner aliases
|
|
3344
3344
|
export { default as FileBracesCornerIcon } from '../icons/file-braces-corner';
|
|
3345
3345
|
export {
|
|
3346
3346
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
3347
3347
|
default as FileJson2Icon
|
|
3348
3348
|
} from '../icons/file-braces-corner';
|
|
3349
|
-
//
|
|
3350
|
-
export { default as
|
|
3351
|
-
export {
|
|
3352
|
-
/** @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 */
|
|
3353
|
-
default as FileBarChartIcon
|
|
3354
|
-
} from '../icons/file-chart-column-increasing';
|
|
3355
|
-
// FileChartLine aliases
|
|
3356
|
-
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3349
|
+
// FileBraces aliases
|
|
3350
|
+
export { default as FileBracesIcon } from '../icons/file-braces';
|
|
3357
3351
|
export {
|
|
3358
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3359
|
-
default as
|
|
3360
|
-
} from '../icons/file-
|
|
3352
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
3353
|
+
default as FileJsonIcon
|
|
3354
|
+
} from '../icons/file-braces';
|
|
3361
3355
|
// FileChartColumn aliases
|
|
3362
3356
|
export { default as FileChartColumnIcon } from '../icons/file-chart-column';
|
|
3363
3357
|
export {
|
|
3364
3358
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
3365
3359
|
default as FileBarChart2Icon
|
|
3366
3360
|
} from '../icons/file-chart-column';
|
|
3361
|
+
// FileChartColumnIncreasing aliases
|
|
3362
|
+
export { default as FileChartColumnIncreasingIcon } from '../icons/file-chart-column-increasing';
|
|
3363
|
+
export {
|
|
3364
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
3365
|
+
default as FileBarChartIcon
|
|
3366
|
+
} from '../icons/file-chart-column-increasing';
|
|
3367
3367
|
// FileChartPie aliases
|
|
3368
3368
|
export { default as FileChartPieIcon } from '../icons/file-chart-pie';
|
|
3369
3369
|
export {
|
|
3370
3370
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
3371
3371
|
default as FilePieChartIcon
|
|
3372
3372
|
} from '../icons/file-chart-pie';
|
|
3373
|
+
// FileChartLine aliases
|
|
3374
|
+
export { default as FileChartLineIcon } from '../icons/file-chart-line';
|
|
3375
|
+
export {
|
|
3376
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
3377
|
+
default as FileLineChartIcon
|
|
3378
|
+
} from '../icons/file-chart-line';
|
|
3373
3379
|
// FileCheckCorner aliases
|
|
3374
3380
|
export { default as FileCheckCornerIcon } from '../icons/file-check-corner';
|
|
3375
3381
|
export {
|
|
@@ -3428,54 +3434,54 @@ export {
|
|
|
3428
3434
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
3429
3435
|
default as FileSignatureIcon
|
|
3430
3436
|
} from '../icons/file-pen-line';
|
|
3431
|
-
// FilePen aliases
|
|
3432
|
-
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3433
|
-
export {
|
|
3434
|
-
/** @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 */
|
|
3435
|
-
default as FileEditIcon
|
|
3436
|
-
} from '../icons/file-pen';
|
|
3437
3437
|
// FilePlay aliases
|
|
3438
3438
|
export { default as FilePlayIcon } from '../icons/file-play';
|
|
3439
3439
|
export {
|
|
3440
3440
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
3441
3441
|
default as FileVideoIcon
|
|
3442
3442
|
} from '../icons/file-play';
|
|
3443
|
-
//
|
|
3444
|
-
export { default as
|
|
3443
|
+
// FilePen aliases
|
|
3444
|
+
export { default as FilePenIcon } from '../icons/file-pen';
|
|
3445
3445
|
export {
|
|
3446
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3447
|
-
default as
|
|
3448
|
-
} from '../icons/file-
|
|
3446
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
3447
|
+
default as FileEditIcon
|
|
3448
|
+
} from '../icons/file-pen';
|
|
3449
3449
|
// FileQuestionMark aliases
|
|
3450
3450
|
export { default as FileQuestionMarkIcon } from '../icons/file-question-mark';
|
|
3451
3451
|
export {
|
|
3452
3452
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3453
3453
|
default as FileQuestionIcon
|
|
3454
3454
|
} from '../icons/file-question-mark';
|
|
3455
|
-
// FileSearchCorner aliases
|
|
3456
|
-
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3457
|
-
export {
|
|
3458
|
-
/** @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 */
|
|
3459
|
-
default as FileSearch2Icon
|
|
3460
|
-
} from '../icons/file-search-corner';
|
|
3461
3455
|
// FileSignal aliases
|
|
3462
3456
|
export { default as FileSignalIcon } from '../icons/file-signal';
|
|
3463
3457
|
export {
|
|
3464
3458
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. This alias will be removed in v1.0 */
|
|
3465
3459
|
default as FileVolume2Icon
|
|
3466
3460
|
} from '../icons/file-signal';
|
|
3467
|
-
//
|
|
3468
|
-
export { default as
|
|
3461
|
+
// FilePlusCorner aliases
|
|
3462
|
+
export { default as FilePlusCornerIcon } from '../icons/file-plus-corner';
|
|
3469
3463
|
export {
|
|
3470
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3471
|
-
default as
|
|
3472
|
-
} from '../icons/file-
|
|
3464
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
3465
|
+
default as FilePlus2Icon
|
|
3466
|
+
} from '../icons/file-plus-corner';
|
|
3467
|
+
// FileSearchCorner aliases
|
|
3468
|
+
export { default as FileSearchCornerIcon } from '../icons/file-search-corner';
|
|
3469
|
+
export {
|
|
3470
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. This alias will be removed in v1.0 */
|
|
3471
|
+
default as FileSearch2Icon
|
|
3472
|
+
} from '../icons/file-search-corner';
|
|
3473
3473
|
// FileTypeCorner aliases
|
|
3474
3474
|
export { default as FileTypeCornerIcon } from '../icons/file-type-corner';
|
|
3475
3475
|
export {
|
|
3476
3476
|
/** @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 */
|
|
3477
3477
|
default as FileType2Icon
|
|
3478
3478
|
} from '../icons/file-type-corner';
|
|
3479
|
+
// FileVideoCamera aliases
|
|
3480
|
+
export { default as FileVideoCameraIcon } from '../icons/file-video-camera';
|
|
3481
|
+
export {
|
|
3482
|
+
/** @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 */
|
|
3483
|
+
default as FileVideo2Icon
|
|
3484
|
+
} from '../icons/file-video-camera';
|
|
3479
3485
|
// FileXCorner aliases
|
|
3480
3486
|
export { default as FileXCornerIcon } from '../icons/file-x-corner';
|
|
3481
3487
|
export {
|
|
@@ -3500,30 +3506,30 @@ export {
|
|
|
3500
3506
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. This alias will be removed in v1.0 */
|
|
3501
3507
|
default as FolderEditIcon
|
|
3502
3508
|
} from '../icons/folder-pen';
|
|
3503
|
-
// Funnel aliases
|
|
3504
|
-
export { default as FunnelIcon } from '../icons/funnel';
|
|
3505
|
-
export {
|
|
3506
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
3507
|
-
default as FilterIcon
|
|
3508
|
-
} from '../icons/funnel';
|
|
3509
3509
|
// FunnelX aliases
|
|
3510
3510
|
export { default as FunnelXIcon } from '../icons/funnel-x';
|
|
3511
3511
|
export {
|
|
3512
3512
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
3513
3513
|
default as FilterXIcon
|
|
3514
3514
|
} from '../icons/funnel-x';
|
|
3515
|
-
//
|
|
3516
|
-
export { default as
|
|
3515
|
+
// Funnel aliases
|
|
3516
|
+
export { default as FunnelIcon } from '../icons/funnel';
|
|
3517
3517
|
export {
|
|
3518
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3519
|
-
default as
|
|
3520
|
-
} from '../icons/
|
|
3518
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
3519
|
+
default as FilterIcon
|
|
3520
|
+
} from '../icons/funnel';
|
|
3521
3521
|
// Grid2x2Check aliases
|
|
3522
3522
|
export { default as Grid2x2CheckIcon } from '../icons/grid-2x2-check';
|
|
3523
3523
|
export {
|
|
3524
3524
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
3525
3525
|
default as Grid2X2CheckIcon
|
|
3526
3526
|
} from '../icons/grid-2x2-check';
|
|
3527
|
+
// GitCommitHorizontal aliases
|
|
3528
|
+
export { default as GitCommitHorizontalIcon } from '../icons/git-commit-horizontal';
|
|
3529
|
+
export {
|
|
3530
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
3531
|
+
default as GitCommitIcon
|
|
3532
|
+
} from '../icons/git-commit-horizontal';
|
|
3527
3533
|
// Grid2x2Plus aliases
|
|
3528
3534
|
export { default as Grid2x2PlusIcon } from '../icons/grid-2x2-plus';
|
|
3529
3535
|
export {
|
|
@@ -3552,36 +3558,36 @@ export {
|
|
|
3552
3558
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
3553
3559
|
default as Grid3X3Icon
|
|
3554
3560
|
} from '../icons/grid-3x3';
|
|
3555
|
-
// HandGrab aliases
|
|
3556
|
-
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3557
|
-
export {
|
|
3558
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
3559
|
-
default as GrabIcon
|
|
3560
|
-
} from '../icons/hand-grab';
|
|
3561
3561
|
// HandHelping aliases
|
|
3562
3562
|
export { default as HandHelpingIcon } from '../icons/hand-helping';
|
|
3563
3563
|
export {
|
|
3564
3564
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
3565
3565
|
default as HelpingHandIcon
|
|
3566
3566
|
} from '../icons/hand-helping';
|
|
3567
|
+
// HandGrab aliases
|
|
3568
|
+
export { default as HandGrabIcon } from '../icons/hand-grab';
|
|
3569
|
+
export {
|
|
3570
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
3571
|
+
default as GrabIcon
|
|
3572
|
+
} from '../icons/hand-grab';
|
|
3567
3573
|
// House aliases
|
|
3568
3574
|
export { default as HouseIcon } from '../icons/house';
|
|
3569
3575
|
export {
|
|
3570
3576
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
3571
3577
|
default as HomeIcon
|
|
3572
3578
|
} from '../icons/house';
|
|
3573
|
-
// IceCreamBowl aliases
|
|
3574
|
-
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3575
|
-
export {
|
|
3576
|
-
/** @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 */
|
|
3577
|
-
default as IceCream2Icon
|
|
3578
|
-
} from '../icons/ice-cream-bowl';
|
|
3579
3579
|
// IceCreamCone aliases
|
|
3580
3580
|
export { default as IceCreamConeIcon } from '../icons/ice-cream-cone';
|
|
3581
3581
|
export {
|
|
3582
3582
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
3583
3583
|
default as IceCreamIcon
|
|
3584
3584
|
} from '../icons/ice-cream-cone';
|
|
3585
|
+
// IceCreamBowl aliases
|
|
3586
|
+
export { default as IceCreamBowlIcon } from '../icons/ice-cream-bowl';
|
|
3587
|
+
export {
|
|
3588
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
3589
|
+
default as IceCream2Icon
|
|
3590
|
+
} from '../icons/ice-cream-bowl';
|
|
3585
3591
|
// LaptopMinimal aliases
|
|
3586
3592
|
export { default as LaptopMinimalIcon } from '../icons/laptop-minimal';
|
|
3587
3593
|
export {
|
|
@@ -3614,18 +3620,18 @@ export {
|
|
|
3614
3620
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. This alias will be removed in v1.0 */
|
|
3615
3621
|
default as IndentIncreaseIcon
|
|
3616
3622
|
} from '../icons/list-indent-increase';
|
|
3617
|
-
// LockKeyholeOpen aliases
|
|
3618
|
-
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3619
|
-
export {
|
|
3620
|
-
/** @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 */
|
|
3621
|
-
default as UnlockKeyholeIcon
|
|
3622
|
-
} from '../icons/lock-keyhole-open';
|
|
3623
3623
|
// LoaderCircle aliases
|
|
3624
3624
|
export { default as LoaderCircleIcon } from '../icons/loader-circle';
|
|
3625
3625
|
export {
|
|
3626
3626
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
3627
3627
|
default as Loader2Icon
|
|
3628
3628
|
} from '../icons/loader-circle';
|
|
3629
|
+
// LockKeyholeOpen aliases
|
|
3630
|
+
export { default as LockKeyholeOpenIcon } from '../icons/lock-keyhole-open';
|
|
3631
|
+
export {
|
|
3632
|
+
/** @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 */
|
|
3633
|
+
default as UnlockKeyholeIcon
|
|
3634
|
+
} from '../icons/lock-keyhole-open';
|
|
3629
3635
|
// LockOpen aliases
|
|
3630
3636
|
export { default as LockOpenIcon } from '../icons/lock-open';
|
|
3631
3637
|
export {
|
|
@@ -3662,18 +3668,18 @@ export {
|
|
|
3662
3668
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
3663
3669
|
default as Move3DIcon
|
|
3664
3670
|
} from '../icons/move-3d';
|
|
3665
|
-
// OctagonPause aliases
|
|
3666
|
-
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3667
|
-
export {
|
|
3668
|
-
/** @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 */
|
|
3669
|
-
default as PauseOctagonIcon
|
|
3670
|
-
} from '../icons/octagon-pause';
|
|
3671
3671
|
// OctagonAlert aliases
|
|
3672
3672
|
export { default as OctagonAlertIcon } from '../icons/octagon-alert';
|
|
3673
3673
|
export {
|
|
3674
3674
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
3675
3675
|
default as AlertOctagonIcon
|
|
3676
3676
|
} from '../icons/octagon-alert';
|
|
3677
|
+
// OctagonPause aliases
|
|
3678
|
+
export { default as OctagonPauseIcon } from '../icons/octagon-pause';
|
|
3679
|
+
export {
|
|
3680
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
3681
|
+
default as PauseOctagonIcon
|
|
3682
|
+
} from '../icons/octagon-pause';
|
|
3677
3683
|
// OctagonX aliases
|
|
3678
3684
|
export { default as OctagonXIcon } from '../icons/octagon-x';
|
|
3679
3685
|
export {
|
|
@@ -3704,72 +3710,72 @@ export {
|
|
|
3704
3710
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
3705
3711
|
default as PanelLeftInactiveIcon
|
|
3706
3712
|
} from '../icons/panel-left-dashed';
|
|
3707
|
-
// PanelLeft aliases
|
|
3708
|
-
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3709
|
-
export {
|
|
3710
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
3711
|
-
default as SidebarIcon
|
|
3712
|
-
} from '../icons/panel-left';
|
|
3713
3713
|
// PanelLeftOpen aliases
|
|
3714
3714
|
export { default as PanelLeftOpenIcon } from '../icons/panel-left-open';
|
|
3715
3715
|
export {
|
|
3716
3716
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
3717
3717
|
default as SidebarOpenIcon
|
|
3718
3718
|
} from '../icons/panel-left-open';
|
|
3719
|
-
//
|
|
3720
|
-
export { default as
|
|
3721
|
-
export {
|
|
3722
|
-
/** @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 */
|
|
3723
|
-
default as PanelTopInactiveIcon
|
|
3724
|
-
} from '../icons/panel-top-dashed';
|
|
3725
|
-
// PanelsTopLeft aliases
|
|
3726
|
-
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3719
|
+
// PanelLeft aliases
|
|
3720
|
+
export { default as PanelLeftIcon } from '../icons/panel-left';
|
|
3727
3721
|
export {
|
|
3728
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3729
|
-
default as
|
|
3730
|
-
} from '../icons/
|
|
3722
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
3723
|
+
default as SidebarIcon
|
|
3724
|
+
} from '../icons/panel-left';
|
|
3731
3725
|
// PanelRightDashed aliases
|
|
3732
3726
|
export { default as PanelRightDashedIcon } from '../icons/panel-right-dashed';
|
|
3733
3727
|
export {
|
|
3734
3728
|
/** @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 */
|
|
3735
3729
|
default as PanelRightInactiveIcon
|
|
3736
3730
|
} from '../icons/panel-right-dashed';
|
|
3737
|
-
//
|
|
3738
|
-
export { default as
|
|
3731
|
+
// PanelTopDashed aliases
|
|
3732
|
+
export { default as PanelTopDashedIcon } from '../icons/panel-top-dashed';
|
|
3739
3733
|
export {
|
|
3740
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3741
|
-
default as
|
|
3742
|
-
} from '../icons/
|
|
3734
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. This alias will be removed in v1.0 */
|
|
3735
|
+
default as PanelTopInactiveIcon
|
|
3736
|
+
} from '../icons/panel-top-dashed';
|
|
3743
3737
|
// Pen aliases
|
|
3744
3738
|
export { default as PenIcon } from '../icons/pen';
|
|
3745
3739
|
export {
|
|
3746
3740
|
/** @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 */
|
|
3747
3741
|
default as Edit2Icon
|
|
3748
3742
|
} from '../icons/pen';
|
|
3749
|
-
//
|
|
3750
|
-
export { default as
|
|
3743
|
+
// PenLine aliases
|
|
3744
|
+
export { default as PenLineIcon } from '../icons/pen-line';
|
|
3751
3745
|
export {
|
|
3752
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3753
|
-
default as
|
|
3754
|
-
} from '../icons/
|
|
3746
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
3747
|
+
default as Edit3Icon
|
|
3748
|
+
} from '../icons/pen-line';
|
|
3749
|
+
// PanelsTopLeft aliases
|
|
3750
|
+
export { default as PanelsTopLeftIcon } from '../icons/panels-top-left';
|
|
3751
|
+
export {
|
|
3752
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
3753
|
+
default as LayoutIcon
|
|
3754
|
+
} from '../icons/panels-top-left';
|
|
3755
3755
|
// RectangleEllipsis aliases
|
|
3756
3756
|
export { default as RectangleEllipsisIcon } from '../icons/rectangle-ellipsis';
|
|
3757
3757
|
export {
|
|
3758
3758
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
3759
3759
|
default as FormInputIcon
|
|
3760
3760
|
} from '../icons/rectangle-ellipsis';
|
|
3761
|
-
//
|
|
3762
|
-
export { default as
|
|
3761
|
+
// PlugZap aliases
|
|
3762
|
+
export { default as PlugZapIcon } from '../icons/plug-zap';
|
|
3763
3763
|
export {
|
|
3764
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3765
|
-
default as
|
|
3766
|
-
} from '../icons/
|
|
3764
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
3765
|
+
default as PlugZap2Icon
|
|
3766
|
+
} from '../icons/plug-zap';
|
|
3767
3767
|
// Rows2 aliases
|
|
3768
3768
|
export { default as Rows2Icon } from '../icons/rows-2';
|
|
3769
3769
|
export {
|
|
3770
3770
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
3771
3771
|
default as RowsIcon
|
|
3772
3772
|
} from '../icons/rows-2';
|
|
3773
|
+
// Rotate3d aliases
|
|
3774
|
+
export { default as Rotate3dIcon } from '../icons/rotate-3d';
|
|
3775
|
+
export {
|
|
3776
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. This alias will be removed in v1.0 */
|
|
3777
|
+
default as Rotate3DIcon
|
|
3778
|
+
} from '../icons/rotate-3d';
|
|
3773
3779
|
// Rows3 aliases
|
|
3774
3780
|
export { default as Rows3Icon } from '../icons/rows-3';
|
|
3775
3781
|
export {
|
|
@@ -3782,30 +3788,30 @@ export {
|
|
|
3782
3788
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
3783
3789
|
default as Scale3DIcon
|
|
3784
3790
|
} from '../icons/scale-3d';
|
|
3785
|
-
// ShieldQuestionMark aliases
|
|
3786
|
-
export { default as ShieldQuestionMarkIcon } from '../icons/shield-question-mark';
|
|
3787
|
-
export {
|
|
3788
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3789
|
-
default as ShieldQuestionIcon
|
|
3790
|
-
} from '../icons/shield-question-mark';
|
|
3791
3791
|
// SendHorizontal aliases
|
|
3792
3792
|
export { default as SendHorizontalIcon } from '../icons/send-horizontal';
|
|
3793
3793
|
export {
|
|
3794
3794
|
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
3795
3795
|
default as SendHorizonalIcon
|
|
3796
3796
|
} from '../icons/send-horizontal';
|
|
3797
|
-
//
|
|
3798
|
-
export { default as
|
|
3797
|
+
// ShieldQuestionMark aliases
|
|
3798
|
+
export { default as ShieldQuestionMarkIcon } from '../icons/shield-question-mark';
|
|
3799
3799
|
export {
|
|
3800
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3801
|
-
default as
|
|
3802
|
-
} from '../icons/
|
|
3800
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
3801
|
+
default as ShieldQuestionIcon
|
|
3802
|
+
} from '../icons/shield-question-mark';
|
|
3803
3803
|
// ShieldX aliases
|
|
3804
3804
|
export { default as ShieldXIcon } from '../icons/shield-x';
|
|
3805
3805
|
export {
|
|
3806
3806
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
3807
3807
|
default as ShieldCloseIcon
|
|
3808
3808
|
} from '../icons/shield-x';
|
|
3809
|
+
// SlidersVertical aliases
|
|
3810
|
+
export { default as SlidersVerticalIcon } from '../icons/sliders-vertical';
|
|
3811
|
+
export {
|
|
3812
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. This alias will be removed in v1.0 */
|
|
3813
|
+
default as SlidersIcon
|
|
3814
|
+
} from '../icons/sliders-vertical';
|
|
3809
3815
|
// Sparkles aliases
|
|
3810
3816
|
export { default as SparklesIcon } from '../icons/sparkles';
|
|
3811
3817
|
export {
|
|
@@ -3824,6 +3830,12 @@ export {
|
|
|
3824
3830
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
|
|
3825
3831
|
default as ArrowDownLeftSquareIcon
|
|
3826
3832
|
} from '../icons/square-arrow-down-left';
|
|
3833
|
+
// SquareArrowDown aliases
|
|
3834
|
+
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3835
|
+
export {
|
|
3836
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
3837
|
+
default as ArrowDownSquareIcon
|
|
3838
|
+
} from '../icons/square-arrow-down';
|
|
3827
3839
|
// SquareArrowDownRight aliases
|
|
3828
3840
|
export { default as SquareArrowDownRightIcon } from '../icons/square-arrow-down-right';
|
|
3829
3841
|
export {
|
|
@@ -3836,30 +3848,24 @@ export {
|
|
|
3836
3848
|
/** @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 */
|
|
3837
3849
|
default as ArrowLeftSquareIcon
|
|
3838
3850
|
} from '../icons/square-arrow-left';
|
|
3839
|
-
// SquareArrowDown aliases
|
|
3840
|
-
export { default as SquareArrowDownIcon } from '../icons/square-arrow-down';
|
|
3841
|
-
export {
|
|
3842
|
-
/** @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 */
|
|
3843
|
-
default as ArrowDownSquareIcon
|
|
3844
|
-
} from '../icons/square-arrow-down';
|
|
3845
3851
|
// SquareArrowOutDownLeft aliases
|
|
3846
3852
|
export { default as SquareArrowOutDownLeftIcon } from '../icons/square-arrow-out-down-left';
|
|
3847
3853
|
export {
|
|
3848
3854
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
3849
3855
|
default as ArrowDownLeftFromSquareIcon
|
|
3850
3856
|
} from '../icons/square-arrow-out-down-left';
|
|
3851
|
-
// SquareArrowOutUpLeft aliases
|
|
3852
|
-
export { default as SquareArrowOutUpLeftIcon } from '../icons/square-arrow-out-up-left';
|
|
3853
|
-
export {
|
|
3854
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
3855
|
-
default as ArrowUpLeftFromSquareIcon
|
|
3856
|
-
} from '../icons/square-arrow-out-up-left';
|
|
3857
3857
|
// SquareArrowOutDownRight aliases
|
|
3858
3858
|
export { default as SquareArrowOutDownRightIcon } from '../icons/square-arrow-out-down-right';
|
|
3859
3859
|
export {
|
|
3860
3860
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
3861
3861
|
default as ArrowDownRightFromSquareIcon
|
|
3862
3862
|
} from '../icons/square-arrow-out-down-right';
|
|
3863
|
+
// SquareArrowOutUpLeft aliases
|
|
3864
|
+
export { default as SquareArrowOutUpLeftIcon } from '../icons/square-arrow-out-up-left';
|
|
3865
|
+
export {
|
|
3866
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
3867
|
+
default as ArrowUpLeftFromSquareIcon
|
|
3868
|
+
} from '../icons/square-arrow-out-up-left';
|
|
3863
3869
|
// SquareArrowOutUpRight aliases
|
|
3864
3870
|
export { default as SquareArrowOutUpRightIcon } from '../icons/square-arrow-out-up-right';
|
|
3865
3871
|
export {
|
|
@@ -3872,30 +3878,30 @@ export {
|
|
|
3872
3878
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. This alias will be removed in v1.0 */
|
|
3873
3879
|
default as ArrowRightSquareIcon
|
|
3874
3880
|
} from '../icons/square-arrow-right';
|
|
3875
|
-
//
|
|
3876
|
-
export { default as
|
|
3881
|
+
// SquareArrowUpLeft aliases
|
|
3882
|
+
export { default as SquareArrowUpLeftIcon } from '../icons/square-arrow-up-left';
|
|
3877
3883
|
export {
|
|
3878
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3879
|
-
default as
|
|
3880
|
-
} from '../icons/square-arrow-up';
|
|
3884
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
3885
|
+
default as ArrowUpLeftSquareIcon
|
|
3886
|
+
} from '../icons/square-arrow-up-left';
|
|
3881
3887
|
// SquareArrowUpRight aliases
|
|
3882
3888
|
export { default as SquareArrowUpRightIcon } from '../icons/square-arrow-up-right';
|
|
3883
3889
|
export {
|
|
3884
3890
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
3885
3891
|
default as ArrowUpRightSquareIcon
|
|
3886
3892
|
} from '../icons/square-arrow-up-right';
|
|
3893
|
+
// SquareArrowUp aliases
|
|
3894
|
+
export { default as SquareArrowUpIcon } from '../icons/square-arrow-up';
|
|
3895
|
+
export {
|
|
3896
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
3897
|
+
default as ArrowUpSquareIcon
|
|
3898
|
+
} from '../icons/square-arrow-up';
|
|
3887
3899
|
// SquareBottomDashedScissors aliases
|
|
3888
3900
|
export { default as SquareBottomDashedScissorsIcon } from '../icons/square-bottom-dashed-scissors';
|
|
3889
3901
|
export {
|
|
3890
3902
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. This alias will be removed in v1.0 */
|
|
3891
3903
|
default as ScissorsSquareDashedBottomIcon
|
|
3892
3904
|
} from '../icons/square-bottom-dashed-scissors';
|
|
3893
|
-
// SquareArrowUpLeft aliases
|
|
3894
|
-
export { default as SquareArrowUpLeftIcon } from '../icons/square-arrow-up-left';
|
|
3895
|
-
export {
|
|
3896
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
3897
|
-
default as ArrowUpLeftSquareIcon
|
|
3898
|
-
} from '../icons/square-arrow-up-left';
|
|
3899
3905
|
// SquareAsterisk aliases
|
|
3900
3906
|
export { default as SquareAsteriskIcon } from '../icons/square-asterisk';
|
|
3901
3907
|
export {
|
|
@@ -3918,30 +3924,18 @@ export {
|
|
|
3918
3924
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. This alias will be removed in v1.0 */
|
|
3919
3925
|
default as CheckSquareIcon
|
|
3920
3926
|
} from '../icons/square-check-big';
|
|
3921
|
-
// SquareCheck aliases
|
|
3922
|
-
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3923
|
-
export {
|
|
3924
|
-
/** @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 */
|
|
3925
|
-
default as CheckSquare2Icon
|
|
3926
|
-
} from '../icons/square-check';
|
|
3927
3927
|
// SquareChevronDown aliases
|
|
3928
3928
|
export { default as SquareChevronDownIcon } from '../icons/square-chevron-down';
|
|
3929
3929
|
export {
|
|
3930
3930
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
3931
3931
|
default as ChevronDownSquareIcon
|
|
3932
3932
|
} from '../icons/square-chevron-down';
|
|
3933
|
-
//
|
|
3934
|
-
export { default as
|
|
3935
|
-
export {
|
|
3936
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
3937
|
-
default as ChevronRightSquareIcon
|
|
3938
|
-
} from '../icons/square-chevron-right';
|
|
3939
|
-
// SquareCode aliases
|
|
3940
|
-
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
3933
|
+
// SquareCheck aliases
|
|
3934
|
+
export { default as SquareCheckIcon } from '../icons/square-check';
|
|
3941
3935
|
export {
|
|
3942
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3943
|
-
default as
|
|
3944
|
-
} from '../icons/square-
|
|
3936
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. This alias will be removed in v1.0 */
|
|
3937
|
+
default as CheckSquare2Icon
|
|
3938
|
+
} from '../icons/square-check';
|
|
3945
3939
|
// SquareChevronLeft aliases
|
|
3946
3940
|
export { default as SquareChevronLeftIcon } from '../icons/square-chevron-left';
|
|
3947
3941
|
export {
|
|
@@ -3954,6 +3948,18 @@ export {
|
|
|
3954
3948
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
3955
3949
|
default as ChevronUpSquareIcon
|
|
3956
3950
|
} from '../icons/square-chevron-up';
|
|
3951
|
+
// SquareChevronRight aliases
|
|
3952
|
+
export { default as SquareChevronRightIcon } from '../icons/square-chevron-right';
|
|
3953
|
+
export {
|
|
3954
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
3955
|
+
default as ChevronRightSquareIcon
|
|
3956
|
+
} from '../icons/square-chevron-right';
|
|
3957
|
+
// SquareCode aliases
|
|
3958
|
+
export { default as SquareCodeIcon } from '../icons/square-code';
|
|
3959
|
+
export {
|
|
3960
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. This alias will be removed in v1.0 */
|
|
3961
|
+
default as CodeSquareIcon
|
|
3962
|
+
} from '../icons/square-code';
|
|
3957
3963
|
// SquareDashedKanban aliases
|
|
3958
3964
|
export { default as SquareDashedKanbanIcon } from '../icons/square-dashed-kanban';
|
|
3959
3965
|
export {
|
|
@@ -3966,42 +3972,42 @@ export {
|
|
|
3966
3972
|
/** @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 */
|
|
3967
3973
|
default as MousePointerSquareDashedIcon
|
|
3968
3974
|
} from '../icons/square-dashed-mouse-pointer';
|
|
3969
|
-
// SquareDivide aliases
|
|
3970
|
-
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
3971
|
-
export {
|
|
3972
|
-
/** @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 */
|
|
3973
|
-
default as DivideSquareIcon
|
|
3974
|
-
} from '../icons/square-divide';
|
|
3975
3975
|
// SquareDashed aliases
|
|
3976
3976
|
export { default as SquareDashedIcon } from '../icons/square-dashed';
|
|
3977
3977
|
export {
|
|
3978
3978
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
3979
3979
|
default as BoxSelectIcon
|
|
3980
3980
|
} from '../icons/square-dashed';
|
|
3981
|
-
//
|
|
3982
|
-
export { default as
|
|
3981
|
+
// SquareDivide aliases
|
|
3982
|
+
export { default as SquareDivideIcon } from '../icons/square-divide';
|
|
3983
3983
|
export {
|
|
3984
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
3985
|
-
default as
|
|
3986
|
-
} from '../icons/square-
|
|
3984
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. This alias will be removed in v1.0 */
|
|
3985
|
+
default as DivideSquareIcon
|
|
3986
|
+
} from '../icons/square-divide';
|
|
3987
3987
|
// SquareEqual aliases
|
|
3988
3988
|
export { default as SquareEqualIcon } from '../icons/square-equal';
|
|
3989
3989
|
export {
|
|
3990
3990
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
3991
3991
|
default as EqualSquareIcon
|
|
3992
3992
|
} from '../icons/square-equal';
|
|
3993
|
+
// SquareFunction aliases
|
|
3994
|
+
export { default as SquareFunctionIcon } from '../icons/square-function';
|
|
3995
|
+
export {
|
|
3996
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
3997
|
+
default as FunctionSquareIcon
|
|
3998
|
+
} from '../icons/square-function';
|
|
3993
3999
|
// SquareKanban aliases
|
|
3994
4000
|
export { default as SquareKanbanIcon } from '../icons/square-kanban';
|
|
3995
4001
|
export {
|
|
3996
4002
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
3997
4003
|
default as KanbanSquareIcon
|
|
3998
4004
|
} from '../icons/square-kanban';
|
|
3999
|
-
//
|
|
4000
|
-
export { default as
|
|
4005
|
+
// SquareDot aliases
|
|
4006
|
+
export { default as SquareDotIcon } from '../icons/square-dot';
|
|
4001
4007
|
export {
|
|
4002
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4003
|
-
default as
|
|
4004
|
-
} from '../icons/square-
|
|
4008
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. This alias will be removed in v1.0 */
|
|
4009
|
+
default as DotSquareIcon
|
|
4010
|
+
} from '../icons/square-dot';
|
|
4005
4011
|
// SquareLibrary aliases
|
|
4006
4012
|
export { default as SquareLibraryIcon } from '../icons/square-library';
|
|
4007
4013
|
export {
|
|
@@ -4026,38 +4032,24 @@ export {
|
|
|
4026
4032
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
4027
4033
|
default as MinusSquareIcon
|
|
4028
4034
|
} from '../icons/square-minus';
|
|
4029
|
-
// SquareMousePointer aliases
|
|
4030
|
-
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4031
|
-
export {
|
|
4032
|
-
/** @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 */
|
|
4033
|
-
default as InspectIcon
|
|
4034
|
-
} from '../icons/square-mouse-pointer';
|
|
4035
4035
|
// SquareParkingOff aliases
|
|
4036
4036
|
export { default as SquareParkingOffIcon } from '../icons/square-parking-off';
|
|
4037
4037
|
export {
|
|
4038
4038
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. This alias will be removed in v1.0 */
|
|
4039
4039
|
default as ParkingSquareOffIcon
|
|
4040
4040
|
} from '../icons/square-parking-off';
|
|
4041
|
+
// SquareMousePointer aliases
|
|
4042
|
+
export { default as SquareMousePointerIcon } from '../icons/square-mouse-pointer';
|
|
4043
|
+
export {
|
|
4044
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
4045
|
+
default as InspectIcon
|
|
4046
|
+
} from '../icons/square-mouse-pointer';
|
|
4041
4047
|
// SquareParking aliases
|
|
4042
4048
|
export { default as SquareParkingIcon } from '../icons/square-parking';
|
|
4043
4049
|
export {
|
|
4044
4050
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. This alias will be removed in v1.0 */
|
|
4045
4051
|
default as ParkingSquareIcon
|
|
4046
4052
|
} from '../icons/square-parking';
|
|
4047
|
-
// SquarePen aliases
|
|
4048
|
-
export { default as SquarePenIcon } from '../icons/square-pen';
|
|
4049
|
-
export {
|
|
4050
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4051
|
-
default as PenBoxIcon
|
|
4052
|
-
} from '../icons/square-pen';
|
|
4053
|
-
export {
|
|
4054
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4055
|
-
default as EditIcon
|
|
4056
|
-
} from '../icons/square-pen';
|
|
4057
|
-
export {
|
|
4058
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4059
|
-
default as PenSquareIcon
|
|
4060
|
-
} from '../icons/square-pen';
|
|
4061
4053
|
// SquarePercent aliases
|
|
4062
4054
|
export { default as SquarePercentIcon } from '../icons/square-percent';
|
|
4063
4055
|
export {
|
|
@@ -4070,60 +4062,74 @@ export {
|
|
|
4070
4062
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
4071
4063
|
default as PiSquareIcon
|
|
4072
4064
|
} from '../icons/square-pi';
|
|
4065
|
+
// SquarePilcrow aliases
|
|
4066
|
+
export { default as SquarePilcrowIcon } from '../icons/square-pilcrow';
|
|
4067
|
+
export {
|
|
4068
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
4069
|
+
default as PilcrowSquareIcon
|
|
4070
|
+
} from '../icons/square-pilcrow';
|
|
4073
4071
|
// SquarePlay aliases
|
|
4074
4072
|
export { default as SquarePlayIcon } from '../icons/square-play';
|
|
4075
4073
|
export {
|
|
4076
4074
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
4077
4075
|
default as PlaySquareIcon
|
|
4078
4076
|
} from '../icons/square-play';
|
|
4079
|
-
//
|
|
4080
|
-
export { default as
|
|
4077
|
+
// SquarePen aliases
|
|
4078
|
+
export { default as SquarePenIcon } from '../icons/square-pen';
|
|
4081
4079
|
export {
|
|
4082
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4083
|
-
default as
|
|
4084
|
-
} from '../icons/square-
|
|
4085
|
-
// SquarePower aliases
|
|
4086
|
-
export { default as SquarePowerIcon } from '../icons/square-power';
|
|
4080
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4081
|
+
default as PenBoxIcon
|
|
4082
|
+
} from '../icons/square-pen';
|
|
4087
4083
|
export {
|
|
4088
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4089
|
-
default as
|
|
4090
|
-
} from '../icons/square-
|
|
4084
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4085
|
+
default as EditIcon
|
|
4086
|
+
} from '../icons/square-pen';
|
|
4087
|
+
export {
|
|
4088
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
4089
|
+
default as PenSquareIcon
|
|
4090
|
+
} from '../icons/square-pen';
|
|
4091
4091
|
// SquarePlus aliases
|
|
4092
4092
|
export { default as SquarePlusIcon } from '../icons/square-plus';
|
|
4093
4093
|
export {
|
|
4094
4094
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
4095
4095
|
default as PlusSquareIcon
|
|
4096
4096
|
} from '../icons/square-plus';
|
|
4097
|
-
//
|
|
4098
|
-
export { default as
|
|
4097
|
+
// SquarePower aliases
|
|
4098
|
+
export { default as SquarePowerIcon } from '../icons/square-power';
|
|
4099
4099
|
export {
|
|
4100
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4101
|
-
default as
|
|
4102
|
-
} from '../icons/square-
|
|
4100
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. This alias will be removed in v1.0 */
|
|
4101
|
+
default as PowerSquareIcon
|
|
4102
|
+
} from '../icons/square-power';
|
|
4103
4103
|
// SquareSigma aliases
|
|
4104
4104
|
export { default as SquareSigmaIcon } from '../icons/square-sigma';
|
|
4105
4105
|
export {
|
|
4106
4106
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
4107
4107
|
default as SigmaSquareIcon
|
|
4108
4108
|
} from '../icons/square-sigma';
|
|
4109
|
+
// SquareScissors aliases
|
|
4110
|
+
export { default as SquareScissorsIcon } from '../icons/square-scissors';
|
|
4111
|
+
export {
|
|
4112
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
4113
|
+
default as ScissorsSquareIcon
|
|
4114
|
+
} from '../icons/square-scissors';
|
|
4109
4115
|
// SquareSlash aliases
|
|
4110
4116
|
export { default as SquareSlashIcon } from '../icons/square-slash';
|
|
4111
4117
|
export {
|
|
4112
4118
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
4113
4119
|
default as SlashSquareIcon
|
|
4114
4120
|
} from '../icons/square-slash';
|
|
4115
|
-
// SquareSplitHorizontal aliases
|
|
4116
|
-
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4117
|
-
export {
|
|
4118
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
4119
|
-
default as SplitSquareHorizontalIcon
|
|
4120
|
-
} from '../icons/square-split-horizontal';
|
|
4121
4121
|
// SquareSplitVertical aliases
|
|
4122
4122
|
export { default as SquareSplitVerticalIcon } from '../icons/square-split-vertical';
|
|
4123
4123
|
export {
|
|
4124
4124
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
4125
4125
|
default as SplitSquareVerticalIcon
|
|
4126
4126
|
} from '../icons/square-split-vertical';
|
|
4127
|
+
// SquareSplitHorizontal aliases
|
|
4128
|
+
export { default as SquareSplitHorizontalIcon } from '../icons/square-split-horizontal';
|
|
4129
|
+
export {
|
|
4130
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
4131
|
+
default as SplitSquareHorizontalIcon
|
|
4132
|
+
} from '../icons/square-split-horizontal';
|
|
4127
4133
|
// SquareTerminal aliases
|
|
4128
4134
|
export { default as SquareTerminalIcon } from '../icons/square-terminal';
|
|
4129
4135
|
export {
|
|
@@ -4142,18 +4148,18 @@ export {
|
|
|
4142
4148
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
4143
4149
|
default as UserSquareIcon
|
|
4144
4150
|
} from '../icons/square-user';
|
|
4145
|
-
// TestTubeDiagonal aliases
|
|
4146
|
-
export { default as TestTubeDiagonalIcon } from '../icons/test-tube-diagonal';
|
|
4147
|
-
export {
|
|
4148
|
-
/** @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 */
|
|
4149
|
-
default as TestTube2Icon
|
|
4150
|
-
} from '../icons/test-tube-diagonal';
|
|
4151
4151
|
// SquareX aliases
|
|
4152
4152
|
export { default as SquareXIcon } from '../icons/square-x';
|
|
4153
4153
|
export {
|
|
4154
4154
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
4155
4155
|
default as XSquareIcon
|
|
4156
4156
|
} from '../icons/square-x';
|
|
4157
|
+
// TestTubeDiagonal aliases
|
|
4158
|
+
export { default as TestTubeDiagonalIcon } from '../icons/test-tube-diagonal';
|
|
4159
|
+
export {
|
|
4160
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
4161
|
+
default as TestTube2Icon
|
|
4162
|
+
} from '../icons/test-tube-diagonal';
|
|
4157
4163
|
// TextAlignCenter aliases
|
|
4158
4164
|
export { default as TextAlignCenterIcon } from '../icons/text-align-center';
|
|
4159
4165
|
export {
|
|
@@ -4188,12 +4194,24 @@ export {
|
|
|
4188
4194
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
|
|
4189
4195
|
default as AlignLeftIcon
|
|
4190
4196
|
} from '../icons/text-align-start';
|
|
4197
|
+
// TextWrap aliases
|
|
4198
|
+
export { default as TextWrapIcon } from '../icons/text-wrap';
|
|
4199
|
+
export {
|
|
4200
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. This alias will be removed in v1.0 */
|
|
4201
|
+
default as WrapTextIcon
|
|
4202
|
+
} from '../icons/text-wrap';
|
|
4191
4203
|
// TextSelect aliases
|
|
4192
4204
|
export { default as TextSelectIcon } from '../icons/text-select';
|
|
4193
4205
|
export {
|
|
4194
4206
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
4195
4207
|
default as TextSelectionIcon
|
|
4196
4208
|
} from '../icons/text-select';
|
|
4209
|
+
// TreePalm aliases
|
|
4210
|
+
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4211
|
+
export {
|
|
4212
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. This alias will be removed in v1.0 */
|
|
4213
|
+
default as PalmtreeIcon
|
|
4214
|
+
} from '../icons/tree-palm';
|
|
4197
4215
|
// TramFront aliases
|
|
4198
4216
|
export { default as TramFrontIcon } from '../icons/tram-front';
|
|
4199
4217
|
export {
|
|
@@ -4206,18 +4224,12 @@ export {
|
|
|
4206
4224
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
4207
4225
|
default as AlertTriangleIcon
|
|
4208
4226
|
} from '../icons/triangle-alert';
|
|
4209
|
-
//
|
|
4210
|
-
export { default as
|
|
4211
|
-
export {
|
|
4212
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. This alias will be removed in v1.0 */
|
|
4213
|
-
default as WrapTextIcon
|
|
4214
|
-
} from '../icons/text-wrap';
|
|
4215
|
-
// TreePalm aliases
|
|
4216
|
-
export { default as TreePalmIcon } from '../icons/tree-palm';
|
|
4227
|
+
// UserRoundCheck aliases
|
|
4228
|
+
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4217
4229
|
export {
|
|
4218
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
4219
|
-
default as
|
|
4220
|
-
} from '../icons/
|
|
4230
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
4231
|
+
default as UserCheck2Icon
|
|
4232
|
+
} from '../icons/user-round-check';
|
|
4221
4233
|
// TvMinimal aliases
|
|
4222
4234
|
export { default as TvMinimalIcon } from '../icons/tv-minimal';
|
|
4223
4235
|
export {
|
|
@@ -4230,12 +4242,6 @@ export {
|
|
|
4230
4242
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
4231
4243
|
default as School2Icon
|
|
4232
4244
|
} from '../icons/university';
|
|
4233
|
-
// UserRoundCheck aliases
|
|
4234
|
-
export { default as UserRoundCheckIcon } from '../icons/user-round-check';
|
|
4235
|
-
export {
|
|
4236
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
4237
|
-
default as UserCheck2Icon
|
|
4238
|
-
} from '../icons/user-round-check';
|
|
4239
4245
|
// UserRoundCog aliases
|
|
4240
4246
|
export { default as UserRoundCogIcon } from '../icons/user-round-cog';
|
|
4241
4247
|
export {
|
|
@@ -4278,18 +4284,18 @@ export {
|
|
|
4278
4284
|
/** @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 */
|
|
4279
4285
|
default as ForkKnifeCrossedIcon
|
|
4280
4286
|
} from '../icons/utensils-crossed';
|
|
4281
|
-
// Utensils aliases
|
|
4282
|
-
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4283
|
-
export {
|
|
4284
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
4285
|
-
default as ForkKnifeIcon
|
|
4286
|
-
} from '../icons/utensils';
|
|
4287
4287
|
// WalletMinimal aliases
|
|
4288
4288
|
export { default as WalletMinimalIcon } from '../icons/wallet-minimal';
|
|
4289
4289
|
export {
|
|
4290
4290
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
4291
4291
|
default as Wallet2Icon
|
|
4292
4292
|
} from '../icons/wallet-minimal';
|
|
4293
|
+
// Utensils aliases
|
|
4294
|
+
export { default as UtensilsIcon } from '../icons/utensils';
|
|
4295
|
+
export {
|
|
4296
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
4297
|
+
default as ForkKnifeIcon
|
|
4298
|
+
} from '../icons/utensils';
|
|
4293
4299
|
// WandSparkles aliases
|
|
4294
4300
|
export { default as WandSparklesIcon } from '../icons/wand-sparkles';
|
|
4295
4301
|
export {
|