@lucide/astro 1.9.0 → 1.10.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 +118 -118
- package/src/aliases/prefixed.ts +774 -770
- package/src/aliases/suffixed.ts +1157 -1153
- package/src/icons/heart-x.ts +18 -0
- package/src/icons/index.ts +231 -229
- package/src/icons/layers-minus.ts +18 -0
- package/src/icons/rotate-3d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.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
|
"typescript": "^5.8.3",
|
|
49
49
|
"vite": "^7.3.2",
|
|
50
50
|
"vitest": "^4.1.1",
|
|
51
|
-
"astro": "^6.
|
|
51
|
+
"astro": "^6.1.6",
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -59,18 +59,18 @@ export {
|
|
|
59
59
|
default as Axis3D
|
|
60
60
|
} from '../icons/axis-3d';
|
|
61
61
|
|
|
62
|
-
// BadgeCheck aliases
|
|
63
|
-
export {
|
|
64
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
|
|
65
|
-
default as Verified
|
|
66
|
-
} from '../icons/badge-check';
|
|
67
|
-
|
|
68
62
|
// BadgeQuestionMark aliases
|
|
69
63
|
export {
|
|
70
64
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. This alias will be removed in v1.0 */
|
|
71
65
|
default as BadgeHelp
|
|
72
66
|
} from '../icons/badge-question-mark';
|
|
73
67
|
|
|
68
|
+
// BadgeCheck aliases
|
|
69
|
+
export {
|
|
70
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
|
|
71
|
+
default as Verified
|
|
72
|
+
} from '../icons/badge-check';
|
|
73
|
+
|
|
74
74
|
// BetweenHorizontalEnd aliases
|
|
75
75
|
export {
|
|
76
76
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
@@ -173,41 +173,35 @@ export {
|
|
|
173
173
|
default as PieChart
|
|
174
174
|
} from '../icons/chart-pie';
|
|
175
175
|
|
|
176
|
-
// ChartScatter aliases
|
|
177
|
-
export {
|
|
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 */
|
|
179
|
-
default as ScatterChart
|
|
180
|
-
} from '../icons/chart-scatter';
|
|
181
|
-
|
|
182
176
|
// CircleAlert aliases
|
|
183
177
|
export {
|
|
184
178
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
185
179
|
default as AlertCircle
|
|
186
180
|
} from '../icons/circle-alert';
|
|
187
181
|
|
|
182
|
+
// ChartScatter aliases
|
|
183
|
+
export {
|
|
184
|
+
/** @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 */
|
|
185
|
+
default as ScatterChart
|
|
186
|
+
} from '../icons/chart-scatter';
|
|
187
|
+
|
|
188
188
|
// CircleArrowDown aliases
|
|
189
189
|
export {
|
|
190
190
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
191
191
|
default as ArrowDownCircle
|
|
192
192
|
} from '../icons/circle-arrow-down';
|
|
193
193
|
|
|
194
|
-
// CircleArrowOutDownLeft aliases
|
|
195
|
-
export {
|
|
196
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
197
|
-
default as ArrowDownLeftFromCircle
|
|
198
|
-
} from '../icons/circle-arrow-out-down-left';
|
|
199
|
-
|
|
200
194
|
// CircleArrowLeft aliases
|
|
201
195
|
export {
|
|
202
196
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
203
197
|
default as ArrowLeftCircle
|
|
204
198
|
} from '../icons/circle-arrow-left';
|
|
205
199
|
|
|
206
|
-
//
|
|
200
|
+
// CircleArrowOutDownLeft aliases
|
|
207
201
|
export {
|
|
208
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
209
|
-
default as
|
|
210
|
-
} from '../icons/circle-arrow-out-down-
|
|
202
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
203
|
+
default as ArrowDownLeftFromCircle
|
|
204
|
+
} from '../icons/circle-arrow-out-down-left';
|
|
211
205
|
|
|
212
206
|
// CircleArrowOutUpLeft aliases
|
|
213
207
|
export {
|
|
@@ -215,6 +209,12 @@ export {
|
|
|
215
209
|
default as ArrowUpLeftFromCircle
|
|
216
210
|
} from '../icons/circle-arrow-out-up-left';
|
|
217
211
|
|
|
212
|
+
// CircleArrowOutDownRight aliases
|
|
213
|
+
export {
|
|
214
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
215
|
+
default as ArrowDownRightFromCircle
|
|
216
|
+
} from '../icons/circle-arrow-out-down-right';
|
|
217
|
+
|
|
218
218
|
// CircleArrowOutUpRight aliases
|
|
219
219
|
export {
|
|
220
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 */
|
|
@@ -227,18 +227,18 @@ export {
|
|
|
227
227
|
default as ArrowRightCircle
|
|
228
228
|
} from '../icons/circle-arrow-right';
|
|
229
229
|
|
|
230
|
-
// CircleCheckBig aliases
|
|
231
|
-
export {
|
|
232
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
233
|
-
default as CheckCircle
|
|
234
|
-
} from '../icons/circle-check-big';
|
|
235
|
-
|
|
236
230
|
// CircleArrowUp aliases
|
|
237
231
|
export {
|
|
238
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 */
|
|
239
233
|
default as ArrowUpCircle
|
|
240
234
|
} from '../icons/circle-arrow-up';
|
|
241
235
|
|
|
236
|
+
// CircleCheckBig aliases
|
|
237
|
+
export {
|
|
238
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
239
|
+
default as CheckCircle
|
|
240
|
+
} from '../icons/circle-check-big';
|
|
241
|
+
|
|
242
242
|
// CircleCheck aliases
|
|
243
243
|
export {
|
|
244
244
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. This alias will be removed in v1.0 */
|
|
@@ -281,18 +281,18 @@ export {
|
|
|
281
281
|
default as GaugeCircle
|
|
282
282
|
} from '../icons/circle-gauge';
|
|
283
283
|
|
|
284
|
-
// CircleMinus aliases
|
|
285
|
-
export {
|
|
286
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
287
|
-
default as MinusCircle
|
|
288
|
-
} from '../icons/circle-minus';
|
|
289
|
-
|
|
290
284
|
// CircleParkingOff aliases
|
|
291
285
|
export {
|
|
292
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 */
|
|
293
287
|
default as ParkingCircleOff
|
|
294
288
|
} from '../icons/circle-parking-off';
|
|
295
289
|
|
|
290
|
+
// CircleMinus aliases
|
|
291
|
+
export {
|
|
292
|
+
/** @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
|
+
default as MinusCircle
|
|
294
|
+
} from '../icons/circle-minus';
|
|
295
|
+
|
|
296
296
|
// CircleParking aliases
|
|
297
297
|
export {
|
|
298
298
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. This alias will be removed in v1.0 */
|
|
@@ -395,18 +395,18 @@ export {
|
|
|
395
395
|
default as UploadCloud
|
|
396
396
|
} from '../icons/cloud-upload';
|
|
397
397
|
|
|
398
|
-
// Columns2 aliases
|
|
399
|
-
export {
|
|
400
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
401
|
-
default as Columns
|
|
402
|
-
} from '../icons/columns-2';
|
|
403
|
-
|
|
404
398
|
// CodeXml aliases
|
|
405
399
|
export {
|
|
406
400
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
407
401
|
default as Code2
|
|
408
402
|
} from '../icons/code-xml';
|
|
409
403
|
|
|
404
|
+
// Columns2 aliases
|
|
405
|
+
export {
|
|
406
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
407
|
+
default as Columns
|
|
408
|
+
} from '../icons/columns-2';
|
|
409
|
+
|
|
410
410
|
// Columns3Cog aliases
|
|
411
411
|
export {
|
|
412
412
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
@@ -449,36 +449,36 @@ export {
|
|
|
449
449
|
default as MoreVertical
|
|
450
450
|
} from '../icons/ellipsis-vertical';
|
|
451
451
|
|
|
452
|
-
// Ellipsis aliases
|
|
453
|
-
export {
|
|
454
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
455
|
-
default as MoreHorizontal
|
|
456
|
-
} from '../icons/ellipsis';
|
|
457
|
-
|
|
458
452
|
// FileAxis3d aliases
|
|
459
453
|
export {
|
|
460
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 */
|
|
461
455
|
default as FileAxis3D
|
|
462
456
|
} from '../icons/file-axis-3d';
|
|
463
457
|
|
|
458
|
+
// Ellipsis aliases
|
|
459
|
+
export {
|
|
460
|
+
/** @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
|
+
default as MoreHorizontal
|
|
462
|
+
} from '../icons/ellipsis';
|
|
463
|
+
|
|
464
464
|
// FileBadge aliases
|
|
465
465
|
export {
|
|
466
466
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. This alias will be removed in v1.0 */
|
|
467
467
|
default as FileBadge2
|
|
468
468
|
} from '../icons/file-badge';
|
|
469
469
|
|
|
470
|
-
// FileBracesCorner aliases
|
|
471
|
-
export {
|
|
472
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
473
|
-
default as FileJson2
|
|
474
|
-
} from '../icons/file-braces-corner';
|
|
475
|
-
|
|
476
470
|
// FileBraces aliases
|
|
477
471
|
export {
|
|
478
472
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
479
473
|
default as FileJson
|
|
480
474
|
} from '../icons/file-braces';
|
|
481
475
|
|
|
476
|
+
// FileBracesCorner aliases
|
|
477
|
+
export {
|
|
478
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
479
|
+
default as FileJson2
|
|
480
|
+
} from '../icons/file-braces-corner';
|
|
481
|
+
|
|
482
482
|
// FileChartColumnIncreasing aliases
|
|
483
483
|
export {
|
|
484
484
|
/** @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 */
|
|
@@ -515,6 +515,12 @@ export {
|
|
|
515
515
|
default as FileCode2
|
|
516
516
|
} from '../icons/file-code-corner';
|
|
517
517
|
|
|
518
|
+
// FileCog aliases
|
|
519
|
+
export {
|
|
520
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. This alias will be removed in v1.0 */
|
|
521
|
+
default as FileCog2
|
|
522
|
+
} from '../icons/file-cog';
|
|
523
|
+
|
|
518
524
|
// FileExclamationPoint aliases
|
|
519
525
|
export {
|
|
520
526
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. This alias will be removed in v1.0 */
|
|
@@ -533,12 +539,6 @@ export {
|
|
|
533
539
|
default as FileAudio2
|
|
534
540
|
} from '../icons/file-headphone';
|
|
535
541
|
|
|
536
|
-
// FileCog aliases
|
|
537
|
-
export {
|
|
538
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. This alias will be removed in v1.0 */
|
|
539
|
-
default as FileCog2
|
|
540
|
-
} from '../icons/file-cog';
|
|
541
|
-
|
|
542
542
|
// FileKey aliases
|
|
543
543
|
export {
|
|
544
544
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. This alias will be removed in v1.0 */
|
|
@@ -605,18 +605,18 @@ export {
|
|
|
605
605
|
default as FileType2
|
|
606
606
|
} from '../icons/file-type-corner';
|
|
607
607
|
|
|
608
|
-
// FileXCorner aliases
|
|
609
|
-
export {
|
|
610
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. This alias will be removed in v1.0 */
|
|
611
|
-
default as FileX2
|
|
612
|
-
} from '../icons/file-x-corner';
|
|
613
|
-
|
|
614
608
|
// FileVideoCamera aliases
|
|
615
609
|
export {
|
|
616
610
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. This alias will be removed in v1.0 */
|
|
617
611
|
default as FileVideo2
|
|
618
612
|
} from '../icons/file-video-camera';
|
|
619
613
|
|
|
614
|
+
// FileXCorner aliases
|
|
615
|
+
export {
|
|
616
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. This alias will be removed in v1.0 */
|
|
617
|
+
default as FileX2
|
|
618
|
+
} from '../icons/file-x-corner';
|
|
619
|
+
|
|
620
620
|
// FingerprintPattern aliases
|
|
621
621
|
export {
|
|
622
622
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. This alias will be removed in v1.0 */
|
|
@@ -677,12 +677,6 @@ export {
|
|
|
677
677
|
default as Grid2X2
|
|
678
678
|
} from '../icons/grid-2x2';
|
|
679
679
|
|
|
680
|
-
// HandGrab aliases
|
|
681
|
-
export {
|
|
682
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
683
|
-
default as Grab
|
|
684
|
-
} from '../icons/hand-grab';
|
|
685
|
-
|
|
686
680
|
// Grid3x3 aliases
|
|
687
681
|
export {
|
|
688
682
|
/** @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 */
|
|
@@ -695,6 +689,12 @@ export {
|
|
|
695
689
|
default as Grid3X3
|
|
696
690
|
} from '../icons/grid-3x3';
|
|
697
691
|
|
|
692
|
+
// HandGrab aliases
|
|
693
|
+
export {
|
|
694
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
695
|
+
default as Grab
|
|
696
|
+
} from '../icons/hand-grab';
|
|
697
|
+
|
|
698
698
|
// HandHelping aliases
|
|
699
699
|
export {
|
|
700
700
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
@@ -803,6 +803,12 @@ export {
|
|
|
803
803
|
default as Move3D
|
|
804
804
|
} from '../icons/move-3d';
|
|
805
805
|
|
|
806
|
+
// OctagonAlert aliases
|
|
807
|
+
export {
|
|
808
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
809
|
+
default as AlertOctagon
|
|
810
|
+
} from '../icons/octagon-alert';
|
|
811
|
+
|
|
806
812
|
// OctagonPause aliases
|
|
807
813
|
export {
|
|
808
814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
@@ -815,12 +821,6 @@ export {
|
|
|
815
821
|
default as XOctagon
|
|
816
822
|
} from '../icons/octagon-x';
|
|
817
823
|
|
|
818
|
-
// OctagonAlert aliases
|
|
819
|
-
export {
|
|
820
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
821
|
-
default as AlertOctagon
|
|
822
|
-
} from '../icons/octagon-alert';
|
|
823
|
-
|
|
824
824
|
// PaintbrushVertical aliases
|
|
825
825
|
export {
|
|
826
826
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -851,18 +851,18 @@ export {
|
|
|
851
851
|
default as SidebarOpen
|
|
852
852
|
} from '../icons/panel-left-open';
|
|
853
853
|
|
|
854
|
-
// PanelLeft aliases
|
|
855
|
-
export {
|
|
856
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
857
|
-
default as Sidebar
|
|
858
|
-
} from '../icons/panel-left';
|
|
859
|
-
|
|
860
854
|
// PanelRightDashed aliases
|
|
861
855
|
export {
|
|
862
856
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
863
857
|
default as PanelRightInactive
|
|
864
858
|
} from '../icons/panel-right-dashed';
|
|
865
859
|
|
|
860
|
+
// PanelLeft aliases
|
|
861
|
+
export {
|
|
862
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
863
|
+
default as Sidebar
|
|
864
|
+
} from '../icons/panel-left';
|
|
865
|
+
|
|
866
866
|
// PanelTopDashed aliases
|
|
867
867
|
export {
|
|
868
868
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. This alias will be removed in v1.0 */
|
|
@@ -881,18 +881,18 @@ export {
|
|
|
881
881
|
default as Edit3
|
|
882
882
|
} from '../icons/pen-line';
|
|
883
883
|
|
|
884
|
-
// Pen aliases
|
|
885
|
-
export {
|
|
886
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
887
|
-
default as Edit2
|
|
888
|
-
} from '../icons/pen';
|
|
889
|
-
|
|
890
884
|
// PlugZap aliases
|
|
891
885
|
export {
|
|
892
886
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
893
887
|
default as PlugZap2
|
|
894
888
|
} from '../icons/plug-zap';
|
|
895
889
|
|
|
890
|
+
// Pen aliases
|
|
891
|
+
export {
|
|
892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
893
|
+
default as Edit2
|
|
894
|
+
} from '../icons/pen';
|
|
895
|
+
|
|
896
896
|
// RectangleEllipsis aliases
|
|
897
897
|
export {
|
|
898
898
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
@@ -935,18 +935,18 @@ export {
|
|
|
935
935
|
default as ShieldQuestion
|
|
936
936
|
} from '../icons/shield-question-mark';
|
|
937
937
|
|
|
938
|
-
// ShieldX aliases
|
|
939
|
-
export {
|
|
940
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
941
|
-
default as ShieldClose
|
|
942
|
-
} from '../icons/shield-x';
|
|
943
|
-
|
|
944
938
|
// SlidersVertical aliases
|
|
945
939
|
export {
|
|
946
940
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. This alias will be removed in v1.0 */
|
|
947
941
|
default as Sliders
|
|
948
942
|
} from '../icons/sliders-vertical';
|
|
949
943
|
|
|
944
|
+
// ShieldX aliases
|
|
945
|
+
export {
|
|
946
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
947
|
+
default as ShieldClose
|
|
948
|
+
} from '../icons/shield-x';
|
|
949
|
+
|
|
950
950
|
// Sparkles aliases
|
|
951
951
|
export {
|
|
952
952
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
@@ -1073,18 +1073,18 @@ export {
|
|
|
1073
1073
|
default as CheckSquare
|
|
1074
1074
|
} from '../icons/square-check-big';
|
|
1075
1075
|
|
|
1076
|
-
// SquareCheck aliases
|
|
1077
|
-
export {
|
|
1078
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. This alias will be removed in v1.0 */
|
|
1079
|
-
default as CheckSquare2
|
|
1080
|
-
} from '../icons/square-check';
|
|
1081
|
-
|
|
1082
1076
|
// SquareChevronDown aliases
|
|
1083
1077
|
export {
|
|
1084
1078
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
1085
1079
|
default as ChevronDownSquare
|
|
1086
1080
|
} from '../icons/square-chevron-down';
|
|
1087
1081
|
|
|
1082
|
+
// SquareCheck aliases
|
|
1083
|
+
export {
|
|
1084
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. This alias will be removed in v1.0 */
|
|
1085
|
+
default as CheckSquare2
|
|
1086
|
+
} from '../icons/square-check';
|
|
1087
|
+
|
|
1088
1088
|
// SquareChevronLeft aliases
|
|
1089
1089
|
export {
|
|
1090
1090
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -1139,18 +1139,18 @@ export {
|
|
|
1139
1139
|
default as BoxSelect
|
|
1140
1140
|
} from '../icons/square-dashed';
|
|
1141
1141
|
|
|
1142
|
-
// SquareDot aliases
|
|
1143
|
-
export {
|
|
1144
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. This alias will be removed in v1.0 */
|
|
1145
|
-
default as DotSquare
|
|
1146
|
-
} from '../icons/square-dot';
|
|
1147
|
-
|
|
1148
1142
|
// SquareDivide aliases
|
|
1149
1143
|
export {
|
|
1150
1144
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. This alias will be removed in v1.0 */
|
|
1151
1145
|
default as DivideSquare
|
|
1152
1146
|
} from '../icons/square-divide';
|
|
1153
1147
|
|
|
1148
|
+
// SquareDot aliases
|
|
1149
|
+
export {
|
|
1150
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. This alias will be removed in v1.0 */
|
|
1151
|
+
default as DotSquare
|
|
1152
|
+
} from '../icons/square-dot';
|
|
1153
|
+
|
|
1154
1154
|
// SquareEqual aliases
|
|
1155
1155
|
export {
|
|
1156
1156
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
@@ -1241,6 +1241,12 @@ export {
|
|
|
1241
1241
|
default as PiSquare
|
|
1242
1242
|
} from '../icons/square-pi';
|
|
1243
1243
|
|
|
1244
|
+
// SquarePlus aliases
|
|
1245
|
+
export {
|
|
1246
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
1247
|
+
default as PlusSquare
|
|
1248
|
+
} from '../icons/square-plus';
|
|
1249
|
+
|
|
1244
1250
|
// SquarePilcrow aliases
|
|
1245
1251
|
export {
|
|
1246
1252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
@@ -1253,12 +1259,6 @@ export {
|
|
|
1253
1259
|
default as PlaySquare
|
|
1254
1260
|
} from '../icons/square-play';
|
|
1255
1261
|
|
|
1256
|
-
// SquarePlus aliases
|
|
1257
|
-
export {
|
|
1258
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
1259
|
-
default as PlusSquare
|
|
1260
|
-
} from '../icons/square-plus';
|
|
1261
|
-
|
|
1262
1262
|
// SquarePower aliases
|
|
1263
1263
|
export {
|
|
1264
1264
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. This alias will be removed in v1.0 */
|
|
@@ -1427,18 +1427,18 @@ export {
|
|
|
1427
1427
|
default as UserX2
|
|
1428
1428
|
} from '../icons/user-round-x';
|
|
1429
1429
|
|
|
1430
|
-
// UserRound aliases
|
|
1431
|
-
export {
|
|
1432
|
-
/** @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 */
|
|
1433
|
-
default as User2
|
|
1434
|
-
} from '../icons/user-round';
|
|
1435
|
-
|
|
1436
1430
|
// UsersRound aliases
|
|
1437
1431
|
export {
|
|
1438
1432
|
/** @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 */
|
|
1439
1433
|
default as Users2
|
|
1440
1434
|
} from '../icons/users-round';
|
|
1441
1435
|
|
|
1436
|
+
// UserRound aliases
|
|
1437
|
+
export {
|
|
1438
|
+
/** @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 */
|
|
1439
|
+
default as User2
|
|
1440
|
+
} from '../icons/user-round';
|
|
1441
|
+
|
|
1442
1442
|
// UtensilsCrossed aliases
|
|
1443
1443
|
export {
|
|
1444
1444
|
/** @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 */
|