lucide-angular 0.40.0 → 0.43.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/bundles/lucide-angular-src-icons.umd.js +26 -9
- package/bundles/lucide-angular-src-icons.umd.js.map +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js.map +1 -1
- package/bundles/lucide-angular.umd.js +27 -9
- package/bundles/lucide-angular.umd.js.map +1 -1
- package/bundles/lucide-angular.umd.min.js +1 -1
- package/bundles/lucide-angular.umd.min.js.map +1 -1
- package/esm2015/icons/cpu.js +9 -9
- package/esm2015/icons/delete.js +2 -2
- package/esm2015/icons/factory.js +18 -0
- package/esm2015/icons/index.js +2 -1
- package/esm2015/src/icons/cpu.js +9 -9
- package/esm2015/src/icons/delete.js +2 -2
- package/esm2015/src/icons/factory.js +18 -0
- package/esm2015/src/icons/index.js +2 -1
- package/fesm2015/lucide-angular-src-icons.js +26 -10
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +27 -10
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/factory.d.ts +3 -0
- package/icons/index.d.ts +1 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/factory.d.ts +3 -0
- package/src/icons/index.d.ts +1 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
|
@@ -2042,14 +2042,14 @@
|
|
|
2042
2042
|
[
|
|
2043
2043
|
['rect', { x: '4', y: '4', width: '16', height: '16', rx: '2', ry: '2' }],
|
|
2044
2044
|
['rect', { x: '9', y: '9', width: '6', height: '6' }],
|
|
2045
|
-
['line', { x1: '9', y1: '
|
|
2046
|
-
['line', { x1: '15', y1: '
|
|
2047
|
-
['line', { x1: '9', y1: '
|
|
2048
|
-
['line', { x1: '15', y1: '20', x2: '15', y2: '
|
|
2049
|
-
['line', { x1: '20', y1: '9', x2: '
|
|
2050
|
-
['line', { x1: '20', y1: '14', x2: '
|
|
2051
|
-
['line', { x1: '
|
|
2052
|
-
['line', { x1: '
|
|
2045
|
+
['line', { x1: '9', y1: '2', x2: '9', y2: '4' }],
|
|
2046
|
+
['line', { x1: '15', y1: '2', x2: '15', y2: '4' }],
|
|
2047
|
+
['line', { x1: '9', y1: '21', x2: '9', y2: '22' }],
|
|
2048
|
+
['line', { x1: '15', y1: '20', x2: '15', y2: '22' }],
|
|
2049
|
+
['line', { x1: '20', y1: '9', x2: '22', y2: '9' }],
|
|
2050
|
+
['line', { x1: '20', y1: '14', x2: '22', y2: '14' }],
|
|
2051
|
+
['line', { x1: '2', y1: '9', x2: '4', y2: '9' }],
|
|
2052
|
+
['line', { x1: '2', y1: '14', x2: '4', y2: '14' }],
|
|
2053
2053
|
],
|
|
2054
2054
|
];
|
|
2055
2055
|
|
|
@@ -2128,7 +2128,7 @@
|
|
|
2128
2128
|
'svg',
|
|
2129
2129
|
defaultAttributes,
|
|
2130
2130
|
[
|
|
2131
|
-
['path', { d: '
|
|
2131
|
+
['path', { d: 'M20 5H9L2 12l7 7H20a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z' }],
|
|
2132
2132
|
['line', { x1: '18', y1: '9', x2: '12', y2: '15' }],
|
|
2133
2133
|
['line', { x1: '12', y1: '9', x2: '18', y2: '15' }],
|
|
2134
2134
|
],
|
|
@@ -2485,6 +2485,22 @@
|
|
|
2485
2485
|
],
|
|
2486
2486
|
];
|
|
2487
2487
|
|
|
2488
|
+
var Factory = [
|
|
2489
|
+
'svg',
|
|
2490
|
+
defaultAttributes,
|
|
2491
|
+
[
|
|
2492
|
+
[
|
|
2493
|
+
'path',
|
|
2494
|
+
{
|
|
2495
|
+
d: 'M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z',
|
|
2496
|
+
},
|
|
2497
|
+
],
|
|
2498
|
+
['path', { d: 'M17 18h1' }],
|
|
2499
|
+
['path', { d: 'M12 18h1' }],
|
|
2500
|
+
['path', { d: 'M7 18h1' }],
|
|
2501
|
+
],
|
|
2502
|
+
];
|
|
2503
|
+
|
|
2488
2504
|
var FastForward = [
|
|
2489
2505
|
'svg',
|
|
2490
2506
|
defaultAttributes,
|
|
@@ -7257,6 +7273,7 @@
|
|
|
7257
7273
|
exports.Eye = Eye;
|
|
7258
7274
|
exports.EyeOff = EyeOff;
|
|
7259
7275
|
exports.Facebook = Facebook;
|
|
7276
|
+
exports.Factory = Factory;
|
|
7260
7277
|
exports.FastForward = FastForward;
|
|
7261
7278
|
exports.Feather = Feather;
|
|
7262
7279
|
exports.Figma = Figma;
|