@lucide/astro 0.573.0 → 0.575.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 +116 -104
- package/src/aliases/prefixed.ts +707 -687
- package/src/aliases/suffixed.ts +1035 -1015
- package/src/icons/file-pen-line.ts +2 -2
- package/src/icons/index.ts +140 -134
- package/src/icons/message-square-check.ts +18 -0
- package/src/icons/metronome.ts +18 -0
- package/src/icons/mouse-left.ts +18 -0
- package/src/icons/mouse-right.ts +18 -0
- package/src/icons/square-arrow-right-enter.ts +18 -0
- package/src/icons/square-arrow-right-exit.ts +18 -0
- package/src/icons/{flip-horizontal.ts → square-centerline-dashed-horizontal.ts} +4 -4
- package/src/icons/{flip-vertical.ts → square-centerline-dashed-vertical.ts} +4 -4
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name FilePenLine
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-pen-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 FilePenLine = createLucideIcon('file-pen-line', [["path",{"d":"
|
|
16
|
+
const FilePenLine = createLucideIcon('file-pen-line', [["path",{"d":"M14.364 13.634a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506l4.013-4.009a1 1 0 0 0-3.004-3.004z"}],["path",{"d":"M14.487 7.858A1 1 0 0 1 14 7V2"}],["path",{"d":"M20 19.645V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l2.516 2.516"}],["path",{"d":"M8 18h1"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default FilePenLine;
|