@lucide/astro 0.487.0 → 0.488.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 +62 -62
- package/src/aliases/prefixed.ts +352 -352
- package/src/aliases/suffixed.ts +713 -713
- package/src/icons/index.ts +147 -147
- package/src/icons/letter-text.ts +2 -2
- package/src/icons/text.ts +2 -2
package/src/icons/letter-text.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name LetterText
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/letter-text
|
|
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 LetterText = createLucideIcon('letter-text', [["path",{"d":"M15 12h6"}],["path",{"d":"M15 6h6"}],["path",{"d":"m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13"}],["path",{"d":"M3 18h18"}],["path",{"d":"
|
|
16
|
+
const LetterText = createLucideIcon('letter-text', [["path",{"d":"M15 12h6"}],["path",{"d":"M15 6h6"}],["path",{"d":"m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13"}],["path",{"d":"M3 18h18"}],["path",{"d":"M3.92 11h6.16"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default LetterText;
|
package/src/icons/text.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Text
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/text
|
|
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 Text = createLucideIcon('text', [["path",{"d":"
|
|
16
|
+
const Text = createLucideIcon('text', [["path",{"d":"M15 18H3"}],["path",{"d":"M17 6H3"}],["path",{"d":"M21 12H3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Text;
|