a-icons 1.0.59 → 1.0.62
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/es/FireFilled.d.ts +6 -0
- package/es/FireFilled.js +38 -0
- package/es/LockEllipsisFilled.d.ts +6 -0
- package/es/LockEllipsisFilled.js +38 -0
- package/es/LockOutlined.d.ts +6 -0
- package/es/LockOutlined.js +43 -0
- package/es/RoundedRectangleClockFilled.d.ts +6 -0
- package/es/RoundedRectangleClockFilled.js +40 -0
- package/es/VectorOutlined.d.ts +6 -0
- package/es/VectorOutlined.js +37 -0
- package/es/index.d.ts +5 -0
- package/es/index.js +5 -0
- package/lib/FireFilled.d.ts +6 -0
- package/lib/FireFilled.js +85 -0
- package/lib/LockEllipsisFilled.d.ts +6 -0
- package/lib/LockEllipsisFilled.js +85 -0
- package/lib/LockOutlined.d.ts +6 -0
- package/lib/LockOutlined.js +90 -0
- package/lib/RoundedRectangleClockFilled.d.ts +6 -0
- package/lib/RoundedRectangleClockFilled.js +87 -0
- package/lib/VectorOutlined.d.ts +6 -0
- package/lib/VectorOutlined.js +84 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +45 -0
- package/package.json +2 -2
- package/src/FireFilled.tsx +18 -0
- package/src/LockEllipsisFilled.tsx +18 -0
- package/src/LockOutlined.tsx +24 -0
- package/src/RoundedRectangleClockFilled.tsx +20 -0
- package/src/VectorOutlined.tsx +18 -0
- package/src/index.tsx +5 -0
- package/svgs/filled/fire-filled.svg +3 -0
- package/svgs/filled/lock-ellipsis-filled.svg +3 -0
- package/svgs/filled/rounded-rectangle-clock-filled.svg +3 -0
- package/svgs/outlined/lock-outlined.svg +8 -0
- package/svgs/outlined/vector-outlined.svg +5 -0
- package/tmpAllSvgs/fire-filled.svg +3 -0
- package/tmpAllSvgs/lock-ellipsis-filled.svg +3 -0
- package/tmpAllSvgs/lock-outlined.svg +8 -0
- package/tmpAllSvgs/rounded-rectangle-clock-filled.svg +3 -0
- package/tmpAllSvgs/vector-outlined.svg +5 -0
package/es/FireFilled.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function FireFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M12.057 0l-1.566 3.186a22.35 22.35 0 01-4.434 6.12l-.205.194A6.063 6.063 0 004 13.79v.204a7.804 7.804 0 004.8 7.27l.297.126a7.734 7.734 0 006.023 0h.068A7.963 7.963 0 0020 13.983V9.045a9.84 9.84 0 01-5.016 5.029h-.069c-.069 0-.869.33-1.211 0a.862.862 0 01-.069-1.138l.08-.057h.057a6.171 6.171 0 001.394-8.385C13.68 2.241 12.057 0 12.057 0z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}));
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
33
|
+
component: IconNode
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
FireFilled.displayName = 'FireFilled';
|
|
38
|
+
export default FireFilled;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function LockEllipsisFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M18 8.5h2a1 1 0 011 1v12a1 1 0 01-1 1H4a1 1 0 01-1-1v-12a1 1 0 011-1h2v-1a6 6 0 1112 0v1zm-2 0v-1a4 4 0 10-8 0v1h8zm-5 6v2h2v-2h-2zm-4 0v2h2v-2H7zm8 0v2h2v-2h-2z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}));
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
33
|
+
component: IconNode
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
LockEllipsisFilled.displayName = 'LockEllipsisFilled';
|
|
38
|
+
export default LockEllipsisFilled;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function LockOutlined(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M13.463 13.902a1.66 1.66 0 10-3.32 0 1.62 1.62 0 00.39 1.06 1 1 0 01.23 1l-.21.62a.93.93 0 00.88 1.19h.74a.93.93 0 00.88-1.23l-.25-.62a1 1 0 01.23-1c.258-.279.41-.64.43-1.02z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "M16.553 8.122v-3.12a3 3 0 00-3.11-3h-3.28a3 3 0 00-3.11 3v3.12a4.57 4.57 0 00-3 5l.95 5.77a4.85 4.85 0 004.86 3.88h3.88a4.85 4.85 0 004.88-3.91l.95-5.77a4.57 4.57 0 00-3.02-4.97zm-8-3.12a1.55 1.55 0 011.61-1.48h3.28a1.55 1.55 0 011.61 1.48v2.77H8.553v-2.77zm8.25 13.56l1-5.79a2.55 2.55 0 00-.65-2.06 3.22 3.22 0 00-2.46-1.09h-5.78a3.22 3.22 0 00-2.46 1.07 2.55 2.55 0 00-.6 2.08l.95 5.79a3 3 0 003.06 2.36h3.88a3 3 0 003.06-2.36z",
|
|
33
|
+
fill: "currentColor"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
38
|
+
component: IconNode
|
|
39
|
+
}));
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
LockOutlined.displayName = 'LockOutlined';
|
|
43
|
+
export default LockOutlined;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function RoundedRectangleClockFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
clipRule: "evenodd",
|
|
29
|
+
d: "M10 2h4.24a8 8 0 018 8v4.24a8 8 0 01-8 8H10a8 8 0 01-8-8V10a8 8 0 018-8zm2.12 16.12a1 1 0 001-1v-5a1 1 0 00-.29-.71l-4-4a1.004 1.004 0 00-1.42 1.42l3.71 3.7v4.59a1 1 0 001 1z",
|
|
30
|
+
fill: "currentColor"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
35
|
+
component: IconNode
|
|
36
|
+
}));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
RoundedRectangleClockFilled.displayName = 'RoundedRectangleClockFilled';
|
|
40
|
+
export default RoundedRectangleClockFilled;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function VectorOutlined(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 16 19",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M2.167 14h11.666V8.192c0-3.235-2.611-5.859-5.833-5.859s-5.833 2.624-5.833 5.86V14zM8 .667c4.142 0 7.5 3.369 7.5 7.525v7.475H.5V8.192C.5 4.036 3.858.667 8 .667zM5.917 16.5h4.166a2.083 2.083 0 11-4.166 0z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
32
|
+
component: IconNode
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
VectorOutlined.displayName = 'VectorOutlined';
|
|
37
|
+
export default VectorOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export { default as FileFilled } from './FileFilled';
|
|
|
68
68
|
export { default as FileListFilled } from './FileListFilled';
|
|
69
69
|
export { default as FileOutlined } from './FileOutlined';
|
|
70
70
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
71
|
+
export { default as FireFilled } from './FireFilled';
|
|
71
72
|
export { default as FolderAddOutlined } from './FolderAddOutlined';
|
|
72
73
|
export { default as FormOutlined } from './FormOutlined';
|
|
73
74
|
export { default as GarbageCanOutlined } from './GarbageCanOutlined';
|
|
@@ -87,7 +88,9 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
|
|
|
87
88
|
export { default as ListCaptionOutlined } from './ListCaptionOutlined';
|
|
88
89
|
export { default as ListFilled } from './ListFilled';
|
|
89
90
|
export { default as ListOutlined } from './ListOutlined';
|
|
91
|
+
export { default as LockEllipsisFilled } from './LockEllipsisFilled';
|
|
90
92
|
export { default as LockFilled } from './LockFilled';
|
|
93
|
+
export { default as LockOutlined } from './LockOutlined';
|
|
91
94
|
export { default as LoopFilled } from './LoopFilled';
|
|
92
95
|
export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
93
96
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
@@ -121,6 +124,7 @@ export { default as QrCodeFilled } from './QrCodeFilled';
|
|
|
121
124
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
122
125
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
123
126
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
127
|
+
export { default as RoundedRectangleClockFilled } from './RoundedRectangleClockFilled';
|
|
124
128
|
export { default as SearchDocumentFilled } from './SearchDocumentFilled';
|
|
125
129
|
export { default as SearchDocumentOutlined } from './SearchDocumentOutlined';
|
|
126
130
|
export { default as SearchFilled } from './SearchFilled';
|
|
@@ -148,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
148
152
|
export { default as UpFilled } from './UpFilled';
|
|
149
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
150
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
151
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
152
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/es/index.js
CHANGED
|
@@ -68,6 +68,7 @@ export { default as FileFilled } from './FileFilled';
|
|
|
68
68
|
export { default as FileListFilled } from './FileListFilled';
|
|
69
69
|
export { default as FileOutlined } from './FileOutlined';
|
|
70
70
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
71
|
+
export { default as FireFilled } from './FireFilled';
|
|
71
72
|
export { default as FolderAddOutlined } from './FolderAddOutlined';
|
|
72
73
|
export { default as FormOutlined } from './FormOutlined';
|
|
73
74
|
export { default as GarbageCanOutlined } from './GarbageCanOutlined';
|
|
@@ -87,7 +88,9 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
|
|
|
87
88
|
export { default as ListCaptionOutlined } from './ListCaptionOutlined';
|
|
88
89
|
export { default as ListFilled } from './ListFilled';
|
|
89
90
|
export { default as ListOutlined } from './ListOutlined';
|
|
91
|
+
export { default as LockEllipsisFilled } from './LockEllipsisFilled';
|
|
90
92
|
export { default as LockFilled } from './LockFilled';
|
|
93
|
+
export { default as LockOutlined } from './LockOutlined';
|
|
91
94
|
export { default as LoopFilled } from './LoopFilled';
|
|
92
95
|
export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
93
96
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
@@ -121,6 +124,7 @@ export { default as QrCodeFilled } from './QrCodeFilled';
|
|
|
121
124
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
122
125
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
123
126
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
127
|
+
export { default as RoundedRectangleClockFilled } from './RoundedRectangleClockFilled';
|
|
124
128
|
export { default as SearchDocumentFilled } from './SearchDocumentFilled';
|
|
125
129
|
export { default as SearchDocumentOutlined } from './SearchDocumentOutlined';
|
|
126
130
|
export { default as SearchFilled } from './SearchFilled';
|
|
@@ -148,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
148
152
|
export { default as UpFilled } from './UpFilled';
|
|
149
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
150
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
151
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
152
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function FireFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
d: "M12.057 0l-1.566 3.186a22.35 22.35 0 01-4.434 6.12l-.205.194A6.063 6.063 0 004 13.79v.204a7.804 7.804 0 004.8 7.27l.297.126a7.734 7.734 0 006.023 0h.068A7.963 7.963 0 0020 13.983V9.045a9.84 9.84 0 01-5.016 5.029h-.069c-.069 0-.869.33-1.211 0a.862.862 0 01-.069-1.138l.08-.057h.057a6.171 6.171 0 001.394-8.385C13.68 2.241 12.057 0 12.057 0z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}));
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
80
|
+
component: IconNode
|
|
81
|
+
}));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
FireFilled.displayName = 'FireFilled';
|
|
85
|
+
exports["default"] = FireFilled;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function LockEllipsisFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
d: "M18 8.5h2a1 1 0 011 1v12a1 1 0 01-1 1H4a1 1 0 01-1-1v-12a1 1 0 011-1h2v-1a6 6 0 1112 0v1zm-2 0v-1a4 4 0 10-8 0v1h8zm-5 6v2h2v-2h-2zm-4 0v2h2v-2H7zm8 0v2h2v-2h-2z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}));
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
80
|
+
component: IconNode
|
|
81
|
+
}));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
LockEllipsisFilled.displayName = 'LockEllipsisFilled';
|
|
85
|
+
exports["default"] = LockEllipsisFilled;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function LockOutlined(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
d: "M13.463 13.902a1.66 1.66 0 10-3.32 0 1.62 1.62 0 00.39 1.06 1 1 0 01.23 1l-.21.62a.93.93 0 00.88 1.19h.74a.93.93 0 00.88-1.23l-.25-.62a1 1 0 01.23-1c.258-.279.41-.64.43-1.02z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}), React.createElement("path", {
|
|
77
|
+
fillRule: "evenodd",
|
|
78
|
+
clipRule: "evenodd",
|
|
79
|
+
d: "M16.553 8.122v-3.12a3 3 0 00-3.11-3h-3.28a3 3 0 00-3.11 3v3.12a4.57 4.57 0 00-3 5l.95 5.77a4.85 4.85 0 004.86 3.88h3.88a4.85 4.85 0 004.88-3.91l.95-5.77a4.57 4.57 0 00-3.02-4.97zm-8-3.12a1.55 1.55 0 011.61-1.48h3.28a1.55 1.55 0 011.61 1.48v2.77H8.553v-2.77zm8.25 13.56l1-5.79a2.55 2.55 0 00-.65-2.06 3.22 3.22 0 00-2.46-1.09h-5.78a3.22 3.22 0 00-2.46 1.07 2.55 2.55 0 00-.6 2.08l.95 5.79a3 3 0 003.06 2.36h3.88a3 3 0 003.06-2.36z",
|
|
80
|
+
fill: "currentColor"
|
|
81
|
+
}));
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
85
|
+
component: IconNode
|
|
86
|
+
}));
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
LockOutlined.displayName = 'LockOutlined';
|
|
90
|
+
exports["default"] = LockOutlined;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function RoundedRectangleClockFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
fillRule: "evenodd",
|
|
75
|
+
clipRule: "evenodd",
|
|
76
|
+
d: "M10 2h4.24a8 8 0 018 8v4.24a8 8 0 01-8 8H10a8 8 0 01-8-8V10a8 8 0 018-8zm2.12 16.12a1 1 0 001-1v-5a1 1 0 00-.29-.71l-4-4a1.004 1.004 0 00-1.42 1.42l3.71 3.7v4.59a1 1 0 001 1z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
}));
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
82
|
+
component: IconNode
|
|
83
|
+
}));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
RoundedRectangleClockFilled.displayName = 'RoundedRectangleClockFilled';
|
|
87
|
+
exports["default"] = RoundedRectangleClockFilled;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function VectorOutlined(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 16 19",
|
|
71
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
72
|
+
}, props), React.createElement("path", {
|
|
73
|
+
d: "M2.167 14h11.666V8.192c0-3.235-2.611-5.859-5.833-5.859s-5.833 2.624-5.833 5.86V14zM8 .667c4.142 0 7.5 3.369 7.5 7.525v7.475H.5V8.192C.5 4.036 3.858.667 8 .667zM5.917 16.5h4.166a2.083 2.083 0 11-4.166 0z",
|
|
74
|
+
fill: "currentColor"
|
|
75
|
+
}));
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
VectorOutlined.displayName = 'VectorOutlined';
|
|
84
|
+
exports["default"] = VectorOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export { default as FileFilled } from './FileFilled';
|
|
|
68
68
|
export { default as FileListFilled } from './FileListFilled';
|
|
69
69
|
export { default as FileOutlined } from './FileOutlined';
|
|
70
70
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
71
|
+
export { default as FireFilled } from './FireFilled';
|
|
71
72
|
export { default as FolderAddOutlined } from './FolderAddOutlined';
|
|
72
73
|
export { default as FormOutlined } from './FormOutlined';
|
|
73
74
|
export { default as GarbageCanOutlined } from './GarbageCanOutlined';
|
|
@@ -87,7 +88,9 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
|
|
|
87
88
|
export { default as ListCaptionOutlined } from './ListCaptionOutlined';
|
|
88
89
|
export { default as ListFilled } from './ListFilled';
|
|
89
90
|
export { default as ListOutlined } from './ListOutlined';
|
|
91
|
+
export { default as LockEllipsisFilled } from './LockEllipsisFilled';
|
|
90
92
|
export { default as LockFilled } from './LockFilled';
|
|
93
|
+
export { default as LockOutlined } from './LockOutlined';
|
|
91
94
|
export { default as LoopFilled } from './LoopFilled';
|
|
92
95
|
export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
93
96
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
@@ -121,6 +124,7 @@ export { default as QrCodeFilled } from './QrCodeFilled';
|
|
|
121
124
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
122
125
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
123
126
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
127
|
+
export { default as RoundedRectangleClockFilled } from './RoundedRectangleClockFilled';
|
|
124
128
|
export { default as SearchDocumentFilled } from './SearchDocumentFilled';
|
|
125
129
|
export { default as SearchDocumentOutlined } from './SearchDocumentOutlined';
|
|
126
130
|
export { default as SearchFilled } from './SearchFilled';
|
|
@@ -148,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
148
152
|
export { default as UpFilled } from './UpFilled';
|
|
149
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
150
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
151
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
152
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/lib/index.js
CHANGED
|
@@ -634,6 +634,15 @@ Object.defineProperty(exports, "FileSearchFilled", {
|
|
|
634
634
|
}
|
|
635
635
|
});
|
|
636
636
|
|
|
637
|
+
var FireFilled_1 = require("./FireFilled");
|
|
638
|
+
|
|
639
|
+
Object.defineProperty(exports, "FireFilled", {
|
|
640
|
+
enumerable: true,
|
|
641
|
+
get: function get() {
|
|
642
|
+
return FireFilled_1["default"];
|
|
643
|
+
}
|
|
644
|
+
});
|
|
645
|
+
|
|
637
646
|
var FolderAddOutlined_1 = require("./FolderAddOutlined");
|
|
638
647
|
|
|
639
648
|
Object.defineProperty(exports, "FolderAddOutlined", {
|
|
@@ -805,6 +814,15 @@ Object.defineProperty(exports, "ListOutlined", {
|
|
|
805
814
|
}
|
|
806
815
|
});
|
|
807
816
|
|
|
817
|
+
var LockEllipsisFilled_1 = require("./LockEllipsisFilled");
|
|
818
|
+
|
|
819
|
+
Object.defineProperty(exports, "LockEllipsisFilled", {
|
|
820
|
+
enumerable: true,
|
|
821
|
+
get: function get() {
|
|
822
|
+
return LockEllipsisFilled_1["default"];
|
|
823
|
+
}
|
|
824
|
+
});
|
|
825
|
+
|
|
808
826
|
var LockFilled_1 = require("./LockFilled");
|
|
809
827
|
|
|
810
828
|
Object.defineProperty(exports, "LockFilled", {
|
|
@@ -814,6 +832,15 @@ Object.defineProperty(exports, "LockFilled", {
|
|
|
814
832
|
}
|
|
815
833
|
});
|
|
816
834
|
|
|
835
|
+
var LockOutlined_1 = require("./LockOutlined");
|
|
836
|
+
|
|
837
|
+
Object.defineProperty(exports, "LockOutlined", {
|
|
838
|
+
enumerable: true,
|
|
839
|
+
get: function get() {
|
|
840
|
+
return LockOutlined_1["default"];
|
|
841
|
+
}
|
|
842
|
+
});
|
|
843
|
+
|
|
817
844
|
var LoopFilled_1 = require("./LoopFilled");
|
|
818
845
|
|
|
819
846
|
Object.defineProperty(exports, "LoopFilled", {
|
|
@@ -1111,6 +1138,15 @@ Object.defineProperty(exports, "RetryRefreshFilled", {
|
|
|
1111
1138
|
}
|
|
1112
1139
|
});
|
|
1113
1140
|
|
|
1141
|
+
var RoundedRectangleClockFilled_1 = require("./RoundedRectangleClockFilled");
|
|
1142
|
+
|
|
1143
|
+
Object.defineProperty(exports, "RoundedRectangleClockFilled", {
|
|
1144
|
+
enumerable: true,
|
|
1145
|
+
get: function get() {
|
|
1146
|
+
return RoundedRectangleClockFilled_1["default"];
|
|
1147
|
+
}
|
|
1148
|
+
});
|
|
1149
|
+
|
|
1114
1150
|
var SearchDocumentFilled_1 = require("./SearchDocumentFilled");
|
|
1115
1151
|
|
|
1116
1152
|
Object.defineProperty(exports, "SearchDocumentFilled", {
|
|
@@ -1354,6 +1390,15 @@ Object.defineProperty(exports, "UpgradeFilled", {
|
|
|
1354
1390
|
}
|
|
1355
1391
|
});
|
|
1356
1392
|
|
|
1393
|
+
var VectorOutlined_1 = require("./VectorOutlined");
|
|
1394
|
+
|
|
1395
|
+
Object.defineProperty(exports, "VectorOutlined", {
|
|
1396
|
+
enumerable: true,
|
|
1397
|
+
get: function get() {
|
|
1398
|
+
return VectorOutlined_1["default"];
|
|
1399
|
+
}
|
|
1400
|
+
});
|
|
1401
|
+
|
|
1357
1402
|
var WalletFilled_1 = require("./WalletFilled");
|
|
1358
1403
|
|
|
1359
1404
|
Object.defineProperty(exports, "WalletFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.62",
|
|
4
4
|
"repository": "git@github.com:SPOTEC-LTD/assui.git",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"assui": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "99105773c2c64e67cfdf29a7c41b6eefe3cd7cf1"
|
|
26
26
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function FireFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M12.057 0l-1.566 3.186a22.35 22.35 0 01-4.434 6.12l-.205.194A6.063 6.063 0 004 13.79v.204a7.804 7.804 0 004.8 7.27l.297.126a7.734 7.734 0 006.023 0h.068A7.963 7.963 0 0020 13.983V9.045a9.84 9.84 0 01-5.016 5.029h-.069c-.069 0-.869.33-1.211 0a.862.862 0 01-.069-1.138l.08-.057h.057a6.171 6.171 0 001.394-8.385C13.68 2.241 12.057 0 12.057 0z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
FireFilled.displayName = 'FireFilled';
|
|
18
|
+
export default FireFilled;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function LockEllipsisFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M18 8.5h2a1 1 0 011 1v12a1 1 0 01-1 1H4a1 1 0 01-1-1v-12a1 1 0 011-1h2v-1a6 6 0 1112 0v1zm-2 0v-1a4 4 0 10-8 0v1h8zm-5 6v2h2v-2h-2zm-4 0v2h2v-2H7zm8 0v2h2v-2h-2z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
LockEllipsisFilled.displayName = 'LockEllipsisFilled';
|
|
18
|
+
export default LockEllipsisFilled;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function LockOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M13.463 13.902a1.66 1.66 0 10-3.32 0 1.62 1.62 0 00.39 1.06 1 1 0 01.23 1l-.21.62a.93.93 0 00.88 1.19h.74a.93.93 0 00.88-1.23l-.25-.62a1 1 0 01.23-1c.258-.279.41-.64.43-1.02z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
fillRule="evenodd"
|
|
13
|
+
clipRule="evenodd"
|
|
14
|
+
d="M16.553 8.122v-3.12a3 3 0 00-3.11-3h-3.28a3 3 0 00-3.11 3v3.12a4.57 4.57 0 00-3 5l.95 5.77a4.85 4.85 0 004.86 3.88h3.88a4.85 4.85 0 004.88-3.91l.95-5.77a4.57 4.57 0 00-3.02-4.97zm-8-3.12a1.55 1.55 0 011.61-1.48h3.28a1.55 1.55 0 011.61 1.48v2.77H8.553v-2.77zm8.25 13.56l1-5.79a2.55 2.55 0 00-.65-2.06 3.22 3.22 0 00-2.46-1.09h-5.78a3.22 3.22 0 00-2.46 1.07 2.55 2.55 0 00-.6 2.08l.95 5.79a3 3 0 003.06 2.36h3.88a3 3 0 003.06-2.36z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
LockOutlined.displayName = 'LockOutlined';
|
|
24
|
+
export default LockOutlined;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function RoundedRectangleClockFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M10 2h4.24a8 8 0 018 8v4.24a8 8 0 01-8 8H10a8 8 0 01-8-8V10a8 8 0 018-8zm2.12 16.12a1 1 0 001-1v-5a1 1 0 00-.29-.71l-4-4a1.004 1.004 0 00-1.42 1.42l3.71 3.7v4.59a1 1 0 001 1z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
RoundedRectangleClockFilled.displayName = 'RoundedRectangleClockFilled';
|
|
20
|
+
export default RoundedRectangleClockFilled;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function VectorOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 16 19" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M2.167 14h11.666V8.192c0-3.235-2.611-5.859-5.833-5.859s-5.833 2.624-5.833 5.86V14zM8 .667c4.142 0 7.5 3.369 7.5 7.525v7.475H.5V8.192C.5 4.036 3.858.667 8 .667zM5.917 16.5h4.166a2.083 2.083 0 11-4.166 0z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
VectorOutlined.displayName = 'VectorOutlined';
|
|
18
|
+
export default VectorOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -68,6 +68,7 @@ export { default as FileFilled } from './FileFilled';
|
|
|
68
68
|
export { default as FileListFilled } from './FileListFilled';
|
|
69
69
|
export { default as FileOutlined } from './FileOutlined';
|
|
70
70
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
71
|
+
export { default as FireFilled } from './FireFilled';
|
|
71
72
|
export { default as FolderAddOutlined } from './FolderAddOutlined';
|
|
72
73
|
export { default as FormOutlined } from './FormOutlined';
|
|
73
74
|
export { default as GarbageCanOutlined } from './GarbageCanOutlined';
|
|
@@ -87,7 +88,9 @@ export { default as ListCaptionFilled } from './ListCaptionFilled';
|
|
|
87
88
|
export { default as ListCaptionOutlined } from './ListCaptionOutlined';
|
|
88
89
|
export { default as ListFilled } from './ListFilled';
|
|
89
90
|
export { default as ListOutlined } from './ListOutlined';
|
|
91
|
+
export { default as LockEllipsisFilled } from './LockEllipsisFilled';
|
|
90
92
|
export { default as LockFilled } from './LockFilled';
|
|
93
|
+
export { default as LockOutlined } from './LockOutlined';
|
|
91
94
|
export { default as LoopFilled } from './LoopFilled';
|
|
92
95
|
export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
93
96
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
@@ -121,6 +124,7 @@ export { default as QrCodeFilled } from './QrCodeFilled';
|
|
|
121
124
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
122
125
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
123
126
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
127
|
+
export { default as RoundedRectangleClockFilled } from './RoundedRectangleClockFilled';
|
|
124
128
|
export { default as SearchDocumentFilled } from './SearchDocumentFilled';
|
|
125
129
|
export { default as SearchDocumentOutlined } from './SearchDocumentOutlined';
|
|
126
130
|
export { default as SearchFilled } from './SearchFilled';
|
|
@@ -148,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
148
152
|
export { default as UpFilled } from './UpFilled';
|
|
149
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
150
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
151
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
152
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.057 0L10.4914 3.1857C9.37265 5.46159 7.87327 7.53147 6.05738 9.30679L5.85168 9.50021C4.68543 10.6274 4.01907 12.1713 4.00037 13.7895V13.9943C3.96948 17.1631 5.86608 20.0359 8.80006 21.2645L9.09719 21.3897C11.0215 22.2034 13.1954 22.2034 15.1197 21.3897H15.1882C18.1441 20.1111 20.0407 17.1913 19.9993 13.9829V9.04511C19.0143 11.2848 17.2254 13.078 14.9825 14.074C14.9825 14.074 14.9825 14.074 14.914 14.074C14.8454 14.074 14.0454 14.4039 13.7026 14.074C13.3964 13.7655 13.3671 13.2789 13.634 12.9362L13.714 12.8793H13.7712C16.3947 10.8939 17.0064 7.21529 15.1654 4.49411C13.6797 2.24137 12.057 0 12.057 0Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18 8.5H20C20.2652 8.5 20.5196 8.60536 20.7071 8.79289C20.8946 8.98043 21 9.23478 21 9.5V21.5C21 21.7652 20.8946 22.0196 20.7071 22.2071C20.5196 22.3946 20.2652 22.5 20 22.5H4C3.73478 22.5 3.48043 22.3946 3.29289 22.2071C3.10536 22.0196 3 21.7652 3 21.5V9.5C3 9.23478 3.10536 8.98043 3.29289 8.79289C3.48043 8.60536 3.73478 8.5 4 8.5H6V7.5C6 5.9087 6.63214 4.38258 7.75736 3.25736C8.88258 2.13214 10.4087 1.5 12 1.5C13.5913 1.5 15.1174 2.13214 16.2426 3.25736C17.3679 4.38258 18 5.9087 18 7.5V8.5ZM16 8.5V7.5C16 6.43913 15.5786 5.42172 14.8284 4.67157C14.0783 3.92143 13.0609 3.5 12 3.5C10.9391 3.5 9.92172 3.92143 9.17157 4.67157C8.42143 5.42172 8 6.43913 8 7.5V8.5H16ZM11 14.5V16.5H13V14.5H11ZM7 14.5V16.5H9V14.5H7ZM15 14.5V16.5H17V14.5H15Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 2H14.24C16.3617 2 18.3966 2.84285 19.8969 4.34315C21.3971 5.84344 22.24 7.87827 22.24 10V14.24C22.24 18.6583 18.6583 22.24 14.24 22.24H10C5.58172 22.24 2 18.6583 2 14.24V10C2 5.58172 5.58172 2 10 2ZM12.12 18.12C12.6723 18.12 13.12 17.6723 13.12 17.12V12.12C13.1215 11.8542 13.0172 11.5987 12.83 11.41L8.83 7.41C8.57634 7.15634 8.20663 7.05728 7.86012 7.15012C7.51362 7.24297 7.24297 7.51362 7.15012 7.86012C7.05728 8.20663 7.15634 8.57634 7.41 8.83L11.12 12.53V17.12C11.12 17.6723 11.5677 18.12 12.12 18.12Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M13.4626 13.9022C13.4626 12.9854 12.7194 12.2422 11.8026 12.2422C10.8858 12.2422 10.1426 12.9854 10.1426 13.9022C10.1412 14.2909 10.2796 14.6671 10.5326 14.9622C10.7875 15.2278 10.8758 15.6119 10.7626 15.9622L10.5526 16.5822C10.4714 16.861 10.5251 17.1617 10.6977 17.3952C10.8704 17.6287 11.1422 17.7682 11.4326 17.7722H12.1726C12.4726 17.7721 12.7541 17.6273 12.9287 17.3833C13.1032 17.1393 13.1494 16.8261 13.0526 16.5422L12.8026 15.9222C12.6894 15.5719 12.7777 15.1878 13.0326 14.9222C13.2912 14.6432 13.4435 14.2821 13.4626 13.9022V13.9022Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M16.5526 8.12202V5.00202C16.5532 4.18694 16.2221 3.40672 15.6354 2.84084C15.0488 2.27496 14.2572 1.97213 13.4426 2.00202H10.1626C9.34812 1.97213 8.55648 2.27496 7.96985 2.84084C7.38322 3.40672 7.0521 4.18694 7.05265 5.00202V8.12202C4.98116 8.85136 3.72137 10.951 4.05265 13.122L5.00265 18.892C5.47121 21.1904 7.51752 22.8241 9.86265 22.772H13.7426C16.1045 22.8313 18.1655 21.18 18.6226 18.862L19.5726 13.092C19.886 10.9259 18.6195 8.84179 16.5526 8.12202ZM8.55264 5.00202C8.5905 4.14965 9.31011 3.48815 10.1626 3.52202H13.4426C14.2952 3.48815 15.0148 4.14965 15.0526 5.00202V7.77202H14.6926H8.91264H8.55264V5.00202ZM16.8026 18.562L17.8026 12.772C17.9019 12.023 17.6638 11.2685 17.1526 10.712C16.531 10.0071 15.6324 9.60892 14.6926 9.62202H8.91265C7.97604 9.60387 7.07796 9.99449 6.45265 10.692C5.95367 11.2618 5.73381 12.024 5.85265 12.772L6.80265 18.562C7.1127 19.9884 8.40434 20.9845 9.86265 20.922H13.7426C15.2009 20.9845 16.4926 19.9884 16.8026 18.562Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 19" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M2.16667 14H13.8333V8.19246C13.8333 4.95663 11.2217 2.33329 8 2.33329C4.77833 2.33329 2.16667 4.95663 2.16667 8.19246V14ZM8 0.666626C12.1417 0.666626 15.5 4.03579 15.5 8.19246V15.6666H0.5V8.19246C0.5 4.03579 3.85833 0.666626 8 0.666626ZM5.91667 16.5H10.0833C10.0833 17.0525 9.86384 17.5824 9.47314 17.9731C9.08244 18.3638 8.55253 18.5833 8 18.5833C7.44747 18.5833 6.91756 18.3638 6.52686 17.9731C6.13616 17.5824 5.91667 17.0525 5.91667 16.5Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.057 0L10.4914 3.1857C9.37265 5.46159 7.87327 7.53147 6.05738 9.30679L5.85168 9.50021C4.68543 10.6274 4.01907 12.1713 4.00037 13.7895V13.9943C3.96948 17.1631 5.86608 20.0359 8.80006 21.2645L9.09719 21.3897C11.0215 22.2034 13.1954 22.2034 15.1197 21.3897H15.1882C18.1441 20.1111 20.0407 17.1913 19.9993 13.9829V9.04511C19.0143 11.2848 17.2254 13.078 14.9825 14.074C14.9825 14.074 14.9825 14.074 14.914 14.074C14.8454 14.074 14.0454 14.4039 13.7026 14.074C13.3964 13.7655 13.3671 13.2789 13.634 12.9362L13.714 12.8793H13.7712C16.3947 10.8939 17.0064 7.21529 15.1654 4.49411C13.6797 2.24137 12.057 0 12.057 0Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18 8.5H20C20.2652 8.5 20.5196 8.60536 20.7071 8.79289C20.8946 8.98043 21 9.23478 21 9.5V21.5C21 21.7652 20.8946 22.0196 20.7071 22.2071C20.5196 22.3946 20.2652 22.5 20 22.5H4C3.73478 22.5 3.48043 22.3946 3.29289 22.2071C3.10536 22.0196 3 21.7652 3 21.5V9.5C3 9.23478 3.10536 8.98043 3.29289 8.79289C3.48043 8.60536 3.73478 8.5 4 8.5H6V7.5C6 5.9087 6.63214 4.38258 7.75736 3.25736C8.88258 2.13214 10.4087 1.5 12 1.5C13.5913 1.5 15.1174 2.13214 16.2426 3.25736C17.3679 4.38258 18 5.9087 18 7.5V8.5ZM16 8.5V7.5C16 6.43913 15.5786 5.42172 14.8284 4.67157C14.0783 3.92143 13.0609 3.5 12 3.5C10.9391 3.5 9.92172 3.92143 9.17157 4.67157C8.42143 5.42172 8 6.43913 8 7.5V8.5H16ZM11 14.5V16.5H13V14.5H11ZM7 14.5V16.5H9V14.5H7ZM15 14.5V16.5H17V14.5H15Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M13.4626 13.9022C13.4626 12.9854 12.7194 12.2422 11.8026 12.2422C10.8858 12.2422 10.1426 12.9854 10.1426 13.9022C10.1412 14.2909 10.2796 14.6671 10.5326 14.9622C10.7875 15.2278 10.8758 15.6119 10.7626 15.9622L10.5526 16.5822C10.4714 16.861 10.5251 17.1617 10.6977 17.3952C10.8704 17.6287 11.1422 17.7682 11.4326 17.7722H12.1726C12.4726 17.7721 12.7541 17.6273 12.9287 17.3833C13.1032 17.1393 13.1494 16.8261 13.0526 16.5422L12.8026 15.9222C12.6894 15.5719 12.7777 15.1878 13.0326 14.9222C13.2912 14.6432 13.4435 14.2821 13.4626 13.9022V13.9022Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M16.5526 8.12202V5.00202C16.5532 4.18694 16.2221 3.40672 15.6354 2.84084C15.0488 2.27496 14.2572 1.97213 13.4426 2.00202H10.1626C9.34812 1.97213 8.55648 2.27496 7.96985 2.84084C7.38322 3.40672 7.0521 4.18694 7.05265 5.00202V8.12202C4.98116 8.85136 3.72137 10.951 4.05265 13.122L5.00265 18.892C5.47121 21.1904 7.51752 22.8241 9.86265 22.772H13.7426C16.1045 22.8313 18.1655 21.18 18.6226 18.862L19.5726 13.092C19.886 10.9259 18.6195 8.84179 16.5526 8.12202ZM8.55264 5.00202C8.5905 4.14965 9.31011 3.48815 10.1626 3.52202H13.4426C14.2952 3.48815 15.0148 4.14965 15.0526 5.00202V7.77202H14.6926H8.91264H8.55264V5.00202ZM16.8026 18.562L17.8026 12.772C17.9019 12.023 17.6638 11.2685 17.1526 10.712C16.531 10.0071 15.6324 9.60892 14.6926 9.62202H8.91265C7.97604 9.60387 7.07796 9.99449 6.45265 10.692C5.95367 11.2618 5.73381 12.024 5.85265 12.772L6.80265 18.562C7.1127 19.9884 8.40434 20.9845 9.86265 20.922H13.7426C15.2009 20.9845 16.4926 19.9884 16.8026 18.562Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 2H14.24C16.3617 2 18.3966 2.84285 19.8969 4.34315C21.3971 5.84344 22.24 7.87827 22.24 10V14.24C22.24 18.6583 18.6583 22.24 14.24 22.24H10C5.58172 22.24 2 18.6583 2 14.24V10C2 5.58172 5.58172 2 10 2ZM12.12 18.12C12.6723 18.12 13.12 17.6723 13.12 17.12V12.12C13.1215 11.8542 13.0172 11.5987 12.83 11.41L8.83 7.41C8.57634 7.15634 8.20663 7.05728 7.86012 7.15012C7.51362 7.24297 7.24297 7.51362 7.15012 7.86012C7.05728 8.20663 7.15634 8.57634 7.41 8.83L11.12 12.53V17.12C11.12 17.6723 11.5677 18.12 12.12 18.12Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 19" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M2.16667 14H13.8333V8.19246C13.8333 4.95663 11.2217 2.33329 8 2.33329C4.77833 2.33329 2.16667 4.95663 2.16667 8.19246V14ZM8 0.666626C12.1417 0.666626 15.5 4.03579 15.5 8.19246V15.6666H0.5V8.19246C0.5 4.03579 3.85833 0.666626 8 0.666626ZM5.91667 16.5H10.0833C10.0833 17.0525 9.86384 17.5824 9.47314 17.9731C9.08244 18.3638 8.55253 18.5833 8 18.5833C7.44747 18.5833 6.91756 18.3638 6.52686 17.9731C6.13616 17.5824 5.91667 17.0525 5.91667 16.5Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|