@lucide/astro 1.11.0 → 1.13.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/README.md +1 -1
- package/package.json +1 -1
- package/src/aliases/aliases.ts +84 -78
- package/src/aliases/prefixed.ts +647 -637
- package/src/aliases/suffixed.ts +1017 -1007
- package/src/icons/astroid.ts +18 -0
- package/src/icons/folder-bookmark.ts +18 -0
- package/src/icons/index.ts +112 -109
- package/src/icons/waves-horizontal.ts +18 -0
- package/src/icons/waves-vertical.ts +18 -0
- package/src/icons/waves.ts +0 -18
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Lucide icon library for Astro sites and applications.
|
|
|
12
12
|
|
|
13
13
|
[](https://www.npmjs.com/package/@lucide/astro)
|
|
14
14
|

|
|
15
|
-
[](https://lucide.dev/license)
|
|
16
16
|
|
|
17
17
|
</div>
|
|
18
18
|
|
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -41,6 +41,12 @@ export {
|
|
|
41
41
|
default as ArrowUpAz
|
|
42
42
|
} from '../icons/arrow-up-a-z';
|
|
43
43
|
|
|
44
|
+
// ArrowUpNarrowWide aliases
|
|
45
|
+
export {
|
|
46
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
47
|
+
default as SortAsc
|
|
48
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
49
|
+
|
|
44
50
|
// ArrowUpZA aliases
|
|
45
51
|
export {
|
|
46
52
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
@@ -53,12 +59,6 @@ export {
|
|
|
53
59
|
default as Axis3D
|
|
54
60
|
} from '../icons/axis-3d';
|
|
55
61
|
|
|
56
|
-
// ArrowUpNarrowWide aliases
|
|
57
|
-
export {
|
|
58
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
59
|
-
default as SortAsc
|
|
60
|
-
} from '../icons/arrow-up-narrow-wide';
|
|
61
|
-
|
|
62
62
|
// BadgeCheck aliases
|
|
63
63
|
export {
|
|
64
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 */
|
|
@@ -173,18 +173,18 @@ export {
|
|
|
173
173
|
default as PieChart
|
|
174
174
|
} from '../icons/chart-pie';
|
|
175
175
|
|
|
176
|
-
// CircleAlert aliases
|
|
177
|
-
export {
|
|
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 */
|
|
179
|
-
default as AlertCircle
|
|
180
|
-
} from '../icons/circle-alert';
|
|
181
|
-
|
|
182
176
|
// ChartScatter aliases
|
|
183
177
|
export {
|
|
184
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 */
|
|
185
179
|
default as ScatterChart
|
|
186
180
|
} from '../icons/chart-scatter';
|
|
187
181
|
|
|
182
|
+
// CircleAlert aliases
|
|
183
|
+
export {
|
|
184
|
+
/** @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
|
+
default as AlertCircle
|
|
186
|
+
} from '../icons/circle-alert';
|
|
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 */
|
|
@@ -239,18 +239,18 @@ export {
|
|
|
239
239
|
default as CheckCircle
|
|
240
240
|
} from '../icons/circle-check-big';
|
|
241
241
|
|
|
242
|
-
// CircleCheck aliases
|
|
243
|
-
export {
|
|
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 */
|
|
245
|
-
default as CheckCircle2
|
|
246
|
-
} from '../icons/circle-check';
|
|
247
|
-
|
|
248
242
|
// CircleChevronDown aliases
|
|
249
243
|
export {
|
|
250
244
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. This alias will be removed in v1.0 */
|
|
251
245
|
default as ChevronDownCircle
|
|
252
246
|
} from '../icons/circle-chevron-down';
|
|
253
247
|
|
|
248
|
+
// CircleCheck aliases
|
|
249
|
+
export {
|
|
250
|
+
/** @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 */
|
|
251
|
+
default as CheckCircle2
|
|
252
|
+
} from '../icons/circle-check';
|
|
253
|
+
|
|
254
254
|
// CircleChevronLeft aliases
|
|
255
255
|
export {
|
|
256
256
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -263,12 +263,6 @@ export {
|
|
|
263
263
|
default as ChevronRightCircle
|
|
264
264
|
} from '../icons/circle-chevron-right';
|
|
265
265
|
|
|
266
|
-
// CircleChevronUp aliases
|
|
267
|
-
export {
|
|
268
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. This alias will be removed in v1.0 */
|
|
269
|
-
default as ChevronUpCircle
|
|
270
|
-
} from '../icons/circle-chevron-up';
|
|
271
|
-
|
|
272
266
|
// CircleDivide aliases
|
|
273
267
|
export {
|
|
274
268
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
@@ -287,6 +281,12 @@ export {
|
|
|
287
281
|
default as MinusCircle
|
|
288
282
|
} from '../icons/circle-minus';
|
|
289
283
|
|
|
284
|
+
// CircleChevronUp aliases
|
|
285
|
+
export {
|
|
286
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. This alias will be removed in v1.0 */
|
|
287
|
+
default as ChevronUpCircle
|
|
288
|
+
} from '../icons/circle-chevron-up';
|
|
289
|
+
|
|
290
290
|
// CircleParkingOff aliases
|
|
291
291
|
export {
|
|
292
292
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
@@ -701,18 +701,18 @@ export {
|
|
|
701
701
|
default as HelpingHand
|
|
702
702
|
} from '../icons/hand-helping';
|
|
703
703
|
|
|
704
|
-
// House aliases
|
|
705
|
-
export {
|
|
706
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
707
|
-
default as Home
|
|
708
|
-
} from '../icons/house';
|
|
709
|
-
|
|
710
704
|
// IceCreamBowl aliases
|
|
711
705
|
export {
|
|
712
706
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
713
707
|
default as IceCream2
|
|
714
708
|
} from '../icons/ice-cream-bowl';
|
|
715
709
|
|
|
710
|
+
// House aliases
|
|
711
|
+
export {
|
|
712
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
713
|
+
default as Home
|
|
714
|
+
} from '../icons/house';
|
|
715
|
+
|
|
716
716
|
// IceCreamCone aliases
|
|
717
717
|
export {
|
|
718
718
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
@@ -929,18 +929,18 @@ export {
|
|
|
929
929
|
default as SendHorizonal
|
|
930
930
|
} from '../icons/send-horizontal';
|
|
931
931
|
|
|
932
|
-
// ShieldQuestionMark aliases
|
|
933
|
-
export {
|
|
934
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
935
|
-
default as ShieldQuestion
|
|
936
|
-
} from '../icons/shield-question-mark';
|
|
937
|
-
|
|
938
932
|
// ShieldX aliases
|
|
939
933
|
export {
|
|
940
934
|
/** @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
935
|
default as ShieldClose
|
|
942
936
|
} from '../icons/shield-x';
|
|
943
937
|
|
|
938
|
+
// ShieldQuestionMark aliases
|
|
939
|
+
export {
|
|
940
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
941
|
+
default as ShieldQuestion
|
|
942
|
+
} from '../icons/shield-question-mark';
|
|
943
|
+
|
|
944
944
|
// SlidersVertical aliases
|
|
945
945
|
export {
|
|
946
946
|
/** @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 */
|
|
@@ -1019,18 +1019,18 @@ export {
|
|
|
1019
1019
|
default as ArrowUpLeftSquare
|
|
1020
1020
|
} from '../icons/square-arrow-up-left';
|
|
1021
1021
|
|
|
1022
|
-
// SquareArrowUpRight aliases
|
|
1023
|
-
export {
|
|
1024
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1025
|
-
default as ArrowUpRightSquare
|
|
1026
|
-
} from '../icons/square-arrow-up-right';
|
|
1027
|
-
|
|
1028
1022
|
// SquareArrowUp aliases
|
|
1029
1023
|
export {
|
|
1030
1024
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
1031
1025
|
default as ArrowUpSquare
|
|
1032
1026
|
} from '../icons/square-arrow-up';
|
|
1033
1027
|
|
|
1028
|
+
// SquareArrowUpRight aliases
|
|
1029
|
+
export {
|
|
1030
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1031
|
+
default as ArrowUpRightSquare
|
|
1032
|
+
} from '../icons/square-arrow-up-right';
|
|
1033
|
+
|
|
1034
1034
|
// SquareAsterisk aliases
|
|
1035
1035
|
export {
|
|
1036
1036
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
@@ -1151,18 +1151,18 @@ export {
|
|
|
1151
1151
|
default as DotSquare
|
|
1152
1152
|
} from '../icons/square-dot';
|
|
1153
1153
|
|
|
1154
|
-
// SquareFunction aliases
|
|
1155
|
-
export {
|
|
1156
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
1157
|
-
default as FunctionSquare
|
|
1158
|
-
} from '../icons/square-function';
|
|
1159
|
-
|
|
1160
1154
|
// SquareEqual aliases
|
|
1161
1155
|
export {
|
|
1162
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 */
|
|
1163
1157
|
default as EqualSquare
|
|
1164
1158
|
} from '../icons/square-equal';
|
|
1165
1159
|
|
|
1160
|
+
// SquareFunction aliases
|
|
1161
|
+
export {
|
|
1162
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
1163
|
+
default as FunctionSquare
|
|
1164
|
+
} from '../icons/square-function';
|
|
1165
|
+
|
|
1166
1166
|
// SquareKanban aliases
|
|
1167
1167
|
export {
|
|
1168
1168
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
@@ -1253,6 +1253,12 @@ export {
|
|
|
1253
1253
|
default as PlaySquare
|
|
1254
1254
|
} from '../icons/square-play';
|
|
1255
1255
|
|
|
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
|
+
|
|
1256
1262
|
// SquarePower aliases
|
|
1257
1263
|
export {
|
|
1258
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 */
|
|
@@ -1265,12 +1271,6 @@ export {
|
|
|
1265
1271
|
default as ScissorsSquare
|
|
1266
1272
|
} from '../icons/square-scissors';
|
|
1267
1273
|
|
|
1268
|
-
// SquarePlus aliases
|
|
1269
|
-
export {
|
|
1270
|
-
/** @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 */
|
|
1271
|
-
default as PlusSquare
|
|
1272
|
-
} from '../icons/square-plus';
|
|
1273
|
-
|
|
1274
1274
|
// SquareSigma aliases
|
|
1275
1275
|
export {
|
|
1276
1276
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
@@ -1307,36 +1307,42 @@ export {
|
|
|
1307
1307
|
default as UserSquare2
|
|
1308
1308
|
} from '../icons/square-user-round';
|
|
1309
1309
|
|
|
1310
|
-
// SquareUser aliases
|
|
1311
|
-
export {
|
|
1312
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
1313
|
-
default as UserSquare
|
|
1314
|
-
} from '../icons/square-user';
|
|
1315
|
-
|
|
1316
1310
|
// SquareX aliases
|
|
1317
1311
|
export {
|
|
1318
1312
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
1319
1313
|
default as XSquare
|
|
1320
1314
|
} from '../icons/square-x';
|
|
1321
1315
|
|
|
1322
|
-
// TextAlignCenter aliases
|
|
1323
|
-
export {
|
|
1324
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. This alias will be removed in v1.0 */
|
|
1325
|
-
default as AlignCenter
|
|
1326
|
-
} from '../icons/text-align-center';
|
|
1327
|
-
|
|
1328
1316
|
// TestTubeDiagonal aliases
|
|
1329
1317
|
export {
|
|
1330
1318
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
1331
1319
|
default as TestTube2
|
|
1332
1320
|
} from '../icons/test-tube-diagonal';
|
|
1333
1321
|
|
|
1322
|
+
// SquareUser aliases
|
|
1323
|
+
export {
|
|
1324
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
1325
|
+
default as UserSquare
|
|
1326
|
+
} from '../icons/square-user';
|
|
1327
|
+
|
|
1328
|
+
// TextAlignCenter aliases
|
|
1329
|
+
export {
|
|
1330
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. This alias will be removed in v1.0 */
|
|
1331
|
+
default as AlignCenter
|
|
1332
|
+
} from '../icons/text-align-center';
|
|
1333
|
+
|
|
1334
1334
|
// TextAlignEnd aliases
|
|
1335
1335
|
export {
|
|
1336
1336
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
1337
1337
|
default as AlignRight
|
|
1338
1338
|
} from '../icons/text-align-end';
|
|
1339
1339
|
|
|
1340
|
+
// TextAlignJustify aliases
|
|
1341
|
+
export {
|
|
1342
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|
|
1343
|
+
default as AlignJustify
|
|
1344
|
+
} from '../icons/text-align-justify';
|
|
1345
|
+
|
|
1340
1346
|
// TextAlignStart aliases
|
|
1341
1347
|
export {
|
|
1342
1348
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
|
|
@@ -1349,12 +1355,6 @@ export {
|
|
|
1349
1355
|
default as AlignLeft
|
|
1350
1356
|
} from '../icons/text-align-start';
|
|
1351
1357
|
|
|
1352
|
-
// TextAlignJustify aliases
|
|
1353
|
-
export {
|
|
1354
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|
|
1355
|
-
default as AlignJustify
|
|
1356
|
-
} from '../icons/text-align-justify';
|
|
1357
|
-
|
|
1358
1358
|
// TextInitial aliases
|
|
1359
1359
|
export {
|
|
1360
1360
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. This alias will be removed in v1.0 */
|
|
@@ -1391,18 +1391,18 @@ export {
|
|
|
1391
1391
|
default as Tv2
|
|
1392
1392
|
} from '../icons/tv-minimal';
|
|
1393
1393
|
|
|
1394
|
-
// University aliases
|
|
1395
|
-
export {
|
|
1396
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
1397
|
-
default as School2
|
|
1398
|
-
} from '../icons/university';
|
|
1399
|
-
|
|
1400
1394
|
// UserRoundCheck aliases
|
|
1401
1395
|
export {
|
|
1402
1396
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
1403
1397
|
default as UserCheck2
|
|
1404
1398
|
} from '../icons/user-round-check';
|
|
1405
1399
|
|
|
1400
|
+
// University aliases
|
|
1401
|
+
export {
|
|
1402
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
1403
|
+
default as School2
|
|
1404
|
+
} from '../icons/university';
|
|
1405
|
+
|
|
1406
1406
|
// UserRoundCog aliases
|
|
1407
1407
|
export {
|
|
1408
1408
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
@@ -1457,6 +1457,12 @@ export {
|
|
|
1457
1457
|
default as Wallet2
|
|
1458
1458
|
} from '../icons/wallet-minimal';
|
|
1459
1459
|
|
|
1460
|
+
// WavesHorizontal aliases
|
|
1461
|
+
export {
|
|
1462
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WavesHorizontal} instead. This alias will be removed in v1.0 */
|
|
1463
|
+
default as Waves
|
|
1464
|
+
} from '../icons/waves-horizontal';
|
|
1465
|
+
|
|
1460
1466
|
// WandSparkles aliases
|
|
1461
1467
|
export {
|
|
1462
1468
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. This alias will be removed in v1.0 */
|