@lucide/astro 1.7.0 → 1.8.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/README.md +6 -1
- package/package.json +2 -2
- package/src/aliases/aliases.ts +160 -154
- package/src/aliases/prefixed.ts +724 -718
- package/src/aliases/suffixed.ts +1103 -1097
- package/src/icons/bookmark-off.ts +18 -0
- package/src/icons/index.ts +188 -187
- package/src/icons/radio-off.ts +2 -2
- package/src/icons/{text-select.ts → square-dashed-text.ts} +4 -4
package/src/icons/radio-off.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name RadioOff
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/radio-off
|
|
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 RadioOff = createLucideIcon('radio-off', [["path",{"d":"
|
|
16
|
+
const RadioOff = createLucideIcon('radio-off', [["path",{"d":"M13.414 13.414a2 2 0 1 1-2.828-2.828"}],["path",{"d":"M16.247 7.761a6 6 0 0 1 1.744 4.572"}],["path",{"d":"M19.075 4.933a10 10 0 0 1 2.234 10.72"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M4.925 19.067a10 10 0 0 1 0-14.134"}],["path",{"d":"M7.753 16.239a6 6 0 0 1 0-8.478"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default RadioOff;
|
|
@@ -3,16 +3,16 @@ import createLucideIcon from '../createLucideIcon';
|
|
|
3
3
|
import type { AstroComponent } from '../types'
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
* @component @name
|
|
6
|
+
* @component @name SquareDashedText
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/text
|
|
9
|
+
* @preview  - https://lucide.dev/icons/square-dashed-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
|
|
16
|
+
const SquareDashedText = createLucideIcon('square-dashed-text', [["path",{"d":"M14 21h1"}],["path",{"d":"M14 3h1"}],["path",{"d":"M19 3a2 2 0 0 1 2 2"}],["path",{"d":"M21 14v1"}],["path",{"d":"M21 19a2 2 0 0 1-2 2"}],["path",{"d":"M21 9v1"}],["path",{"d":"M3 14v1"}],["path",{"d":"M3 9v1"}],["path",{"d":"M5 21a2 2 0 0 1-2-2"}],["path",{"d":"M5 3a2 2 0 0 0-2 2"}],["path",{"d":"M7 12h10"}],["path",{"d":"M7 16h6"}],["path",{"d":"M7 8h8"}],["path",{"d":"M9 21h1"}],["path",{"d":"M9 3h1"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
|
-
export default
|
|
18
|
+
export default SquareDashedText;
|