@lucide/astro 0.511.0 → 0.512.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 +2 -2
- package/src/aliases/aliases.ts +58 -58
- package/src/aliases/prefixed.ts +461 -453
- package/src/aliases/suffixed.ts +686 -678
- package/src/icons/battery-charging.ts +2 -2
- package/src/icons/battery-full.ts +2 -2
- package/src/icons/battery-low.ts +2 -2
- package/src/icons/battery-medium.ts +2 -2
- package/src/icons/battery-plus.ts +2 -2
- package/src/icons/battery-warning.ts +2 -2
- package/src/icons/battery.ts +2 -2
- package/src/icons/circle-pound-sterling.ts +18 -0
- package/src/icons/cloud-check.ts +18 -0
- package/src/icons/eraser.ts +2 -2
- package/src/icons/file-badge.ts +2 -2
- package/src/icons/grid-3x2.ts +18 -0
- package/src/icons/id-card-lanyard.ts +18 -0
- package/src/icons/index.ts +123 -119
- package/src/icons/list-collapse.ts +2 -2
- package/src/icons/paperclip.ts +2 -2
- package/src/icons/square-check-big.ts +2 -2
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name ListCollapse
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/list-collapse
|
|
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 ListCollapse = createLucideIcon('list-collapse', [["path",{"d":"
|
|
16
|
+
const ListCollapse = createLucideIcon('list-collapse', [["path",{"d":"M10 12h11"}],["path",{"d":"M10 18h11"}],["path",{"d":"M10 6h11"}],["path",{"d":"m3 10 3-3-3-3"}],["path",{"d":"m3 20 3-3-3-3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default ListCollapse;
|
package/src/icons/paperclip.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Paperclip
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/paperclip
|
|
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 Paperclip = createLucideIcon('paperclip', [["path",{"d":"
|
|
16
|
+
const Paperclip = createLucideIcon('paperclip', [["path",{"d":"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Paperclip;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name SquareCheckBig
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/square-check-big
|
|
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 SquareCheckBig = createLucideIcon('square-check-big', [["path",{"d":"M21 10.
|
|
16
|
+
const SquareCheckBig = createLucideIcon('square-check-big', [["path",{"d":"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344"}],["path",{"d":"m9 11 3 3L22 4"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default SquareCheckBig;
|