lucide-angular 0.320.0 → 0.321.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/aliases.d.ts +2 -0
- package/esm2020/aliases.mjs +4 -1
- package/esm2020/icons/handshake.mjs +26 -0
- package/esm2020/icons/lucide-icons.mjs +2 -1
- package/esm2020/icons/shield-minus.mjs +3 -3
- package/esm2020/icons/shield-plus.mjs +4 -4
- package/esm2020/lib/lucide-angular.component.mjs +1 -1
- package/esm2020/src/icons/aliases.mjs +4 -1
- package/esm2020/src/icons/icons/handshake.mjs +26 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +2 -1
- package/esm2020/src/icons/icons/shield-minus.mjs +3 -3
- package/esm2020/src/icons/icons/shield-plus.mjs +4 -4
- package/esm2020/src/icons/lib/lucide-angular.component.mjs +1 -1
- package/fesm2015/lucide-angular-src-icons.mjs +32 -6
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +32 -6
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +32 -6
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +32 -6
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/handshake.d.ts +14 -0
- package/icons/lucide-icons.d.ts +1 -0
- package/icons/shield-minus.d.ts +1 -1
- package/icons/shield-plus.d.ts +1 -1
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +2 -0
- package/src/icons/icons/handshake.d.ts +14 -0
- package/src/icons/icons/lucide-icons.d.ts +1 -0
- package/src/icons/icons/shield-minus.d.ts +1 -1
- package/src/icons/icons/shield-plus.d.ts +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name Handshake
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/handshake
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const Handshake: LucideIconData;
|
|
14
|
+
export default Handshake;
|
package/icons/lucide-icons.d.ts
CHANGED
|
@@ -684,6 +684,7 @@ export { default as HandHelping } from './hand-helping';
|
|
|
684
684
|
export { default as HandMetal } from './hand-metal';
|
|
685
685
|
export { default as HandPlatter } from './hand-platter';
|
|
686
686
|
export { default as Hand } from './hand';
|
|
687
|
+
export { default as Handshake } from './handshake';
|
|
687
688
|
export { default as HardDriveDownload } from './hard-drive-download';
|
|
688
689
|
export { default as HardDriveUpload } from './hard-drive-upload';
|
|
689
690
|
export { default as HardDrive } from './hard-drive';
|
package/icons/shield-minus.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name ShieldMinus
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/shield-minus
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
package/icons/shield-plus.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name ShieldPlus
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/shield-plus
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
package/package.json
CHANGED
package/src/icons/aliases.d.ts
CHANGED
|
@@ -1288,6 +1288,8 @@ export { default as HandPlatterIcon } from './icons/hand-platter';
|
|
|
1288
1288
|
export { default as LucideHandPlatter } from './icons/hand-platter';
|
|
1289
1289
|
export { default as HandIcon } from './icons/hand';
|
|
1290
1290
|
export { default as LucideHand } from './icons/hand';
|
|
1291
|
+
export { default as HandshakeIcon } from './icons/handshake';
|
|
1292
|
+
export { default as LucideHandshake } from './icons/handshake';
|
|
1291
1293
|
export { default as HardDriveDownloadIcon } from './icons/hard-drive-download';
|
|
1292
1294
|
export { default as LucideHardDriveDownload } from './icons/hard-drive-download';
|
|
1293
1295
|
export { default as HardDriveUploadIcon } from './icons/hard-drive-upload';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name Handshake
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/handshake
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const Handshake: LucideIconData;
|
|
14
|
+
export default Handshake;
|
|
@@ -684,6 +684,7 @@ export { default as HandHelping } from './hand-helping';
|
|
|
684
684
|
export { default as HandMetal } from './hand-metal';
|
|
685
685
|
export { default as HandPlatter } from './hand-platter';
|
|
686
686
|
export { default as Hand } from './hand';
|
|
687
|
+
export { default as Handshake } from './handshake';
|
|
687
688
|
export { default as HardDriveDownload } from './hard-drive-download';
|
|
688
689
|
export { default as HardDriveUpload } from './hard-drive-upload';
|
|
689
690
|
export { default as HardDrive } from './hard-drive';
|
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name ShieldMinus
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/shield-minus
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name ShieldPlus
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/shield-plus
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|