@lucide/astro 1.2.0 → 1.3.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 +106 -106
- package/src/aliases/prefixed.ts +610 -606
- package/src/aliases/suffixed.ts +925 -921
- package/src/icons/index.ts +98 -96
- package/src/icons/shield-cog-corner.ts +18 -0
- package/src/icons/shield-cog.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name ShieldCogCorner
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/shield-cog-corner
|
|
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 ShieldCogCorner = createLucideIcon('shield-cog-corner', [["path",{"d":"M11 22c-3.806-1.45-7-3.966-7-9V6a1 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 1v4"}],["path",{"d":"M14.923 16.547 14 16.164"}],["path",{"d":"m14.923 18.843-.923.383"}],["path",{"d":"M16.547 14.923 16.164 14"}],["path",{"d":"m16.547 20.467-.383.924"}],["path",{"d":"m18.843 14.923.383-.923"}],["path",{"d":"m19.225 21.391-.382-.924"}],["path",{"d":"m20.467 16.547.923-.383"}],["path",{"d":"m20.467 18.843.923.383"}],["circle",{"cx":"17.695","cy":"17.695","r":"3"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default ShieldCogCorner;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name ShieldCog
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/shield-cog
|
|
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 ShieldCog = createLucideIcon('shield-cog', [["path",{"d":"m10.929 14.467-.383.924"}],["path",{"d":"M10.929 8.923 10.546 8"}],["path",{"d":"M13.225 8.923 13.608 8"}],["path",{"d":"m13.607 15.391-.382-.924"}],["path",{"d":"m14.849 10.547.923-.383"}],["path",{"d":"m14.849 12.843.923.383"}],["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"}],["path",{"d":"m9.305 10.547-.923-.383"}],["path",{"d":"m9.305 12.843-.923.383"}],["circle",{"cx":"12.077","cy":"11.695","r":"3"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default ShieldCog;
|