@lucide/astro 0.536.0 → 0.538.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 +130 -130
- package/src/aliases/prefixed.ts +570 -564
- package/src/aliases/suffixed.ts +925 -919
- package/src/icons/apple.ts +2 -2
- package/src/icons/circle-star.ts +18 -0
- package/src/icons/index.ts +157 -154
- package/src/icons/kayak.ts +18 -0
- package/src/icons/mic-off.ts +2 -2
- package/src/icons/rail-symbol.ts +1 -1
- package/src/icons/school.ts +2 -2
- package/src/icons/spade.ts +2 -2
- package/src/icons/square-star.ts +18 -0
- package/src/icons/store.ts +2 -2
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -5,18 +5,18 @@ export {
|
|
|
5
5
|
default as AlarmCheck
|
|
6
6
|
} from '../icons/alarm-clock-check';
|
|
7
7
|
|
|
8
|
-
// AlarmClockPlus aliases
|
|
9
|
-
export {
|
|
10
|
-
/** @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 */
|
|
11
|
-
default as AlarmPlus
|
|
12
|
-
} from '../icons/alarm-clock-plus';
|
|
13
|
-
|
|
14
8
|
// AlarmClockMinus aliases
|
|
15
9
|
export {
|
|
16
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 */
|
|
17
11
|
default as AlarmMinus
|
|
18
12
|
} from '../icons/alarm-clock-minus';
|
|
19
13
|
|
|
14
|
+
// AlarmClockPlus aliases
|
|
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';
|
|
19
|
+
|
|
20
20
|
// ArrowDownAZ aliases
|
|
21
21
|
export {
|
|
22
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 */
|
|
@@ -47,6 +47,12 @@ export {
|
|
|
47
47
|
default as SortAsc
|
|
48
48
|
} from '../icons/arrow-up-narrow-wide';
|
|
49
49
|
|
|
50
|
+
// Axis3d aliases
|
|
51
|
+
export {
|
|
52
|
+
/** @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 */
|
|
53
|
+
default as Axis3D
|
|
54
|
+
} from '../icons/axis-3d';
|
|
55
|
+
|
|
50
56
|
// ArrowUpZA aliases
|
|
51
57
|
export {
|
|
52
58
|
/** @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 */
|
|
@@ -59,12 +65,6 @@ export {
|
|
|
59
65
|
default as Verified
|
|
60
66
|
} from '../icons/badge-check';
|
|
61
67
|
|
|
62
|
-
// Axis3d aliases
|
|
63
|
-
export {
|
|
64
|
-
/** @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 */
|
|
65
|
-
default as Axis3D
|
|
66
|
-
} from '../icons/axis-3d';
|
|
67
|
-
|
|
68
68
|
// BadgeQuestionMark aliases
|
|
69
69
|
export {
|
|
70
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 */
|
|
@@ -143,36 +143,36 @@ export {
|
|
|
143
143
|
default as BarChart3
|
|
144
144
|
} from '../icons/chart-column';
|
|
145
145
|
|
|
146
|
-
// ChartNoAxesColumnIncreasing aliases
|
|
147
|
-
export {
|
|
148
|
-
/** @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 */
|
|
149
|
-
default as BarChart
|
|
150
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
151
|
-
|
|
152
146
|
// ChartLine aliases
|
|
153
147
|
export {
|
|
154
148
|
/** @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 */
|
|
155
149
|
default as LineChart
|
|
156
150
|
} from '../icons/chart-line';
|
|
157
151
|
|
|
152
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
153
|
+
export {
|
|
154
|
+
/** @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 */
|
|
155
|
+
default as BarChart
|
|
156
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
157
|
+
|
|
158
158
|
// ChartNoAxesColumn aliases
|
|
159
159
|
export {
|
|
160
160
|
/** @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 */
|
|
161
161
|
default as BarChart2
|
|
162
162
|
} from '../icons/chart-no-axes-column';
|
|
163
163
|
|
|
164
|
-
// ChartPie aliases
|
|
165
|
-
export {
|
|
166
|
-
/** @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 */
|
|
167
|
-
default as PieChart
|
|
168
|
-
} from '../icons/chart-pie';
|
|
169
|
-
|
|
170
164
|
// ChartNoAxesGantt aliases
|
|
171
165
|
export {
|
|
172
166
|
/** @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 */
|
|
173
167
|
default as GanttChart
|
|
174
168
|
} from '../icons/chart-no-axes-gantt';
|
|
175
169
|
|
|
170
|
+
// ChartPie aliases
|
|
171
|
+
export {
|
|
172
|
+
/** @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 */
|
|
173
|
+
default as PieChart
|
|
174
|
+
} from '../icons/chart-pie';
|
|
175
|
+
|
|
176
176
|
// ChartScatter aliases
|
|
177
177
|
export {
|
|
178
178
|
/** @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 */
|
|
@@ -209,6 +209,12 @@ export {
|
|
|
209
209
|
default as ArrowDownRightFromCircle
|
|
210
210
|
} from '../icons/circle-arrow-out-down-right';
|
|
211
211
|
|
|
212
|
+
// CircleArrowOutUpLeft aliases
|
|
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';
|
|
217
|
+
|
|
212
218
|
// CircleArrowOutUpRight aliases
|
|
213
219
|
export {
|
|
214
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,12 +227,6 @@ export {
|
|
|
221
227
|
default as ArrowRightCircle
|
|
222
228
|
} from '../icons/circle-arrow-right';
|
|
223
229
|
|
|
224
|
-
// CircleArrowOutUpLeft aliases
|
|
225
|
-
export {
|
|
226
|
-
/** @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 */
|
|
227
|
-
default as ArrowUpLeftFromCircle
|
|
228
|
-
} from '../icons/circle-arrow-out-up-left';
|
|
229
|
-
|
|
230
230
|
// CircleArrowUp aliases
|
|
231
231
|
export {
|
|
232
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 */
|
|
@@ -281,23 +281,17 @@ export {
|
|
|
281
281
|
default as GaugeCircle
|
|
282
282
|
} from '../icons/circle-gauge';
|
|
283
283
|
|
|
284
|
-
// CircleParkingOff aliases
|
|
285
|
-
export {
|
|
286
|
-
/** @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 */
|
|
287
|
-
default as ParkingCircleOff
|
|
288
|
-
} from '../icons/circle-parking-off';
|
|
289
|
-
|
|
290
284
|
// CircleMinus aliases
|
|
291
285
|
export {
|
|
292
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 */
|
|
293
287
|
default as MinusCircle
|
|
294
288
|
} from '../icons/circle-minus';
|
|
295
289
|
|
|
296
|
-
//
|
|
290
|
+
// CircleParkingOff aliases
|
|
297
291
|
export {
|
|
298
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
299
|
-
default as
|
|
300
|
-
} from '../icons/circle-
|
|
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';
|
|
301
295
|
|
|
302
296
|
// CircleParking aliases
|
|
303
297
|
export {
|
|
@@ -305,6 +299,12 @@ export {
|
|
|
305
299
|
default as ParkingCircle
|
|
306
300
|
} from '../icons/circle-parking';
|
|
307
301
|
|
|
302
|
+
// CirclePause aliases
|
|
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';
|
|
307
|
+
|
|
308
308
|
// CirclePercent aliases
|
|
309
309
|
export {
|
|
310
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 */
|
|
@@ -347,18 +347,18 @@ export {
|
|
|
347
347
|
default as CircleSlashed
|
|
348
348
|
} from '../icons/circle-slash-2';
|
|
349
349
|
|
|
350
|
-
// CircleUserRound aliases
|
|
351
|
-
export {
|
|
352
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. This alias will be removed in v1.0 */
|
|
353
|
-
default as UserCircle2
|
|
354
|
-
} from '../icons/circle-user-round';
|
|
355
|
-
|
|
356
350
|
// CircleStop aliases
|
|
357
351
|
export {
|
|
358
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 */
|
|
359
353
|
default as StopCircle
|
|
360
354
|
} from '../icons/circle-stop';
|
|
361
355
|
|
|
356
|
+
// CircleUserRound aliases
|
|
357
|
+
export {
|
|
358
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. This alias will be removed in v1.0 */
|
|
359
|
+
default as UserCircle2
|
|
360
|
+
} from '../icons/circle-user-round';
|
|
361
|
+
|
|
362
362
|
// CircleUser aliases
|
|
363
363
|
export {
|
|
364
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 */
|
|
@@ -449,36 +449,36 @@ export {
|
|
|
449
449
|
default as MoreVertical
|
|
450
450
|
} from '../icons/ellipsis-vertical';
|
|
451
451
|
|
|
452
|
-
// FileAxis3d aliases
|
|
453
|
-
export {
|
|
454
|
-
/** @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 */
|
|
455
|
-
default as FileAxis3D
|
|
456
|
-
} from '../icons/file-axis-3d';
|
|
457
|
-
|
|
458
452
|
// Ellipsis aliases
|
|
459
453
|
export {
|
|
460
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 */
|
|
461
455
|
default as MoreHorizontal
|
|
462
456
|
} from '../icons/ellipsis';
|
|
463
457
|
|
|
458
|
+
// FileAxis3d aliases
|
|
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';
|
|
463
|
+
|
|
464
464
|
// FileChartColumnIncreasing aliases
|
|
465
465
|
export {
|
|
466
466
|
/** @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 */
|
|
467
467
|
default as FileBarChart
|
|
468
468
|
} from '../icons/file-chart-column-increasing';
|
|
469
469
|
|
|
470
|
-
// FileChartLine aliases
|
|
471
|
-
export {
|
|
472
|
-
/** @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 */
|
|
473
|
-
default as FileLineChart
|
|
474
|
-
} from '../icons/file-chart-line';
|
|
475
|
-
|
|
476
470
|
// FileChartColumn aliases
|
|
477
471
|
export {
|
|
478
472
|
/** @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 */
|
|
479
473
|
default as FileBarChart2
|
|
480
474
|
} from '../icons/file-chart-column';
|
|
481
475
|
|
|
476
|
+
// FileChartLine aliases
|
|
477
|
+
export {
|
|
478
|
+
/** @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 */
|
|
479
|
+
default as FileLineChart
|
|
480
|
+
} from '../icons/file-chart-line';
|
|
481
|
+
|
|
482
482
|
// FileChartPie aliases
|
|
483
483
|
export {
|
|
484
484
|
/** @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 */
|
|
@@ -491,18 +491,18 @@ export {
|
|
|
491
491
|
default as FileCog2
|
|
492
492
|
} from '../icons/file-cog';
|
|
493
493
|
|
|
494
|
-
// FilePen aliases
|
|
495
|
-
export {
|
|
496
|
-
/** @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 */
|
|
497
|
-
default as FileEdit
|
|
498
|
-
} from '../icons/file-pen';
|
|
499
|
-
|
|
500
494
|
// FilePenLine aliases
|
|
501
495
|
export {
|
|
502
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 */
|
|
503
497
|
default as FileSignature
|
|
504
498
|
} from '../icons/file-pen-line';
|
|
505
499
|
|
|
500
|
+
// FilePen aliases
|
|
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';
|
|
505
|
+
|
|
506
506
|
// FilePlay aliases
|
|
507
507
|
export {
|
|
508
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 */
|
|
@@ -533,12 +533,6 @@ export {
|
|
|
533
533
|
default as FolderEdit
|
|
534
534
|
} from '../icons/folder-pen';
|
|
535
535
|
|
|
536
|
-
// FunnelX aliases
|
|
537
|
-
export {
|
|
538
|
-
/** @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 */
|
|
539
|
-
default as FilterX
|
|
540
|
-
} from '../icons/funnel-x';
|
|
541
|
-
|
|
542
536
|
// Funnel aliases
|
|
543
537
|
export {
|
|
544
538
|
/** @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 */
|
|
@@ -551,12 +545,24 @@ export {
|
|
|
551
545
|
default as GitCommit
|
|
552
546
|
} from '../icons/git-commit-horizontal';
|
|
553
547
|
|
|
548
|
+
// FunnelX aliases
|
|
549
|
+
export {
|
|
550
|
+
/** @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 */
|
|
551
|
+
default as FilterX
|
|
552
|
+
} from '../icons/funnel-x';
|
|
553
|
+
|
|
554
554
|
// Grid2x2Check aliases
|
|
555
555
|
export {
|
|
556
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
557
|
default as Grid2X2Check
|
|
558
558
|
} from '../icons/grid-2x2-check';
|
|
559
559
|
|
|
560
|
+
// Grid2x2Plus aliases
|
|
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';
|
|
565
|
+
|
|
560
566
|
// Grid2x2X aliases
|
|
561
567
|
export {
|
|
562
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,12 +575,6 @@ export {
|
|
|
569
575
|
default as Grid2X2
|
|
570
576
|
} from '../icons/grid-2x2';
|
|
571
577
|
|
|
572
|
-
// Grid2x2Plus aliases
|
|
573
|
-
export {
|
|
574
|
-
/** @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 */
|
|
575
|
-
default as Grid2X2Plus
|
|
576
|
-
} from '../icons/grid-2x2-plus';
|
|
577
|
-
|
|
578
578
|
// Grid3x3 aliases
|
|
579
579
|
export {
|
|
580
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 */
|
|
@@ -653,36 +653,36 @@ export {
|
|
|
653
653
|
default as UnlockKeyhole
|
|
654
654
|
} from '../icons/lock-keyhole-open';
|
|
655
655
|
|
|
656
|
-
// LockOpen aliases
|
|
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
656
|
// MailQuestionMark aliases
|
|
663
657
|
export {
|
|
664
658
|
/** @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
659
|
default as MailQuestion
|
|
666
660
|
} from '../icons/mail-question-mark';
|
|
667
661
|
|
|
662
|
+
// LockOpen aliases
|
|
663
|
+
export {
|
|
664
|
+
/** @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 */
|
|
665
|
+
default as Unlock
|
|
666
|
+
} from '../icons/lock-open';
|
|
667
|
+
|
|
668
668
|
// MapPinPen aliases
|
|
669
669
|
export {
|
|
670
670
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. This alias will be removed in v1.0 */
|
|
671
671
|
default as LocationEdit
|
|
672
672
|
} from '../icons/map-pin-pen';
|
|
673
673
|
|
|
674
|
-
// MessageCircleQuestionMark aliases
|
|
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';
|
|
679
|
-
|
|
680
674
|
// MicVocal aliases
|
|
681
675
|
export {
|
|
682
676
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. This alias will be removed in v1.0 */
|
|
683
677
|
default as Mic2
|
|
684
678
|
} from '../icons/mic-vocal';
|
|
685
679
|
|
|
680
|
+
// MessageCircleQuestionMark aliases
|
|
681
|
+
export {
|
|
682
|
+
/** @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 */
|
|
683
|
+
default as MessageCircleQuestion
|
|
684
|
+
} from '../icons/message-circle-question-mark';
|
|
685
|
+
|
|
686
686
|
// Move3d aliases
|
|
687
687
|
export {
|
|
688
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 */
|
|
@@ -887,18 +887,18 @@ export {
|
|
|
887
887
|
default as ArrowUpLeftFromSquare
|
|
888
888
|
} from '../icons/square-arrow-out-up-left';
|
|
889
889
|
|
|
890
|
-
// SquareArrowOutUpRight aliases
|
|
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';
|
|
895
|
-
|
|
896
890
|
// SquareArrowRight aliases
|
|
897
891
|
export {
|
|
898
892
|
/** @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
893
|
default as ArrowRightSquare
|
|
900
894
|
} from '../icons/square-arrow-right';
|
|
901
895
|
|
|
896
|
+
// SquareArrowOutUpRight aliases
|
|
897
|
+
export {
|
|
898
|
+
/** @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 */
|
|
899
|
+
default as ArrowUpRightFromSquare
|
|
900
|
+
} from '../icons/square-arrow-out-up-right';
|
|
901
|
+
|
|
902
902
|
// SquareArrowUpLeft aliases
|
|
903
903
|
export {
|
|
904
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 */
|
|
@@ -971,12 +971,6 @@ export {
|
|
|
971
971
|
default as ChevronRightSquare
|
|
972
972
|
} from '../icons/square-chevron-right';
|
|
973
973
|
|
|
974
|
-
// SquareChevronUp aliases
|
|
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';
|
|
979
|
-
|
|
980
974
|
// SquareCode aliases
|
|
981
975
|
export {
|
|
982
976
|
/** @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 */
|
|
@@ -989,6 +983,12 @@ export {
|
|
|
989
983
|
default as KanbanSquareDashed
|
|
990
984
|
} from '../icons/square-dashed-kanban';
|
|
991
985
|
|
|
986
|
+
// SquareChevronUp aliases
|
|
987
|
+
export {
|
|
988
|
+
/** @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 */
|
|
989
|
+
default as ChevronUpSquare
|
|
990
|
+
} from '../icons/square-chevron-up';
|
|
991
|
+
|
|
992
992
|
// SquareDashedMousePointer aliases
|
|
993
993
|
export {
|
|
994
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 */
|
|
@@ -1031,12 +1031,6 @@ export {
|
|
|
1031
1031
|
default as KanbanSquare
|
|
1032
1032
|
} from '../icons/square-kanban';
|
|
1033
1033
|
|
|
1034
|
-
// SquareLibrary aliases
|
|
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';
|
|
1039
|
-
|
|
1040
1034
|
// SquareM aliases
|
|
1041
1035
|
export {
|
|
1042
1036
|
/** @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 */
|
|
@@ -1049,6 +1043,12 @@ export {
|
|
|
1049
1043
|
default as MenuSquare
|
|
1050
1044
|
} from '../icons/square-menu';
|
|
1051
1045
|
|
|
1046
|
+
// SquareLibrary aliases
|
|
1047
|
+
export {
|
|
1048
|
+
/** @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 */
|
|
1049
|
+
default as LibrarySquare
|
|
1050
|
+
} from '../icons/square-library';
|
|
1051
|
+
|
|
1052
1052
|
// SquareMinus aliases
|
|
1053
1053
|
export {
|
|
1054
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 */
|
|
@@ -1163,18 +1163,18 @@ export {
|
|
|
1163
1163
|
default as TerminalSquare
|
|
1164
1164
|
} from '../icons/square-terminal';
|
|
1165
1165
|
|
|
1166
|
-
// SquareUserRound aliases
|
|
1167
|
-
export {
|
|
1168
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
1169
|
-
default as UserSquare2
|
|
1170
|
-
} from '../icons/square-user-round';
|
|
1171
|
-
|
|
1172
1166
|
// SquareUser aliases
|
|
1173
1167
|
export {
|
|
1174
1168
|
/** @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
1169
|
default as UserSquare
|
|
1176
1170
|
} from '../icons/square-user';
|
|
1177
1171
|
|
|
1172
|
+
// SquareUserRound aliases
|
|
1173
|
+
export {
|
|
1174
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
1175
|
+
default as UserSquare2
|
|
1176
|
+
} from '../icons/square-user-round';
|
|
1177
|
+
|
|
1178
1178
|
// SquareX aliases
|
|
1179
1179
|
export {
|
|
1180
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 */
|
|
@@ -1211,18 +1211,18 @@ export {
|
|
|
1211
1211
|
default as AlertTriangle
|
|
1212
1212
|
} from '../icons/triangle-alert';
|
|
1213
1213
|
|
|
1214
|
-
// TvMinimal aliases
|
|
1215
|
-
export {
|
|
1216
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|
|
1217
|
-
default as Tv2
|
|
1218
|
-
} from '../icons/tv-minimal';
|
|
1219
|
-
|
|
1220
1214
|
// University aliases
|
|
1221
1215
|
export {
|
|
1222
1216
|
/** @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 */
|
|
1223
1217
|
default as School2
|
|
1224
1218
|
} from '../icons/university';
|
|
1225
1219
|
|
|
1220
|
+
// TvMinimal aliases
|
|
1221
|
+
export {
|
|
1222
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|
|
1223
|
+
default as Tv2
|
|
1224
|
+
} from '../icons/tv-minimal';
|
|
1225
|
+
|
|
1226
1226
|
// UserRoundCheck aliases
|
|
1227
1227
|
export {
|
|
1228
1228
|
/** @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 */
|
|
@@ -1253,18 +1253,18 @@ export {
|
|
|
1253
1253
|
default as UserX2
|
|
1254
1254
|
} from '../icons/user-round-x';
|
|
1255
1255
|
|
|
1256
|
-
// UserRound aliases
|
|
1257
|
-
export {
|
|
1258
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
1259
|
-
default as User2
|
|
1260
|
-
} from '../icons/user-round';
|
|
1261
|
-
|
|
1262
1256
|
// UsersRound aliases
|
|
1263
1257
|
export {
|
|
1264
1258
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. This alias will be removed in v1.0 */
|
|
1265
1259
|
default as Users2
|
|
1266
1260
|
} from '../icons/users-round';
|
|
1267
1261
|
|
|
1262
|
+
// UserRound aliases
|
|
1263
|
+
export {
|
|
1264
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
1265
|
+
default as User2
|
|
1266
|
+
} from '../icons/user-round';
|
|
1267
|
+
|
|
1268
1268
|
// UtensilsCrossed aliases
|
|
1269
1269
|
export {
|
|
1270
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 */
|
|
@@ -1277,15 +1277,15 @@ export {
|
|
|
1277
1277
|
default as ForkKnife
|
|
1278
1278
|
} from '../icons/utensils';
|
|
1279
1279
|
|
|
1280
|
-
// WalletMinimal aliases
|
|
1281
|
-
export {
|
|
1282
|
-
/** @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 */
|
|
1283
|
-
default as Wallet2
|
|
1284
|
-
} from '../icons/wallet-minimal';
|
|
1285
|
-
|
|
1286
1280
|
// WandSparkles aliases
|
|
1287
1281
|
export {
|
|
1288
1282
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. This alias will be removed in v1.0 */
|
|
1289
1283
|
default as Wand2
|
|
1290
1284
|
} from '../icons/wand-sparkles';
|
|
1291
1285
|
|
|
1286
|
+
// WalletMinimal aliases
|
|
1287
|
+
export {
|
|
1288
|
+
/** @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 */
|
|
1289
|
+
default as Wallet2
|
|
1290
|
+
} from '../icons/wallet-minimal';
|
|
1291
|
+
|