@lucide/astro 0.563.0 → 0.564.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 +108 -108
- package/src/aliases/prefixed.ts +678 -672
- package/src/aliases/suffixed.ts +1127 -1121
- 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 +167 -164
- 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,18 +53,18 @@ 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 */
|
|
@@ -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,30 +143,30 @@ 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
|
|
|
158
|
-
// ChartNoAxesGantt aliases
|
|
159
|
-
export {
|
|
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 */
|
|
161
|
-
default as GanttChart
|
|
162
|
-
} from '../icons/chart-no-axes-gantt';
|
|
163
|
-
|
|
164
152
|
// ChartNoAxesColumn aliases
|
|
165
153
|
export {
|
|
166
154
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. This alias will be removed in v1.0 */
|
|
167
155
|
default as BarChart2
|
|
168
156
|
} from '../icons/chart-no-axes-column';
|
|
169
157
|
|
|
158
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
159
|
+
export {
|
|
160
|
+
/** @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 */
|
|
161
|
+
default as BarChart
|
|
162
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
163
|
+
|
|
164
|
+
// ChartNoAxesGantt aliases
|
|
165
|
+
export {
|
|
166
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
167
|
+
default as GanttChart
|
|
168
|
+
} from '../icons/chart-no-axes-gantt';
|
|
169
|
+
|
|
170
170
|
// ChartPie aliases
|
|
171
171
|
export {
|
|
172
172
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
@@ -191,18 +191,18 @@ export {
|
|
|
191
191
|
default as AlertCircle
|
|
192
192
|
} from '../icons/circle-alert';
|
|
193
193
|
|
|
194
|
-
// CircleArrowDown aliases
|
|
195
|
-
export {
|
|
196
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
197
|
-
default as ArrowDownCircle
|
|
198
|
-
} from '../icons/circle-arrow-down';
|
|
199
|
-
|
|
200
194
|
// CircleArrowLeft aliases
|
|
201
195
|
export {
|
|
202
196
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
203
197
|
default as ArrowLeftCircle
|
|
204
198
|
} from '../icons/circle-arrow-left';
|
|
205
199
|
|
|
200
|
+
// CircleArrowDown aliases
|
|
201
|
+
export {
|
|
202
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowDown} instead. This alias will be removed in v1.0 */
|
|
203
|
+
default as ArrowDownCircle
|
|
204
|
+
} from '../icons/circle-arrow-down';
|
|
205
|
+
|
|
206
206
|
// CircleArrowOutDownLeft aliases
|
|
207
207
|
export {
|
|
208
208
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -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 */
|
|
@@ -497,6 +497,12 @@ export {
|
|
|
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 */
|
|
@@ -527,12 +527,6 @@ export {
|
|
|
527
527
|
default as FileCog2
|
|
528
528
|
} from '../icons/file-cog';
|
|
529
529
|
|
|
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
530
|
// FileHeadphone aliases
|
|
537
531
|
export {
|
|
538
532
|
/** @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 +539,12 @@ export {
|
|
|
545
539
|
default as FileAudio2
|
|
546
540
|
} from '../icons/file-headphone';
|
|
547
541
|
|
|
542
|
+
// FileExclamationPoint aliases
|
|
543
|
+
export {
|
|
544
|
+
/** @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 */
|
|
545
|
+
default as FileWarning
|
|
546
|
+
} from '../icons/file-exclamation-point';
|
|
547
|
+
|
|
548
548
|
// FileKey aliases
|
|
549
549
|
export {
|
|
550
550
|
/** @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 */
|
|
@@ -665,18 +665,18 @@ export {
|
|
|
665
665
|
default as Grid2X2Check
|
|
666
666
|
} from '../icons/grid-2x2-check';
|
|
667
667
|
|
|
668
|
-
// Grid2x2Plus aliases
|
|
669
|
-
export {
|
|
670
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. This alias will be removed in v1.0 */
|
|
671
|
-
default as Grid2X2Plus
|
|
672
|
-
} from '../icons/grid-2x2-plus';
|
|
673
|
-
|
|
674
668
|
// Grid2x2X aliases
|
|
675
669
|
export {
|
|
676
670
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. This alias will be removed in v1.0 */
|
|
677
671
|
default as Grid2X2X
|
|
678
672
|
} from '../icons/grid-2x2-x';
|
|
679
673
|
|
|
674
|
+
// Grid2x2Plus aliases
|
|
675
|
+
export {
|
|
676
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. This alias will be removed in v1.0 */
|
|
677
|
+
default as Grid2X2Plus
|
|
678
|
+
} from '../icons/grid-2x2-plus';
|
|
679
|
+
|
|
680
680
|
// Grid2x2 aliases
|
|
681
681
|
export {
|
|
682
682
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
@@ -731,12 +731,6 @@ export {
|
|
|
731
731
|
default as Laptop2
|
|
732
732
|
} from '../icons/laptop-minimal';
|
|
733
733
|
|
|
734
|
-
// Layers aliases
|
|
735
|
-
export {
|
|
736
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
737
|
-
default as Layers3
|
|
738
|
-
} from '../icons/layers';
|
|
739
|
-
|
|
740
734
|
// ListIndentDecrease aliases
|
|
741
735
|
export {
|
|
742
736
|
/** @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,6 +743,12 @@ export {
|
|
|
749
743
|
default as IndentDecrease
|
|
750
744
|
} from '../icons/list-indent-decrease';
|
|
751
745
|
|
|
746
|
+
// Layers aliases
|
|
747
|
+
export {
|
|
748
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. This alias will be removed in v1.0 */
|
|
749
|
+
default as Layers3
|
|
750
|
+
} from '../icons/layers';
|
|
751
|
+
|
|
752
752
|
// ListIndentIncrease aliases
|
|
753
753
|
export {
|
|
754
754
|
/** @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 */
|
|
@@ -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 */
|
|
@@ -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 */
|
|
@@ -1247,18 +1247,18 @@ export {
|
|
|
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
|
|
|
1256
|
+
// SquareSigma aliases
|
|
1257
|
+
export {
|
|
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';
|
|
1261
|
+
|
|
1262
1262
|
// SquareSlash aliases
|
|
1263
1263
|
export {
|
|
1264
1264
|
/** @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 */
|
|
@@ -1433,18 +1433,18 @@ export {
|
|
|
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 */
|