lucide-angular 0.93.0 → 0.98.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/README.md +20 -28
- package/package.json +17 -17
- package/src/icons/bean-off.ts +27 -0
- package/src/icons/bean.ts +19 -0
- package/src/icons/candy-off.ts +37 -0
- package/src/icons/candy.ts +31 -0
- package/src/icons/cat.ts +23 -0
- package/src/icons/check-check.ts +10 -0
- package/src/icons/dna-off.ts +28 -0
- package/src/icons/dna.ts +22 -0
- package/src/icons/dog.ts +35 -0
- package/src/icons/dumbbell.ts +18 -0
- package/src/icons/egg-off.ts +26 -0
- package/src/icons/flask-conical-off.ts +23 -0
- package/src/icons/flask-conical.ts +1 -1
- package/src/icons/hop-off.ts +28 -0
- package/src/icons/hop.ts +25 -0
- package/src/icons/index.ts +23 -0
- package/src/icons/milk-off.ts +21 -0
- package/src/icons/milk.ts +20 -0
- package/src/icons/nut-off.ts +28 -0
- package/src/icons/nut.ts +26 -0
- package/src/icons/spline.ts +26 -0
- package/src/icons/vegan.ts +29 -0
- package/src/icons/wheat-off.ts +57 -0
- package/src/icons/wheat.ts +55 -0
- package/src/icons/wine-off.ts +22 -0
package/README.md
CHANGED
|
@@ -6,11 +6,13 @@ Implementation of the lucide icon library for angular applications.
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
```
|
|
9
|
+
```sh
|
|
10
10
|
yarn add lucide-angular
|
|
11
|
+
```
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
or
|
|
13
14
|
|
|
15
|
+
```sh
|
|
14
16
|
npm install lucide-angular
|
|
15
17
|
```
|
|
16
18
|
|
|
@@ -22,12 +24,12 @@ There are three ways for use this library.
|
|
|
22
24
|
|
|
23
25
|
After install `lucide-angular` change content of file `app.component.html` and `app.component.ts`.
|
|
24
26
|
|
|
25
|
-
```
|
|
27
|
+
```html
|
|
26
28
|
<!-- app.component.html -->
|
|
27
29
|
<div id="lucide-icon"></div>
|
|
28
30
|
```
|
|
29
31
|
|
|
30
|
-
```
|
|
32
|
+
```js
|
|
31
33
|
// app.component.ts
|
|
32
34
|
|
|
33
35
|
import { Component, OnInit } from '@angular/core';
|
|
@@ -39,7 +41,6 @@ import { Activity } from 'lucide-angular/icons';
|
|
|
39
41
|
templateUrl: './app.component.html',
|
|
40
42
|
styleUrls: ['./app.component.css']
|
|
41
43
|
})
|
|
42
|
-
|
|
43
44
|
export class AppComponent implements OnInit {
|
|
44
45
|
ngOnInit(): void {
|
|
45
46
|
const div = document.getElementById('lucide-icon');
|
|
@@ -53,11 +54,11 @@ export class AppComponent implements OnInit {
|
|
|
53
54
|
}
|
|
54
55
|
```
|
|
55
56
|
|
|
56
|
-
### Method 2: User
|
|
57
|
+
### Method 2: User **Tag** with **name** property
|
|
57
58
|
|
|
58
59
|
After install `lucide-angular` change content of file `app.component.html`, `app.component.ts`, `app.component.css` and `app.module.ts`.
|
|
59
60
|
|
|
60
|
-
```
|
|
61
|
+
```js
|
|
61
62
|
// app.module.ts
|
|
62
63
|
import { NgModule } from '@angular/core';
|
|
63
64
|
import { BrowserModule } from '@angular/platform-browser';
|
|
@@ -67,31 +68,29 @@ import { AppComponent } from './app.component';
|
|
|
67
68
|
import { LucideAngularModule, AlarmCheck, Edit } from 'lucide-angular';
|
|
68
69
|
|
|
69
70
|
@NgModule({
|
|
70
|
-
declarations: [
|
|
71
|
-
AppComponent
|
|
72
|
-
],
|
|
71
|
+
declarations: [AppComponent],
|
|
73
72
|
imports: [
|
|
74
73
|
BrowserModule,
|
|
75
74
|
AppRoutingModule,
|
|
76
|
-
LucideAngularModule.pick({ AlarmCheck, Edit })
|
|
75
|
+
LucideAngularModule.pick({ AlarmCheck, Edit }) // add all of icons that is imported.
|
|
77
76
|
],
|
|
78
77
|
providers: [],
|
|
79
78
|
bootstrap: [AppComponent]
|
|
80
79
|
})
|
|
81
|
-
export class AppModule {
|
|
80
|
+
export class AppModule {}
|
|
82
81
|
```
|
|
83
82
|
|
|
84
|
-
```
|
|
83
|
+
```html
|
|
85
84
|
<!-- app.component.html -->
|
|
86
85
|
<lucide-icon name="alarm-check" class="myicon"></lucide-icon>
|
|
87
86
|
<lucide-icon name="edit" class="myicon"></lucide-icon>
|
|
88
87
|
```
|
|
89
88
|
|
|
90
|
-
### Method 3: User
|
|
89
|
+
### Method 3: User **Tag** with **img** property
|
|
91
90
|
|
|
92
91
|
After install `lucide-angular` change content of file `app.component.html`, `app.component.ts`, `app.component.css` and `app.module.ts`.
|
|
93
92
|
|
|
94
|
-
```
|
|
93
|
+
```js
|
|
95
94
|
// app.module.ts
|
|
96
95
|
import { NgModule } from '@angular/core';
|
|
97
96
|
import { BrowserModule } from '@angular/platform-browser';
|
|
@@ -101,27 +100,21 @@ import { AppComponent } from './app.component';
|
|
|
101
100
|
import { LucideAngularModule } from 'lucide-angular';
|
|
102
101
|
|
|
103
102
|
@NgModule({
|
|
104
|
-
declarations: [
|
|
105
|
-
|
|
106
|
-
],
|
|
107
|
-
imports: [
|
|
108
|
-
BrowserModule,
|
|
109
|
-
AppRoutingModule,
|
|
110
|
-
LucideAngularModule.pick({ })
|
|
111
|
-
],
|
|
103
|
+
declarations: [AppComponent],
|
|
104
|
+
imports: [BrowserModule, AppRoutingModule, LucideAngularModule.pick({})],
|
|
112
105
|
providers: [],
|
|
113
106
|
bootstrap: [AppComponent]
|
|
114
107
|
})
|
|
115
|
-
export class AppModule {
|
|
108
|
+
export class AppModule {}
|
|
116
109
|
```
|
|
117
110
|
|
|
118
|
-
```
|
|
111
|
+
```xml
|
|
119
112
|
<!-- app.component.html -->
|
|
120
113
|
<lucide-icon [img]="ico1" class="myicon"></lucide-icon>
|
|
121
114
|
<lucide-icon [img]="ico2" class="myicon"></lucide-icon>
|
|
122
115
|
```
|
|
123
116
|
|
|
124
|
-
```
|
|
117
|
+
```js
|
|
125
118
|
// app.component.ts
|
|
126
119
|
import { Component } from '@angular/core';
|
|
127
120
|
import { Airplay, Circle } from 'lucide-angular';
|
|
@@ -131,7 +124,6 @@ import { Airplay, Circle } from 'lucide-angular';
|
|
|
131
124
|
templateUrl: './app.component.html',
|
|
132
125
|
styleUrls: ['./app.component.css']
|
|
133
126
|
})
|
|
134
|
-
|
|
135
127
|
export class AppComponent {
|
|
136
128
|
ico1 = Airplay;
|
|
137
129
|
ico2 = Circle;
|
|
@@ -144,7 +136,7 @@ export class AppComponent {
|
|
|
144
136
|
|
|
145
137
|
In `Method 2`: import all icons in `app.module.ts` by:
|
|
146
138
|
|
|
147
|
-
```
|
|
139
|
+
```js
|
|
148
140
|
...
|
|
149
141
|
import { icons } from 'lucide-angular/icons';
|
|
150
142
|
....
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lucide-angular",
|
|
3
3
|
"description": "A Lucide icon library package for Angular applications",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.98.0",
|
|
5
5
|
"author": "SMAH1",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"homepage": "https://lucide.dev",
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"Font Awesome"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"tslib": "^2.
|
|
25
|
+
"tslib": "^2.4.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@angular-devkit/build-angular": "~
|
|
29
|
-
"@angular/cli": "~
|
|
30
|
-
"@angular/common": "~
|
|
31
|
-
"@angular/compiler": "~
|
|
32
|
-
"@angular/compiler-cli": "~
|
|
33
|
-
"@angular/core": "~
|
|
34
|
-
"@angular/platform-browser": "~
|
|
35
|
-
"@angular/platform-browser-dynamic": "~
|
|
36
|
-
"@types/jasmine": "~3.
|
|
37
|
-
"@types/node": "^
|
|
28
|
+
"@angular-devkit/build-angular": "~14.2.6",
|
|
29
|
+
"@angular/cli": "~14.2.6",
|
|
30
|
+
"@angular/common": "~14.2.7",
|
|
31
|
+
"@angular/compiler": "~14.2.7",
|
|
32
|
+
"@angular/compiler-cli": "~14.2.7",
|
|
33
|
+
"@angular/core": "~14.2.7",
|
|
34
|
+
"@angular/platform-browser": "~14.2.7",
|
|
35
|
+
"@angular/platform-browser-dynamic": "~14.2.7",
|
|
36
|
+
"@types/jasmine": "~4.3.0",
|
|
37
|
+
"@types/node": "^18.11.4",
|
|
38
38
|
"codelyzer": "^6.0.2",
|
|
39
39
|
"jasmine-core": "~3.10.1",
|
|
40
40
|
"jasmine-spec-reporter": "~7.0.0",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"karma-coverage": "~2.0.3",
|
|
44
44
|
"karma-jasmine": "~4.0.1",
|
|
45
45
|
"karma-jasmine-html-reporter": "^1.7.0",
|
|
46
|
-
"ng-packagr": "^
|
|
46
|
+
"ng-packagr": "^14.2.1",
|
|
47
47
|
"protractor": "~7.0.0",
|
|
48
48
|
"puppeteer": "^8.0.0",
|
|
49
|
-
"rxjs": "
|
|
50
|
-
"ts-node": "~10.
|
|
49
|
+
"rxjs": "7.5.7",
|
|
50
|
+
"ts-node": "~10.9.1",
|
|
51
51
|
"tslint": "~6.1.0",
|
|
52
|
-
"typescript": "~4.
|
|
53
|
-
"zone.js": "^0.11.
|
|
52
|
+
"typescript": "~4.8.4",
|
|
53
|
+
"zone.js": "^0.11.8"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:ng",
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const BeanOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d:
|
|
12
|
+
'M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
['path', { d: 'M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66' }],
|
|
16
|
+
[
|
|
17
|
+
'path',
|
|
18
|
+
{
|
|
19
|
+
d:
|
|
20
|
+
'M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
24
|
+
],
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
export default BeanOff;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Bean: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d:
|
|
12
|
+
'M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
['path', { d: 'M5.341 10.62A4 4 0 1 0 10.62 5.34' }],
|
|
16
|
+
],
|
|
17
|
+
];
|
|
18
|
+
|
|
19
|
+
export default Bean;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const CandyOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'm8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1' }],
|
|
9
|
+
[
|
|
10
|
+
'path',
|
|
11
|
+
{
|
|
12
|
+
d:
|
|
13
|
+
'M11.843 6.187A4.947 4.947 0 0 1 16.5 7.5a4.947 4.947 0 0 1 1.313 4.657',
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
['path', { d: 'M14 16.5V14' }],
|
|
17
|
+
['path', { d: 'M14 6.5v1.843' }],
|
|
18
|
+
['path', { d: 'M10 10v7.5' }],
|
|
19
|
+
[
|
|
20
|
+
'path',
|
|
21
|
+
{
|
|
22
|
+
d:
|
|
23
|
+
'm16 7 1-5 1.367.683A3 3 0 0 0 19.708 3H21v1.292a3 3 0 0 0 .317 1.341L22 7l-5 1',
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
[
|
|
27
|
+
'path',
|
|
28
|
+
{
|
|
29
|
+
d:
|
|
30
|
+
'm8 17-1 5-1.367-.683A3 3 0 0 0 4.292 21H3v-1.292a3 3 0 0 0-.317-1.341L2 17l5-1',
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
34
|
+
],
|
|
35
|
+
];
|
|
36
|
+
|
|
37
|
+
export default CandyOff;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Candy: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{ d: 'm9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z' },
|
|
11
|
+
],
|
|
12
|
+
['path', { d: 'M14 6.5v10' }],
|
|
13
|
+
['path', { d: 'M10 7.5v10' }],
|
|
14
|
+
[
|
|
15
|
+
'path',
|
|
16
|
+
{
|
|
17
|
+
d:
|
|
18
|
+
'm16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1',
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
[
|
|
22
|
+
'path',
|
|
23
|
+
{
|
|
24
|
+
d:
|
|
25
|
+
'm8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1',
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
],
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
export default Candy;
|
package/src/icons/cat.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Cat: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d:
|
|
12
|
+
'M14 5.256A8.148 8.148 0 0 0 12 5a9.04 9.04 0 0 0-2 .227M20.098 10c.572 1.068.902 2.24.902 3.444C21 17.89 16.97 21 12 21s-9-3-9-7.556c0-1.251.288-2.41.792-3.444',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
['path', { d: 'M3.75 10S2.11 3.58 3.5 3C4.89 2.42 8 3 9.781 5' }],
|
|
16
|
+
['path', { d: 'M20.172 10.002s1.64-6.42.25-7c-1.39-.58-4.5 0-6.282 2' }],
|
|
17
|
+
['path', { d: 'M8 14v.5' }],
|
|
18
|
+
['path', { d: 'M16 14v.5' }],
|
|
19
|
+
['path', { d: 'M11.25 16.25h1.5L12 17l-.75-.75Z' }],
|
|
20
|
+
],
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
export default Cat;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const CheckCheck: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[['path', { d: 'M18 6 7 17l-5-5' }], ['path', { d: 'm22 10-7.5 7.5L13 16' }]],
|
|
8
|
+
];
|
|
9
|
+
|
|
10
|
+
export default CheckCheck;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const DnaOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{ d: 'M15 2c-1.35 1.5-2.092 3-2.5 4.5M9 22c1.35-1.5 2.092-3 2.5-4.5' },
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
'path',
|
|
14
|
+
{ d: 'M2 15c3.333-3 6.667-3 10-3m10-3c-1.5 1.35-3 2.092-4.5 2.5' },
|
|
15
|
+
],
|
|
16
|
+
['path', { d: 'm17 6-2.5-2.5' }],
|
|
17
|
+
['path', { d: 'm14 8-1.5-1.5' }],
|
|
18
|
+
['path', { d: 'm7 18 2.5 2.5' }],
|
|
19
|
+
['path', { d: 'm3.5 14.5.5.5' }],
|
|
20
|
+
['path', { d: 'm20 9 .5.5' }],
|
|
21
|
+
['path', { d: 'm6.5 12.5 1 1' }],
|
|
22
|
+
['path', { d: 'm16.5 10.5 1 1' }],
|
|
23
|
+
['path', { d: 'm10 16 1.5 1.5' }],
|
|
24
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
25
|
+
],
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
export default DnaOff;
|
package/src/icons/dna.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Dna: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M2 15c6.667-6 13.333 0 20-6' }],
|
|
9
|
+
['path', { d: 'M9 22c1.798-1.998 2.518-3.995 2.807-5.993' }],
|
|
10
|
+
['path', { d: 'M15 2c-1.798 1.998-2.518 3.995-2.807 5.993' }],
|
|
11
|
+
['path', { d: 'm17 6-2.5-2.5' }],
|
|
12
|
+
['path', { d: 'm14 8-1-1' }],
|
|
13
|
+
['path', { d: 'm7 18 2.5 2.5' }],
|
|
14
|
+
['path', { d: 'm3.5 14.5.5.5' }],
|
|
15
|
+
['path', { d: 'm20 9 .5.5' }],
|
|
16
|
+
['path', { d: 'm6.5 12.5 1 1' }],
|
|
17
|
+
['path', { d: 'm16.5 10.5 1 1' }],
|
|
18
|
+
['path', { d: 'm10 16 1.5 1.5' }],
|
|
19
|
+
],
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
export default Dna;
|
package/src/icons/dog.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Dog: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d:
|
|
12
|
+
'M10 5.172C10 3.782 8.423 2.679 6.5 3c-2.823.47-4.113 6.006-4 7 .08.703 1.725 1.722 3.656 1 1.261-.472 1.96-1.45 2.344-2.5',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
'path',
|
|
17
|
+
{
|
|
18
|
+
d:
|
|
19
|
+
'M14.267 5.172c0-1.39 1.577-2.493 3.5-2.172 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5',
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
['path', { d: 'M8 14v.5' }],
|
|
23
|
+
['path', { d: 'M16 14v.5' }],
|
|
24
|
+
['path', { d: 'M11.25 16.25h1.5L12 17l-.75-.75Z' }],
|
|
25
|
+
[
|
|
26
|
+
'path',
|
|
27
|
+
{
|
|
28
|
+
d:
|
|
29
|
+
'M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444c0-1.061-.162-2.2-.493-3.309m-9.243-6.082A8.801 8.801 0 0 1 12 5c.78 0 1.5.108 2.161.306',
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
],
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
export default Dog;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Dumbbell: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'm6.5 6.5 11 11' }],
|
|
9
|
+
['path', { d: 'm21 21-1-1' }],
|
|
10
|
+
['path', { d: 'm3 3 1 1' }],
|
|
11
|
+
['path', { d: 'm18 22 4-4' }],
|
|
12
|
+
['path', { d: 'm2 6 4-4' }],
|
|
13
|
+
['path', { d: 'm3 10 7-7' }],
|
|
14
|
+
['path', { d: 'm14 21 7-7' }],
|
|
15
|
+
],
|
|
16
|
+
];
|
|
17
|
+
|
|
18
|
+
export default Dumbbell;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const EggOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d:
|
|
12
|
+
'M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
'path',
|
|
17
|
+
{
|
|
18
|
+
d:
|
|
19
|
+
'M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297',
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
23
|
+
],
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
export default EggOff;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const FlaskConicalOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d:
|
|
12
|
+
'M10 10 4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-1.272-2.542',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
['path', { d: 'M10 2v2.343' }],
|
|
16
|
+
['path', { d: 'M14 2v6.343' }],
|
|
17
|
+
['path', { d: 'M8.5 2h7' }],
|
|
18
|
+
['path', { d: 'M7 16h9' }],
|
|
19
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
20
|
+
],
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
export default FlaskConicalOff;
|
|
@@ -9,7 +9,7 @@ const FlaskConical: IconData = [
|
|
|
9
9
|
'path',
|
|
10
10
|
{
|
|
11
11
|
d:
|
|
12
|
-
'M10
|
|
12
|
+
'M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-5.069-10.127A2 2 0 0 1 14 9.527V2',
|
|
13
13
|
},
|
|
14
14
|
],
|
|
15
15
|
['path', { d: 'M8.5 2h7' }],
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const HopOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{ d: 'M17.5 5.5C19 7 20.5 9 21 11c-1.323.265-2.646.39-4.118.226' },
|
|
11
|
+
],
|
|
12
|
+
['path', { d: 'M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5' }],
|
|
13
|
+
['path', { d: 'M17.5 17.5c-2.5 0-4 0-6-1' }],
|
|
14
|
+
['path', { d: 'M20 11.5c1 1.5 2 3.5 2 4.5' }],
|
|
15
|
+
['path', { d: 'M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5' }],
|
|
16
|
+
['path', { d: 'M22 22c-2 0-3.5-.5-5.5-1.5' }],
|
|
17
|
+
[
|
|
18
|
+
'path',
|
|
19
|
+
{
|
|
20
|
+
d:
|
|
21
|
+
'M4.783 4.782C1.073 8.492 1 14.5 5 18c1-1 2-4.5 1.5-6.5 1.5 1 4 1 5.5.5M8.227 2.57C11.578 1.335 15.453 2.089 18 5c-.88.88-3.7 1.761-5.726 1.618',
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
25
|
+
],
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
export default HopOff;
|
package/src/icons/hop.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Hop: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M17.5 5.5C19 7 20.5 9 21 11c-2.5.5-5 .5-8.5-1' }],
|
|
9
|
+
['path', { d: 'M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5' }],
|
|
10
|
+
['path', { d: 'M16.5 11.5c1 2 1 3.5 1 6-2.5 0-4 0-6-1' }],
|
|
11
|
+
['path', { d: 'M20 11.5c1 1.5 2 3.5 2 4.5-1.5.5-3 0-4.5-.5' }],
|
|
12
|
+
['path', { d: 'M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5' }],
|
|
13
|
+
['path', { d: 'M20.5 16.5c1 2 1.5 3.5 1.5 5.5-2 0-3.5-.5-5.5-1.5' }],
|
|
14
|
+
[
|
|
15
|
+
'path',
|
|
16
|
+
{
|
|
17
|
+
d:
|
|
18
|
+
'M4.783 4.782C8.493 1.072 14.5 1 18 5c-1 1-4.5 2-6.5 1.5 1 1.5 1 4 .5 5.5-1.5.5-4 .5-5.5-.5C7 13.5 6 17 5 18c-4-3.5-3.927-9.508-.217-13.218Z',
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
['path', { d: 'M4.5 4.5 3 3c-.184-.185-.184-.816 0-1' }],
|
|
22
|
+
],
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
export default Hop;
|
package/src/icons/index.ts
CHANGED
|
@@ -86,6 +86,8 @@ export { default as BatteryLow } from './battery-low';
|
|
|
86
86
|
export { default as BatteryMedium } from './battery-medium';
|
|
87
87
|
export { default as Battery } from './battery';
|
|
88
88
|
export { default as Beaker } from './beaker';
|
|
89
|
+
export { default as BeanOff } from './bean-off';
|
|
90
|
+
export { default as Bean } from './bean';
|
|
89
91
|
export { default as BedDouble } from './bed-double';
|
|
90
92
|
export { default as BedSingle } from './bed-single';
|
|
91
93
|
export { default as Bed } from './bed';
|
|
@@ -138,9 +140,13 @@ export { default as CalendarX } from './calendar-x';
|
|
|
138
140
|
export { default as Calendar } from './calendar';
|
|
139
141
|
export { default as CameraOff } from './camera-off';
|
|
140
142
|
export { default as Camera } from './camera';
|
|
143
|
+
export { default as CandyOff } from './candy-off';
|
|
144
|
+
export { default as Candy } from './candy';
|
|
141
145
|
export { default as Car } from './car';
|
|
142
146
|
export { default as Carrot } from './carrot';
|
|
143
147
|
export { default as Cast } from './cast';
|
|
148
|
+
export { default as Cat } from './cat';
|
|
149
|
+
export { default as CheckCheck } from './check-check';
|
|
144
150
|
export { default as CheckCircle2 } from './check-circle-2';
|
|
145
151
|
export { default as CheckCircle } from './check-circle';
|
|
146
152
|
export { default as CheckSquare } from './check-square';
|
|
@@ -258,6 +264,9 @@ export { default as Disc } from './disc';
|
|
|
258
264
|
export { default as DivideCircle } from './divide-circle';
|
|
259
265
|
export { default as DivideSquare } from './divide-square';
|
|
260
266
|
export { default as Divide } from './divide';
|
|
267
|
+
export { default as DnaOff } from './dna-off';
|
|
268
|
+
export { default as Dna } from './dna';
|
|
269
|
+
export { default as Dog } from './dog';
|
|
261
270
|
export { default as DollarSign } from './dollar-sign';
|
|
262
271
|
export { default as DownloadCloud } from './download-cloud';
|
|
263
272
|
export { default as Download } from './download';
|
|
@@ -265,12 +274,14 @@ export { default as Dribbble } from './dribbble';
|
|
|
265
274
|
export { default as Droplet } from './droplet';
|
|
266
275
|
export { default as Droplets } from './droplets';
|
|
267
276
|
export { default as Drumstick } from './drumstick';
|
|
277
|
+
export { default as Dumbbell } from './dumbbell';
|
|
268
278
|
export { default as EarOff } from './ear-off';
|
|
269
279
|
export { default as Ear } from './ear';
|
|
270
280
|
export { default as Edit2 } from './edit-2';
|
|
271
281
|
export { default as Edit3 } from './edit-3';
|
|
272
282
|
export { default as Edit } from './edit';
|
|
273
283
|
export { default as EggFried } from './egg-fried';
|
|
284
|
+
export { default as EggOff } from './egg-off';
|
|
274
285
|
export { default as Egg } from './egg';
|
|
275
286
|
export { default as EqualNot } from './equal-not';
|
|
276
287
|
export { default as Equal } from './equal';
|
|
@@ -352,6 +363,7 @@ export { default as Flag } from './flag';
|
|
|
352
363
|
export { default as Flame } from './flame';
|
|
353
364
|
export { default as FlashlightOff } from './flashlight-off';
|
|
354
365
|
export { default as Flashlight } from './flashlight';
|
|
366
|
+
export { default as FlaskConicalOff } from './flask-conical-off';
|
|
355
367
|
export { default as FlaskConical } from './flask-conical';
|
|
356
368
|
export { default as FlaskRound } from './flask-round';
|
|
357
369
|
export { default as FlipHorizontal2 } from './flip-horizontal-2';
|
|
@@ -445,6 +457,8 @@ export { default as Hexagon } from './hexagon';
|
|
|
445
457
|
export { default as Highlighter } from './highlighter';
|
|
446
458
|
export { default as History } from './history';
|
|
447
459
|
export { default as Home } from './home';
|
|
460
|
+
export { default as HopOff } from './hop-off';
|
|
461
|
+
export { default as Hop } from './hop';
|
|
448
462
|
export { default as Hourglass } from './hourglass';
|
|
449
463
|
export { default as IceCream } from './ice-cream';
|
|
450
464
|
export { default as ImageMinus } from './image-minus';
|
|
@@ -542,6 +556,8 @@ export { default as Mic } from './mic';
|
|
|
542
556
|
export { default as Microscope } from './microscope';
|
|
543
557
|
export { default as Microwave } from './microwave';
|
|
544
558
|
export { default as Milestone } from './milestone';
|
|
559
|
+
export { default as MilkOff } from './milk-off';
|
|
560
|
+
export { default as Milk } from './milk';
|
|
545
561
|
export { default as Minimize2 } from './minimize-2';
|
|
546
562
|
export { default as Minimize } from './minimize';
|
|
547
563
|
export { default as MinusCircle } from './minus-circle';
|
|
@@ -575,6 +591,8 @@ export { default as NavigationOff } from './navigation-off';
|
|
|
575
591
|
export { default as Navigation } from './navigation';
|
|
576
592
|
export { default as Network } from './network';
|
|
577
593
|
export { default as Newspaper } from './newspaper';
|
|
594
|
+
export { default as NutOff } from './nut-off';
|
|
595
|
+
export { default as Nut } from './nut';
|
|
578
596
|
export { default as Octagon } from './octagon';
|
|
579
597
|
export { default as Option } from './option';
|
|
580
598
|
export { default as Outdent } from './outdent';
|
|
@@ -721,6 +739,7 @@ export { default as Sofa } from './sofa';
|
|
|
721
739
|
export { default as SortAsc } from './sort-asc';
|
|
722
740
|
export { default as SortDesc } from './sort-desc';
|
|
723
741
|
export { default as Speaker } from './speaker';
|
|
742
|
+
export { default as Spline } from './spline';
|
|
724
743
|
export { default as Sprout } from './sprout';
|
|
725
744
|
export { default as Square } from './square';
|
|
726
745
|
export { default as StarHalf } from './star-half';
|
|
@@ -807,6 +826,7 @@ export { default as User } from './user';
|
|
|
807
826
|
export { default as Users } from './users';
|
|
808
827
|
export { default as UtensilsCrossed } from './utensils-crossed';
|
|
809
828
|
export { default as Utensils } from './utensils';
|
|
829
|
+
export { default as Vegan } from './vegan';
|
|
810
830
|
export { default as VenetianMask } from './venetian-mask';
|
|
811
831
|
export { default as Verified } from './verified';
|
|
812
832
|
export { default as VibrateOff } from './vibrate-off';
|
|
@@ -826,9 +846,12 @@ export { default as Watch } from './watch';
|
|
|
826
846
|
export { default as Waves } from './waves';
|
|
827
847
|
export { default as Webcam } from './webcam';
|
|
828
848
|
export { default as Webhook } from './webhook';
|
|
849
|
+
export { default as WheatOff } from './wheat-off';
|
|
850
|
+
export { default as Wheat } from './wheat';
|
|
829
851
|
export { default as WifiOff } from './wifi-off';
|
|
830
852
|
export { default as Wifi } from './wifi';
|
|
831
853
|
export { default as Wind } from './wind';
|
|
854
|
+
export { default as WineOff } from './wine-off';
|
|
832
855
|
export { default as Wine } from './wine';
|
|
833
856
|
export { default as WrapText } from './wrap-text';
|
|
834
857
|
export { default as Wrench } from './wrench';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const MilkOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M8 2h8' }],
|
|
9
|
+
[
|
|
10
|
+
'path',
|
|
11
|
+
{
|
|
12
|
+
d:
|
|
13
|
+
'M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3',
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
['path', { d: 'M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435' }],
|
|
17
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
18
|
+
],
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
export default MilkOff;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Milk: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M8 2h8' }],
|
|
9
|
+
[
|
|
10
|
+
'path',
|
|
11
|
+
{
|
|
12
|
+
d:
|
|
13
|
+
'M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2',
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
['path', { d: 'M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0' }],
|
|
17
|
+
],
|
|
18
|
+
];
|
|
19
|
+
|
|
20
|
+
export default Milk;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const NutOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M12 4V2' }],
|
|
9
|
+
[
|
|
10
|
+
'path',
|
|
11
|
+
{
|
|
12
|
+
d:
|
|
13
|
+
'M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939',
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
['path', { d: 'M19 10v3.343' }],
|
|
17
|
+
[
|
|
18
|
+
'path',
|
|
19
|
+
{
|
|
20
|
+
d:
|
|
21
|
+
'M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192',
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
25
|
+
],
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
export default NutOff;
|
package/src/icons/nut.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Nut: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M12 4V2' }],
|
|
9
|
+
[
|
|
10
|
+
'path',
|
|
11
|
+
{
|
|
12
|
+
d:
|
|
13
|
+
'M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4',
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
'path',
|
|
18
|
+
{
|
|
19
|
+
d:
|
|
20
|
+
'M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
],
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
export default Nut;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Spline: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{
|
|
11
|
+
d:
|
|
12
|
+
'M21 6V4c0-.6-.4-1-1-1h-2a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h2c.6 0 1-.4 1-1Z',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
[
|
|
16
|
+
'path',
|
|
17
|
+
{
|
|
18
|
+
d:
|
|
19
|
+
'M7 20v-2c0-.6-.4-1-1-1H4a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h2c.6 0 1-.4 1-1Z',
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
['path', { d: 'M5 17A12 12 0 0 1 17 5' }],
|
|
23
|
+
],
|
|
24
|
+
];
|
|
25
|
+
|
|
26
|
+
export default Spline;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Vegan: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
[
|
|
9
|
+
'path',
|
|
10
|
+
{ d: 'M2 2c4.056 3.007 9.232 9.337 10 20 .897-6.818 1.5-9.5 4-14' },
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
'path',
|
|
14
|
+
{
|
|
15
|
+
d:
|
|
16
|
+
'M20.375 6.533A9.953 9.953 0 0 1 22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2c2.003 0 3.869.589 5.433 1.603',
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
[
|
|
20
|
+
'path',
|
|
21
|
+
{
|
|
22
|
+
d:
|
|
23
|
+
'M17.104 4c-1.002 1.274-1.146 2.586-1.1 4 1.9-.1 3.003-.201 4.3-1.4 1.406-1.3 1.6-2.3 1.7-4.6-2.7.1-3.623.375-4.9 2Z',
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
],
|
|
27
|
+
];
|
|
28
|
+
|
|
29
|
+
export default Vegan;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const WheatOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'm2 22 10-10' }],
|
|
9
|
+
['path', { d: 'm16 8-1.17 1.17' }],
|
|
10
|
+
[
|
|
11
|
+
'path',
|
|
12
|
+
{
|
|
13
|
+
d:
|
|
14
|
+
'M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z',
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
[
|
|
18
|
+
'path',
|
|
19
|
+
{
|
|
20
|
+
d:
|
|
21
|
+
'm8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97',
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
[
|
|
25
|
+
'path',
|
|
26
|
+
{
|
|
27
|
+
d:
|
|
28
|
+
'M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62',
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
['path', { d: 'M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z' }],
|
|
32
|
+
[
|
|
33
|
+
'path',
|
|
34
|
+
{
|
|
35
|
+
d:
|
|
36
|
+
'M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z',
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
[
|
|
40
|
+
'path',
|
|
41
|
+
{
|
|
42
|
+
d:
|
|
43
|
+
'm16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98',
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
[
|
|
47
|
+
'path',
|
|
48
|
+
{
|
|
49
|
+
d:
|
|
50
|
+
'M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
54
|
+
],
|
|
55
|
+
];
|
|
56
|
+
|
|
57
|
+
export default WheatOff;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const Wheat: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M2 22 16 8' }],
|
|
9
|
+
[
|
|
10
|
+
'path',
|
|
11
|
+
{
|
|
12
|
+
d:
|
|
13
|
+
'M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z',
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
'path',
|
|
18
|
+
{
|
|
19
|
+
d:
|
|
20
|
+
'M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z',
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
[
|
|
24
|
+
'path',
|
|
25
|
+
{
|
|
26
|
+
d:
|
|
27
|
+
'M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z',
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
['path', { d: 'M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z' }],
|
|
31
|
+
[
|
|
32
|
+
'path',
|
|
33
|
+
{
|
|
34
|
+
d:
|
|
35
|
+
'M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z',
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
[
|
|
39
|
+
'path',
|
|
40
|
+
{
|
|
41
|
+
d:
|
|
42
|
+
'M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z',
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
[
|
|
46
|
+
'path',
|
|
47
|
+
{
|
|
48
|
+
d:
|
|
49
|
+
'M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z',
|
|
50
|
+
},
|
|
51
|
+
],
|
|
52
|
+
],
|
|
53
|
+
];
|
|
54
|
+
|
|
55
|
+
export default Wheat;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IconData } from './types';
|
|
2
|
+
import defaultAttributes from './constants/default-attributes';
|
|
3
|
+
|
|
4
|
+
const WineOff: IconData = [
|
|
5
|
+
'svg',
|
|
6
|
+
defaultAttributes,
|
|
7
|
+
[
|
|
8
|
+
['path', { d: 'M8 22h8' }],
|
|
9
|
+
['path', { d: 'M7 10h3m7 0h-1.343' }],
|
|
10
|
+
['path', { d: 'M12 15v7' }],
|
|
11
|
+
[
|
|
12
|
+
'path',
|
|
13
|
+
{
|
|
14
|
+
d:
|
|
15
|
+
'M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198',
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
19
|
+
],
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
export default WineOff;
|