@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
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CircleArrowLeft
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/circle-arrow-left
|
|
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 CircleArrowLeft = createLucideIcon('circle-arrow-left', [["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"
|
|
16
|
+
const CircleArrowLeft = createLucideIcon('circle-arrow-left', [["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"m12 8-4 4 4 4"}],["path",{"d":"M16 12H8"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CircleArrowLeft;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CircleArrowRight
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/circle-arrow-right
|
|
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 CircleArrowRight = createLucideIcon('circle-arrow-right', [["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"
|
|
16
|
+
const CircleArrowRight = createLucideIcon('circle-arrow-right', [["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"m12 16 4-4-4-4"}],["path",{"d":"M8 12h8"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CircleArrowRight;
|