@lucide/astro 1.8.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 +130 -130
- package/src/aliases/prefixed.ts +795 -789
- package/src/aliases/suffixed.ts +1187 -1181
- package/src/icons/heart-x.ts +18 -0
- package/src/icons/index.ts +228 -225
- package/src/icons/layers-minus.ts +18 -0
- package/src/icons/rotate-3d.ts +2 -2
- package/src/icons/timeline.ts +18 -0
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
|
@@ -47,12 +47,6 @@ export {
|
|
|
47
47
|
default as SortAsc
|
|
48
48
|
} from '../icons/arrow-up-narrow-wide';
|
|
49
49
|
|
|
50
|
-
// BadgeCheck aliases
|
|
51
|
-
export {
|
|
52
|
-
/** @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 */
|
|
53
|
-
default as Verified
|
|
54
|
-
} from '../icons/badge-check';
|
|
55
|
-
|
|
56
50
|
// ArrowUpZA aliases
|
|
57
51
|
export {
|
|
58
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 */
|
|
@@ -71,6 +65,12 @@ export {
|
|
|
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,6 +173,12 @@ 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
|
+
|
|
176
182
|
// ChartScatter aliases
|
|
177
183
|
export {
|
|
178
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,12 +191,6 @@ export {
|
|
|
185
191
|
default as ArrowDownCircle
|
|
186
192
|
} from '../icons/circle-arrow-down';
|
|
187
193
|
|
|
188
|
-
// CircleAlert aliases
|
|
189
|
-
export {
|
|
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 */
|
|
191
|
-
default as AlertCircle
|
|
192
|
-
} from '../icons/circle-alert';
|
|
193
|
-
|
|
194
194
|
// CircleArrowLeft aliases
|
|
195
195
|
export {
|
|
196
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,18 +203,18 @@ export {
|
|
|
203
203
|
default as ArrowDownLeftFromCircle
|
|
204
204
|
} from '../icons/circle-arrow-out-down-left';
|
|
205
205
|
|
|
206
|
-
// CircleArrowOutDownRight aliases
|
|
207
|
-
export {
|
|
208
|
-
/** @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 */
|
|
209
|
-
default as ArrowDownRightFromCircle
|
|
210
|
-
} from '../icons/circle-arrow-out-down-right';
|
|
211
|
-
|
|
212
206
|
// CircleArrowOutUpLeft aliases
|
|
213
207
|
export {
|
|
214
208
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
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 */
|
|
@@ -245,6 +245,12 @@ export {
|
|
|
245
245
|
default as CheckCircle2
|
|
246
246
|
} from '../icons/circle-check';
|
|
247
247
|
|
|
248
|
+
// CircleChevronDown aliases
|
|
249
|
+
export {
|
|
250
|
+
/** @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
|
+
default as ChevronDownCircle
|
|
252
|
+
} from '../icons/circle-chevron-down';
|
|
253
|
+
|
|
248
254
|
// CircleChevronLeft aliases
|
|
249
255
|
export {
|
|
250
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 */
|
|
@@ -275,29 +281,17 @@ export {
|
|
|
275
281
|
default as GaugeCircle
|
|
276
282
|
} from '../icons/circle-gauge';
|
|
277
283
|
|
|
278
|
-
// CircleMinus aliases
|
|
279
|
-
export {
|
|
280
|
-
/** @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 */
|
|
281
|
-
default as MinusCircle
|
|
282
|
-
} from '../icons/circle-minus';
|
|
283
|
-
|
|
284
|
-
// CircleChevronDown aliases
|
|
285
|
-
export {
|
|
286
|
-
/** @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 */
|
|
287
|
-
default as ChevronDownCircle
|
|
288
|
-
} from '../icons/circle-chevron-down';
|
|
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
|
|
|
296
|
-
//
|
|
290
|
+
// CircleMinus aliases
|
|
297
291
|
export {
|
|
298
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
299
|
-
default as
|
|
300
|
-
} from '../icons/circle-
|
|
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';
|
|
301
295
|
|
|
302
296
|
// CircleParking aliases
|
|
303
297
|
export {
|
|
@@ -305,6 +299,12 @@ export {
|
|
|
305
299
|
default as ParkingCircle
|
|
306
300
|
} from '../icons/circle-parking';
|
|
307
301
|
|
|
302
|
+
// CirclePause aliases
|
|
303
|
+
export {
|
|
304
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePause} instead. This alias will be removed in v1.0 */
|
|
305
|
+
default as PauseCircle
|
|
306
|
+
} from '../icons/circle-pause';
|
|
307
|
+
|
|
308
308
|
// CirclePercent aliases
|
|
309
309
|
export {
|
|
310
310
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
@@ -329,18 +329,6 @@ export {
|
|
|
329
329
|
default as PowerCircle
|
|
330
330
|
} from '../icons/circle-power';
|
|
331
331
|
|
|
332
|
-
// CircleSlash2 aliases
|
|
333
|
-
export {
|
|
334
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
335
|
-
default as CircleSlashed
|
|
336
|
-
} from '../icons/circle-slash-2';
|
|
337
|
-
|
|
338
|
-
// CircleStop aliases
|
|
339
|
-
export {
|
|
340
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
341
|
-
default as StopCircle
|
|
342
|
-
} from '../icons/circle-stop';
|
|
343
|
-
|
|
344
332
|
// CircleQuestionMark aliases
|
|
345
333
|
export {
|
|
346
334
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
@@ -353,6 +341,18 @@ export {
|
|
|
353
341
|
default as CircleHelp
|
|
354
342
|
} from '../icons/circle-question-mark';
|
|
355
343
|
|
|
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. This alias will be removed in v1.0 */
|
|
347
|
+
default as CircleSlashed
|
|
348
|
+
} from '../icons/circle-slash-2';
|
|
349
|
+
|
|
350
|
+
// CircleStop aliases
|
|
351
|
+
export {
|
|
352
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
353
|
+
default as StopCircle
|
|
354
|
+
} from '../icons/circle-stop';
|
|
355
|
+
|
|
356
356
|
// CircleUserRound aliases
|
|
357
357
|
export {
|
|
358
358
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} 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 */
|
|
@@ -551,18 +551,18 @@ export {
|
|
|
551
551
|
default as FileLock2
|
|
552
552
|
} from '../icons/file-lock';
|
|
553
553
|
|
|
554
|
-
// FilePenLine aliases
|
|
555
|
-
export {
|
|
556
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
557
|
-
default as FileSignature
|
|
558
|
-
} from '../icons/file-pen-line';
|
|
559
|
-
|
|
560
554
|
// FileMinusCorner aliases
|
|
561
555
|
export {
|
|
562
556
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
563
557
|
default as FileMinus2
|
|
564
558
|
} from '../icons/file-minus-corner';
|
|
565
559
|
|
|
560
|
+
// FilePenLine aliases
|
|
561
|
+
export {
|
|
562
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
563
|
+
default as FileSignature
|
|
564
|
+
} from '../icons/file-pen-line';
|
|
565
|
+
|
|
566
566
|
// FilePen aliases
|
|
567
567
|
export {
|
|
568
568
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
@@ -695,18 +695,18 @@ export {
|
|
|
695
695
|
default as Grab
|
|
696
696
|
} from '../icons/hand-grab';
|
|
697
697
|
|
|
698
|
-
// House aliases
|
|
699
|
-
export {
|
|
700
|
-
/** @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 */
|
|
701
|
-
default as Home
|
|
702
|
-
} from '../icons/house';
|
|
703
|
-
|
|
704
698
|
// HandHelping aliases
|
|
705
699
|
export {
|
|
706
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 */
|
|
707
701
|
default as HelpingHand
|
|
708
702
|
} from '../icons/hand-helping';
|
|
709
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
710
|
// IceCreamBowl aliases
|
|
711
711
|
export {
|
|
712
712
|
/** @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 */
|
|
@@ -773,18 +773,18 @@ export {
|
|
|
773
773
|
default as Unlock
|
|
774
774
|
} from '../icons/lock-open';
|
|
775
775
|
|
|
776
|
-
// MapPinPen aliases
|
|
777
|
-
export {
|
|
778
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. This alias will be removed in v1.0 */
|
|
779
|
-
default as LocationEdit
|
|
780
|
-
} from '../icons/map-pin-pen';
|
|
781
|
-
|
|
782
776
|
// MailQuestionMark aliases
|
|
783
777
|
export {
|
|
784
778
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. This alias will be removed in v1.0 */
|
|
785
779
|
default as MailQuestion
|
|
786
780
|
} from '../icons/mail-question-mark';
|
|
787
781
|
|
|
782
|
+
// MapPinPen aliases
|
|
783
|
+
export {
|
|
784
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. This alias will be removed in v1.0 */
|
|
785
|
+
default as LocationEdit
|
|
786
|
+
} from '../icons/map-pin-pen';
|
|
787
|
+
|
|
788
788
|
// MessageCircleQuestionMark aliases
|
|
789
789
|
export {
|
|
790
790
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} 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,6 +1073,12 @@ export {
|
|
|
1073
1073
|
default as CheckSquare
|
|
1074
1074
|
} from '../icons/square-check-big';
|
|
1075
1075
|
|
|
1076
|
+
// SquareChevronDown aliases
|
|
1077
|
+
export {
|
|
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 */
|
|
1079
|
+
default as ChevronDownSquare
|
|
1080
|
+
} from '../icons/square-chevron-down';
|
|
1081
|
+
|
|
1076
1082
|
// SquareCheck aliases
|
|
1077
1083
|
export {
|
|
1078
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,12 +1091,6 @@ export {
|
|
|
1085
1091
|
default as ChevronLeftSquare
|
|
1086
1092
|
} from '../icons/square-chevron-left';
|
|
1087
1093
|
|
|
1088
|
-
// SquareChevronDown aliases
|
|
1089
|
-
export {
|
|
1090
|
-
/** @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 */
|
|
1091
|
-
default as ChevronDownSquare
|
|
1092
|
-
} from '../icons/square-chevron-down';
|
|
1093
|
-
|
|
1094
1094
|
// SquareChevronRight aliases
|
|
1095
1095
|
export {
|
|
1096
1096
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} 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 */
|
|
@@ -1175,18 +1175,18 @@ export {
|
|
|
1175
1175
|
default as LibrarySquare
|
|
1176
1176
|
} from '../icons/square-library';
|
|
1177
1177
|
|
|
1178
|
-
// SquareMenu aliases
|
|
1179
|
-
export {
|
|
1180
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1181
|
-
default as MenuSquare
|
|
1182
|
-
} from '../icons/square-menu';
|
|
1183
|
-
|
|
1184
1178
|
// SquareM aliases
|
|
1185
1179
|
export {
|
|
1186
1180
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
1187
1181
|
default as MSquare
|
|
1188
1182
|
} from '../icons/square-m';
|
|
1189
1183
|
|
|
1184
|
+
// SquareMenu aliases
|
|
1185
|
+
export {
|
|
1186
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1187
|
+
default as MenuSquare
|
|
1188
|
+
} from '../icons/square-menu';
|
|
1189
|
+
|
|
1190
1190
|
// SquareMinus aliases
|
|
1191
1191
|
export {
|
|
1192
1192
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
@@ -1211,12 +1211,6 @@ export {
|
|
|
1211
1211
|
default as ParkingSquare
|
|
1212
1212
|
} from '../icons/square-parking';
|
|
1213
1213
|
|
|
1214
|
-
// SquarePercent aliases
|
|
1215
|
-
export {
|
|
1216
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1217
|
-
default as PercentSquare
|
|
1218
|
-
} from '../icons/square-percent';
|
|
1219
|
-
|
|
1220
1214
|
// SquarePen aliases
|
|
1221
1215
|
export {
|
|
1222
1216
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
@@ -1235,12 +1229,24 @@ export {
|
|
|
1235
1229
|
default as PenSquare
|
|
1236
1230
|
} from '../icons/square-pen';
|
|
1237
1231
|
|
|
1232
|
+
// SquarePercent aliases
|
|
1233
|
+
export {
|
|
1234
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1235
|
+
default as PercentSquare
|
|
1236
|
+
} from '../icons/square-percent';
|
|
1237
|
+
|
|
1238
1238
|
// SquarePi aliases
|
|
1239
1239
|
export {
|
|
1240
1240
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
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 */
|
|
@@ -1421,12 +1421,6 @@ export {
|
|
|
1421
1421
|
default as UserPlus2
|
|
1422
1422
|
} from '../icons/user-round-plus';
|
|
1423
1423
|
|
|
1424
|
-
// UserRound aliases
|
|
1425
|
-
export {
|
|
1426
|
-
/** @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 */
|
|
1427
|
-
default as User2
|
|
1428
|
-
} from '../icons/user-round';
|
|
1429
|
-
|
|
1430
1424
|
// UserRoundX aliases
|
|
1431
1425
|
export {
|
|
1432
1426
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
@@ -1439,6 +1433,12 @@ export {
|
|
|
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 */
|