lucide-astro 0.335.1 → 0.338.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Flower.astro +9 -5
- package/dist/ImageDown.astro +3 -4
- package/dist/ImageUp.astro +11 -0
- package/dist/TableCellsMerge.astro +12 -0
- package/dist/TableCellsSplit.astro +11 -0
- package/dist/TableColumnsSplit.astro +18 -0
- package/dist/TableRowsSplit.astro +18 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/package.json +2 -2
package/dist/Flower.astro
CHANGED
@@ -4,10 +4,14 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M12 7.5a4.5 4.5 0 1 1 4.5 4.5M12 7.5A4.5 4.5 0 1 0 7.5 12M12 7.5V9m-4.5 3a4.5 4.5 0 1 0 4.5 4.5M7.5 12H9m7.5 0a4.5 4.5 0 1 1-4.5 4.5m4.5-4.5H15m-3 4.5V15" />
|
8
7
|
<circle cx="12" cy="12" r="3" />
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<path d="
|
12
|
-
<path d="
|
8
|
+
<path d="M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5" />
|
9
|
+
<path d="M12 7.5V9" />
|
10
|
+
<path d="M7.5 12H9" />
|
11
|
+
<path d="M16.5 12H15" />
|
12
|
+
<path d="M12 16.5V15" />
|
13
|
+
<path d="m8 8 1.88 1.88" />
|
14
|
+
<path d="M14.12 9.88 16 8" />
|
15
|
+
<path d="m8 16 1.88-1.88" />
|
16
|
+
<path d="M14.12 14.12 16 16" />
|
13
17
|
</Layout>
|
package/dist/ImageDown.astro
CHANGED
@@ -4,9 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
+
<path d="M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21" />
|
8
|
+
<path d="m14 19 3 3v-5.5" />
|
9
|
+
<path d="m17 22 3-3" />
|
7
10
|
<circle cx="9" cy="9" r="2" />
|
8
|
-
<path d="M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10.8" />
|
9
|
-
<path d="m21 15-3.1-3.1a2 2 0 0 0-2.814.014L6 21" />
|
10
|
-
<path d="m14 19.5 3 3v-6" />
|
11
|
-
<path d="m17 22.5 3-3" />
|
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="M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21" />
|
8
|
+
<path d="m14 19.5 3-3 3 3" />
|
9
|
+
<path d="M17 22v-5.5" />
|
10
|
+
<circle cx="9" cy="9" r="2" />
|
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="M12 21v-6" />
|
8
|
+
<path d="M12 9V3" />
|
9
|
+
<path d="M3 15h18" />
|
10
|
+
<path d="M3 9h18" />
|
11
|
+
<rect width="18" height="18" x="3" y="3" rx="2" />
|
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="M12 15V9" />
|
8
|
+
<path d="M3 15h18" />
|
9
|
+
<path d="M3 9h18" />
|
10
|
+
<rect width="18" height="18" x="3" y="3" rx="2" />
|
11
|
+
</Layout>
|
@@ -0,0 +1,18 @@
|
|
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 14v2" />
|
8
|
+
<path d="M14 20v2" />
|
9
|
+
<path d="M14 2v2" />
|
10
|
+
<path d="M14 8v2" />
|
11
|
+
<path d="M2 15h8" />
|
12
|
+
<path d="M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2" />
|
13
|
+
<path d="M2 9h8" />
|
14
|
+
<path d="M22 15h-4" />
|
15
|
+
<path d="M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2" />
|
16
|
+
<path d="M22 9h-4" />
|
17
|
+
<path d="M5 3v18" />
|
18
|
+
</Layout>
|
@@ -0,0 +1,18 @@
|
|
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 10h2" />
|
8
|
+
<path d="M15 22v-8" />
|
9
|
+
<path d="M15 2v4" />
|
10
|
+
<path d="M2 10h2" />
|
11
|
+
<path d="M20 10h2" />
|
12
|
+
<path d="M3 19h18" />
|
13
|
+
<path d="M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6" />
|
14
|
+
<path d="M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2" />
|
15
|
+
<path d="M8 10h2" />
|
16
|
+
<path d="M9 22v-8" />
|
17
|
+
<path d="M9 2v4" />
|
18
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -761,6 +761,7 @@ export { default as ImageDown } from './ImageDown.astro'
|
|
761
761
|
export { default as ImageMinus } from './ImageMinus.astro'
|
762
762
|
export { default as ImageOff } from './ImageOff.astro'
|
763
763
|
export { default as ImagePlus } from './ImagePlus.astro'
|
764
|
+
export { default as ImageUp } from './ImageUp.astro'
|
764
765
|
export { default as Images } from './Images.astro'
|
765
766
|
export { default as Import } from './Import.astro'
|
766
767
|
export { default as Inbox } from './Inbox.astro'
|
@@ -1330,7 +1331,11 @@ export { default as Swords } from './Swords.astro'
|
|
1330
1331
|
export { default as Syringe } from './Syringe.astro'
|
1331
1332
|
export { default as Table } from './Table.astro'
|
1332
1333
|
export { default as Table2 } from './Table2.astro'
|
1334
|
+
export { default as TableCellsMerge } from './TableCellsMerge.astro'
|
1335
|
+
export { default as TableCellsSplit } from './TableCellsSplit.astro'
|
1336
|
+
export { default as TableColumnsSplit } from './TableColumnsSplit.astro'
|
1333
1337
|
export { default as TableProperties } from './TableProperties.astro'
|
1338
|
+
export { default as TableRowsSplit } from './TableRowsSplit.astro'
|
1334
1339
|
export { default as Tablet } from './Tablet.astro'
|
1335
1340
|
export { default as TabletSmartphone } from './TabletSmartphone.astro'
|
1336
1341
|
export { default as Tablets } from './Tablets.astro'
|
package/dist/index.js
CHANGED
@@ -756,6 +756,7 @@ export { default as ImageDown } from './ImageDown.astro'
|
|
756
756
|
export { default as ImageMinus } from './ImageMinus.astro'
|
757
757
|
export { default as ImageOff } from './ImageOff.astro'
|
758
758
|
export { default as ImagePlus } from './ImagePlus.astro'
|
759
|
+
export { default as ImageUp } from './ImageUp.astro'
|
759
760
|
export { default as Images } from './Images.astro'
|
760
761
|
export { default as Import } from './Import.astro'
|
761
762
|
export { default as Inbox } from './Inbox.astro'
|
@@ -1325,7 +1326,11 @@ export { default as Swords } from './Swords.astro'
|
|
1325
1326
|
export { default as Syringe } from './Syringe.astro'
|
1326
1327
|
export { default as Table } from './Table.astro'
|
1327
1328
|
export { default as Table2 } from './Table2.astro'
|
1329
|
+
export { default as TableCellsMerge } from './TableCellsMerge.astro'
|
1330
|
+
export { default as TableCellsSplit } from './TableCellsSplit.astro'
|
1331
|
+
export { default as TableColumnsSplit } from './TableColumnsSplit.astro'
|
1328
1332
|
export { default as TableProperties } from './TableProperties.astro'
|
1333
|
+
export { default as TableRowsSplit } from './TableRowsSplit.astro'
|
1329
1334
|
export { default as Tablet } from './Tablet.astro'
|
1330
1335
|
export { default as TabletSmartphone } from './TabletSmartphone.astro'
|
1331
1336
|
export { default as Tablets } from './Tablets.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.338.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.338.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|