@lucide/astro 1.44.0 → 1.45.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 +2 -2
- package/src/aliases/aliases.ts +152 -134
- package/src/aliases/prefixed.ts +639 -599
- package/src/aliases/suffixed.ts +844 -804
- 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/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 +173 -159
- 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/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/{book-marked.ts → square-bookmark.ts} +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.45.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -48,7 +48,7 @@
|
|
|
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,36 +5,36 @@ 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. */
|
|
23
23
|
default as ArrowDownAz
|
|
24
24
|
} from '../icons/arrow-down-a-z';
|
|
25
25
|
|
|
26
|
-
// ArrowDownWideNarrow aliases
|
|
27
|
-
export {
|
|
28
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. */
|
|
29
|
-
default as SortDesc
|
|
30
|
-
} from '../icons/arrow-down-wide-narrow';
|
|
31
|
-
|
|
32
26
|
// ArrowDownZA aliases
|
|
33
27
|
export {
|
|
34
28
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. */
|
|
35
29
|
default as ArrowDownZa
|
|
36
30
|
} from '../icons/arrow-down-z-a';
|
|
37
31
|
|
|
32
|
+
// ArrowDownWideNarrow aliases
|
|
33
|
+
export {
|
|
34
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. */
|
|
35
|
+
default as SortDesc
|
|
36
|
+
} from '../icons/arrow-down-wide-narrow';
|
|
37
|
+
|
|
38
38
|
// ArrowUpAZ aliases
|
|
39
39
|
export {
|
|
40
40
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. */
|
|
@@ -65,24 +65,30 @@ export {
|
|
|
65
65
|
default as Verified
|
|
66
66
|
} from '../icons/badge-check';
|
|
67
67
|
|
|
68
|
-
// BadgeQuestionMark aliases
|
|
69
|
-
export {
|
|
70
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
71
|
-
default as BadgeHelp
|
|
72
|
-
} from '../icons/badge-question-mark';
|
|
73
|
-
|
|
74
68
|
// BetweenHorizontalEnd aliases
|
|
75
69
|
export {
|
|
76
70
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. */
|
|
77
71
|
default as BetweenHorizonalEnd
|
|
78
72
|
} from '../icons/between-horizontal-end';
|
|
79
73
|
|
|
74
|
+
// BadgeQuestionMark aliases
|
|
75
|
+
export {
|
|
76
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
77
|
+
default as BadgeHelp
|
|
78
|
+
} from '../icons/badge-question-mark';
|
|
79
|
+
|
|
80
80
|
// BetweenHorizontalStart aliases
|
|
81
81
|
export {
|
|
82
82
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
83
83
|
default as BetweenHorizonalStart
|
|
84
84
|
} from '../icons/between-horizontal-start';
|
|
85
85
|
|
|
86
|
+
// BookBookmark aliases
|
|
87
|
+
export {
|
|
88
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookBookmark} instead. */
|
|
89
|
+
default as BookMarked
|
|
90
|
+
} from '../icons/book-bookmark';
|
|
91
|
+
|
|
86
92
|
// BookDashed aliases
|
|
87
93
|
export {
|
|
88
94
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
@@ -95,6 +101,12 @@ export {
|
|
|
95
101
|
default as CurlyBraces
|
|
96
102
|
} from '../icons/braces';
|
|
97
103
|
|
|
104
|
+
// BuildingComplex aliases
|
|
105
|
+
export {
|
|
106
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BuildingComplex} instead. */
|
|
107
|
+
default as Building2
|
|
108
|
+
} from '../icons/building-complex';
|
|
109
|
+
|
|
98
110
|
// Captions aliases
|
|
99
111
|
export {
|
|
100
112
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. */
|
|
@@ -221,18 +233,18 @@ export {
|
|
|
221
233
|
default as ArrowUpRightFromCircle
|
|
222
234
|
} from '../icons/circle-arrow-out-up-right';
|
|
223
235
|
|
|
224
|
-
// CircleArrowRight aliases
|
|
225
|
-
export {
|
|
226
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
227
|
-
default as ArrowRightCircle
|
|
228
|
-
} from '../icons/circle-arrow-right';
|
|
229
|
-
|
|
230
236
|
// CircleArrowUp aliases
|
|
231
237
|
export {
|
|
232
238
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. */
|
|
233
239
|
default as ArrowUpCircle
|
|
234
240
|
} from '../icons/circle-arrow-up';
|
|
235
241
|
|
|
242
|
+
// CircleArrowRight aliases
|
|
243
|
+
export {
|
|
244
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
245
|
+
default as ArrowRightCircle
|
|
246
|
+
} from '../icons/circle-arrow-right';
|
|
247
|
+
|
|
236
248
|
// CircleCheckBig aliases
|
|
237
249
|
export {
|
|
238
250
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. */
|
|
@@ -257,23 +269,17 @@ export {
|
|
|
257
269
|
default as ChevronLeftCircle
|
|
258
270
|
} from '../icons/circle-chevron-left';
|
|
259
271
|
|
|
260
|
-
// CircleChevronUp aliases
|
|
261
|
-
export {
|
|
262
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. */
|
|
263
|
-
default as ChevronUpCircle
|
|
264
|
-
} from '../icons/circle-chevron-up';
|
|
265
|
-
|
|
266
272
|
// CircleChevronRight aliases
|
|
267
273
|
export {
|
|
268
274
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. */
|
|
269
275
|
default as ChevronRightCircle
|
|
270
276
|
} from '../icons/circle-chevron-right';
|
|
271
277
|
|
|
272
|
-
//
|
|
278
|
+
// CircleChevronUp aliases
|
|
273
279
|
export {
|
|
274
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
275
|
-
default as
|
|
276
|
-
} from '../icons/circle-
|
|
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';
|
|
277
283
|
|
|
278
284
|
// CircleGauge aliases
|
|
279
285
|
export {
|
|
@@ -281,6 +287,12 @@ export {
|
|
|
281
287
|
default as GaugeCircle
|
|
282
288
|
} from '../icons/circle-gauge';
|
|
283
289
|
|
|
290
|
+
// CircleDivide aliases
|
|
291
|
+
export {
|
|
292
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. */
|
|
293
|
+
default as DivideCircle
|
|
294
|
+
} from '../icons/circle-divide';
|
|
295
|
+
|
|
284
296
|
// CircleMinus aliases
|
|
285
297
|
export {
|
|
286
298
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. */
|
|
@@ -293,12 +305,6 @@ export {
|
|
|
293
305
|
default as ParkingCircleOff
|
|
294
306
|
} from '../icons/circle-parking-off';
|
|
295
307
|
|
|
296
|
-
// CircleParking aliases
|
|
297
|
-
export {
|
|
298
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
299
|
-
default as ParkingCircle
|
|
300
|
-
} from '../icons/circle-parking';
|
|
301
|
-
|
|
302
308
|
// CirclePause aliases
|
|
303
309
|
export {
|
|
304
310
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. */
|
|
@@ -311,6 +317,12 @@ export {
|
|
|
311
317
|
default as PercentCircle
|
|
312
318
|
} from '../icons/circle-percent';
|
|
313
319
|
|
|
320
|
+
// CircleParking aliases
|
|
321
|
+
export {
|
|
322
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
323
|
+
default as ParkingCircle
|
|
324
|
+
} from '../icons/circle-parking';
|
|
325
|
+
|
|
314
326
|
// CirclePlay aliases
|
|
315
327
|
export {
|
|
316
328
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. */
|
|
@@ -341,18 +353,18 @@ export {
|
|
|
341
353
|
default as CircleHelp
|
|
342
354
|
} from '../icons/circle-question-mark';
|
|
343
355
|
|
|
344
|
-
// CircleSlash2 aliases
|
|
345
|
-
export {
|
|
346
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. */
|
|
347
|
-
default as CircleSlashed
|
|
348
|
-
} from '../icons/circle-slash-2';
|
|
349
|
-
|
|
350
356
|
// CircleStop aliases
|
|
351
357
|
export {
|
|
352
358
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. */
|
|
353
359
|
default as StopCircle
|
|
354
360
|
} from '../icons/circle-stop';
|
|
355
361
|
|
|
362
|
+
// CircleSlash2 aliases
|
|
363
|
+
export {
|
|
364
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. */
|
|
365
|
+
default as CircleSlashed
|
|
366
|
+
} from '../icons/circle-slash-2';
|
|
367
|
+
|
|
356
368
|
// CircleUserRound aliases
|
|
357
369
|
export {
|
|
358
370
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. */
|
|
@@ -587,18 +599,18 @@ export {
|
|
|
587
599
|
default as FileKey2
|
|
588
600
|
} from '../icons/file-key';
|
|
589
601
|
|
|
590
|
-
// FileLock aliases
|
|
591
|
-
export {
|
|
592
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
593
|
-
default as FileLock2
|
|
594
|
-
} from '../icons/file-lock';
|
|
595
|
-
|
|
596
602
|
// FileMinusCorner aliases
|
|
597
603
|
export {
|
|
598
604
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. */
|
|
599
605
|
default as FileMinus2
|
|
600
606
|
} from '../icons/file-minus-corner';
|
|
601
607
|
|
|
608
|
+
// FileLock aliases
|
|
609
|
+
export {
|
|
610
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
611
|
+
default as FileLock2
|
|
612
|
+
} from '../icons/file-lock';
|
|
613
|
+
|
|
602
614
|
// FilePenLine aliases
|
|
603
615
|
export {
|
|
604
616
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. */
|
|
@@ -611,12 +623,6 @@ export {
|
|
|
611
623
|
default as FileEdit
|
|
612
624
|
} from '../icons/file-pen';
|
|
613
625
|
|
|
614
|
-
// FilePlusCorner aliases
|
|
615
|
-
export {
|
|
616
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. */
|
|
617
|
-
default as FilePlus2
|
|
618
|
-
} from '../icons/file-plus-corner';
|
|
619
|
-
|
|
620
626
|
// FilePlay aliases
|
|
621
627
|
export {
|
|
622
628
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. */
|
|
@@ -629,24 +635,30 @@ export {
|
|
|
629
635
|
default as FileQuestion
|
|
630
636
|
} from '../icons/file-question-mark';
|
|
631
637
|
|
|
638
|
+
// FilePlusCorner aliases
|
|
639
|
+
export {
|
|
640
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. */
|
|
641
|
+
default as FilePlus2
|
|
642
|
+
} from '../icons/file-plus-corner';
|
|
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. */
|
|
635
647
|
default as FileSearch2
|
|
636
648
|
} from '../icons/file-search-corner';
|
|
637
649
|
|
|
638
|
-
// FileSignal aliases
|
|
639
|
-
export {
|
|
640
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. */
|
|
641
|
-
default as FileVolume2
|
|
642
|
-
} from '../icons/file-signal';
|
|
643
|
-
|
|
644
650
|
// FileTypeCorner aliases
|
|
645
651
|
export {
|
|
646
652
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
647
653
|
default as FileType2
|
|
648
654
|
} from '../icons/file-type-corner';
|
|
649
655
|
|
|
656
|
+
// FileSignal aliases
|
|
657
|
+
export {
|
|
658
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. */
|
|
659
|
+
default as FileVolume2
|
|
660
|
+
} from '../icons/file-signal';
|
|
661
|
+
|
|
650
662
|
// FileVideoCamera aliases
|
|
651
663
|
export {
|
|
652
664
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
@@ -671,18 +683,18 @@ export {
|
|
|
671
683
|
default as FolderCog2
|
|
672
684
|
} from '../icons/folder-cog';
|
|
673
685
|
|
|
674
|
-
// FolderPen aliases
|
|
675
|
-
export {
|
|
676
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. */
|
|
677
|
-
default as FolderEdit
|
|
678
|
-
} from '../icons/folder-pen';
|
|
679
|
-
|
|
680
686
|
// FunnelX aliases
|
|
681
687
|
export {
|
|
682
688
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. */
|
|
683
689
|
default as FilterX
|
|
684
690
|
} from '../icons/funnel-x';
|
|
685
691
|
|
|
692
|
+
// FolderPen aliases
|
|
693
|
+
export {
|
|
694
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. */
|
|
695
|
+
default as FolderEdit
|
|
696
|
+
} from '../icons/folder-pen';
|
|
697
|
+
|
|
686
698
|
// Funnel aliases
|
|
687
699
|
export {
|
|
688
700
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} 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. */
|
|
@@ -737,6 +743,12 @@ export {
|
|
|
737
743
|
default as Grab
|
|
738
744
|
} from '../icons/hand-grab';
|
|
739
745
|
|
|
746
|
+
// Grid2x2 aliases
|
|
747
|
+
export {
|
|
748
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
749
|
+
default as Grid2X2
|
|
750
|
+
} from '../icons/grid-2x2';
|
|
751
|
+
|
|
740
752
|
// HandHelping aliases
|
|
741
753
|
export {
|
|
742
754
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} 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. */
|
|
@@ -929,23 +941,17 @@ export {
|
|
|
929
941
|
default as Edit3
|
|
930
942
|
} from '../icons/pen-line';
|
|
931
943
|
|
|
932
|
-
// Pen aliases
|
|
933
|
-
export {
|
|
934
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. */
|
|
935
|
-
default as Edit2
|
|
936
|
-
} from '../icons/pen';
|
|
937
|
-
|
|
938
944
|
// PlugZap aliases
|
|
939
945
|
export {
|
|
940
946
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. */
|
|
941
947
|
default as PlugZap2
|
|
942
948
|
} from '../icons/plug-zap';
|
|
943
949
|
|
|
944
|
-
//
|
|
950
|
+
// Pen aliases
|
|
945
951
|
export {
|
|
946
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
947
|
-
default as
|
|
948
|
-
} from '../icons/
|
|
952
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. */
|
|
953
|
+
default as Edit2
|
|
954
|
+
} from '../icons/pen';
|
|
949
955
|
|
|
950
956
|
// RectangleEllipsis aliases
|
|
951
957
|
export {
|
|
@@ -953,6 +959,12 @@ export {
|
|
|
953
959
|
default as FormInput
|
|
954
960
|
} from '../icons/rectangle-ellipsis';
|
|
955
961
|
|
|
962
|
+
// Rotate3d aliases
|
|
963
|
+
export {
|
|
964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. */
|
|
965
|
+
default as Rotate3D
|
|
966
|
+
} from '../icons/rotate-3d';
|
|
967
|
+
|
|
956
968
|
// RotateCcwClock aliases
|
|
957
969
|
export {
|
|
958
970
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RotateCcwClock} instead. */
|
|
@@ -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. */
|
|
@@ -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,18 +1097,18 @@ export {
|
|
|
1079
1097
|
default as ArrowUpSquare
|
|
1080
1098
|
} from '../icons/square-arrow-up';
|
|
1081
1099
|
|
|
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
|
-
|
|
1088
1100
|
// SquareAsterisk aliases
|
|
1089
1101
|
export {
|
|
1090
1102
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. */
|
|
1091
1103
|
default as AsteriskSquare
|
|
1092
1104
|
} from '../icons/square-asterisk';
|
|
1093
1105
|
|
|
1106
|
+
// SquareBookmark aliases
|
|
1107
|
+
export {
|
|
1108
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBookmark} instead. */
|
|
1109
|
+
default as Album
|
|
1110
|
+
} from '../icons/square-bookmark';
|
|
1111
|
+
|
|
1094
1112
|
// SquareBottomDashedScissors aliases
|
|
1095
1113
|
export {
|
|
1096
1114
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. */
|
|
@@ -1103,18 +1121,6 @@ export {
|
|
|
1103
1121
|
default as FlipHorizontal
|
|
1104
1122
|
} from '../icons/square-centerline-dashed-horizontal';
|
|
1105
1123
|
|
|
1106
|
-
// SquareCenterlineDashedVertical aliases
|
|
1107
|
-
export {
|
|
1108
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
1109
|
-
default as FlipVertical
|
|
1110
|
-
} from '../icons/square-centerline-dashed-vertical';
|
|
1111
|
-
|
|
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
1124
|
// SquareChartGantt aliases
|
|
1119
1125
|
export {
|
|
1120
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. */
|
|
@@ -1127,12 +1133,24 @@ export {
|
|
|
1127
1133
|
default as SquareGanttChart
|
|
1128
1134
|
} from '../icons/square-chart-gantt';
|
|
1129
1135
|
|
|
1136
|
+
// SquareCenterlineDashedVertical aliases
|
|
1137
|
+
export {
|
|
1138
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
1139
|
+
default as FlipVertical
|
|
1140
|
+
} from '../icons/square-centerline-dashed-vertical';
|
|
1141
|
+
|
|
1130
1142
|
// SquareCheck aliases
|
|
1131
1143
|
export {
|
|
1132
1144
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
1133
1145
|
default as CheckSquare2
|
|
1134
1146
|
} from '../icons/square-check';
|
|
1135
1147
|
|
|
1148
|
+
// SquareCheckBig aliases
|
|
1149
|
+
export {
|
|
1150
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1151
|
+
default as CheckSquare
|
|
1152
|
+
} from '../icons/square-check-big';
|
|
1153
|
+
|
|
1136
1154
|
// SquareChevronDown aliases
|
|
1137
1155
|
export {
|
|
1138
1156
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. */
|
|
@@ -1175,12 +1193,6 @@ export {
|
|
|
1175
1193
|
default as MousePointerSquareDashed
|
|
1176
1194
|
} from '../icons/square-dashed-mouse-pointer';
|
|
1177
1195
|
|
|
1178
|
-
// SquareDashed aliases
|
|
1179
|
-
export {
|
|
1180
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. */
|
|
1181
|
-
default as BoxSelect
|
|
1182
|
-
} from '../icons/square-dashed';
|
|
1183
|
-
|
|
1184
1196
|
// SquareDashedText aliases
|
|
1185
1197
|
export {
|
|
1186
1198
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. */
|
|
@@ -1193,6 +1205,12 @@ export {
|
|
|
1193
1205
|
default as TextSelect
|
|
1194
1206
|
} from '../icons/square-dashed-text';
|
|
1195
1207
|
|
|
1208
|
+
// SquareDashed aliases
|
|
1209
|
+
export {
|
|
1210
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. */
|
|
1211
|
+
default as BoxSelect
|
|
1212
|
+
} from '../icons/square-dashed';
|
|
1213
|
+
|
|
1196
1214
|
// SquareDivide aliases
|
|
1197
1215
|
export {
|
|
1198
1216
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. */
|
|
@@ -1283,18 +1301,18 @@ export {
|
|
|
1283
1301
|
default as PenSquare
|
|
1284
1302
|
} from '../icons/square-pen';
|
|
1285
1303
|
|
|
1286
|
-
// SquarePercent aliases
|
|
1287
|
-
export {
|
|
1288
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. */
|
|
1289
|
-
default as PercentSquare
|
|
1290
|
-
} from '../icons/square-percent';
|
|
1291
|
-
|
|
1292
1304
|
// SquarePi aliases
|
|
1293
1305
|
export {
|
|
1294
1306
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. */
|
|
1295
1307
|
default as PiSquare
|
|
1296
1308
|
} from '../icons/square-pi';
|
|
1297
1309
|
|
|
1310
|
+
// SquarePercent aliases
|
|
1311
|
+
export {
|
|
1312
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. */
|
|
1313
|
+
default as PercentSquare
|
|
1314
|
+
} from '../icons/square-percent';
|
|
1315
|
+
|
|
1298
1316
|
// SquarePilcrow aliases
|
|
1299
1317
|
export {
|
|
1300
1318
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
@@ -1457,18 +1475,18 @@ export {
|
|
|
1457
1475
|
default as FlipVertical2
|
|
1458
1476
|
} from '../icons/triangles-centerline-dashed-vertical';
|
|
1459
1477
|
|
|
1460
|
-
// TvMinimal aliases
|
|
1461
|
-
export {
|
|
1462
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. */
|
|
1463
|
-
default as Tv2
|
|
1464
|
-
} from '../icons/tv-minimal';
|
|
1465
|
-
|
|
1466
1478
|
// University aliases
|
|
1467
1479
|
export {
|
|
1468
1480
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. */
|
|
1469
1481
|
default as School2
|
|
1470
1482
|
} from '../icons/university';
|
|
1471
1483
|
|
|
1484
|
+
// TvMinimal aliases
|
|
1485
|
+
export {
|
|
1486
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. */
|
|
1487
|
+
default as Tv2
|
|
1488
|
+
} from '../icons/tv-minimal';
|
|
1489
|
+
|
|
1472
1490
|
// UserRoundCheck aliases
|
|
1473
1491
|
export {
|
|
1474
1492
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. */
|