@lucide/astro 1.26.0 → 1.28.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 +2 -2
- package/src/aliases/aliases.ts +110 -98
- package/src/aliases/prefixed.ts +705 -683
- package/src/aliases/suffixed.ts +1023 -1001
- package/src/icons/a-large-small.ts +1 -1
- package/src/icons/ambulance.ts +1 -1
- package/src/icons/barrel.ts +2 -2
- package/src/icons/bone-fracture.ts +1 -1
- package/src/icons/bot-off.ts +1 -1
- package/src/icons/calendar-1.ts +2 -2
- package/src/icons/calendar-arrow-down.ts +2 -2
- package/src/icons/calendar-arrow-up.ts +2 -2
- package/src/icons/calendar-check-2.ts +2 -2
- package/src/icons/calendar-check.ts +2 -2
- package/src/icons/calendar-clock.ts +2 -2
- package/src/icons/calendar-cog.ts +2 -2
- package/src/icons/calendar-days.ts +2 -2
- package/src/icons/calendar-fold.ts +2 -2
- package/src/icons/calendar-heart.ts +2 -2
- package/src/icons/calendar-minus-2.ts +2 -2
- package/src/icons/calendar-minus.ts +2 -2
- package/src/icons/calendar-off.ts +2 -2
- package/src/icons/calendar-plus-2.ts +2 -2
- package/src/icons/calendar-plus.ts +2 -2
- package/src/icons/calendar-range.ts +2 -2
- package/src/icons/calendar-search.ts +2 -2
- package/src/icons/calendar-sync.ts +2 -2
- package/src/icons/calendar-x-2.ts +2 -2
- package/src/icons/calendar-x.ts +2 -2
- package/src/icons/calendar.ts +2 -2
- package/src/icons/captions.ts +1 -1
- package/src/icons/circle-fading-plus.ts +1 -1
- package/src/icons/contact-round.ts +2 -2
- package/src/icons/contact.ts +2 -2
- package/src/icons/diamond-minus.ts +1 -1
- package/src/icons/diamond-plus.ts +1 -1
- package/src/icons/feather.ts +2 -2
- package/src/icons/flag-triangle-left.ts +1 -1
- package/src/icons/gamepad-directional.ts +1 -1
- package/src/icons/git-merge-conflict.ts +1 -1
- package/src/icons/id-card-lanyard.ts +1 -1
- package/src/icons/index.ts +172 -165
- package/src/icons/keyboard-off.ts +1 -1
- package/src/icons/layers-plus.ts +1 -1
- package/src/icons/layout-freeform.ts +18 -0
- package/src/icons/lens-convex.ts +1 -1
- package/src/icons/line-squiggle.ts +1 -1
- package/src/icons/mic-audio-lines.ts +18 -0
- package/src/icons/mic-signal.ts +18 -0
- package/src/icons/mirror-rectangular.ts +1 -1
- package/src/icons/mirror-round.ts +1 -1
- package/src/icons/mosque.ts +18 -0
- package/src/icons/pilcrow-right.ts +1 -1
- package/src/icons/{history.ts → rotate-ccw-clock.ts} +4 -4
- package/src/icons/rotate-cw-fading-clock.ts +18 -0
- package/src/icons/{podcast.ts → scan-square.ts} +4 -4
- package/src/icons/scooter.ts +1 -1
- package/src/icons/search-alert.ts +1 -1
- package/src/icons/spline-pointer.ts +1 -1
- package/src/icons/square-arrow-right-enter.ts +1 -1
- package/src/icons/square-arrow-right-exit.ts +1 -1
- package/src/icons/square-bottom-dashed-scissors.ts +2 -2
- package/src/icons/square-off.ts +18 -0
- package/src/icons/square-scissors.ts +2 -2
- package/src/icons/squares-exclude.ts +1 -1
- package/src/icons/squares-intersect.ts +1 -1
- package/src/icons/squares-subtract.ts +1 -1
- package/src/icons/squares-unite.ts +1 -1
- package/src/icons/toilet.ts +1 -1
- package/src/icons/toolbox.ts +2 -2
- package/src/icons/trophy.ts +2 -2
- package/src/icons/truck.ts +1 -1
- package/src/icons/user-shield.ts +18 -0
- package/src/icons/van.ts +1 -1
- package/src/icons/zap-off.ts +2 -2
- package/src/icons/zap.ts +2 -2
package/src/icons/contact.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Contact
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/contact
|
|
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 Contact = createLucideIcon('contact', [["path",{"d":"M16 2v2"}],["path",{"d":"M7
|
|
16
|
+
const Contact = createLucideIcon('contact', [["path",{"d":"M16 2v2"}],["path",{"d":"M7 21v-2a2 2 0 012-2h6a2 2 0 012 2v2"}],["path",{"d":"M8 2v2"}],["circle",{"cx":"12","cy":"10","r":"3"}],["rect",{"x":"3","y":"3","width":"18","height":"18","rx":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Contact;
|
|
@@ -6,7 +6,7 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name DiamondMinus
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/diamond-minus
|
|
9
|
+
* @preview  - https://lucide.dev/icons/diamond-minus
|
|
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
|
|
@@ -6,7 +6,7 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name DiamondPlus
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/diamond-plus
|
|
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
|
package/src/icons/feather.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Feather
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/feather
|
|
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 Feather = createLucideIcon('feather', [["path",{"d":"
|
|
16
|
+
const Feather = createLucideIcon('feather', [["path",{"d":"M14.086 18.412A2 2 0 0112.67 19H5v-7.672a2 2 0 01.586-1.414L11.75 3.75a6 6 0 118.49 8.49z"}],["path",{"d":"M16 8 2 22"}],["path",{"d":"M17.488 15H9"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Feather;
|
|
@@ -6,7 +6,7 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name FlagTriangleLeft
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/flag-triangle-left
|
|
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
|
|
@@ -6,7 +6,7 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name GamepadDirectional
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/gamepad-directional
|
|
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
|
|
@@ -6,7 +6,7 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name GitMergeConflict
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/git-merge-conflict
|
|
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
|
|
@@ -6,7 +6,7 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name IdCardLanyard
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/id-card-lanyard
|
|
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
|