lucide-angular 0.404.0 → 0.405.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 +4 -0
- package/esm2020/aliases.mjs +7 -1
- package/esm2020/icons/lucide-icons.mjs +3 -1
- package/esm2020/icons/user-pen.mjs +24 -0
- package/esm2020/icons/user-round-pen.mjs +24 -0
- package/esm2020/src/icons/aliases.mjs +7 -1
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -1
- package/esm2020/src/icons/icons/user-pen.mjs +24 -0
- package/esm2020/src/icons/icons/user-round-pen.mjs +24 -0
- package/fesm2015/lucide-angular-src-icons.mjs +49 -1
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +49 -1
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +49 -1
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +49 -1
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/lucide-icons.d.ts +2 -0
- package/icons/user-pen.d.ts +14 -0
- package/icons/user-round-pen.d.ts +14 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +4 -0
- package/src/icons/icons/lucide-icons.d.ts +2 -0
- package/src/icons/icons/user-pen.d.ts +14 -0
- package/src/icons/icons/user-round-pen.d.ts +14 -0
package/aliases.d.ts
CHANGED
|
@@ -2488,8 +2488,12 @@ export { default as UserCogIcon } from './icons/user-cog';
|
|
|
2488
2488
|
export { default as LucideUserCog } from './icons/user-cog';
|
|
2489
2489
|
export { default as UserMinusIcon } from './icons/user-minus';
|
|
2490
2490
|
export { default as LucideUserMinus } from './icons/user-minus';
|
|
2491
|
+
export { default as UserPenIcon } from './icons/user-pen';
|
|
2492
|
+
export { default as LucideUserPen } from './icons/user-pen';
|
|
2491
2493
|
export { default as UserPlusIcon } from './icons/user-plus';
|
|
2492
2494
|
export { default as LucideUserPlus } from './icons/user-plus';
|
|
2495
|
+
export { default as UserRoundPenIcon } from './icons/user-round-pen';
|
|
2496
|
+
export { default as LucideUserRoundPen } from './icons/user-round-pen';
|
|
2493
2497
|
export { default as UserRoundSearchIcon } from './icons/user-round-search';
|
|
2494
2498
|
export { default as LucideUserRoundSearch } from './icons/user-round-search';
|
|
2495
2499
|
export { default as UserSearchIcon } from './icons/user-search';
|