lucide-astro 0.279.0 → 0.281.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Bomb.astro +1 -1
- package/dist/Cone.astro +9 -0
- package/dist/Copyleft.astro +1 -1
- package/dist/Copyright.astro +1 -1
- package/dist/Cuboid.astro +10 -0
- package/dist/Cylinder.astro +9 -0
- package/dist/Diameter.astro +12 -0
- package/dist/DraftingCompass.astro +12 -0
- package/dist/Gift.astro +4 -5
- package/dist/LandPlot.astro +11 -0
- package/dist/Layers.astro +3 -3
- package/dist/Layers2.astro +9 -0
- package/dist/Layers3.astro +10 -0
- package/dist/MousePointerClick.astro +5 -3
- package/dist/Pentagon.astro +8 -0
- package/dist/Pyramid.astro +9 -0
- package/dist/Radius.astro +11 -0
- package/dist/Subtitles.astro +1 -1
- package/dist/Tangent.astro +11 -0
- package/dist/Torus.astro +9 -0
- package/dist/Triangle.astro +1 -1
- package/dist/Weight.astro +9 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +14 -0
- package/package.json +2 -2
package/dist/Bomb.astro
CHANGED
@@ -5,6 +5,6 @@ export type { Props } from './index.d.ts'
|
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
7
|
<circle cx="11" cy="13" r="9" />
|
8
|
-
<path d="m19.5 9.5 1.8-1.8a2.4 2.4 0 0 0 0-3.4l-1.6-1.6a2.
|
8
|
+
<path d="m19.5 9.5 1.8-1.8a2.4 2.4 0 0 0 0-3.4l-1.6-1.6a2.4 2.4 0 0 0-3.4 0l-1.8 1.8" />
|
9
9
|
<path d="m22 2-1.5 1.5" />
|
10
10
|
</Layout>
|
package/dist/Cone.astro
ADDED
package/dist/Copyleft.astro
CHANGED
package/dist/Copyright.astro
CHANGED
@@ -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="m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z" />
|
8
|
+
<path d="M10 22v-8L2.25 9.15" />
|
9
|
+
<path d="m10 14 11.77-6.87" />
|
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
|
+
<circle cx="19" cy="19" r="2" />
|
8
|
+
<circle cx="5" cy="5" r="2" />
|
9
|
+
<path d="M6.48 3.66a10 10 0 0 1 13.86 13.86" />
|
10
|
+
<path d="m6.41 6.41 11.18 11.18" />
|
11
|
+
<path d="M3.66 6.48a10 10 0 0 0 13.86 13.86" />
|
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
|
+
<circle cx="12" cy="5" r="2" />
|
8
|
+
<path d="m3 21 8.02-14.26" />
|
9
|
+
<path d="m12.99 6.74 1.93 3.44" />
|
10
|
+
<path d="M19 12c-3.87 4-10.13 4-14 0" />
|
11
|
+
<path d="m21 21-2.16-3.84" />
|
12
|
+
</Layout>
|
package/dist/Gift.astro
CHANGED
@@ -4,9 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<
|
8
|
-
<
|
9
|
-
<
|
10
|
-
<path d="
|
11
|
-
<path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z" />
|
7
|
+
<rect x="3" y="8" width="18" height="4" rx="1" />
|
8
|
+
<path d="M12 8v13" />
|
9
|
+
<path d="M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" />
|
10
|
+
<path d="M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" />
|
12
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 {...Astro.props}>
|
7
|
+
<path d="m12 8 6-3-6-3v10" />
|
8
|
+
<path d="m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12" />
|
9
|
+
<path d="m6.49 12.85 11.02 6.3" />
|
10
|
+
<path d="M17.51 12.85 6.5 19.15" />
|
11
|
+
</Layout>
|
package/dist/Layers.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<
|
8
|
-
<
|
9
|
-
<
|
7
|
+
<path d="m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z" />
|
8
|
+
<path d="m22 17.65-9.17 4.16a2 2 0 0 1-1.66 0L2 17.65" />
|
9
|
+
<path d="m22 12.65-9.17 4.16a2 2 0 0 1-1.66 0L2 12.65" />
|
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="m16.02 12 5.48 3.13a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74L7.98 12" />
|
8
|
+
<path d="M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74Z" />
|
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="m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z" />
|
8
|
+
<path d="m6.08 9.5-3.5 1.6a1 1 0 0 0 0 1.81l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9a1 1 0 0 0 0-1.83l-3.5-1.59" />
|
9
|
+
<path d="m6.08 14.5-3.5 1.6a1 1 0 0 0 0 1.81l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9a1 1 0 0 0 0-1.83l-3.5-1.59" />
|
10
|
+
</Layout>
|
@@ -4,7 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="m9 9 5 12 1.
|
8
|
-
<path d="
|
9
|
-
<path d="
|
7
|
+
<path d="m9 9 5 12 1.8-5.2L21 14Z" />
|
8
|
+
<path d="M7.2 2.2 8 5.1" />
|
9
|
+
<path d="m5.1 8-2.9-.8" />
|
10
|
+
<path d="M14 4.1 12 6" />
|
11
|
+
<path d="m6 12-1.9 2" />
|
10
12
|
</Layout>
|
@@ -0,0 +1,8 @@
|
|
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.5 8.7c-.7.5-1 1.4-.7 2.2l2.8 8.7c.3.8 1 1.4 1.9 1.4h9.1c.9 0 1.6-.6 1.9-1.4l2.8-8.7c.3-.8 0-1.7-.7-2.2l-7.4-5.3a2.1 2.1 0 0 0-2.4 0Z" />
|
8
|
+
</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="M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z" />
|
8
|
+
<path d="M12 2v20" />
|
9
|
+
</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="M20.34 17.52a10 10 0 1 0-2.82 2.82" />
|
8
|
+
<circle cx="19" cy="19" r="2" />
|
9
|
+
<path d="m13.41 13.41 4.18 4.18" />
|
10
|
+
<circle cx="12" cy="12" r="2" />
|
11
|
+
</Layout>
|
package/dist/Subtitles.astro
CHANGED
@@ -8,5 +8,5 @@ export type { Props } from './index.d.ts'
|
|
8
8
|
<path d="M15 13h2" />
|
9
9
|
<path d="M7 9h2" />
|
10
10
|
<path d="M13 9h4" />
|
11
|
-
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2
|
11
|
+
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2Z" />
|
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 {...Astro.props}>
|
7
|
+
<circle cx="17" cy="4" r="2" />
|
8
|
+
<path d="M15.59 5.41 5.41 15.59" />
|
9
|
+
<circle cx="4" cy="17" r="2" />
|
10
|
+
<path d="M12 22s-4-9-1.5-11.5S22 12 22 12" />
|
11
|
+
</Layout>
|
package/dist/Torus.astro
ADDED
package/dist/Triangle.astro
CHANGED
@@ -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
|
+
<circle cx="12" cy="5" r="3" />
|
8
|
+
<path d="M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z" />
|
9
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -363,6 +363,7 @@ export { default as Compass } from './Compass.astro'
|
|
363
363
|
export { default as Component } from './Component.astro'
|
364
364
|
export { default as Computer } from './Computer.astro'
|
365
365
|
export { default as ConciergeBell } from './ConciergeBell.astro'
|
366
|
+
export { default as Cone } from './Cone.astro'
|
366
367
|
export { default as Construction } from './Construction.astro'
|
367
368
|
export { default as Contact2 } from './Contact2.astro'
|
368
369
|
export { default as Contact } from './Contact.astro'
|
@@ -393,13 +394,16 @@ export { default as Crop } from './Crop.astro'
|
|
393
394
|
export { default as Cross } from './Cross.astro'
|
394
395
|
export { default as Crosshair } from './Crosshair.astro'
|
395
396
|
export { default as Crown } from './Crown.astro'
|
397
|
+
export { default as Cuboid } from './Cuboid.astro'
|
396
398
|
export { default as CupSoda } from './CupSoda.astro'
|
397
399
|
export { default as Currency } from './Currency.astro'
|
400
|
+
export { default as Cylinder } from './Cylinder.astro'
|
398
401
|
export { default as DatabaseBackup } from './DatabaseBackup.astro'
|
399
402
|
export { default as DatabaseZap } from './DatabaseZap.astro'
|
400
403
|
export { default as Database } from './Database.astro'
|
401
404
|
export { default as Delete } from './Delete.astro'
|
402
405
|
export { default as Dessert } from './Dessert.astro'
|
406
|
+
export { default as Diameter } from './Diameter.astro'
|
403
407
|
export { default as Diamond } from './Diamond.astro'
|
404
408
|
export { default as Dice1 } from './Dice1.astro'
|
405
409
|
export { default as Dice2 } from './Dice2.astro'
|
@@ -425,6 +429,7 @@ export { default as DoorOpen } from './DoorOpen.astro'
|
|
425
429
|
export { default as Dot } from './Dot.astro'
|
426
430
|
export { default as DownloadCloud } from './DownloadCloud.astro'
|
427
431
|
export { default as Download } from './Download.astro'
|
432
|
+
export { default as DraftingCompass } from './DraftingCompass.astro'
|
428
433
|
export { default as Drama } from './Drama.astro'
|
429
434
|
export { default as Dribbble } from './Dribbble.astro'
|
430
435
|
export { default as Droplet } from './Droplet.astro'
|
@@ -677,6 +682,7 @@ export { default as LampFloor } from './LampFloor.astro'
|
|
677
682
|
export { default as LampWallDown } from './LampWallDown.astro'
|
678
683
|
export { default as LampWallUp } from './LampWallUp.astro'
|
679
684
|
export { default as Lamp } from './Lamp.astro'
|
685
|
+
export { default as LandPlot } from './LandPlot.astro'
|
680
686
|
export { default as Landmark } from './Landmark.astro'
|
681
687
|
export { default as Languages } from './Languages.astro'
|
682
688
|
export { default as Laptop2 } from './Laptop2.astro'
|
@@ -684,6 +690,8 @@ export { default as Laptop } from './Laptop.astro'
|
|
684
690
|
export { default as LassoSelect } from './LassoSelect.astro'
|
685
691
|
export { default as Lasso } from './Lasso.astro'
|
686
692
|
export { default as Laugh } from './Laugh.astro'
|
693
|
+
export { default as Layers2 } from './Layers2.astro'
|
694
|
+
export { default as Layers3 } from './Layers3.astro'
|
687
695
|
export { default as Layers } from './Layers.astro'
|
688
696
|
export { default as LayoutDashboard } from './LayoutDashboard.astro'
|
689
697
|
export { default as LayoutGrid } from './LayoutGrid.astro'
|
@@ -877,6 +885,7 @@ export { default as Pen } from './Pen.astro'
|
|
877
885
|
export { default as PencilLine } from './PencilLine.astro'
|
878
886
|
export { default as PencilRuler } from './PencilRuler.astro'
|
879
887
|
export { default as Pencil } from './Pencil.astro'
|
888
|
+
export { default as Pentagon } from './Pentagon.astro'
|
880
889
|
export { default as PercentCircle } from './PercentCircle.astro'
|
881
890
|
export { default as PercentDiamond } from './PercentDiamond.astro'
|
882
891
|
export { default as PercentSquare } from './PercentSquare.astro'
|
@@ -928,6 +937,7 @@ export { default as Presentation } from './Presentation.astro'
|
|
928
937
|
export { default as Printer } from './Printer.astro'
|
929
938
|
export { default as Projector } from './Projector.astro'
|
930
939
|
export { default as Puzzle } from './Puzzle.astro'
|
940
|
+
export { default as Pyramid } from './Pyramid.astro'
|
931
941
|
export { default as QrCode } from './QrCode.astro'
|
932
942
|
export { default as Quote } from './Quote.astro'
|
933
943
|
export { default as Rabbit } from './Rabbit.astro'
|
@@ -936,6 +946,7 @@ export { default as Radiation } from './Radiation.astro'
|
|
936
946
|
export { default as RadioReceiver } from './RadioReceiver.astro'
|
937
947
|
export { default as RadioTower } from './RadioTower.astro'
|
938
948
|
export { default as Radio } from './Radio.astro'
|
949
|
+
export { default as Radius } from './Radius.astro'
|
939
950
|
export { default as RailSymbol } from './RailSymbol.astro'
|
940
951
|
export { default as Rainbow } from './Rainbow.astro'
|
941
952
|
export { default as Rat } from './Rat.astro'
|
@@ -1131,6 +1142,7 @@ export { default as Tally2 } from './Tally2.astro'
|
|
1131
1142
|
export { default as Tally3 } from './Tally3.astro'
|
1132
1143
|
export { default as Tally4 } from './Tally4.astro'
|
1133
1144
|
export { default as Tally5 } from './Tally5.astro'
|
1145
|
+
export { default as Tangent } from './Tangent.astro'
|
1134
1146
|
export { default as Target } from './Target.astro'
|
1135
1147
|
export { default as Tent } from './Tent.astro'
|
1136
1148
|
export { default as TerminalSquare } from './TerminalSquare.astro'
|
@@ -1156,6 +1168,7 @@ export { default as Timer } from './Timer.astro'
|
|
1156
1168
|
export { default as ToggleLeft } from './ToggleLeft.astro'
|
1157
1169
|
export { default as ToggleRight } from './ToggleRight.astro'
|
1158
1170
|
export { default as Tornado } from './Tornado.astro'
|
1171
|
+
export { default as Torus } from './Torus.astro'
|
1159
1172
|
export { default as TouchpadOff } from './TouchpadOff.astro'
|
1160
1173
|
export { default as Touchpad } from './Touchpad.astro'
|
1161
1174
|
export { default as TowerControl } from './TowerControl.astro'
|
@@ -1246,6 +1259,7 @@ export { default as Watch } from './Watch.astro'
|
|
1246
1259
|
export { default as Waves } from './Waves.astro'
|
1247
1260
|
export { default as Webcam } from './Webcam.astro'
|
1248
1261
|
export { default as Webhook } from './Webhook.astro'
|
1262
|
+
export { default as Weight } from './Weight.astro'
|
1249
1263
|
export { default as WheatOff } from './WheatOff.astro'
|
1250
1264
|
export { default as Wheat } from './Wheat.astro'
|
1251
1265
|
export { default as WholeWord } from './WholeWord.astro'
|
package/dist/index.js
CHANGED
@@ -356,6 +356,7 @@ export { default as Compass } from './Compass.astro'
|
|
356
356
|
export { default as Component } from './Component.astro'
|
357
357
|
export { default as Computer } from './Computer.astro'
|
358
358
|
export { default as ConciergeBell } from './ConciergeBell.astro'
|
359
|
+
export { default as Cone } from './Cone.astro'
|
359
360
|
export { default as Construction } from './Construction.astro'
|
360
361
|
export { default as Contact2 } from './Contact2.astro'
|
361
362
|
export { default as Contact } from './Contact.astro'
|
@@ -386,13 +387,16 @@ export { default as Crop } from './Crop.astro'
|
|
386
387
|
export { default as Cross } from './Cross.astro'
|
387
388
|
export { default as Crosshair } from './Crosshair.astro'
|
388
389
|
export { default as Crown } from './Crown.astro'
|
390
|
+
export { default as Cuboid } from './Cuboid.astro'
|
389
391
|
export { default as CupSoda } from './CupSoda.astro'
|
390
392
|
export { default as Currency } from './Currency.astro'
|
393
|
+
export { default as Cylinder } from './Cylinder.astro'
|
391
394
|
export { default as DatabaseBackup } from './DatabaseBackup.astro'
|
392
395
|
export { default as DatabaseZap } from './DatabaseZap.astro'
|
393
396
|
export { default as Database } from './Database.astro'
|
394
397
|
export { default as Delete } from './Delete.astro'
|
395
398
|
export { default as Dessert } from './Dessert.astro'
|
399
|
+
export { default as Diameter } from './Diameter.astro'
|
396
400
|
export { default as Diamond } from './Diamond.astro'
|
397
401
|
export { default as Dice1 } from './Dice1.astro'
|
398
402
|
export { default as Dice2 } from './Dice2.astro'
|
@@ -418,6 +422,7 @@ export { default as DoorOpen } from './DoorOpen.astro'
|
|
418
422
|
export { default as Dot } from './Dot.astro'
|
419
423
|
export { default as DownloadCloud } from './DownloadCloud.astro'
|
420
424
|
export { default as Download } from './Download.astro'
|
425
|
+
export { default as DraftingCompass } from './DraftingCompass.astro'
|
421
426
|
export { default as Drama } from './Drama.astro'
|
422
427
|
export { default as Dribbble } from './Dribbble.astro'
|
423
428
|
export { default as Droplet } from './Droplet.astro'
|
@@ -670,6 +675,7 @@ export { default as LampFloor } from './LampFloor.astro'
|
|
670
675
|
export { default as LampWallDown } from './LampWallDown.astro'
|
671
676
|
export { default as LampWallUp } from './LampWallUp.astro'
|
672
677
|
export { default as Lamp } from './Lamp.astro'
|
678
|
+
export { default as LandPlot } from './LandPlot.astro'
|
673
679
|
export { default as Landmark } from './Landmark.astro'
|
674
680
|
export { default as Languages } from './Languages.astro'
|
675
681
|
export { default as Laptop2 } from './Laptop2.astro'
|
@@ -677,6 +683,8 @@ export { default as Laptop } from './Laptop.astro'
|
|
677
683
|
export { default as LassoSelect } from './LassoSelect.astro'
|
678
684
|
export { default as Lasso } from './Lasso.astro'
|
679
685
|
export { default as Laugh } from './Laugh.astro'
|
686
|
+
export { default as Layers2 } from './Layers2.astro'
|
687
|
+
export { default as Layers3 } from './Layers3.astro'
|
680
688
|
export { default as Layers } from './Layers.astro'
|
681
689
|
export { default as LayoutDashboard } from './LayoutDashboard.astro'
|
682
690
|
export { default as LayoutGrid } from './LayoutGrid.astro'
|
@@ -870,6 +878,7 @@ export { default as Pen } from './Pen.astro'
|
|
870
878
|
export { default as PencilLine } from './PencilLine.astro'
|
871
879
|
export { default as PencilRuler } from './PencilRuler.astro'
|
872
880
|
export { default as Pencil } from './Pencil.astro'
|
881
|
+
export { default as Pentagon } from './Pentagon.astro'
|
873
882
|
export { default as PercentCircle } from './PercentCircle.astro'
|
874
883
|
export { default as PercentDiamond } from './PercentDiamond.astro'
|
875
884
|
export { default as PercentSquare } from './PercentSquare.astro'
|
@@ -921,6 +930,7 @@ export { default as Presentation } from './Presentation.astro'
|
|
921
930
|
export { default as Printer } from './Printer.astro'
|
922
931
|
export { default as Projector } from './Projector.astro'
|
923
932
|
export { default as Puzzle } from './Puzzle.astro'
|
933
|
+
export { default as Pyramid } from './Pyramid.astro'
|
924
934
|
export { default as QrCode } from './QrCode.astro'
|
925
935
|
export { default as Quote } from './Quote.astro'
|
926
936
|
export { default as Rabbit } from './Rabbit.astro'
|
@@ -929,6 +939,7 @@ export { default as Radiation } from './Radiation.astro'
|
|
929
939
|
export { default as RadioReceiver } from './RadioReceiver.astro'
|
930
940
|
export { default as RadioTower } from './RadioTower.astro'
|
931
941
|
export { default as Radio } from './Radio.astro'
|
942
|
+
export { default as Radius } from './Radius.astro'
|
932
943
|
export { default as RailSymbol } from './RailSymbol.astro'
|
933
944
|
export { default as Rainbow } from './Rainbow.astro'
|
934
945
|
export { default as Rat } from './Rat.astro'
|
@@ -1124,6 +1135,7 @@ export { default as Tally2 } from './Tally2.astro'
|
|
1124
1135
|
export { default as Tally3 } from './Tally3.astro'
|
1125
1136
|
export { default as Tally4 } from './Tally4.astro'
|
1126
1137
|
export { default as Tally5 } from './Tally5.astro'
|
1138
|
+
export { default as Tangent } from './Tangent.astro'
|
1127
1139
|
export { default as Target } from './Target.astro'
|
1128
1140
|
export { default as Tent } from './Tent.astro'
|
1129
1141
|
export { default as TerminalSquare } from './TerminalSquare.astro'
|
@@ -1149,6 +1161,7 @@ export { default as Timer } from './Timer.astro'
|
|
1149
1161
|
export { default as ToggleLeft } from './ToggleLeft.astro'
|
1150
1162
|
export { default as ToggleRight } from './ToggleRight.astro'
|
1151
1163
|
export { default as Tornado } from './Tornado.astro'
|
1164
|
+
export { default as Torus } from './Torus.astro'
|
1152
1165
|
export { default as TouchpadOff } from './TouchpadOff.astro'
|
1153
1166
|
export { default as Touchpad } from './Touchpad.astro'
|
1154
1167
|
export { default as TowerControl } from './TowerControl.astro'
|
@@ -1239,6 +1252,7 @@ export { default as Watch } from './Watch.astro'
|
|
1239
1252
|
export { default as Waves } from './Waves.astro'
|
1240
1253
|
export { default as Webcam } from './Webcam.astro'
|
1241
1254
|
export { default as Webhook } from './Webhook.astro'
|
1255
|
+
export { default as Weight } from './Weight.astro'
|
1242
1256
|
export { default as WheatOff } from './WheatOff.astro'
|
1243
1257
|
export { default as Wheat } from './Wheat.astro'
|
1244
1258
|
export { default as WholeWord } from './WholeWord.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.281.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.281.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1 || ^3.0.0"
|