a-icons 1.2.69 → 1.2.70
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/AnalyzeOutlined.d.ts +6 -0
- package/es/AnalyzeOutlined.js +31 -0
- package/es/AnnouncementOutlined.d.ts +6 -0
- package/es/AnnouncementOutlined.js +31 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/AnalyzeOutlined.d.ts +6 -0
- package/lib/AnalyzeOutlined.js +74 -0
- package/lib/AnnouncementOutlined.d.ts +6 -0
- package/lib/AnnouncementOutlined.js +74 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +22 -8
- package/package.json +2 -2
- package/src/AnalyzeOutlined.tsx +18 -0
- package/src/AnnouncementOutlined.tsx +18 -0
- package/src/index.tsx +2 -0
- package/svgs/outlined/analyze-outlined.svg +3 -0
- package/svgs/outlined/announcement-outlined.svg +3 -0
- package/tmpAllSvgs/analyze-outlined.svg +3 -0
- package/tmpAllSvgs/announcement-outlined.svg +3 -0
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
for (var p in s) {
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
+
function AnalyzeOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M4 12.6c0-.297.001-.459.01-.576l.003-.012.011-.001C4.141 12 4.304 12 4.6 12H8v8H4.6c-.297 0-.46-.001-.576-.01l-.011-.003-.002-.011A8.102 8.102 0 014 19.4v-6.8zm6-8c0-.297.001-.459.01-.576l.003-.012.011-.001A8.1 8.1 0 0110.6 4h2.8c.297 0 .459.001.576.01l.012.002.001.012c.01.117.011.28.011.576V20h-4V4.6zm10 14.8a8.04 8.04 0 01-.012.587l-.012.002c-.117.01-.28.011-.576.011H16V8h3.4c.297 0 .459.001.576.01l.012.002.001.012c.01.117.011.28.011.576v10.8zM8 10H4.6c-.264 0-.522-.001-.739.017a2.023 2.023 0 00-.77.2c-.328.169-.604.424-.796.737l-.077.138-.087.203c-.072.2-.1.395-.114.566-.018.217-.017.475-.017.739v6.8c0 .264-.001.522.017.739.018.228.063.498.2.77a2 2 0 00.875.873c.271.139.54.183.77.201.216.018.474.017.738.017h14.8c.264 0 .522.001.739-.017.228-.018.498-.063.77-.2a2 2 0 00.873-.875c.138-.271.183-.54.201-.77.018-.216.017-.474.017-.738V8.6c0-.264.001-.522-.017-.739a2.023 2.023 0 00-.2-.77 2 2 0 00-.875-.873 2.022 2.022 0 00-.77-.201C19.923 5.999 19.665 6 19.4 6H16V4.6c0-.264.001-.522-.017-.739a2.023 2.023 0 00-.2-.77 2 2 0 00-.875-.873 2.022 2.022 0 00-.77-.201C13.923 1.999 13.665 2 13.4 2h-2.8c-.264 0-.522-.001-.739.017a2.022 2.022 0 00-.77.2 2 2 0 00-.796.737l-.077.138-.087.203c-.072.2-.1.395-.114.566C7.999 4.078 8 4.336 8 4.6V10z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
27
|
+
component: IconNode
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
AnalyzeOutlined.displayName = 'AnalyzeOutlined';
|
|
31
|
+
export default AnalyzeOutlined;
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
for (var p in s) {
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
+
function AnnouncementOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M20 7.8c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.82-.18C17.639 4 17.058 4 16.2 4H7.8c-.857 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C4 6.361 4 6.942 4 7.8v5.7c0 .713 0 1.197.026 1.573.025.368.071.56.126.693a2 2 0 001.082 1.082c.134.055.325.1.693.126.376.025.86.026 1.573.026.44 0 .823-.006 1.19.08a3 3 0 011.232.616c.289.242.514.551.778.904l1.3 1.733 1.3-1.733c.264-.353.489-.662.778-.904.358-.298.78-.509 1.232-.616.367-.086.75-.08 1.19-.08.712 0 1.197 0 1.573-.026.368-.025.56-.071.693-.126a2 2 0 001.082-1.082c.055-.134.1-.325.126-.693.025-.376.026-.86.026-1.573V7.8zM13 10v5.5h-2V10h2zm0-4v2h-2V6h2zm9 7.5c0 .685 0 1.25-.031 1.71-.032.469-.1.903-.274 1.32a4.001 4.001 0 01-2.165 2.165c-.417.173-.851.242-1.32.274-.46.031-1.025.031-1.71.031-.536 0-.643.006-.73.026a1.001 1.001 0 00-.41.206c-.069.058-.138.139-.46.568l-1.46 1.947c-.097.13-.21.28-.317.4a1.524 1.524 0 01-.58.418c-.349.136-.737.136-1.087 0a1.524 1.524 0 01-.579-.418c-.108-.12-.22-.27-.317-.4L9.1 19.8c-.322-.43-.391-.51-.46-.568-.119-.099-.26-.17-.41-.206-.087-.02-.194-.026-.73-.026-.685 0-1.25 0-1.71-.031-.469-.032-.903-.1-1.32-.274a4.001 4.001 0 01-2.165-2.165c-.173-.417-.242-.851-.274-1.32C2 14.75 2 14.185 2 13.5V7.8c0-.824-.001-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C6.298 1.999 6.976 2 7.8 2h8.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.564.392a4.001 4.001 0 011.748 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052v5.7z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
27
|
+
component: IconNode
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
AnnouncementOutlined.displayName = 'AnnouncementOutlined';
|
|
31
|
+
export default AnnouncementOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ export { default as AddMoneyFilled } from './AddMoneyFilled';
|
|
|
6
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
7
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
8
8
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
9
|
+
export { default as AnalyzeOutlined } from './AnalyzeOutlined';
|
|
10
|
+
export { default as AnnouncementOutlined } from './AnnouncementOutlined';
|
|
9
11
|
export { default as AppstoreOutlined } from './AppstoreOutlined';
|
|
10
12
|
export { default as ArrowCircleOutlined } from './ArrowCircleOutlined';
|
|
11
13
|
export { default as ArrowDownOutlined } from './ArrowDownOutlined';
|
package/es/index.js
CHANGED
|
@@ -6,6 +6,8 @@ export { default as AddMoneyFilled } from './AddMoneyFilled';
|
|
|
6
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
7
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
8
8
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
9
|
+
export { default as AnalyzeOutlined } from './AnalyzeOutlined';
|
|
10
|
+
export { default as AnnouncementOutlined } from './AnnouncementOutlined';
|
|
9
11
|
export { default as AppstoreOutlined } from './AppstoreOutlined';
|
|
10
12
|
export { default as ArrowCircleOutlined } from './ArrowCircleOutlined';
|
|
11
13
|
export { default as ArrowDownOutlined } from './ArrowDownOutlined';
|
|
@@ -0,0 +1,74 @@
|
|
|
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
|
+
for (var p in s) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
return __assign.apply(this, arguments);
|
|
14
|
+
};
|
|
15
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return m[k];
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
value: v
|
|
35
|
+
});
|
|
36
|
+
} : function (o, v) {
|
|
37
|
+
o["default"] = v;
|
|
38
|
+
});
|
|
39
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k in mod) {
|
|
43
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
44
|
+
}
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
49
|
+
return mod && mod.__esModule ? mod : {
|
|
50
|
+
"default": mod
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", {
|
|
54
|
+
value: true
|
|
55
|
+
});
|
|
56
|
+
var React = __importStar(require("react"));
|
|
57
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
+
function AnalyzeOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
d: "M4 12.6c0-.297.001-.459.01-.576l.003-.012.011-.001C4.141 12 4.304 12 4.6 12H8v8H4.6c-.297 0-.46-.001-.576-.01l-.011-.003-.002-.011A8.102 8.102 0 014 19.4v-6.8zm6-8c0-.297.001-.459.01-.576l.003-.012.011-.001A8.1 8.1 0 0110.6 4h2.8c.297 0 .459.001.576.01l.012.002.001.012c.01.117.011.28.011.576V20h-4V4.6zm10 14.8a8.04 8.04 0 01-.012.587l-.012.002c-.117.01-.28.011-.576.011H16V8h3.4c.297 0 .459.001.576.01l.012.002.001.012c.01.117.011.28.011.576v10.8zM8 10H4.6c-.264 0-.522-.001-.739.017a2.023 2.023 0 00-.77.2c-.328.169-.604.424-.796.737l-.077.138-.087.203c-.072.2-.1.395-.114.566-.018.217-.017.475-.017.739v6.8c0 .264-.001.522.017.739.018.228.063.498.2.77a2 2 0 00.875.873c.271.139.54.183.77.201.216.018.474.017.738.017h14.8c.264 0 .522.001.739-.017.228-.018.498-.063.77-.2a2 2 0 00.873-.875c.138-.271.183-.54.201-.77.018-.216.017-.474.017-.738V8.6c0-.264.001-.522-.017-.739a2.023 2.023 0 00-.2-.77 2 2 0 00-.875-.873 2.022 2.022 0 00-.77-.201C19.923 5.999 19.665 6 19.4 6H16V4.6c0-.264.001-.522-.017-.739a2.023 2.023 0 00-.2-.77 2 2 0 00-.875-.873 2.022 2.022 0 00-.77-.201C13.923 1.999 13.665 2 13.4 2h-2.8c-.264 0-.522-.001-.739.017a2.022 2.022 0 00-.77.2 2 2 0 00-.796.737l-.077.138-.087.203c-.072.2-.1.395-.114.566C7.999 4.078 8 4.336 8 4.6V10z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
70
|
+
component: IconNode
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
AnalyzeOutlined.displayName = 'AnalyzeOutlined';
|
|
74
|
+
exports["default"] = AnalyzeOutlined;
|
|
@@ -0,0 +1,74 @@
|
|
|
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
|
+
for (var p in s) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
return __assign.apply(this, arguments);
|
|
14
|
+
};
|
|
15
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return m[k];
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
value: v
|
|
35
|
+
});
|
|
36
|
+
} : function (o, v) {
|
|
37
|
+
o["default"] = v;
|
|
38
|
+
});
|
|
39
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k in mod) {
|
|
43
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
44
|
+
}
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
49
|
+
return mod && mod.__esModule ? mod : {
|
|
50
|
+
"default": mod
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", {
|
|
54
|
+
value: true
|
|
55
|
+
});
|
|
56
|
+
var React = __importStar(require("react"));
|
|
57
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
+
function AnnouncementOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
d: "M20 7.8c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.82-.18C17.639 4 17.058 4 16.2 4H7.8c-.857 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C4 6.361 4 6.942 4 7.8v5.7c0 .713 0 1.197.026 1.573.025.368.071.56.126.693a2 2 0 001.082 1.082c.134.055.325.1.693.126.376.025.86.026 1.573.026.44 0 .823-.006 1.19.08a3 3 0 011.232.616c.289.242.514.551.778.904l1.3 1.733 1.3-1.733c.264-.353.489-.662.778-.904.358-.298.78-.509 1.232-.616.367-.086.75-.08 1.19-.08.712 0 1.197 0 1.573-.026.368-.025.56-.071.693-.126a2 2 0 001.082-1.082c.055-.134.1-.325.126-.693.025-.376.026-.86.026-1.573V7.8zM13 10v5.5h-2V10h2zm0-4v2h-2V6h2zm9 7.5c0 .685 0 1.25-.031 1.71-.032.469-.1.903-.274 1.32a4.001 4.001 0 01-2.165 2.165c-.417.173-.851.242-1.32.274-.46.031-1.025.031-1.71.031-.536 0-.643.006-.73.026a1.001 1.001 0 00-.41.206c-.069.058-.138.139-.46.568l-1.46 1.947c-.097.13-.21.28-.317.4a1.524 1.524 0 01-.58.418c-.349.136-.737.136-1.087 0a1.524 1.524 0 01-.579-.418c-.108-.12-.22-.27-.317-.4L9.1 19.8c-.322-.43-.391-.51-.46-.568-.119-.099-.26-.17-.41-.206-.087-.02-.194-.026-.73-.026-.685 0-1.25 0-1.71-.031-.469-.032-.903-.1-1.32-.274a4.001 4.001 0 01-2.165-2.165c-.173-.417-.242-.851-.274-1.32C2 14.75 2 14.185 2 13.5V7.8c0-.824-.001-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C6.298 1.999 6.976 2 7.8 2h8.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.564.392a4.001 4.001 0 011.748 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052v5.7z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
70
|
+
component: IconNode
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
AnnouncementOutlined.displayName = 'AnnouncementOutlined';
|
|
74
|
+
exports["default"] = AnnouncementOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ export { default as AddMoneyFilled } from './AddMoneyFilled';
|
|
|
6
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
7
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
8
8
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
9
|
+
export { default as AnalyzeOutlined } from './AnalyzeOutlined';
|
|
10
|
+
export { default as AnnouncementOutlined } from './AnnouncementOutlined';
|
|
9
11
|
export { default as AppstoreOutlined } from './AppstoreOutlined';
|
|
10
12
|
export { default as ArrowCircleOutlined } from './ArrowCircleOutlined';
|
|
11
13
|
export { default as ArrowDownOutlined } from './ArrowDownOutlined';
|
package/lib/index.js
CHANGED
|
@@ -8,14 +8,14 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = void 0;
|
|
11
|
+
exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.Call = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFailOutlined = exports.CalendarOutlined = exports.CalendarFilled = exports.BusinessCardOutlined = exports.BrokenLineOutlined = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BellOutlined = exports.BarsOutlined = exports.BarLineOutlined = exports.BarChartFilled = exports.BankAddFilled = exports.AtOutlined = exports.AscOutlined = exports.ArrowsRightLeftOutlined = exports.ArrowsChevronOutlined = exports.ArrowTopRightOutlined = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownOutlined = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AnnouncementOutlined = exports.AnalyzeOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AddChildOutlined = exports.AdFilled = exports.ImpassabilityFilled = void 0;
|
|
12
|
+
exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ContinueInvestFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CircleThreeRectFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.CheckCircleFilled = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = void 0;
|
|
13
|
+
exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ExchangeArrowOutlined = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = void 0;
|
|
14
|
+
exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalTransfer = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HouseOutlined = exports.Hours24 = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOutlined = void 0;
|
|
15
|
+
exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailSettingFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = void 0;
|
|
16
|
+
exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = exports.RoleSale = exports.RoleOtcMerchant = exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.PlayOutlined = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = void 0;
|
|
17
|
+
exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferMoneyFilled = exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.SubtractFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShieldCheckedOutlined = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = void 0;
|
|
18
|
+
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -72,6 +72,20 @@ Object.defineProperty(exports, "AlertTriangleOutlined", {
|
|
|
72
72
|
return __importDefault(AlertTriangleOutlined_1)["default"];
|
|
73
73
|
}
|
|
74
74
|
});
|
|
75
|
+
var AnalyzeOutlined_1 = require("./AnalyzeOutlined");
|
|
76
|
+
Object.defineProperty(exports, "AnalyzeOutlined", {
|
|
77
|
+
enumerable: true,
|
|
78
|
+
get: function get() {
|
|
79
|
+
return __importDefault(AnalyzeOutlined_1)["default"];
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
var AnnouncementOutlined_1 = require("./AnnouncementOutlined");
|
|
83
|
+
Object.defineProperty(exports, "AnnouncementOutlined", {
|
|
84
|
+
enumerable: true,
|
|
85
|
+
get: function get() {
|
|
86
|
+
return __importDefault(AnnouncementOutlined_1)["default"];
|
|
87
|
+
}
|
|
88
|
+
});
|
|
75
89
|
var AppstoreOutlined_1 = require("./AppstoreOutlined");
|
|
76
90
|
Object.defineProperty(exports, "AppstoreOutlined", {
|
|
77
91
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.70",
|
|
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": "^3.2.49"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "b4eb475157bdf95eb917698d04942e6b4e203144"
|
|
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 AnalyzeOutlined(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="M4 12.6c0-.297.001-.459.01-.576l.003-.012.011-.001C4.141 12 4.304 12 4.6 12H8v8H4.6c-.297 0-.46-.001-.576-.01l-.011-.003-.002-.011A8.102 8.102 0 014 19.4v-6.8zm6-8c0-.297.001-.459.01-.576l.003-.012.011-.001A8.1 8.1 0 0110.6 4h2.8c.297 0 .459.001.576.01l.012.002.001.012c.01.117.011.28.011.576V20h-4V4.6zm10 14.8a8.04 8.04 0 01-.012.587l-.012.002c-.117.01-.28.011-.576.011H16V8h3.4c.297 0 .459.001.576.01l.012.002.001.012c.01.117.011.28.011.576v10.8zM8 10H4.6c-.264 0-.522-.001-.739.017a2.023 2.023 0 00-.77.2c-.328.169-.604.424-.796.737l-.077.138-.087.203c-.072.2-.1.395-.114.566-.018.217-.017.475-.017.739v6.8c0 .264-.001.522.017.739.018.228.063.498.2.77a2 2 0 00.875.873c.271.139.54.183.77.201.216.018.474.017.738.017h14.8c.264 0 .522.001.739-.017.228-.018.498-.063.77-.2a2 2 0 00.873-.875c.138-.271.183-.54.201-.77.018-.216.017-.474.017-.738V8.6c0-.264.001-.522-.017-.739a2.023 2.023 0 00-.2-.77 2 2 0 00-.875-.873 2.022 2.022 0 00-.77-.201C19.923 5.999 19.665 6 19.4 6H16V4.6c0-.264.001-.522-.017-.739a2.023 2.023 0 00-.2-.77 2 2 0 00-.875-.873 2.022 2.022 0 00-.77-.201C13.923 1.999 13.665 2 13.4 2h-2.8c-.264 0-.522-.001-.739.017a2.022 2.022 0 00-.77.2 2 2 0 00-.796.737l-.077.138-.087.203c-.072.2-.1.395-.114.566C7.999 4.078 8 4.336 8 4.6V10z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
AnalyzeOutlined.displayName = 'AnalyzeOutlined';
|
|
18
|
+
export default AnalyzeOutlined;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function AnnouncementOutlined(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="M20 7.8c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.82-.18C17.639 4 17.058 4 16.2 4H7.8c-.857 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C4 6.361 4 6.942 4 7.8v5.7c0 .713 0 1.197.026 1.573.025.368.071.56.126.693a2 2 0 001.082 1.082c.134.055.325.1.693.126.376.025.86.026 1.573.026.44 0 .823-.006 1.19.08a3 3 0 011.232.616c.289.242.514.551.778.904l1.3 1.733 1.3-1.733c.264-.353.489-.662.778-.904.358-.298.78-.509 1.232-.616.367-.086.75-.08 1.19-.08.712 0 1.197 0 1.573-.026.368-.025.56-.071.693-.126a2 2 0 001.082-1.082c.055-.134.1-.325.126-.693.025-.376.026-.86.026-1.573V7.8zM13 10v5.5h-2V10h2zm0-4v2h-2V6h2zm9 7.5c0 .685 0 1.25-.031 1.71-.032.469-.1.903-.274 1.32a4.001 4.001 0 01-2.165 2.165c-.417.173-.851.242-1.32.274-.46.031-1.025.031-1.71.031-.536 0-.643.006-.73.026a1.001 1.001 0 00-.41.206c-.069.058-.138.139-.46.568l-1.46 1.947c-.097.13-.21.28-.317.4a1.524 1.524 0 01-.58.418c-.349.136-.737.136-1.087 0a1.524 1.524 0 01-.579-.418c-.108-.12-.22-.27-.317-.4L9.1 19.8c-.322-.43-.391-.51-.46-.568-.119-.099-.26-.17-.41-.206-.087-.02-.194-.026-.73-.026-.685 0-1.25 0-1.71-.031-.469-.032-.903-.1-1.32-.274a4.001 4.001 0 01-2.165-2.165c-.173-.417-.242-.851-.274-1.32C2 14.75 2 14.185 2 13.5V7.8c0-.824-.001-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C6.298 1.999 6.976 2 7.8 2h8.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.564.392a4.001 4.001 0 011.748 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052v5.7z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
AnnouncementOutlined.displayName = 'AnnouncementOutlined';
|
|
18
|
+
export default AnnouncementOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -6,6 +6,8 @@ export { default as AddMoneyFilled } from './AddMoneyFilled'
|
|
|
6
6
|
export { default as AddOutlined } from './AddOutlined'
|
|
7
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled'
|
|
8
8
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined'
|
|
9
|
+
export { default as AnalyzeOutlined } from './AnalyzeOutlined'
|
|
10
|
+
export { default as AnnouncementOutlined } from './AnnouncementOutlined'
|
|
9
11
|
export { default as AppstoreOutlined } from './AppstoreOutlined'
|
|
10
12
|
export { default as ArrowCircleOutlined } from './ArrowCircleOutlined'
|
|
11
13
|
export { default as ArrowDownOutlined } from './ArrowDownOutlined'
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.99999 12.5996C3.99999 12.3033 4.00121 12.141 4.01073 12.0244C4.0111 12.0199 4.01231 12.0158 4.01268 12.0117C4.0164 12.0114 4.0203 12.0111 4.0244 12.0108C4.14093 12.0012 4.30332 12 4.5996 12H7.99999V20H4.5996C4.30332 20 4.14094 19.9988 4.0244 19.9893C4.02027 19.9889 4.01642 19.9877 4.01268 19.9873C4.01234 19.9836 4.01107 19.9797 4.01073 19.9756C4.00121 19.8591 3.99999 19.6967 3.99999 19.4004V12.5996ZM9.99999 4.59962C9.99999 4.30334 10.0012 4.14096 10.0107 4.02443C10.0111 4.01994 10.0123 4.01576 10.0127 4.01173C10.0164 4.01139 10.0203 4.01109 10.0244 4.01076C10.1409 4.00124 10.3033 4.00001 10.5996 4.00001H13.4004C13.6967 4.00001 13.859 4.00124 13.9756 4.01076C13.98 4.01112 13.9843 4.01136 13.9883 4.01173C13.9886 4.01574 13.9889 4.01997 13.9892 4.02443C13.9988 4.14096 14 4.30334 14 4.59962V20H9.99999V4.59962ZM20 19.4004C20 19.6967 19.9988 19.8591 19.9892 19.9756C19.9889 19.9797 19.9886 19.9836 19.9883 19.9873C19.9842 19.9877 19.9801 19.9889 19.9756 19.9893C19.859 19.9988 19.6967 20 19.4004 20H16V8.00001H19.4004C19.6967 8.00001 19.859 8.00124 19.9756 8.01076C19.98 8.01112 19.9843 8.01136 19.9883 8.01173C19.9886 8.01574 19.9889 8.01997 19.9892 8.02443C19.9988 8.14096 20 8.30334 20 8.59962V19.4004ZM7.99999 10H4.5996C4.33621 10 4.07813 9.9989 3.86131 10.0166C3.63281 10.0353 3.36305 10.0796 3.09178 10.2178C2.76255 10.3856 2.48705 10.6409 2.29491 10.9541L2.21776 11.0918L2.13085 11.2949C2.05935 11.4958 2.0306 11.6901 2.01659 11.8613C1.99887 12.0782 1.99999 12.3362 1.99999 12.5996V19.4004C1.99999 19.6638 1.99887 19.9219 2.01659 20.1387C2.03528 20.3672 2.07955 20.637 2.21776 20.9082C2.40949 21.2845 2.71553 21.5905 3.09178 21.7822C3.36304 21.9205 3.63281 21.9647 3.86131 21.9834C4.07813 22.0011 4.33621 22 4.5996 22H19.4004C19.6638 22 19.9218 22.0011 20.1387 21.9834C20.3672 21.9647 20.6369 21.9205 20.9082 21.7822C21.2844 21.5905 21.5905 21.2845 21.7822 20.9082C21.9204 20.637 21.9647 20.3672 21.9834 20.1387C22.0011 19.9219 22 19.6638 22 19.4004V8.59962C22 8.33623 22.0011 8.07815 21.9834 7.86134C21.9647 7.63284 21.9204 7.36307 21.7822 7.09181C21.5905 6.71556 21.2844 6.40952 20.9082 6.21779C20.6369 6.07957 20.3672 6.03531 20.1387 6.01662C19.9218 5.9989 19.6638 6.00001 19.4004 6.00001H16V4.59962C16 4.33623 16.0011 4.07815 15.9834 3.86134C15.9647 3.63284 15.9204 3.36307 15.7822 3.09181C15.5905 2.71556 15.2844 2.40952 14.9082 2.21779C14.6369 2.07957 14.3672 2.03531 14.1387 2.01662C13.9218 1.9989 13.6638 2.00001 13.4004 2.00001H10.5996C10.3362 2.00001 10.0781 1.9989 9.86131 2.01662C9.63281 2.03531 9.36304 2.07957 9.09178 2.21779C8.76255 2.38556 8.48705 2.64086 8.29491 2.95412L8.21776 3.09181L8.13085 3.29494C8.05935 3.49578 8.0306 3.69007 8.01659 3.86134C7.99887 4.07815 7.99998 4.33623 7.99999 4.59962V10Z" 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="M20 7.79981C20 6.94342 19.9997 6.36117 19.9629 5.91113C19.9271 5.47272 19.8619 5.2482 19.7822 5.0918C19.5905 4.71555 19.2845 4.40951 18.9082 4.21778C18.7518 4.13809 18.5273 4.07293 18.0889 4.03711C17.6388 4.00035 17.0566 4 16.2002 4H7.79981C6.94342 4 6.36117 4.00035 5.91113 4.03711C5.47272 4.07293 5.2482 4.13809 5.0918 4.21778C4.71555 4.40951 4.40951 4.71555 4.21778 5.0918C4.13809 5.2482 4.07293 5.47272 4.03711 5.91113C4.00035 6.36117 4 6.94342 4 7.79981V13.5C4 14.2125 4.00069 14.6968 4.02637 15.0732C4.05144 15.4407 4.09705 15.6321 4.15235 15.7656C4.35533 16.2555 4.74453 16.6447 5.23438 16.8477C5.36788 16.903 5.5593 16.9486 5.92676 16.9736C6.30318 16.9993 6.7875 17 7.5 17C7.9406 17 8.32287 16.9935 8.68946 17.0801C9.14249 17.1871 9.56444 17.3981 9.92188 17.6963C10.211 17.9376 10.4359 18.2472 10.7002 18.5996L12 20.333L13.2998 18.5996C13.5641 18.2472 13.789 17.9376 14.0781 17.6963C14.4356 17.3981 14.8575 17.1871 15.3105 17.0801C15.6771 16.9935 16.0594 17 16.5 17C17.2125 17 17.6968 16.9993 18.0732 16.9736C18.4407 16.9486 18.6321 16.903 18.7656 16.8477C19.2555 16.6447 19.6447 16.2555 19.8477 15.7656C19.903 15.6321 19.9486 15.4407 19.9736 15.0732C19.9993 14.6968 20 14.2125 20 13.5V7.79981ZM13 10V15.5H11V10H13ZM13 6V8H11V6H13ZM22 13.5C22 14.1852 22.0002 14.7497 21.9688 15.21C21.9367 15.679 21.8682 16.1127 21.6953 16.5303C21.2893 17.5104 20.5104 18.2893 19.5303 18.6953C19.1127 18.8682 18.679 18.9367 18.21 18.9688C17.7497 19.0002 17.1852 19 16.5 19C15.9641 19 15.8571 19.006 15.7705 19.0264C15.6194 19.062 15.4786 19.133 15.3594 19.2324C15.291 19.2895 15.2221 19.3709 14.9004 19.7998L13.4404 21.7471C13.3431 21.8768 13.2307 22.0277 13.123 22.1475C13.0111 22.2719 12.8245 22.4553 12.5439 22.5645C12.1942 22.7005 11.8058 22.7005 11.4561 22.5645C11.1755 22.4553 10.9889 22.2719 10.877 22.1475C10.7693 22.0277 10.6569 21.8768 10.5596 21.7471L9.09961 19.7998C8.7779 19.3709 8.70899 19.2895 8.64063 19.2324C8.52144 19.133 8.38059 19.062 8.22949 19.0264C8.14287 19.006 8.03588 19 7.5 19C6.81477 19 6.25034 19.0002 5.79004 18.9688C5.32105 18.9367 4.88731 18.8682 4.46973 18.6953C3.48962 18.2893 2.71067 17.5104 2.30469 16.5303C2.13178 16.1127 2.06328 15.679 2.03125 15.21C1.99985 14.7497 2 14.1852 2 13.5V7.79981C2 6.97632 1.99898 6.29843 2.04395 5.74805C2.08988 5.18599 2.18827 4.6689 2.43555 4.1836C2.81902 3.43109 3.43109 2.81902 4.1836 2.43555C4.6689 2.18827 5.18599 2.08988 5.74805 2.04395C6.29843 1.99898 6.97632 2 7.79981 2H16.2002C17.0237 2 17.7016 1.99898 18.252 2.04395C18.814 2.08988 19.3311 2.18827 19.8164 2.43555C20.5689 2.81902 21.181 3.43109 21.5645 4.1836C21.8117 4.6689 21.9101 5.18599 21.9561 5.74805C22.001 6.29843 22 6.97632 22 7.79981V13.5Z" 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="M3.99999 12.5996C3.99999 12.3033 4.00121 12.141 4.01073 12.0244C4.0111 12.0199 4.01231 12.0158 4.01268 12.0117C4.0164 12.0114 4.0203 12.0111 4.0244 12.0108C4.14093 12.0012 4.30332 12 4.5996 12H7.99999V20H4.5996C4.30332 20 4.14094 19.9988 4.0244 19.9893C4.02027 19.9889 4.01642 19.9877 4.01268 19.9873C4.01234 19.9836 4.01107 19.9797 4.01073 19.9756C4.00121 19.8591 3.99999 19.6967 3.99999 19.4004V12.5996ZM9.99999 4.59962C9.99999 4.30334 10.0012 4.14096 10.0107 4.02443C10.0111 4.01994 10.0123 4.01576 10.0127 4.01173C10.0164 4.01139 10.0203 4.01109 10.0244 4.01076C10.1409 4.00124 10.3033 4.00001 10.5996 4.00001H13.4004C13.6967 4.00001 13.859 4.00124 13.9756 4.01076C13.98 4.01112 13.9843 4.01136 13.9883 4.01173C13.9886 4.01574 13.9889 4.01997 13.9892 4.02443C13.9988 4.14096 14 4.30334 14 4.59962V20H9.99999V4.59962ZM20 19.4004C20 19.6967 19.9988 19.8591 19.9892 19.9756C19.9889 19.9797 19.9886 19.9836 19.9883 19.9873C19.9842 19.9877 19.9801 19.9889 19.9756 19.9893C19.859 19.9988 19.6967 20 19.4004 20H16V8.00001H19.4004C19.6967 8.00001 19.859 8.00124 19.9756 8.01076C19.98 8.01112 19.9843 8.01136 19.9883 8.01173C19.9886 8.01574 19.9889 8.01997 19.9892 8.02443C19.9988 8.14096 20 8.30334 20 8.59962V19.4004ZM7.99999 10H4.5996C4.33621 10 4.07813 9.9989 3.86131 10.0166C3.63281 10.0353 3.36305 10.0796 3.09178 10.2178C2.76255 10.3856 2.48705 10.6409 2.29491 10.9541L2.21776 11.0918L2.13085 11.2949C2.05935 11.4958 2.0306 11.6901 2.01659 11.8613C1.99887 12.0782 1.99999 12.3362 1.99999 12.5996V19.4004C1.99999 19.6638 1.99887 19.9219 2.01659 20.1387C2.03528 20.3672 2.07955 20.637 2.21776 20.9082C2.40949 21.2845 2.71553 21.5905 3.09178 21.7822C3.36304 21.9205 3.63281 21.9647 3.86131 21.9834C4.07813 22.0011 4.33621 22 4.5996 22H19.4004C19.6638 22 19.9218 22.0011 20.1387 21.9834C20.3672 21.9647 20.6369 21.9205 20.9082 21.7822C21.2844 21.5905 21.5905 21.2845 21.7822 20.9082C21.9204 20.637 21.9647 20.3672 21.9834 20.1387C22.0011 19.9219 22 19.6638 22 19.4004V8.59962C22 8.33623 22.0011 8.07815 21.9834 7.86134C21.9647 7.63284 21.9204 7.36307 21.7822 7.09181C21.5905 6.71556 21.2844 6.40952 20.9082 6.21779C20.6369 6.07957 20.3672 6.03531 20.1387 6.01662C19.9218 5.9989 19.6638 6.00001 19.4004 6.00001H16V4.59962C16 4.33623 16.0011 4.07815 15.9834 3.86134C15.9647 3.63284 15.9204 3.36307 15.7822 3.09181C15.5905 2.71556 15.2844 2.40952 14.9082 2.21779C14.6369 2.07957 14.3672 2.03531 14.1387 2.01662C13.9218 1.9989 13.6638 2.00001 13.4004 2.00001H10.5996C10.3362 2.00001 10.0781 1.9989 9.86131 2.01662C9.63281 2.03531 9.36304 2.07957 9.09178 2.21779C8.76255 2.38556 8.48705 2.64086 8.29491 2.95412L8.21776 3.09181L8.13085 3.29494C8.05935 3.49578 8.0306 3.69007 8.01659 3.86134C7.99887 4.07815 7.99998 4.33623 7.99999 4.59962V10Z" 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="M20 7.79981C20 6.94342 19.9997 6.36117 19.9629 5.91113C19.9271 5.47272 19.8619 5.2482 19.7822 5.0918C19.5905 4.71555 19.2845 4.40951 18.9082 4.21778C18.7518 4.13809 18.5273 4.07293 18.0889 4.03711C17.6388 4.00035 17.0566 4 16.2002 4H7.79981C6.94342 4 6.36117 4.00035 5.91113 4.03711C5.47272 4.07293 5.2482 4.13809 5.0918 4.21778C4.71555 4.40951 4.40951 4.71555 4.21778 5.0918C4.13809 5.2482 4.07293 5.47272 4.03711 5.91113C4.00035 6.36117 4 6.94342 4 7.79981V13.5C4 14.2125 4.00069 14.6968 4.02637 15.0732C4.05144 15.4407 4.09705 15.6321 4.15235 15.7656C4.35533 16.2555 4.74453 16.6447 5.23438 16.8477C5.36788 16.903 5.5593 16.9486 5.92676 16.9736C6.30318 16.9993 6.7875 17 7.5 17C7.9406 17 8.32287 16.9935 8.68946 17.0801C9.14249 17.1871 9.56444 17.3981 9.92188 17.6963C10.211 17.9376 10.4359 18.2472 10.7002 18.5996L12 20.333L13.2998 18.5996C13.5641 18.2472 13.789 17.9376 14.0781 17.6963C14.4356 17.3981 14.8575 17.1871 15.3105 17.0801C15.6771 16.9935 16.0594 17 16.5 17C17.2125 17 17.6968 16.9993 18.0732 16.9736C18.4407 16.9486 18.6321 16.903 18.7656 16.8477C19.2555 16.6447 19.6447 16.2555 19.8477 15.7656C19.903 15.6321 19.9486 15.4407 19.9736 15.0732C19.9993 14.6968 20 14.2125 20 13.5V7.79981ZM13 10V15.5H11V10H13ZM13 6V8H11V6H13ZM22 13.5C22 14.1852 22.0002 14.7497 21.9688 15.21C21.9367 15.679 21.8682 16.1127 21.6953 16.5303C21.2893 17.5104 20.5104 18.2893 19.5303 18.6953C19.1127 18.8682 18.679 18.9367 18.21 18.9688C17.7497 19.0002 17.1852 19 16.5 19C15.9641 19 15.8571 19.006 15.7705 19.0264C15.6194 19.062 15.4786 19.133 15.3594 19.2324C15.291 19.2895 15.2221 19.3709 14.9004 19.7998L13.4404 21.7471C13.3431 21.8768 13.2307 22.0277 13.123 22.1475C13.0111 22.2719 12.8245 22.4553 12.5439 22.5645C12.1942 22.7005 11.8058 22.7005 11.4561 22.5645C11.1755 22.4553 10.9889 22.2719 10.877 22.1475C10.7693 22.0277 10.6569 21.8768 10.5596 21.7471L9.09961 19.7998C8.7779 19.3709 8.70899 19.2895 8.64063 19.2324C8.52144 19.133 8.38059 19.062 8.22949 19.0264C8.14287 19.006 8.03588 19 7.5 19C6.81477 19 6.25034 19.0002 5.79004 18.9688C5.32105 18.9367 4.88731 18.8682 4.46973 18.6953C3.48962 18.2893 2.71067 17.5104 2.30469 16.5303C2.13178 16.1127 2.06328 15.679 2.03125 15.21C1.99985 14.7497 2 14.1852 2 13.5V7.79981C2 6.97632 1.99898 6.29843 2.04395 5.74805C2.08988 5.18599 2.18827 4.6689 2.43555 4.1836C2.81902 3.43109 3.43109 2.81902 4.1836 2.43555C4.6689 2.18827 5.18599 2.08988 5.74805 2.04395C6.29843 1.99898 6.97632 2 7.79981 2H16.2002C17.0237 2 17.7016 1.99898 18.252 2.04395C18.814 2.08988 19.3311 2.18827 19.8164 2.43555C20.5689 2.81902 21.181 3.43109 21.5645 4.1836C21.8117 4.6689 21.9101 5.18599 21.9561 5.74805C22.001 6.29843 22 6.97632 22 7.79981V13.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|