lucide-astro 0.411.0 → 0.414.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AreaChart.astro +2 -2
- package/dist/BarChart3.astro +1 -1
- package/dist/BarChart4.astro +3 -3
- package/dist/BarChartBig.astro +3 -3
- package/dist/BarChartHorizontal.astro +1 -1
- package/dist/BarChartHorizontalBig.astro +3 -3
- package/dist/CandlestickChart.astro +1 -1
- package/dist/ChartArea.astro +9 -0
- package/dist/ChartBar.astro +11 -0
- package/dist/ChartBarBig.astro +10 -0
- package/dist/ChartBarDecreasing.astro +11 -0
- package/dist/ChartBarIncreasing.astro +11 -0
- package/dist/ChartBarStacked.astro +12 -0
- package/dist/ChartCandlestick.astro +14 -0
- package/dist/ChartColumn.astro +11 -0
- package/dist/ChartColumnBig.astro +10 -0
- package/dist/ChartColumnDecreasing.astro +11 -0
- package/dist/ChartColumnIncreasing.astro +11 -0
- package/dist/ChartColumnStacked.astro +12 -0
- package/dist/ChartLine.astro +9 -0
- package/dist/ChartNetwork.astro +14 -0
- package/dist/ChartNoAxesColumn.astro +10 -0
- package/dist/ChartNoAxesColumnDecreasing.astro +10 -0
- package/dist/ChartNoAxesColumnIncreasing.astro +10 -0
- package/dist/ChartNoAxesCombined.astro +13 -0
- package/dist/ChartNoAxesGantt.astro +10 -0
- package/dist/ChartPie.astro +9 -0
- package/dist/ChartScatter.astro +13 -0
- package/dist/ChartSpline.astro +9 -0
- package/dist/Dam.astro +14 -0
- package/dist/Dog.astro +4 -5
- package/dist/FileChartColumn.astro +12 -0
- package/dist/FileChartColumnIncreasing.astro +12 -0
- package/dist/FileChartLine.astro +10 -0
- package/dist/FileChartPie.astro +11 -0
- package/dist/FilePieChart.astro +1 -1
- package/dist/KeySquare.astro +2 -2
- package/dist/LetterText.astro +12 -0
- package/dist/LineChart.astro +1 -1
- package/dist/PieChart.astro +1 -1
- package/dist/ScatterChart.astro +1 -1
- package/dist/SquareChartGantt.astro +11 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.js +29 -0
- package/package.json +2 -2
package/dist/AreaChart.astro
CHANGED
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M3
|
8
|
-
<path d="M7
|
7
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
8
|
+
<path d="M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z" />
|
9
9
|
</Layout>
|
package/dist/BarChart3.astro
CHANGED
package/dist/BarChart4.astro
CHANGED
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M3 3v18h18" />
|
8
7
|
<path d="M13 17V9" />
|
9
|
-
<path d="M18
|
10
|
-
<path d="
|
8
|
+
<path d="M18 17v-3" />
|
9
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
10
|
+
<path d="M8 17V5" />
|
11
11
|
</Layout>
|
package/dist/BarChartBig.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M3
|
8
|
-
<rect
|
9
|
-
<rect
|
7
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
8
|
+
<rect x="15" y="5" width="4" height="12" rx="1" />
|
9
|
+
<rect x="7" y="8" width="4" height="9" rx="1" />
|
10
10
|
</Layout>
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M3
|
8
|
-
<rect
|
9
|
-
<rect
|
7
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
8
|
+
<rect x="7" y="13" width="9" height="4" rx="1" />
|
9
|
+
<rect x="7" y="5" width="12" height="4" rx="1" />
|
10
10
|
</Layout>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
8
|
+
<path d="M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z" />
|
9
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
8
|
+
<rect x="7" y="13" width="9" height="4" rx="1" />
|
9
|
+
<rect x="7" y="5" width="12" height="4" rx="1" />
|
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 {...Astro.props}>
|
7
|
+
<path d="M11 13v4" />
|
8
|
+
<path d="M15 5v4" />
|
9
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
10
|
+
<rect x="7" y="13" width="9" height="4" rx="1" />
|
11
|
+
<rect x="7" y="5" width="12" height="4" rx="1" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M9 5v4" />
|
8
|
+
<rect width="4" height="6" x="7" y="9" rx="1" />
|
9
|
+
<path d="M9 15v2" />
|
10
|
+
<path d="M17 3v2" />
|
11
|
+
<rect width="4" height="8" x="15" y="5" rx="1" />
|
12
|
+
<path d="M17 13v3" />
|
13
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
14
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
8
|
+
<rect x="15" y="5" width="4" height="12" rx="1" />
|
9
|
+
<rect x="7" y="8" width="4" height="9" rx="1" />
|
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 {...Astro.props}>
|
7
|
+
<path d="M11 13H7" />
|
8
|
+
<path d="M19 9h-4" />
|
9
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
10
|
+
<rect x="15" y="5" width="4" height="12" rx="1" />
|
11
|
+
<rect x="7" y="8" width="4" height="9" rx="1" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="m13.11 7.664 1.78 2.672" />
|
8
|
+
<path d="m14.162 12.788-3.324 1.424" />
|
9
|
+
<path d="m20 4-6.06 1.515" />
|
10
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
11
|
+
<circle cx="12" cy="6" r="2" />
|
12
|
+
<circle cx="16" cy="12" r="2" />
|
13
|
+
<circle cx="9" cy="15" r="2" />
|
14
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...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" />
|
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 {...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" />
|
10
|
+
</Layout>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M12 16v5" />
|
8
|
+
<path d="M16 14v7" />
|
9
|
+
<path d="M20 10v11" />
|
10
|
+
<path d="m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15" />
|
11
|
+
<path d="M4 18v3" />
|
12
|
+
<path d="M8 14v7" />
|
13
|
+
</Layout>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z" />
|
8
|
+
<path d="M21.21 15.89A10 10 0 1 1 8 2.83" />
|
9
|
+
</Layout>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<circle cx="7.5" cy="7.5" r=".5" fill="currentColor" />
|
8
|
+
<circle cx="18.5" cy="5.5" r=".5" fill="currentColor" />
|
9
|
+
<circle cx="11.5" cy="11.5" r=".5" fill="currentColor" />
|
10
|
+
<circle cx="7.5" cy="16.5" r=".5" fill="currentColor" />
|
11
|
+
<circle cx="17.5" cy="14.5" r=".5" fill="currentColor" />
|
12
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
13
|
+
</Layout>
|
package/dist/Dam.astro
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" />
|
8
|
+
<path d="M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" />
|
9
|
+
<path d="M2 10h4" />
|
10
|
+
<path d="M2 14h4" />
|
11
|
+
<path d="M2 18h4" />
|
12
|
+
<path d="M2 6h4" />
|
13
|
+
<path d="M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z" />
|
14
|
+
</Layout>
|
package/dist/Dog.astro
CHANGED
@@ -4,10 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="M14.267 5.172c0-1.39 1.577-2.493 3.5-2.172 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5" />
|
9
|
-
<path d="M8 14v.5" />
|
7
|
+
<path d="M11.25 16.25h1.5L12 17z" />
|
10
8
|
<path d="M16 14v.5" />
|
11
|
-
<path d="
|
12
|
-
<path d="
|
9
|
+
<path d="M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309" />
|
10
|
+
<path d="M8 14v.5" />
|
11
|
+
<path d="M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5" />
|
13
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 {...Astro.props}>
|
7
|
+
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" />
|
8
|
+
<path d="M14 2v4a2 2 0 0 0 2 2h4" />
|
9
|
+
<path d="M8 18v-1" />
|
10
|
+
<path d="M12 18v-6" />
|
11
|
+
<path d="M16 18v-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 {...Astro.props}>
|
7
|
+
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" />
|
8
|
+
<path d="M14 2v4a2 2 0 0 0 2 2h4" />
|
9
|
+
<path d="M8 18v-2" />
|
10
|
+
<path d="M12 18v-4" />
|
11
|
+
<path d="M16 18v-6" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" />
|
8
|
+
<path d="M14 2v4a2 2 0 0 0 2 2h4" />
|
9
|
+
<path d="m16 13-3.5 3.5-2-2L8 17" />
|
10
|
+
</Layout>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M14 2v4a2 2 0 0 0 2 2h4" />
|
8
|
+
<path d="M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5" />
|
9
|
+
<path d="M4.017 11.512a6 6 0 1 0 8.466 8.475" />
|
10
|
+
<path d="M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z" />
|
11
|
+
</Layout>
|
package/dist/FilePieChart.astro
CHANGED
@@ -7,5 +7,5 @@ export type { Props } from './index.d.ts'
|
|
7
7
|
<path d="M14 2v4a2 2 0 0 0 2 2h4" />
|
8
8
|
<path d="M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5" />
|
9
9
|
<path d="M4.017 11.512a6 6 0 1 0 8.466 8.475" />
|
10
|
-
<path d="
|
10
|
+
<path d="M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z" />
|
11
11
|
</Layout>
|
package/dist/KeySquare.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M12.4 2.
|
7
|
+
<path d="M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z" />
|
8
8
|
<path d="m14 7 3 3" />
|
9
|
-
<path d="
|
9
|
+
<path d="m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814" />
|
10
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 {...Astro.props}>
|
7
|
+
<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="M4 11h6" />
|
12
|
+
</Layout>
|
package/dist/LineChart.astro
CHANGED
package/dist/PieChart.astro
CHANGED
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
+
<path d="M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z" />
|
7
8
|
<path d="M21.21 15.89A10 10 0 1 1 8 2.83" />
|
8
|
-
<path d="M22 12A10 10 0 0 0 12 2v10z" />
|
9
9
|
</Layout>
|
package/dist/ScatterChart.astro
CHANGED
@@ -9,5 +9,5 @@ export type { Props } from './index.d.ts'
|
|
9
9
|
<circle cx="11.5" cy="11.5" r=".5" fill="currentColor" />
|
10
10
|
<circle cx="7.5" cy="16.5" r=".5" fill="currentColor" />
|
11
11
|
<circle cx="17.5" cy="14.5" r=".5" fill="currentColor" />
|
12
|
-
<path d="M3
|
12
|
+
<path d="M3 3v16a2 2 0 0 0 2 2h16" />
|
13
13
|
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -323,6 +323,28 @@ export { default as Cast } from './Cast.astro'
|
|
323
323
|
export { default as Castle } from './Castle.astro'
|
324
324
|
export { default as Cat } from './Cat.astro'
|
325
325
|
export { default as Cctv } from './Cctv.astro'
|
326
|
+
export { default as ChartArea } from './ChartArea.astro'
|
327
|
+
export { default as ChartBar } from './ChartBar.astro'
|
328
|
+
export { default as ChartBarBig } from './ChartBarBig.astro'
|
329
|
+
export { default as ChartBarDecreasing } from './ChartBarDecreasing.astro'
|
330
|
+
export { default as ChartBarIncreasing } from './ChartBarIncreasing.astro'
|
331
|
+
export { default as ChartBarStacked } from './ChartBarStacked.astro'
|
332
|
+
export { default as ChartCandlestick } from './ChartCandlestick.astro'
|
333
|
+
export { default as ChartColumn } from './ChartColumn.astro'
|
334
|
+
export { default as ChartColumnBig } from './ChartColumnBig.astro'
|
335
|
+
export { default as ChartColumnDecreasing } from './ChartColumnDecreasing.astro'
|
336
|
+
export { default as ChartColumnIncreasing } from './ChartColumnIncreasing.astro'
|
337
|
+
export { default as ChartColumnStacked } from './ChartColumnStacked.astro'
|
338
|
+
export { default as ChartLine } from './ChartLine.astro'
|
339
|
+
export { default as ChartNetwork } from './ChartNetwork.astro'
|
340
|
+
export { default as ChartNoAxesColumn } from './ChartNoAxesColumn.astro'
|
341
|
+
export { default as ChartNoAxesColumnDecreasing } from './ChartNoAxesColumnDecreasing.astro'
|
342
|
+
export { default as ChartNoAxesColumnIncreasing } from './ChartNoAxesColumnIncreasing.astro'
|
343
|
+
export { default as ChartNoAxesCombined } from './ChartNoAxesCombined.astro'
|
344
|
+
export { default as ChartNoAxesGantt } from './ChartNoAxesGantt.astro'
|
345
|
+
export { default as ChartPie } from './ChartPie.astro'
|
346
|
+
export { default as ChartScatter } from './ChartScatter.astro'
|
347
|
+
export { default as ChartSpline } from './ChartSpline.astro'
|
326
348
|
export { default as Check } from './Check.astro'
|
327
349
|
export { default as CheckCheck } from './CheckCheck.astro'
|
328
350
|
export { default as CheckCircle } from './CheckCircle.astro'
|
@@ -506,6 +528,7 @@ export { default as CupSoda } from './CupSoda.astro'
|
|
506
528
|
export { default as CurlyBraces } from './CurlyBraces.astro'
|
507
529
|
export { default as Currency } from './Currency.astro'
|
508
530
|
export { default as Cylinder } from './Cylinder.astro'
|
531
|
+
export { default as Dam } from './Dam.astro'
|
509
532
|
export { default as Database } from './Database.astro'
|
510
533
|
export { default as DatabaseBackup } from './DatabaseBackup.astro'
|
511
534
|
export { default as DatabaseZap } from './DatabaseZap.astro'
|
@@ -593,6 +616,10 @@ export { default as FileBadge2 } from './FileBadge2.astro'
|
|
593
616
|
export { default as FileBarChart } from './FileBarChart.astro'
|
594
617
|
export { default as FileBarChart2 } from './FileBarChart2.astro'
|
595
618
|
export { default as FileBox } from './FileBox.astro'
|
619
|
+
export { default as FileChartColumn } from './FileChartColumn.astro'
|
620
|
+
export { default as FileChartColumnIncreasing } from './FileChartColumnIncreasing.astro'
|
621
|
+
export { default as FileChartLine } from './FileChartLine.astro'
|
622
|
+
export { default as FileChartPie } from './FileChartPie.astro'
|
596
623
|
export { default as FileCheck } from './FileCheck.astro'
|
597
624
|
export { default as FileCheck2 } from './FileCheck2.astro'
|
598
625
|
export { default as FileClock } from './FileClock.astro'
|
@@ -880,6 +907,7 @@ export { default as LayoutTemplate } from './LayoutTemplate.astro'
|
|
880
907
|
export { default as Leaf } from './Leaf.astro'
|
881
908
|
export { default as LeafyGreen } from './LeafyGreen.astro'
|
882
909
|
export { default as Lectern } from './Lectern.astro'
|
910
|
+
export { default as LetterText } from './LetterText.astro'
|
883
911
|
export { default as Library } from './Library.astro'
|
884
912
|
export { default as LibraryBig } from './LibraryBig.astro'
|
885
913
|
export { default as LibrarySquare } from './LibrarySquare.astro'
|
@@ -1395,6 +1423,7 @@ export { default as SquareArrowUpLeft } from './SquareArrowUpLeft.astro'
|
|
1395
1423
|
export { default as SquareArrowUpRight } from './SquareArrowUpRight.astro'
|
1396
1424
|
export { default as SquareAsterisk } from './SquareAsterisk.astro'
|
1397
1425
|
export { default as SquareBottomDashedScissors } from './SquareBottomDashedScissors.astro'
|
1426
|
+
export { default as SquareChartGantt } from './SquareChartGantt.astro'
|
1398
1427
|
export { default as SquareCheck } from './SquareCheck.astro'
|
1399
1428
|
export { default as SquareCheckBig } from './SquareCheckBig.astro'
|
1400
1429
|
export { default as SquareChevronDown } from './SquareChevronDown.astro'
|
package/dist/index.js
CHANGED
@@ -318,6 +318,28 @@ export { default as Cast } from './Cast.astro'
|
|
318
318
|
export { default as Castle } from './Castle.astro'
|
319
319
|
export { default as Cat } from './Cat.astro'
|
320
320
|
export { default as Cctv } from './Cctv.astro'
|
321
|
+
export { default as ChartArea } from './ChartArea.astro'
|
322
|
+
export { default as ChartBar } from './ChartBar.astro'
|
323
|
+
export { default as ChartBarBig } from './ChartBarBig.astro'
|
324
|
+
export { default as ChartBarDecreasing } from './ChartBarDecreasing.astro'
|
325
|
+
export { default as ChartBarIncreasing } from './ChartBarIncreasing.astro'
|
326
|
+
export { default as ChartBarStacked } from './ChartBarStacked.astro'
|
327
|
+
export { default as ChartCandlestick } from './ChartCandlestick.astro'
|
328
|
+
export { default as ChartColumn } from './ChartColumn.astro'
|
329
|
+
export { default as ChartColumnBig } from './ChartColumnBig.astro'
|
330
|
+
export { default as ChartColumnDecreasing } from './ChartColumnDecreasing.astro'
|
331
|
+
export { default as ChartColumnIncreasing } from './ChartColumnIncreasing.astro'
|
332
|
+
export { default as ChartColumnStacked } from './ChartColumnStacked.astro'
|
333
|
+
export { default as ChartLine } from './ChartLine.astro'
|
334
|
+
export { default as ChartNetwork } from './ChartNetwork.astro'
|
335
|
+
export { default as ChartNoAxesColumn } from './ChartNoAxesColumn.astro'
|
336
|
+
export { default as ChartNoAxesColumnDecreasing } from './ChartNoAxesColumnDecreasing.astro'
|
337
|
+
export { default as ChartNoAxesColumnIncreasing } from './ChartNoAxesColumnIncreasing.astro'
|
338
|
+
export { default as ChartNoAxesCombined } from './ChartNoAxesCombined.astro'
|
339
|
+
export { default as ChartNoAxesGantt } from './ChartNoAxesGantt.astro'
|
340
|
+
export { default as ChartPie } from './ChartPie.astro'
|
341
|
+
export { default as ChartScatter } from './ChartScatter.astro'
|
342
|
+
export { default as ChartSpline } from './ChartSpline.astro'
|
321
343
|
export { default as Check } from './Check.astro'
|
322
344
|
export { default as CheckCheck } from './CheckCheck.astro'
|
323
345
|
export { default as CheckCircle } from './CheckCircle.astro'
|
@@ -501,6 +523,7 @@ export { default as CupSoda } from './CupSoda.astro'
|
|
501
523
|
export { default as CurlyBraces } from './CurlyBraces.astro'
|
502
524
|
export { default as Currency } from './Currency.astro'
|
503
525
|
export { default as Cylinder } from './Cylinder.astro'
|
526
|
+
export { default as Dam } from './Dam.astro'
|
504
527
|
export { default as Database } from './Database.astro'
|
505
528
|
export { default as DatabaseBackup } from './DatabaseBackup.astro'
|
506
529
|
export { default as DatabaseZap } from './DatabaseZap.astro'
|
@@ -588,6 +611,10 @@ export { default as FileBadge2 } from './FileBadge2.astro'
|
|
588
611
|
export { default as FileBarChart } from './FileBarChart.astro'
|
589
612
|
export { default as FileBarChart2 } from './FileBarChart2.astro'
|
590
613
|
export { default as FileBox } from './FileBox.astro'
|
614
|
+
export { default as FileChartColumn } from './FileChartColumn.astro'
|
615
|
+
export { default as FileChartColumnIncreasing } from './FileChartColumnIncreasing.astro'
|
616
|
+
export { default as FileChartLine } from './FileChartLine.astro'
|
617
|
+
export { default as FileChartPie } from './FileChartPie.astro'
|
591
618
|
export { default as FileCheck } from './FileCheck.astro'
|
592
619
|
export { default as FileCheck2 } from './FileCheck2.astro'
|
593
620
|
export { default as FileClock } from './FileClock.astro'
|
@@ -875,6 +902,7 @@ export { default as LayoutTemplate } from './LayoutTemplate.astro'
|
|
875
902
|
export { default as Leaf } from './Leaf.astro'
|
876
903
|
export { default as LeafyGreen } from './LeafyGreen.astro'
|
877
904
|
export { default as Lectern } from './Lectern.astro'
|
905
|
+
export { default as LetterText } from './LetterText.astro'
|
878
906
|
export { default as Library } from './Library.astro'
|
879
907
|
export { default as LibraryBig } from './LibraryBig.astro'
|
880
908
|
export { default as LibrarySquare } from './LibrarySquare.astro'
|
@@ -1390,6 +1418,7 @@ export { default as SquareArrowUpLeft } from './SquareArrowUpLeft.astro'
|
|
1390
1418
|
export { default as SquareArrowUpRight } from './SquareArrowUpRight.astro'
|
1391
1419
|
export { default as SquareAsterisk } from './SquareAsterisk.astro'
|
1392
1420
|
export { default as SquareBottomDashedScissors } from './SquareBottomDashedScissors.astro'
|
1421
|
+
export { default as SquareChartGantt } from './SquareChartGantt.astro'
|
1393
1422
|
export { default as SquareCheck } from './SquareCheck.astro'
|
1394
1423
|
export { default as SquareCheckBig } from './SquareCheckBig.astro'
|
1395
1424
|
export { default as SquareChevronDown } from './SquareChevronDown.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.414.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",
|
@@ -26,7 +26,7 @@
|
|
26
26
|
"author": "Aviortheking",
|
27
27
|
"license": "MIT",
|
28
28
|
"devDependencies": {
|
29
|
-
"lucide-static": "0.
|
29
|
+
"lucide-static": "0.414.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|