lucide-astro 0.271.0 → 0.272.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/BadgeCent.astro +10 -0
- package/dist/BadgeEuro.astro +10 -0
- package/dist/BadgeIndianRupee.astro +11 -0
- package/dist/BadgeJapaneseYen.astro +12 -0
- package/dist/BadgePoundSterling.astro +11 -0
- package/dist/BadgeRussianRuble.astro +10 -0
- package/dist/BadgeSwissFranc.astro +11 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +7 -0
- package/package.json +2 -2
@@ -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.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
|
8
|
+
<path d="M12 7v10" />
|
9
|
+
<path d="M15.4 10a4 4 0 1 0 0 4" />
|
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
|
+
<path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
|
8
|
+
<path d="M7 12h5" />
|
9
|
+
<path d="M15 9.4a4 4 0 1 0 0 5.2" />
|
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="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
|
8
|
+
<path d="M8 8h8" />
|
9
|
+
<path d="M8 12h8" />
|
10
|
+
<path d="m13 17-5-1h1a4 4 0 0 0 0-8" />
|
11
|
+
</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="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
|
8
|
+
<path d="m9 8 3 3v7" />
|
9
|
+
<path d="m12 11 3-3" />
|
10
|
+
<path d="M9 12h6" />
|
11
|
+
<path d="M9 16h6" />
|
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 {...Astro.props}>
|
7
|
+
<path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
|
8
|
+
<path d="M8 12h4" />
|
9
|
+
<path d="M10 16V9.5a2.5 2.5 0 0 1 5 0" />
|
10
|
+
<path d="M8 16h7" />
|
11
|
+
</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.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
|
8
|
+
<path d="M9 16h5" />
|
9
|
+
<path d="M9 12h5a2 2 0 1 0 0-4h-3v9" />
|
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="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
|
8
|
+
<path d="M11 17V8h4" />
|
9
|
+
<path d="M11 12h3" />
|
10
|
+
<path d="M9 16h4" />
|
11
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -127,13 +127,20 @@ export { default as Axis3d } from './Axis3d.astro'
|
|
127
127
|
export { default as Baby } from './Baby.astro'
|
128
128
|
export { default as Backpack } from './Backpack.astro'
|
129
129
|
export { default as BadgeAlert } from './BadgeAlert.astro'
|
130
|
+
export { default as BadgeCent } from './BadgeCent.astro'
|
130
131
|
export { default as BadgeCheck } from './BadgeCheck.astro'
|
131
132
|
export { default as BadgeDollarSign } from './BadgeDollarSign.astro'
|
133
|
+
export { default as BadgeEuro } from './BadgeEuro.astro'
|
132
134
|
export { default as BadgeHelp } from './BadgeHelp.astro'
|
135
|
+
export { default as BadgeIndianRupee } from './BadgeIndianRupee.astro'
|
133
136
|
export { default as BadgeInfo } from './BadgeInfo.astro'
|
137
|
+
export { default as BadgeJapaneseYen } from './BadgeJapaneseYen.astro'
|
134
138
|
export { default as BadgeMinus } from './BadgeMinus.astro'
|
135
139
|
export { default as BadgePercent } from './BadgePercent.astro'
|
136
140
|
export { default as BadgePlus } from './BadgePlus.astro'
|
141
|
+
export { default as BadgePoundSterling } from './BadgePoundSterling.astro'
|
142
|
+
export { default as BadgeRussianRuble } from './BadgeRussianRuble.astro'
|
143
|
+
export { default as BadgeSwissFranc } from './BadgeSwissFranc.astro'
|
137
144
|
export { default as BadgeX } from './BadgeX.astro'
|
138
145
|
export { default as Badge } from './Badge.astro'
|
139
146
|
export { default as BaggageClaim } from './BaggageClaim.astro'
|
package/dist/index.js
CHANGED
@@ -120,13 +120,20 @@ export { default as Axis3d } from './Axis3d.astro'
|
|
120
120
|
export { default as Baby } from './Baby.astro'
|
121
121
|
export { default as Backpack } from './Backpack.astro'
|
122
122
|
export { default as BadgeAlert } from './BadgeAlert.astro'
|
123
|
+
export { default as BadgeCent } from './BadgeCent.astro'
|
123
124
|
export { default as BadgeCheck } from './BadgeCheck.astro'
|
124
125
|
export { default as BadgeDollarSign } from './BadgeDollarSign.astro'
|
126
|
+
export { default as BadgeEuro } from './BadgeEuro.astro'
|
125
127
|
export { default as BadgeHelp } from './BadgeHelp.astro'
|
128
|
+
export { default as BadgeIndianRupee } from './BadgeIndianRupee.astro'
|
126
129
|
export { default as BadgeInfo } from './BadgeInfo.astro'
|
130
|
+
export { default as BadgeJapaneseYen } from './BadgeJapaneseYen.astro'
|
127
131
|
export { default as BadgeMinus } from './BadgeMinus.astro'
|
128
132
|
export { default as BadgePercent } from './BadgePercent.astro'
|
129
133
|
export { default as BadgePlus } from './BadgePlus.astro'
|
134
|
+
export { default as BadgePoundSterling } from './BadgePoundSterling.astro'
|
135
|
+
export { default as BadgeRussianRuble } from './BadgeRussianRuble.astro'
|
136
|
+
export { default as BadgeSwissFranc } from './BadgeSwissFranc.astro'
|
130
137
|
export { default as BadgeX } from './BadgeX.astro'
|
131
138
|
export { default as Badge } from './Badge.astro'
|
132
139
|
export { default as BaggageClaim } from './BaggageClaim.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.272.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.272.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1"
|