lucide-astro 0.436.0 → 0.438.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="battery-warning" {...Astro.props}>
7
- <path d="M14 7h2a2 2 0 0 1 2 2v6c0 1-1 2-2 2h-2" />
8
- <path d="M6 7H4a2 2 0 0 0-2 2v6c0 1 1 2 2 2h2" />
9
- <line x1="22" x2="22" y1="11" y2="13" />
10
- <line x1="10" x2="10" y1="7" y2="13" />
11
- <line x1="10" x2="10" y1="17" y2="17.01" />
7
+ <path d="M10 17h.01" />
8
+ <path d="M10 7v6" />
9
+ <path d="M14 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2" />
10
+ <path d="M22 11v2" />
11
+ <path d="M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2" />
12
12
  </Layout>
@@ -0,0 +1,9 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout iconName="octagon-minus" {...Astro.props}>
7
+ <path d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" />
8
+ <path d="M8 12h8" />
9
+ </Layout>
package/dist/Send.astro CHANGED
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="send" {...Astro.props}>
7
- <path d="m22 2-7 20-4-9-9-4Z" />
8
- <path d="M22 2 11 13" />
7
+ <path d="M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z" />
8
+ <path d="m21.854 2.147-10.94 10.939" />
9
9
  </Layout>
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="send-horizontal" {...Astro.props}>
7
- <path d="m3 3 3 9-3 9 19-9Z" />
7
+ <path d="M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z" />
8
8
  <path d="M6 12h16" />
9
9
  </Layout>
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
4
4
  ---
5
5
 
6
6
  <Layout iconName="send-horizontal" {...Astro.props}>
7
- <path d="m3 3 3 9-3 9 19-9Z" />
7
+ <path d="M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z" />
8
8
  <path d="M6 12h16" />
9
9
  </Layout>
package/dist/index.d.ts CHANGED
@@ -1103,6 +1103,7 @@ export { default as Nut } from './Nut.astro'
1103
1103
  export { default as NutOff } from './NutOff.astro'
1104
1104
  export { default as Octagon } from './Octagon.astro'
1105
1105
  export { default as OctagonAlert } from './OctagonAlert.astro'
1106
+ export { default as OctagonMinus } from './OctagonMinus.astro'
1106
1107
  export { default as OctagonPause } from './OctagonPause.astro'
1107
1108
  export { default as OctagonX } from './OctagonX.astro'
1108
1109
  export { default as Omega } from './Omega.astro'
package/dist/index.js CHANGED
@@ -1098,6 +1098,7 @@ export { default as Nut } from './Nut.astro'
1098
1098
  export { default as NutOff } from './NutOff.astro'
1099
1099
  export { default as Octagon } from './Octagon.astro'
1100
1100
  export { default as OctagonAlert } from './OctagonAlert.astro'
1101
+ export { default as OctagonMinus } from './OctagonMinus.astro'
1101
1102
  export { default as OctagonPause } from './OctagonPause.astro'
1102
1103
  export { default as OctagonX } from './OctagonX.astro'
1103
1104
  export { default as Omega } from './Omega.astro'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucide-astro",
3
- "version": "0.436.0",
3
+ "version": "0.438.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.436.0",
29
+ "lucide-static": "0.438.0",
30
30
  "semver": "^7.5.4"
31
31
  },
32
32
  "peerDependencies": {