lucide-angular 0.89.0 → 0.91.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/package.json +1 -1
- package/src/icons/book-open-check.ts +14 -0
- package/src/icons/ear-off.ts +16 -0
- package/src/icons/ear.ts +13 -0
- package/src/icons/index.ts +3 -0
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const BookOpenCheck: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M8 3H2v15h7c1.7 0 3 1.3 3 3V7c0-2.2-1.8-4-4-4Z' }],
|
|
9
|
+
['path', { d: 'm16 12 2 2 4-4' }],
|
|
10
|
+
['path', { d: 'M22 6V3h-6c-2.2 0-4 1.8-4 4v14c0-1.7 1.3-3 3-3h7v-2.3' }],
|
|
11
|
+
],
|
|
12
|
+
];
|
|
13
|
+
|
|
14
|
+
export default BookOpenCheck;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const EarOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46' }],
|
|
9
|
+
['path', { d: 'M6 8.5c0-.75.13-1.47.36-2.14' }],
|
|
10
|
+
['path', { d: 'M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76' }],
|
|
11
|
+
['path', { d: 'M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18' }],
|
|
12
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
13
|
+
],
|
|
14
|
+
];
|
|
15
|
+
|
|
16
|
+
export default EarOff;
|
package/src/icons/ear.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Ear: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0' }],
|
|
9
|
+
['path', { d: 'M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4' }],
|
|
10
|
+
],
|
|
11
|
+
];
|
|
12
|
+
|
|
13
|
+
export default Ear;
|
package/src/icons/index.ts
CHANGED
|
@@ -105,6 +105,7 @@ export { default as Bluetooth } from './bluetooth';
|
|
|
105
105
|
export { default as Bold } from './bold';
|
|
106
106
|
export { default as Bomb } from './bomb';
|
|
107
107
|
export { default as Bone } from './bone';
|
|
108
|
+
export { default as BookOpenCheck } from './book-open-check';
|
|
108
109
|
export { default as BookOpen } from './book-open';
|
|
109
110
|
export { default as Book } from './book';
|
|
110
111
|
export { default as BookmarkMinus } from './bookmark-minus';
|
|
@@ -264,6 +265,8 @@ export { default as Dribbble } from './dribbble';
|
|
|
264
265
|
export { default as Droplet } from './droplet';
|
|
265
266
|
export { default as Droplets } from './droplets';
|
|
266
267
|
export { default as Drumstick } from './drumstick';
|
|
268
|
+
export { default as EarOff } from './ear-off';
|
|
269
|
+
export { default as Ear } from './ear';
|
|
267
270
|
export { default as Edit2 } from './edit-2';
|
|
268
271
|
export { default as Edit3 } from './edit-3';
|
|
269
272
|
export { default as Edit } from './edit';
|