@lucide/astro 0.576.0 → 1.0.0-rc.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 +7 -3
- package/README.md +2 -2
- package/package.json +1 -2
- package/src/aliases/aliases.ts +118 -124
- package/src/aliases/prefixed.ts +648 -686
- package/src/aliases/suffixed.ts +936 -974
- package/src/icons/circle-pile.ts +1 -1
- package/src/icons/{twitch.ts → ellipse.ts} +5 -5
- package/src/icons/gamepad-directional.ts +1 -1
- package/src/icons/gpu.ts +2 -2
- package/src/icons/index.ts +71 -88
- package/src/icons/school.ts +2 -2
- package/src/icons/chromium.ts +0 -18
- package/src/icons/codepen.ts +0 -18
- package/src/icons/codesandbox.ts +0 -18
- package/src/icons/dribbble.ts +0 -18
- package/src/icons/facebook.ts +0 -18
- package/src/icons/figma.ts +0 -18
- package/src/icons/framer.ts +0 -18
- package/src/icons/github.ts +0 -18
- package/src/icons/gitlab.ts +0 -18
- package/src/icons/instagram.ts +0 -18
- package/src/icons/linkedin.ts +0 -18
- package/src/icons/pocket.ts +0 -18
- package/src/icons/rail-symbol.ts +0 -18
- package/src/icons/slack.ts +0 -18
- package/src/icons/trello.ts +0 -18
- package/src/icons/twitter.ts +0 -18
- package/src/icons/youtube.ts +0 -18
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
ISC License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 Lucide Icons and Contributors
|
|
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
|
|
@@ -16,9 +16,13 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
The
|
|
19
|
+
The following Lucide icons are derived from the Feather project:
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
airplay, alert-circle, alert-octagon, alert-triangle, aperture, arrow-down-circle, arrow-down-left, arrow-down-right, arrow-down, arrow-left-circle, arrow-left, arrow-right-circle, arrow-right, arrow-up-circle, arrow-up-left, arrow-up-right, arrow-up, at-sign, calendar, cast, check, chevron-down, chevron-left, chevron-right, chevron-up, chevrons-down, chevrons-left, chevrons-right, chevrons-up, circle, clipboard, clock, code, columns, command, compass, corner-down-left, corner-down-right, corner-left-down, corner-left-up, corner-right-down, corner-right-up, corner-up-left, corner-up-right, crosshair, database, divide-circle, divide-square, dollar-sign, download, external-link, feather, frown, hash, headphones, help-circle, info, italic, key, layout, life-buoy, link-2, link, loader, lock, log-in, log-out, maximize, meh, minimize, minimize-2, minus-circle, minus-square, minus, monitor, moon, more-horizontal, more-vertical, move, music, navigation-2, navigation, octagon, pause-circle, percent, plus-circle, plus-square, plus, power, radio, rss, search, server, share, shopping-bag, sidebar, smartphone, smile, square, table-2, tablet, target, terminal, trash-2, trash, triangle, tv, type, upload, x-circle, x-octagon, x-square, x, zoom-in, zoom-out
|
|
22
|
+
|
|
23
|
+
The MIT License (MIT) (for the icons listed above)
|
|
24
|
+
|
|
25
|
+
Copyright (c) 2013-present Cole Bemis
|
|
22
26
|
|
|
23
27
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24
28
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -21,14 +21,14 @@ Lucide icon library for Astro sites and applications.
|
|
|
21
21
|
·
|
|
22
22
|
<a href="https://lucide.dev/icons/">Icons</a>
|
|
23
23
|
·
|
|
24
|
-
<a href="https://lucide.dev/guide/
|
|
24
|
+
<a href="https://lucide.dev/guide/astro">Documentation</a>
|
|
25
25
|
·
|
|
26
26
|
<a href="https://lucide.dev/license">License</a>
|
|
27
27
|
</p>
|
|
28
28
|
|
|
29
29
|
# Lucide Astro
|
|
30
30
|
|
|
31
|
-
Implementation of the
|
|
31
|
+
Implementation of the Lucide icon library for Astro applications.
|
|
32
32
|
|
|
33
33
|
## Installation
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-rc.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -47,7 +47,6 @@
|
|
|
47
47
|
"prettier": "^3.4.2",
|
|
48
48
|
"typescript": "^5.8.3",
|
|
49
49
|
"vite": "^6.3.6",
|
|
50
|
-
"vitest": "^4.0.12",
|
|
51
50
|
"astro": "^5.16.0",
|
|
52
51
|
"@lucide/build-icons": "1.1.0"
|
|
53
52
|
},
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -17,18 +17,18 @@ export {
|
|
|
17
17
|
default as AlarmPlus
|
|
18
18
|
} from '../icons/alarm-clock-plus';
|
|
19
19
|
|
|
20
|
-
// ArrowDownWideNarrow aliases
|
|
21
|
-
export {
|
|
22
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
23
|
-
default as SortDesc
|
|
24
|
-
} from '../icons/arrow-down-wide-narrow';
|
|
25
|
-
|
|
26
20
|
// ArrowDownAZ aliases
|
|
27
21
|
export {
|
|
28
22
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
29
23
|
default as ArrowDownAz
|
|
30
24
|
} from '../icons/arrow-down-a-z';
|
|
31
25
|
|
|
26
|
+
// ArrowDownWideNarrow aliases
|
|
27
|
+
export {
|
|
28
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
29
|
+
default as SortDesc
|
|
30
|
+
} from '../icons/arrow-down-wide-narrow';
|
|
31
|
+
|
|
32
32
|
// ArrowDownZA aliases
|
|
33
33
|
export {
|
|
34
34
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. This alias will be removed in v1.0 */
|
|
@@ -179,12 +179,6 @@ export {
|
|
|
179
179
|
default as ScatterChart
|
|
180
180
|
} from '../icons/chart-scatter';
|
|
181
181
|
|
|
182
|
-
// Chromium aliases
|
|
183
|
-
export {
|
|
184
|
-
/** @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
|
-
default as Chrome
|
|
186
|
-
} from '../icons/chromium';
|
|
187
|
-
|
|
188
182
|
// CircleAlert aliases
|
|
189
183
|
export {
|
|
190
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 */
|
|
@@ -251,18 +245,18 @@ export {
|
|
|
251
245
|
default as CheckCircle2
|
|
252
246
|
} from '../icons/circle-check';
|
|
253
247
|
|
|
254
|
-
// CircleChevronLeft aliases
|
|
255
|
-
export {
|
|
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 */
|
|
257
|
-
default as ChevronLeftCircle
|
|
258
|
-
} from '../icons/circle-chevron-left';
|
|
259
|
-
|
|
260
248
|
// CircleChevronDown aliases
|
|
261
249
|
export {
|
|
262
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 */
|
|
263
251
|
default as ChevronDownCircle
|
|
264
252
|
} from '../icons/circle-chevron-down';
|
|
265
253
|
|
|
254
|
+
// CircleChevronLeft aliases
|
|
255
|
+
export {
|
|
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 */
|
|
257
|
+
default as ChevronLeftCircle
|
|
258
|
+
} from '../icons/circle-chevron-left';
|
|
259
|
+
|
|
266
260
|
// CircleChevronRight aliases
|
|
267
261
|
export {
|
|
268
262
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
@@ -281,18 +275,18 @@ export {
|
|
|
281
275
|
default as DivideCircle
|
|
282
276
|
} from '../icons/circle-divide';
|
|
283
277
|
|
|
284
|
-
// CircleGauge aliases
|
|
285
|
-
export {
|
|
286
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
287
|
-
default as GaugeCircle
|
|
288
|
-
} from '../icons/circle-gauge';
|
|
289
|
-
|
|
290
278
|
// CircleMinus aliases
|
|
291
279
|
export {
|
|
292
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 */
|
|
293
281
|
default as MinusCircle
|
|
294
282
|
} from '../icons/circle-minus';
|
|
295
283
|
|
|
284
|
+
// CircleGauge aliases
|
|
285
|
+
export {
|
|
286
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
287
|
+
default as GaugeCircle
|
|
288
|
+
} from '../icons/circle-gauge';
|
|
289
|
+
|
|
296
290
|
// CircleParkingOff aliases
|
|
297
291
|
export {
|
|
298
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 */
|
|
@@ -359,18 +353,18 @@ export {
|
|
|
359
353
|
default as StopCircle
|
|
360
354
|
} from '../icons/circle-stop';
|
|
361
355
|
|
|
362
|
-
// CircleUser aliases
|
|
363
|
-
export {
|
|
364
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
365
|
-
default as UserCircle
|
|
366
|
-
} from '../icons/circle-user';
|
|
367
|
-
|
|
368
356
|
// CircleUserRound aliases
|
|
369
357
|
export {
|
|
370
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 */
|
|
371
359
|
default as UserCircle2
|
|
372
360
|
} from '../icons/circle-user-round';
|
|
373
361
|
|
|
362
|
+
// CircleUser aliases
|
|
363
|
+
export {
|
|
364
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
365
|
+
default as UserCircle
|
|
366
|
+
} from '../icons/circle-user';
|
|
367
|
+
|
|
374
368
|
// CircleX aliases
|
|
375
369
|
export {
|
|
376
370
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
@@ -425,18 +419,18 @@ export {
|
|
|
425
419
|
default as TableConfig
|
|
426
420
|
} from '../icons/columns-3-cog';
|
|
427
421
|
|
|
428
|
-
// Columns3 aliases
|
|
429
|
-
export {
|
|
430
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
431
|
-
default as PanelsLeftRight
|
|
432
|
-
} from '../icons/columns-3';
|
|
433
|
-
|
|
434
422
|
// ContactRound aliases
|
|
435
423
|
export {
|
|
436
424
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
437
425
|
default as Contact2
|
|
438
426
|
} from '../icons/contact-round';
|
|
439
427
|
|
|
428
|
+
// Columns3 aliases
|
|
429
|
+
export {
|
|
430
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
431
|
+
default as PanelsLeftRight
|
|
432
|
+
} from '../icons/columns-3';
|
|
433
|
+
|
|
440
434
|
// DiamondPercent aliases
|
|
441
435
|
export {
|
|
442
436
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
@@ -521,18 +515,18 @@ export {
|
|
|
521
515
|
default as FileCode2
|
|
522
516
|
} from '../icons/file-code-corner';
|
|
523
517
|
|
|
524
|
-
// FileCog aliases
|
|
525
|
-
export {
|
|
526
|
-
/** @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 */
|
|
527
|
-
default as FileCog2
|
|
528
|
-
} from '../icons/file-cog';
|
|
529
|
-
|
|
530
518
|
// FileExclamationPoint aliases
|
|
531
519
|
export {
|
|
532
520
|
/** @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
521
|
default as FileWarning
|
|
534
522
|
} from '../icons/file-exclamation-point';
|
|
535
523
|
|
|
524
|
+
// FileCog aliases
|
|
525
|
+
export {
|
|
526
|
+
/** @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 */
|
|
527
|
+
default as FileCog2
|
|
528
|
+
} from '../icons/file-cog';
|
|
529
|
+
|
|
536
530
|
// FileHeadphone aliases
|
|
537
531
|
export {
|
|
538
532
|
/** @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 */
|
|
@@ -599,18 +593,18 @@ export {
|
|
|
599
593
|
default as FileSearch2
|
|
600
594
|
} from '../icons/file-search-corner';
|
|
601
595
|
|
|
602
|
-
// FileTypeCorner aliases
|
|
603
|
-
export {
|
|
604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
605
|
-
default as FileType2
|
|
606
|
-
} from '../icons/file-type-corner';
|
|
607
|
-
|
|
608
596
|
// FileSignal aliases
|
|
609
597
|
export {
|
|
610
598
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. This alias will be removed in v1.0 */
|
|
611
599
|
default as FileVolume2
|
|
612
600
|
} from '../icons/file-signal';
|
|
613
601
|
|
|
602
|
+
// FileTypeCorner aliases
|
|
603
|
+
export {
|
|
604
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
605
|
+
default as FileType2
|
|
606
|
+
} from '../icons/file-type-corner';
|
|
607
|
+
|
|
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 */
|
|
@@ -623,18 +617,18 @@ export {
|
|
|
623
617
|
default as FileX2
|
|
624
618
|
} from '../icons/file-x-corner';
|
|
625
619
|
|
|
626
|
-
// FolderCog aliases
|
|
627
|
-
export {
|
|
628
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
|
|
629
|
-
default as FolderCog2
|
|
630
|
-
} from '../icons/folder-cog';
|
|
631
|
-
|
|
632
620
|
// FingerprintPattern aliases
|
|
633
621
|
export {
|
|
634
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 */
|
|
635
623
|
default as Fingerprint
|
|
636
624
|
} from '../icons/fingerprint-pattern';
|
|
637
625
|
|
|
626
|
+
// FolderCog aliases
|
|
627
|
+
export {
|
|
628
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
|
|
629
|
+
default as FolderCog2
|
|
630
|
+
} from '../icons/folder-cog';
|
|
631
|
+
|
|
638
632
|
// FolderPen aliases
|
|
639
633
|
export {
|
|
640
634
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. This alias will be removed in v1.0 */
|
|
@@ -683,12 +677,6 @@ export {
|
|
|
683
677
|
default as Grid2X2
|
|
684
678
|
} from '../icons/grid-2x2';
|
|
685
679
|
|
|
686
|
-
// HandGrab aliases
|
|
687
|
-
export {
|
|
688
|
-
/** @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 */
|
|
689
|
-
default as Grab
|
|
690
|
-
} from '../icons/hand-grab';
|
|
691
|
-
|
|
692
680
|
// Grid3x3 aliases
|
|
693
681
|
export {
|
|
694
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 */
|
|
@@ -701,6 +689,12 @@ export {
|
|
|
701
689
|
default as Grid3X3
|
|
702
690
|
} from '../icons/grid-3x3';
|
|
703
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
|
+
|
|
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 */
|
|
@@ -863,18 +857,18 @@ export {
|
|
|
863
857
|
default as Sidebar
|
|
864
858
|
} from '../icons/panel-left';
|
|
865
859
|
|
|
866
|
-
// PanelTopDashed aliases
|
|
867
|
-
export {
|
|
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 */
|
|
869
|
-
default as PanelTopInactive
|
|
870
|
-
} from '../icons/panel-top-dashed';
|
|
871
|
-
|
|
872
860
|
// PanelRightDashed aliases
|
|
873
861
|
export {
|
|
874
862
|
/** @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 */
|
|
875
863
|
default as PanelRightInactive
|
|
876
864
|
} from '../icons/panel-right-dashed';
|
|
877
865
|
|
|
866
|
+
// PanelTopDashed aliases
|
|
867
|
+
export {
|
|
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 */
|
|
869
|
+
default as PanelTopInactive
|
|
870
|
+
} from '../icons/panel-top-dashed';
|
|
871
|
+
|
|
878
872
|
// PanelsTopLeft aliases
|
|
879
873
|
export {
|
|
880
874
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -929,18 +923,18 @@ export {
|
|
|
929
923
|
default as Scale3D
|
|
930
924
|
} from '../icons/scale-3d';
|
|
931
925
|
|
|
932
|
-
// SendHorizontal aliases
|
|
933
|
-
export {
|
|
934
|
-
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
935
|
-
default as SendHorizonal
|
|
936
|
-
} from '../icons/send-horizontal';
|
|
937
|
-
|
|
938
926
|
// ShieldQuestionMark aliases
|
|
939
927
|
export {
|
|
940
928
|
/** @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
929
|
default as ShieldQuestion
|
|
942
930
|
} from '../icons/shield-question-mark';
|
|
943
931
|
|
|
932
|
+
// SendHorizontal aliases
|
|
933
|
+
export {
|
|
934
|
+
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
935
|
+
default as SendHorizonal
|
|
936
|
+
} from '../icons/send-horizontal';
|
|
937
|
+
|
|
944
938
|
// ShieldX aliases
|
|
945
939
|
export {
|
|
946
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 */
|
|
@@ -977,18 +971,18 @@ export {
|
|
|
977
971
|
default as ArrowDownRightSquare
|
|
978
972
|
} from '../icons/square-arrow-down-right';
|
|
979
973
|
|
|
980
|
-
// SquareArrowLeft aliases
|
|
981
|
-
export {
|
|
982
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
|
|
983
|
-
default as ArrowLeftSquare
|
|
984
|
-
} from '../icons/square-arrow-left';
|
|
985
|
-
|
|
986
974
|
// SquareArrowDown aliases
|
|
987
975
|
export {
|
|
988
976
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
989
977
|
default as ArrowDownSquare
|
|
990
978
|
} from '../icons/square-arrow-down';
|
|
991
979
|
|
|
980
|
+
// SquareArrowLeft aliases
|
|
981
|
+
export {
|
|
982
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
|
|
983
|
+
default as ArrowLeftSquare
|
|
984
|
+
} from '../icons/square-arrow-left';
|
|
985
|
+
|
|
992
986
|
// SquareArrowOutDownLeft aliases
|
|
993
987
|
export {
|
|
994
988
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -1061,6 +1055,12 @@ export {
|
|
|
1061
1055
|
default as FlipVertical
|
|
1062
1056
|
} from '../icons/square-centerline-dashed-vertical';
|
|
1063
1057
|
|
|
1058
|
+
// SquareCheckBig aliases
|
|
1059
|
+
export {
|
|
1060
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. This alias will be removed in v1.0 */
|
|
1061
|
+
default as CheckSquare
|
|
1062
|
+
} from '../icons/square-check-big';
|
|
1063
|
+
|
|
1064
1064
|
// SquareChartGantt aliases
|
|
1065
1065
|
export {
|
|
1066
1066
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
@@ -1073,12 +1073,6 @@ export {
|
|
|
1073
1073
|
default as SquareGanttChart
|
|
1074
1074
|
} from '../icons/square-chart-gantt';
|
|
1075
1075
|
|
|
1076
|
-
// SquareCheckBig aliases
|
|
1077
|
-
export {
|
|
1078
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. This alias will be removed in v1.0 */
|
|
1079
|
-
default as CheckSquare
|
|
1080
|
-
} from '../icons/square-check-big';
|
|
1081
|
-
|
|
1082
1076
|
// SquareCheck aliases
|
|
1083
1077
|
export {
|
|
1084
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 */
|
|
@@ -1181,12 +1175,6 @@ export {
|
|
|
1181
1175
|
default as MenuSquare
|
|
1182
1176
|
} from '../icons/square-menu';
|
|
1183
1177
|
|
|
1184
|
-
// SquareMinus aliases
|
|
1185
|
-
export {
|
|
1186
|
-
/** @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 */
|
|
1187
|
-
default as MinusSquare
|
|
1188
|
-
} from '../icons/square-minus';
|
|
1189
|
-
|
|
1190
1178
|
// SquareMousePointer aliases
|
|
1191
1179
|
export {
|
|
1192
1180
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
@@ -1199,6 +1187,12 @@ export {
|
|
|
1199
1187
|
default as ParkingSquareOff
|
|
1200
1188
|
} from '../icons/square-parking-off';
|
|
1201
1189
|
|
|
1190
|
+
// SquareMinus aliases
|
|
1191
|
+
export {
|
|
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 */
|
|
1193
|
+
default as MinusSquare
|
|
1194
|
+
} from '../icons/square-minus';
|
|
1195
|
+
|
|
1202
1196
|
// SquareParking aliases
|
|
1203
1197
|
export {
|
|
1204
1198
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. This alias will be removed in v1.0 */
|
|
@@ -1259,18 +1253,18 @@ export {
|
|
|
1259
1253
|
default as PowerSquare
|
|
1260
1254
|
} from '../icons/square-power';
|
|
1261
1255
|
|
|
1262
|
-
// SquareScissors aliases
|
|
1263
|
-
export {
|
|
1264
|
-
/** @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 */
|
|
1265
|
-
default as ScissorsSquare
|
|
1266
|
-
} from '../icons/square-scissors';
|
|
1267
|
-
|
|
1268
1256
|
// SquareSigma aliases
|
|
1269
1257
|
export {
|
|
1270
1258
|
/** @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 */
|
|
1271
1259
|
default as SigmaSquare
|
|
1272
1260
|
} from '../icons/square-sigma';
|
|
1273
1261
|
|
|
1262
|
+
// SquareScissors aliases
|
|
1263
|
+
export {
|
|
1264
|
+
/** @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 */
|
|
1265
|
+
default as ScissorsSquare
|
|
1266
|
+
} from '../icons/square-scissors';
|
|
1267
|
+
|
|
1274
1268
|
// SquareSlash aliases
|
|
1275
1269
|
export {
|
|
1276
1270
|
/** @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 */
|
|
@@ -1295,23 +1289,17 @@ export {
|
|
|
1295
1289
|
default as TerminalSquare
|
|
1296
1290
|
} from '../icons/square-terminal';
|
|
1297
1291
|
|
|
1298
|
-
// SquareUserRound aliases
|
|
1299
|
-
export {
|
|
1300
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
1301
|
-
default as UserSquare2
|
|
1302
|
-
} from '../icons/square-user-round';
|
|
1303
|
-
|
|
1304
1292
|
// SquareUser aliases
|
|
1305
1293
|
export {
|
|
1306
1294
|
/** @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 */
|
|
1307
1295
|
default as UserSquare
|
|
1308
1296
|
} from '../icons/square-user';
|
|
1309
1297
|
|
|
1310
|
-
//
|
|
1298
|
+
// SquareUserRound aliases
|
|
1311
1299
|
export {
|
|
1312
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1313
|
-
default as
|
|
1314
|
-
} from '../icons/
|
|
1300
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
1301
|
+
default as UserSquare2
|
|
1302
|
+
} from '../icons/square-user-round';
|
|
1315
1303
|
|
|
1316
1304
|
// SquareX aliases
|
|
1317
1305
|
export {
|
|
@@ -1319,24 +1307,30 @@ export {
|
|
|
1319
1307
|
default as XSquare
|
|
1320
1308
|
} from '../icons/square-x';
|
|
1321
1309
|
|
|
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
1310
|
// TextAlignEnd aliases
|
|
1329
1311
|
export {
|
|
1330
1312
|
/** @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 */
|
|
1331
1313
|
default as AlignRight
|
|
1332
1314
|
} from '../icons/text-align-end';
|
|
1333
1315
|
|
|
1316
|
+
// TestTubeDiagonal aliases
|
|
1317
|
+
export {
|
|
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 */
|
|
1319
|
+
default as TestTube2
|
|
1320
|
+
} from '../icons/test-tube-diagonal';
|
|
1321
|
+
|
|
1334
1322
|
// TextAlignJustify aliases
|
|
1335
1323
|
export {
|
|
1336
1324
|
/** @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 */
|
|
1337
1325
|
default as AlignJustify
|
|
1338
1326
|
} from '../icons/text-align-justify';
|
|
1339
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
|
+
|
|
1340
1334
|
// TextAlignStart aliases
|
|
1341
1335
|
export {
|
|
1342
1336
|
/** @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 */
|
|
@@ -1427,18 +1421,18 @@ export {
|
|
|
1427
1421
|
default as UserX2
|
|
1428
1422
|
} from '../icons/user-round-x';
|
|
1429
1423
|
|
|
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
1424
|
// UsersRound aliases
|
|
1437
1425
|
export {
|
|
1438
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 */
|
|
1439
1427
|
default as Users2
|
|
1440
1428
|
} from '../icons/users-round';
|
|
1441
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
|
+
|
|
1442
1436
|
// UtensilsCrossed aliases
|
|
1443
1437
|
export {
|
|
1444
1438
|
/** @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 */
|
|
@@ -1451,15 +1445,15 @@ export {
|
|
|
1451
1445
|
default as ForkKnife
|
|
1452
1446
|
} from '../icons/utensils';
|
|
1453
1447
|
|
|
1454
|
-
// WandSparkles aliases
|
|
1455
|
-
export {
|
|
1456
|
-
/** @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 */
|
|
1457
|
-
default as Wand2
|
|
1458
|
-
} from '../icons/wand-sparkles';
|
|
1459
|
-
|
|
1460
1448
|
// WalletMinimal aliases
|
|
1461
1449
|
export {
|
|
1462
1450
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
1463
1451
|
default as Wallet2
|
|
1464
1452
|
} from '../icons/wallet-minimal';
|
|
1465
1453
|
|
|
1454
|
+
// WandSparkles aliases
|
|
1455
|
+
export {
|
|
1456
|
+
/** @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 */
|
|
1457
|
+
default as Wand2
|
|
1458
|
+
} from '../icons/wand-sparkles';
|
|
1459
|
+
|