@lucide/astro 1.44.0 → 1.46.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 +3 -3
- package/src/aliases/aliases.ts +166 -148
- package/src/aliases/prefixed.ts +730 -682
- package/src/aliases/suffixed.ts +960 -912
- package/src/icons/book-bookmark.ts +20 -0
- package/src/icons/building-complex-plus.ts +20 -0
- package/src/icons/{building-2.ts → building-complex.ts} +5 -5
- package/src/icons/calendar-chevrons-right.ts +20 -0
- package/src/icons/clef-alto.ts +20 -0
- package/src/icons/{book-marked.ts → clef-bass.ts} +5 -5
- package/src/icons/clef-treble.ts +20 -0
- package/src/icons/cookie.ts +2 -2
- package/src/icons/folder-bookmark.ts +2 -2
- package/src/icons/globe-code.ts +20 -0
- package/src/icons/hourglass-cog.ts +20 -0
- package/src/icons/houses.ts +20 -0
- package/src/icons/index.ts +209 -191
- package/src/icons/iv-bag.ts +20 -0
- package/src/icons/{album.ts → layout-arrow-down.ts} +5 -5
- package/src/icons/layout-arrow-right.ts +20 -0
- package/src/icons/lectern.ts +2 -2
- package/src/icons/messages-circle.ts +20 -0
- package/src/icons/monitor-pc.ts +20 -0
- package/src/icons/mouth-off.ts +20 -0
- package/src/icons/mouth.ts +20 -0
- package/src/icons/notebook-dot.ts +20 -0
- package/src/icons/park.ts +20 -0
- package/src/icons/plant-pot.ts +20 -0
- package/src/icons/square-bookmark.ts +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.46.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"@astrojs/ts-plugin": "^1.10.11",
|
|
43
43
|
"@testing-library/dom": "^10.4.1",
|
|
44
44
|
"@testing-library/jest-dom": "^7.0.1",
|
|
45
|
-
"astro": "^7.3.
|
|
45
|
+
"astro": "^7.3.2",
|
|
46
46
|
"jest-serializer-html": "^7.1.0",
|
|
47
47
|
"linkedom": "^0.18.13",
|
|
48
48
|
"prettier": "3.9.6",
|
|
49
49
|
"typescript": "^6.0.3",
|
|
50
50
|
"vite": "^7.3.6",
|
|
51
|
-
"vitest": "4.1.
|
|
51
|
+
"vitest": "4.1.11",
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
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. */
|
|
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. */
|
|
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. */
|
|
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. */
|
|
@@ -35,18 +35,18 @@ export {
|
|
|
35
35
|
default as ArrowDownZa
|
|
36
36
|
} from '../icons/arrow-down-z-a';
|
|
37
37
|
|
|
38
|
-
// ArrowUpAZ aliases
|
|
39
|
-
export {
|
|
40
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. */
|
|
41
|
-
default as ArrowUpAz
|
|
42
|
-
} from '../icons/arrow-up-a-z';
|
|
43
|
-
|
|
44
38
|
// ArrowUpNarrowWide aliases
|
|
45
39
|
export {
|
|
46
40
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
47
41
|
default as SortAsc
|
|
48
42
|
} from '../icons/arrow-up-narrow-wide';
|
|
49
43
|
|
|
44
|
+
// ArrowUpAZ aliases
|
|
45
|
+
export {
|
|
46
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. */
|
|
47
|
+
default as ArrowUpAz
|
|
48
|
+
} from '../icons/arrow-up-a-z';
|
|
49
|
+
|
|
50
50
|
// ArrowUpZA aliases
|
|
51
51
|
export {
|
|
52
52
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. */
|
|
@@ -77,11 +77,11 @@ export {
|
|
|
77
77
|
default as BetweenHorizonalEnd
|
|
78
78
|
} from '../icons/between-horizontal-end';
|
|
79
79
|
|
|
80
|
-
//
|
|
80
|
+
// BookBookmark aliases
|
|
81
81
|
export {
|
|
82
|
-
/** @deprecated
|
|
83
|
-
default as
|
|
84
|
-
} from '../icons/
|
|
82
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookBookmark} instead. */
|
|
83
|
+
default as BookMarked
|
|
84
|
+
} from '../icons/book-bookmark';
|
|
85
85
|
|
|
86
86
|
// BookDashed aliases
|
|
87
87
|
export {
|
|
@@ -89,6 +89,18 @@ export {
|
|
|
89
89
|
default as BookTemplate
|
|
90
90
|
} from '../icons/book-dashed';
|
|
91
91
|
|
|
92
|
+
// BetweenHorizontalStart aliases
|
|
93
|
+
export {
|
|
94
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
95
|
+
default as BetweenHorizonalStart
|
|
96
|
+
} from '../icons/between-horizontal-start';
|
|
97
|
+
|
|
98
|
+
// BuildingComplex aliases
|
|
99
|
+
export {
|
|
100
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BuildingComplex} instead. */
|
|
101
|
+
default as Building2
|
|
102
|
+
} from '../icons/building-complex';
|
|
103
|
+
|
|
92
104
|
// Braces aliases
|
|
93
105
|
export {
|
|
94
106
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. */
|
|
@@ -143,18 +155,18 @@ export {
|
|
|
143
155
|
default as BarChart3
|
|
144
156
|
} from '../icons/chart-column';
|
|
145
157
|
|
|
146
|
-
// ChartLine aliases
|
|
147
|
-
export {
|
|
148
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. */
|
|
149
|
-
default as LineChart
|
|
150
|
-
} from '../icons/chart-line';
|
|
151
|
-
|
|
152
158
|
// ChartNoAxesColumnIncreasing aliases
|
|
153
159
|
export {
|
|
154
160
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. */
|
|
155
161
|
default as BarChart
|
|
156
162
|
} from '../icons/chart-no-axes-column-increasing';
|
|
157
163
|
|
|
164
|
+
// ChartLine aliases
|
|
165
|
+
export {
|
|
166
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. */
|
|
167
|
+
default as LineChart
|
|
168
|
+
} from '../icons/chart-line';
|
|
169
|
+
|
|
158
170
|
// ChartNoAxesColumn aliases
|
|
159
171
|
export {
|
|
160
172
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. */
|
|
@@ -191,18 +203,18 @@ export {
|
|
|
191
203
|
default as ArrowDownCircle
|
|
192
204
|
} from '../icons/circle-arrow-down';
|
|
193
205
|
|
|
194
|
-
// CircleArrowLeft aliases
|
|
195
|
-
export {
|
|
196
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. */
|
|
197
|
-
default as ArrowLeftCircle
|
|
198
|
-
} from '../icons/circle-arrow-left';
|
|
199
|
-
|
|
200
206
|
// CircleArrowOutDownLeft aliases
|
|
201
207
|
export {
|
|
202
208
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. */
|
|
203
209
|
default as ArrowDownLeftFromCircle
|
|
204
210
|
} from '../icons/circle-arrow-out-down-left';
|
|
205
211
|
|
|
212
|
+
// CircleArrowLeft aliases
|
|
213
|
+
export {
|
|
214
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. */
|
|
215
|
+
default as ArrowLeftCircle
|
|
216
|
+
} from '../icons/circle-arrow-left';
|
|
217
|
+
|
|
206
218
|
// CircleArrowOutDownRight aliases
|
|
207
219
|
export {
|
|
208
220
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. */
|
|
@@ -245,23 +257,17 @@ export {
|
|
|
245
257
|
default as CheckCircle2
|
|
246
258
|
} from '../icons/circle-check';
|
|
247
259
|
|
|
248
|
-
// CircleChevronDown aliases
|
|
249
|
-
export {
|
|
250
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
251
|
-
default as ChevronDownCircle
|
|
252
|
-
} from '../icons/circle-chevron-down';
|
|
253
|
-
|
|
254
260
|
// CircleChevronLeft aliases
|
|
255
261
|
export {
|
|
256
262
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
257
263
|
default as ChevronLeftCircle
|
|
258
264
|
} from '../icons/circle-chevron-left';
|
|
259
265
|
|
|
260
|
-
//
|
|
266
|
+
// CircleChevronDown aliases
|
|
261
267
|
export {
|
|
262
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
263
|
-
default as
|
|
264
|
-
} from '../icons/circle-chevron-
|
|
268
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
269
|
+
default as ChevronDownCircle
|
|
270
|
+
} from '../icons/circle-chevron-down';
|
|
265
271
|
|
|
266
272
|
// CircleChevronRight aliases
|
|
267
273
|
export {
|
|
@@ -269,6 +275,12 @@ export {
|
|
|
269
275
|
default as ChevronRightCircle
|
|
270
276
|
} from '../icons/circle-chevron-right';
|
|
271
277
|
|
|
278
|
+
// CircleChevronUp aliases
|
|
279
|
+
export {
|
|
280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. */
|
|
281
|
+
default as ChevronUpCircle
|
|
282
|
+
} from '../icons/circle-chevron-up';
|
|
283
|
+
|
|
272
284
|
// CircleDivide aliases
|
|
273
285
|
export {
|
|
274
286
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. */
|
|
@@ -287,18 +299,18 @@ export {
|
|
|
287
299
|
default as MinusCircle
|
|
288
300
|
} from '../icons/circle-minus';
|
|
289
301
|
|
|
290
|
-
// CircleParkingOff aliases
|
|
291
|
-
export {
|
|
292
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. */
|
|
293
|
-
default as ParkingCircleOff
|
|
294
|
-
} from '../icons/circle-parking-off';
|
|
295
|
-
|
|
296
302
|
// CircleParking aliases
|
|
297
303
|
export {
|
|
298
304
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
299
305
|
default as ParkingCircle
|
|
300
306
|
} from '../icons/circle-parking';
|
|
301
307
|
|
|
308
|
+
// CircleParkingOff aliases
|
|
309
|
+
export {
|
|
310
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. */
|
|
311
|
+
default as ParkingCircleOff
|
|
312
|
+
} from '../icons/circle-parking-off';
|
|
313
|
+
|
|
302
314
|
// CirclePause aliases
|
|
303
315
|
export {
|
|
304
316
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. */
|
|
@@ -431,18 +443,18 @@ export {
|
|
|
431
443
|
default as Contact2
|
|
432
444
|
} from '../icons/contact-round';
|
|
433
445
|
|
|
434
|
-
// DiamondPercent aliases
|
|
435
|
-
export {
|
|
436
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. */
|
|
437
|
-
default as PercentDiamond
|
|
438
|
-
} from '../icons/diamond-percent';
|
|
439
|
-
|
|
440
446
|
// Earth aliases
|
|
441
447
|
export {
|
|
442
448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. */
|
|
443
449
|
default as Globe2
|
|
444
450
|
} from '../icons/earth';
|
|
445
451
|
|
|
452
|
+
// DiamondPercent aliases
|
|
453
|
+
export {
|
|
454
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. */
|
|
455
|
+
default as PercentDiamond
|
|
456
|
+
} from '../icons/diamond-percent';
|
|
457
|
+
|
|
446
458
|
// EllipsisVertical aliases
|
|
447
459
|
export {
|
|
448
460
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
@@ -461,18 +473,18 @@ export {
|
|
|
461
473
|
default as Angry
|
|
462
474
|
} from '../icons/face-angry';
|
|
463
475
|
|
|
464
|
-
// FaceExpressionless aliases
|
|
465
|
-
export {
|
|
466
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceExpressionless} instead. */
|
|
467
|
-
default as Annoyed
|
|
468
|
-
} from '../icons/face-expressionless';
|
|
469
|
-
|
|
470
476
|
// FaceGrinning aliases
|
|
471
477
|
export {
|
|
472
478
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceGrinning} instead. */
|
|
473
479
|
default as Laugh
|
|
474
480
|
} from '../icons/face-grinning';
|
|
475
481
|
|
|
482
|
+
// FaceExpressionless aliases
|
|
483
|
+
export {
|
|
484
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceExpressionless} instead. */
|
|
485
|
+
default as Annoyed
|
|
486
|
+
} from '../icons/face-expressionless';
|
|
487
|
+
|
|
476
488
|
// FaceNeutral aliases
|
|
477
489
|
export {
|
|
478
490
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceNeutral} instead. */
|
|
@@ -521,18 +533,18 @@ export {
|
|
|
521
533
|
default as FileJson
|
|
522
534
|
} from '../icons/file-braces';
|
|
523
535
|
|
|
524
|
-
// FileChartColumnIncreasing aliases
|
|
525
|
-
export {
|
|
526
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. */
|
|
527
|
-
default as FileBarChart
|
|
528
|
-
} from '../icons/file-chart-column-increasing';
|
|
529
|
-
|
|
530
536
|
// FileChartColumn aliases
|
|
531
537
|
export {
|
|
532
538
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. */
|
|
533
539
|
default as FileBarChart2
|
|
534
540
|
} from '../icons/file-chart-column';
|
|
535
541
|
|
|
542
|
+
// FileChartColumnIncreasing aliases
|
|
543
|
+
export {
|
|
544
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. */
|
|
545
|
+
default as FileBarChart
|
|
546
|
+
} from '../icons/file-chart-column-increasing';
|
|
547
|
+
|
|
536
548
|
// FileChartLine aliases
|
|
537
549
|
export {
|
|
538
550
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. */
|
|
@@ -617,18 +629,18 @@ export {
|
|
|
617
629
|
default as FilePlus2
|
|
618
630
|
} from '../icons/file-plus-corner';
|
|
619
631
|
|
|
620
|
-
// FilePlay aliases
|
|
621
|
-
export {
|
|
622
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. */
|
|
623
|
-
default as FileVideo
|
|
624
|
-
} from '../icons/file-play';
|
|
625
|
-
|
|
626
632
|
// FileQuestionMark aliases
|
|
627
633
|
export {
|
|
628
634
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. */
|
|
629
635
|
default as FileQuestion
|
|
630
636
|
} from '../icons/file-question-mark';
|
|
631
637
|
|
|
638
|
+
// FilePlay aliases
|
|
639
|
+
export {
|
|
640
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. */
|
|
641
|
+
default as FileVideo
|
|
642
|
+
} from '../icons/file-play';
|
|
643
|
+
|
|
632
644
|
// FileSearchCorner aliases
|
|
633
645
|
export {
|
|
634
646
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. */
|
|
@@ -641,12 +653,6 @@ export {
|
|
|
641
653
|
default as FileVolume2
|
|
642
654
|
} from '../icons/file-signal';
|
|
643
655
|
|
|
644
|
-
// FileTypeCorner aliases
|
|
645
|
-
export {
|
|
646
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
647
|
-
default as FileType2
|
|
648
|
-
} from '../icons/file-type-corner';
|
|
649
|
-
|
|
650
656
|
// FileVideoCamera aliases
|
|
651
657
|
export {
|
|
652
658
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
@@ -659,6 +665,12 @@ export {
|
|
|
659
665
|
default as FileX2
|
|
660
666
|
} from '../icons/file-x-corner';
|
|
661
667
|
|
|
668
|
+
// FileTypeCorner aliases
|
|
669
|
+
export {
|
|
670
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
671
|
+
default as FileType2
|
|
672
|
+
} from '../icons/file-type-corner';
|
|
673
|
+
|
|
662
674
|
// FingerprintPattern aliases
|
|
663
675
|
export {
|
|
664
676
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. */
|
|
@@ -713,12 +725,6 @@ export {
|
|
|
713
725
|
default as Grid2X2X
|
|
714
726
|
} from '../icons/grid-2x2-x';
|
|
715
727
|
|
|
716
|
-
// Grid2x2 aliases
|
|
717
|
-
export {
|
|
718
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
719
|
-
default as Grid2X2
|
|
720
|
-
} from '../icons/grid-2x2';
|
|
721
|
-
|
|
722
728
|
// Grid3x3 aliases
|
|
723
729
|
export {
|
|
724
730
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. */
|
|
@@ -731,6 +737,12 @@ export {
|
|
|
731
737
|
default as Grid3X3
|
|
732
738
|
} from '../icons/grid-3x3';
|
|
733
739
|
|
|
740
|
+
// Grid2x2 aliases
|
|
741
|
+
export {
|
|
742
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
743
|
+
default as Grid2X2
|
|
744
|
+
} from '../icons/grid-2x2';
|
|
745
|
+
|
|
734
746
|
// HandGrab aliases
|
|
735
747
|
export {
|
|
736
748
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. */
|
|
@@ -851,18 +863,18 @@ export {
|
|
|
851
863
|
default as Move3D
|
|
852
864
|
} from '../icons/move-3d';
|
|
853
865
|
|
|
854
|
-
// OctagonPause aliases
|
|
855
|
-
export {
|
|
856
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. */
|
|
857
|
-
default as PauseOctagon
|
|
858
|
-
} from '../icons/octagon-pause';
|
|
859
|
-
|
|
860
866
|
// OctagonAlert aliases
|
|
861
867
|
export {
|
|
862
868
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. */
|
|
863
869
|
default as AlertOctagon
|
|
864
870
|
} from '../icons/octagon-alert';
|
|
865
871
|
|
|
872
|
+
// OctagonPause aliases
|
|
873
|
+
export {
|
|
874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. */
|
|
875
|
+
default as PauseOctagon
|
|
876
|
+
} from '../icons/octagon-pause';
|
|
877
|
+
|
|
866
878
|
// OctagonX aliases
|
|
867
879
|
export {
|
|
868
880
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
@@ -959,11 +971,11 @@ export {
|
|
|
959
971
|
default as History
|
|
960
972
|
} from '../icons/rotate-ccw-clock';
|
|
961
973
|
|
|
962
|
-
//
|
|
974
|
+
// Scale3d aliases
|
|
963
975
|
export {
|
|
964
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
965
|
-
default as
|
|
966
|
-
} from '../icons/
|
|
976
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. */
|
|
977
|
+
default as Scale3D
|
|
978
|
+
} from '../icons/scale-3d';
|
|
967
979
|
|
|
968
980
|
// Rows3 aliases
|
|
969
981
|
export {
|
|
@@ -971,11 +983,11 @@ export {
|
|
|
971
983
|
default as PanelsTopBottom
|
|
972
984
|
} from '../icons/rows-3';
|
|
973
985
|
|
|
974
|
-
//
|
|
986
|
+
// Rows2 aliases
|
|
975
987
|
export {
|
|
976
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
977
|
-
default as
|
|
978
|
-
} from '../icons/
|
|
988
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
989
|
+
default as Rows
|
|
990
|
+
} from '../icons/rows-2';
|
|
979
991
|
|
|
980
992
|
// SendHorizontal aliases
|
|
981
993
|
export {
|
|
@@ -983,18 +995,18 @@ export {
|
|
|
983
995
|
default as SendHorizonal
|
|
984
996
|
} from '../icons/send-horizontal';
|
|
985
997
|
|
|
986
|
-
// ShieldX aliases
|
|
987
|
-
export {
|
|
988
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. */
|
|
989
|
-
default as ShieldClose
|
|
990
|
-
} from '../icons/shield-x';
|
|
991
|
-
|
|
992
998
|
// ShieldQuestionMark aliases
|
|
993
999
|
export {
|
|
994
1000
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. */
|
|
995
1001
|
default as ShieldQuestion
|
|
996
1002
|
} from '../icons/shield-question-mark';
|
|
997
1003
|
|
|
1004
|
+
// ShieldX aliases
|
|
1005
|
+
export {
|
|
1006
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. */
|
|
1007
|
+
default as ShieldClose
|
|
1008
|
+
} from '../icons/shield-x';
|
|
1009
|
+
|
|
998
1010
|
// SlidersVertical aliases
|
|
999
1011
|
export {
|
|
1000
1012
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. */
|
|
@@ -1025,18 +1037,18 @@ export {
|
|
|
1025
1037
|
default as ArrowDownRightSquare
|
|
1026
1038
|
} from '../icons/square-arrow-down-right';
|
|
1027
1039
|
|
|
1028
|
-
// SquareArrowDown aliases
|
|
1029
|
-
export {
|
|
1030
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. */
|
|
1031
|
-
default as ArrowDownSquare
|
|
1032
|
-
} from '../icons/square-arrow-down';
|
|
1033
|
-
|
|
1034
1040
|
// SquareArrowLeft aliases
|
|
1035
1041
|
export {
|
|
1036
1042
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. */
|
|
1037
1043
|
default as ArrowLeftSquare
|
|
1038
1044
|
} from '../icons/square-arrow-left';
|
|
1039
1045
|
|
|
1046
|
+
// SquareArrowDown aliases
|
|
1047
|
+
export {
|
|
1048
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. */
|
|
1049
|
+
default as ArrowDownSquare
|
|
1050
|
+
} from '../icons/square-arrow-down';
|
|
1051
|
+
|
|
1040
1052
|
// SquareArrowOutDownLeft aliases
|
|
1041
1053
|
export {
|
|
1042
1054
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. */
|
|
@@ -1067,6 +1079,12 @@ export {
|
|
|
1067
1079
|
default as ArrowRightSquare
|
|
1068
1080
|
} from '../icons/square-arrow-right';
|
|
1069
1081
|
|
|
1082
|
+
// SquareArrowUpLeft aliases
|
|
1083
|
+
export {
|
|
1084
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. */
|
|
1085
|
+
default as ArrowUpLeftSquare
|
|
1086
|
+
} from '../icons/square-arrow-up-left';
|
|
1087
|
+
|
|
1070
1088
|
// SquareArrowUpRight aliases
|
|
1071
1089
|
export {
|
|
1072
1090
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. */
|
|
@@ -1079,11 +1097,11 @@ export {
|
|
|
1079
1097
|
default as ArrowUpSquare
|
|
1080
1098
|
} from '../icons/square-arrow-up';
|
|
1081
1099
|
|
|
1082
|
-
//
|
|
1100
|
+
// SquareBookmark aliases
|
|
1083
1101
|
export {
|
|
1084
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1085
|
-
default as
|
|
1086
|
-
} from '../icons/square-
|
|
1102
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBookmark} instead. */
|
|
1103
|
+
default as Album
|
|
1104
|
+
} from '../icons/square-bookmark';
|
|
1087
1105
|
|
|
1088
1106
|
// SquareAsterisk aliases
|
|
1089
1107
|
export {
|
|
@@ -1109,12 +1127,6 @@ export {
|
|
|
1109
1127
|
default as FlipVertical
|
|
1110
1128
|
} from '../icons/square-centerline-dashed-vertical';
|
|
1111
1129
|
|
|
1112
|
-
// SquareCheckBig aliases
|
|
1113
|
-
export {
|
|
1114
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1115
|
-
default as CheckSquare
|
|
1116
|
-
} from '../icons/square-check-big';
|
|
1117
|
-
|
|
1118
1130
|
// SquareChartGantt aliases
|
|
1119
1131
|
export {
|
|
1120
1132
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. */
|
|
@@ -1127,6 +1139,12 @@ export {
|
|
|
1127
1139
|
default as SquareGanttChart
|
|
1128
1140
|
} from '../icons/square-chart-gantt';
|
|
1129
1141
|
|
|
1142
|
+
// SquareCheckBig aliases
|
|
1143
|
+
export {
|
|
1144
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1145
|
+
default as CheckSquare
|
|
1146
|
+
} from '../icons/square-check-big';
|
|
1147
|
+
|
|
1130
1148
|
// SquareCheck aliases
|
|
1131
1149
|
export {
|
|
1132
1150
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
@@ -1145,18 +1163,18 @@ export {
|
|
|
1145
1163
|
default as ChevronLeftSquare
|
|
1146
1164
|
} from '../icons/square-chevron-left';
|
|
1147
1165
|
|
|
1148
|
-
// SquareChevronRight aliases
|
|
1149
|
-
export {
|
|
1150
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
1151
|
-
default as ChevronRightSquare
|
|
1152
|
-
} from '../icons/square-chevron-right';
|
|
1153
|
-
|
|
1154
1166
|
// SquareChevronUp aliases
|
|
1155
1167
|
export {
|
|
1156
1168
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
1157
1169
|
default as ChevronUpSquare
|
|
1158
1170
|
} from '../icons/square-chevron-up';
|
|
1159
1171
|
|
|
1172
|
+
// SquareChevronRight aliases
|
|
1173
|
+
export {
|
|
1174
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
1175
|
+
default as ChevronRightSquare
|
|
1176
|
+
} from '../icons/square-chevron-right';
|
|
1177
|
+
|
|
1160
1178
|
// SquareCode aliases
|
|
1161
1179
|
export {
|
|
1162
1180
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. */
|
|
@@ -1379,18 +1397,18 @@ export {
|
|
|
1379
1397
|
default as TestTube2
|
|
1380
1398
|
} from '../icons/test-tube-diagonal';
|
|
1381
1399
|
|
|
1382
|
-
// TextAlignCenter aliases
|
|
1383
|
-
export {
|
|
1384
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. */
|
|
1385
|
-
default as AlignCenter
|
|
1386
|
-
} from '../icons/text-align-center';
|
|
1387
|
-
|
|
1388
1400
|
// TextAlignEnd aliases
|
|
1389
1401
|
export {
|
|
1390
1402
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. */
|
|
1391
1403
|
default as AlignRight
|
|
1392
1404
|
} from '../icons/text-align-end';
|
|
1393
1405
|
|
|
1406
|
+
// TextAlignCenter aliases
|
|
1407
|
+
export {
|
|
1408
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. */
|
|
1409
|
+
default as AlignCenter
|
|
1410
|
+
} from '../icons/text-align-center';
|
|
1411
|
+
|
|
1394
1412
|
// TextAlignJustify aliases
|
|
1395
1413
|
export {
|
|
1396
1414
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. */
|
|
@@ -1415,23 +1433,17 @@ export {
|
|
|
1415
1433
|
default as LetterText
|
|
1416
1434
|
} from '../icons/text-initial';
|
|
1417
1435
|
|
|
1418
|
-
// TextWrap aliases
|
|
1419
|
-
export {
|
|
1420
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. */
|
|
1421
|
-
default as WrapText
|
|
1422
|
-
} from '../icons/text-wrap';
|
|
1423
|
-
|
|
1424
1436
|
// TramFront aliases
|
|
1425
1437
|
export {
|
|
1426
1438
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. */
|
|
1427
1439
|
default as Train
|
|
1428
1440
|
} from '../icons/tram-front';
|
|
1429
1441
|
|
|
1430
|
-
//
|
|
1442
|
+
// TextWrap aliases
|
|
1431
1443
|
export {
|
|
1432
|
-
/** @deprecated The icon was
|
|
1433
|
-
default as
|
|
1434
|
-
} from '../icons/
|
|
1444
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. */
|
|
1445
|
+
default as WrapText
|
|
1446
|
+
} from '../icons/text-wrap';
|
|
1435
1447
|
|
|
1436
1448
|
// TreePalm aliases
|
|
1437
1449
|
export {
|
|
@@ -1439,6 +1451,12 @@ export {
|
|
|
1439
1451
|
default as Palmtree
|
|
1440
1452
|
} from '../icons/tree-palm';
|
|
1441
1453
|
|
|
1454
|
+
// Trash aliases
|
|
1455
|
+
export {
|
|
1456
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Trash} instead. */
|
|
1457
|
+
default as Trash2
|
|
1458
|
+
} from '../icons/trash';
|
|
1459
|
+
|
|
1442
1460
|
// TriangleAlert aliases
|
|
1443
1461
|
export {
|
|
1444
1462
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. */
|
|
@@ -1511,23 +1529,17 @@ export {
|
|
|
1511
1529
|
default as Users2
|
|
1512
1530
|
} from '../icons/users-round';
|
|
1513
1531
|
|
|
1514
|
-
// UtensilsCrossed aliases
|
|
1515
|
-
export {
|
|
1516
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. */
|
|
1517
|
-
default as ForkKnifeCrossed
|
|
1518
|
-
} from '../icons/utensils-crossed';
|
|
1519
|
-
|
|
1520
1532
|
// Utensils aliases
|
|
1521
1533
|
export {
|
|
1522
1534
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. */
|
|
1523
1535
|
default as ForkKnife
|
|
1524
1536
|
} from '../icons/utensils';
|
|
1525
1537
|
|
|
1526
|
-
//
|
|
1538
|
+
// UtensilsCrossed aliases
|
|
1527
1539
|
export {
|
|
1528
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1529
|
-
default as
|
|
1530
|
-
} from '../icons/
|
|
1540
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. */
|
|
1541
|
+
default as ForkKnifeCrossed
|
|
1542
|
+
} from '../icons/utensils-crossed';
|
|
1531
1543
|
|
|
1532
1544
|
// WandSparkles aliases
|
|
1533
1545
|
export {
|
|
@@ -1541,3 +1553,9 @@ export {
|
|
|
1541
1553
|
default as Waves
|
|
1542
1554
|
} from '../icons/waves-horizontal';
|
|
1543
1555
|
|
|
1556
|
+
// WalletMinimal aliases
|
|
1557
|
+
export {
|
|
1558
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. */
|
|
1559
|
+
default as Wallet2
|
|
1560
|
+
} from '../icons/wallet-minimal';
|
|
1561
|
+
|