@lucide/astro 0.533.0 → 0.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/aliases/aliases.ts +702 -192
- package/src/aliases/prefixed.ts +1171 -661
- package/src/aliases/suffixed.ts +1471 -961
- package/src/icons/book-copy.ts +2 -2
- package/src/icons/book-heart.ts +2 -2
- package/src/icons/calendar-heart.ts +2 -2
- package/src/icons/cloud-moon-rain.ts +2 -2
- package/src/icons/cloud-moon.ts +2 -2
- package/src/icons/file-heart.ts +2 -2
- package/src/icons/file-stack.ts +2 -2
- package/src/icons/files.ts +2 -2
- package/src/icons/folder-heart.ts +2 -2
- package/src/icons/folders.ts +2 -2
- package/src/icons/gavel.ts +2 -2
- package/src/icons/hand-fist.ts +18 -0
- package/src/icons/{grab.ts → hand-grab.ts} +4 -4
- package/src/icons/hand-heart.ts +2 -2
- package/src/icons/images.ts +2 -2
- package/src/icons/index.ts +168 -167
- package/src/icons/mails.ts +2 -2
- package/src/icons/moon-star.ts +2 -2
- package/src/icons/moon.ts +2 -2
- package/src/icons/scan-heart.ts +2 -2
- package/src/icons/settings.ts +2 -2
- package/src/icons/sun-moon.ts +2 -2
- package/src/icons/tags.ts +2 -2
package/src/aliases/aliases.ts
CHANGED
|
@@ -1,39 +1,75 @@
|
|
|
1
1
|
|
|
2
2
|
// AlarmClockCheck aliases
|
|
3
|
-
export {
|
|
3
|
+
export {
|
|
4
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockCheck} instead. This alias will be removed in v1.0 */
|
|
5
|
+
default as AlarmCheck
|
|
6
|
+
} from '../icons/alarm-clock-check';
|
|
4
7
|
|
|
5
8
|
// AlarmClockMinus aliases
|
|
6
|
-
export {
|
|
9
|
+
export {
|
|
10
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. This alias will be removed in v1.0 */
|
|
11
|
+
default as AlarmMinus
|
|
12
|
+
} from '../icons/alarm-clock-minus';
|
|
7
13
|
|
|
8
14
|
// AlarmClockPlus aliases
|
|
9
|
-
export {
|
|
15
|
+
export {
|
|
16
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
|
|
17
|
+
default as AlarmPlus
|
|
18
|
+
} from '../icons/alarm-clock-plus';
|
|
10
19
|
|
|
11
20
|
// ArrowDownAZ aliases
|
|
12
|
-
export {
|
|
21
|
+
export {
|
|
22
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
23
|
+
default as ArrowDownAz
|
|
24
|
+
} from '../icons/arrow-down-a-z';
|
|
13
25
|
|
|
14
26
|
// ArrowDownWideNarrow aliases
|
|
15
|
-
export {
|
|
27
|
+
export {
|
|
28
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
29
|
+
default as SortDesc
|
|
30
|
+
} from '../icons/arrow-down-wide-narrow';
|
|
16
31
|
|
|
17
32
|
// ArrowDownZA aliases
|
|
18
|
-
export {
|
|
33
|
+
export {
|
|
34
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. This alias will be removed in v1.0 */
|
|
35
|
+
default as ArrowDownZa
|
|
36
|
+
} from '../icons/arrow-down-z-a';
|
|
19
37
|
|
|
20
38
|
// ArrowUpAZ aliases
|
|
21
|
-
export {
|
|
39
|
+
export {
|
|
40
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. This alias will be removed in v1.0 */
|
|
41
|
+
default as ArrowUpAz
|
|
42
|
+
} from '../icons/arrow-up-a-z';
|
|
22
43
|
|
|
23
44
|
// ArrowUpNarrowWide aliases
|
|
24
|
-
export {
|
|
45
|
+
export {
|
|
46
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
47
|
+
default as SortAsc
|
|
48
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
25
49
|
|
|
26
50
|
// ArrowUpZA aliases
|
|
27
|
-
export {
|
|
51
|
+
export {
|
|
52
|
+
/** @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 */
|
|
53
|
+
default as ArrowUpZa
|
|
54
|
+
} from '../icons/arrow-up-z-a';
|
|
28
55
|
|
|
29
56
|
// Axis3d aliases
|
|
30
|
-
export {
|
|
57
|
+
export {
|
|
58
|
+
/** @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 */
|
|
59
|
+
default as Axis3D
|
|
60
|
+
} from '../icons/axis-3d';
|
|
31
61
|
|
|
32
62
|
// BadgeCheck aliases
|
|
33
|
-
export {
|
|
63
|
+
export {
|
|
64
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
|
|
65
|
+
default as Verified
|
|
66
|
+
} from '../icons/badge-check';
|
|
34
67
|
|
|
35
68
|
// BadgeQuestionMark aliases
|
|
36
|
-
export {
|
|
69
|
+
export {
|
|
70
|
+
/** @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 */
|
|
71
|
+
default as BadgeHelp
|
|
72
|
+
} from '../icons/badge-question-mark';
|
|
37
73
|
|
|
38
74
|
// BetweenHorizontalEnd aliases
|
|
39
75
|
export {
|
|
@@ -47,14 +83,23 @@ export {
|
|
|
47
83
|
default as BetweenHorizonalStart
|
|
48
84
|
} from '../icons/between-horizontal-start';
|
|
49
85
|
|
|
50
|
-
// Braces aliases
|
|
51
|
-
export { default as CurlyBraces } from '../icons/braces';
|
|
52
|
-
|
|
53
86
|
// BookDashed aliases
|
|
54
|
-
export {
|
|
87
|
+
export {
|
|
88
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. This alias will be removed in v1.0.0 */
|
|
89
|
+
default as BookTemplate
|
|
90
|
+
} from '../icons/book-dashed';
|
|
91
|
+
|
|
92
|
+
// Braces aliases
|
|
93
|
+
export {
|
|
94
|
+
/** @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 */
|
|
95
|
+
default as CurlyBraces
|
|
96
|
+
} from '../icons/braces';
|
|
55
97
|
|
|
56
98
|
// Captions aliases
|
|
57
|
-
export {
|
|
99
|
+
export {
|
|
100
|
+
/** @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 */
|
|
101
|
+
default as Subtitles
|
|
102
|
+
} from '../icons/captions';
|
|
58
103
|
|
|
59
104
|
// ChartArea aliases
|
|
60
105
|
export {
|
|
@@ -135,91 +180,178 @@ export {
|
|
|
135
180
|
} from '../icons/chart-scatter';
|
|
136
181
|
|
|
137
182
|
// CircleAlert aliases
|
|
138
|
-
export {
|
|
183
|
+
export {
|
|
184
|
+
/** @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 */
|
|
185
|
+
default as AlertCircle
|
|
186
|
+
} from '../icons/circle-alert';
|
|
139
187
|
|
|
140
188
|
// CircleArrowDown aliases
|
|
141
|
-
export {
|
|
189
|
+
export {
|
|
190
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
191
|
+
default as ArrowDownCircle
|
|
192
|
+
} from '../icons/circle-arrow-down';
|
|
142
193
|
|
|
143
194
|
// CircleArrowLeft aliases
|
|
144
|
-
export {
|
|
195
|
+
export {
|
|
196
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
197
|
+
default as ArrowLeftCircle
|
|
198
|
+
} from '../icons/circle-arrow-left';
|
|
145
199
|
|
|
146
200
|
// CircleArrowOutDownLeft aliases
|
|
147
|
-
export {
|
|
201
|
+
export {
|
|
202
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
203
|
+
default as ArrowDownLeftFromCircle
|
|
204
|
+
} from '../icons/circle-arrow-out-down-left';
|
|
148
205
|
|
|
149
206
|
// CircleArrowOutDownRight aliases
|
|
150
|
-
export {
|
|
207
|
+
export {
|
|
208
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
209
|
+
default as ArrowDownRightFromCircle
|
|
210
|
+
} from '../icons/circle-arrow-out-down-right';
|
|
151
211
|
|
|
152
212
|
// CircleArrowOutUpLeft aliases
|
|
153
|
-
export {
|
|
213
|
+
export {
|
|
214
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
215
|
+
default as ArrowUpLeftFromCircle
|
|
216
|
+
} from '../icons/circle-arrow-out-up-left';
|
|
154
217
|
|
|
155
218
|
// CircleArrowOutUpRight aliases
|
|
156
|
-
export {
|
|
219
|
+
export {
|
|
220
|
+
/** @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 */
|
|
221
|
+
default as ArrowUpRightFromCircle
|
|
222
|
+
} from '../icons/circle-arrow-out-up-right';
|
|
157
223
|
|
|
158
224
|
// CircleArrowRight aliases
|
|
159
|
-
export {
|
|
225
|
+
export {
|
|
226
|
+
/** @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 */
|
|
227
|
+
default as ArrowRightCircle
|
|
228
|
+
} from '../icons/circle-arrow-right';
|
|
160
229
|
|
|
161
230
|
// CircleArrowUp aliases
|
|
162
|
-
export {
|
|
231
|
+
export {
|
|
232
|
+
/** @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 */
|
|
233
|
+
default as ArrowUpCircle
|
|
234
|
+
} from '../icons/circle-arrow-up';
|
|
163
235
|
|
|
164
236
|
// CircleCheckBig aliases
|
|
165
|
-
export {
|
|
237
|
+
export {
|
|
238
|
+
/** @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 */
|
|
239
|
+
default as CheckCircle
|
|
240
|
+
} from '../icons/circle-check-big';
|
|
166
241
|
|
|
167
242
|
// CircleCheck aliases
|
|
168
|
-
export {
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
243
|
+
export {
|
|
244
|
+
/** @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 */
|
|
245
|
+
default as CheckCircle2
|
|
246
|
+
} from '../icons/circle-check';
|
|
172
247
|
|
|
173
248
|
// CircleChevronLeft aliases
|
|
174
|
-
export {
|
|
249
|
+
export {
|
|
250
|
+
/** @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 */
|
|
251
|
+
default as ChevronLeftCircle
|
|
252
|
+
} from '../icons/circle-chevron-left';
|
|
253
|
+
|
|
254
|
+
// CircleChevronDown aliases
|
|
255
|
+
export {
|
|
256
|
+
/** @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 */
|
|
257
|
+
default as ChevronDownCircle
|
|
258
|
+
} from '../icons/circle-chevron-down';
|
|
175
259
|
|
|
176
260
|
// CircleChevronRight aliases
|
|
177
|
-
export {
|
|
261
|
+
export {
|
|
262
|
+
/** @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 */
|
|
263
|
+
default as ChevronRightCircle
|
|
264
|
+
} from '../icons/circle-chevron-right';
|
|
178
265
|
|
|
179
266
|
// CircleChevronUp aliases
|
|
180
|
-
export {
|
|
267
|
+
export {
|
|
268
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. This alias will be removed in v1.0 */
|
|
269
|
+
default as ChevronUpCircle
|
|
270
|
+
} from '../icons/circle-chevron-up';
|
|
181
271
|
|
|
182
272
|
// CircleDivide aliases
|
|
183
|
-
export {
|
|
273
|
+
export {
|
|
274
|
+
/** @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 */
|
|
275
|
+
default as DivideCircle
|
|
276
|
+
} from '../icons/circle-divide';
|
|
184
277
|
|
|
185
278
|
// CircleGauge aliases
|
|
186
|
-
export {
|
|
279
|
+
export {
|
|
280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
281
|
+
default as GaugeCircle
|
|
282
|
+
} from '../icons/circle-gauge';
|
|
187
283
|
|
|
188
284
|
// CircleMinus aliases
|
|
189
|
-
export {
|
|
285
|
+
export {
|
|
286
|
+
/** @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 */
|
|
287
|
+
default as MinusCircle
|
|
288
|
+
} from '../icons/circle-minus';
|
|
190
289
|
|
|
191
290
|
// CircleParkingOff aliases
|
|
192
|
-
export {
|
|
291
|
+
export {
|
|
292
|
+
/** @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 */
|
|
293
|
+
default as ParkingCircleOff
|
|
294
|
+
} from '../icons/circle-parking-off';
|
|
193
295
|
|
|
194
296
|
// CircleParking aliases
|
|
195
|
-
export {
|
|
297
|
+
export {
|
|
298
|
+
/** @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 */
|
|
299
|
+
default as ParkingCircle
|
|
300
|
+
} from '../icons/circle-parking';
|
|
196
301
|
|
|
197
302
|
// CirclePause aliases
|
|
198
|
-
export {
|
|
303
|
+
export {
|
|
304
|
+
/** @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 */
|
|
305
|
+
default as PauseCircle
|
|
306
|
+
} from '../icons/circle-pause';
|
|
199
307
|
|
|
200
308
|
// CirclePercent aliases
|
|
201
|
-
export {
|
|
309
|
+
export {
|
|
310
|
+
/** @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 */
|
|
311
|
+
default as PercentCircle
|
|
312
|
+
} from '../icons/circle-percent';
|
|
202
313
|
|
|
203
314
|
// CirclePlay aliases
|
|
204
|
-
export {
|
|
315
|
+
export {
|
|
316
|
+
/** @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 */
|
|
317
|
+
default as PlayCircle
|
|
318
|
+
} from '../icons/circle-play';
|
|
205
319
|
|
|
206
320
|
// CirclePlus aliases
|
|
207
|
-
export {
|
|
321
|
+
export {
|
|
322
|
+
/** @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 */
|
|
323
|
+
default as PlusCircle
|
|
324
|
+
} from '../icons/circle-plus';
|
|
208
325
|
|
|
209
326
|
// CirclePower aliases
|
|
210
|
-
export {
|
|
327
|
+
export {
|
|
328
|
+
/** @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 */
|
|
329
|
+
default as PowerCircle
|
|
330
|
+
} from '../icons/circle-power';
|
|
211
331
|
|
|
212
332
|
// CircleQuestionMark aliases
|
|
213
|
-
export {
|
|
333
|
+
export {
|
|
334
|
+
/** @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 */
|
|
335
|
+
default as HelpCircle
|
|
336
|
+
} from '../icons/circle-question-mark';
|
|
214
337
|
|
|
215
338
|
// CircleQuestionMark aliases
|
|
216
|
-
export {
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
339
|
+
export {
|
|
340
|
+
/** @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 */
|
|
341
|
+
default as CircleHelp
|
|
342
|
+
} from '../icons/circle-question-mark';
|
|
220
343
|
|
|
221
344
|
// CircleSlash2 aliases
|
|
222
|
-
export {
|
|
345
|
+
export {
|
|
346
|
+
/** @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 */
|
|
347
|
+
default as CircleSlashed
|
|
348
|
+
} from '../icons/circle-slash-2';
|
|
349
|
+
|
|
350
|
+
// CircleStop aliases
|
|
351
|
+
export {
|
|
352
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
353
|
+
default as StopCircle
|
|
354
|
+
} from '../icons/circle-stop';
|
|
223
355
|
|
|
224
356
|
// CircleUserRound aliases
|
|
225
357
|
export {
|
|
@@ -228,22 +360,40 @@ export {
|
|
|
228
360
|
} from '../icons/circle-user-round';
|
|
229
361
|
|
|
230
362
|
// CircleUser aliases
|
|
231
|
-
export {
|
|
363
|
+
export {
|
|
364
|
+
/** @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 */
|
|
365
|
+
default as UserCircle
|
|
366
|
+
} from '../icons/circle-user';
|
|
232
367
|
|
|
233
368
|
// CircleX aliases
|
|
234
|
-
export {
|
|
369
|
+
export {
|
|
370
|
+
/** @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 */
|
|
371
|
+
default as XCircle
|
|
372
|
+
} from '../icons/circle-x';
|
|
235
373
|
|
|
236
374
|
// ClipboardPenLine aliases
|
|
237
|
-
export {
|
|
375
|
+
export {
|
|
376
|
+
/** @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 */
|
|
377
|
+
default as ClipboardSignature
|
|
378
|
+
} from '../icons/clipboard-pen-line';
|
|
238
379
|
|
|
239
380
|
// ClipboardPen aliases
|
|
240
|
-
export {
|
|
381
|
+
export {
|
|
382
|
+
/** @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 */
|
|
383
|
+
default as ClipboardEdit
|
|
384
|
+
} from '../icons/clipboard-pen';
|
|
241
385
|
|
|
242
386
|
// CloudDownload aliases
|
|
243
|
-
export {
|
|
387
|
+
export {
|
|
388
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. This alias will be removed in v1.0 */
|
|
389
|
+
default as DownloadCloud
|
|
390
|
+
} from '../icons/cloud-download';
|
|
244
391
|
|
|
245
392
|
// CloudUpload aliases
|
|
246
|
-
export {
|
|
393
|
+
export {
|
|
394
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
395
|
+
default as UploadCloud
|
|
396
|
+
} from '../icons/cloud-upload';
|
|
247
397
|
|
|
248
398
|
// CodeXml aliases
|
|
249
399
|
export {
|
|
@@ -252,16 +402,22 @@ export {
|
|
|
252
402
|
} from '../icons/code-xml';
|
|
253
403
|
|
|
254
404
|
// Columns2 aliases
|
|
255
|
-
export {
|
|
405
|
+
export {
|
|
406
|
+
/** @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 */
|
|
407
|
+
default as Columns
|
|
408
|
+
} from '../icons/columns-2';
|
|
256
409
|
|
|
257
410
|
// Columns3Cog aliases
|
|
258
|
-
export {
|
|
411
|
+
export {
|
|
412
|
+
/** @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 */
|
|
413
|
+
default as ColumnsSettings
|
|
414
|
+
} from '../icons/columns-3-cog';
|
|
259
415
|
|
|
260
416
|
// Columns3Cog aliases
|
|
261
|
-
export {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
417
|
+
export {
|
|
418
|
+
/** @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 */
|
|
419
|
+
default as TableConfig
|
|
420
|
+
} from '../icons/columns-3-cog';
|
|
265
421
|
|
|
266
422
|
// ContactRound aliases
|
|
267
423
|
export {
|
|
@@ -269,8 +425,17 @@ export {
|
|
|
269
425
|
default as Contact2
|
|
270
426
|
} from '../icons/contact-round';
|
|
271
427
|
|
|
428
|
+
// Columns3 aliases
|
|
429
|
+
export {
|
|
430
|
+
/** @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 */
|
|
431
|
+
default as PanelsLeftRight
|
|
432
|
+
} from '../icons/columns-3';
|
|
433
|
+
|
|
272
434
|
// DiamondPercent aliases
|
|
273
|
-
export {
|
|
435
|
+
export {
|
|
436
|
+
/** @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 */
|
|
437
|
+
default as PercentDiamond
|
|
438
|
+
} from '../icons/diamond-percent';
|
|
274
439
|
|
|
275
440
|
// Earth aliases
|
|
276
441
|
export {
|
|
@@ -279,13 +444,22 @@ export {
|
|
|
279
444
|
} from '../icons/earth';
|
|
280
445
|
|
|
281
446
|
// EllipsisVertical aliases
|
|
282
|
-
export {
|
|
447
|
+
export {
|
|
448
|
+
/** @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 */
|
|
449
|
+
default as MoreVertical
|
|
450
|
+
} from '../icons/ellipsis-vertical';
|
|
283
451
|
|
|
284
452
|
// Ellipsis aliases
|
|
285
|
-
export {
|
|
453
|
+
export {
|
|
454
|
+
/** @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 */
|
|
455
|
+
default as MoreHorizontal
|
|
456
|
+
} from '../icons/ellipsis';
|
|
286
457
|
|
|
287
458
|
// FileAxis3d aliases
|
|
288
|
-
export {
|
|
459
|
+
export {
|
|
460
|
+
/** @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 */
|
|
461
|
+
default as FileAxis3D
|
|
462
|
+
} from '../icons/file-axis-3d';
|
|
289
463
|
|
|
290
464
|
// FileChartColumnIncreasing aliases
|
|
291
465
|
export {
|
|
@@ -318,19 +492,34 @@ export {
|
|
|
318
492
|
} from '../icons/file-cog';
|
|
319
493
|
|
|
320
494
|
// FilePenLine aliases
|
|
321
|
-
export {
|
|
495
|
+
export {
|
|
496
|
+
/** @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 */
|
|
497
|
+
default as FileSignature
|
|
498
|
+
} from '../icons/file-pen-line';
|
|
322
499
|
|
|
323
500
|
// FilePen aliases
|
|
324
|
-
export {
|
|
501
|
+
export {
|
|
502
|
+
/** @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 */
|
|
503
|
+
default as FileEdit
|
|
504
|
+
} from '../icons/file-pen';
|
|
325
505
|
|
|
326
506
|
// FilePlay aliases
|
|
327
|
-
export {
|
|
507
|
+
export {
|
|
508
|
+
/** @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 */
|
|
509
|
+
default as FileVideo
|
|
510
|
+
} from '../icons/file-play';
|
|
328
511
|
|
|
329
512
|
// FileQuestionMark aliases
|
|
330
|
-
export {
|
|
513
|
+
export {
|
|
514
|
+
/** @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 */
|
|
515
|
+
default as FileQuestion
|
|
516
|
+
} from '../icons/file-question-mark';
|
|
331
517
|
|
|
332
518
|
// FileVideoCamera aliases
|
|
333
|
-
export {
|
|
519
|
+
export {
|
|
520
|
+
/** @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 */
|
|
521
|
+
default as FileVideo2
|
|
522
|
+
} from '../icons/file-video-camera';
|
|
334
523
|
|
|
335
524
|
// FolderCog aliases
|
|
336
525
|
export {
|
|
@@ -338,15 +527,18 @@ export {
|
|
|
338
527
|
default as FolderCog2
|
|
339
528
|
} from '../icons/folder-cog';
|
|
340
529
|
|
|
341
|
-
// FolderPen aliases
|
|
342
|
-
export { default as FolderEdit } from '../icons/folder-pen';
|
|
343
|
-
|
|
344
530
|
// FunnelX aliases
|
|
345
531
|
export {
|
|
346
532
|
/** @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 */
|
|
347
533
|
default as FilterX
|
|
348
534
|
} from '../icons/funnel-x';
|
|
349
535
|
|
|
536
|
+
// FolderPen aliases
|
|
537
|
+
export {
|
|
538
|
+
/** @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 */
|
|
539
|
+
default as FolderEdit
|
|
540
|
+
} from '../icons/folder-pen';
|
|
541
|
+
|
|
350
542
|
// Funnel aliases
|
|
351
543
|
export {
|
|
352
544
|
/** @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 */
|
|
@@ -354,31 +546,64 @@ export {
|
|
|
354
546
|
} from '../icons/funnel';
|
|
355
547
|
|
|
356
548
|
// GitCommitHorizontal aliases
|
|
357
|
-
export {
|
|
549
|
+
export {
|
|
550
|
+
/** @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 */
|
|
551
|
+
default as GitCommit
|
|
552
|
+
} from '../icons/git-commit-horizontal';
|
|
358
553
|
|
|
359
554
|
// Grid2x2Check aliases
|
|
360
|
-
export {
|
|
555
|
+
export {
|
|
556
|
+
/** @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 */
|
|
557
|
+
default as Grid2X2Check
|
|
558
|
+
} from '../icons/grid-2x2-check';
|
|
361
559
|
|
|
362
560
|
// Grid2x2Plus aliases
|
|
363
|
-
export {
|
|
561
|
+
export {
|
|
562
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. This alias will be removed in v1.0 */
|
|
563
|
+
default as Grid2X2Plus
|
|
564
|
+
} from '../icons/grid-2x2-plus';
|
|
364
565
|
|
|
365
566
|
// Grid2x2X aliases
|
|
366
|
-
export {
|
|
567
|
+
export {
|
|
568
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. This alias will be removed in v1.0 */
|
|
569
|
+
default as Grid2X2X
|
|
570
|
+
} from '../icons/grid-2x2-x';
|
|
367
571
|
|
|
368
572
|
// Grid2x2 aliases
|
|
369
|
-
export {
|
|
573
|
+
export {
|
|
574
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
575
|
+
default as Grid2X2
|
|
576
|
+
} from '../icons/grid-2x2';
|
|
370
577
|
|
|
371
578
|
// Grid3x3 aliases
|
|
372
|
-
export {
|
|
579
|
+
export {
|
|
580
|
+
/** @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 */
|
|
581
|
+
default as Grid
|
|
582
|
+
} from '../icons/grid-3x3';
|
|
373
583
|
|
|
374
584
|
// Grid3x3 aliases
|
|
375
|
-
export {
|
|
585
|
+
export {
|
|
586
|
+
/** @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 */
|
|
587
|
+
default as Grid3X3
|
|
588
|
+
} from '../icons/grid-3x3';
|
|
589
|
+
|
|
590
|
+
// HandGrab aliases
|
|
591
|
+
export {
|
|
592
|
+
/** @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 */
|
|
593
|
+
default as Grab
|
|
594
|
+
} from '../icons/hand-grab';
|
|
376
595
|
|
|
377
596
|
// HandHelping aliases
|
|
378
|
-
export {
|
|
597
|
+
export {
|
|
598
|
+
/** @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 */
|
|
599
|
+
default as HelpingHand
|
|
600
|
+
} from '../icons/hand-helping';
|
|
379
601
|
|
|
380
602
|
// House aliases
|
|
381
|
-
export {
|
|
603
|
+
export {
|
|
604
|
+
/** @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 */
|
|
605
|
+
default as Home
|
|
606
|
+
} from '../icons/house';
|
|
382
607
|
|
|
383
608
|
// IceCreamBowl aliases
|
|
384
609
|
export {
|
|
@@ -387,13 +612,22 @@ export {
|
|
|
387
612
|
} from '../icons/ice-cream-bowl';
|
|
388
613
|
|
|
389
614
|
// IceCreamCone aliases
|
|
390
|
-
export {
|
|
615
|
+
export {
|
|
616
|
+
/** @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 */
|
|
617
|
+
default as IceCream
|
|
618
|
+
} from '../icons/ice-cream-cone';
|
|
391
619
|
|
|
392
620
|
// IndentDecrease aliases
|
|
393
|
-
export {
|
|
621
|
+
export {
|
|
622
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentDecrease} instead. This alias will be removed in v1.0 */
|
|
623
|
+
default as Outdent
|
|
624
|
+
} from '../icons/indent-decrease';
|
|
394
625
|
|
|
395
626
|
// IndentIncrease aliases
|
|
396
|
-
export {
|
|
627
|
+
export {
|
|
628
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentIncrease} instead. This alias will be removed in v1.0 */
|
|
629
|
+
default as Indent
|
|
630
|
+
} from '../icons/indent-increase';
|
|
397
631
|
|
|
398
632
|
// LaptopMinimal aliases
|
|
399
633
|
export {
|
|
@@ -402,16 +636,34 @@ export {
|
|
|
402
636
|
} from '../icons/laptop-minimal';
|
|
403
637
|
|
|
404
638
|
// Layers aliases
|
|
405
|
-
export {
|
|
639
|
+
export {
|
|
640
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
641
|
+
default as Layers3
|
|
642
|
+
} from '../icons/layers';
|
|
406
643
|
|
|
407
644
|
// LoaderCircle aliases
|
|
408
|
-
export {
|
|
645
|
+
export {
|
|
646
|
+
/** @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 */
|
|
647
|
+
default as Loader2
|
|
648
|
+
} from '../icons/loader-circle';
|
|
409
649
|
|
|
410
650
|
// LockKeyholeOpen aliases
|
|
411
|
-
export {
|
|
651
|
+
export {
|
|
652
|
+
/** @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 */
|
|
653
|
+
default as UnlockKeyhole
|
|
654
|
+
} from '../icons/lock-keyhole-open';
|
|
412
655
|
|
|
413
656
|
// LockOpen aliases
|
|
414
|
-
export {
|
|
657
|
+
export {
|
|
658
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. This alias will be removed in v1.0 */
|
|
659
|
+
default as Unlock
|
|
660
|
+
} from '../icons/lock-open';
|
|
661
|
+
|
|
662
|
+
// MailQuestionMark aliases
|
|
663
|
+
export {
|
|
664
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. This alias will be removed in v1.0 */
|
|
665
|
+
default as MailQuestion
|
|
666
|
+
} from '../icons/mail-question-mark';
|
|
415
667
|
|
|
416
668
|
// MapPinPen aliases
|
|
417
669
|
export {
|
|
@@ -419,11 +671,11 @@ export {
|
|
|
419
671
|
default as LocationEdit
|
|
420
672
|
} from '../icons/map-pin-pen';
|
|
421
673
|
|
|
422
|
-
// MailQuestionMark aliases
|
|
423
|
-
export { default as MailQuestion } from '../icons/mail-question-mark';
|
|
424
|
-
|
|
425
674
|
// MessageCircleQuestionMark aliases
|
|
426
|
-
export {
|
|
675
|
+
export {
|
|
676
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
677
|
+
default as MessageCircleQuestion
|
|
678
|
+
} from '../icons/message-circle-question-mark';
|
|
427
679
|
|
|
428
680
|
// MicVocal aliases
|
|
429
681
|
export {
|
|
@@ -432,43 +684,82 @@ export {
|
|
|
432
684
|
} from '../icons/mic-vocal';
|
|
433
685
|
|
|
434
686
|
// Move3d aliases
|
|
435
|
-
export {
|
|
687
|
+
export {
|
|
688
|
+
/** @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 */
|
|
689
|
+
default as Move3D
|
|
690
|
+
} from '../icons/move-3d';
|
|
436
691
|
|
|
437
692
|
// OctagonAlert aliases
|
|
438
|
-
export {
|
|
693
|
+
export {
|
|
694
|
+
/** @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 */
|
|
695
|
+
default as AlertOctagon
|
|
696
|
+
} from '../icons/octagon-alert';
|
|
439
697
|
|
|
440
698
|
// OctagonPause aliases
|
|
441
|
-
export {
|
|
699
|
+
export {
|
|
700
|
+
/** @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 */
|
|
701
|
+
default as PauseOctagon
|
|
702
|
+
} from '../icons/octagon-pause';
|
|
442
703
|
|
|
443
704
|
// OctagonX aliases
|
|
444
|
-
export {
|
|
705
|
+
export {
|
|
706
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. This alias will be removed in v1.0 */
|
|
707
|
+
default as XOctagon
|
|
708
|
+
} from '../icons/octagon-x';
|
|
445
709
|
|
|
446
710
|
// PaintbrushVertical aliases
|
|
447
|
-
export {
|
|
711
|
+
export {
|
|
712
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
713
|
+
default as Paintbrush2
|
|
714
|
+
} from '../icons/paintbrush-vertical';
|
|
448
715
|
|
|
449
716
|
// PanelBottomDashed aliases
|
|
450
|
-
export {
|
|
717
|
+
export {
|
|
718
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
719
|
+
default as PanelBottomInactive
|
|
720
|
+
} from '../icons/panel-bottom-dashed';
|
|
451
721
|
|
|
452
722
|
// PanelLeftClose aliases
|
|
453
|
-
export {
|
|
723
|
+
export {
|
|
724
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
725
|
+
default as SidebarClose
|
|
726
|
+
} from '../icons/panel-left-close';
|
|
454
727
|
|
|
455
728
|
// PanelLeftDashed aliases
|
|
456
|
-
export {
|
|
729
|
+
export {
|
|
730
|
+
/** @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 */
|
|
731
|
+
default as PanelLeftInactive
|
|
732
|
+
} from '../icons/panel-left-dashed';
|
|
457
733
|
|
|
458
734
|
// PanelLeftOpen aliases
|
|
459
|
-
export {
|
|
735
|
+
export {
|
|
736
|
+
/** @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 */
|
|
737
|
+
default as SidebarOpen
|
|
738
|
+
} from '../icons/panel-left-open';
|
|
460
739
|
|
|
461
740
|
// PanelLeft aliases
|
|
462
|
-
export {
|
|
741
|
+
export {
|
|
742
|
+
/** @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 */
|
|
743
|
+
default as Sidebar
|
|
744
|
+
} from '../icons/panel-left';
|
|
463
745
|
|
|
464
746
|
// PanelRightDashed aliases
|
|
465
|
-
export {
|
|
747
|
+
export {
|
|
748
|
+
/** @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 */
|
|
749
|
+
default as PanelRightInactive
|
|
750
|
+
} from '../icons/panel-right-dashed';
|
|
466
751
|
|
|
467
752
|
// PanelTopDashed aliases
|
|
468
|
-
export {
|
|
753
|
+
export {
|
|
754
|
+
/** @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 */
|
|
755
|
+
default as PanelTopInactive
|
|
756
|
+
} from '../icons/panel-top-dashed';
|
|
469
757
|
|
|
470
758
|
// PanelsTopLeft aliases
|
|
471
|
-
export {
|
|
759
|
+
export {
|
|
760
|
+
/** @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 */
|
|
761
|
+
default as Layout
|
|
762
|
+
} from '../icons/panels-top-left';
|
|
472
763
|
|
|
473
764
|
// PenLine aliases
|
|
474
765
|
export {
|
|
@@ -482,23 +773,41 @@ export {
|
|
|
482
773
|
default as Edit2
|
|
483
774
|
} from '../icons/pen';
|
|
484
775
|
|
|
485
|
-
// RectangleEllipsis aliases
|
|
486
|
-
export { default as FormInput } from '../icons/rectangle-ellipsis';
|
|
487
|
-
|
|
488
776
|
// PlugZap aliases
|
|
489
|
-
export {
|
|
777
|
+
export {
|
|
778
|
+
/** @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 */
|
|
779
|
+
default as PlugZap2
|
|
780
|
+
} from '../icons/plug-zap';
|
|
781
|
+
|
|
782
|
+
// RectangleEllipsis aliases
|
|
783
|
+
export {
|
|
784
|
+
/** @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 */
|
|
785
|
+
default as FormInput
|
|
786
|
+
} from '../icons/rectangle-ellipsis';
|
|
490
787
|
|
|
491
788
|
// Rotate3d aliases
|
|
492
|
-
export {
|
|
789
|
+
export {
|
|
790
|
+
/** @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 */
|
|
791
|
+
default as Rotate3D
|
|
792
|
+
} from '../icons/rotate-3d';
|
|
493
793
|
|
|
494
794
|
// Rows2 aliases
|
|
495
|
-
export {
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
795
|
+
export {
|
|
796
|
+
/** @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 */
|
|
797
|
+
default as Rows
|
|
798
|
+
} from '../icons/rows-2';
|
|
499
799
|
|
|
500
800
|
// Scale3d aliases
|
|
501
|
-
export {
|
|
801
|
+
export {
|
|
802
|
+
/** @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 */
|
|
803
|
+
default as Scale3D
|
|
804
|
+
} from '../icons/scale-3d';
|
|
805
|
+
|
|
806
|
+
// Rows3 aliases
|
|
807
|
+
export {
|
|
808
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
809
|
+
default as PanelsTopBottom
|
|
810
|
+
} from '../icons/rows-3';
|
|
502
811
|
|
|
503
812
|
// SendHorizontal aliases
|
|
504
813
|
export {
|
|
@@ -507,178 +816,346 @@ export {
|
|
|
507
816
|
} from '../icons/send-horizontal';
|
|
508
817
|
|
|
509
818
|
// ShieldQuestionMark aliases
|
|
510
|
-
export {
|
|
819
|
+
export {
|
|
820
|
+
/** @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 */
|
|
821
|
+
default as ShieldQuestion
|
|
822
|
+
} from '../icons/shield-question-mark';
|
|
511
823
|
|
|
512
824
|
// ShieldX aliases
|
|
513
|
-
export {
|
|
825
|
+
export {
|
|
826
|
+
/** @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 */
|
|
827
|
+
default as ShieldClose
|
|
828
|
+
} from '../icons/shield-x';
|
|
514
829
|
|
|
515
830
|
// SlidersVertical aliases
|
|
516
|
-
export {
|
|
831
|
+
export {
|
|
832
|
+
/** @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 */
|
|
833
|
+
default as Sliders
|
|
834
|
+
} from '../icons/sliders-vertical';
|
|
517
835
|
|
|
518
836
|
// Sparkles aliases
|
|
519
|
-
export {
|
|
837
|
+
export {
|
|
838
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
839
|
+
default as Stars
|
|
840
|
+
} from '../icons/sparkles';
|
|
520
841
|
|
|
521
842
|
// SquareActivity aliases
|
|
522
|
-
export {
|
|
843
|
+
export {
|
|
844
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. This alias will be removed in v1.0 */
|
|
845
|
+
default as ActivitySquare
|
|
846
|
+
} from '../icons/square-activity';
|
|
523
847
|
|
|
524
848
|
// SquareArrowDownLeft aliases
|
|
525
|
-
export {
|
|
849
|
+
export {
|
|
850
|
+
/** @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 */
|
|
851
|
+
default as ArrowDownLeftSquare
|
|
852
|
+
} from '../icons/square-arrow-down-left';
|
|
526
853
|
|
|
527
854
|
// SquareArrowDownRight aliases
|
|
528
|
-
export {
|
|
855
|
+
export {
|
|
856
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
857
|
+
default as ArrowDownRightSquare
|
|
858
|
+
} from '../icons/square-arrow-down-right';
|
|
529
859
|
|
|
530
860
|
// SquareArrowDown aliases
|
|
531
|
-
export {
|
|
861
|
+
export {
|
|
862
|
+
/** @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 */
|
|
863
|
+
default as ArrowDownSquare
|
|
864
|
+
} from '../icons/square-arrow-down';
|
|
532
865
|
|
|
533
866
|
// SquareArrowLeft aliases
|
|
534
|
-
export {
|
|
867
|
+
export {
|
|
868
|
+
/** @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 */
|
|
869
|
+
default as ArrowLeftSquare
|
|
870
|
+
} from '../icons/square-arrow-left';
|
|
535
871
|
|
|
536
872
|
// SquareArrowOutDownLeft aliases
|
|
537
|
-
export {
|
|
873
|
+
export {
|
|
874
|
+
/** @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 */
|
|
875
|
+
default as ArrowDownLeftFromSquare
|
|
876
|
+
} from '../icons/square-arrow-out-down-left';
|
|
538
877
|
|
|
539
878
|
// SquareArrowOutDownRight aliases
|
|
540
|
-
export {
|
|
879
|
+
export {
|
|
880
|
+
/** @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 */
|
|
881
|
+
default as ArrowDownRightFromSquare
|
|
882
|
+
} from '../icons/square-arrow-out-down-right';
|
|
541
883
|
|
|
542
884
|
// SquareArrowOutUpLeft aliases
|
|
543
|
-
export {
|
|
885
|
+
export {
|
|
886
|
+
/** @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 */
|
|
887
|
+
default as ArrowUpLeftFromSquare
|
|
888
|
+
} from '../icons/square-arrow-out-up-left';
|
|
544
889
|
|
|
545
890
|
// SquareArrowOutUpRight aliases
|
|
546
|
-
export {
|
|
891
|
+
export {
|
|
892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
893
|
+
default as ArrowUpRightFromSquare
|
|
894
|
+
} from '../icons/square-arrow-out-up-right';
|
|
547
895
|
|
|
548
896
|
// SquareArrowRight aliases
|
|
549
|
-
export {
|
|
897
|
+
export {
|
|
898
|
+
/** @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 */
|
|
899
|
+
default as ArrowRightSquare
|
|
900
|
+
} from '../icons/square-arrow-right';
|
|
550
901
|
|
|
551
902
|
// SquareArrowUpLeft aliases
|
|
552
|
-
export {
|
|
903
|
+
export {
|
|
904
|
+
/** @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 */
|
|
905
|
+
default as ArrowUpLeftSquare
|
|
906
|
+
} from '../icons/square-arrow-up-left';
|
|
553
907
|
|
|
554
908
|
// SquareArrowUpRight aliases
|
|
555
|
-
export {
|
|
909
|
+
export {
|
|
910
|
+
/** @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 */
|
|
911
|
+
default as ArrowUpRightSquare
|
|
912
|
+
} from '../icons/square-arrow-up-right';
|
|
556
913
|
|
|
557
914
|
// SquareArrowUp aliases
|
|
558
|
-
export {
|
|
915
|
+
export {
|
|
916
|
+
/** @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 */
|
|
917
|
+
default as ArrowUpSquare
|
|
918
|
+
} from '../icons/square-arrow-up';
|
|
559
919
|
|
|
560
920
|
// SquareAsterisk aliases
|
|
561
|
-
export {
|
|
921
|
+
export {
|
|
922
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
923
|
+
default as AsteriskSquare
|
|
924
|
+
} from '../icons/square-asterisk';
|
|
562
925
|
|
|
563
926
|
// SquareBottomDashedScissors aliases
|
|
564
|
-
export {
|
|
927
|
+
export {
|
|
928
|
+
/** @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 */
|
|
929
|
+
default as ScissorsSquareDashedBottom
|
|
930
|
+
} from '../icons/square-bottom-dashed-scissors';
|
|
565
931
|
|
|
566
932
|
// SquareChartGantt aliases
|
|
567
|
-
export {
|
|
933
|
+
export {
|
|
934
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
935
|
+
default as GanttChartSquare
|
|
936
|
+
} from '../icons/square-chart-gantt';
|
|
568
937
|
|
|
569
938
|
// SquareChartGantt aliases
|
|
570
|
-
export {
|
|
939
|
+
export {
|
|
940
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
941
|
+
default as SquareGanttChart
|
|
942
|
+
} from '../icons/square-chart-gantt';
|
|
571
943
|
|
|
572
944
|
// SquareCheckBig aliases
|
|
573
|
-
export {
|
|
945
|
+
export {
|
|
946
|
+
/** @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 */
|
|
947
|
+
default as CheckSquare
|
|
948
|
+
} from '../icons/square-check-big';
|
|
574
949
|
|
|
575
950
|
// SquareCheck aliases
|
|
576
|
-
export {
|
|
951
|
+
export {
|
|
952
|
+
/** @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 */
|
|
953
|
+
default as CheckSquare2
|
|
954
|
+
} from '../icons/square-check';
|
|
577
955
|
|
|
578
956
|
// SquareChevronDown aliases
|
|
579
|
-
export {
|
|
957
|
+
export {
|
|
958
|
+
/** @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 */
|
|
959
|
+
default as ChevronDownSquare
|
|
960
|
+
} from '../icons/square-chevron-down';
|
|
580
961
|
|
|
581
962
|
// SquareChevronLeft aliases
|
|
582
|
-
export {
|
|
963
|
+
export {
|
|
964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
965
|
+
default as ChevronLeftSquare
|
|
966
|
+
} from '../icons/square-chevron-left';
|
|
583
967
|
|
|
584
968
|
// SquareChevronRight aliases
|
|
585
|
-
export {
|
|
969
|
+
export {
|
|
970
|
+
/** @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 */
|
|
971
|
+
default as ChevronRightSquare
|
|
972
|
+
} from '../icons/square-chevron-right';
|
|
586
973
|
|
|
587
974
|
// SquareChevronUp aliases
|
|
588
|
-
export {
|
|
975
|
+
export {
|
|
976
|
+
/** @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 */
|
|
977
|
+
default as ChevronUpSquare
|
|
978
|
+
} from '../icons/square-chevron-up';
|
|
589
979
|
|
|
590
980
|
// SquareCode aliases
|
|
591
|
-
export {
|
|
981
|
+
export {
|
|
982
|
+
/** @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 */
|
|
983
|
+
default as CodeSquare
|
|
984
|
+
} from '../icons/square-code';
|
|
592
985
|
|
|
593
986
|
// SquareDashedKanban aliases
|
|
594
|
-
export {
|
|
987
|
+
export {
|
|
988
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. This alias will be removed in v1.0 */
|
|
989
|
+
default as KanbanSquareDashed
|
|
990
|
+
} from '../icons/square-dashed-kanban';
|
|
595
991
|
|
|
596
992
|
// SquareDashedMousePointer aliases
|
|
597
|
-
export {
|
|
993
|
+
export {
|
|
994
|
+
/** @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 */
|
|
995
|
+
default as MousePointerSquareDashed
|
|
996
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
598
997
|
|
|
599
998
|
// SquareDashed aliases
|
|
600
|
-
export {
|
|
999
|
+
export {
|
|
1000
|
+
/** @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 */
|
|
1001
|
+
default as BoxSelect
|
|
1002
|
+
} from '../icons/square-dashed';
|
|
601
1003
|
|
|
602
1004
|
// SquareDivide aliases
|
|
603
|
-
export {
|
|
1005
|
+
export {
|
|
1006
|
+
/** @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 */
|
|
1007
|
+
default as DivideSquare
|
|
1008
|
+
} from '../icons/square-divide';
|
|
604
1009
|
|
|
605
1010
|
// SquareDot aliases
|
|
606
|
-
export {
|
|
1011
|
+
export {
|
|
1012
|
+
/** @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 */
|
|
1013
|
+
default as DotSquare
|
|
1014
|
+
} from '../icons/square-dot';
|
|
607
1015
|
|
|
608
1016
|
// SquareEqual aliases
|
|
609
|
-
export {
|
|
1017
|
+
export {
|
|
1018
|
+
/** @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 */
|
|
1019
|
+
default as EqualSquare
|
|
1020
|
+
} from '../icons/square-equal';
|
|
610
1021
|
|
|
611
1022
|
// SquareFunction aliases
|
|
612
|
-
export {
|
|
1023
|
+
export {
|
|
1024
|
+
/** @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 */
|
|
1025
|
+
default as FunctionSquare
|
|
1026
|
+
} from '../icons/square-function';
|
|
613
1027
|
|
|
614
1028
|
// SquareKanban aliases
|
|
615
|
-
export {
|
|
1029
|
+
export {
|
|
1030
|
+
/** @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 */
|
|
1031
|
+
default as KanbanSquare
|
|
1032
|
+
} from '../icons/square-kanban';
|
|
616
1033
|
|
|
617
1034
|
// SquareLibrary aliases
|
|
618
|
-
export {
|
|
1035
|
+
export {
|
|
1036
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. This alias will be removed in v1.0 */
|
|
1037
|
+
default as LibrarySquare
|
|
1038
|
+
} from '../icons/square-library';
|
|
619
1039
|
|
|
620
1040
|
// SquareM aliases
|
|
621
|
-
export {
|
|
1041
|
+
export {
|
|
1042
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
1043
|
+
default as MSquare
|
|
1044
|
+
} from '../icons/square-m';
|
|
622
1045
|
|
|
623
1046
|
// SquareMenu aliases
|
|
624
|
-
export {
|
|
1047
|
+
export {
|
|
1048
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1049
|
+
default as MenuSquare
|
|
1050
|
+
} from '../icons/square-menu';
|
|
625
1051
|
|
|
626
1052
|
// SquareMinus aliases
|
|
627
|
-
export {
|
|
1053
|
+
export {
|
|
1054
|
+
/** @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 */
|
|
1055
|
+
default as MinusSquare
|
|
1056
|
+
} from '../icons/square-minus';
|
|
628
1057
|
|
|
629
1058
|
// SquareMousePointer aliases
|
|
630
|
-
export {
|
|
1059
|
+
export {
|
|
1060
|
+
/** @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 */
|
|
1061
|
+
default as Inspect
|
|
1062
|
+
} from '../icons/square-mouse-pointer';
|
|
631
1063
|
|
|
632
1064
|
// SquareParkingOff aliases
|
|
633
|
-
export {
|
|
1065
|
+
export {
|
|
1066
|
+
/** @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 */
|
|
1067
|
+
default as ParkingSquareOff
|
|
1068
|
+
} from '../icons/square-parking-off';
|
|
634
1069
|
|
|
635
1070
|
// SquareParking aliases
|
|
636
|
-
export {
|
|
1071
|
+
export {
|
|
1072
|
+
/** @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 */
|
|
1073
|
+
default as ParkingSquare
|
|
1074
|
+
} from '../icons/square-parking';
|
|
637
1075
|
|
|
638
1076
|
// SquarePen aliases
|
|
639
|
-
export {
|
|
1077
|
+
export {
|
|
1078
|
+
/** @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 */
|
|
1079
|
+
default as PenBox
|
|
1080
|
+
} from '../icons/square-pen';
|
|
640
1081
|
|
|
641
1082
|
// SquarePen aliases
|
|
642
|
-
export {
|
|
1083
|
+
export {
|
|
1084
|
+
/** @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 */
|
|
1085
|
+
default as Edit
|
|
1086
|
+
} from '../icons/square-pen';
|
|
643
1087
|
|
|
644
1088
|
// SquarePen aliases
|
|
645
|
-
export {
|
|
1089
|
+
export {
|
|
1090
|
+
/** @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 */
|
|
1091
|
+
default as PenSquare
|
|
1092
|
+
} from '../icons/square-pen';
|
|
646
1093
|
|
|
647
1094
|
// SquarePercent aliases
|
|
648
|
-
export {
|
|
1095
|
+
export {
|
|
1096
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1097
|
+
default as PercentSquare
|
|
1098
|
+
} from '../icons/square-percent';
|
|
649
1099
|
|
|
650
1100
|
// SquarePi aliases
|
|
651
|
-
export {
|
|
1101
|
+
export {
|
|
1102
|
+
/** @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 */
|
|
1103
|
+
default as PiSquare
|
|
1104
|
+
} from '../icons/square-pi';
|
|
652
1105
|
|
|
653
1106
|
// SquarePilcrow aliases
|
|
654
|
-
export {
|
|
1107
|
+
export {
|
|
1108
|
+
/** @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 */
|
|
1109
|
+
default as PilcrowSquare
|
|
1110
|
+
} from '../icons/square-pilcrow';
|
|
655
1111
|
|
|
656
1112
|
// SquarePlay aliases
|
|
657
|
-
export {
|
|
1113
|
+
export {
|
|
1114
|
+
/** @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 */
|
|
1115
|
+
default as PlaySquare
|
|
1116
|
+
} from '../icons/square-play';
|
|
658
1117
|
|
|
659
1118
|
// SquarePlus aliases
|
|
660
|
-
export {
|
|
1119
|
+
export {
|
|
1120
|
+
/** @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 */
|
|
1121
|
+
default as PlusSquare
|
|
1122
|
+
} from '../icons/square-plus';
|
|
661
1123
|
|
|
662
1124
|
// SquarePower aliases
|
|
663
|
-
export {
|
|
1125
|
+
export {
|
|
1126
|
+
/** @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 */
|
|
1127
|
+
default as PowerSquare
|
|
1128
|
+
} from '../icons/square-power';
|
|
664
1129
|
|
|
665
1130
|
// SquareScissors aliases
|
|
666
|
-
export {
|
|
1131
|
+
export {
|
|
1132
|
+
/** @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 */
|
|
1133
|
+
default as ScissorsSquare
|
|
1134
|
+
} from '../icons/square-scissors';
|
|
667
1135
|
|
|
668
1136
|
// SquareSigma aliases
|
|
669
|
-
export {
|
|
1137
|
+
export {
|
|
1138
|
+
/** @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 */
|
|
1139
|
+
default as SigmaSquare
|
|
1140
|
+
} from '../icons/square-sigma';
|
|
670
1141
|
|
|
671
1142
|
// SquareSlash aliases
|
|
672
|
-
export {
|
|
1143
|
+
export {
|
|
1144
|
+
/** @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 */
|
|
1145
|
+
default as SlashSquare
|
|
1146
|
+
} from '../icons/square-slash';
|
|
673
1147
|
|
|
674
1148
|
// SquareSplitHorizontal aliases
|
|
675
|
-
export {
|
|
1149
|
+
export {
|
|
1150
|
+
/** @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 */
|
|
1151
|
+
default as SplitSquareHorizontal
|
|
1152
|
+
} from '../icons/square-split-horizontal';
|
|
676
1153
|
|
|
677
1154
|
// SquareSplitVertical aliases
|
|
678
|
-
export {
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
1155
|
+
export {
|
|
1156
|
+
/** @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 */
|
|
1157
|
+
default as SplitSquareVertical
|
|
1158
|
+
} from '../icons/square-split-vertical';
|
|
682
1159
|
|
|
683
1160
|
// SquareUserRound aliases
|
|
684
1161
|
export {
|
|
@@ -686,26 +1163,53 @@ export {
|
|
|
686
1163
|
default as UserSquare2
|
|
687
1164
|
} from '../icons/square-user-round';
|
|
688
1165
|
|
|
1166
|
+
// SquareTerminal aliases
|
|
1167
|
+
export {
|
|
1168
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
1169
|
+
default as TerminalSquare
|
|
1170
|
+
} from '../icons/square-terminal';
|
|
1171
|
+
|
|
689
1172
|
// SquareUser aliases
|
|
690
|
-
export {
|
|
1173
|
+
export {
|
|
1174
|
+
/** @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 */
|
|
1175
|
+
default as UserSquare
|
|
1176
|
+
} from '../icons/square-user';
|
|
691
1177
|
|
|
692
1178
|
// SquareX aliases
|
|
693
|
-
export {
|
|
1179
|
+
export {
|
|
1180
|
+
/** @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 */
|
|
1181
|
+
default as XSquare
|
|
1182
|
+
} from '../icons/square-x';
|
|
694
1183
|
|
|
695
1184
|
// TestTubeDiagonal aliases
|
|
696
|
-
export {
|
|
1185
|
+
export {
|
|
1186
|
+
/** @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 */
|
|
1187
|
+
default as TestTube2
|
|
1188
|
+
} from '../icons/test-tube-diagonal';
|
|
697
1189
|
|
|
698
1190
|
// TextSelect aliases
|
|
699
|
-
export {
|
|
1191
|
+
export {
|
|
1192
|
+
/** @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 */
|
|
1193
|
+
default as TextSelection
|
|
1194
|
+
} from '../icons/text-select';
|
|
700
1195
|
|
|
701
1196
|
// TramFront aliases
|
|
702
|
-
export {
|
|
1197
|
+
export {
|
|
1198
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|
|
1199
|
+
default as Train
|
|
1200
|
+
} from '../icons/tram-front';
|
|
703
1201
|
|
|
704
1202
|
// TreePalm aliases
|
|
705
|
-
export {
|
|
1203
|
+
export {
|
|
1204
|
+
/** @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 */
|
|
1205
|
+
default as Palmtree
|
|
1206
|
+
} from '../icons/tree-palm';
|
|
706
1207
|
|
|
707
1208
|
// TriangleAlert aliases
|
|
708
|
-
export {
|
|
1209
|
+
export {
|
|
1210
|
+
/** @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 */
|
|
1211
|
+
default as AlertTriangle
|
|
1212
|
+
} from '../icons/triangle-alert';
|
|
709
1213
|
|
|
710
1214
|
// TvMinimal aliases
|
|
711
1215
|
export {
|
|
@@ -725,18 +1229,18 @@ export {
|
|
|
725
1229
|
default as UserCheck2
|
|
726
1230
|
} from '../icons/user-round-check';
|
|
727
1231
|
|
|
728
|
-
// UserRoundCog aliases
|
|
729
|
-
export {
|
|
730
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
731
|
-
default as UserCog2
|
|
732
|
-
} from '../icons/user-round-cog';
|
|
733
|
-
|
|
734
1232
|
// UserRoundMinus aliases
|
|
735
1233
|
export {
|
|
736
1234
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. This alias will be removed in v1.0 */
|
|
737
1235
|
default as UserMinus2
|
|
738
1236
|
} from '../icons/user-round-minus';
|
|
739
1237
|
|
|
1238
|
+
// UserRoundCog aliases
|
|
1239
|
+
export {
|
|
1240
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
1241
|
+
default as UserCog2
|
|
1242
|
+
} from '../icons/user-round-cog';
|
|
1243
|
+
|
|
740
1244
|
// UserRoundPlus aliases
|
|
741
1245
|
export {
|
|
742
1246
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
@@ -762,10 +1266,16 @@ export {
|
|
|
762
1266
|
} from '../icons/users-round';
|
|
763
1267
|
|
|
764
1268
|
// UtensilsCrossed aliases
|
|
765
|
-
export {
|
|
1269
|
+
export {
|
|
1270
|
+
/** @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 */
|
|
1271
|
+
default as ForkKnifeCrossed
|
|
1272
|
+
} from '../icons/utensils-crossed';
|
|
766
1273
|
|
|
767
1274
|
// Utensils aliases
|
|
768
|
-
export {
|
|
1275
|
+
export {
|
|
1276
|
+
/** @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 */
|
|
1277
|
+
default as ForkKnife
|
|
1278
|
+
} from '../icons/utensils';
|
|
769
1279
|
|
|
770
1280
|
// WalletMinimal aliases
|
|
771
1281
|
export {
|