@lucide/astro 0.550.0 → 0.552.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 +595 -535
- package/src/aliases/suffixed.ts +943 -883
- package/src/icons/calendar-fold.ts +2 -2
- package/src/icons/{file-minus-2.ts → clock-check.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-code-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-check-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 +131 -133
- 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-badge-2.ts +0 -18
- package/src/icons/file-json-2.ts +0 -18
- package/src/icons/file-json.ts +0 -18
- package/src/icons/file-lock-2.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
|
@@ -167,18 +167,18 @@ export {
|
|
|
167
167
|
default as GanttChart
|
|
168
168
|
} from '../icons/chart-no-axes-gantt';
|
|
169
169
|
|
|
170
|
-
// ChartPie aliases
|
|
171
|
-
export {
|
|
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 */
|
|
173
|
-
default as PieChart
|
|
174
|
-
} from '../icons/chart-pie';
|
|
175
|
-
|
|
176
170
|
// ChartScatter aliases
|
|
177
171
|
export {
|
|
178
172
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
179
173
|
default as ScatterChart
|
|
180
174
|
} from '../icons/chart-scatter';
|
|
181
175
|
|
|
176
|
+
// ChartPie aliases
|
|
177
|
+
export {
|
|
178
|
+
/** @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 */
|
|
179
|
+
default as PieChart
|
|
180
|
+
} from '../icons/chart-pie';
|
|
181
|
+
|
|
182
182
|
// Chromium aliases
|
|
183
183
|
export {
|
|
184
184
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Chromium} instead. This alias will be removed in v1.0 */
|
|
@@ -251,18 +251,18 @@ export {
|
|
|
251
251
|
default as CheckCircle2
|
|
252
252
|
} from '../icons/circle-check';
|
|
253
253
|
|
|
254
|
-
// CircleChevronLeft aliases
|
|
255
|
-
export {
|
|
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 */
|
|
257
|
-
default as ChevronLeftCircle
|
|
258
|
-
} from '../icons/circle-chevron-left';
|
|
259
|
-
|
|
260
254
|
// CircleChevronDown aliases
|
|
261
255
|
export {
|
|
262
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 */
|
|
263
257
|
default as ChevronDownCircle
|
|
264
258
|
} from '../icons/circle-chevron-down';
|
|
265
259
|
|
|
260
|
+
// CircleChevronLeft aliases
|
|
261
|
+
export {
|
|
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 */
|
|
263
|
+
default as ChevronLeftCircle
|
|
264
|
+
} from '../icons/circle-chevron-left';
|
|
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 */
|
|
@@ -287,18 +287,18 @@ export {
|
|
|
287
287
|
default as GaugeCircle
|
|
288
288
|
} from '../icons/circle-gauge';
|
|
289
289
|
|
|
290
|
-
// CircleMinus aliases
|
|
291
|
-
export {
|
|
292
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
293
|
-
default as MinusCircle
|
|
294
|
-
} from '../icons/circle-minus';
|
|
295
|
-
|
|
296
290
|
// CircleParkingOff aliases
|
|
297
291
|
export {
|
|
298
292
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
299
293
|
default as ParkingCircleOff
|
|
300
294
|
} from '../icons/circle-parking-off';
|
|
301
295
|
|
|
296
|
+
// CircleMinus aliases
|
|
297
|
+
export {
|
|
298
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
299
|
+
default as MinusCircle
|
|
300
|
+
} from '../icons/circle-minus';
|
|
301
|
+
|
|
302
302
|
// CircleParking aliases
|
|
303
303
|
export {
|
|
304
304
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. This alias will be removed in v1.0 */
|
|
@@ -359,66 +359,54 @@ export {
|
|
|
359
359
|
default as StopCircle
|
|
360
360
|
} from '../icons/circle-stop';
|
|
361
361
|
|
|
362
|
-
// CircleUserRound aliases
|
|
363
|
-
export {
|
|
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
|
-
default as UserCircle2
|
|
366
|
-
} from '../icons/circle-user-round';
|
|
367
|
-
|
|
368
362
|
// CircleUser aliases
|
|
369
363
|
export {
|
|
370
364
|
/** @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 */
|
|
371
365
|
default as UserCircle
|
|
372
366
|
} from '../icons/circle-user';
|
|
373
367
|
|
|
374
|
-
// ClipboardPenLine aliases
|
|
375
|
-
export {
|
|
376
|
-
/** @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 */
|
|
377
|
-
default as ClipboardSignature
|
|
378
|
-
} from '../icons/clipboard-pen-line';
|
|
379
|
-
|
|
380
368
|
// CircleX aliases
|
|
381
369
|
export {
|
|
382
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 */
|
|
383
371
|
default as XCircle
|
|
384
372
|
} from '../icons/circle-x';
|
|
385
373
|
|
|
374
|
+
// CircleUserRound aliases
|
|
375
|
+
export {
|
|
376
|
+
/** @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
|
+
default as UserCircle2
|
|
378
|
+
} from '../icons/circle-user-round';
|
|
379
|
+
|
|
380
|
+
// ClipboardPenLine aliases
|
|
381
|
+
export {
|
|
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 */
|
|
383
|
+
default as ClipboardSignature
|
|
384
|
+
} from '../icons/clipboard-pen-line';
|
|
385
|
+
|
|
386
386
|
// ClipboardPen aliases
|
|
387
387
|
export {
|
|
388
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
389
|
default as ClipboardEdit
|
|
390
390
|
} from '../icons/clipboard-pen';
|
|
391
391
|
|
|
392
|
-
// CloudUpload aliases
|
|
393
|
-
export {
|
|
394
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
395
|
-
default as UploadCloud
|
|
396
|
-
} from '../icons/cloud-upload';
|
|
397
|
-
|
|
398
392
|
// CloudDownload aliases
|
|
399
393
|
export {
|
|
400
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 */
|
|
401
395
|
default as DownloadCloud
|
|
402
396
|
} from '../icons/cloud-download';
|
|
403
397
|
|
|
398
|
+
// CloudUpload aliases
|
|
399
|
+
export {
|
|
400
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
401
|
+
default as UploadCloud
|
|
402
|
+
} from '../icons/cloud-upload';
|
|
403
|
+
|
|
404
404
|
// CodeXml aliases
|
|
405
405
|
export {
|
|
406
406
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
407
407
|
default as Code2
|
|
408
408
|
} from '../icons/code-xml';
|
|
409
409
|
|
|
410
|
-
// Columns3Cog aliases
|
|
411
|
-
export {
|
|
412
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
413
|
-
default as ColumnsSettings
|
|
414
|
-
} from '../icons/columns-3-cog';
|
|
415
|
-
|
|
416
|
-
// Columns3Cog aliases
|
|
417
|
-
export {
|
|
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 */
|
|
419
|
-
default as TableConfig
|
|
420
|
-
} from '../icons/columns-3-cog';
|
|
421
|
-
|
|
422
410
|
// Columns2 aliases
|
|
423
411
|
export {
|
|
424
412
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
@@ -431,6 +419,18 @@ export {
|
|
|
431
419
|
default as PanelsLeftRight
|
|
432
420
|
} from '../icons/columns-3';
|
|
433
421
|
|
|
422
|
+
// Columns3Cog aliases
|
|
423
|
+
export {
|
|
424
|
+
/** @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 */
|
|
425
|
+
default as ColumnsSettings
|
|
426
|
+
} from '../icons/columns-3-cog';
|
|
427
|
+
|
|
428
|
+
// Columns3Cog aliases
|
|
429
|
+
export {
|
|
430
|
+
/** @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 */
|
|
431
|
+
default as TableConfig
|
|
432
|
+
} from '../icons/columns-3-cog';
|
|
433
|
+
|
|
434
434
|
// ContactRound aliases
|
|
435
435
|
export {
|
|
436
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 */
|
|
@@ -455,17 +455,35 @@ export {
|
|
|
455
455
|
default as MoreVertical
|
|
456
456
|
} from '../icons/ellipsis-vertical';
|
|
457
457
|
|
|
458
|
+
// FileAxis3d aliases
|
|
459
|
+
export {
|
|
460
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
461
|
+
default as FileAxis3D
|
|
462
|
+
} from '../icons/file-axis-3d';
|
|
463
|
+
|
|
458
464
|
// Ellipsis aliases
|
|
459
465
|
export {
|
|
460
466
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
461
467
|
default as MoreHorizontal
|
|
462
468
|
} from '../icons/ellipsis';
|
|
463
469
|
|
|
464
|
-
//
|
|
470
|
+
// FileBadge aliases
|
|
465
471
|
export {
|
|
466
|
-
/** @deprecated The
|
|
467
|
-
default as
|
|
468
|
-
} from '../icons/file-
|
|
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';
|
|
469
487
|
|
|
470
488
|
// FileChartColumnIncreasing aliases
|
|
471
489
|
export {
|
|
@@ -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
|
+
// FileHeadphone aliases
|
|
537
|
+
export {
|
|
538
|
+
/** @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 */
|
|
539
|
+
default as FileAudio
|
|
540
|
+
} from '../icons/file-headphone';
|
|
541
|
+
|
|
542
|
+
// FileHeadphone aliases
|
|
543
|
+
export {
|
|
544
|
+
/** @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 */
|
|
545
|
+
default as FileAudio2
|
|
546
|
+
} from '../icons/file-headphone';
|
|
547
|
+
|
|
548
|
+
// FileKey aliases
|
|
549
|
+
export {
|
|
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 */
|
|
551
|
+
default as FileKey2
|
|
552
|
+
} from '../icons/file-key';
|
|
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 */
|
|
@@ -599,18 +695,18 @@ export {
|
|
|
599
695
|
default as Grab
|
|
600
696
|
} from '../icons/hand-grab';
|
|
601
697
|
|
|
602
|
-
// House aliases
|
|
603
|
-
export {
|
|
604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
605
|
-
default as Home
|
|
606
|
-
} from '../icons/house';
|
|
607
|
-
|
|
608
698
|
// HandHelping aliases
|
|
609
699
|
export {
|
|
610
700
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
611
701
|
default as HelpingHand
|
|
612
702
|
} from '../icons/hand-helping';
|
|
613
703
|
|
|
704
|
+
// House aliases
|
|
705
|
+
export {
|
|
706
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
707
|
+
default as Home
|
|
708
|
+
} from '../icons/house';
|
|
709
|
+
|
|
614
710
|
// IceCreamBowl aliases
|
|
615
711
|
export {
|
|
616
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 */
|
|
@@ -773,18 +869,18 @@ export {
|
|
|
773
869
|
default as PanelTopInactive
|
|
774
870
|
} from '../icons/panel-top-dashed';
|
|
775
871
|
|
|
776
|
-
// PenLine aliases
|
|
777
|
-
export {
|
|
778
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
779
|
-
default as Edit3
|
|
780
|
-
} from '../icons/pen-line';
|
|
781
|
-
|
|
782
872
|
// PanelsTopLeft aliases
|
|
783
873
|
export {
|
|
784
874
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
785
875
|
default as Layout
|
|
786
876
|
} from '../icons/panels-top-left';
|
|
787
877
|
|
|
878
|
+
// PenLine aliases
|
|
879
|
+
export {
|
|
880
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
881
|
+
default as Edit3
|
|
882
|
+
} from '../icons/pen-line';
|
|
883
|
+
|
|
788
884
|
// Pen aliases
|
|
789
885
|
export {
|
|
790
886
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
@@ -971,24 +1067,30 @@ export {
|
|
|
971
1067
|
default as CheckSquare2
|
|
972
1068
|
} from '../icons/square-check';
|
|
973
1069
|
|
|
974
|
-
// SquareChevronDown aliases
|
|
975
|
-
export {
|
|
976
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
977
|
-
default as ChevronDownSquare
|
|
978
|
-
} from '../icons/square-chevron-down';
|
|
979
|
-
|
|
980
1070
|
// SquareChevronLeft aliases
|
|
981
1071
|
export {
|
|
982
1072
|
/** @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 */
|
|
983
1073
|
default as ChevronLeftSquare
|
|
984
1074
|
} from '../icons/square-chevron-left';
|
|
985
1075
|
|
|
1076
|
+
// SquareChevronDown aliases
|
|
1077
|
+
export {
|
|
1078
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
1079
|
+
default as ChevronDownSquare
|
|
1080
|
+
} from '../icons/square-chevron-down';
|
|
1081
|
+
|
|
986
1082
|
// SquareChevronRight aliases
|
|
987
1083
|
export {
|
|
988
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 */
|
|
989
1085
|
default as ChevronRightSquare
|
|
990
1086
|
} from '../icons/square-chevron-right';
|
|
991
1087
|
|
|
1088
|
+
// SquareChevronUp aliases
|
|
1089
|
+
export {
|
|
1090
|
+
/** @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 */
|
|
1091
|
+
default as ChevronUpSquare
|
|
1092
|
+
} from '../icons/square-chevron-up';
|
|
1093
|
+
|
|
992
1094
|
// SquareCode aliases
|
|
993
1095
|
export {
|
|
994
1096
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. This alias will be removed in v1.0 */
|
|
@@ -1001,12 +1103,6 @@ export {
|
|
|
1001
1103
|
default as KanbanSquareDashed
|
|
1002
1104
|
} from '../icons/square-dashed-kanban';
|
|
1003
1105
|
|
|
1004
|
-
// SquareChevronUp aliases
|
|
1005
|
-
export {
|
|
1006
|
-
/** @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 */
|
|
1007
|
-
default as ChevronUpSquare
|
|
1008
|
-
} from '../icons/square-chevron-up';
|
|
1009
|
-
|
|
1010
1106
|
// SquareDashedMousePointer aliases
|
|
1011
1107
|
export {
|
|
1012
1108
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
@@ -1037,18 +1133,18 @@ export {
|
|
|
1037
1133
|
default as EqualSquare
|
|
1038
1134
|
} from '../icons/square-equal';
|
|
1039
1135
|
|
|
1040
|
-
// SquareKanban aliases
|
|
1041
|
-
export {
|
|
1042
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
1043
|
-
default as KanbanSquare
|
|
1044
|
-
} from '../icons/square-kanban';
|
|
1045
|
-
|
|
1046
1136
|
// SquareFunction aliases
|
|
1047
1137
|
export {
|
|
1048
1138
|
/** @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 */
|
|
1049
1139
|
default as FunctionSquare
|
|
1050
1140
|
} from '../icons/square-function';
|
|
1051
1141
|
|
|
1142
|
+
// SquareKanban aliases
|
|
1143
|
+
export {
|
|
1144
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
1145
|
+
default as KanbanSquare
|
|
1146
|
+
} from '../icons/square-kanban';
|
|
1147
|
+
|
|
1052
1148
|
// SquareLibrary aliases
|
|
1053
1149
|
export {
|
|
1054
1150
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. This alias will be removed in v1.0 */
|
|
@@ -1277,18 +1373,18 @@ export {
|
|
|
1277
1373
|
default as Tv2
|
|
1278
1374
|
} from '../icons/tv-minimal';
|
|
1279
1375
|
|
|
1280
|
-
// University aliases
|
|
1281
|
-
export {
|
|
1282
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
1283
|
-
default as School2
|
|
1284
|
-
} from '../icons/university';
|
|
1285
|
-
|
|
1286
1376
|
// UserRoundCheck aliases
|
|
1287
1377
|
export {
|
|
1288
1378
|
/** @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 */
|
|
1289
1379
|
default as UserCheck2
|
|
1290
1380
|
} from '../icons/user-round-check';
|
|
1291
1381
|
|
|
1382
|
+
// University aliases
|
|
1383
|
+
export {
|
|
1384
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
1385
|
+
default as School2
|
|
1386
|
+
} from '../icons/university';
|
|
1387
|
+
|
|
1292
1388
|
// UserRoundCog aliases
|
|
1293
1389
|
export {
|
|
1294
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 */
|