@lucide/astro 0.551.0 → 0.553.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 +184 -88
- package/src/aliases/prefixed.ts +764 -692
- package/src/aliases/suffixed.ts +1054 -982
- package/src/icons/calendar-fold.ts +2 -2
- package/src/icons/chess-bishop.ts +18 -0
- package/src/icons/chess-king.ts +18 -0
- package/src/icons/chess-knight.ts +18 -0
- package/src/icons/{file-lock-2.ts → chess-pawn.ts} +4 -4
- package/src/icons/chess-queen.ts +18 -0
- package/src/icons/{file-check-2.ts → chess-rook.ts} +4 -4
- package/src/icons/file-archive.ts +2 -2
- package/src/icons/file-axis-3d.ts +2 -2
- package/src/icons/file-badge.ts +2 -2
- package/src/icons/file-box.ts +2 -2
- package/src/icons/file-braces-corner.ts +18 -0
- package/src/icons/file-braces.ts +18 -0
- package/src/icons/file-chart-column-increasing.ts +2 -2
- package/src/icons/file-chart-column.ts +2 -2
- package/src/icons/file-chart-line.ts +2 -2
- package/src/icons/file-chart-pie.ts +2 -2
- package/src/icons/{file-search-2.ts → file-check-corner.ts} +4 -4
- package/src/icons/file-check.ts +2 -2
- package/src/icons/file-clock.ts +2 -2
- package/src/icons/{file-audio-2.ts → file-code-corner.ts} +4 -4
- package/src/icons/file-code.ts +2 -2
- package/src/icons/file-cog.ts +2 -2
- package/src/icons/file-diff.ts +2 -2
- package/src/icons/file-digit.ts +2 -2
- package/src/icons/file-down.ts +2 -2
- package/src/icons/{file-key-2.ts → file-exclamation-point.ts} +4 -4
- package/src/icons/file-headphone.ts +18 -0
- package/src/icons/file-heart.ts +2 -2
- package/src/icons/file-image.ts +2 -2
- package/src/icons/file-input.ts +2 -2
- package/src/icons/file-key.ts +2 -2
- package/src/icons/file-lock.ts +2 -2
- package/src/icons/{file-minus-2.ts → file-minus-corner.ts} +4 -4
- package/src/icons/file-minus.ts +2 -2
- package/src/icons/file-music.ts +2 -2
- package/src/icons/file-output.ts +2 -2
- package/src/icons/file-pen-line.ts +2 -2
- package/src/icons/file-pen.ts +2 -2
- package/src/icons/file-play.ts +2 -2
- package/src/icons/{file-code-2.ts → file-plus-corner.ts} +4 -4
- package/src/icons/file-plus.ts +2 -2
- package/src/icons/file-question-mark.ts +2 -2
- package/src/icons/file-scan.ts +2 -2
- package/src/icons/{file-type-2.ts → file-search-corner.ts} +4 -4
- package/src/icons/file-search.ts +2 -2
- package/src/icons/file-signal.ts +18 -0
- package/src/icons/file-sliders.ts +2 -2
- package/src/icons/file-spreadsheet.ts +2 -2
- package/src/icons/file-symlink.ts +2 -2
- package/src/icons/file-terminal.ts +2 -2
- package/src/icons/file-text.ts +2 -2
- package/src/icons/file-type-corner.ts +18 -0
- package/src/icons/file-type.ts +2 -2
- package/src/icons/file-up.ts +2 -2
- package/src/icons/file-user.ts +2 -2
- package/src/icons/file-video-camera.ts +2 -2
- package/src/icons/file-volume.ts +2 -2
- package/src/icons/{file-audio.ts → file-x-corner.ts} +4 -4
- package/src/icons/file-x.ts +2 -2
- package/src/icons/file.ts +2 -2
- package/src/icons/files.ts +2 -2
- package/src/icons/index.ts +195 -191
- package/src/icons/{file-badge-2.ts → mouse-pointer-2-off.ts} +4 -4
- package/src/icons/ruler-dimension-line.ts +2 -2
- package/src/icons/shredder.ts +2 -2
- package/src/icons/solar-panel.ts +18 -0
- package/src/icons/sticker.ts +2 -2
- package/src/icons/sticky-note.ts +2 -2
- package/src/icons/file-json-2.ts +0 -18
- package/src/icons/file-json.ts +0 -18
- package/src/icons/file-plus-2.ts +0 -18
- package/src/icons/file-volume-2.ts +0 -18
- package/src/icons/file-warning.ts +0 -18
- package/src/icons/file-x-2.ts +0 -18
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -119,18 +119,18 @@ 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
|
-
|
|
128
122
|
// ChartColumnBig aliases
|
|
129
123
|
export {
|
|
130
124
|
/** @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
125
|
default as BarChartBig
|
|
132
126
|
} from '../icons/chart-column-big';
|
|
133
127
|
|
|
128
|
+
// ChartCandlestick aliases
|
|
129
|
+
export {
|
|
130
|
+
/** @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 */
|
|
131
|
+
default as CandlestickChart
|
|
132
|
+
} from '../icons/chart-candlestick';
|
|
133
|
+
|
|
134
134
|
// ChartColumnIncreasing aliases
|
|
135
135
|
export {
|
|
136
136
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} 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 */
|
|
@@ -251,18 +251,18 @@ export {
|
|
|
251
251
|
default as CheckCircle2
|
|
252
252
|
} from '../icons/circle-check';
|
|
253
253
|
|
|
254
|
-
// CircleChevronDown aliases
|
|
255
|
-
export {
|
|
256
|
-
/** @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 */
|
|
257
|
-
default as ChevronDownCircle
|
|
258
|
-
} from '../icons/circle-chevron-down';
|
|
259
|
-
|
|
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 */
|
|
263
257
|
default as ChevronLeftCircle
|
|
264
258
|
} from '../icons/circle-chevron-left';
|
|
265
259
|
|
|
260
|
+
// CircleChevronDown aliases
|
|
261
|
+
export {
|
|
262
|
+
/** @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 */
|
|
263
|
+
default as ChevronDownCircle
|
|
264
|
+
} from '../icons/circle-chevron-down';
|
|
265
|
+
|
|
266
266
|
// CircleChevronRight aliases
|
|
267
267
|
export {
|
|
268
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 */
|
|
@@ -347,36 +347,36 @@ 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 */
|
|
365
365
|
default as UserCircle2
|
|
366
366
|
} from '../icons/circle-user-round';
|
|
367
367
|
|
|
368
|
-
// CircleX aliases
|
|
369
|
-
export {
|
|
370
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
371
|
-
default as XCircle
|
|
372
|
-
} from '../icons/circle-x';
|
|
373
|
-
|
|
374
368
|
// CircleUser aliases
|
|
375
369
|
export {
|
|
376
370
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
377
371
|
default as UserCircle
|
|
378
372
|
} from '../icons/circle-user';
|
|
379
373
|
|
|
374
|
+
// CircleX aliases
|
|
375
|
+
export {
|
|
376
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
377
|
+
default as XCircle
|
|
378
|
+
} from '../icons/circle-x';
|
|
379
|
+
|
|
380
380
|
// ClipboardPenLine aliases
|
|
381
381
|
export {
|
|
382
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 */
|
|
@@ -413,18 +413,6 @@ export {
|
|
|
413
413
|
default as Columns
|
|
414
414
|
} from '../icons/columns-2';
|
|
415
415
|
|
|
416
|
-
// Columns3 aliases
|
|
417
|
-
export {
|
|
418
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
419
|
-
default as PanelsLeftRight
|
|
420
|
-
} from '../icons/columns-3';
|
|
421
|
-
|
|
422
|
-
// ContactRound aliases
|
|
423
|
-
export {
|
|
424
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
425
|
-
default as Contact2
|
|
426
|
-
} from '../icons/contact-round';
|
|
427
|
-
|
|
428
416
|
// Columns3Cog aliases
|
|
429
417
|
export {
|
|
430
418
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
@@ -437,6 +425,18 @@ export {
|
|
|
437
425
|
default as TableConfig
|
|
438
426
|
} from '../icons/columns-3-cog';
|
|
439
427
|
|
|
428
|
+
// Columns3 aliases
|
|
429
|
+
export {
|
|
430
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
431
|
+
default as PanelsLeftRight
|
|
432
|
+
} from '../icons/columns-3';
|
|
433
|
+
|
|
434
|
+
// ContactRound aliases
|
|
435
|
+
export {
|
|
436
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
437
|
+
default as Contact2
|
|
438
|
+
} from '../icons/contact-round';
|
|
439
|
+
|
|
440
440
|
// DiamondPercent aliases
|
|
441
441
|
export {
|
|
442
442
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
@@ -467,6 +467,24 @@ export {
|
|
|
467
467
|
default as FileAxis3D
|
|
468
468
|
} from '../icons/file-axis-3d';
|
|
469
469
|
|
|
470
|
+
// FileBadge aliases
|
|
471
|
+
export {
|
|
472
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. This alias will be removed in v1.0 */
|
|
473
|
+
default as FileBadge2
|
|
474
|
+
} from '../icons/file-badge';
|
|
475
|
+
|
|
476
|
+
// FileBracesCorner aliases
|
|
477
|
+
export {
|
|
478
|
+
/** @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 */
|
|
479
|
+
default as FileJson2
|
|
480
|
+
} from '../icons/file-braces-corner';
|
|
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
|
+
|
|
470
488
|
// FileChartColumnIncreasing aliases
|
|
471
489
|
export {
|
|
472
490
|
/** @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,12 +509,60 @@ export {
|
|
|
491
509
|
default as FilePieChart
|
|
492
510
|
} from '../icons/file-chart-pie';
|
|
493
511
|
|
|
512
|
+
// FileCheckCorner aliases
|
|
513
|
+
export {
|
|
514
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. This alias will be removed in v1.0 */
|
|
515
|
+
default as FileCheck2
|
|
516
|
+
} from '../icons/file-check-corner';
|
|
517
|
+
|
|
518
|
+
// FileCodeCorner aliases
|
|
519
|
+
export {
|
|
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 */
|
|
521
|
+
default as FileCode2
|
|
522
|
+
} from '../icons/file-code-corner';
|
|
523
|
+
|
|
494
524
|
// FileCog aliases
|
|
495
525
|
export {
|
|
496
526
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. This alias will be removed in v1.0 */
|
|
497
527
|
default as FileCog2
|
|
498
528
|
} from '../icons/file-cog';
|
|
499
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
|
+
// FileKey aliases
|
|
537
|
+
export {
|
|
538
|
+
/** @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 */
|
|
539
|
+
default as FileKey2
|
|
540
|
+
} from '../icons/file-key';
|
|
541
|
+
|
|
542
|
+
// FileHeadphone aliases
|
|
543
|
+
export {
|
|
544
|
+
/** @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
|
+
default as FileAudio
|
|
546
|
+
} from '../icons/file-headphone';
|
|
547
|
+
|
|
548
|
+
// FileHeadphone aliases
|
|
549
|
+
export {
|
|
550
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileHeadphone} instead. This alias will be removed in v1.0 */
|
|
551
|
+
default as FileAudio2
|
|
552
|
+
} from '../icons/file-headphone';
|
|
553
|
+
|
|
554
|
+
// FileLock aliases
|
|
555
|
+
export {
|
|
556
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. This alias will be removed in v1.0 */
|
|
557
|
+
default as FileLock2
|
|
558
|
+
} from '../icons/file-lock';
|
|
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
|
+
|
|
500
566
|
// FilePenLine aliases
|
|
501
567
|
export {
|
|
502
568
|
/** @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 */
|
|
@@ -515,18 +581,48 @@ export {
|
|
|
515
581
|
default as FileVideo
|
|
516
582
|
} from '../icons/file-play';
|
|
517
583
|
|
|
584
|
+
// FilePlusCorner aliases
|
|
585
|
+
export {
|
|
586
|
+
/** @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 */
|
|
587
|
+
default as FilePlus2
|
|
588
|
+
} from '../icons/file-plus-corner';
|
|
589
|
+
|
|
518
590
|
// FileQuestionMark aliases
|
|
519
591
|
export {
|
|
520
592
|
/** @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 */
|
|
521
593
|
default as FileQuestion
|
|
522
594
|
} from '../icons/file-question-mark';
|
|
523
595
|
|
|
596
|
+
// FileSearchCorner aliases
|
|
597
|
+
export {
|
|
598
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSearchCorner} instead. This alias will be removed in v1.0 */
|
|
599
|
+
default as FileSearch2
|
|
600
|
+
} from '../icons/file-search-corner';
|
|
601
|
+
|
|
602
|
+
// FileSignal aliases
|
|
603
|
+
export {
|
|
604
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. This alias will be removed in v1.0 */
|
|
605
|
+
default as FileVolume2
|
|
606
|
+
} from '../icons/file-signal';
|
|
607
|
+
|
|
608
|
+
// FileTypeCorner aliases
|
|
609
|
+
export {
|
|
610
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
611
|
+
default as FileType2
|
|
612
|
+
} from '../icons/file-type-corner';
|
|
613
|
+
|
|
524
614
|
// FileVideoCamera aliases
|
|
525
615
|
export {
|
|
526
616
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. This alias will be removed in v1.0 */
|
|
527
617
|
default as FileVideo2
|
|
528
618
|
} from '../icons/file-video-camera';
|
|
529
619
|
|
|
620
|
+
// FileXCorner aliases
|
|
621
|
+
export {
|
|
622
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. This alias will be removed in v1.0 */
|
|
623
|
+
default as FileX2
|
|
624
|
+
} from '../icons/file-x-corner';
|
|
625
|
+
|
|
530
626
|
// FolderCog aliases
|
|
531
627
|
export {
|
|
532
628
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
|
|
@@ -539,18 +635,18 @@ export {
|
|
|
539
635
|
default as FolderEdit
|
|
540
636
|
} from '../icons/folder-pen';
|
|
541
637
|
|
|
542
|
-
// Funnel aliases
|
|
543
|
-
export {
|
|
544
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
545
|
-
default as Filter
|
|
546
|
-
} from '../icons/funnel';
|
|
547
|
-
|
|
548
638
|
// FunnelX aliases
|
|
549
639
|
export {
|
|
550
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
551
641
|
default as FilterX
|
|
552
642
|
} from '../icons/funnel-x';
|
|
553
643
|
|
|
644
|
+
// Funnel aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
647
|
+
default as Filter
|
|
648
|
+
} from '../icons/funnel';
|
|
649
|
+
|
|
554
650
|
// GitCommitHorizontal aliases
|
|
555
651
|
export {
|
|
556
652
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
@@ -611,18 +707,18 @@ export {
|
|
|
611
707
|
default as Home
|
|
612
708
|
} from '../icons/house';
|
|
613
709
|
|
|
614
|
-
// IceCreamCone aliases
|
|
615
|
-
export {
|
|
616
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
617
|
-
default as IceCream
|
|
618
|
-
} from '../icons/ice-cream-cone';
|
|
619
|
-
|
|
620
710
|
// IceCreamBowl aliases
|
|
621
711
|
export {
|
|
622
712
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
623
713
|
default as IceCream2
|
|
624
714
|
} from '../icons/ice-cream-bowl';
|
|
625
715
|
|
|
716
|
+
// IceCreamCone aliases
|
|
717
|
+
export {
|
|
718
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
719
|
+
default as IceCream
|
|
720
|
+
} from '../icons/ice-cream-cone';
|
|
721
|
+
|
|
626
722
|
// LaptopMinimal aliases
|
|
627
723
|
export {
|
|
628
724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. This alias will be removed in v1.0 */
|
|
@@ -797,18 +893,18 @@ export {
|
|
|
797
893
|
default as PlugZap2
|
|
798
894
|
} from '../icons/plug-zap';
|
|
799
895
|
|
|
800
|
-
// Rotate3d aliases
|
|
801
|
-
export {
|
|
802
|
-
/** @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 */
|
|
803
|
-
default as Rotate3D
|
|
804
|
-
} from '../icons/rotate-3d';
|
|
805
|
-
|
|
806
896
|
// RectangleEllipsis aliases
|
|
807
897
|
export {
|
|
808
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 */
|
|
809
899
|
default as FormInput
|
|
810
900
|
} from '../icons/rectangle-ellipsis';
|
|
811
901
|
|
|
902
|
+
// Rotate3d aliases
|
|
903
|
+
export {
|
|
904
|
+
/** @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 */
|
|
905
|
+
default as Rotate3D
|
|
906
|
+
} from '../icons/rotate-3d';
|
|
907
|
+
|
|
812
908
|
// Rows2 aliases
|
|
813
909
|
export {
|
|
814
910
|
/** @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 */
|
|
@@ -893,18 +989,18 @@ export {
|
|
|
893
989
|
default as ArrowDownLeftFromSquare
|
|
894
990
|
} from '../icons/square-arrow-out-down-left';
|
|
895
991
|
|
|
896
|
-
// SquareArrowOutUpLeft aliases
|
|
897
|
-
export {
|
|
898
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
899
|
-
default as ArrowUpLeftFromSquare
|
|
900
|
-
} from '../icons/square-arrow-out-up-left';
|
|
901
|
-
|
|
902
992
|
// SquareArrowOutDownRight aliases
|
|
903
993
|
export {
|
|
904
994
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
905
995
|
default as ArrowDownRightFromSquare
|
|
906
996
|
} from '../icons/square-arrow-out-down-right';
|
|
907
997
|
|
|
998
|
+
// SquareArrowOutUpLeft aliases
|
|
999
|
+
export {
|
|
1000
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
1001
|
+
default as ArrowUpLeftFromSquare
|
|
1002
|
+
} from '../icons/square-arrow-out-up-left';
|
|
1003
|
+
|
|
908
1004
|
// SquareArrowOutUpRight aliases
|
|
909
1005
|
export {
|
|
910
1006
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
@@ -1151,6 +1247,12 @@ export {
|
|
|
1151
1247
|
default as ScissorsSquare
|
|
1152
1248
|
} from '../icons/square-scissors';
|
|
1153
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
|
+
|
|
1154
1256
|
// SquareSlash aliases
|
|
1155
1257
|
export {
|
|
1156
1258
|
/** @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 */
|
|
@@ -1163,35 +1265,23 @@ export {
|
|
|
1163
1265
|
default as SplitSquareHorizontal
|
|
1164
1266
|
} from '../icons/square-split-horizontal';
|
|
1165
1267
|
|
|
1166
|
-
// SquareSigma aliases
|
|
1167
|
-
export {
|
|
1168
|
-
/** @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 */
|
|
1169
|
-
default as SigmaSquare
|
|
1170
|
-
} from '../icons/square-sigma';
|
|
1171
|
-
|
|
1172
1268
|
// SquareSplitVertical aliases
|
|
1173
1269
|
export {
|
|
1174
1270
|
/** @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 */
|
|
1175
1271
|
default as SplitSquareVertical
|
|
1176
1272
|
} from '../icons/square-split-vertical';
|
|
1177
1273
|
|
|
1178
|
-
// SquareTerminal aliases
|
|
1179
|
-
export {
|
|
1180
|
-
/** @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 */
|
|
1181
|
-
default as TerminalSquare
|
|
1182
|
-
} from '../icons/square-terminal';
|
|
1183
|
-
|
|
1184
1274
|
// SquareUserRound aliases
|
|
1185
1275
|
export {
|
|
1186
1276
|
/** @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 */
|
|
1187
1277
|
default as UserSquare2
|
|
1188
1278
|
} from '../icons/square-user-round';
|
|
1189
1279
|
|
|
1190
|
-
//
|
|
1280
|
+
// SquareTerminal aliases
|
|
1191
1281
|
export {
|
|
1192
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1193
|
-
default as
|
|
1194
|
-
} from '../icons/square-
|
|
1282
|
+
/** @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 */
|
|
1283
|
+
default as TerminalSquare
|
|
1284
|
+
} from '../icons/square-terminal';
|
|
1195
1285
|
|
|
1196
1286
|
// SquareX aliases
|
|
1197
1287
|
export {
|
|
@@ -1199,24 +1289,30 @@ export {
|
|
|
1199
1289
|
default as XSquare
|
|
1200
1290
|
} from '../icons/square-x';
|
|
1201
1291
|
|
|
1292
|
+
// SquareUser aliases
|
|
1293
|
+
export {
|
|
1294
|
+
/** @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 */
|
|
1295
|
+
default as UserSquare
|
|
1296
|
+
} from '../icons/square-user';
|
|
1297
|
+
|
|
1202
1298
|
// TestTubeDiagonal aliases
|
|
1203
1299
|
export {
|
|
1204
1300
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
1205
1301
|
default as TestTube2
|
|
1206
1302
|
} from '../icons/test-tube-diagonal';
|
|
1207
1303
|
|
|
1208
|
-
// TextAlignEnd aliases
|
|
1209
|
-
export {
|
|
1210
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
1211
|
-
default as AlignRight
|
|
1212
|
-
} from '../icons/text-align-end';
|
|
1213
|
-
|
|
1214
1304
|
// TextAlignCenter aliases
|
|
1215
1305
|
export {
|
|
1216
1306
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. This alias will be removed in v1.0 */
|
|
1217
1307
|
default as AlignCenter
|
|
1218
1308
|
} from '../icons/text-align-center';
|
|
1219
1309
|
|
|
1310
|
+
// TextAlignEnd aliases
|
|
1311
|
+
export {
|
|
1312
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
1313
|
+
default as AlignRight
|
|
1314
|
+
} from '../icons/text-align-end';
|
|
1315
|
+
|
|
1220
1316
|
// TextAlignJustify aliases
|
|
1221
1317
|
export {
|
|
1222
1318
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|