lucide-angular 0.90.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/ear-off.ts +16 -0
- package/src/icons/ear.ts +13 -0
- package/src/icons/index.ts +2 -0
package/package.json
CHANGED
|
@@ -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
|
@@ -265,6 +265,8 @@ export { default as Dribbble } from './dribbble';
|
|
|
265
265
|
export { default as Droplet } from './droplet';
|
|
266
266
|
export { default as Droplets } from './droplets';
|
|
267
267
|
export { default as Drumstick } from './drumstick';
|
|
268
|
+
export { default as EarOff } from './ear-off';
|
|
269
|
+
export { default as Ear } from './ear';
|
|
268
270
|
export { default as Edit2 } from './edit-2';
|
|
269
271
|
export { default as Edit3 } from './edit-3';
|
|
270
272
|
export { default as Edit } from './edit';
|