@lucide/astro 1.18.0 → 1.20.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 +4 -5
- package/src/aliases/aliases.ts +128 -128
- package/src/aliases/prefixed.ts +782 -740
- package/src/aliases/suffixed.ts +1086 -1044
- package/src/icons/ad.ts +18 -0
- package/src/icons/banknote-check.ts +18 -0
- package/src/icons/clock-arrow-left.ts +18 -0
- package/src/icons/clock-arrow-right.ts +18 -0
- package/src/icons/eye-dashed.ts +18 -0
- package/src/icons/index.ts +243 -222
- package/src/icons/list-sort-ascending.ts +18 -0
- package/src/icons/list-sort-descending.ts +18 -0
- package/src/icons/pencil-sparkles.ts +18 -0
- package/src/icons/podium.ts +18 -0
- package/src/icons/save-check.ts +18 -0
- package/src/icons/save-pen.ts +18 -0
- package/src/icons/save-plus.ts +18 -0
- package/src/icons/square-arrow-down-left.ts +2 -2
- package/src/icons/square-arrow-down-right.ts +2 -2
- package/src/icons/square-arrow-up-left.ts +2 -2
- package/src/icons/square-arrow-up-right.ts +2 -2
- package/src/icons/star-check.ts +18 -0
- package/src/icons/star-minus.ts +18 -0
- package/src/icons/star-plus.ts +18 -0
- package/src/icons/star-x.ts +18 -0
- package/src/icons/summary.ts +18 -0
- package/src/icons/tag-plus.ts +18 -0
- package/src/icons/tag-x.ts +18 -0
- package/src/icons/user-round-arrow-left.ts +18 -0
- package/src/icons/wallet-cards.ts +2 -2
- package/src/icons/wrench-off.ts +18 -0
package/src/icons/ad.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Ad
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/ad
|
|
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 Ad = createLucideIcon('ad', [["path",{"d":"M10 13H6"}],["path",{"d":"M10 15v-4a2 2 0 0 0-4 0v4"}],["path",{"d":"M14 14.5a.5.5 0 0 0 .5.5h1a2.5 2.5 0 0 0 2.5-2.5v-1A2.5 2.5 0 0 0 15.5 9h-1a.5.5 0 0 0-.5.5z"}],["rect",{"x":"2","y":"5","width":"20","height":"14","rx":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Ad;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name BanknoteCheck
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/banknote-check
|
|
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 BanknoteCheck = createLucideIcon('banknote-check', [["path",{"d":"M11.748 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4.875"}],["path",{"d":"m16 19 2 2 4-4"}],["path",{"d":"M18 12h.01"}],["path",{"d":"M6 12h.01"}],["circle",{"cx":"12","cy":"12","r":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default BanknoteCheck;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name ClockArrowLeft
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/clock-arrow-left
|
|
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 ClockArrowLeft = createLucideIcon('clock-arrow-left', [["path",{"d":"M12 6v6l1.5.8"}],["path",{"d":"M12.338 21.994a10 10 0 1 1 9.587-8.767"}],["path",{"d":"M14 18h8"}],["path",{"d":"m18 22-4-4 4-4"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default ClockArrowLeft;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name ClockArrowRight
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/clock-arrow-right
|
|
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 ClockArrowRight = createLucideIcon('clock-arrow-right', [["path",{"d":"M12 6v6l2 1"}],["path",{"d":"M13.5 21.885A10 10 0 1 1 22 12"}],["path",{"d":"M14 18h8"}],["path",{"d":"m18 22 4-4-4-4"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default ClockArrowRight;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name EyeDashed
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/eye-dashed
|
|
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 EyeDashed = createLucideIcon('eye-dashed', [["path",{"d":"M13.054 18.946a11 11 0 0 1-2.11 0"}],["path",{"d":"M13.054 5.054a11 11 0 0 0-2.11-.001"}],["path",{"d":"M17.072 6.274a11 11 0 0 1 1.753 1.173"}],["path",{"d":"M18.825 16.552a11 11 0 0 1-1.753 1.174"}],["path",{"d":"M2.514 13.303a11 11 0 0 1-.452-.954 1 1 0 0 1 0-.697 11 11 0 0 1 .45-.955"}],["path",{"d":"M21.485 10.697a11 11 0 0 1 .453.955 1 1 0 0 1 0 .697 11 11 0 0 1-.453.954"}],["path",{"d":"M5.173 7.448a11 11 0 0 1 1.753-1.174"}],["path",{"d":"M6.926 17.726a11 11 0 0 1-1.753-1.174"}],["circle",{"cx":"12","cy":"12","r":"3"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default EyeDashed;
|