@lucide/astro 0.539.0 → 0.540.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/LICENSE +25 -1
- package/package.json +1 -1
- package/src/aliases/aliases.ts +48 -48
- package/src/aliases/prefixed.ts +473 -471
- package/src/aliases/suffixed.ts +723 -721
- package/src/icons/camera-off.ts +2 -2
- package/src/icons/camera.ts +2 -2
- package/src/icons/index.ts +99 -98
- package/src/icons/rose.ts +18 -0
- package/src/icons/umbrella-off.ts +2 -2
- package/src/icons/umbrella.ts +2 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
ISC License
|
|
2
2
|
|
|
3
|
-
Copyright (c) for portions of Lucide are held by Cole Bemis 2013-
|
|
3
|
+
Copyright (c) for portions of Lucide are held by Cole Bemis 2013-2023 as part of Feather (MIT). All other copyright (c) for Lucide are held by Lucide Contributors 2025.
|
|
4
4
|
|
|
5
5
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
6
|
purpose with or without fee is hereby granted, provided that the above
|
|
@@ -13,3 +13,27 @@ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
13
13
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
14
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
15
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
The MIT License (MIT) (for portions derived from Feather)
|
|
20
|
+
|
|
21
|
+
Copyright (c) 2013-2023 Cole Bemis
|
|
22
|
+
|
|
23
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
25
|
+
in the Software without restriction, including without limitation the rights
|
|
26
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
27
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
28
|
+
furnished to do so, subject to the following conditions:
|
|
29
|
+
|
|
30
|
+
The above copyright notice and this permission notice shall be included in all
|
|
31
|
+
copies or substantial portions of the Software.
|
|
32
|
+
|
|
33
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
34
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
35
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
36
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
37
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
38
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
39
|
+
SOFTWARE.
|
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -137,18 +137,18 @@ export {
|
|
|
137
137
|
default as BarChart4
|
|
138
138
|
} from '../icons/chart-column-increasing';
|
|
139
139
|
|
|
140
|
-
// ChartColumn aliases
|
|
141
|
-
export {
|
|
142
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
143
|
-
default as BarChart3
|
|
144
|
-
} from '../icons/chart-column';
|
|
145
|
-
|
|
146
140
|
// ChartLine aliases
|
|
147
141
|
export {
|
|
148
142
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. This alias will be removed in v1.0 */
|
|
149
143
|
default as LineChart
|
|
150
144
|
} from '../icons/chart-line';
|
|
151
145
|
|
|
146
|
+
// ChartColumn aliases
|
|
147
|
+
export {
|
|
148
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
149
|
+
default as BarChart3
|
|
150
|
+
} from '../icons/chart-column';
|
|
151
|
+
|
|
152
152
|
// ChartNoAxesColumnIncreasing aliases
|
|
153
153
|
export {
|
|
154
154
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
@@ -635,18 +635,18 @@ export {
|
|
|
635
635
|
default as Laptop2
|
|
636
636
|
} from '../icons/laptop-minimal';
|
|
637
637
|
|
|
638
|
-
// Layers aliases
|
|
639
|
-
export {
|
|
640
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
641
|
-
default as Layers3
|
|
642
|
-
} from '../icons/layers';
|
|
643
|
-
|
|
644
638
|
// LoaderCircle aliases
|
|
645
639
|
export {
|
|
646
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
647
641
|
default as Loader2
|
|
648
642
|
} from '../icons/loader-circle';
|
|
649
643
|
|
|
644
|
+
// Layers aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
647
|
+
default as Layers3
|
|
648
|
+
} from '../icons/layers';
|
|
649
|
+
|
|
650
650
|
// LockKeyholeOpen aliases
|
|
651
651
|
export {
|
|
652
652
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -803,18 +803,18 @@ export {
|
|
|
803
803
|
default as PanelsTopBottom
|
|
804
804
|
} from '../icons/rows-3';
|
|
805
805
|
|
|
806
|
-
// SendHorizontal aliases
|
|
807
|
-
export {
|
|
808
|
-
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
809
|
-
default as SendHorizonal
|
|
810
|
-
} from '../icons/send-horizontal';
|
|
811
|
-
|
|
812
806
|
// Scale3d aliases
|
|
813
807
|
export {
|
|
814
808
|
/** @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 */
|
|
815
809
|
default as Scale3D
|
|
816
810
|
} from '../icons/scale-3d';
|
|
817
811
|
|
|
812
|
+
// SendHorizontal aliases
|
|
813
|
+
export {
|
|
814
|
+
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
815
|
+
default as SendHorizonal
|
|
816
|
+
} from '../icons/send-horizontal';
|
|
817
|
+
|
|
818
818
|
// ShieldQuestionMark aliases
|
|
819
819
|
export {
|
|
820
820
|
/** @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 */
|
|
@@ -827,18 +827,18 @@ export {
|
|
|
827
827
|
default as ShieldClose
|
|
828
828
|
} from '../icons/shield-x';
|
|
829
829
|
|
|
830
|
-
// SlidersVertical aliases
|
|
831
|
-
export {
|
|
832
|
-
/** @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 */
|
|
833
|
-
default as Sliders
|
|
834
|
-
} from '../icons/sliders-vertical';
|
|
835
|
-
|
|
836
830
|
// Sparkles aliases
|
|
837
831
|
export {
|
|
838
832
|
/** @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 */
|
|
839
833
|
default as Stars
|
|
840
834
|
} from '../icons/sparkles';
|
|
841
835
|
|
|
836
|
+
// SlidersVertical aliases
|
|
837
|
+
export {
|
|
838
|
+
/** @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 */
|
|
839
|
+
default as Sliders
|
|
840
|
+
} from '../icons/sliders-vertical';
|
|
841
|
+
|
|
842
842
|
// SquareActivity aliases
|
|
843
843
|
export {
|
|
844
844
|
/** @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 */
|
|
@@ -1121,36 +1121,36 @@ export {
|
|
|
1121
1121
|
default as PlusSquare
|
|
1122
1122
|
} from '../icons/square-plus';
|
|
1123
1123
|
|
|
1124
|
-
// SquarePower aliases
|
|
1125
|
-
export {
|
|
1126
|
-
/** @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 */
|
|
1127
|
-
default as PowerSquare
|
|
1128
|
-
} from '../icons/square-power';
|
|
1129
|
-
|
|
1130
1124
|
// SquareScissors aliases
|
|
1131
1125
|
export {
|
|
1132
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
1133
1127
|
default as ScissorsSquare
|
|
1134
1128
|
} from '../icons/square-scissors';
|
|
1135
1129
|
|
|
1130
|
+
// SquarePower aliases
|
|
1131
|
+
export {
|
|
1132
|
+
/** @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 */
|
|
1133
|
+
default as PowerSquare
|
|
1134
|
+
} from '../icons/square-power';
|
|
1135
|
+
|
|
1136
1136
|
// SquareSigma aliases
|
|
1137
1137
|
export {
|
|
1138
1138
|
/** @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 */
|
|
1139
1139
|
default as SigmaSquare
|
|
1140
1140
|
} from '../icons/square-sigma';
|
|
1141
1141
|
|
|
1142
|
-
// SquareSplitHorizontal aliases
|
|
1143
|
-
export {
|
|
1144
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1145
|
-
default as SplitSquareHorizontal
|
|
1146
|
-
} from '../icons/square-split-horizontal';
|
|
1147
|
-
|
|
1148
1142
|
// SquareSlash aliases
|
|
1149
1143
|
export {
|
|
1150
1144
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
1151
1145
|
default as SlashSquare
|
|
1152
1146
|
} from '../icons/square-slash';
|
|
1153
1147
|
|
|
1148
|
+
// SquareSplitHorizontal aliases
|
|
1149
|
+
export {
|
|
1150
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1151
|
+
default as SplitSquareHorizontal
|
|
1152
|
+
} from '../icons/square-split-horizontal';
|
|
1153
|
+
|
|
1154
1154
|
// SquareSplitVertical aliases
|
|
1155
1155
|
export {
|
|
1156
1156
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -1175,18 +1175,18 @@ export {
|
|
|
1175
1175
|
default as UserSquare
|
|
1176
1176
|
} from '../icons/square-user';
|
|
1177
1177
|
|
|
1178
|
-
// SquareX aliases
|
|
1179
|
-
export {
|
|
1180
|
-
/** @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 */
|
|
1181
|
-
default as XSquare
|
|
1182
|
-
} from '../icons/square-x';
|
|
1183
|
-
|
|
1184
1178
|
// TestTubeDiagonal aliases
|
|
1185
1179
|
export {
|
|
1186
1180
|
/** @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 */
|
|
1187
1181
|
default as TestTube2
|
|
1188
1182
|
} from '../icons/test-tube-diagonal';
|
|
1189
1183
|
|
|
1184
|
+
// SquareX aliases
|
|
1185
|
+
export {
|
|
1186
|
+
/** @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 */
|
|
1187
|
+
default as XSquare
|
|
1188
|
+
} from '../icons/square-x';
|
|
1189
|
+
|
|
1190
1190
|
// TextSelect aliases
|
|
1191
1191
|
export {
|
|
1192
1192
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
@@ -1199,18 +1199,18 @@ export {
|
|
|
1199
1199
|
default as Train
|
|
1200
1200
|
} from '../icons/tram-front';
|
|
1201
1201
|
|
|
1202
|
-
// TriangleAlert aliases
|
|
1203
|
-
export {
|
|
1204
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
1205
|
-
default as AlertTriangle
|
|
1206
|
-
} from '../icons/triangle-alert';
|
|
1207
|
-
|
|
1208
1202
|
// TreePalm aliases
|
|
1209
1203
|
export {
|
|
1210
1204
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. This alias will be removed in v1.0 */
|
|
1211
1205
|
default as Palmtree
|
|
1212
1206
|
} from '../icons/tree-palm';
|
|
1213
1207
|
|
|
1208
|
+
// TriangleAlert aliases
|
|
1209
|
+
export {
|
|
1210
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
1211
|
+
default as AlertTriangle
|
|
1212
|
+
} from '../icons/triangle-alert';
|
|
1213
|
+
|
|
1214
1214
|
// TvMinimal aliases
|
|
1215
1215
|
export {
|
|
1216
1216
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|