@lucide/astro 1.7.0 → 1.9.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 +6 -1
- package/package.json +2 -2
- package/src/aliases/aliases.ts +134 -128
- package/src/aliases/prefixed.ts +780 -772
- package/src/aliases/suffixed.ts +1091 -1083
- package/src/icons/bookmark-off.ts +18 -0
- package/src/icons/index.ts +209 -207
- package/src/icons/radio-off.ts +2 -2
- package/src/icons/{text-select.ts → square-dashed-text.ts} +4 -4
- package/src/icons/timeline.ts +18 -0
package/README.md
CHANGED
|
@@ -60,6 +60,8 @@ Join the [Discord server](https://discord.gg/EH6nSts) to chat with the maintaine
|
|
|
60
60
|
|
|
61
61
|
Lucide is licensed under the ISC license. See [LICENSE](https://lucide.dev/license).
|
|
62
62
|
|
|
63
|
+
[//]: <> (Sponsors)
|
|
64
|
+
|
|
63
65
|
## Sponsors
|
|
64
66
|
|
|
65
67
|
<a href="https://vercel.com?utm_source=lucide&utm_campaign=oss">
|
|
@@ -68,7 +70,10 @@ Lucide is licensed under the ISC license. See [LICENSE](https://lucide.dev/licen
|
|
|
68
70
|
|
|
69
71
|
<a href="https://www.digitalocean.com/?refcode=b0877a2caebd&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge"><img src="https://lucide.dev/digitalocean.svg" width="200" alt="DigitalOcean Referral Badge" /></a>
|
|
70
72
|
|
|
71
|
-
|
|
73
|
+
### Hero backers 🦸
|
|
74
|
+
|
|
75
|
+
<a href="https://https://zephyr-cloud.io/"><img src="https://lucide.dev/sponsors/zephyr-cloud.svg" width="180" alt="Zephyr Cloud – From idea to prod: fast micro-frontend delivery!" /></a>
|
|
76
|
+
|
|
72
77
|
### Awesome backers 🍺
|
|
73
78
|
|
|
74
79
|
<a href="https://github.com/pdfme/pdfme"><img src="https://lucide.dev/sponsors/pdfme.svg" width="180" alt="pdfme – Open-source PDF generation library built with TypeScript and React." /></a>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"linkedom": "^0.18.5",
|
|
47
47
|
"prettier": "^3.4.2",
|
|
48
48
|
"typescript": "^5.8.3",
|
|
49
|
-
"vite": "^7.3.
|
|
49
|
+
"vite": "^7.3.2",
|
|
50
50
|
"vitest": "^4.1.1",
|
|
51
51
|
"astro": "^6.0.8",
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -191,18 +191,18 @@ export {
|
|
|
191
191
|
default as ArrowDownCircle
|
|
192
192
|
} from '../icons/circle-arrow-down';
|
|
193
193
|
|
|
194
|
-
// CircleArrowLeft aliases
|
|
195
|
-
export {
|
|
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 */
|
|
197
|
-
default as ArrowLeftCircle
|
|
198
|
-
} from '../icons/circle-arrow-left';
|
|
199
|
-
|
|
200
194
|
// CircleArrowOutDownLeft aliases
|
|
201
195
|
export {
|
|
202
196
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
203
197
|
default as ArrowDownLeftFromCircle
|
|
204
198
|
} from '../icons/circle-arrow-out-down-left';
|
|
205
199
|
|
|
200
|
+
// CircleArrowLeft aliases
|
|
201
|
+
export {
|
|
202
|
+
/** @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
|
+
default as ArrowLeftCircle
|
|
204
|
+
} from '../icons/circle-arrow-left';
|
|
205
|
+
|
|
206
206
|
// CircleArrowOutDownRight aliases
|
|
207
207
|
export {
|
|
208
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 */
|
|
@@ -227,6 +227,12 @@ export {
|
|
|
227
227
|
default as ArrowRightCircle
|
|
228
228
|
} from '../icons/circle-arrow-right';
|
|
229
229
|
|
|
230
|
+
// CircleCheckBig aliases
|
|
231
|
+
export {
|
|
232
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
233
|
+
default as CheckCircle
|
|
234
|
+
} from '../icons/circle-check-big';
|
|
235
|
+
|
|
230
236
|
// CircleArrowUp aliases
|
|
231
237
|
export {
|
|
232
238
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
@@ -239,12 +245,6 @@ export {
|
|
|
239
245
|
default as CheckCircle2
|
|
240
246
|
} from '../icons/circle-check';
|
|
241
247
|
|
|
242
|
-
// CircleCheckBig aliases
|
|
243
|
-
export {
|
|
244
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
245
|
-
default as CheckCircle
|
|
246
|
-
} from '../icons/circle-check-big';
|
|
247
|
-
|
|
248
248
|
// CircleChevronDown aliases
|
|
249
249
|
export {
|
|
250
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 */
|
|
@@ -317,18 +317,18 @@ export {
|
|
|
317
317
|
default as PlayCircle
|
|
318
318
|
} from '../icons/circle-play';
|
|
319
319
|
|
|
320
|
-
// CirclePower aliases
|
|
321
|
-
export {
|
|
322
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePower} instead. This alias will be removed in v1.0 */
|
|
323
|
-
default as PowerCircle
|
|
324
|
-
} from '../icons/circle-power';
|
|
325
|
-
|
|
326
320
|
// CirclePlus aliases
|
|
327
321
|
export {
|
|
328
322
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
329
323
|
default as PlusCircle
|
|
330
324
|
} from '../icons/circle-plus';
|
|
331
325
|
|
|
326
|
+
// CirclePower aliases
|
|
327
|
+
export {
|
|
328
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePower} instead. This alias will be removed in v1.0 */
|
|
329
|
+
default as PowerCircle
|
|
330
|
+
} from '../icons/circle-power';
|
|
331
|
+
|
|
332
332
|
// CircleQuestionMark aliases
|
|
333
333
|
export {
|
|
334
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,18 +353,18 @@ export {
|
|
|
353
353
|
default as StopCircle
|
|
354
354
|
} from '../icons/circle-stop';
|
|
355
355
|
|
|
356
|
-
// CircleUser aliases
|
|
357
|
-
export {
|
|
358
|
-
/** @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 */
|
|
359
|
-
default as UserCircle
|
|
360
|
-
} from '../icons/circle-user';
|
|
361
|
-
|
|
362
356
|
// CircleUserRound aliases
|
|
363
357
|
export {
|
|
364
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 */
|
|
365
359
|
default as UserCircle2
|
|
366
360
|
} from '../icons/circle-user-round';
|
|
367
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
|
+
|
|
368
368
|
// CircleX aliases
|
|
369
369
|
export {
|
|
370
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 */
|
|
@@ -395,18 +395,18 @@ export {
|
|
|
395
395
|
default as UploadCloud
|
|
396
396
|
} from '../icons/cloud-upload';
|
|
397
397
|
|
|
398
|
-
// CodeXml aliases
|
|
399
|
-
export {
|
|
400
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
401
|
-
default as Code2
|
|
402
|
-
} from '../icons/code-xml';
|
|
403
|
-
|
|
404
398
|
// Columns2 aliases
|
|
405
399
|
export {
|
|
406
400
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
407
401
|
default as Columns
|
|
408
402
|
} from '../icons/columns-2';
|
|
409
403
|
|
|
404
|
+
// CodeXml aliases
|
|
405
|
+
export {
|
|
406
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
407
|
+
default as Code2
|
|
408
|
+
} from '../icons/code-xml';
|
|
409
|
+
|
|
410
410
|
// Columns3Cog aliases
|
|
411
411
|
export {
|
|
412
412
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
@@ -419,18 +419,18 @@ export {
|
|
|
419
419
|
default as TableConfig
|
|
420
420
|
} from '../icons/columns-3-cog';
|
|
421
421
|
|
|
422
|
-
// Columns3 aliases
|
|
423
|
-
export {
|
|
424
|
-
/** @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 */
|
|
425
|
-
default as PanelsLeftRight
|
|
426
|
-
} from '../icons/columns-3';
|
|
427
|
-
|
|
428
422
|
// ContactRound aliases
|
|
429
423
|
export {
|
|
430
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 */
|
|
431
425
|
default as Contact2
|
|
432
426
|
} from '../icons/contact-round';
|
|
433
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
|
+
|
|
434
434
|
// DiamondPercent aliases
|
|
435
435
|
export {
|
|
436
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 */
|
|
@@ -479,18 +479,18 @@ export {
|
|
|
479
479
|
default as FileJson
|
|
480
480
|
} from '../icons/file-braces';
|
|
481
481
|
|
|
482
|
-
// FileChartColumn aliases
|
|
483
|
-
export {
|
|
484
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
485
|
-
default as FileBarChart2
|
|
486
|
-
} from '../icons/file-chart-column';
|
|
487
|
-
|
|
488
482
|
// FileChartColumnIncreasing aliases
|
|
489
483
|
export {
|
|
490
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 */
|
|
491
485
|
default as FileBarChart
|
|
492
486
|
} from '../icons/file-chart-column-increasing';
|
|
493
487
|
|
|
488
|
+
// FileChartColumn aliases
|
|
489
|
+
export {
|
|
490
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
491
|
+
default as FileBarChart2
|
|
492
|
+
} from '../icons/file-chart-column';
|
|
493
|
+
|
|
494
494
|
// FileChartLine aliases
|
|
495
495
|
export {
|
|
496
496
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
@@ -515,12 +515,6 @@ export {
|
|
|
515
515
|
default as FileCode2
|
|
516
516
|
} from '../icons/file-code-corner';
|
|
517
517
|
|
|
518
|
-
// FileCog aliases
|
|
519
|
-
export {
|
|
520
|
-
/** @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 */
|
|
521
|
-
default as FileCog2
|
|
522
|
-
} from '../icons/file-cog';
|
|
523
|
-
|
|
524
518
|
// FileExclamationPoint aliases
|
|
525
519
|
export {
|
|
526
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 */
|
|
@@ -539,6 +533,12 @@ export {
|
|
|
539
533
|
default as FileAudio2
|
|
540
534
|
} from '../icons/file-headphone';
|
|
541
535
|
|
|
536
|
+
// FileCog aliases
|
|
537
|
+
export {
|
|
538
|
+
/** @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 */
|
|
539
|
+
default as FileCog2
|
|
540
|
+
} from '../icons/file-cog';
|
|
541
|
+
|
|
542
542
|
// FileKey aliases
|
|
543
543
|
export {
|
|
544
544
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. This alias will be removed in v1.0 */
|
|
@@ -587,35 +587,41 @@ export {
|
|
|
587
587
|
default as FileQuestion
|
|
588
588
|
} from '../icons/file-question-mark';
|
|
589
589
|
|
|
590
|
-
// FileSignal aliases
|
|
591
|
-
export {
|
|
592
|
-
/** @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 */
|
|
593
|
-
default as FileVolume2
|
|
594
|
-
} from '../icons/file-signal';
|
|
595
|
-
|
|
596
590
|
// FileSearchCorner aliases
|
|
597
591
|
export {
|
|
598
592
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. This alias will be removed in v1.0 */
|
|
599
593
|
default as FileSearch2
|
|
600
594
|
} from '../icons/file-search-corner';
|
|
601
595
|
|
|
596
|
+
// FileSignal aliases
|
|
597
|
+
export {
|
|
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 */
|
|
599
|
+
default as FileVolume2
|
|
600
|
+
} from '../icons/file-signal';
|
|
601
|
+
|
|
602
602
|
// FileTypeCorner aliases
|
|
603
603
|
export {
|
|
604
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
605
|
default as FileType2
|
|
606
606
|
} from '../icons/file-type-corner';
|
|
607
607
|
|
|
608
|
+
// FileXCorner aliases
|
|
609
|
+
export {
|
|
610
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. This alias will be removed in v1.0 */
|
|
611
|
+
default as FileX2
|
|
612
|
+
} from '../icons/file-x-corner';
|
|
613
|
+
|
|
608
614
|
// FileVideoCamera aliases
|
|
609
615
|
export {
|
|
610
616
|
/** @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 */
|
|
611
617
|
default as FileVideo2
|
|
612
618
|
} from '../icons/file-video-camera';
|
|
613
619
|
|
|
614
|
-
//
|
|
620
|
+
// FingerprintPattern aliases
|
|
615
621
|
export {
|
|
616
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
617
|
-
default as
|
|
618
|
-
} from '../icons/
|
|
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 */
|
|
623
|
+
default as Fingerprint
|
|
624
|
+
} from '../icons/fingerprint-pattern';
|
|
619
625
|
|
|
620
626
|
// FolderCog aliases
|
|
621
627
|
export {
|
|
@@ -629,12 +635,6 @@ export {
|
|
|
629
635
|
default as FolderEdit
|
|
630
636
|
} from '../icons/folder-pen';
|
|
631
637
|
|
|
632
|
-
// FingerprintPattern aliases
|
|
633
|
-
export {
|
|
634
|
-
/** @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
|
-
default as Fingerprint
|
|
636
|
-
} from '../icons/fingerprint-pattern';
|
|
637
|
-
|
|
638
638
|
// FunnelX aliases
|
|
639
639
|
export {
|
|
640
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
@@ -677,6 +677,12 @@ export {
|
|
|
677
677
|
default as Grid2X2
|
|
678
678
|
} from '../icons/grid-2x2';
|
|
679
679
|
|
|
680
|
+
// HandGrab aliases
|
|
681
|
+
export {
|
|
682
|
+
/** @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 */
|
|
683
|
+
default as Grab
|
|
684
|
+
} from '../icons/hand-grab';
|
|
685
|
+
|
|
680
686
|
// Grid3x3 aliases
|
|
681
687
|
export {
|
|
682
688
|
/** @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 */
|
|
@@ -689,12 +695,6 @@ export {
|
|
|
689
695
|
default as Grid3X3
|
|
690
696
|
} from '../icons/grid-3x3';
|
|
691
697
|
|
|
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
|
-
|
|
698
698
|
// HandHelping aliases
|
|
699
699
|
export {
|
|
700
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 */
|
|
@@ -803,12 +803,6 @@ export {
|
|
|
803
803
|
default as Move3D
|
|
804
804
|
} from '../icons/move-3d';
|
|
805
805
|
|
|
806
|
-
// OctagonAlert aliases
|
|
807
|
-
export {
|
|
808
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
809
|
-
default as AlertOctagon
|
|
810
|
-
} from '../icons/octagon-alert';
|
|
811
|
-
|
|
812
806
|
// OctagonPause aliases
|
|
813
807
|
export {
|
|
814
808
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
@@ -821,6 +815,12 @@ export {
|
|
|
821
815
|
default as XOctagon
|
|
822
816
|
} from '../icons/octagon-x';
|
|
823
817
|
|
|
818
|
+
// OctagonAlert aliases
|
|
819
|
+
export {
|
|
820
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
821
|
+
default as AlertOctagon
|
|
822
|
+
} from '../icons/octagon-alert';
|
|
823
|
+
|
|
824
824
|
// PaintbrushVertical aliases
|
|
825
825
|
export {
|
|
826
826
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -845,18 +845,18 @@ export {
|
|
|
845
845
|
default as PanelLeftInactive
|
|
846
846
|
} from '../icons/panel-left-dashed';
|
|
847
847
|
|
|
848
|
-
// PanelLeft aliases
|
|
849
|
-
export {
|
|
850
|
-
/** @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 */
|
|
851
|
-
default as Sidebar
|
|
852
|
-
} from '../icons/panel-left';
|
|
853
|
-
|
|
854
848
|
// PanelLeftOpen aliases
|
|
855
849
|
export {
|
|
856
850
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
857
851
|
default as SidebarOpen
|
|
858
852
|
} from '../icons/panel-left-open';
|
|
859
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
860
|
// PanelRightDashed aliases
|
|
861
861
|
export {
|
|
862
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 */
|
|
@@ -1067,18 +1067,18 @@ export {
|
|
|
1067
1067
|
default as SquareGanttChart
|
|
1068
1068
|
} from '../icons/square-chart-gantt';
|
|
1069
1069
|
|
|
1070
|
-
// SquareCheck aliases
|
|
1071
|
-
export {
|
|
1072
|
-
/** @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 */
|
|
1073
|
-
default as CheckSquare2
|
|
1074
|
-
} from '../icons/square-check';
|
|
1075
|
-
|
|
1076
1070
|
// SquareCheckBig aliases
|
|
1077
1071
|
export {
|
|
1078
1072
|
/** @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
1073
|
default as CheckSquare
|
|
1080
1074
|
} from '../icons/square-check-big';
|
|
1081
1075
|
|
|
1076
|
+
// SquareCheck aliases
|
|
1077
|
+
export {
|
|
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 */
|
|
1079
|
+
default as CheckSquare2
|
|
1080
|
+
} from '../icons/square-check';
|
|
1081
|
+
|
|
1082
1082
|
// SquareChevronDown aliases
|
|
1083
1083
|
export {
|
|
1084
1084
|
/** @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 */
|
|
@@ -1121,24 +1121,36 @@ export {
|
|
|
1121
1121
|
default as MousePointerSquareDashed
|
|
1122
1122
|
} from '../icons/square-dashed-mouse-pointer';
|
|
1123
1123
|
|
|
1124
|
+
// SquareDashedText aliases
|
|
1125
|
+
export {
|
|
1126
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. This alias will be removed in v1.0 */
|
|
1127
|
+
default as TextSelection
|
|
1128
|
+
} from '../icons/square-dashed-text';
|
|
1129
|
+
|
|
1130
|
+
// SquareDashedText aliases
|
|
1131
|
+
export {
|
|
1132
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. This alias will be removed in v1.0 */
|
|
1133
|
+
default as TextSelect
|
|
1134
|
+
} from '../icons/square-dashed-text';
|
|
1135
|
+
|
|
1124
1136
|
// SquareDashed aliases
|
|
1125
1137
|
export {
|
|
1126
1138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
1127
1139
|
default as BoxSelect
|
|
1128
1140
|
} from '../icons/square-dashed';
|
|
1129
1141
|
|
|
1130
|
-
// SquareDivide aliases
|
|
1131
|
-
export {
|
|
1132
|
-
/** @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 */
|
|
1133
|
-
default as DivideSquare
|
|
1134
|
-
} from '../icons/square-divide';
|
|
1135
|
-
|
|
1136
1142
|
// SquareDot aliases
|
|
1137
1143
|
export {
|
|
1138
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 */
|
|
1139
1145
|
default as DotSquare
|
|
1140
1146
|
} from '../icons/square-dot';
|
|
1141
1147
|
|
|
1148
|
+
// SquareDivide aliases
|
|
1149
|
+
export {
|
|
1150
|
+
/** @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
|
+
default as DivideSquare
|
|
1152
|
+
} from '../icons/square-divide';
|
|
1153
|
+
|
|
1142
1154
|
// SquareEqual aliases
|
|
1143
1155
|
export {
|
|
1144
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 */
|
|
@@ -1181,30 +1193,24 @@ export {
|
|
|
1181
1193
|
default as MinusSquare
|
|
1182
1194
|
} from '../icons/square-minus';
|
|
1183
1195
|
|
|
1184
|
-
// SquareParkingOff aliases
|
|
1185
|
-
export {
|
|
1186
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. This alias will be removed in v1.0 */
|
|
1187
|
-
default as ParkingSquareOff
|
|
1188
|
-
} from '../icons/square-parking-off';
|
|
1189
|
-
|
|
1190
1196
|
// SquareMousePointer aliases
|
|
1191
1197
|
export {
|
|
1192
1198
|
/** @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 */
|
|
1193
1199
|
default as Inspect
|
|
1194
1200
|
} from '../icons/square-mouse-pointer';
|
|
1195
1201
|
|
|
1202
|
+
// SquareParkingOff aliases
|
|
1203
|
+
export {
|
|
1204
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. This alias will be removed in v1.0 */
|
|
1205
|
+
default as ParkingSquareOff
|
|
1206
|
+
} from '../icons/square-parking-off';
|
|
1207
|
+
|
|
1196
1208
|
// SquareParking aliases
|
|
1197
1209
|
export {
|
|
1198
1210
|
/** @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 */
|
|
1199
1211
|
default as ParkingSquare
|
|
1200
1212
|
} from '../icons/square-parking';
|
|
1201
1213
|
|
|
1202
|
-
// SquarePercent aliases
|
|
1203
|
-
export {
|
|
1204
|
-
/** @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 */
|
|
1205
|
-
default as PercentSquare
|
|
1206
|
-
} from '../icons/square-percent';
|
|
1207
|
-
|
|
1208
1214
|
// SquarePen aliases
|
|
1209
1215
|
export {
|
|
1210
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 */
|
|
@@ -1223,11 +1229,11 @@ export {
|
|
|
1223
1229
|
default as PenSquare
|
|
1224
1230
|
} from '../icons/square-pen';
|
|
1225
1231
|
|
|
1226
|
-
//
|
|
1232
|
+
// SquarePercent aliases
|
|
1227
1233
|
export {
|
|
1228
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1229
|
-
default as
|
|
1230
|
-
} from '../icons/square-
|
|
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';
|
|
1231
1237
|
|
|
1232
1238
|
// SquarePi aliases
|
|
1233
1239
|
export {
|
|
@@ -1235,6 +1241,12 @@ export {
|
|
|
1235
1241
|
default as PiSquare
|
|
1236
1242
|
} from '../icons/square-pi';
|
|
1237
1243
|
|
|
1244
|
+
// SquarePilcrow aliases
|
|
1245
|
+
export {
|
|
1246
|
+
/** @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 */
|
|
1247
|
+
default as PilcrowSquare
|
|
1248
|
+
} from '../icons/square-pilcrow';
|
|
1249
|
+
|
|
1238
1250
|
// SquarePlay aliases
|
|
1239
1251
|
export {
|
|
1240
1252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
@@ -1319,6 +1331,12 @@ export {
|
|
|
1319
1331
|
default as AlignCenter
|
|
1320
1332
|
} from '../icons/text-align-center';
|
|
1321
1333
|
|
|
1334
|
+
// TextAlignEnd aliases
|
|
1335
|
+
export {
|
|
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
|
+
default as AlignRight
|
|
1338
|
+
} from '../icons/text-align-end';
|
|
1339
|
+
|
|
1322
1340
|
// TextAlignJustify aliases
|
|
1323
1341
|
export {
|
|
1324
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 */
|
|
@@ -1337,12 +1355,6 @@ export {
|
|
|
1337
1355
|
default as AlignLeft
|
|
1338
1356
|
} from '../icons/text-align-start';
|
|
1339
1357
|
|
|
1340
|
-
// TextAlignEnd aliases
|
|
1341
|
-
export {
|
|
1342
|
-
/** @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 */
|
|
1343
|
-
default as AlignRight
|
|
1344
|
-
} from '../icons/text-align-end';
|
|
1345
|
-
|
|
1346
1358
|
// TextInitial aliases
|
|
1347
1359
|
export {
|
|
1348
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 */
|
|
@@ -1355,12 +1367,6 @@ export {
|
|
|
1355
1367
|
default as WrapText
|
|
1356
1368
|
} from '../icons/text-wrap';
|
|
1357
1369
|
|
|
1358
|
-
// TextSelect aliases
|
|
1359
|
-
export {
|
|
1360
|
-
/** @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 */
|
|
1361
|
-
default as TextSelection
|
|
1362
|
-
} from '../icons/text-select';
|
|
1363
|
-
|
|
1364
1370
|
// TramFront aliases
|
|
1365
1371
|
export {
|
|
1366
1372
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|
|
@@ -1433,18 +1439,18 @@ export {
|
|
|
1433
1439
|
default as Users2
|
|
1434
1440
|
} from '../icons/users-round';
|
|
1435
1441
|
|
|
1436
|
-
// Utensils aliases
|
|
1437
|
-
export {
|
|
1438
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1439
|
-
default as ForkKnife
|
|
1440
|
-
} from '../icons/utensils';
|
|
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 */
|
|
1445
1445
|
default as ForkKnifeCrossed
|
|
1446
1446
|
} from '../icons/utensils-crossed';
|
|
1447
1447
|
|
|
1448
|
+
// Utensils aliases
|
|
1449
|
+
export {
|
|
1450
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1451
|
+
default as ForkKnife
|
|
1452
|
+
} from '../icons/utensils';
|
|
1453
|
+
|
|
1448
1454
|
// WalletMinimal aliases
|
|
1449
1455
|
export {
|
|
1450
1456
|
/** @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 */
|