@lucide/astro 0.508.0 → 0.509.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/package.json +1 -1
- package/src/aliases/aliases.ts +27 -27
- package/src/aliases/prefixed.ts +371 -369
- package/src/aliases/suffixed.ts +631 -629
- package/src/icons/axe.ts +2 -2
- package/src/icons/gpu.ts +18 -0
- package/src/icons/index.ts +90 -89
- package/src/icons/laptop.ts +2 -2
- package/src/icons/phone-call.ts +2 -2
- package/src/icons/phone-forwarded.ts +2 -2
- package/src/icons/phone-incoming.ts +2 -2
- package/src/icons/phone-missed.ts +2 -2
- package/src/icons/phone-off.ts +2 -2
- package/src/icons/phone-outgoing.ts +2 -2
- package/src/icons/phone.ts +2 -2
package/src/icons/axe.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Axe
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/axe
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Axe = createLucideIcon('axe', [["path",{"d":"m14 12-8.
|
|
16
|
+
const Axe = createLucideIcon('axe', [["path",{"d":"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9"}],["path",{"d":"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Axe;
|
package/src/icons/gpu.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Gpu
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/gpu
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const Gpu = createLucideIcon('gpu', [["path",{"d":"M2 21V3"}],["path",{"d":"M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26"}],["path",{"d":"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3"}],["circle",{"cx":"16","cy":"11","r":"2"}],["circle",{"cx":"8","cy":"11","r":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Gpu;
|