lucide-astro 0.516.0 → 0.518.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/BadgeHelp.astro +1 -1
- package/dist/BadgeQuestionMark.astro +10 -0
- package/dist/Barrel.astro +12 -0
- package/dist/CircleHelp.astro +1 -1
- package/dist/CircleQuestionMark.astro +10 -0
- package/dist/Drone.astro +16 -0
- package/dist/Egg.astro +1 -1
- package/dist/EggOff.astro +3 -3
- package/dist/FileQuestion.astro +1 -1
- package/dist/FileQuestionMark.astro +10 -0
- package/dist/HelpCircle.astro +1 -1
- package/dist/MailQuestion.astro +1 -1
- package/dist/MailQuestionMark.astro +11 -0
- package/dist/MessageCircleQuestion.astro +1 -1
- package/dist/MessageCircleQuestionMark.astro +10 -0
- package/dist/ShieldQuestion.astro +1 -1
- package/dist/ShieldQuestionMark.astro +10 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +8 -0
- package/package.json +2 -2
package/dist/BadgeHelp.astro
CHANGED
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="badge-
|
6
|
+
<Layout iconName="badge-question-mark" {...Astro.props}>
|
7
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
8
|
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
9
9
|
<line x1="12" x2="12.01" y1="17" y2="17" />
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="badge-question-mark" {...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.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
9
|
+
<line x1="12" x2="12.01" y1="17" y2="17" />
|
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="barrel" {...Astro.props}>
|
7
|
+
<path d="M10 3a41 41 0 0 0 0 18" />
|
8
|
+
<path d="M14 3a41 41 0 0 1 0 18" />
|
9
|
+
<path d="M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z" />
|
10
|
+
<path d="M3.84 17h16.32" />
|
11
|
+
<path d="M3.84 7h16.32" />
|
12
|
+
</Layout>
|
package/dist/CircleHelp.astro
CHANGED
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="circle-
|
6
|
+
<Layout iconName="circle-question-mark" {...Astro.props}>
|
7
7
|
<circle cx="12" cy="12" r="10" />
|
8
8
|
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
9
9
|
<path d="M12 17h.01" />
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="circle-question-mark" {...Astro.props}>
|
7
|
+
<circle cx="12" cy="12" r="10" />
|
8
|
+
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
9
|
+
<path d="M12 17h.01" />
|
10
|
+
</Layout>
|
package/dist/Drone.astro
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="drone" {...Astro.props}>
|
7
|
+
<path d="M10 10 7 7" />
|
8
|
+
<path d="m10 14-3 3" />
|
9
|
+
<path d="m14 10 3-3" />
|
10
|
+
<path d="m14 14 3 3" />
|
11
|
+
<path d="M14.205 4.139a4 4 0 1 1 5.439 5.863" />
|
12
|
+
<path d="M19.637 14a4 4 0 1 1-5.432 5.868" />
|
13
|
+
<path d="M4.367 10a4 4 0 1 1 5.438-5.862" />
|
14
|
+
<path d="M9.795 19.862a4 4 0 1 1-5.429-5.873" />
|
15
|
+
<rect x="10" y="8" width="4" height="8" rx="1" />
|
16
|
+
</Layout>
|
package/dist/Egg.astro
CHANGED
@@ -4,5 +4,5 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="egg" {...Astro.props}>
|
7
|
-
<path d="M12
|
7
|
+
<path d="M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12" />
|
8
8
|
</Layout>
|
package/dist/EggOff.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="egg-off" {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<
|
7
|
+
<path d="m2 2 20 20" />
|
8
|
+
<path d="M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19" />
|
9
|
+
<path d="M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568" />
|
10
10
|
</Layout>
|
package/dist/FileQuestion.astro
CHANGED
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="file-question" {...Astro.props}>
|
6
|
+
<Layout iconName="file-question-mark" {...Astro.props}>
|
7
7
|
<path d="M12 17h.01" />
|
8
8
|
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" />
|
9
9
|
<path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" />
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="file-question-mark" {...Astro.props}>
|
7
|
+
<path d="M12 17h.01" />
|
8
|
+
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" />
|
9
|
+
<path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" />
|
10
|
+
</Layout>
|
package/dist/HelpCircle.astro
CHANGED
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="circle-
|
6
|
+
<Layout iconName="circle-question-mark" {...Astro.props}>
|
7
7
|
<circle cx="12" cy="12" r="10" />
|
8
8
|
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
9
9
|
<path d="M12 17h.01" />
|
package/dist/MailQuestion.astro
CHANGED
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="mail-question" {...Astro.props}>
|
6
|
+
<Layout iconName="mail-question-mark" {...Astro.props}>
|
7
7
|
<path d="M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5" />
|
8
8
|
<path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" />
|
9
9
|
<path d="M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2" />
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="mail-question-mark" {...Astro.props}>
|
7
|
+
<path d="M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5" />
|
8
|
+
<path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" />
|
9
|
+
<path d="M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2" />
|
10
|
+
<path d="M20 22v.01" />
|
11
|
+
</Layout>
|
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="message-circle-question" {...Astro.props}>
|
6
|
+
<Layout iconName="message-circle-question-mark" {...Astro.props}>
|
7
7
|
<path d="M7.9 20A9 9 0 1 0 4 16.1L2 22Z" />
|
8
8
|
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
9
9
|
<path d="M12 17h.01" />
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="message-circle-question-mark" {...Astro.props}>
|
7
|
+
<path d="M7.9 20A9 9 0 1 0 4 16.1L2 22Z" />
|
8
|
+
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
|
9
|
+
<path d="M12 17h.01" />
|
10
|
+
</Layout>
|
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="shield-question" {...Astro.props}>
|
6
|
+
<Layout iconName="shield-question-mark" {...Astro.props}>
|
7
7
|
<path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" />
|
8
8
|
<path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" />
|
9
9
|
<path d="M12 17h.01" />
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="shield-question-mark" {...Astro.props}>
|
7
|
+
<path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" />
|
8
|
+
<path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" />
|
9
|
+
<path d="M12 17h.01" />
|
10
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -161,6 +161,7 @@ export { default as BadgeMinus } from './BadgeMinus.astro'
|
|
161
161
|
export { default as BadgePercent } from './BadgePercent.astro'
|
162
162
|
export { default as BadgePlus } from './BadgePlus.astro'
|
163
163
|
export { default as BadgePoundSterling } from './BadgePoundSterling.astro'
|
164
|
+
export { default as BadgeQuestionMark } from './BadgeQuestionMark.astro'
|
164
165
|
export { default as BadgeRussianRuble } from './BadgeRussianRuble.astro'
|
165
166
|
export { default as BadgeSwissFranc } from './BadgeSwissFranc.astro'
|
166
167
|
export { default as BadgeX } from './BadgeX.astro'
|
@@ -180,6 +181,7 @@ export { default as BarChartBig } from './BarChartBig.astro'
|
|
180
181
|
export { default as BarChartHorizontal } from './BarChartHorizontal.astro'
|
181
182
|
export { default as BarChartHorizontalBig } from './BarChartHorizontalBig.astro'
|
182
183
|
export { default as Barcode } from './Barcode.astro'
|
184
|
+
export { default as Barrel } from './Barrel.astro'
|
183
185
|
export { default as Baseline } from './Baseline.astro'
|
184
186
|
export { default as Bath } from './Bath.astro'
|
185
187
|
export { default as Battery } from './Battery.astro'
|
@@ -435,6 +437,7 @@ export { default as CirclePlay } from './CirclePlay.astro'
|
|
435
437
|
export { default as CirclePlus } from './CirclePlus.astro'
|
436
438
|
export { default as CirclePoundSterling } from './CirclePoundSterling.astro'
|
437
439
|
export { default as CirclePower } from './CirclePower.astro'
|
440
|
+
export { default as CircleQuestionMark } from './CircleQuestionMark.astro'
|
438
441
|
export { default as CircleSlash } from './CircleSlash.astro'
|
439
442
|
export { default as CircleSlash2 } from './CircleSlash2.astro'
|
440
443
|
export { default as CircleSlashed } from './CircleSlashed.astro'
|
@@ -602,6 +605,7 @@ export { default as DraftingCompass } from './DraftingCompass.astro'
|
|
602
605
|
export { default as Drama } from './Drama.astro'
|
603
606
|
export { default as Dribbble } from './Dribbble.astro'
|
604
607
|
export { default as Drill } from './Drill.astro'
|
608
|
+
export { default as Drone } from './Drone.astro'
|
605
609
|
export { default as Droplet } from './Droplet.astro'
|
606
610
|
export { default as DropletOff } from './DropletOff.astro'
|
607
611
|
export { default as Droplets } from './Droplets.astro'
|
@@ -687,6 +691,7 @@ export { default as FilePieChart } from './FilePieChart.astro'
|
|
687
691
|
export { default as FilePlus } from './FilePlus.astro'
|
688
692
|
export { default as FilePlus2 } from './FilePlus2.astro'
|
689
693
|
export { default as FileQuestion } from './FileQuestion.astro'
|
694
|
+
export { default as FileQuestionMark } from './FileQuestionMark.astro'
|
690
695
|
export { default as FileScan } from './FileScan.astro'
|
691
696
|
export { default as FileSearch } from './FileSearch.astro'
|
692
697
|
export { default as FileSearch2 } from './FileSearch2.astro'
|
@@ -1019,6 +1024,7 @@ export { default as MailMinus } from './MailMinus.astro'
|
|
1019
1024
|
export { default as MailOpen } from './MailOpen.astro'
|
1020
1025
|
export { default as MailPlus } from './MailPlus.astro'
|
1021
1026
|
export { default as MailQuestion } from './MailQuestion.astro'
|
1027
|
+
export { default as MailQuestionMark } from './MailQuestionMark.astro'
|
1022
1028
|
export { default as MailSearch } from './MailSearch.astro'
|
1023
1029
|
export { default as MailWarning } from './MailWarning.astro'
|
1024
1030
|
export { default as MailX } from './MailX.astro'
|
@@ -1059,6 +1065,7 @@ export { default as MessageCircleMore } from './MessageCircleMore.astro'
|
|
1059
1065
|
export { default as MessageCircleOff } from './MessageCircleOff.astro'
|
1060
1066
|
export { default as MessageCirclePlus } from './MessageCirclePlus.astro'
|
1061
1067
|
export { default as MessageCircleQuestion } from './MessageCircleQuestion.astro'
|
1068
|
+
export { default as MessageCircleQuestionMark } from './MessageCircleQuestionMark.astro'
|
1062
1069
|
export { default as MessageCircleReply } from './MessageCircleReply.astro'
|
1063
1070
|
export { default as MessageCircleWarning } from './MessageCircleWarning.astro'
|
1064
1071
|
export { default as MessageCircleX } from './MessageCircleX.astro'
|
@@ -1429,6 +1436,7 @@ export { default as ShieldMinus } from './ShieldMinus.astro'
|
|
1429
1436
|
export { default as ShieldOff } from './ShieldOff.astro'
|
1430
1437
|
export { default as ShieldPlus } from './ShieldPlus.astro'
|
1431
1438
|
export { default as ShieldQuestion } from './ShieldQuestion.astro'
|
1439
|
+
export { default as ShieldQuestionMark } from './ShieldQuestionMark.astro'
|
1432
1440
|
export { default as ShieldUser } from './ShieldUser.astro'
|
1433
1441
|
export { default as ShieldX } from './ShieldX.astro'
|
1434
1442
|
export { default as Ship } from './Ship.astro'
|
package/dist/index.js
CHANGED
@@ -156,6 +156,7 @@ export { default as BadgeMinus } from './BadgeMinus.astro'
|
|
156
156
|
export { default as BadgePercent } from './BadgePercent.astro'
|
157
157
|
export { default as BadgePlus } from './BadgePlus.astro'
|
158
158
|
export { default as BadgePoundSterling } from './BadgePoundSterling.astro'
|
159
|
+
export { default as BadgeQuestionMark } from './BadgeQuestionMark.astro'
|
159
160
|
export { default as BadgeRussianRuble } from './BadgeRussianRuble.astro'
|
160
161
|
export { default as BadgeSwissFranc } from './BadgeSwissFranc.astro'
|
161
162
|
export { default as BadgeX } from './BadgeX.astro'
|
@@ -175,6 +176,7 @@ export { default as BarChartBig } from './BarChartBig.astro'
|
|
175
176
|
export { default as BarChartHorizontal } from './BarChartHorizontal.astro'
|
176
177
|
export { default as BarChartHorizontalBig } from './BarChartHorizontalBig.astro'
|
177
178
|
export { default as Barcode } from './Barcode.astro'
|
179
|
+
export { default as Barrel } from './Barrel.astro'
|
178
180
|
export { default as Baseline } from './Baseline.astro'
|
179
181
|
export { default as Bath } from './Bath.astro'
|
180
182
|
export { default as Battery } from './Battery.astro'
|
@@ -430,6 +432,7 @@ export { default as CirclePlay } from './CirclePlay.astro'
|
|
430
432
|
export { default as CirclePlus } from './CirclePlus.astro'
|
431
433
|
export { default as CirclePoundSterling } from './CirclePoundSterling.astro'
|
432
434
|
export { default as CirclePower } from './CirclePower.astro'
|
435
|
+
export { default as CircleQuestionMark } from './CircleQuestionMark.astro'
|
433
436
|
export { default as CircleSlash } from './CircleSlash.astro'
|
434
437
|
export { default as CircleSlash2 } from './CircleSlash2.astro'
|
435
438
|
export { default as CircleSlashed } from './CircleSlashed.astro'
|
@@ -597,6 +600,7 @@ export { default as DraftingCompass } from './DraftingCompass.astro'
|
|
597
600
|
export { default as Drama } from './Drama.astro'
|
598
601
|
export { default as Dribbble } from './Dribbble.astro'
|
599
602
|
export { default as Drill } from './Drill.astro'
|
603
|
+
export { default as Drone } from './Drone.astro'
|
600
604
|
export { default as Droplet } from './Droplet.astro'
|
601
605
|
export { default as DropletOff } from './DropletOff.astro'
|
602
606
|
export { default as Droplets } from './Droplets.astro'
|
@@ -682,6 +686,7 @@ export { default as FilePieChart } from './FilePieChart.astro'
|
|
682
686
|
export { default as FilePlus } from './FilePlus.astro'
|
683
687
|
export { default as FilePlus2 } from './FilePlus2.astro'
|
684
688
|
export { default as FileQuestion } from './FileQuestion.astro'
|
689
|
+
export { default as FileQuestionMark } from './FileQuestionMark.astro'
|
685
690
|
export { default as FileScan } from './FileScan.astro'
|
686
691
|
export { default as FileSearch } from './FileSearch.astro'
|
687
692
|
export { default as FileSearch2 } from './FileSearch2.astro'
|
@@ -1014,6 +1019,7 @@ export { default as MailMinus } from './MailMinus.astro'
|
|
1014
1019
|
export { default as MailOpen } from './MailOpen.astro'
|
1015
1020
|
export { default as MailPlus } from './MailPlus.astro'
|
1016
1021
|
export { default as MailQuestion } from './MailQuestion.astro'
|
1022
|
+
export { default as MailQuestionMark } from './MailQuestionMark.astro'
|
1017
1023
|
export { default as MailSearch } from './MailSearch.astro'
|
1018
1024
|
export { default as MailWarning } from './MailWarning.astro'
|
1019
1025
|
export { default as MailX } from './MailX.astro'
|
@@ -1054,6 +1060,7 @@ export { default as MessageCircleMore } from './MessageCircleMore.astro'
|
|
1054
1060
|
export { default as MessageCircleOff } from './MessageCircleOff.astro'
|
1055
1061
|
export { default as MessageCirclePlus } from './MessageCirclePlus.astro'
|
1056
1062
|
export { default as MessageCircleQuestion } from './MessageCircleQuestion.astro'
|
1063
|
+
export { default as MessageCircleQuestionMark } from './MessageCircleQuestionMark.astro'
|
1057
1064
|
export { default as MessageCircleReply } from './MessageCircleReply.astro'
|
1058
1065
|
export { default as MessageCircleWarning } from './MessageCircleWarning.astro'
|
1059
1066
|
export { default as MessageCircleX } from './MessageCircleX.astro'
|
@@ -1424,6 +1431,7 @@ export { default as ShieldMinus } from './ShieldMinus.astro'
|
|
1424
1431
|
export { default as ShieldOff } from './ShieldOff.astro'
|
1425
1432
|
export { default as ShieldPlus } from './ShieldPlus.astro'
|
1426
1433
|
export { default as ShieldQuestion } from './ShieldQuestion.astro'
|
1434
|
+
export { default as ShieldQuestionMark } from './ShieldQuestionMark.astro'
|
1427
1435
|
export { default as ShieldUser } from './ShieldUser.astro'
|
1428
1436
|
export { default as ShieldX } from './ShieldX.astro'
|
1429
1437
|
export { default as Ship } from './Ship.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.518.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.
|
37
|
+
"lucide-static": "0.518.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|