@lucide/astro 0.556.0 → 0.558.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/aliases/aliases.ts +48 -48
- package/src/aliases/prefixed.ts +534 -520
- package/src/aliases/suffixed.ts +911 -897
- package/src/icons/balloon.ts +18 -0
- package/src/icons/brush-cleaning.ts +2 -2
- package/src/icons/circle-pile.ts +18 -0
- package/src/icons/cloud-backup.ts +18 -0
- package/src/icons/cloud-sync.ts +18 -0
- package/src/icons/hd.ts +18 -0
- package/src/icons/index.ts +112 -105
- package/src/icons/layers-plus.ts +18 -0
- package/src/icons/memory-stick.ts +2 -2
- package/src/icons/microchip.ts +2 -2
- package/src/icons/paint-bucket.ts +2 -2
- package/src/icons/search-alert.ts +18 -0
- package/src/icons/thumbs-down.ts +2 -2
- package/src/icons/thumbs-up.ts +2 -2
- package/src/icons/tickets-plane.ts +2 -2
- package/src/icons/tickets.ts +2 -2
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -113,18 +113,18 @@ export {
|
|
|
113
113
|
default as BarChartHorizontalBig
|
|
114
114
|
} from '../icons/chart-bar-big';
|
|
115
115
|
|
|
116
|
-
// ChartBar aliases
|
|
117
|
-
export {
|
|
118
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
119
|
-
default as BarChartHorizontal
|
|
120
|
-
} from '../icons/chart-bar';
|
|
121
|
-
|
|
122
116
|
// ChartCandlestick aliases
|
|
123
117
|
export {
|
|
124
118
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
125
119
|
default as CandlestickChart
|
|
126
120
|
} from '../icons/chart-candlestick';
|
|
127
121
|
|
|
122
|
+
// ChartBar aliases
|
|
123
|
+
export {
|
|
124
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
125
|
+
default as BarChartHorizontal
|
|
126
|
+
} from '../icons/chart-bar';
|
|
127
|
+
|
|
128
128
|
// ChartColumnBig aliases
|
|
129
129
|
export {
|
|
130
130
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnBig} instead. This alias will be removed in v1.0 */
|
|
@@ -173,18 +173,18 @@ 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
|
// Chromium aliases
|
|
183
177
|
export {
|
|
184
178
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Chromium} instead. This alias will be removed in v1.0 */
|
|
185
179
|
default as Chrome
|
|
186
180
|
} from '../icons/chromium';
|
|
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
|
// CircleAlert aliases
|
|
189
189
|
export {
|
|
190
190
|
/** @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 */
|
|
@@ -527,6 +527,12 @@ export {
|
|
|
527
527
|
default as FileCog2
|
|
528
528
|
} from '../icons/file-cog';
|
|
529
529
|
|
|
530
|
+
// FileExclamationPoint aliases
|
|
531
|
+
export {
|
|
532
|
+
/** @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
|
+
default as FileWarning
|
|
534
|
+
} from '../icons/file-exclamation-point';
|
|
535
|
+
|
|
530
536
|
// FileHeadphone aliases
|
|
531
537
|
export {
|
|
532
538
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileHeadphone} instead. This alias will be removed in v1.0 */
|
|
@@ -539,12 +545,6 @@ export {
|
|
|
539
545
|
default as FileAudio2
|
|
540
546
|
} from '../icons/file-headphone';
|
|
541
547
|
|
|
542
|
-
// FileExclamationPoint aliases
|
|
543
|
-
export {
|
|
544
|
-
/** @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 */
|
|
545
|
-
default as FileWarning
|
|
546
|
-
} from '../icons/file-exclamation-point';
|
|
547
|
-
|
|
548
548
|
// FileKey aliases
|
|
549
549
|
export {
|
|
550
550
|
/** @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 */
|
|
@@ -653,18 +653,18 @@ export {
|
|
|
653
653
|
default as Filter
|
|
654
654
|
} from '../icons/funnel';
|
|
655
655
|
|
|
656
|
-
// Grid2x2Check aliases
|
|
657
|
-
export {
|
|
658
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
659
|
-
default as Grid2X2Check
|
|
660
|
-
} from '../icons/grid-2x2-check';
|
|
661
|
-
|
|
662
656
|
// GitCommitHorizontal aliases
|
|
663
657
|
export {
|
|
664
658
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
665
659
|
default as GitCommit
|
|
666
660
|
} from '../icons/git-commit-horizontal';
|
|
667
661
|
|
|
662
|
+
// Grid2x2Check aliases
|
|
663
|
+
export {
|
|
664
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
665
|
+
default as Grid2X2Check
|
|
666
|
+
} from '../icons/grid-2x2-check';
|
|
667
|
+
|
|
668
668
|
// Grid2x2Plus aliases
|
|
669
669
|
export {
|
|
670
670
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. This alias will be removed in v1.0 */
|
|
@@ -917,18 +917,18 @@ export {
|
|
|
917
917
|
default as Rows
|
|
918
918
|
} from '../icons/rows-2';
|
|
919
919
|
|
|
920
|
-
// Scale3d aliases
|
|
921
|
-
export {
|
|
922
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
923
|
-
default as Scale3D
|
|
924
|
-
} from '../icons/scale-3d';
|
|
925
|
-
|
|
926
920
|
// Rows3 aliases
|
|
927
921
|
export {
|
|
928
922
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
929
923
|
default as PanelsTopBottom
|
|
930
924
|
} from '../icons/rows-3';
|
|
931
925
|
|
|
926
|
+
// Scale3d aliases
|
|
927
|
+
export {
|
|
928
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
929
|
+
default as Scale3D
|
|
930
|
+
} from '../icons/scale-3d';
|
|
931
|
+
|
|
932
932
|
// SendHorizontal aliases
|
|
933
933
|
export {
|
|
934
934
|
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
@@ -959,18 +959,18 @@ export {
|
|
|
959
959
|
default as Stars
|
|
960
960
|
} from '../icons/sparkles';
|
|
961
961
|
|
|
962
|
-
// SquareActivity aliases
|
|
963
|
-
export {
|
|
964
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. This alias will be removed in v1.0 */
|
|
965
|
-
default as ActivitySquare
|
|
966
|
-
} from '../icons/square-activity';
|
|
967
|
-
|
|
968
962
|
// SquareArrowDownLeft aliases
|
|
969
963
|
export {
|
|
970
964
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
|
|
971
965
|
default as ArrowDownLeftSquare
|
|
972
966
|
} from '../icons/square-arrow-down-left';
|
|
973
967
|
|
|
968
|
+
// SquareActivity aliases
|
|
969
|
+
export {
|
|
970
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. This alias will be removed in v1.0 */
|
|
971
|
+
default as ActivitySquare
|
|
972
|
+
} from '../icons/square-activity';
|
|
973
|
+
|
|
974
974
|
// SquareArrowDownRight aliases
|
|
975
975
|
export {
|
|
976
976
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
@@ -1229,18 +1229,18 @@ export {
|
|
|
1229
1229
|
default as PilcrowSquare
|
|
1230
1230
|
} from '../icons/square-pilcrow';
|
|
1231
1231
|
|
|
1232
|
-
// SquarePlus aliases
|
|
1233
|
-
export {
|
|
1234
|
-
/** @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 */
|
|
1235
|
-
default as PlusSquare
|
|
1236
|
-
} from '../icons/square-plus';
|
|
1237
|
-
|
|
1238
1232
|
// SquarePlay aliases
|
|
1239
1233
|
export {
|
|
1240
1234
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
1241
1235
|
default as PlaySquare
|
|
1242
1236
|
} from '../icons/square-play';
|
|
1243
1237
|
|
|
1238
|
+
// SquarePlus aliases
|
|
1239
|
+
export {
|
|
1240
|
+
/** @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 */
|
|
1241
|
+
default as PlusSquare
|
|
1242
|
+
} from '../icons/square-plus';
|
|
1243
|
+
|
|
1244
1244
|
// SquarePower aliases
|
|
1245
1245
|
export {
|
|
1246
1246
|
/** @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 */
|
|
@@ -1421,18 +1421,18 @@ export {
|
|
|
1421
1421
|
default as User2
|
|
1422
1422
|
} from '../icons/user-round';
|
|
1423
1423
|
|
|
1424
|
-
// UsersRound aliases
|
|
1425
|
-
export {
|
|
1426
|
-
/** @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 */
|
|
1427
|
-
default as Users2
|
|
1428
|
-
} from '../icons/users-round';
|
|
1429
|
-
|
|
1430
1424
|
// UtensilsCrossed aliases
|
|
1431
1425
|
export {
|
|
1432
1426
|
/** @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 */
|
|
1433
1427
|
default as ForkKnifeCrossed
|
|
1434
1428
|
} from '../icons/utensils-crossed';
|
|
1435
1429
|
|
|
1430
|
+
// UsersRound aliases
|
|
1431
|
+
export {
|
|
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 */
|
|
1433
|
+
default as Users2
|
|
1434
|
+
} from '../icons/users-round';
|
|
1435
|
+
|
|
1436
1436
|
// Utensils aliases
|
|
1437
1437
|
export {
|
|
1438
1438
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|