@lucide/astro 1.18.0 → 1.20.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 +4 -5
- package/src/aliases/aliases.ts +128 -128
- package/src/aliases/prefixed.ts +782 -740
- package/src/aliases/suffixed.ts +1086 -1044
- package/src/icons/ad.ts +18 -0
- package/src/icons/banknote-check.ts +18 -0
- package/src/icons/clock-arrow-left.ts +18 -0
- package/src/icons/clock-arrow-right.ts +18 -0
- package/src/icons/eye-dashed.ts +18 -0
- package/src/icons/index.ts +243 -222
- package/src/icons/list-sort-ascending.ts +18 -0
- package/src/icons/list-sort-descending.ts +18 -0
- package/src/icons/pencil-sparkles.ts +18 -0
- package/src/icons/podium.ts +18 -0
- package/src/icons/save-check.ts +18 -0
- package/src/icons/save-pen.ts +18 -0
- package/src/icons/save-plus.ts +18 -0
- package/src/icons/square-arrow-down-left.ts +2 -2
- package/src/icons/square-arrow-down-right.ts +2 -2
- package/src/icons/square-arrow-up-left.ts +2 -2
- package/src/icons/square-arrow-up-right.ts +2 -2
- package/src/icons/star-check.ts +18 -0
- package/src/icons/star-minus.ts +18 -0
- package/src/icons/star-plus.ts +18 -0
- package/src/icons/star-x.ts +18 -0
- package/src/icons/summary.ts +18 -0
- package/src/icons/tag-plus.ts +18 -0
- package/src/icons/tag-x.ts +18 -0
- package/src/icons/user-round-arrow-left.ts +18 -0
- package/src/icons/wallet-cards.ts +2 -2
- package/src/icons/wrench-off.ts +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"@astrojs/ts-plugin": "^1.10.4",
|
|
43
43
|
"@testing-library/dom": "^10.4.0",
|
|
44
44
|
"@testing-library/jest-dom": "^6.8.0",
|
|
45
|
+
"astro": "^6.1.10",
|
|
45
46
|
"jest-serializer-html": "^7.1.0",
|
|
46
47
|
"linkedom": "^0.18.5",
|
|
47
48
|
"prettier": "^3.4.2",
|
|
48
49
|
"typescript": "^5.8.3",
|
|
49
50
|
"vite": "^7.3.2",
|
|
50
|
-
"vitest": "^4.1.
|
|
51
|
-
"astro": "^6.1.10",
|
|
51
|
+
"vitest": "^4.1.0",
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
62
62
|
"copy:utils": "mkdir -p ./src/utils && for f in hasA11yProp toKebabCase mergeClasses; do cp -f ../../packages/shared/src/utils/$f.ts ./src/utils/; done",
|
|
63
63
|
"test": "pnpm copy:utils && pnpm build:icons && vitest run",
|
|
64
|
-
"test:watch": "pnpm build:icons && vitest run --watch"
|
|
65
|
-
"version": "pnpm version --git-tag-version=false"
|
|
64
|
+
"test:watch": "pnpm build:icons && vitest run --watch"
|
|
66
65
|
}
|
|
67
66
|
}
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -41,18 +41,18 @@ export {
|
|
|
41
41
|
default as ArrowUpAz
|
|
42
42
|
} from '../icons/arrow-up-a-z';
|
|
43
43
|
|
|
44
|
-
// ArrowUpNarrowWide aliases
|
|
45
|
-
export {
|
|
46
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
47
|
-
default as SortAsc
|
|
48
|
-
} from '../icons/arrow-up-narrow-wide';
|
|
49
|
-
|
|
50
44
|
// ArrowUpZA aliases
|
|
51
45
|
export {
|
|
52
46
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
53
47
|
default as ArrowUpZa
|
|
54
48
|
} from '../icons/arrow-up-z-a';
|
|
55
49
|
|
|
50
|
+
// ArrowUpNarrowWide aliases
|
|
51
|
+
export {
|
|
52
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
53
|
+
default as SortAsc
|
|
54
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
55
|
+
|
|
56
56
|
// Axis3d aliases
|
|
57
57
|
export {
|
|
58
58
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
|
|
@@ -161,18 +161,18 @@ export {
|
|
|
161
161
|
default as BarChart2
|
|
162
162
|
} from '../icons/chart-no-axes-column';
|
|
163
163
|
|
|
164
|
-
// ChartNoAxesGantt aliases
|
|
165
|
-
export {
|
|
166
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
167
|
-
default as GanttChart
|
|
168
|
-
} from '../icons/chart-no-axes-gantt';
|
|
169
|
-
|
|
170
164
|
// ChartPie aliases
|
|
171
165
|
export {
|
|
172
166
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
173
167
|
default as PieChart
|
|
174
168
|
} from '../icons/chart-pie';
|
|
175
169
|
|
|
170
|
+
// ChartNoAxesGantt aliases
|
|
171
|
+
export {
|
|
172
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
173
|
+
default as GanttChart
|
|
174
|
+
} from '../icons/chart-no-axes-gantt';
|
|
175
|
+
|
|
176
176
|
// ChartScatter aliases
|
|
177
177
|
export {
|
|
178
178
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
@@ -305,18 +305,18 @@ export {
|
|
|
305
305
|
default as PauseCircle
|
|
306
306
|
} from '../icons/circle-pause';
|
|
307
307
|
|
|
308
|
-
// CirclePercent aliases
|
|
309
|
-
export {
|
|
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 */
|
|
311
|
-
default as PercentCircle
|
|
312
|
-
} from '../icons/circle-percent';
|
|
313
|
-
|
|
314
308
|
// CirclePlay aliases
|
|
315
309
|
export {
|
|
316
310
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
317
311
|
default as PlayCircle
|
|
318
312
|
} from '../icons/circle-play';
|
|
319
313
|
|
|
314
|
+
// CirclePercent aliases
|
|
315
|
+
export {
|
|
316
|
+
/** @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 */
|
|
317
|
+
default as PercentCircle
|
|
318
|
+
} from '../icons/circle-percent';
|
|
319
|
+
|
|
320
320
|
// CirclePlus aliases
|
|
321
321
|
export {
|
|
322
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 */
|
|
@@ -341,18 +341,18 @@ export {
|
|
|
341
341
|
default as CircleHelp
|
|
342
342
|
} from '../icons/circle-question-mark';
|
|
343
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
344
|
// CircleStop aliases
|
|
351
345
|
export {
|
|
352
346
|
/** @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
347
|
default as StopCircle
|
|
354
348
|
} from '../icons/circle-stop';
|
|
355
349
|
|
|
350
|
+
// CircleSlash2 aliases
|
|
351
|
+
export {
|
|
352
|
+
/** @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 */
|
|
353
|
+
default as CircleSlashed
|
|
354
|
+
} from '../icons/circle-slash-2';
|
|
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 */
|
|
@@ -401,6 +401,12 @@ export {
|
|
|
401
401
|
default as Code2
|
|
402
402
|
} from '../icons/code-xml';
|
|
403
403
|
|
|
404
|
+
// Columns2 aliases
|
|
405
|
+
export {
|
|
406
|
+
/** @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
|
+
default as Columns
|
|
408
|
+
} from '../icons/columns-2';
|
|
409
|
+
|
|
404
410
|
// Columns3Cog aliases
|
|
405
411
|
export {
|
|
406
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 */
|
|
@@ -413,11 +419,11 @@ export {
|
|
|
413
419
|
default as TableConfig
|
|
414
420
|
} from '../icons/columns-3-cog';
|
|
415
421
|
|
|
416
|
-
//
|
|
422
|
+
// Columns3 aliases
|
|
417
423
|
export {
|
|
418
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
419
|
-
default as
|
|
420
|
-
} from '../icons/columns-
|
|
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';
|
|
421
427
|
|
|
422
428
|
// ContactRound aliases
|
|
423
429
|
export {
|
|
@@ -425,12 +431,6 @@ export {
|
|
|
425
431
|
default as Contact2
|
|
426
432
|
} from '../icons/contact-round';
|
|
427
433
|
|
|
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 */
|
|
@@ -443,18 +443,18 @@ export {
|
|
|
443
443
|
default as Globe2
|
|
444
444
|
} from '../icons/earth';
|
|
445
445
|
|
|
446
|
-
// Ellipsis aliases
|
|
447
|
-
export {
|
|
448
|
-
/** @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 */
|
|
449
|
-
default as MoreHorizontal
|
|
450
|
-
} from '../icons/ellipsis';
|
|
451
|
-
|
|
452
446
|
// EllipsisVertical aliases
|
|
453
447
|
export {
|
|
454
448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
455
449
|
default as MoreVertical
|
|
456
450
|
} from '../icons/ellipsis-vertical';
|
|
457
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
458
|
// FileAxis3d aliases
|
|
459
459
|
export {
|
|
460
460
|
/** @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 */
|
|
@@ -491,18 +491,18 @@ export {
|
|
|
491
491
|
default as FileBarChart2
|
|
492
492
|
} from '../icons/file-chart-column';
|
|
493
493
|
|
|
494
|
-
// FileChartLine aliases
|
|
495
|
-
export {
|
|
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 */
|
|
497
|
-
default as FileLineChart
|
|
498
|
-
} from '../icons/file-chart-line';
|
|
499
|
-
|
|
500
494
|
// FileChartPie aliases
|
|
501
495
|
export {
|
|
502
496
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
503
497
|
default as FilePieChart
|
|
504
498
|
} from '../icons/file-chart-pie';
|
|
505
499
|
|
|
500
|
+
// FileChartLine aliases
|
|
501
|
+
export {
|
|
502
|
+
/** @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 */
|
|
503
|
+
default as FileLineChart
|
|
504
|
+
} from '../icons/file-chart-line';
|
|
505
|
+
|
|
506
506
|
// FileCheckCorner aliases
|
|
507
507
|
export {
|
|
508
508
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. This alias will be removed in v1.0 */
|
|
@@ -635,18 +635,18 @@ export {
|
|
|
635
635
|
default as FolderEdit
|
|
636
636
|
} from '../icons/folder-pen';
|
|
637
637
|
|
|
638
|
-
// FunnelX aliases
|
|
639
|
-
export {
|
|
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 */
|
|
641
|
-
default as FilterX
|
|
642
|
-
} from '../icons/funnel-x';
|
|
643
|
-
|
|
644
638
|
// Funnel aliases
|
|
645
639
|
export {
|
|
646
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
647
641
|
default as Filter
|
|
648
642
|
} from '../icons/funnel';
|
|
649
643
|
|
|
644
|
+
// FunnelX aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @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 */
|
|
647
|
+
default as FilterX
|
|
648
|
+
} from '../icons/funnel-x';
|
|
649
|
+
|
|
650
650
|
// GitCommitHorizontal aliases
|
|
651
651
|
export {
|
|
652
652
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
@@ -707,18 +707,18 @@ export {
|
|
|
707
707
|
default as Home
|
|
708
708
|
} from '../icons/house';
|
|
709
709
|
|
|
710
|
-
// IceCreamBowl aliases
|
|
711
|
-
export {
|
|
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 */
|
|
713
|
-
default as IceCream2
|
|
714
|
-
} from '../icons/ice-cream-bowl';
|
|
715
|
-
|
|
716
710
|
// IceCreamCone aliases
|
|
717
711
|
export {
|
|
718
712
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
719
713
|
default as IceCream
|
|
720
714
|
} from '../icons/ice-cream-cone';
|
|
721
715
|
|
|
716
|
+
// IceCreamBowl aliases
|
|
717
|
+
export {
|
|
718
|
+
/** @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 */
|
|
719
|
+
default as IceCream2
|
|
720
|
+
} from '../icons/ice-cream-bowl';
|
|
721
|
+
|
|
722
722
|
// LaptopMinimal aliases
|
|
723
723
|
export {
|
|
724
724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. This alias will be removed in v1.0 */
|
|
@@ -743,12 +743,6 @@ export {
|
|
|
743
743
|
default as IndentDecrease
|
|
744
744
|
} from '../icons/list-indent-decrease';
|
|
745
745
|
|
|
746
|
-
// LoaderCircle aliases
|
|
747
|
-
export {
|
|
748
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
749
|
-
default as Loader2
|
|
750
|
-
} from '../icons/loader-circle';
|
|
751
|
-
|
|
752
746
|
// ListIndentIncrease aliases
|
|
753
747
|
export {
|
|
754
748
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. This alias will be removed in v1.0 */
|
|
@@ -761,6 +755,12 @@ export {
|
|
|
761
755
|
default as IndentIncrease
|
|
762
756
|
} from '../icons/list-indent-increase';
|
|
763
757
|
|
|
758
|
+
// LoaderCircle aliases
|
|
759
|
+
export {
|
|
760
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
761
|
+
default as Loader2
|
|
762
|
+
} from '../icons/loader-circle';
|
|
763
|
+
|
|
764
764
|
// LockKeyholeOpen aliases
|
|
765
765
|
export {
|
|
766
766
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -827,6 +827,12 @@ export {
|
|
|
827
827
|
default as Paintbrush2
|
|
828
828
|
} from '../icons/paintbrush-vertical';
|
|
829
829
|
|
|
830
|
+
// PanelBottomDashed aliases
|
|
831
|
+
export {
|
|
832
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
833
|
+
default as PanelBottomInactive
|
|
834
|
+
} from '../icons/panel-bottom-dashed';
|
|
835
|
+
|
|
830
836
|
// PanelLeftClose aliases
|
|
831
837
|
export {
|
|
832
838
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
@@ -839,18 +845,6 @@ export {
|
|
|
839
845
|
default as PanelLeftInactive
|
|
840
846
|
} from '../icons/panel-left-dashed';
|
|
841
847
|
|
|
842
|
-
// PanelBottomDashed aliases
|
|
843
|
-
export {
|
|
844
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
845
|
-
default as PanelBottomInactive
|
|
846
|
-
} from '../icons/panel-bottom-dashed';
|
|
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 */
|
|
@@ -863,6 +857,12 @@ export {
|
|
|
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 */
|
|
@@ -989,18 +989,18 @@ export {
|
|
|
989
989
|
default as ArrowDownLeftFromSquare
|
|
990
990
|
} from '../icons/square-arrow-out-down-left';
|
|
991
991
|
|
|
992
|
-
// SquareArrowOutUpLeft aliases
|
|
993
|
-
export {
|
|
994
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
995
|
-
default as ArrowUpLeftFromSquare
|
|
996
|
-
} from '../icons/square-arrow-out-up-left';
|
|
997
|
-
|
|
998
992
|
// SquareArrowOutDownRight aliases
|
|
999
993
|
export {
|
|
1000
994
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
1001
995
|
default as ArrowDownRightFromSquare
|
|
1002
996
|
} from '../icons/square-arrow-out-down-right';
|
|
1003
997
|
|
|
998
|
+
// SquareArrowOutUpLeft aliases
|
|
999
|
+
export {
|
|
1000
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
1001
|
+
default as ArrowUpLeftFromSquare
|
|
1002
|
+
} from '../icons/square-arrow-out-up-left';
|
|
1003
|
+
|
|
1004
1004
|
// SquareArrowOutUpRight aliases
|
|
1005
1005
|
export {
|
|
1006
1006
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
@@ -1019,18 +1019,18 @@ export {
|
|
|
1019
1019
|
default as ArrowUpLeftSquare
|
|
1020
1020
|
} from '../icons/square-arrow-up-left';
|
|
1021
1021
|
|
|
1022
|
-
// SquareArrowUpRight aliases
|
|
1023
|
-
export {
|
|
1024
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1025
|
-
default as ArrowUpRightSquare
|
|
1026
|
-
} from '../icons/square-arrow-up-right';
|
|
1027
|
-
|
|
1028
1022
|
// SquareArrowUp aliases
|
|
1029
1023
|
export {
|
|
1030
1024
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
1031
1025
|
default as ArrowUpSquare
|
|
1032
1026
|
} from '../icons/square-arrow-up';
|
|
1033
1027
|
|
|
1028
|
+
// SquareArrowUpRight aliases
|
|
1029
|
+
export {
|
|
1030
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1031
|
+
default as ArrowUpRightSquare
|
|
1032
|
+
} from '../icons/square-arrow-up-right';
|
|
1033
|
+
|
|
1034
1034
|
// SquareAsterisk aliases
|
|
1035
1035
|
export {
|
|
1036
1036
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareAsterisk} instead. This alias will be removed in v1.0 */
|
|
@@ -1121,12 +1121,6 @@ export {
|
|
|
1121
1121
|
default as MousePointerSquareDashed
|
|
1122
1122
|
} from '../icons/square-dashed-mouse-pointer';
|
|
1123
1123
|
|
|
1124
|
-
// SquareDashed aliases
|
|
1125
|
-
export {
|
|
1126
|
-
/** @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
|
-
default as BoxSelect
|
|
1128
|
-
} from '../icons/square-dashed';
|
|
1129
|
-
|
|
1130
1124
|
// SquareDashedText aliases
|
|
1131
1125
|
export {
|
|
1132
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 */
|
|
@@ -1139,6 +1133,12 @@ export {
|
|
|
1139
1133
|
default as TextSelect
|
|
1140
1134
|
} from '../icons/square-dashed-text';
|
|
1141
1135
|
|
|
1136
|
+
// SquareDashed aliases
|
|
1137
|
+
export {
|
|
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 */
|
|
1139
|
+
default as BoxSelect
|
|
1140
|
+
} from '../icons/square-dashed';
|
|
1141
|
+
|
|
1142
1142
|
// SquareDivide aliases
|
|
1143
1143
|
export {
|
|
1144
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 */
|
|
@@ -1247,6 +1247,12 @@ export {
|
|
|
1247
1247
|
default as PilcrowSquare
|
|
1248
1248
|
} from '../icons/square-pilcrow';
|
|
1249
1249
|
|
|
1250
|
+
// SquarePlay aliases
|
|
1251
|
+
export {
|
|
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 */
|
|
1253
|
+
default as PlaySquare
|
|
1254
|
+
} from '../icons/square-play';
|
|
1255
|
+
|
|
1250
1256
|
// SquarePlus aliases
|
|
1251
1257
|
export {
|
|
1252
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,47 +1265,35 @@ export {
|
|
|
1259
1265
|
default as PowerSquare
|
|
1260
1266
|
} from '../icons/square-power';
|
|
1261
1267
|
|
|
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
|
-
// SquarePlay aliases
|
|
1269
|
-
export {
|
|
1270
|
-
/** @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 */
|
|
1271
|
-
default as PlaySquare
|
|
1272
|
-
} from '../icons/square-play';
|
|
1273
|
-
|
|
1274
1268
|
// SquareSigma aliases
|
|
1275
1269
|
export {
|
|
1276
1270
|
/** @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 */
|
|
1277
1271
|
default as SigmaSquare
|
|
1278
1272
|
} from '../icons/square-sigma';
|
|
1279
1273
|
|
|
1274
|
+
// SquareScissors aliases
|
|
1275
|
+
export {
|
|
1276
|
+
/** @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 */
|
|
1277
|
+
default as ScissorsSquare
|
|
1278
|
+
} from '../icons/square-scissors';
|
|
1279
|
+
|
|
1280
1280
|
// SquareSlash aliases
|
|
1281
1281
|
export {
|
|
1282
1282
|
/** @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 */
|
|
1283
1283
|
default as SlashSquare
|
|
1284
1284
|
} from '../icons/square-slash';
|
|
1285
1285
|
|
|
1286
|
-
// SquareSplitHorizontal aliases
|
|
1287
|
-
export {
|
|
1288
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1289
|
-
default as SplitSquareHorizontal
|
|
1290
|
-
} from '../icons/square-split-horizontal';
|
|
1291
|
-
|
|
1292
1286
|
// SquareSplitVertical aliases
|
|
1293
1287
|
export {
|
|
1294
1288
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
1295
1289
|
default as SplitSquareVertical
|
|
1296
1290
|
} from '../icons/square-split-vertical';
|
|
1297
1291
|
|
|
1298
|
-
//
|
|
1292
|
+
// SquareSplitHorizontal aliases
|
|
1299
1293
|
export {
|
|
1300
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1301
|
-
default as
|
|
1302
|
-
} from '../icons/square-
|
|
1294
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1295
|
+
default as SplitSquareHorizontal
|
|
1296
|
+
} from '../icons/square-split-horizontal';
|
|
1303
1297
|
|
|
1304
1298
|
// SquareUserRound aliases
|
|
1305
1299
|
export {
|
|
@@ -1307,6 +1301,12 @@ export {
|
|
|
1307
1301
|
default as UserSquare2
|
|
1308
1302
|
} from '../icons/square-user-round';
|
|
1309
1303
|
|
|
1304
|
+
// SquareTerminal aliases
|
|
1305
|
+
export {
|
|
1306
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
1307
|
+
default as TerminalSquare
|
|
1308
|
+
} from '../icons/square-terminal';
|
|
1309
|
+
|
|
1310
1310
|
// SquareUser aliases
|
|
1311
1311
|
export {
|
|
1312
1312
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
@@ -1331,18 +1331,18 @@ export {
|
|
|
1331
1331
|
default as AlignCenter
|
|
1332
1332
|
} from '../icons/text-align-center';
|
|
1333
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
|
-
|
|
1340
1334
|
// TextAlignJustify aliases
|
|
1341
1335
|
export {
|
|
1342
1336
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|
|
1343
1337
|
default as AlignJustify
|
|
1344
1338
|
} from '../icons/text-align-justify';
|
|
1345
1339
|
|
|
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
1346
|
// TextAlignStart aliases
|
|
1347
1347
|
export {
|
|
1348
1348
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
|