lucide-angular 0.374.0 → 0.375.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/grid-2x2-check.mjs +23 -0
- package/esm2020/icons/grid-2x2-x.mjs +24 -0
- package/esm2020/icons/lucide-icons.mjs +3 -1
- package/esm2020/src/icons/aliases.mjs +7 -1
- package/esm2020/src/icons/icons/grid-2x2-check.mjs +23 -0
- package/esm2020/src/icons/icons/grid-2x2-x.mjs +24 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -1
- package/fesm2015/lucide-angular-src-icons.mjs +48 -1
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +48 -1
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +48 -1
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +48 -1
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/grid-2x2-check.d.ts +14 -0
- package/icons/grid-2x2-x.d.ts +14 -0
- package/icons/lucide-icons.d.ts +2 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +4 -0
- package/src/icons/icons/grid-2x2-check.d.ts +14 -0
- package/src/icons/icons/grid-2x2-x.d.ts +14 -0
- package/src/icons/icons/lucide-icons.d.ts +2 -0
package/aliases.d.ts
CHANGED
|
@@ -1202,6 +1202,10 @@ export { default as GraduationCapIcon } from './icons/graduation-cap';
|
|
|
1202
1202
|
export { default as LucideGraduationCap } from './icons/graduation-cap';
|
|
1203
1203
|
export { default as GrapeIcon } from './icons/grape';
|
|
1204
1204
|
export { default as LucideGrape } from './icons/grape';
|
|
1205
|
+
export { default as Grid2x2CheckIcon } from './icons/grid-2x2-check';
|
|
1206
|
+
export { default as LucideGrid2x2Check } from './icons/grid-2x2-check';
|
|
1207
|
+
export { default as Grid2x2XIcon } from './icons/grid-2x2-x';
|
|
1208
|
+
export { default as LucideGrid2x2X } from './icons/grid-2x2-x';
|
|
1205
1209
|
export { default as GripHorizontalIcon } from './icons/grip-horizontal';
|
|
1206
1210
|
export { default as LucideGripHorizontal } from './icons/grip-horizontal';
|
|
1207
1211
|
export { default as GripVerticalIcon } from './icons/grip-vertical';
|