lucide-angular 0.366.0 → 0.367.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/cable.mjs +16 -9
- package/esm2020/icons/image-play.mjs +25 -0
- package/esm2020/icons/lucide-icons.mjs +2 -1
- package/esm2020/src/icons/aliases.mjs +4 -1
- package/esm2020/src/icons/icons/cable.mjs +16 -9
- package/esm2020/src/icons/icons/image-play.mjs +25 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +2 -1
- package/fesm2015/lucide-angular-src-icons.mjs +41 -9
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +41 -9
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +41 -9
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +41 -9
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/cable.d.ts +1 -1
- package/icons/image-play.d.ts +14 -0
- package/icons/lucide-icons.d.ts +1 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +2 -0
- package/src/icons/icons/cable.d.ts +1 -1
- package/src/icons/icons/image-play.d.ts +14 -0
- package/src/icons/icons/lucide-icons.d.ts +1 -0
package/icons/cable.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name Cable
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/cable
|
|
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
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name ImagePlay
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/image-play
|
|
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 ImagePlay: LucideIconData;
|
|
14
|
+
export default ImagePlay;
|
package/icons/lucide-icons.d.ts
CHANGED
|
@@ -719,6 +719,7 @@ export { default as IceCreamCone } from './ice-cream-cone';
|
|
|
719
719
|
export { default as ImageDown } from './image-down';
|
|
720
720
|
export { default as ImageMinus } from './image-minus';
|
|
721
721
|
export { default as ImageOff } from './image-off';
|
|
722
|
+
export { default as ImagePlay } from './image-play';
|
|
722
723
|
export { default as ImagePlus } from './image-plus';
|
|
723
724
|
export { default as ImageUp } from './image-up';
|
|
724
725
|
export { default as Image } from './image';
|
package/package.json
CHANGED
package/src/icons/aliases.d.ts
CHANGED
|
@@ -1290,6 +1290,8 @@ export { default as ImageMinusIcon } from './icons/image-minus';
|
|
|
1290
1290
|
export { default as LucideImageMinus } from './icons/image-minus';
|
|
1291
1291
|
export { default as ImageOffIcon } from './icons/image-off';
|
|
1292
1292
|
export { default as LucideImageOff } from './icons/image-off';
|
|
1293
|
+
export { default as ImagePlayIcon } from './icons/image-play';
|
|
1294
|
+
export { default as LucideImagePlay } from './icons/image-play';
|
|
1293
1295
|
export { default as ImagePlusIcon } from './icons/image-plus';
|
|
1294
1296
|
export { default as LucideImagePlus } from './icons/image-plus';
|
|
1295
1297
|
export { default as ImageUpIcon } from './icons/image-up';
|
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name Cable
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/cable
|
|
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
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name ImagePlay
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/image-play
|
|
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 ImagePlay: LucideIconData;
|
|
14
|
+
export default ImagePlay;
|
|
@@ -719,6 +719,7 @@ export { default as IceCreamCone } from './ice-cream-cone';
|
|
|
719
719
|
export { default as ImageDown } from './image-down';
|
|
720
720
|
export { default as ImageMinus } from './image-minus';
|
|
721
721
|
export { default as ImageOff } from './image-off';
|
|
722
|
+
export { default as ImagePlay } from './image-play';
|
|
722
723
|
export { default as ImagePlus } from './image-plus';
|
|
723
724
|
export { default as ImageUp } from './image-up';
|
|
724
725
|
export { default as Image } from './image';
|