@lucide/astro 0.563.0 → 0.565.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 +1 -1
- package/src/aliases/aliases.ts +164 -164
- package/src/aliases/prefixed.ts +613 -603
- package/src/aliases/suffixed.ts +1033 -1023
- package/src/icons/bandage.ts +2 -2
- package/src/icons/bell-dot.ts +2 -2
- package/src/icons/book-key.ts +2 -2
- package/src/icons/bug-off.ts +2 -2
- package/src/icons/cloud-alert.ts +2 -2
- package/src/icons/cloud-check.ts +2 -2
- package/src/icons/database-search.ts +18 -0
- package/src/icons/file-cog.ts +2 -2
- package/src/icons/file-key.ts +2 -2
- package/src/icons/folder-key.ts +2 -2
- package/src/icons/git-branch.ts +2 -2
- package/src/icons/hard-drive.ts +2 -2
- package/src/icons/index.ts +125 -120
- package/src/icons/lens-concave.ts +18 -0
- package/src/icons/lens-convex.ts +18 -0
- package/src/icons/rotate-ccw-key.ts +2 -2
- package/src/icons/user-key.ts +18 -0
- package/src/icons/user-lock.ts +2 -2
- package/src/icons/user-round-key.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -53,36 +53,36 @@ export {
|
|
|
53
53
|
default as ArrowUpZa
|
|
54
54
|
} from '../icons/arrow-up-z-a';
|
|
55
55
|
|
|
56
|
-
// BadgeCheck aliases
|
|
57
|
-
export {
|
|
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 */
|
|
59
|
-
default as Verified
|
|
60
|
-
} from '../icons/badge-check';
|
|
61
|
-
|
|
62
56
|
// Axis3d aliases
|
|
63
57
|
export {
|
|
64
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 */
|
|
65
59
|
default as Axis3D
|
|
66
60
|
} from '../icons/axis-3d';
|
|
67
61
|
|
|
62
|
+
// BadgeCheck aliases
|
|
63
|
+
export {
|
|
64
|
+
/** @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
|
+
default as Verified
|
|
66
|
+
} from '../icons/badge-check';
|
|
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 */
|
|
71
71
|
default as BadgeHelp
|
|
72
72
|
} from '../icons/badge-question-mark';
|
|
73
73
|
|
|
74
|
-
// BetweenHorizontalEnd aliases
|
|
75
|
-
export {
|
|
76
|
-
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
77
|
-
default as BetweenHorizonalEnd
|
|
78
|
-
} from '../icons/between-horizontal-end';
|
|
79
|
-
|
|
80
74
|
// BetweenHorizontalStart aliases
|
|
81
75
|
export {
|
|
82
76
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
83
77
|
default as BetweenHorizonalStart
|
|
84
78
|
} from '../icons/between-horizontal-start';
|
|
85
79
|
|
|
80
|
+
// BetweenHorizontalEnd aliases
|
|
81
|
+
export {
|
|
82
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
83
|
+
default as BetweenHorizonalEnd
|
|
84
|
+
} from '../icons/between-horizontal-end';
|
|
85
|
+
|
|
86
86
|
// BookDashed aliases
|
|
87
87
|
export {
|
|
88
88
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. This alias will be removed in v1.0.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 */
|
|
@@ -143,18 +143,18 @@ export {
|
|
|
143
143
|
default as BarChart3
|
|
144
144
|
} from '../icons/chart-column';
|
|
145
145
|
|
|
146
|
-
// ChartNoAxesColumnIncreasing aliases
|
|
147
|
-
export {
|
|
148
|
-
/** @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 */
|
|
149
|
-
default as BarChart
|
|
150
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
151
|
-
|
|
152
146
|
// ChartLine aliases
|
|
153
147
|
export {
|
|
154
148
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. This alias will be removed in v1.0 */
|
|
155
149
|
default as LineChart
|
|
156
150
|
} from '../icons/chart-line';
|
|
157
151
|
|
|
152
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
153
|
+
export {
|
|
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 */
|
|
155
|
+
default as BarChart
|
|
156
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
157
|
+
|
|
158
158
|
// ChartNoAxesGantt aliases
|
|
159
159
|
export {
|
|
160
160
|
/** @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 */
|
|
@@ -227,18 +227,18 @@ export {
|
|
|
227
227
|
default as ArrowUpRightFromCircle
|
|
228
228
|
} from '../icons/circle-arrow-out-up-right';
|
|
229
229
|
|
|
230
|
-
// CircleArrowUp aliases
|
|
231
|
-
export {
|
|
232
|
-
/** @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 */
|
|
233
|
-
default as ArrowUpCircle
|
|
234
|
-
} from '../icons/circle-arrow-up';
|
|
235
|
-
|
|
236
230
|
// CircleArrowRight aliases
|
|
237
231
|
export {
|
|
238
232
|
/** @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 */
|
|
239
233
|
default as ArrowRightCircle
|
|
240
234
|
} from '../icons/circle-arrow-right';
|
|
241
235
|
|
|
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
242
|
// CircleCheckBig aliases
|
|
243
243
|
export {
|
|
244
244
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
@@ -257,18 +257,18 @@ export {
|
|
|
257
257
|
default as ChevronDownCircle
|
|
258
258
|
} from '../icons/circle-chevron-down';
|
|
259
259
|
|
|
260
|
-
// CircleChevronRight aliases
|
|
261
|
-
export {
|
|
262
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
263
|
-
default as ChevronRightCircle
|
|
264
|
-
} from '../icons/circle-chevron-right';
|
|
265
|
-
|
|
266
260
|
// CircleChevronLeft aliases
|
|
267
261
|
export {
|
|
268
262
|
/** @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 */
|
|
269
263
|
default as ChevronLeftCircle
|
|
270
264
|
} from '../icons/circle-chevron-left';
|
|
271
265
|
|
|
266
|
+
// CircleChevronRight aliases
|
|
267
|
+
export {
|
|
268
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
269
|
+
default as ChevronRightCircle
|
|
270
|
+
} from '../icons/circle-chevron-right';
|
|
271
|
+
|
|
272
272
|
// CircleChevronUp aliases
|
|
273
273
|
export {
|
|
274
274
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronUp} instead. This alias will be removed in v1.0 */
|
|
@@ -311,6 +311,12 @@ export {
|
|
|
311
311
|
default as PauseCircle
|
|
312
312
|
} from '../icons/circle-pause';
|
|
313
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
|
+
|
|
314
320
|
// CirclePlay aliases
|
|
315
321
|
export {
|
|
316
322
|
/** @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 */
|
|
@@ -323,12 +329,6 @@ export {
|
|
|
323
329
|
default as PlusCircle
|
|
324
330
|
} from '../icons/circle-plus';
|
|
325
331
|
|
|
326
|
-
// CirclePercent aliases
|
|
327
|
-
export {
|
|
328
|
-
/** @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 */
|
|
329
|
-
default as PercentCircle
|
|
330
|
-
} from '../icons/circle-percent';
|
|
331
|
-
|
|
332
332
|
// CirclePower aliases
|
|
333
333
|
export {
|
|
334
334
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePower} instead. This alias will be removed in v1.0 */
|
|
@@ -347,18 +347,18 @@ export {
|
|
|
347
347
|
default as CircleHelp
|
|
348
348
|
} from '../icons/circle-question-mark';
|
|
349
349
|
|
|
350
|
-
// CircleStop aliases
|
|
351
|
-
export {
|
|
352
|
-
/** @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
|
-
default as StopCircle
|
|
354
|
-
} from '../icons/circle-stop';
|
|
355
|
-
|
|
356
350
|
// CircleSlash2 aliases
|
|
357
351
|
export {
|
|
358
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 */
|
|
359
353
|
default as CircleSlashed
|
|
360
354
|
} from '../icons/circle-slash-2';
|
|
361
355
|
|
|
356
|
+
// CircleStop aliases
|
|
357
|
+
export {
|
|
358
|
+
/** @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 */
|
|
359
|
+
default as StopCircle
|
|
360
|
+
} from '../icons/circle-stop';
|
|
361
|
+
|
|
362
362
|
// CircleUserRound aliases
|
|
363
363
|
export {
|
|
364
364
|
/** @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 */
|
|
@@ -377,18 +377,18 @@ export {
|
|
|
377
377
|
default as XCircle
|
|
378
378
|
} from '../icons/circle-x';
|
|
379
379
|
|
|
380
|
-
// ClipboardPen aliases
|
|
381
|
-
export {
|
|
382
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. This alias will be removed in v1.0 */
|
|
383
|
-
default as ClipboardEdit
|
|
384
|
-
} from '../icons/clipboard-pen';
|
|
385
|
-
|
|
386
380
|
// ClipboardPenLine aliases
|
|
387
381
|
export {
|
|
388
382
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. This alias will be removed in v1.0 */
|
|
389
383
|
default as ClipboardSignature
|
|
390
384
|
} from '../icons/clipboard-pen-line';
|
|
391
385
|
|
|
386
|
+
// ClipboardPen aliases
|
|
387
|
+
export {
|
|
388
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. This alias will be removed in v1.0 */
|
|
389
|
+
default as ClipboardEdit
|
|
390
|
+
} from '../icons/clipboard-pen';
|
|
391
|
+
|
|
392
392
|
// CloudDownload aliases
|
|
393
393
|
export {
|
|
394
394
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. This alias will be removed in v1.0 */
|
|
@@ -479,24 +479,30 @@ export {
|
|
|
479
479
|
default as FileJson2
|
|
480
480
|
} from '../icons/file-braces-corner';
|
|
481
481
|
|
|
482
|
-
// FileBraces aliases
|
|
483
|
-
export {
|
|
484
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
485
|
-
default as FileJson
|
|
486
|
-
} from '../icons/file-braces';
|
|
487
|
-
|
|
488
482
|
// FileChartColumnIncreasing aliases
|
|
489
483
|
export {
|
|
490
484
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
491
485
|
default as FileBarChart
|
|
492
486
|
} from '../icons/file-chart-column-increasing';
|
|
493
487
|
|
|
488
|
+
// FileBraces aliases
|
|
489
|
+
export {
|
|
490
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
491
|
+
default as FileJson
|
|
492
|
+
} from '../icons/file-braces';
|
|
493
|
+
|
|
494
494
|
// FileChartColumn aliases
|
|
495
495
|
export {
|
|
496
496
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
497
497
|
default as FileBarChart2
|
|
498
498
|
} from '../icons/file-chart-column';
|
|
499
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
|
+
|
|
500
506
|
// FileChartPie aliases
|
|
501
507
|
export {
|
|
502
508
|
/** @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 */
|
|
@@ -509,12 +515,6 @@ export {
|
|
|
509
515
|
default as FileCheck2
|
|
510
516
|
} from '../icons/file-check-corner';
|
|
511
517
|
|
|
512
|
-
// FileChartLine aliases
|
|
513
|
-
export {
|
|
514
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
515
|
-
default as FileLineChart
|
|
516
|
-
} from '../icons/file-chart-line';
|
|
517
|
-
|
|
518
518
|
// FileCodeCorner aliases
|
|
519
519
|
export {
|
|
520
520
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. This alias will be removed in v1.0 */
|
|
@@ -557,18 +557,18 @@ export {
|
|
|
557
557
|
default as FileLock2
|
|
558
558
|
} from '../icons/file-lock';
|
|
559
559
|
|
|
560
|
-
// FileMinusCorner aliases
|
|
561
|
-
export {
|
|
562
|
-
/** @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 */
|
|
563
|
-
default as FileMinus2
|
|
564
|
-
} from '../icons/file-minus-corner';
|
|
565
|
-
|
|
566
560
|
// FilePenLine aliases
|
|
567
561
|
export {
|
|
568
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 */
|
|
569
563
|
default as FileSignature
|
|
570
564
|
} from '../icons/file-pen-line';
|
|
571
565
|
|
|
566
|
+
// FileMinusCorner aliases
|
|
567
|
+
export {
|
|
568
|
+
/** @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
|
+
default as FileMinus2
|
|
570
|
+
} from '../icons/file-minus-corner';
|
|
571
|
+
|
|
572
572
|
// FilePen aliases
|
|
573
573
|
export {
|
|
574
574
|
/** @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 */
|
|
@@ -737,18 +737,6 @@ export {
|
|
|
737
737
|
default as Layers3
|
|
738
738
|
} from '../icons/layers';
|
|
739
739
|
|
|
740
|
-
// ListIndentDecrease aliases
|
|
741
|
-
export {
|
|
742
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
743
|
-
default as Outdent
|
|
744
|
-
} from '../icons/list-indent-decrease';
|
|
745
|
-
|
|
746
|
-
// ListIndentDecrease aliases
|
|
747
|
-
export {
|
|
748
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
749
|
-
default as IndentDecrease
|
|
750
|
-
} from '../icons/list-indent-decrease';
|
|
751
|
-
|
|
752
740
|
// ListIndentIncrease aliases
|
|
753
741
|
export {
|
|
754
742
|
/** @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 +749,18 @@ export {
|
|
|
761
749
|
default as IndentIncrease
|
|
762
750
|
} from '../icons/list-indent-increase';
|
|
763
751
|
|
|
752
|
+
// ListIndentDecrease aliases
|
|
753
|
+
export {
|
|
754
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
755
|
+
default as Outdent
|
|
756
|
+
} from '../icons/list-indent-decrease';
|
|
757
|
+
|
|
758
|
+
// ListIndentDecrease aliases
|
|
759
|
+
export {
|
|
760
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
761
|
+
default as IndentDecrease
|
|
762
|
+
} from '../icons/list-indent-decrease';
|
|
763
|
+
|
|
764
764
|
// LoaderCircle aliases
|
|
765
765
|
export {
|
|
766
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 */
|
|
@@ -809,18 +809,18 @@ export {
|
|
|
809
809
|
default as Move3D
|
|
810
810
|
} from '../icons/move-3d';
|
|
811
811
|
|
|
812
|
-
// OctagonAlert aliases
|
|
813
|
-
export {
|
|
814
|
-
/** @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
|
-
default as AlertOctagon
|
|
816
|
-
} from '../icons/octagon-alert';
|
|
817
|
-
|
|
818
812
|
// OctagonPause aliases
|
|
819
813
|
export {
|
|
820
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 */
|
|
821
815
|
default as PauseOctagon
|
|
822
816
|
} from '../icons/octagon-pause';
|
|
823
817
|
|
|
818
|
+
// OctagonAlert aliases
|
|
819
|
+
export {
|
|
820
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. This alias will be removed in v1.0 */
|
|
821
|
+
default as AlertOctagon
|
|
822
|
+
} from '../icons/octagon-alert';
|
|
823
|
+
|
|
824
824
|
// OctagonX aliases
|
|
825
825
|
export {
|
|
826
826
|
/** @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 */
|
|
@@ -893,18 +893,18 @@ export {
|
|
|
893
893
|
default as Edit2
|
|
894
894
|
} from '../icons/pen';
|
|
895
895
|
|
|
896
|
-
// RectangleEllipsis aliases
|
|
897
|
-
export {
|
|
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 */
|
|
899
|
-
default as FormInput
|
|
900
|
-
} from '../icons/rectangle-ellipsis';
|
|
901
|
-
|
|
902
896
|
// PlugZap aliases
|
|
903
897
|
export {
|
|
904
898
|
/** @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 */
|
|
905
899
|
default as PlugZap2
|
|
906
900
|
} from '../icons/plug-zap';
|
|
907
901
|
|
|
902
|
+
// RectangleEllipsis aliases
|
|
903
|
+
export {
|
|
904
|
+
/** @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 */
|
|
905
|
+
default as FormInput
|
|
906
|
+
} from '../icons/rectangle-ellipsis';
|
|
907
|
+
|
|
908
908
|
// Rotate3d aliases
|
|
909
909
|
export {
|
|
910
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 */
|
|
@@ -923,18 +923,18 @@ export {
|
|
|
923
923
|
default as PanelsTopBottom
|
|
924
924
|
} from '../icons/rows-3';
|
|
925
925
|
|
|
926
|
-
// Scale3d aliases
|
|
927
|
-
export {
|
|
928
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
929
|
-
default as Scale3D
|
|
930
|
-
} from '../icons/scale-3d';
|
|
931
|
-
|
|
932
926
|
// SendHorizontal aliases
|
|
933
927
|
export {
|
|
934
928
|
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
935
929
|
default as SendHorizonal
|
|
936
930
|
} from '../icons/send-horizontal';
|
|
937
931
|
|
|
932
|
+
// Scale3d aliases
|
|
933
|
+
export {
|
|
934
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
935
|
+
default as Scale3D
|
|
936
|
+
} from '../icons/scale-3d';
|
|
937
|
+
|
|
938
938
|
// ShieldQuestionMark aliases
|
|
939
939
|
export {
|
|
940
940
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. This alias will be removed in v1.0 */
|
|
@@ -1079,18 +1079,18 @@ export {
|
|
|
1079
1079
|
default as ChevronDownSquare
|
|
1080
1080
|
} from '../icons/square-chevron-down';
|
|
1081
1081
|
|
|
1082
|
-
// SquareChevronLeft aliases
|
|
1083
|
-
export {
|
|
1084
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
1085
|
-
default as ChevronLeftSquare
|
|
1086
|
-
} from '../icons/square-chevron-left';
|
|
1087
|
-
|
|
1088
1082
|
// SquareChevronRight aliases
|
|
1089
1083
|
export {
|
|
1090
1084
|
/** @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 */
|
|
1091
1085
|
default as ChevronRightSquare
|
|
1092
1086
|
} from '../icons/square-chevron-right';
|
|
1093
1087
|
|
|
1088
|
+
// SquareChevronLeft aliases
|
|
1089
|
+
export {
|
|
1090
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
1091
|
+
default as ChevronLeftSquare
|
|
1092
|
+
} from '../icons/square-chevron-left';
|
|
1093
|
+
|
|
1094
1094
|
// SquareChevronUp aliases
|
|
1095
1095
|
export {
|
|
1096
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 */
|
|
@@ -1127,18 +1127,18 @@ export {
|
|
|
1127
1127
|
default as DivideSquare
|
|
1128
1128
|
} from '../icons/square-divide';
|
|
1129
1129
|
|
|
1130
|
-
// SquareEqual aliases
|
|
1131
|
-
export {
|
|
1132
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
1133
|
-
default as EqualSquare
|
|
1134
|
-
} from '../icons/square-equal';
|
|
1135
|
-
|
|
1136
1130
|
// SquareDot aliases
|
|
1137
1131
|
export {
|
|
1138
1132
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. This alias will be removed in v1.0 */
|
|
1139
1133
|
default as DotSquare
|
|
1140
1134
|
} from '../icons/square-dot';
|
|
1141
1135
|
|
|
1136
|
+
// SquareEqual aliases
|
|
1137
|
+
export {
|
|
1138
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. This alias will be removed in v1.0 */
|
|
1139
|
+
default as EqualSquare
|
|
1140
|
+
} from '../icons/square-equal';
|
|
1141
|
+
|
|
1142
1142
|
// SquareFunction aliases
|
|
1143
1143
|
export {
|
|
1144
1144
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
@@ -1193,6 +1193,12 @@ export {
|
|
|
1193
1193
|
default as ParkingSquare
|
|
1194
1194
|
} from '../icons/square-parking';
|
|
1195
1195
|
|
|
1196
|
+
// SquarePercent aliases
|
|
1197
|
+
export {
|
|
1198
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1199
|
+
default as PercentSquare
|
|
1200
|
+
} from '../icons/square-percent';
|
|
1201
|
+
|
|
1196
1202
|
// SquarePen aliases
|
|
1197
1203
|
export {
|
|
1198
1204
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
@@ -1211,11 +1217,11 @@ export {
|
|
|
1211
1217
|
default as PenSquare
|
|
1212
1218
|
} from '../icons/square-pen';
|
|
1213
1219
|
|
|
1214
|
-
//
|
|
1220
|
+
// SquarePilcrow aliases
|
|
1215
1221
|
export {
|
|
1216
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1217
|
-
default as
|
|
1218
|
-
} from '../icons/square-
|
|
1222
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
1223
|
+
default as PilcrowSquare
|
|
1224
|
+
} from '../icons/square-pilcrow';
|
|
1219
1225
|
|
|
1220
1226
|
// SquarePi aliases
|
|
1221
1227
|
export {
|
|
@@ -1223,11 +1229,11 @@ export {
|
|
|
1223
1229
|
default as PiSquare
|
|
1224
1230
|
} from '../icons/square-pi';
|
|
1225
1231
|
|
|
1226
|
-
//
|
|
1232
|
+
// SquarePlus aliases
|
|
1227
1233
|
export {
|
|
1228
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1229
|
-
default as
|
|
1230
|
-
} from '../icons/square-
|
|
1234
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
1235
|
+
default as PlusSquare
|
|
1236
|
+
} from '../icons/square-plus';
|
|
1231
1237
|
|
|
1232
1238
|
// SquarePlay aliases
|
|
1233
1239
|
export {
|
|
@@ -1235,35 +1241,23 @@ export {
|
|
|
1235
1241
|
default as PlaySquare
|
|
1236
1242
|
} from '../icons/square-play';
|
|
1237
1243
|
|
|
1238
|
-
// SquarePlus aliases
|
|
1239
|
-
export {
|
|
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 */
|
|
1241
|
-
default as PlusSquare
|
|
1242
|
-
} from '../icons/square-plus';
|
|
1243
|
-
|
|
1244
1244
|
// SquarePower aliases
|
|
1245
1245
|
export {
|
|
1246
1246
|
/** @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 */
|
|
1247
1247
|
default as PowerSquare
|
|
1248
1248
|
} from '../icons/square-power';
|
|
1249
1249
|
|
|
1250
|
-
// SquareSigma aliases
|
|
1251
|
-
export {
|
|
1252
|
-
/** @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 */
|
|
1253
|
-
default as SigmaSquare
|
|
1254
|
-
} from '../icons/square-sigma';
|
|
1255
|
-
|
|
1256
1250
|
// SquareScissors aliases
|
|
1257
1251
|
export {
|
|
1258
1252
|
/** @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 */
|
|
1259
1253
|
default as ScissorsSquare
|
|
1260
1254
|
} from '../icons/square-scissors';
|
|
1261
1255
|
|
|
1262
|
-
//
|
|
1256
|
+
// SquareSigma aliases
|
|
1263
1257
|
export {
|
|
1264
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1265
|
-
default as
|
|
1266
|
-
} from '../icons/square-
|
|
1258
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
1259
|
+
default as SigmaSquare
|
|
1260
|
+
} from '../icons/square-sigma';
|
|
1267
1261
|
|
|
1268
1262
|
// SquareSplitHorizontal aliases
|
|
1269
1263
|
export {
|
|
@@ -1271,11 +1265,11 @@ export {
|
|
|
1271
1265
|
default as SplitSquareHorizontal
|
|
1272
1266
|
} from '../icons/square-split-horizontal';
|
|
1273
1267
|
|
|
1274
|
-
//
|
|
1268
|
+
// SquareSlash aliases
|
|
1275
1269
|
export {
|
|
1276
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1277
|
-
default as
|
|
1278
|
-
} from '../icons/square-
|
|
1270
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
1271
|
+
default as SlashSquare
|
|
1272
|
+
} from '../icons/square-slash';
|
|
1279
1273
|
|
|
1280
1274
|
// SquareTerminal aliases
|
|
1281
1275
|
export {
|
|
@@ -1283,6 +1277,12 @@ export {
|
|
|
1283
1277
|
default as TerminalSquare
|
|
1284
1278
|
} from '../icons/square-terminal';
|
|
1285
1279
|
|
|
1280
|
+
// SquareSplitVertical aliases
|
|
1281
|
+
export {
|
|
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 */
|
|
1283
|
+
default as SplitSquareVertical
|
|
1284
|
+
} from '../icons/square-split-vertical';
|
|
1285
|
+
|
|
1286
1286
|
// SquareUserRound aliases
|
|
1287
1287
|
export {
|
|
1288
1288
|
/** @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 */
|
|
@@ -1385,41 +1385,35 @@ export {
|
|
|
1385
1385
|
default as School2
|
|
1386
1386
|
} from '../icons/university';
|
|
1387
1387
|
|
|
1388
|
-
// UserRoundCheck aliases
|
|
1389
|
-
export {
|
|
1390
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
1391
|
-
default as UserCheck2
|
|
1392
|
-
} from '../icons/user-round-check';
|
|
1393
|
-
|
|
1394
1388
|
// UserRoundCog aliases
|
|
1395
1389
|
export {
|
|
1396
1390
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
1397
1391
|
default as UserCog2
|
|
1398
1392
|
} from '../icons/user-round-cog';
|
|
1399
1393
|
|
|
1394
|
+
// UserRoundCheck aliases
|
|
1395
|
+
export {
|
|
1396
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
1397
|
+
default as UserCheck2
|
|
1398
|
+
} from '../icons/user-round-check';
|
|
1399
|
+
|
|
1400
1400
|
// UserRoundMinus aliases
|
|
1401
1401
|
export {
|
|
1402
1402
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. This alias will be removed in v1.0 */
|
|
1403
1403
|
default as UserMinus2
|
|
1404
1404
|
} from '../icons/user-round-minus';
|
|
1405
1405
|
|
|
1406
|
-
// UserRoundPlus aliases
|
|
1407
|
-
export {
|
|
1408
|
-
/** @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 */
|
|
1409
|
-
default as UserPlus2
|
|
1410
|
-
} from '../icons/user-round-plus';
|
|
1411
|
-
|
|
1412
1406
|
// UserRoundX aliases
|
|
1413
1407
|
export {
|
|
1414
1408
|
/** @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 */
|
|
1415
1409
|
default as UserX2
|
|
1416
1410
|
} from '../icons/user-round-x';
|
|
1417
1411
|
|
|
1418
|
-
//
|
|
1412
|
+
// UserRoundPlus aliases
|
|
1419
1413
|
export {
|
|
1420
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1421
|
-
default as
|
|
1422
|
-
} from '../icons/user-round';
|
|
1414
|
+
/** @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 */
|
|
1415
|
+
default as UserPlus2
|
|
1416
|
+
} from '../icons/user-round-plus';
|
|
1423
1417
|
|
|
1424
1418
|
// UsersRound aliases
|
|
1425
1419
|
export {
|
|
@@ -1427,24 +1421,30 @@ export {
|
|
|
1427
1421
|
default as Users2
|
|
1428
1422
|
} from '../icons/users-round';
|
|
1429
1423
|
|
|
1424
|
+
// UserRound aliases
|
|
1425
|
+
export {
|
|
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 */
|
|
1427
|
+
default as User2
|
|
1428
|
+
} from '../icons/user-round';
|
|
1429
|
+
|
|
1430
1430
|
// UtensilsCrossed aliases
|
|
1431
1431
|
export {
|
|
1432
1432
|
/** @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 */
|
|
1433
1433
|
default as ForkKnifeCrossed
|
|
1434
1434
|
} from '../icons/utensils-crossed';
|
|
1435
1435
|
|
|
1436
|
-
// WalletMinimal aliases
|
|
1437
|
-
export {
|
|
1438
|
-
/** @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 */
|
|
1439
|
-
default as Wallet2
|
|
1440
|
-
} from '../icons/wallet-minimal';
|
|
1441
|
-
|
|
1442
1436
|
// Utensils aliases
|
|
1443
1437
|
export {
|
|
1444
1438
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1445
1439
|
default as ForkKnife
|
|
1446
1440
|
} from '../icons/utensils';
|
|
1447
1441
|
|
|
1442
|
+
// WalletMinimal aliases
|
|
1443
|
+
export {
|
|
1444
|
+
/** @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 */
|
|
1445
|
+
default as Wallet2
|
|
1446
|
+
} from '../icons/wallet-minimal';
|
|
1447
|
+
|
|
1448
1448
|
// WandSparkles aliases
|
|
1449
1449
|
export {
|
|
1450
1450
|
/** @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 */
|