@lucide/astro 0.520.0 → 0.522.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 +51 -51
- package/src/aliases/prefixed.ts +466 -462
- package/src/aliases/suffixed.ts +811 -807
- package/src/icons/circle-arrow-left.ts +2 -2
- package/src/icons/circle-arrow-right.ts +2 -2
- package/src/icons/index.ts +91 -89
- package/src/icons/line-squiggle.ts +18 -0
- package/src/icons/shopping-bag.ts +2 -2
- package/src/icons/squircle-dashed.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name LineSquiggle
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/line-squiggle
|
|
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 LineSquiggle = createLucideIcon('line-squiggle', [["path",{"d":"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default LineSquiggle;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name ShoppingBag
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/shopping-bag
|
|
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 ShoppingBag = createLucideIcon('shopping-bag', [["path",{"d":"
|
|
16
|
+
const ShoppingBag = createLucideIcon('shopping-bag', [["path",{"d":"M16 10a4 4 0 0 1-8 0"}],["path",{"d":"M3.103 6.034h17.794"}],["path",{"d":"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default ShoppingBag;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name SquircleDashed
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/squircle-dashed
|
|
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 SquircleDashed = createLucideIcon('squircle-dashed', [["path",{"d":"M13.77 3.043a34 34 0 0 0-3.54 0"}],["path",{"d":"M13.771 20.956a33 33 0 0 1-3.541.001"}],["path",{"d":"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44"}],["path",{"d":"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438"}],["path",{"d":"M20.957 10.23a33 33 0 0 1 0 3.54"}],["path",{"d":"M3.043 10.23a34 34 0 0 0 .001 3.541"}],["path",{"d":"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438"}],["path",{"d":"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default SquircleDashed;
|