lucide-astro 0.541.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 (71) hide show
  1. package/dist/AlignCenter.astro +3 -3
  2. package/dist/AlignJustify.astro +3 -3
  3. package/dist/AlignLeft.astro +3 -3
  4. package/dist/AlignRight.astro +3 -3
  5. package/dist/BarChart.astro +3 -3
  6. package/dist/BarChart2.astro +3 -3
  7. package/dist/Bug.astro +9 -9
  8. package/dist/BugOff.astro +7 -6
  9. package/dist/BugPlay.astro +4 -4
  10. package/dist/CalendarCog.astro +1 -1
  11. package/dist/ChartNoAxesColumn.astro +3 -3
  12. package/dist/ChartNoAxesColumnDecreasing.astro +3 -3
  13. package/dist/ChartNoAxesColumnIncreasing.astro +3 -3
  14. package/dist/ChartNoAxesGantt.astro +3 -3
  15. package/dist/Church.astro +3 -3
  16. package/dist/GanttChart.astro +3 -3
  17. package/dist/Home.astro +1 -1
  18. package/dist/House.astro +1 -1
  19. package/dist/HouseHeart.astro +9 -0
  20. package/dist/HousePlug.astro +1 -1
  21. package/dist/HousePlus.astro +2 -2
  22. package/dist/HouseWifi.astro +1 -1
  23. package/dist/Indent.astro +3 -3
  24. package/dist/IndentDecrease.astro +3 -3
  25. package/dist/IndentIncrease.astro +3 -3
  26. package/dist/Kanban.astro +3 -3
  27. package/dist/LetterText.astro +5 -5
  28. package/dist/List.astro +4 -4
  29. package/dist/ListCheck.astro +3 -3
  30. package/dist/ListChecks.astro +3 -3
  31. package/dist/ListChevronsDownUp.astro +12 -0
  32. package/dist/ListChevronsUpDown.astro +12 -0
  33. package/dist/ListCollapse.astro +2 -2
  34. package/dist/ListEnd.astro +4 -4
  35. package/dist/ListFilter.astro +3 -3
  36. package/dist/ListFilterPlus.astro +5 -5
  37. package/dist/ListIndentDecrease.astro +11 -0
  38. package/dist/ListIndentIncrease.astro +11 -0
  39. package/dist/ListMinus.astro +2 -2
  40. package/dist/ListMusic.astro +5 -5
  41. package/dist/ListOrdered.astro +6 -6
  42. package/dist/ListPlus.astro +2 -2
  43. package/dist/ListRestart.astro +2 -2
  44. package/dist/ListStart.astro +5 -5
  45. package/dist/ListTodo.astro +4 -4
  46. package/dist/ListTree.astro +5 -5
  47. package/dist/ListVideo.astro +4 -4
  48. package/dist/ListX.astro +4 -4
  49. package/dist/Logs.astro +7 -7
  50. package/dist/Menu.astro +2 -2
  51. package/dist/MessageSquareQuote.astro +2 -2
  52. package/dist/Outdent.astro +3 -3
  53. package/dist/PanelLeftRightDashed.astro +8 -8
  54. package/dist/PanelTopBottomDashed.astro +8 -8
  55. package/dist/Sliders.astro +9 -9
  56. package/dist/SlidersHorizontal.astro +9 -9
  57. package/dist/SlidersVertical.astro +9 -9
  58. package/dist/TableOfContents.astro +4 -4
  59. package/dist/Text.astro +4 -4
  60. package/dist/TextAlignCenter.astro +10 -0
  61. package/dist/TextAlignEnd.astro +10 -0
  62. package/dist/TextAlignJustify.astro +10 -0
  63. package/dist/TextAlignStart.astro +10 -0
  64. package/dist/TextInitial.astro +12 -0
  65. package/dist/TextQuote.astro +3 -3
  66. package/dist/TextSearch.astro +2 -2
  67. package/dist/TextWrap.astro +11 -0
  68. package/dist/WrapText.astro +5 -5
  69. package/dist/index.d.ts +11 -0
  70. package/dist/index.js +11 -0
  71. package/package.json +2 -2
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="align-center" {...Astro.props}>
6
+ <Layout iconName="text-align-center" {...Astro.props}>
7
+ <path d="M21 5H3" />
7
8
  <path d="M17 12H7" />
8
- <path d="M19 18H5" />
9
- <path d="M21 6H3" />
9
+ <path d="M19 19H5" />
10
10
  </Layout>
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="align-justify" {...Astro.props}>
6
+ <Layout iconName="text-align-justify" {...Astro.props}>
7
+ <path d="M3 5h18" />
7
8
  <path d="M3 12h18" />
8
- <path d="M3 18h18" />
9
- <path d="M3 6h18" />
9
+ <path d="M3 19h18" />
10
10
  </Layout>
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="align-left" {...Astro.props}>
6
+ <Layout iconName="text-align-start" {...Astro.props}>
7
+ <path d="M21 5H3" />
7
8
  <path d="M15 12H3" />
8
- <path d="M17 18H3" />
9
- <path d="M21 6H3" />
9
+ <path d="M17 19H3" />
10
10
  </Layout>
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="align-right" {...Astro.props}>
6
+ <Layout iconName="text-align-end" {...Astro.props}>
7
+ <path d="M21 5H3" />
7
8
  <path d="M21 12H9" />
8
- <path d="M21 18H7" />
9
- <path d="M21 6H3" />
9
+ <path d="M21 19H7" />
10
10
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="chart-no-axes-column-increasing" {...Astro.props}>
7
- <line x1="12" x2="12" y1="20" y2="10" />
8
- <line x1="18" x2="18" y1="20" y2="4" />
9
- <line x1="6" x2="6" y1="20" y2="16" />
7
+ <path d="M5 21v-6" />
8
+ <path d="M12 21V9" />
9
+ <path d="M19 21V3" />
10
10
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="chart-no-axes-column" {...Astro.props}>
7
- <line x1="18" x2="18" y1="20" y2="10" />
8
- <line x1="12" x2="12" y1="20" y2="4" />
9
- <line x1="6" x2="6" y1="20" y2="14" />
7
+ <path d="M5 21v-6" />
8
+ <path d="M12 21V3" />
9
+ <path d="M19 21V9" />
10
10
  </Layout>
package/dist/Bug.astro CHANGED
@@ -4,15 +4,15 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="bug" {...Astro.props}>
7
- <path d="m8 2 1.88 1.88" />
8
- <path d="M14.12 3.88 16 2" />
9
- <path d="M9 7.13v-1a3.003 3.003 0 1 1 6 0v1" />
10
- <path d="M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6" />
11
7
  <path d="M12 20v-9" />
12
- <path d="M6.53 9C4.6 8.8 3 7.1 3 5" />
13
- <path d="M6 13H2" />
14
- <path d="M3 21c0-2.1 1.7-3.9 3.8-4" />
15
- <path d="M20.97 5c0 2.1-1.6 3.8-3.5 4" />
8
+ <path d="M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z" />
9
+ <path d="M14.12 3.88 16 2" />
10
+ <path d="M21 21a4 4 0 0 0-3.81-4" />
11
+ <path d="M21 5a4 4 0 0 1-3.55 3.97" />
16
12
  <path d="M22 13h-4" />
17
- <path d="M17.2 17c2.1.1 3.8 1.9 3.8 4" />
13
+ <path d="M3 21a4 4 0 0 1 3.81-4" />
14
+ <path d="M3 5a4 4 0 0 0 3.55 3.97" />
15
+ <path d="M6 13H2" />
16
+ <path d="m8 2 1.88 1.88" />
17
+ <path d="M9 7.13V6a3 3 0 1 1 6 0v1.13" />
18
18
  </Layout>
package/dist/BugOff.astro CHANGED
@@ -4,13 +4,14 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="bug-off" {...Astro.props}>
7
- <path d="M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2" />
7
+ <path d="M12 20v-8" />
8
8
  <path d="M14.12 3.88 16 2" />
9
- <path d="M22 13h-4v-2a4 4 0 0 0-4-4h-1.3" />
10
- <path d="M20.97 5c0 2.1-1.6 3.8-3.5 4" />
9
+ <path d="M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2" />
10
+ <path d="M18 12.34V11a4 4 0 0 0-4-4h-1.3" />
11
11
  <path d="m2 2 20 20" />
12
- <path d="M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13" />
13
- <path d="M12 20v-8" />
12
+ <path d="M21 5a4 4 0 0 1-3.55 3.97" />
13
+ <path d="M22 13h-3.34" />
14
+ <path d="M3 21a4 4 0 0 1 3.81-4" />
14
15
  <path d="M6 13H2" />
15
- <path d="M3 21c0-2.1 1.7-3.9 3.8-4" />
16
+ <path d="M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13" />
16
17
  </Layout>
@@ -7,10 +7,10 @@ export type { Props } from './index.d.ts'
7
7
  <path d="M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97" />
8
8
  <path d="M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z" />
9
9
  <path d="M14.12 3.88 16 2" />
10
- <path d="M20.97 5c0 2.1-1.6 3.8-3.5 4" />
11
- <path d="M3 21c0-2.1 1.7-3.9 3.8-4" />
10
+ <path d="M21 5a4 4 0 0 1-3.55 3.97" />
11
+ <path d="M3 21a4 4 0 0 1 3.81-4" />
12
+ <path d="M3 5a4 4 0 0 0 3.55 3.97" />
12
13
  <path d="M6 13H2" />
13
- <path d="M6.53 9C4.6 8.8 3 7.1 3 5" />
14
14
  <path d="m8 2 1.88 1.88" />
15
- <path d="M9 7.13v-1a3 3 0 0 1 4.18-2.895 3 3 0 0 1 1.821 2.896v1" />
15
+ <path d="M9 7.13V6a3 3 0 1 1 6 0v1.13" />
16
16
  </Layout>
@@ -13,7 +13,7 @@ export type { Props } from './index.d.ts'
13
13
  <path d="m19.53 21.696-.382-.924" />
14
14
  <path d="m20.772 16.852.924-.383" />
15
15
  <path d="m20.772 19.148.924.383" />
16
- <path d="M21 11V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" />
16
+ <path d="M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" />
17
17
  <path d="M3 10h18" />
18
18
  <path d="M8 2v4" />
19
19
  <circle cx="18" cy="18" r="3" />
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="chart-no-axes-column" {...Astro.props}>
7
- <line x1="18" x2="18" y1="20" y2="10" />
8
- <line x1="12" x2="12" y1="20" y2="4" />
9
- <line x1="6" x2="6" y1="20" y2="14" />
7
+ <path d="M5 21v-6" />
8
+ <path d="M12 21V3" />
9
+ <path d="M19 21V9" />
10
10
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="chart-no-axes-column-decreasing" {...Astro.props}>
7
- <path d="M12 20V10" />
8
- <path d="M18 20v-4" />
9
- <path d="M6 20V4" />
7
+ <path d="M5 21V3" />
8
+ <path d="M12 21V9" />
9
+ <path d="M19 21v-6" />
10
10
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="chart-no-axes-column-increasing" {...Astro.props}>
7
- <line x1="12" x2="12" y1="20" y2="10" />
8
- <line x1="18" x2="18" y1="20" y2="4" />
9
- <line x1="6" x2="6" y1="20" y2="16" />
7
+ <path d="M5 21v-6" />
8
+ <path d="M12 21V9" />
9
+ <path d="M19 21V3" />
10
10
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="chart-no-axes-gantt" {...Astro.props}>
7
- <path d="M8 6h10" />
8
- <path d="M6 12h9" />
9
- <path d="M11 18h7" />
7
+ <path d="M6 5h12" />
8
+ <path d="M4 12h10" />
9
+ <path d="M12 19h8" />
10
10
  </Layout>
package/dist/Church.astro CHANGED
@@ -6,7 +6,7 @@ export type { Props } from './index.d.ts'
6
6
  <Layout iconName="church" {...Astro.props}>
7
7
  <path d="M10 9h4" />
8
8
  <path d="M12 7v5" />
9
- <path d="M14 22v-4a2 2 0 0 0-4 0v4" />
10
- <path d="M18 22V5.618a1 1 0 0 0-.553-.894l-4.553-2.277a2 2 0 0 0-1.788 0L6.553 4.724A1 1 0 0 0 6 5.618V22" />
11
- <path d="m18 7 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.618a1 1 0 0 1 .553-.894L6 7" />
9
+ <path d="M14 21v-3a2 2 0 0 0-4 0v3" />
10
+ <path d="m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9" />
11
+ <path d="M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14" />
12
12
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="chart-no-axes-gantt" {...Astro.props}>
7
- <path d="M8 6h10" />
8
- <path d="M6 12h9" />
9
- <path d="M11 18h7" />
7
+ <path d="M6 5h12" />
8
+ <path d="M4 12h10" />
9
+ <path d="M12 19h8" />
10
10
  </Layout>
package/dist/Home.astro CHANGED
@@ -5,5 +5,5 @@ export type { Props } from './index.d.ts'
5
5
 
6
6
  <Layout iconName="house" {...Astro.props}>
7
7
  <path d="M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" />
8
- <path d="M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
8
+ <path d="M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
9
9
  </Layout>
package/dist/House.astro CHANGED
@@ -5,5 +5,5 @@ export type { Props } from './index.d.ts'
5
5
 
6
6
  <Layout iconName="house" {...Astro.props}>
7
7
  <path d="M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" />
8
- <path d="M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
8
+ <path d="M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
9
9
  </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="house-heart" {...Astro.props}>
7
+ <path d="M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z" />
8
+ <path d="M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
9
+ </Layout>
@@ -7,5 +7,5 @@ export type { Props } from './index.d.ts'
7
7
  <path d="M10 12V8.964" />
8
8
  <path d="M14 12V8.964" />
9
9
  <path d="M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z" />
10
- <path d="M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2" />
10
+ <path d="M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2" />
11
11
  </Layout>
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="house-plus" {...Astro.props}>
7
- <path d="M12.662 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v2.475" />
8
- <path d="M14.959 12.717A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8" />
7
+ <path d="M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35" />
8
+ <path d="M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8" />
9
9
  <path d="M15 18h6" />
10
10
  <path d="M18 15v6" />
11
11
  </Layout>
@@ -6,6 +6,6 @@ export type { Props } from './index.d.ts'
6
6
  <Layout iconName="house-wifi" {...Astro.props}>
7
7
  <path d="M9.5 13.866a4 4 0 0 1 5 .01" />
8
8
  <path d="M12 17h.01" />
9
- <path d="M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
9
+ <path d="M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
10
10
  <path d="M7 10.754a8 8 0 0 1 10 0" />
11
11
  </Layout>
package/dist/Indent.astro CHANGED
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="indent-increase" {...Astro.props}>
6
+ <Layout iconName="list-indent-increase" {...Astro.props}>
7
+ <path d="M21 5H11" />
7
8
  <path d="M21 12H11" />
8
- <path d="M21 18H11" />
9
- <path d="M21 6H11" />
9
+ <path d="M21 19H11" />
10
10
  <path d="m3 8 4 4-4 4" />
11
11
  </Layout>
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="indent-decrease" {...Astro.props}>
6
+ <Layout iconName="list-indent-decrease" {...Astro.props}>
7
+ <path d="M21 5H11" />
7
8
  <path d="M21 12H11" />
8
- <path d="M21 18H11" />
9
- <path d="M21 6H11" />
9
+ <path d="M21 19H11" />
10
10
  <path d="m7 8-4 4 4 4" />
11
11
  </Layout>
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="indent-increase" {...Astro.props}>
6
+ <Layout iconName="list-indent-increase" {...Astro.props}>
7
+ <path d="M21 5H11" />
7
8
  <path d="M21 12H11" />
8
- <path d="M21 18H11" />
9
- <path d="M21 6H11" />
9
+ <path d="M21 19H11" />
10
10
  <path d="m3 8 4 4-4 4" />
11
11
  </Layout>
package/dist/Kanban.astro CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="kanban" {...Astro.props}>
7
- <path d="M6 5v11" />
8
- <path d="M12 5v6" />
9
- <path d="M18 5v14" />
7
+ <path d="M5 3v14" />
8
+ <path d="M12 3v8" />
9
+ <path d="M19 3v18" />
10
10
  </Layout>
@@ -3,10 +3,10 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="letter-text" {...Astro.props}>
6
+ <Layout iconName="text-initial" {...Astro.props}>
7
+ <path d="M15 5h6" />
7
8
  <path d="M15 12h6" />
8
- <path d="M15 6h6" />
9
- <path d="m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13" />
10
- <path d="M3 18h18" />
11
- <path d="M3.92 11h6.16" />
9
+ <path d="M3 19h18" />
10
+ <path d="m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12" />
11
+ <path d="M3.92 10h6.16" />
12
12
  </Layout>
package/dist/List.astro CHANGED
@@ -4,10 +4,10 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list" {...Astro.props}>
7
+ <path d="M3 5h.01" />
7
8
  <path d="M3 12h.01" />
8
- <path d="M3 18h.01" />
9
- <path d="M3 6h.01" />
9
+ <path d="M3 19h.01" />
10
+ <path d="M8 5h13" />
10
11
  <path d="M8 12h13" />
11
- <path d="M8 18h13" />
12
- <path d="M8 6h13" />
12
+ <path d="M8 19h13" />
13
13
  </Layout>
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-check" {...Astro.props}>
7
- <path d="M11 18H3" />
8
- <path d="m15 18 2 2 4-4" />
7
+ <path d="M16 5H3" />
9
8
  <path d="M16 12H3" />
10
- <path d="M16 6H3" />
9
+ <path d="M11 19H3" />
10
+ <path d="m15 18 2 2 4-4" />
11
11
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-checks" {...Astro.props}>
7
+ <path d="M13 5h8" />
8
+ <path d="M13 12h8" />
9
+ <path d="M13 19h8" />
7
10
  <path d="m3 17 2 2 4-4" />
8
11
  <path d="m3 7 2 2 4-4" />
9
- <path d="M13 6h8" />
10
- <path d="M13 12h8" />
11
- <path d="M13 18h8" />
12
12
  </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="list-chevrons-down-up" {...Astro.props}>
7
+ <path d="M3 5h8" />
8
+ <path d="M3 12h8" />
9
+ <path d="M3 19h8" />
10
+ <path d="m15 5 3 3 3-3" />
11
+ <path d="m15 19 3-3 3 3" />
12
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="list-chevrons-up-down" {...Astro.props}>
7
+ <path d="M3 5h8" />
8
+ <path d="M3 12h8" />
9
+ <path d="M3 19h8" />
10
+ <path d="m15 8 3-3 3 3" />
11
+ <path d="m15 16 3 3 3-3" />
12
+ </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-collapse" {...Astro.props}>
7
+ <path d="M10 5h11" />
7
8
  <path d="M10 12h11" />
8
- <path d="M10 18h11" />
9
- <path d="M10 6h11" />
9
+ <path d="M10 19h11" />
10
10
  <path d="m3 10 3-3-3-3" />
11
11
  <path d="m3 20 3-3-3-3" />
12
12
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-end" {...Astro.props}>
7
+ <path d="M16 5H3" />
7
8
  <path d="M16 12H3" />
8
- <path d="M16 6H3" />
9
- <path d="M10 18H3" />
10
- <path d="M21 6v10a2 2 0 0 1-2 2h-5" />
11
- <path d="m16 16-2 2 2 2" />
9
+ <path d="M9 19H3" />
10
+ <path d="m16 16-3 3 3 3" />
11
+ <path d="M21 5v12a2 2 0 0 1-2 2h-6" />
12
12
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-filter" {...Astro.props}>
7
- <path d="M3 6h18" />
8
- <path d="M7 12h10" />
9
- <path d="M10 18h4" />
7
+ <path d="M2 5h20" />
8
+ <path d="M6 12h12" />
9
+ <path d="M9 19h6" />
10
10
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-filter-plus" {...Astro.props}>
7
- <path d="M10 18h4" />
8
- <path d="M11 6H3" />
9
- <path d="M15 6h6" />
10
- <path d="M18 9V3" />
11
- <path d="M7 12h8" />
7
+ <path d="M12 5H2" />
8
+ <path d="M6 12h12" />
9
+ <path d="M9 19h6" />
10
+ <path d="M16 5h6" />
11
+ <path d="M19 8V2" />
12
12
  </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="list-indent-decrease" {...Astro.props}>
7
+ <path d="M21 5H11" />
8
+ <path d="M21 12H11" />
9
+ <path d="M21 19H11" />
10
+ <path d="m7 8-4 4 4 4" />
11
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="list-indent-increase" {...Astro.props}>
7
+ <path d="M21 5H11" />
8
+ <path d="M21 12H11" />
9
+ <path d="M21 19H11" />
10
+ <path d="m3 8 4 4-4 4" />
11
+ </Layout>
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-minus" {...Astro.props}>
7
+ <path d="M16 5H3" />
7
8
  <path d="M11 12H3" />
8
- <path d="M16 6H3" />
9
- <path d="M16 18H3" />
9
+ <path d="M16 19H3" />
10
10
  <path d="M21 12h-6" />
11
11
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-music" {...Astro.props}>
7
- <path d="M21 15V6" />
8
- <path d="M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" />
9
- <path d="M12 12H3" />
10
- <path d="M16 6H3" />
11
- <path d="M12 18H3" />
7
+ <path d="M16 5H3" />
8
+ <path d="M11 12H3" />
9
+ <path d="M11 19H3" />
10
+ <path d="M21 16V5" />
11
+ <circle cx="18" cy="16" r="3" />
12
12
  </Layout>
@@ -4,10 +4,10 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-ordered" {...Astro.props}>
7
- <path d="M10 12h11" />
8
- <path d="M10 18h11" />
9
- <path d="M10 6h11" />
10
- <path d="M4 10h2" />
11
- <path d="M4 6h1v4" />
12
- <path d="M6 18H4c0-1 2-2 2-3s-1-1.5-2-1" />
7
+ <path d="M11 5h10" />
8
+ <path d="M11 12h10" />
9
+ <path d="M11 19h10" />
10
+ <path d="M4 4h1v5" />
11
+ <path d="M4 9h2" />
12
+ <path d="M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02" />
13
13
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-plus" {...Astro.props}>
7
+ <path d="M16 5H3" />
7
8
  <path d="M11 12H3" />
8
- <path d="M16 6H3" />
9
- <path d="M16 18H3" />
9
+ <path d="M16 19H3" />
10
10
  <path d="M18 9v6" />
11
11
  <path d="M21 12h-6" />
12
12
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-restart" {...Astro.props}>
7
- <path d="M21 6H3" />
7
+ <path d="M21 5H3" />
8
8
  <path d="M7 12H3" />
9
- <path d="M7 18H3" />
9
+ <path d="M7 19H3" />
10
10
  <path d="M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14" />
11
11
  <path d="M11 10v4h4" />
12
12
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-start" {...Astro.props}>
7
- <path d="M16 12H3" />
8
- <path d="M16 18H3" />
9
- <path d="M10 6H3" />
10
- <path d="M21 18V8a2 2 0 0 0-2-2h-5" />
11
- <path d="m16 8-2-2 2-2" />
7
+ <path d="M3 5h6" />
8
+ <path d="M3 12h13" />
9
+ <path d="M3 19h13" />
10
+ <path d="m16 8-3-3 3-3" />
11
+ <path d="M21 19V7a2 2 0 0 0-2-2h-6" />
12
12
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-todo" {...Astro.props}>
7
- <rect x="3" y="5" width="6" height="6" rx="1" />
8
- <path d="m3 17 2 2 4-4" />
9
- <path d="M13 6h8" />
7
+ <path d="M13 5h8" />
10
8
  <path d="M13 12h8" />
11
- <path d="M13 18h8" />
9
+ <path d="M13 19h8" />
10
+ <path d="m3 17 2 2 4-4" />
11
+ <rect x="3" y="4" width="6" height="6" rx="1" />
12
12
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-tree" {...Astro.props}>
7
- <path d="M21 12h-8" />
8
- <path d="M21 6H8" />
9
- <path d="M21 18h-8" />
10
- <path d="M3 6v4c0 1.1.9 2 2 2h3" />
11
- <path d="M3 10v6c0 1.1.9 2 2 2h3" />
7
+ <path d="M8 5h13" />
8
+ <path d="M13 12h8" />
9
+ <path d="M13 19h8" />
10
+ <path d="M3 10a2 2 0 0 0 2 2h3" />
11
+ <path d="M3 5v12a2 2 0 0 0 2 2h3" />
12
12
  </Layout>
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-video" {...Astro.props}>
7
- <path d="M12 12H3" />
8
- <path d="M12 18H3" />
9
- <path d="M16 6H3" />
10
- <path d="M21.033 14.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .968-.56z" />
7
+ <path d="M21 5H3" />
8
+ <path d="M10 12H3" />
9
+ <path d="M10 19H3" />
10
+ <path d="M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z" />
11
11
  </Layout>
package/dist/ListX.astro CHANGED
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="list-x" {...Astro.props}>
7
+ <path d="M16 5H3" />
7
8
  <path d="M11 12H3" />
8
- <path d="M16 6H3" />
9
- <path d="M16 18H3" />
10
- <path d="m19 10-4 4" />
11
- <path d="m15 10 4 4" />
9
+ <path d="M16 19H3" />
10
+ <path d="m15.5 9.5 5 5" />
11
+ <path d="m20.5 9.5-5 5" />
12
12
  </Layout>
package/dist/Logs.astro CHANGED
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="logs" {...Astro.props}>
7
- <path d="M13 12h8" />
8
- <path d="M13 18h8" />
9
- <path d="M13 6h8" />
7
+ <path d="M3 5h1" />
10
8
  <path d="M3 12h1" />
11
- <path d="M3 18h1" />
12
- <path d="M3 6h1" />
9
+ <path d="M3 19h1" />
10
+ <path d="M8 5h1" />
13
11
  <path d="M8 12h1" />
14
- <path d="M8 18h1" />
15
- <path d="M8 6h1" />
12
+ <path d="M8 19h1" />
13
+ <path d="M13 5h8" />
14
+ <path d="M13 12h8" />
15
+ <path d="M13 19h8" />
16
16
  </Layout>
package/dist/Menu.astro CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="menu" {...Astro.props}>
7
+ <path d="M4 5h16" />
7
8
  <path d="M4 12h16" />
8
- <path d="M4 18h16" />
9
- <path d="M4 6h16" />
9
+ <path d="M4 19h16" />
10
10
  </Layout>
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="message-square-quote" {...Astro.props}>
7
+ <path d="M14 14a2 2 0 0 0 2-2V8h-2" />
7
8
  <path d="M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z" />
8
- <path d="M14 13a2 2 0 0 0 2-2V9h-2" />
9
- <path d="M8 13a2 2 0 0 0 2-2V9H8" />
9
+ <path d="M8 14a2 2 0 0 0 2-2V8H8" />
10
10
  </Layout>
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="indent-decrease" {...Astro.props}>
6
+ <Layout iconName="list-indent-decrease" {...Astro.props}>
7
+ <path d="M21 5H11" />
7
8
  <path d="M21 12H11" />
8
- <path d="M21 18H11" />
9
- <path d="M21 6H11" />
9
+ <path d="M21 19H11" />
10
10
  <path d="m7 8-4 4 4 4" />
11
11
  </Layout>
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="panel-left-right-dashed" {...Astro.props}>
7
- <path d="M16 10V9" />
8
- <path d="M16 15v-1" />
9
- <path d="M16 21v-2" />
10
- <path d="M16 5V3" />
11
- <path d="M8 10V9" />
12
- <path d="M8 15v-1" />
13
- <path d="M8 21v-2" />
14
- <path d="M8 5V3" />
7
+ <path d="M15 10V9" />
8
+ <path d="M15 15v-1" />
9
+ <path d="M15 21v-2" />
10
+ <path d="M15 5V3" />
11
+ <path d="M9 10V9" />
12
+ <path d="M9 15v-1" />
13
+ <path d="M9 21v-2" />
14
+ <path d="M9 5V3" />
15
15
  <rect x="3" y="3" width="18" height="18" rx="2" />
16
16
  </Layout>
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="panel-top-bottom-dashed" {...Astro.props}>
7
- <path d="M14 16h1" />
8
- <path d="M14 8h1" />
9
- <path d="M19 16h2" />
10
- <path d="M19 8h2" />
11
- <path d="M3 16h2" />
12
- <path d="M3 8h2" />
13
- <path d="M9 16h1" />
14
- <path d="M9 8h1" />
7
+ <path d="M14 15h1" />
8
+ <path d="M14 9h1" />
9
+ <path d="M19 15h2" />
10
+ <path d="M19 9h2" />
11
+ <path d="M3 15h2" />
12
+ <path d="M3 9h2" />
13
+ <path d="M9 15h1" />
14
+ <path d="M9 9h1" />
15
15
  <rect x="3" y="3" width="18" height="18" rx="2" />
16
16
  </Layout>
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="sliders-vertical" {...Astro.props}>
7
- <line x1="4" x2="4" y1="21" y2="14" />
8
- <line x1="4" x2="4" y1="10" y2="3" />
9
- <line x1="12" x2="12" y1="21" y2="12" />
10
- <line x1="12" x2="12" y1="8" y2="3" />
11
- <line x1="20" x2="20" y1="21" y2="16" />
12
- <line x1="20" x2="20" y1="12" y2="3" />
13
- <line x1="2" x2="6" y1="14" y2="14" />
14
- <line x1="10" x2="14" y1="8" y2="8" />
15
- <line x1="18" x2="22" y1="16" y2="16" />
7
+ <path d="M10 8h4" />
8
+ <path d="M12 21v-9" />
9
+ <path d="M12 8V3" />
10
+ <path d="M17 16h4" />
11
+ <path d="M19 12V3" />
12
+ <path d="M19 21v-5" />
13
+ <path d="M3 14h4" />
14
+ <path d="M5 10V3" />
15
+ <path d="M5 21v-7" />
16
16
  </Layout>
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="sliders-horizontal" {...Astro.props}>
7
- <line x1="21" x2="14" y1="4" y2="4" />
8
- <line x1="10" x2="3" y1="4" y2="4" />
9
- <line x1="21" x2="12" y1="12" y2="12" />
10
- <line x1="8" x2="3" y1="12" y2="12" />
11
- <line x1="21" x2="16" y1="20" y2="20" />
12
- <line x1="12" x2="3" y1="20" y2="20" />
13
- <line x1="14" x2="14" y1="2" y2="6" />
14
- <line x1="8" x2="8" y1="10" y2="14" />
15
- <line x1="16" x2="16" y1="18" y2="22" />
7
+ <path d="M10 5H3" />
8
+ <path d="M12 19H3" />
9
+ <path d="M14 3v4" />
10
+ <path d="M16 17v4" />
11
+ <path d="M21 12h-9" />
12
+ <path d="M21 19h-5" />
13
+ <path d="M21 5h-7" />
14
+ <path d="M8 10v4" />
15
+ <path d="M8 12H3" />
16
16
  </Layout>
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="sliders-vertical" {...Astro.props}>
7
- <line x1="4" x2="4" y1="21" y2="14" />
8
- <line x1="4" x2="4" y1="10" y2="3" />
9
- <line x1="12" x2="12" y1="21" y2="12" />
10
- <line x1="12" x2="12" y1="8" y2="3" />
11
- <line x1="20" x2="20" y1="21" y2="16" />
12
- <line x1="20" x2="20" y1="12" y2="3" />
13
- <line x1="2" x2="6" y1="14" y2="14" />
14
- <line x1="10" x2="14" y1="8" y2="8" />
15
- <line x1="18" x2="22" y1="16" y2="16" />
7
+ <path d="M10 8h4" />
8
+ <path d="M12 21v-9" />
9
+ <path d="M12 8V3" />
10
+ <path d="M17 16h4" />
11
+ <path d="M19 12V3" />
12
+ <path d="M19 21v-5" />
13
+ <path d="M3 14h4" />
14
+ <path d="M5 10V3" />
15
+ <path d="M5 21v-7" />
16
16
  </Layout>
@@ -4,10 +4,10 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="table-of-contents" {...Astro.props}>
7
+ <path d="M16 5H3" />
7
8
  <path d="M16 12H3" />
8
- <path d="M16 18H3" />
9
- <path d="M16 6H3" />
9
+ <path d="M16 19H3" />
10
+ <path d="M21 5h.01" />
10
11
  <path d="M21 12h.01" />
11
- <path d="M21 18h.01" />
12
- <path d="M21 6h.01" />
12
+ <path d="M21 19h.01" />
13
13
  </Layout>
package/dist/Text.astro CHANGED
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="text" {...Astro.props}>
7
- <path d="M15 18H3" />
8
- <path d="M17 6H3" />
9
- <path d="M21 12H3" />
6
+ <Layout iconName="text-align-start" {...Astro.props}>
7
+ <path d="M21 5H3" />
8
+ <path d="M15 12H3" />
9
+ <path d="M17 19H3" />
10
10
  </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="text-align-center" {...Astro.props}>
7
+ <path d="M21 5H3" />
8
+ <path d="M17 12H7" />
9
+ <path d="M19 19H5" />
10
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="text-align-end" {...Astro.props}>
7
+ <path d="M21 5H3" />
8
+ <path d="M21 12H9" />
9
+ <path d="M21 19H7" />
10
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="text-align-justify" {...Astro.props}>
7
+ <path d="M3 5h18" />
8
+ <path d="M3 12h18" />
9
+ <path d="M3 19h18" />
10
+ </Layout>
@@ -0,0 +1,10 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="text-align-start" {...Astro.props}>
7
+ <path d="M21 5H3" />
8
+ <path d="M15 12H3" />
9
+ <path d="M17 19H3" />
10
+ </Layout>
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="text-initial" {...Astro.props}>
7
+ <path d="M15 5h6" />
8
+ <path d="M15 12h6" />
9
+ <path d="M3 19h18" />
10
+ <path d="m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12" />
11
+ <path d="M3.92 10h6.16" />
12
+ </Layout>
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="text-quote" {...Astro.props}>
7
- <path d="M17 6H3" />
7
+ <path d="M17 5H3" />
8
8
  <path d="M21 12H8" />
9
- <path d="M21 18H8" />
10
- <path d="M3 12v6" />
9
+ <path d="M21 19H8" />
10
+ <path d="M3 12v7" />
11
11
  </Layout>
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="text-search" {...Astro.props}>
7
- <path d="M21 6H3" />
7
+ <path d="M21 5H3" />
8
8
  <path d="M10 12H3" />
9
- <path d="M10 18H3" />
9
+ <path d="M10 19H3" />
10
10
  <circle cx="17" cy="15" r="3" />
11
11
  <path d="m21 19-1.9-1.9" />
12
12
  </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="text-wrap" {...Astro.props}>
7
+ <path d="m16 16-3 3 3 3" />
8
+ <path d="M3 12h14.5a1 1 0 0 1 0 7H13" />
9
+ <path d="M3 19h6" />
10
+ <path d="M3 5h18" />
11
+ </Layout>
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
3
3
  export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
- <Layout iconName="wrap-text" {...Astro.props}>
7
- <path d="m16 16-2 2 2 2" />
8
- <path d="M3 12h15a3 3 0 1 1 0 6h-4" />
9
- <path d="M3 18h7" />
10
- <path d="M3 6h18" />
6
+ <Layout iconName="text-wrap" {...Astro.props}>
7
+ <path d="m16 16-3 3 3 3" />
8
+ <path d="M3 12h14.5a1 1 0 0 1 0 7H13" />
9
+ <path d="M3 19h6" />
10
+ <path d="M3 5h18" />
11
11
  </Layout>
package/dist/index.d.ts CHANGED
@@ -911,6 +911,7 @@ export { default as Hospital } from './Hospital.astro'
911
911
  export { default as Hotel } from './Hotel.astro'
912
912
  export { default as Hourglass } from './Hourglass.astro'
913
913
  export { default as House } from './House.astro'
914
+ export { default as HouseHeart } from './HouseHeart.astro'
914
915
  export { default as HousePlug } from './HousePlug.astro'
915
916
  export { default as HousePlus } from './HousePlus.astro'
916
917
  export { default as HouseWifi } from './HouseWifi.astro'
@@ -1001,10 +1002,14 @@ export { default as Linkedin } from './Linkedin.astro'
1001
1002
  export { default as List } from './List.astro'
1002
1003
  export { default as ListCheck } from './ListCheck.astro'
1003
1004
  export { default as ListChecks } from './ListChecks.astro'
1005
+ export { default as ListChevronsDownUp } from './ListChevronsDownUp.astro'
1006
+ export { default as ListChevronsUpDown } from './ListChevronsUpDown.astro'
1004
1007
  export { default as ListCollapse } from './ListCollapse.astro'
1005
1008
  export { default as ListEnd } from './ListEnd.astro'
1006
1009
  export { default as ListFilter } from './ListFilter.astro'
1007
1010
  export { default as ListFilterPlus } from './ListFilterPlus.astro'
1011
+ export { default as ListIndentDecrease } from './ListIndentDecrease.astro'
1012
+ export { default as ListIndentIncrease } from './ListIndentIncrease.astro'
1008
1013
  export { default as ListMinus } from './ListMinus.astro'
1009
1014
  export { default as ListMusic } from './ListMusic.astro'
1010
1015
  export { default as ListOrdered } from './ListOrdered.astro'
@@ -1662,12 +1667,18 @@ export { default as TestTube2 } from './TestTube2.astro'
1662
1667
  export { default as TestTubeDiagonal } from './TestTubeDiagonal.astro'
1663
1668
  export { default as TestTubes } from './TestTubes.astro'
1664
1669
  export { default as Text } from './Text.astro'
1670
+ export { default as TextAlignCenter } from './TextAlignCenter.astro'
1671
+ export { default as TextAlignEnd } from './TextAlignEnd.astro'
1672
+ export { default as TextAlignJustify } from './TextAlignJustify.astro'
1673
+ export { default as TextAlignStart } from './TextAlignStart.astro'
1665
1674
  export { default as TextCursor } from './TextCursor.astro'
1666
1675
  export { default as TextCursorInput } from './TextCursorInput.astro'
1676
+ export { default as TextInitial } from './TextInitial.astro'
1667
1677
  export { default as TextQuote } from './TextQuote.astro'
1668
1678
  export { default as TextSearch } from './TextSearch.astro'
1669
1679
  export { default as TextSelect } from './TextSelect.astro'
1670
1680
  export { default as TextSelection } from './TextSelection.astro'
1681
+ export { default as TextWrap } from './TextWrap.astro'
1671
1682
  export { default as Theater } from './Theater.astro'
1672
1683
  export { default as Thermometer } from './Thermometer.astro'
1673
1684
  export { default as ThermometerSnowflake } from './ThermometerSnowflake.astro'
package/dist/index.js CHANGED
@@ -906,6 +906,7 @@ export { default as Hospital } from './Hospital.astro'
906
906
  export { default as Hotel } from './Hotel.astro'
907
907
  export { default as Hourglass } from './Hourglass.astro'
908
908
  export { default as House } from './House.astro'
909
+ export { default as HouseHeart } from './HouseHeart.astro'
909
910
  export { default as HousePlug } from './HousePlug.astro'
910
911
  export { default as HousePlus } from './HousePlus.astro'
911
912
  export { default as HouseWifi } from './HouseWifi.astro'
@@ -996,10 +997,14 @@ export { default as Linkedin } from './Linkedin.astro'
996
997
  export { default as List } from './List.astro'
997
998
  export { default as ListCheck } from './ListCheck.astro'
998
999
  export { default as ListChecks } from './ListChecks.astro'
1000
+ export { default as ListChevronsDownUp } from './ListChevronsDownUp.astro'
1001
+ export { default as ListChevronsUpDown } from './ListChevronsUpDown.astro'
999
1002
  export { default as ListCollapse } from './ListCollapse.astro'
1000
1003
  export { default as ListEnd } from './ListEnd.astro'
1001
1004
  export { default as ListFilter } from './ListFilter.astro'
1002
1005
  export { default as ListFilterPlus } from './ListFilterPlus.astro'
1006
+ export { default as ListIndentDecrease } from './ListIndentDecrease.astro'
1007
+ export { default as ListIndentIncrease } from './ListIndentIncrease.astro'
1003
1008
  export { default as ListMinus } from './ListMinus.astro'
1004
1009
  export { default as ListMusic } from './ListMusic.astro'
1005
1010
  export { default as ListOrdered } from './ListOrdered.astro'
@@ -1657,12 +1662,18 @@ export { default as TestTube2 } from './TestTube2.astro'
1657
1662
  export { default as TestTubeDiagonal } from './TestTubeDiagonal.astro'
1658
1663
  export { default as TestTubes } from './TestTubes.astro'
1659
1664
  export { default as Text } from './Text.astro'
1665
+ export { default as TextAlignCenter } from './TextAlignCenter.astro'
1666
+ export { default as TextAlignEnd } from './TextAlignEnd.astro'
1667
+ export { default as TextAlignJustify } from './TextAlignJustify.astro'
1668
+ export { default as TextAlignStart } from './TextAlignStart.astro'
1660
1669
  export { default as TextCursor } from './TextCursor.astro'
1661
1670
  export { default as TextCursorInput } from './TextCursorInput.astro'
1671
+ export { default as TextInitial } from './TextInitial.astro'
1662
1672
  export { default as TextQuote } from './TextQuote.astro'
1663
1673
  export { default as TextSearch } from './TextSearch.astro'
1664
1674
  export { default as TextSelect } from './TextSelect.astro'
1665
1675
  export { default as TextSelection } from './TextSelection.astro'
1676
+ export { default as TextWrap } from './TextWrap.astro'
1666
1677
  export { default as Theater } from './Theater.astro'
1667
1678
  export { default as Thermometer } from './Thermometer.astro'
1668
1679
  export { default as ThermometerSnowflake } from './ThermometerSnowflake.astro'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucide-astro",
3
- "version": "0.541.0",
3
+ "version": "0.543.0",
4
4
  "description": "Get your Lucide icons right into your Astro project",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -34,7 +34,7 @@
34
34
  "author": "Aviortheking",
35
35
  "license": "MIT",
36
36
  "devDependencies": {
37
- "lucide-static": "0.541.0",
37
+ "lucide-static": "0.543.0",
38
38
  "semver": "^7.5.4"
39
39
  },
40
40
  "peerDependencies": {