@lucide/astro 0.528.0 → 0.529.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 +38 -32
- package/src/aliases/prefixed.ts +454 -448
- package/src/aliases/suffixed.ts +778 -772
- package/src/icons/castle.ts +2 -2
- package/src/icons/index.ts +150 -149
- package/src/icons/map-minus.ts +18 -0
- package/src/icons/{location-edit.ts → map-pin-pen.ts} +4 -4
- package/src/icons/shovel.ts +2 -2
package/src/icons/castle.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Castle
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/castle
|
|
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 Castle = createLucideIcon('castle', [["path",{"d":"
|
|
16
|
+
const Castle = createLucideIcon('castle', [["path",{"d":"M10 5V3"}],["path",{"d":"M14 5V3"}],["path",{"d":"M15 21v-3a3 3 0 0 0-6 0v3"}],["path",{"d":"M18 3v8"}],["path",{"d":"M18 5H6"}],["path",{"d":"M22 11H2"}],["path",{"d":"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9"}],["path",{"d":"M6 3v8"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Castle;
|