@lucide/astro 1.18.0 → 1.19.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 +3 -4
- package/src/aliases/aliases.ts +92 -92
- package/src/aliases/prefixed.ts +761 -737
- package/src/aliases/suffixed.ts +1102 -1078
- package/src/icons/ad.ts +18 -0
- package/src/icons/eye-dashed.ts +18 -0
- package/src/icons/index.ts +191 -179
- package/src/icons/list-sort-ascending.ts +18 -0
- package/src/icons/list-sort-descending.ts +18 -0
- package/src/icons/podium.ts +18 -0
- package/src/icons/save-pen.ts +18 -0
- package/src/icons/save-plus.ts +18 -0
- 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/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.19.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
51
|
"vitest": "^4.1.1",
|
|
51
|
-
"astro": "^6.1.10",
|
|
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
|
@@ -101,18 +101,18 @@ export {
|
|
|
101
101
|
default as Subtitles
|
|
102
102
|
} from '../icons/captions';
|
|
103
103
|
|
|
104
|
-
// ChartArea aliases
|
|
105
|
-
export {
|
|
106
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
107
|
-
default as AreaChart
|
|
108
|
-
} from '../icons/chart-area';
|
|
109
|
-
|
|
110
104
|
// ChartBarBig aliases
|
|
111
105
|
export {
|
|
112
106
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
113
107
|
default as BarChartHorizontalBig
|
|
114
108
|
} from '../icons/chart-bar-big';
|
|
115
109
|
|
|
110
|
+
// ChartArea aliases
|
|
111
|
+
export {
|
|
112
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
113
|
+
default as AreaChart
|
|
114
|
+
} from '../icons/chart-area';
|
|
115
|
+
|
|
116
116
|
// ChartBar aliases
|
|
117
117
|
export {
|
|
118
118
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
@@ -209,18 +209,18 @@ export {
|
|
|
209
209
|
default as ArrowDownRightFromCircle
|
|
210
210
|
} from '../icons/circle-arrow-out-down-right';
|
|
211
211
|
|
|
212
|
-
// CircleArrowOutUpLeft aliases
|
|
213
|
-
export {
|
|
214
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
215
|
-
default as ArrowUpLeftFromCircle
|
|
216
|
-
} from '../icons/circle-arrow-out-up-left';
|
|
217
|
-
|
|
218
212
|
// CircleArrowOutUpRight aliases
|
|
219
213
|
export {
|
|
220
214
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
221
215
|
default as ArrowUpRightFromCircle
|
|
222
216
|
} from '../icons/circle-arrow-out-up-right';
|
|
223
217
|
|
|
218
|
+
// CircleArrowOutUpLeft aliases
|
|
219
|
+
export {
|
|
220
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
221
|
+
default as ArrowUpLeftFromCircle
|
|
222
|
+
} from '../icons/circle-arrow-out-up-left';
|
|
223
|
+
|
|
224
224
|
// CircleArrowRight aliases
|
|
225
225
|
export {
|
|
226
226
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
@@ -269,18 +269,18 @@ export {
|
|
|
269
269
|
default as ChevronUpCircle
|
|
270
270
|
} from '../icons/circle-chevron-up';
|
|
271
271
|
|
|
272
|
-
// CircleDivide aliases
|
|
273
|
-
export {
|
|
274
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
275
|
-
default as DivideCircle
|
|
276
|
-
} from '../icons/circle-divide';
|
|
277
|
-
|
|
278
272
|
// CircleGauge aliases
|
|
279
273
|
export {
|
|
280
274
|
/** @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 */
|
|
281
275
|
default as GaugeCircle
|
|
282
276
|
} from '../icons/circle-gauge';
|
|
283
277
|
|
|
278
|
+
// CircleDivide aliases
|
|
279
|
+
export {
|
|
280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
281
|
+
default as DivideCircle
|
|
282
|
+
} from '../icons/circle-divide';
|
|
283
|
+
|
|
284
284
|
// CircleMinus aliases
|
|
285
285
|
export {
|
|
286
286
|
/** @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 */
|
|
@@ -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 */
|
|
@@ -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 */
|
|
@@ -809,24 +809,30 @@ export {
|
|
|
809
809
|
default as AlertOctagon
|
|
810
810
|
} from '../icons/octagon-alert';
|
|
811
811
|
|
|
812
|
-
// OctagonPause aliases
|
|
813
|
-
export {
|
|
814
|
-
/** @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 */
|
|
815
|
-
default as PauseOctagon
|
|
816
|
-
} from '../icons/octagon-pause';
|
|
817
|
-
|
|
818
812
|
// OctagonX aliases
|
|
819
813
|
export {
|
|
820
814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. This alias will be removed in v1.0 */
|
|
821
815
|
default as XOctagon
|
|
822
816
|
} from '../icons/octagon-x';
|
|
823
817
|
|
|
818
|
+
// OctagonPause aliases
|
|
819
|
+
export {
|
|
820
|
+
/** @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
|
+
default as PauseOctagon
|
|
822
|
+
} from '../icons/octagon-pause';
|
|
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 */
|
|
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,11 +845,11 @@ export {
|
|
|
839
845
|
default as PanelLeftInactive
|
|
840
846
|
} from '../icons/panel-left-dashed';
|
|
841
847
|
|
|
842
|
-
//
|
|
848
|
+
// PanelLeftOpen aliases
|
|
843
849
|
export {
|
|
844
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
845
|
-
default as
|
|
846
|
-
} from '../icons/panel-
|
|
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 */
|
|
851
|
+
default as SidebarOpen
|
|
852
|
+
} from '../icons/panel-left-open';
|
|
847
853
|
|
|
848
854
|
// PanelLeft aliases
|
|
849
855
|
export {
|
|
@@ -851,12 +857,6 @@ export {
|
|
|
851
857
|
default as Sidebar
|
|
852
858
|
} from '../icons/panel-left';
|
|
853
859
|
|
|
854
|
-
// PanelLeftOpen aliases
|
|
855
|
-
export {
|
|
856
|
-
/** @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
|
-
default as SidebarOpen
|
|
858
|
-
} from '../icons/panel-left-open';
|
|
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 */
|
|
@@ -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 */
|
|
@@ -1091,18 +1091,18 @@ export {
|
|
|
1091
1091
|
default as ChevronLeftSquare
|
|
1092
1092
|
} from '../icons/square-chevron-left';
|
|
1093
1093
|
|
|
1094
|
-
// SquareChevronRight aliases
|
|
1095
|
-
export {
|
|
1096
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
1097
|
-
default as ChevronRightSquare
|
|
1098
|
-
} from '../icons/square-chevron-right';
|
|
1099
|
-
|
|
1100
1094
|
// SquareChevronUp aliases
|
|
1101
1095
|
export {
|
|
1102
1096
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
1103
1097
|
default as ChevronUpSquare
|
|
1104
1098
|
} from '../icons/square-chevron-up';
|
|
1105
1099
|
|
|
1100
|
+
// SquareChevronRight aliases
|
|
1101
|
+
export {
|
|
1102
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
1103
|
+
default as ChevronRightSquare
|
|
1104
|
+
} from '../icons/square-chevron-right';
|
|
1105
|
+
|
|
1106
1106
|
// SquareCode aliases
|
|
1107
1107
|
export {
|
|
1108
1108
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} 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 */
|
|
@@ -1265,12 +1271,6 @@ export {
|
|
|
1265
1271
|
default as ScissorsSquare
|
|
1266
1272
|
} from '../icons/square-scissors';
|
|
1267
1273
|
|
|
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
1274
|
// SquareSigma aliases
|
|
1275
1275
|
export {
|
|
1276
1276
|
/** @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 */
|
|
@@ -1301,18 +1301,18 @@ export {
|
|
|
1301
1301
|
default as TerminalSquare
|
|
1302
1302
|
} from '../icons/square-terminal';
|
|
1303
1303
|
|
|
1304
|
-
// SquareUserRound aliases
|
|
1305
|
-
export {
|
|
1306
|
-
/** @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 */
|
|
1307
|
-
default as UserSquare2
|
|
1308
|
-
} from '../icons/square-user-round';
|
|
1309
|
-
|
|
1310
1304
|
// SquareUser aliases
|
|
1311
1305
|
export {
|
|
1312
1306
|
/** @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 */
|
|
1313
1307
|
default as UserSquare
|
|
1314
1308
|
} from '../icons/square-user';
|
|
1315
1309
|
|
|
1310
|
+
// SquareUserRound aliases
|
|
1311
|
+
export {
|
|
1312
|
+
/** @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 */
|
|
1313
|
+
default as UserSquare2
|
|
1314
|
+
} from '../icons/square-user-round';
|
|
1315
|
+
|
|
1316
1316
|
// SquareX aliases
|
|
1317
1317
|
export {
|
|
1318
1318
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
@@ -1445,18 +1445,18 @@ export {
|
|
|
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
|
-
|
|
1454
1448
|
// WalletMinimal aliases
|
|
1455
1449
|
export {
|
|
1456
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 */
|
|
1457
1451
|
default as Wallet2
|
|
1458
1452
|
} from '../icons/wallet-minimal';
|
|
1459
1453
|
|
|
1454
|
+
// Utensils aliases
|
|
1455
|
+
export {
|
|
1456
|
+
/** @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 */
|
|
1457
|
+
default as ForkKnife
|
|
1458
|
+
} from '../icons/utensils';
|
|
1459
|
+
|
|
1460
1460
|
// WandSparkles aliases
|
|
1461
1461
|
export {
|
|
1462
1462
|
/** @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 */
|