@lucide/astro 1.22.0 → 1.24.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 +265 -265
- package/src/aliases/prefixed.ts +706 -702
- package/src/aliases/suffixed.ts +986 -982
- package/src/icons/circle-euro-sign.ts +18 -0
- package/src/icons/dot.ts +2 -2
- package/src/icons/index.ts +112 -110
- package/src/icons/option.ts +2 -2
- package/src/icons/paper-bag.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CircleEuroSign
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/circle-euro-sign
|
|
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 CircleEuroSign = createLucideIcon('circle-euro-sign', [["path",{"d":"M15 9.4a4 4 0 1 0 0 5.2"}],["path",{"d":"M7 12h5"}],["circle",{"cx":"12","cy":"12","r":"10"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CircleEuroSign;
|
package/src/icons/dot.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Dot
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/dot
|
|
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 Dot = createLucideIcon('dot', [["circle",{"cx":"12
|
|
16
|
+
const Dot = createLucideIcon('dot', [["circle",{"cx":"12","cy":"12","r":"1"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Dot;
|