@lucide/astro 0.552.0 → 0.554.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 +76 -70
- package/src/aliases/prefixed.ts +609 -589
- package/src/aliases/suffixed.ts +897 -877
- package/src/icons/ampersand.ts +2 -2
- package/src/icons/anchor.ts +2 -2
- package/src/icons/calendars.ts +18 -0
- package/src/icons/chess-bishop.ts +18 -0
- package/src/icons/chess-king.ts +18 -0
- package/src/icons/chess-knight.ts +18 -0
- package/src/icons/chess-pawn.ts +18 -0
- package/src/icons/chess-queen.ts +18 -0
- package/src/icons/chess-rook.ts +18 -0
- package/src/icons/{fingerprint.ts → fingerprint-pattern.ts} +4 -4
- package/src/icons/folder-git-2.ts +2 -2
- package/src/icons/index.ts +122 -114
- package/src/icons/mouse-pointer-2-off.ts +18 -0
- package/src/icons/ruler-dimension-line.ts +2 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name MousePointer2Off
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/mouse-pointer-2-off
|
|
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 MousePointer2Off = createLucideIcon('mouse-pointer-2-off', [["path",{"d":"m15.55 8.45 5.138 2.087a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063L8.45 15.551"}],["path",{"d":"M22 2 2 22"}],["path",{"d":"m6.816 11.528-2.779-6.84a.495.495 0 0 1 .651-.651l6.84 2.779"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default MousePointer2Off;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name RulerDimensionLine
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/ruler-dimension-line
|
|
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 RulerDimensionLine = createLucideIcon('ruler-dimension-line', [["path",{"d":"
|
|
16
|
+
const RulerDimensionLine = createLucideIcon('ruler-dimension-line', [["path",{"d":"M10 15v-3"}],["path",{"d":"M14 15v-3"}],["path",{"d":"M18 15v-3"}],["path",{"d":"M2 8V4"}],["path",{"d":"M22 6H2"}],["path",{"d":"M22 8V4"}],["path",{"d":"M6 15v-3"}],["rect",{"x":"2","y":"12","width":"20","height":"8","rx":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default RulerDimensionLine;
|