@lucide/astro 0.542.0 → 0.543.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.
Files changed (61) hide show
  1. package/package.json +1 -1
  2. package/src/aliases/aliases.ts +156 -102
  3. package/src/aliases/prefixed.ts +668 -630
  4. package/src/aliases/suffixed.ts +976 -938
  5. package/src/icons/bug-off.ts +2 -2
  6. package/src/icons/bug-play.ts +2 -2
  7. package/src/icons/bug.ts +2 -2
  8. package/src/icons/calendar-cog.ts +2 -2
  9. package/src/icons/chart-no-axes-column-decreasing.ts +2 -2
  10. package/src/icons/chart-no-axes-column-increasing.ts +2 -2
  11. package/src/icons/chart-no-axes-column.ts +2 -2
  12. package/src/icons/chart-no-axes-gantt.ts +2 -2
  13. package/src/icons/church.ts +2 -2
  14. package/src/icons/house-heart.ts +18 -0
  15. package/src/icons/house-plug.ts +2 -2
  16. package/src/icons/house-plus.ts +2 -2
  17. package/src/icons/house-wifi.ts +2 -2
  18. package/src/icons/house.ts +2 -2
  19. package/src/icons/index.ts +194 -193
  20. package/src/icons/kanban.ts +2 -2
  21. package/src/icons/list-check.ts +2 -2
  22. package/src/icons/list-checks.ts +2 -2
  23. package/src/icons/list-chevrons-down-up.ts +2 -2
  24. package/src/icons/list-chevrons-up-down.ts +18 -0
  25. package/src/icons/list-collapse.ts +2 -2
  26. package/src/icons/list-end.ts +2 -2
  27. package/src/icons/list-filter-plus.ts +2 -2
  28. package/src/icons/list-filter.ts +2 -2
  29. package/src/icons/list-indent-decrease.ts +18 -0
  30. package/src/icons/list-indent-increase.ts +18 -0
  31. package/src/icons/list-minus.ts +2 -2
  32. package/src/icons/list-music.ts +2 -2
  33. package/src/icons/list-ordered.ts +2 -2
  34. package/src/icons/list-plus.ts +2 -2
  35. package/src/icons/list-restart.ts +2 -2
  36. package/src/icons/list-start.ts +2 -2
  37. package/src/icons/list-todo.ts +2 -2
  38. package/src/icons/list-tree.ts +2 -2
  39. package/src/icons/list-video.ts +2 -2
  40. package/src/icons/list-x.ts +2 -2
  41. package/src/icons/list.ts +2 -2
  42. package/src/icons/logs.ts +2 -2
  43. package/src/icons/menu.ts +2 -2
  44. package/src/icons/message-square-quote.ts +2 -2
  45. package/src/icons/panel-left-right-dashed.ts +2 -2
  46. package/src/icons/panel-top-bottom-dashed.ts +2 -2
  47. package/src/icons/sliders-horizontal.ts +2 -2
  48. package/src/icons/sliders-vertical.ts +2 -2
  49. package/src/icons/table-of-contents.ts +2 -2
  50. package/src/icons/{align-left.ts → text-align-center.ts} +4 -4
  51. package/src/icons/{align-center.ts → text-align-end.ts} +4 -4
  52. package/src/icons/{align-right.ts → text-align-justify.ts} +4 -4
  53. package/src/icons/{align-justify.ts → text-align-start.ts} +4 -4
  54. package/src/icons/{indent-decrease.ts → text-initial.ts} +4 -4
  55. package/src/icons/text-quote.ts +2 -2
  56. package/src/icons/text-search.ts +2 -2
  57. package/src/icons/text-wrap.ts +18 -0
  58. package/src/icons/indent-increase.ts +0 -18
  59. package/src/icons/letter-text.ts +0 -18
  60. package/src/icons/text.ts +0 -18
  61. package/src/icons/wrap-text.ts +0 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucide/astro",
3
- "version": "0.542.0",
3
+ "version": "0.543.0",
4
4
  "author": "Moustapha Kebe",
5
5
  "description": "A Lucide icon library package for Astro applications.",
6
6
  "license": "ISC",
@@ -5,18 +5,18 @@ export {
5
5
  default as AlarmCheck
6
6
  } from '../icons/alarm-clock-check';
7
7
 
8
- // AlarmClockPlus aliases
9
- export {
10
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
11
- default as AlarmPlus
12
- } from '../icons/alarm-clock-plus';
13
-
14
8
  // AlarmClockMinus aliases
15
9
  export {
16
10
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. This alias will be removed in v1.0 */
17
11
  default as AlarmMinus
18
12
  } from '../icons/alarm-clock-minus';
19
13
 
14
+ // AlarmClockPlus aliases
15
+ export {
16
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
17
+ default as AlarmPlus
18
+ } from '../icons/alarm-clock-plus';
19
+
20
20
  // ArrowDownAZ aliases
21
21
  export {
22
22
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
@@ -53,18 +53,18 @@ export {
53
53
  default as ArrowUpZa
54
54
  } from '../icons/arrow-up-z-a';
55
55
 
56
- // Axis3d aliases
57
- export {
58
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
59
- default as Axis3D
60
- } from '../icons/axis-3d';
61
-
62
56
  // BadgeCheck aliases
63
57
  export {
64
58
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. This alias will be removed in v1.0 */
65
59
  default as Verified
66
60
  } from '../icons/badge-check';
67
61
 
62
+ // Axis3d aliases
63
+ export {
64
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
65
+ default as Axis3D
66
+ } from '../icons/axis-3d';
67
+
68
68
  // BadgeQuestionMark aliases
69
69
  export {
70
70
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. This alias will be removed in v1.0 */
@@ -95,18 +95,18 @@ export {
95
95
  default as CurlyBraces
96
96
  } from '../icons/braces';
97
97
 
98
- // Captions aliases
99
- export {
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 */
101
- default as Subtitles
102
- } from '../icons/captions';
103
-
104
98
  // ChartArea aliases
105
99
  export {
106
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 */
107
101
  default as AreaChart
108
102
  } from '../icons/chart-area';
109
103
 
104
+ // Captions aliases
105
+ export {
106
+ /** @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
+ default as Subtitles
108
+ } from '../icons/captions';
109
+
110
110
  // ChartBarBig aliases
111
111
  export {
112
112
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
@@ -119,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 */
@@ -143,18 +143,18 @@ export {
143
143
  default as BarChart3
144
144
  } from '../icons/chart-column';
145
145
 
146
- // ChartLine aliases
147
- export {
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 */
149
- default as LineChart
150
- } from '../icons/chart-line';
151
-
152
146
  // ChartNoAxesColumnIncreasing aliases
153
147
  export {
154
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 */
155
149
  default as BarChart
156
150
  } from '../icons/chart-no-axes-column-increasing';
157
151
 
152
+ // ChartLine aliases
153
+ export {
154
+ /** @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
+ default as LineChart
156
+ } from '../icons/chart-line';
157
+
158
158
  // ChartNoAxesColumn aliases
159
159
  export {
160
160
  /** @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 */
@@ -209,18 +209,18 @@ export {
209
209
  default as ArrowDownLeftFromCircle
210
210
  } from '../icons/circle-arrow-out-down-left';
211
211
 
212
- // CircleArrowOutDownRight aliases
213
- export {
214
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
215
- default as ArrowDownRightFromCircle
216
- } from '../icons/circle-arrow-out-down-right';
217
-
218
212
  // CircleArrowOutUpLeft aliases
219
213
  export {
220
214
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
221
215
  default as ArrowUpLeftFromCircle
222
216
  } from '../icons/circle-arrow-out-up-left';
223
217
 
218
+ // CircleArrowOutDownRight aliases
219
+ export {
220
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
221
+ default as ArrowDownRightFromCircle
222
+ } from '../icons/circle-arrow-out-down-right';
223
+
224
224
  // CircleArrowOutUpRight aliases
225
225
  export {
226
226
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
@@ -239,18 +239,18 @@ export {
239
239
  default as ArrowUpCircle
240
240
  } from '../icons/circle-arrow-up';
241
241
 
242
- // CircleCheckBig aliases
243
- export {
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 */
245
- default as CheckCircle
246
- } from '../icons/circle-check-big';
247
-
248
242
  // CircleCheck aliases
249
243
  export {
250
244
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. This alias will be removed in v1.0 */
251
245
  default as CheckCircle2
252
246
  } from '../icons/circle-check';
253
247
 
248
+ // CircleCheckBig aliases
249
+ export {
250
+ /** @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
+ default as CheckCircle
252
+ } from '../icons/circle-check-big';
253
+
254
254
  // CircleChevronDown aliases
255
255
  export {
256
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 */
@@ -323,23 +323,17 @@ export {
323
323
  default as PlayCircle
324
324
  } from '../icons/circle-play';
325
325
 
326
- // CirclePlus aliases
327
- export {
328
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
329
- default as PlusCircle
330
- } from '../icons/circle-plus';
331
-
332
326
  // CirclePower aliases
333
327
  export {
334
328
  /** @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 */
335
329
  default as PowerCircle
336
330
  } from '../icons/circle-power';
337
331
 
338
- // CircleSlash2 aliases
332
+ // CirclePlus aliases
339
333
  export {
340
- /** @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 */
341
- default as CircleSlashed
342
- } from '../icons/circle-slash-2';
334
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
335
+ default as PlusCircle
336
+ } from '../icons/circle-plus';
343
337
 
344
338
  // CircleQuestionMark aliases
345
339
  export {
@@ -353,6 +347,12 @@ export {
353
347
  default as CircleHelp
354
348
  } from '../icons/circle-question-mark';
355
349
 
350
+ // CircleSlash2 aliases
351
+ export {
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 */
353
+ default as CircleSlashed
354
+ } from '../icons/circle-slash-2';
355
+
356
356
  // CircleStop aliases
357
357
  export {
358
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 */
@@ -449,18 +449,18 @@ export {
449
449
  default as Globe2
450
450
  } from '../icons/earth';
451
451
 
452
- // Ellipsis aliases
453
- export {
454
- /** @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 */
455
- default as MoreHorizontal
456
- } from '../icons/ellipsis';
457
-
458
452
  // EllipsisVertical aliases
459
453
  export {
460
454
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
461
455
  default as MoreVertical
462
456
  } from '../icons/ellipsis-vertical';
463
457
 
458
+ // Ellipsis aliases
459
+ export {
460
+ /** @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
+ default as MoreHorizontal
462
+ } from '../icons/ellipsis';
463
+
464
464
  // FileAxis3d aliases
465
465
  export {
466
466
  /** @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 */
@@ -623,18 +623,6 @@ export {
623
623
  default as IceCream
624
624
  } from '../icons/ice-cream-cone';
625
625
 
626
- // IndentDecrease aliases
627
- export {
628
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentDecrease} instead. This alias will be removed in v1.0 */
629
- default as Outdent
630
- } from '../icons/indent-decrease';
631
-
632
- // IndentIncrease aliases
633
- export {
634
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentIncrease} instead. This alias will be removed in v1.0 */
635
- default as Indent
636
- } from '../icons/indent-increase';
637
-
638
626
  // LaptopMinimal aliases
639
627
  export {
640
628
  /** @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 */
@@ -647,6 +635,30 @@ export {
647
635
  default as Layers3
648
636
  } from '../icons/layers';
649
637
 
638
+ // ListIndentDecrease aliases
639
+ export {
640
+ /** @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 */
641
+ default as Outdent
642
+ } from '../icons/list-indent-decrease';
643
+
644
+ // ListIndentDecrease aliases
645
+ export {
646
+ /** @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 */
647
+ default as IndentDecrease
648
+ } from '../icons/list-indent-decrease';
649
+
650
+ // ListIndentIncrease aliases
651
+ export {
652
+ /** @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 */
653
+ default as Indent
654
+ } from '../icons/list-indent-increase';
655
+
656
+ // ListIndentIncrease aliases
657
+ export {
658
+ /** @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 */
659
+ default as IndentIncrease
660
+ } from '../icons/list-indent-increase';
661
+
650
662
  // LoaderCircle aliases
651
663
  export {
652
664
  /** @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 */
@@ -827,18 +839,18 @@ export {
827
839
  default as ShieldQuestion
828
840
  } from '../icons/shield-question-mark';
829
841
 
830
- // ShieldX aliases
831
- export {
832
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
833
- default as ShieldClose
834
- } from '../icons/shield-x';
835
-
836
842
  // SlidersVertical aliases
837
843
  export {
838
844
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. This alias will be removed in v1.0 */
839
845
  default as Sliders
840
846
  } from '../icons/sliders-vertical';
841
847
 
848
+ // ShieldX aliases
849
+ export {
850
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
851
+ default as ShieldClose
852
+ } from '../icons/shield-x';
853
+
842
854
  // Sparkles aliases
843
855
  export {
844
856
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
@@ -851,17 +863,23 @@ export {
851
863
  default as ActivitySquare
852
864
  } from '../icons/square-activity';
853
865
 
866
+ // SquareArrowDownLeft aliases
867
+ export {
868
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
869
+ default as ArrowDownLeftSquare
870
+ } from '../icons/square-arrow-down-left';
871
+
854
872
  // SquareArrowDownRight aliases
855
873
  export {
856
874
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
857
875
  default as ArrowDownRightSquare
858
876
  } from '../icons/square-arrow-down-right';
859
877
 
860
- // SquareArrowDownLeft aliases
878
+ // SquareArrowLeft aliases
861
879
  export {
862
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
863
- default as ArrowDownLeftSquare
864
- } from '../icons/square-arrow-down-left';
880
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
881
+ default as ArrowLeftSquare
882
+ } from '../icons/square-arrow-left';
865
883
 
866
884
  // SquareArrowDown aliases
867
885
  export {
@@ -869,11 +887,11 @@ export {
869
887
  default as ArrowDownSquare
870
888
  } from '../icons/square-arrow-down';
871
889
 
872
- // SquareArrowLeft aliases
890
+ // SquareArrowOutDownLeft aliases
873
891
  export {
874
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
875
- default as ArrowLeftSquare
876
- } from '../icons/square-arrow-left';
892
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
893
+ default as ArrowDownLeftFromSquare
894
+ } from '../icons/square-arrow-out-down-left';
877
895
 
878
896
  // SquareArrowOutDownRight aliases
879
897
  export {
@@ -887,12 +905,6 @@ export {
887
905
  default as ArrowUpLeftFromSquare
888
906
  } from '../icons/square-arrow-out-up-left';
889
907
 
890
- // SquareArrowOutDownLeft aliases
891
- export {
892
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
893
- default as ArrowDownLeftFromSquare
894
- } from '../icons/square-arrow-out-down-left';
895
-
896
908
  // SquareArrowOutUpRight aliases
897
909
  export {
898
910
  /** @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 */
@@ -989,18 +1001,18 @@ export {
989
1001
  default as CodeSquare
990
1002
  } from '../icons/square-code';
991
1003
 
992
- // SquareDashedMousePointer aliases
993
- export {
994
- /** @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 */
995
- default as MousePointerSquareDashed
996
- } from '../icons/square-dashed-mouse-pointer';
997
-
998
1004
  // SquareDashedKanban aliases
999
1005
  export {
1000
1006
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. This alias will be removed in v1.0 */
1001
1007
  default as KanbanSquareDashed
1002
1008
  } from '../icons/square-dashed-kanban';
1003
1009
 
1010
+ // SquareDashedMousePointer aliases
1011
+ export {
1012
+ /** @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 */
1013
+ default as MousePointerSquareDashed
1014
+ } from '../icons/square-dashed-mouse-pointer';
1015
+
1004
1016
  // SquareDashed aliases
1005
1017
  export {
1006
1018
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
@@ -1055,12 +1067,6 @@ export {
1055
1067
  default as MenuSquare
1056
1068
  } from '../icons/square-menu';
1057
1069
 
1058
- // SquareMinus aliases
1059
- export {
1060
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
1061
- default as MinusSquare
1062
- } from '../icons/square-minus';
1063
-
1064
1070
  // SquareMousePointer aliases
1065
1071
  export {
1066
1072
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
@@ -1073,6 +1079,12 @@ export {
1073
1079
  default as ParkingSquareOff
1074
1080
  } from '../icons/square-parking-off';
1075
1081
 
1082
+ // SquareMinus aliases
1083
+ export {
1084
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
1085
+ default as MinusSquare
1086
+ } from '../icons/square-minus';
1087
+
1076
1088
  // SquareParking aliases
1077
1089
  export {
1078
1090
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. This alias will be removed in v1.0 */
@@ -1193,12 +1205,54 @@ export {
1193
1205
  default as TestTube2
1194
1206
  } from '../icons/test-tube-diagonal';
1195
1207
 
1208
+ // TextAlignCenter aliases
1209
+ export {
1210
+ /** @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 */
1211
+ default as AlignCenter
1212
+ } from '../icons/text-align-center';
1213
+
1214
+ // TextAlignEnd aliases
1215
+ export {
1216
+ /** @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 */
1217
+ default as AlignRight
1218
+ } from '../icons/text-align-end';
1219
+
1220
+ // TextAlignJustify aliases
1221
+ export {
1222
+ /** @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 */
1223
+ default as AlignJustify
1224
+ } from '../icons/text-align-justify';
1225
+
1226
+ // TextAlignStart aliases
1227
+ export {
1228
+ /** @deprecated The icon was combined with another icon that shares the same use case, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
1229
+ default as Text
1230
+ } from '../icons/text-align-start';
1231
+
1232
+ // TextAlignStart aliases
1233
+ export {
1234
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
1235
+ default as AlignLeft
1236
+ } from '../icons/text-align-start';
1237
+
1238
+ // TextInitial aliases
1239
+ export {
1240
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. This alias will be removed in v1.0 */
1241
+ default as LetterText
1242
+ } from '../icons/text-initial';
1243
+
1196
1244
  // TextSelect aliases
1197
1245
  export {
1198
1246
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
1199
1247
  default as TextSelection
1200
1248
  } from '../icons/text-select';
1201
1249
 
1250
+ // TextWrap aliases
1251
+ export {
1252
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. This alias will be removed in v1.0 */
1253
+ default as WrapText
1254
+ } from '../icons/text-wrap';
1255
+
1202
1256
  // TramFront aliases
1203
1257
  export {
1204
1258
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */