@lucide/astro 1.0.0 → 1.1.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 +5 -5
- package/src/aliases/aliases.ts +158 -164
- package/src/aliases/prefixed.ts +779 -817
- package/src/aliases/suffixed.ts +1070 -1108
- package/src/icons/arrow-big-down-dash.ts +2 -2
- package/src/icons/arrow-big-down.ts +2 -2
- package/src/icons/arrow-big-left-dash.ts +2 -2
- package/src/icons/arrow-big-left.ts +2 -2
- package/src/icons/arrow-big-right-dash.ts +2 -2
- package/src/icons/arrow-big-right.ts +2 -2
- package/src/icons/arrow-big-up-dash.ts +2 -2
- package/src/icons/arrow-big-up.ts +2 -2
- package/src/icons/circle-user-round.ts +2 -2
- package/src/icons/index.ts +68 -85
- package/src/icons/milestone.ts +2 -2
- package/src/icons/{framer.ts → road.ts} +5 -5
- package/src/icons/signpost.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/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/twitch.ts +0 -18
- package/src/icons/twitter.ts +0 -18
- package/src/icons/youtube.ts +0 -18
package/src/aliases/aliases.ts
CHANGED
|
@@ -53,18 +53,18 @@ export {
|
|
|
53
53
|
default as ArrowUpZa
|
|
54
54
|
} from '../icons/arrow-up-z-a';
|
|
55
55
|
|
|
56
|
-
// Axis3d aliases
|
|
57
|
-
export {
|
|
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 */
|
|
59
|
-
default as Axis3D
|
|
60
|
-
} from '../icons/axis-3d';
|
|
61
|
-
|
|
62
56
|
// BadgeCheck aliases
|
|
63
57
|
export {
|
|
64
58
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
|
|
65
59
|
default as Verified
|
|
66
60
|
} from '../icons/badge-check';
|
|
67
61
|
|
|
62
|
+
// Axis3d aliases
|
|
63
|
+
export {
|
|
64
|
+
/** @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 */
|
|
65
|
+
default as Axis3D
|
|
66
|
+
} from '../icons/axis-3d';
|
|
67
|
+
|
|
68
68
|
// BadgeQuestionMark aliases
|
|
69
69
|
export {
|
|
70
70
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. This alias will be removed in v1.0 */
|
|
@@ -95,18 +95,18 @@ export {
|
|
|
95
95
|
default as CurlyBraces
|
|
96
96
|
} from '../icons/braces';
|
|
97
97
|
|
|
98
|
-
// ChartArea aliases
|
|
99
|
-
export {
|
|
100
|
-
/** @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 */
|
|
101
|
-
default as AreaChart
|
|
102
|
-
} from '../icons/chart-area';
|
|
103
|
-
|
|
104
98
|
// Captions aliases
|
|
105
99
|
export {
|
|
106
100
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. This alias will be removed in v1.0 */
|
|
107
101
|
default as Subtitles
|
|
108
102
|
} from '../icons/captions';
|
|
109
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
110
|
// ChartBarBig aliases
|
|
111
111
|
export {
|
|
112
112
|
/** @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 */
|
|
@@ -119,6 +119,12 @@ export {
|
|
|
119
119
|
default as BarChartHorizontal
|
|
120
120
|
} from '../icons/chart-bar';
|
|
121
121
|
|
|
122
|
+
// ChartCandlestick aliases
|
|
123
|
+
export {
|
|
124
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
125
|
+
default as CandlestickChart
|
|
126
|
+
} from '../icons/chart-candlestick';
|
|
127
|
+
|
|
122
128
|
// ChartColumnBig aliases
|
|
123
129
|
export {
|
|
124
130
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnBig} instead. This alias will be removed in v1.0 */
|
|
@@ -131,11 +137,11 @@ export {
|
|
|
131
137
|
default as BarChart4
|
|
132
138
|
} from '../icons/chart-column-increasing';
|
|
133
139
|
|
|
134
|
-
//
|
|
140
|
+
// ChartColumn aliases
|
|
135
141
|
export {
|
|
136
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
137
|
-
default as
|
|
138
|
-
} from '../icons/chart-
|
|
142
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
143
|
+
default as BarChart3
|
|
144
|
+
} from '../icons/chart-column';
|
|
139
145
|
|
|
140
146
|
// ChartLine aliases
|
|
141
147
|
export {
|
|
@@ -143,12 +149,6 @@ export {
|
|
|
143
149
|
default as LineChart
|
|
144
150
|
} from '../icons/chart-line';
|
|
145
151
|
|
|
146
|
-
// ChartColumn aliases
|
|
147
|
-
export {
|
|
148
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. This alias will be removed in v1.0 */
|
|
149
|
-
default as BarChart3
|
|
150
|
-
} from '../icons/chart-column';
|
|
151
|
-
|
|
152
152
|
// ChartNoAxesColumnIncreasing aliases
|
|
153
153
|
export {
|
|
154
154
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} 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 */
|
|
@@ -233,23 +227,17 @@ export {
|
|
|
233
227
|
default as ArrowRightCircle
|
|
234
228
|
} from '../icons/circle-arrow-right';
|
|
235
229
|
|
|
236
|
-
// CircleArrowUp aliases
|
|
237
|
-
export {
|
|
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
|
-
default as ArrowUpCircle
|
|
240
|
-
} from '../icons/circle-arrow-up';
|
|
241
|
-
|
|
242
230
|
// CircleCheckBig aliases
|
|
243
231
|
export {
|
|
244
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 */
|
|
245
233
|
default as CheckCircle
|
|
246
234
|
} from '../icons/circle-check-big';
|
|
247
235
|
|
|
248
|
-
//
|
|
236
|
+
// CircleArrowUp aliases
|
|
249
237
|
export {
|
|
250
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
251
|
-
default as
|
|
252
|
-
} from '../icons/circle-
|
|
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
|
+
default as ArrowUpCircle
|
|
240
|
+
} from '../icons/circle-arrow-up';
|
|
253
241
|
|
|
254
242
|
// CircleCheck aliases
|
|
255
243
|
export {
|
|
@@ -257,6 +245,12 @@ export {
|
|
|
257
245
|
default as CheckCircle2
|
|
258
246
|
} from '../icons/circle-check';
|
|
259
247
|
|
|
248
|
+
// CircleChevronDown aliases
|
|
249
|
+
export {
|
|
250
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. This alias will be removed in v1.0 */
|
|
251
|
+
default as ChevronDownCircle
|
|
252
|
+
} from '../icons/circle-chevron-down';
|
|
253
|
+
|
|
260
254
|
// CircleChevronLeft aliases
|
|
261
255
|
export {
|
|
262
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 */
|
|
@@ -449,6 +443,12 @@ export {
|
|
|
449
443
|
default as Globe2
|
|
450
444
|
} from '../icons/earth';
|
|
451
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
452
|
// EllipsisVertical aliases
|
|
453
453
|
export {
|
|
454
454
|
/** @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 */
|
|
@@ -467,11 +467,11 @@ export {
|
|
|
467
467
|
default as FileBadge2
|
|
468
468
|
} from '../icons/file-badge';
|
|
469
469
|
|
|
470
|
-
//
|
|
470
|
+
// FileBracesCorner aliases
|
|
471
471
|
export {
|
|
472
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
473
|
-
default as
|
|
474
|
-
} from '../icons/
|
|
472
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
473
|
+
default as FileJson2
|
|
474
|
+
} from '../icons/file-braces-corner';
|
|
475
475
|
|
|
476
476
|
// FileBraces aliases
|
|
477
477
|
export {
|
|
@@ -479,12 +479,6 @@ export {
|
|
|
479
479
|
default as FileJson
|
|
480
480
|
} from '../icons/file-braces';
|
|
481
481
|
|
|
482
|
-
// FileBracesCorner aliases
|
|
483
|
-
export {
|
|
484
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
485
|
-
default as FileJson2
|
|
486
|
-
} from '../icons/file-braces-corner';
|
|
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 */
|
|
@@ -527,12 +521,6 @@ export {
|
|
|
527
521
|
default as FileCog2
|
|
528
522
|
} from '../icons/file-cog';
|
|
529
523
|
|
|
530
|
-
// FileExclamationPoint aliases
|
|
531
|
-
export {
|
|
532
|
-
/** @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
|
-
default as FileWarning
|
|
534
|
-
} from '../icons/file-exclamation-point';
|
|
535
|
-
|
|
536
524
|
// FileHeadphone aliases
|
|
537
525
|
export {
|
|
538
526
|
/** @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 */
|
|
@@ -545,6 +533,12 @@ export {
|
|
|
545
533
|
default as FileAudio2
|
|
546
534
|
} from '../icons/file-headphone';
|
|
547
535
|
|
|
536
|
+
// FileExclamationPoint aliases
|
|
537
|
+
export {
|
|
538
|
+
/** @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
|
+
default as FileWarning
|
|
540
|
+
} from '../icons/file-exclamation-point';
|
|
541
|
+
|
|
548
542
|
// FileKey aliases
|
|
549
543
|
export {
|
|
550
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 */
|
|
@@ -557,36 +551,36 @@ export {
|
|
|
557
551
|
default as FileLock2
|
|
558
552
|
} from '../icons/file-lock';
|
|
559
553
|
|
|
560
|
-
// FilePenLine aliases
|
|
561
|
-
export {
|
|
562
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
563
|
-
default as FileSignature
|
|
564
|
-
} from '../icons/file-pen-line';
|
|
565
|
-
|
|
566
554
|
// FileMinusCorner aliases
|
|
567
555
|
export {
|
|
568
556
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
569
557
|
default as FileMinus2
|
|
570
558
|
} from '../icons/file-minus-corner';
|
|
571
559
|
|
|
560
|
+
// FilePenLine aliases
|
|
561
|
+
export {
|
|
562
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
563
|
+
default as FileSignature
|
|
564
|
+
} from '../icons/file-pen-line';
|
|
565
|
+
|
|
572
566
|
// FilePen aliases
|
|
573
567
|
export {
|
|
574
568
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
575
569
|
default as FileEdit
|
|
576
570
|
} from '../icons/file-pen';
|
|
577
571
|
|
|
578
|
-
// FilePlusCorner aliases
|
|
579
|
-
export {
|
|
580
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
581
|
-
default as FilePlus2
|
|
582
|
-
} from '../icons/file-plus-corner';
|
|
583
|
-
|
|
584
572
|
// FilePlay aliases
|
|
585
573
|
export {
|
|
586
574
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
587
575
|
default as FileVideo
|
|
588
576
|
} from '../icons/file-play';
|
|
589
577
|
|
|
578
|
+
// FilePlusCorner aliases
|
|
579
|
+
export {
|
|
580
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
581
|
+
default as FilePlus2
|
|
582
|
+
} from '../icons/file-plus-corner';
|
|
583
|
+
|
|
590
584
|
// FileQuestionMark aliases
|
|
591
585
|
export {
|
|
592
586
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
@@ -761,18 +755,18 @@ export {
|
|
|
761
755
|
default as IndentIncrease
|
|
762
756
|
} from '../icons/list-indent-increase';
|
|
763
757
|
|
|
764
|
-
// LoaderCircle aliases
|
|
765
|
-
export {
|
|
766
|
-
/** @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 */
|
|
767
|
-
default as Loader2
|
|
768
|
-
} from '../icons/loader-circle';
|
|
769
|
-
|
|
770
758
|
// LockKeyholeOpen aliases
|
|
771
759
|
export {
|
|
772
760
|
/** @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 */
|
|
773
761
|
default as UnlockKeyhole
|
|
774
762
|
} from '../icons/lock-keyhole-open';
|
|
775
763
|
|
|
764
|
+
// LoaderCircle aliases
|
|
765
|
+
export {
|
|
766
|
+
/** @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 */
|
|
767
|
+
default as Loader2
|
|
768
|
+
} from '../icons/loader-circle';
|
|
769
|
+
|
|
776
770
|
// LockOpen aliases
|
|
777
771
|
export {
|
|
778
772
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -797,24 +791,30 @@ export {
|
|
|
797
791
|
default as MessageCircleQuestion
|
|
798
792
|
} from '../icons/message-circle-question-mark';
|
|
799
793
|
|
|
800
|
-
// Move3d aliases
|
|
801
|
-
export {
|
|
802
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
803
|
-
default as Move3D
|
|
804
|
-
} from '../icons/move-3d';
|
|
805
|
-
|
|
806
794
|
// MicVocal aliases
|
|
807
795
|
export {
|
|
808
796
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. This alias will be removed in v1.0 */
|
|
809
797
|
default as Mic2
|
|
810
798
|
} from '../icons/mic-vocal';
|
|
811
799
|
|
|
800
|
+
// Move3d aliases
|
|
801
|
+
export {
|
|
802
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
803
|
+
default as Move3D
|
|
804
|
+
} from '../icons/move-3d';
|
|
805
|
+
|
|
812
806
|
// OctagonAlert aliases
|
|
813
807
|
export {
|
|
814
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 */
|
|
815
809
|
default as AlertOctagon
|
|
816
810
|
} from '../icons/octagon-alert';
|
|
817
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
818
|
// OctagonX aliases
|
|
819
819
|
export {
|
|
820
820
|
/** @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 */
|
|
@@ -827,12 +827,6 @@ export {
|
|
|
827
827
|
default as Paintbrush2
|
|
828
828
|
} from '../icons/paintbrush-vertical';
|
|
829
829
|
|
|
830
|
-
// OctagonPause aliases
|
|
831
|
-
export {
|
|
832
|
-
/** @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 */
|
|
833
|
-
default as PauseOctagon
|
|
834
|
-
} from '../icons/octagon-pause';
|
|
835
|
-
|
|
836
830
|
// PanelBottomDashed aliases
|
|
837
831
|
export {
|
|
838
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 */
|
|
@@ -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 */
|
|
@@ -905,18 +899,18 @@ export {
|
|
|
905
899
|
default as FormInput
|
|
906
900
|
} from '../icons/rectangle-ellipsis';
|
|
907
901
|
|
|
908
|
-
// Rotate3d aliases
|
|
909
|
-
export {
|
|
910
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. This alias will be removed in v1.0 */
|
|
911
|
-
default as Rotate3D
|
|
912
|
-
} from '../icons/rotate-3d';
|
|
913
|
-
|
|
914
902
|
// Rows2 aliases
|
|
915
903
|
export {
|
|
916
904
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
917
905
|
default as Rows
|
|
918
906
|
} from '../icons/rows-2';
|
|
919
907
|
|
|
908
|
+
// Rotate3d aliases
|
|
909
|
+
export {
|
|
910
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. This alias will be removed in v1.0 */
|
|
911
|
+
default as Rotate3D
|
|
912
|
+
} from '../icons/rotate-3d';
|
|
913
|
+
|
|
920
914
|
// Rows3 aliases
|
|
921
915
|
export {
|
|
922
916
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} 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,18 +1055,6 @@ export {
|
|
|
1061
1055
|
default as FlipVertical
|
|
1062
1056
|
} from '../icons/square-centerline-dashed-vertical';
|
|
1063
1057
|
|
|
1064
|
-
// SquareCheckBig aliases
|
|
1065
|
-
export {
|
|
1066
|
-
/** @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 */
|
|
1067
|
-
default as CheckSquare
|
|
1068
|
-
} from '../icons/square-check-big';
|
|
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
1058
|
// SquareChartGantt aliases
|
|
1077
1059
|
export {
|
|
1078
1060
|
/** @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 */
|
|
@@ -1085,6 +1067,18 @@ export {
|
|
|
1085
1067
|
default as SquareGanttChart
|
|
1086
1068
|
} from '../icons/square-chart-gantt';
|
|
1087
1069
|
|
|
1070
|
+
// SquareCheckBig aliases
|
|
1071
|
+
export {
|
|
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 */
|
|
1073
|
+
default as CheckSquare
|
|
1074
|
+
} from '../icons/square-check-big';
|
|
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
|
+
|
|
1088
1082
|
// SquareChevronDown aliases
|
|
1089
1083
|
export {
|
|
1090
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 */
|
|
@@ -1115,12 +1109,6 @@ export {
|
|
|
1115
1109
|
default as CodeSquare
|
|
1116
1110
|
} from '../icons/square-code';
|
|
1117
1111
|
|
|
1118
|
-
// SquareDashedMousePointer aliases
|
|
1119
|
-
export {
|
|
1120
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
1121
|
-
default as MousePointerSquareDashed
|
|
1122
|
-
} from '../icons/square-dashed-mouse-pointer';
|
|
1123
|
-
|
|
1124
1112
|
// SquareDashedKanban aliases
|
|
1125
1113
|
export {
|
|
1126
1114
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. This alias will be removed in v1.0 */
|
|
@@ -1133,6 +1121,12 @@ export {
|
|
|
1133
1121
|
default as BoxSelect
|
|
1134
1122
|
} from '../icons/square-dashed';
|
|
1135
1123
|
|
|
1124
|
+
// SquareDashedMousePointer aliases
|
|
1125
|
+
export {
|
|
1126
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
1127
|
+
default as MousePointerSquareDashed
|
|
1128
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
1129
|
+
|
|
1136
1130
|
// SquareDivide aliases
|
|
1137
1131
|
export {
|
|
1138
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 */
|
|
@@ -1169,18 +1163,18 @@ export {
|
|
|
1169
1163
|
default as LibrarySquare
|
|
1170
1164
|
} from '../icons/square-library';
|
|
1171
1165
|
|
|
1172
|
-
// SquareM aliases
|
|
1173
|
-
export {
|
|
1174
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
1175
|
-
default as MSquare
|
|
1176
|
-
} from '../icons/square-m';
|
|
1177
|
-
|
|
1178
1166
|
// SquareMenu aliases
|
|
1179
1167
|
export {
|
|
1180
1168
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1181
1169
|
default as MenuSquare
|
|
1182
1170
|
} from '../icons/square-menu';
|
|
1183
1171
|
|
|
1172
|
+
// SquareM aliases
|
|
1173
|
+
export {
|
|
1174
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
1175
|
+
default as MSquare
|
|
1176
|
+
} from '../icons/square-m';
|
|
1177
|
+
|
|
1184
1178
|
// SquareMinus aliases
|
|
1185
1179
|
export {
|
|
1186
1180
|
/** @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 */
|
|
@@ -1241,18 +1235,18 @@ export {
|
|
|
1241
1235
|
default as PilcrowSquare
|
|
1242
1236
|
} from '../icons/square-pilcrow';
|
|
1243
1237
|
|
|
1244
|
-
// SquarePlay aliases
|
|
1245
|
-
export {
|
|
1246
|
-
/** @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 */
|
|
1247
|
-
default as PlaySquare
|
|
1248
|
-
} from '../icons/square-play';
|
|
1249
|
-
|
|
1250
1238
|
// SquarePlus aliases
|
|
1251
1239
|
export {
|
|
1252
1240
|
/** @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 */
|
|
1253
1241
|
default as PlusSquare
|
|
1254
1242
|
} from '../icons/square-plus';
|
|
1255
1243
|
|
|
1244
|
+
// SquarePlay aliases
|
|
1245
|
+
export {
|
|
1246
|
+
/** @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 */
|
|
1247
|
+
default as PlaySquare
|
|
1248
|
+
} from '../icons/square-play';
|
|
1249
|
+
|
|
1256
1250
|
// SquarePower aliases
|
|
1257
1251
|
export {
|
|
1258
1252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. This alias will be removed in v1.0 */
|
|
@@ -1283,23 +1277,17 @@ export {
|
|
|
1283
1277
|
default as SplitSquareHorizontal
|
|
1284
1278
|
} from '../icons/square-split-horizontal';
|
|
1285
1279
|
|
|
1286
|
-
// SquareTerminal aliases
|
|
1287
|
-
export {
|
|
1288
|
-
/** @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 */
|
|
1289
|
-
default as TerminalSquare
|
|
1290
|
-
} from '../icons/square-terminal';
|
|
1291
|
-
|
|
1292
1280
|
// SquareSplitVertical aliases
|
|
1293
1281
|
export {
|
|
1294
1282
|
/** @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
1283
|
default as SplitSquareVertical
|
|
1296
1284
|
} from '../icons/square-split-vertical';
|
|
1297
1285
|
|
|
1298
|
-
//
|
|
1286
|
+
// SquareTerminal aliases
|
|
1299
1287
|
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-
|
|
1288
|
+
/** @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 */
|
|
1289
|
+
default as TerminalSquare
|
|
1290
|
+
} from '../icons/square-terminal';
|
|
1303
1291
|
|
|
1304
1292
|
// SquareUserRound aliases
|
|
1305
1293
|
export {
|
|
@@ -1307,6 +1295,12 @@ export {
|
|
|
1307
1295
|
default as UserSquare2
|
|
1308
1296
|
} from '../icons/square-user-round';
|
|
1309
1297
|
|
|
1298
|
+
// SquareUser aliases
|
|
1299
|
+
export {
|
|
1300
|
+
/** @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 */
|
|
1301
|
+
default as UserSquare
|
|
1302
|
+
} from '../icons/square-user';
|
|
1303
|
+
|
|
1310
1304
|
// SquareX aliases
|
|
1311
1305
|
export {
|
|
1312
1306
|
/** @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 */
|
|
@@ -1379,18 +1373,18 @@ export {
|
|
|
1379
1373
|
default as Palmtree
|
|
1380
1374
|
} from '../icons/tree-palm';
|
|
1381
1375
|
|
|
1382
|
-
// TriangleAlert aliases
|
|
1383
|
-
export {
|
|
1384
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
1385
|
-
default as AlertTriangle
|
|
1386
|
-
} from '../icons/triangle-alert';
|
|
1387
|
-
|
|
1388
1376
|
// TvMinimal aliases
|
|
1389
1377
|
export {
|
|
1390
1378
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|
|
1391
1379
|
default as Tv2
|
|
1392
1380
|
} from '../icons/tv-minimal';
|
|
1393
1381
|
|
|
1382
|
+
// TriangleAlert aliases
|
|
1383
|
+
export {
|
|
1384
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
1385
|
+
default as AlertTriangle
|
|
1386
|
+
} from '../icons/triangle-alert';
|
|
1387
|
+
|
|
1394
1388
|
// University aliases
|
|
1395
1389
|
export {
|
|
1396
1390
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
@@ -1415,41 +1409,35 @@ export {
|
|
|
1415
1409
|
default as UserMinus2
|
|
1416
1410
|
} from '../icons/user-round-minus';
|
|
1417
1411
|
|
|
1418
|
-
// UserRoundPlus aliases
|
|
1419
|
-
export {
|
|
1420
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
1421
|
-
default as UserPlus2
|
|
1422
|
-
} from '../icons/user-round-plus';
|
|
1423
|
-
|
|
1424
1412
|
// UserRoundX aliases
|
|
1425
1413
|
export {
|
|
1426
1414
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
1427
1415
|
default as UserX2
|
|
1428
1416
|
} from '../icons/user-round-x';
|
|
1429
1417
|
|
|
1418
|
+
// UserRoundPlus aliases
|
|
1419
|
+
export {
|
|
1420
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
1421
|
+
default as UserPlus2
|
|
1422
|
+
} from '../icons/user-round-plus';
|
|
1423
|
+
|
|
1430
1424
|
// UserRound aliases
|
|
1431
1425
|
export {
|
|
1432
1426
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
1433
1427
|
default as User2
|
|
1434
1428
|
} from '../icons/user-round';
|
|
1435
1429
|
|
|
1436
|
-
// UtensilsCrossed aliases
|
|
1437
|
-
export {
|
|
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 */
|
|
1439
|
-
default as ForkKnifeCrossed
|
|
1440
|
-
} from '../icons/utensils-crossed';
|
|
1441
|
-
|
|
1442
1430
|
// UsersRound aliases
|
|
1443
1431
|
export {
|
|
1444
1432
|
/** @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 */
|
|
1445
1433
|
default as Users2
|
|
1446
1434
|
} from '../icons/users-round';
|
|
1447
1435
|
|
|
1448
|
-
//
|
|
1436
|
+
// UtensilsCrossed aliases
|
|
1449
1437
|
export {
|
|
1450
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1451
|
-
default as
|
|
1452
|
-
} from '../icons/utensils';
|
|
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 */
|
|
1439
|
+
default as ForkKnifeCrossed
|
|
1440
|
+
} from '../icons/utensils-crossed';
|
|
1453
1441
|
|
|
1454
1442
|
// WalletMinimal aliases
|
|
1455
1443
|
export {
|
|
@@ -1457,6 +1445,12 @@ export {
|
|
|
1457
1445
|
default as Wallet2
|
|
1458
1446
|
} from '../icons/wallet-minimal';
|
|
1459
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
|
+
|
|
1460
1454
|
// WandSparkles aliases
|
|
1461
1455
|
export {
|
|
1462
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 */
|