@lucide/astro 1.36.0 → 1.37.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 +70 -70
- package/src/aliases/prefixed.ts +602 -600
- package/src/aliases/suffixed.ts +893 -891
- package/src/icons/credit-card-plus.ts +18 -0
- package/src/icons/index.ts +220 -219
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CreditCardPlus
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/credit-card-plus
|
|
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 CreditCardPlus = createLucideIcon('credit-card-plus', [["path",{"d":"M16 17h6"}],["path",{"d":"M19 14v6"}],["path",{"d":"M22 10H2"}],["path",{"d":"M22 11.354V7a2 2 0 00-2-2H4a2 2 0 00-2 2v10a2 2 0 002 2h8.536"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CreditCardPlus;
|