@lucide/astro 0.554.0 → 0.555.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 +58 -58
- package/src/aliases/prefixed.ts +464 -458
- package/src/aliases/suffixed.ts +684 -678
- package/src/icons/calendars.ts +2 -2
- package/src/icons/form.ts +18 -0
- package/src/icons/index.ts +105 -102
- package/src/icons/scale.ts +2 -2
- package/src/icons/waves-arrow-down.ts +18 -0
- package/src/icons/waves-arrow-up.ts +18 -0
package/src/icons/calendars.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Calendars
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/calendars
|
|
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 Calendars = createLucideIcon('calendars', [["path",{"d":"M12 2v2"}],["path",{"d":"M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2"}],["path",{"d":"M18 2v2"}],["path",{"d":"M8 8h14"}],["rect",{"x":"8","y":"3","width":"14","height":"14","rx":"2"}]]) as AstroComponent;
|
|
16
|
+
const Calendars = createLucideIcon('calendars', [["path",{"d":"M12 2v2"}],["path",{"d":"M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2"}],["path",{"d":"M18 2v2"}],["path",{"d":"M2 13h2"}],["path",{"d":"M8 8h14"}],["rect",{"x":"8","y":"3","width":"14","height":"14","rx":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Calendars;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Form
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/form
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const Form = createLucideIcon('form', [["path",{"d":"M4 14h6"}],["path",{"d":"M4 2h10"}],["rect",{"x":"4","y":"18","width":"16","height":"4","rx":"1"}],["rect",{"x":"4","y":"6","width":"16","height":"4","rx":"1"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Form;
|