a-icons 1.2.23 → 1.2.25
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/BigArticleBoardFilled.d.ts +6 -0
- package/es/BigArticleBoardFilled.js +32 -0
- package/es/MailHollowFilled.d.ts +6 -0
- package/es/MailHollowFilled.js +33 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/BigArticleBoardFilled.d.ts +6 -0
- package/lib/BigArticleBoardFilled.js +75 -0
- package/lib/MailHollowFilled.d.ts +6 -0
- package/lib/MailHollowFilled.js +76 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +22 -8
- package/package.json +2 -2
- package/src/BigArticleBoardFilled.tsx +20 -0
- package/src/MailHollowFilled.tsx +22 -0
- package/src/index.tsx +2 -0
- package/svgs/filled/bank-card-filled.svg +3 -1
- package/svgs/filled/big-article-board-filled.svg +5 -0
- package/svgs/filled/mail-hollow-filled.svg +8 -0
- package/tmpAllSvgs/bank-card-filled.svg +3 -1
- package/tmpAllSvgs/big-article-board-filled.svg +5 -0
- package/tmpAllSvgs/mail-hollow-filled.svg +8 -0
|
@@ -0,0 +1,32 @@
|
|
|
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 BigArticleBoardFilled(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M8.862 1.017C9.07 1 9.316 1 9.568 1h4.864c.252 0 .498 0 .706.017.229.019.499.063.77.201a2 2 0 01.874.874c.138.271.183.541.201.77l.01.146c.394.013.733.045 1.042.128a4 4 0 012.829 2.829C21 6.476 21 7.067 21 7.862v9.38c0 .804 0 1.469-.044 2.01-.046.562-.145 1.079-.392 1.564a4 4 0 01-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 01-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C3 18.71 3 18.046 3 17.242v-9.38c0-.795 0-1.386.136-1.897a4 4 0 012.829-2.829c.31-.083.648-.115 1.043-.128.002-.05.005-.1.009-.146.019-.229.063-.499.201-.77a2 2 0 01.874-.874c.272-.138.541-.182.77-.201zM15 3.6c0-.297 0-.459-.01-.575l-.001-.014h-.014A8.187 8.187 0 0014.4 3H9.6c-.296 0-.459 0-.575.01l-.013.001-.002.014C9 3.14 9 3.303 9 3.6v.8c0 .297 0 .459.01.575l.002.014h.013C9.14 5 9.304 5 9.6 5h4.8c.297 0 .459 0 .575-.01l.014-.001v-.014C15 4.86 15 4.697 15 4.4v-.8zM7 8.705h10v2H7v-2zm0 4h8v2H7v-2zm0 4h4v2H7v-2z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}));
|
|
26
|
+
};
|
|
27
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
28
|
+
component: IconNode
|
|
29
|
+
}));
|
|
30
|
+
}
|
|
31
|
+
BigArticleBoardFilled.displayName = 'BigArticleBoardFilled';
|
|
32
|
+
export default BigArticleBoardFilled;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 MailHollowFilled(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M6.759 3H17.24c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 011.748 1.748c.054.106.1.213.142.323l-9.431 6.38-.013.01c-.73.51-.884.598-1.02.632a1 1 0 01-.484 0c-.136-.034-.29-.122-1.017-.63L1.396 5.264l.04-.081a4 4 0 011.748-1.748c.485-.247 1.002-.346 1.564-.392C5.29 3 5.954 3 6.758 3z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
d: "M1.01 7.443C1 7.833 1 8.27 1 8.76v6.482c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C5.29 21 5.954 21 6.758 21h10.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V8.758c0-.375 0-.719-.004-1.034l-8.594 5.814-.109.077c-.544.382-1.023.718-1.567.854a3 3 0 01-1.452 0c-.544-.136-1.022-.472-1.567-.854l-.12-.085L1.01 7.443z",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
29
|
+
component: IconNode
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
MailHollowFilled.displayName = 'MailHollowFilled';
|
|
33
|
+
export default MailHollowFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { default as BankCardFilled } from './BankCardFilled';
|
|
|
25
25
|
export { default as BarChartFilled } from './BarChartFilled';
|
|
26
26
|
export { default as BarsOutlined } from './BarsOutlined';
|
|
27
27
|
export { default as BellOutlined } from './BellOutlined';
|
|
28
|
+
export { default as BigArticleBoardFilled } from './BigArticleBoardFilled';
|
|
28
29
|
export { default as BindChainFilled } from './BindChainFilled';
|
|
29
30
|
export { default as BindChainOutlined } from './BindChainOutlined';
|
|
30
31
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
@@ -216,6 +217,7 @@ export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
|
216
217
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
217
218
|
export { default as LoopOutlined } from './LoopOutlined';
|
|
218
219
|
export { default as MailFilled } from './MailFilled';
|
|
220
|
+
export { default as MailHollowFilled } from './MailHollowFilled';
|
|
219
221
|
export { default as MailOutlined } from './MailOutlined';
|
|
220
222
|
export { default as MediumVolumeOutlined } from './MediumVolumeOutlined';
|
|
221
223
|
export { default as MenuListOutlined } from './MenuListOutlined';
|
package/es/index.js
CHANGED
|
@@ -25,6 +25,7 @@ export { default as BankCardFilled } from './BankCardFilled';
|
|
|
25
25
|
export { default as BarChartFilled } from './BarChartFilled';
|
|
26
26
|
export { default as BarsOutlined } from './BarsOutlined';
|
|
27
27
|
export { default as BellOutlined } from './BellOutlined';
|
|
28
|
+
export { default as BigArticleBoardFilled } from './BigArticleBoardFilled';
|
|
28
29
|
export { default as BindChainFilled } from './BindChainFilled';
|
|
29
30
|
export { default as BindChainOutlined } from './BindChainOutlined';
|
|
30
31
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
@@ -216,6 +217,7 @@ export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
|
216
217
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
217
218
|
export { default as LoopOutlined } from './LoopOutlined';
|
|
218
219
|
export { default as MailFilled } from './MailFilled';
|
|
220
|
+
export { default as MailHollowFilled } from './MailHollowFilled';
|
|
219
221
|
export { default as MailOutlined } from './MailOutlined';
|
|
220
222
|
export { default as MediumVolumeOutlined } from './MediumVolumeOutlined';
|
|
221
223
|
export { default as MenuListOutlined } from './MenuListOutlined';
|
|
@@ -0,0 +1,75 @@
|
|
|
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 BigArticleBoardFilled(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("path", {
|
|
64
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M8.862 1.017C9.07 1 9.316 1 9.568 1h4.864c.252 0 .498 0 .706.017.229.019.499.063.77.201a2 2 0 01.874.874c.138.271.183.541.201.77l.01.146c.394.013.733.045 1.042.128a4 4 0 012.829 2.829C21 6.476 21 7.067 21 7.862v9.38c0 .804 0 1.469-.044 2.01-.046.562-.145 1.079-.392 1.564a4 4 0 01-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 01-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C3 18.71 3 18.046 3 17.242v-9.38c0-.795 0-1.386.136-1.897a4 4 0 012.829-2.829c.31-.083.648-.115 1.043-.128.002-.05.005-.1.009-.146.019-.229.063-.499.201-.77a2 2 0 01.874-.874c.272-.138.541-.182.77-.201zM15 3.6c0-.297 0-.459-.01-.575l-.001-.014h-.014A8.187 8.187 0 0014.4 3H9.6c-.296 0-.459 0-.575.01l-.013.001-.002.014C9 3.14 9 3.303 9 3.6v.8c0 .297 0 .459.01.575l.002.014h.013C9.14 5 9.304 5 9.6 5h4.8c.297 0 .459 0 .575-.01l.014-.001v-.014C15 4.86 15 4.697 15 4.4v-.8zM7 8.705h10v2H7v-2zm0 4h8v2H7v-2zm0 4h4v2H7v-2z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}));
|
|
69
|
+
};
|
|
70
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
71
|
+
component: IconNode
|
|
72
|
+
}));
|
|
73
|
+
}
|
|
74
|
+
BigArticleBoardFilled.displayName = 'BigArticleBoardFilled';
|
|
75
|
+
exports["default"] = BigArticleBoardFilled;
|
|
@@ -0,0 +1,76 @@
|
|
|
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 MailHollowFilled(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("path", {
|
|
64
|
+
d: "M6.759 3H17.24c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 011.748 1.748c.054.106.1.213.142.323l-9.431 6.38-.013.01c-.73.51-.884.598-1.02.632a1 1 0 01-.484 0c-.136-.034-.29-.122-1.017-.63L1.396 5.264l.04-.081a4 4 0 011.748-1.748c.485-.247 1.002-.346 1.564-.392C5.29 3 5.954 3 6.758 3z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}), React.createElement("path", {
|
|
67
|
+
d: "M1.01 7.443C1 7.833 1 8.27 1 8.76v6.482c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C5.29 21 5.954 21 6.758 21h10.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V8.758c0-.375 0-.719-.004-1.034l-8.594 5.814-.109.077c-.544.382-1.023.718-1.567.854a3 3 0 01-1.452 0c-.544-.136-1.022-.472-1.567-.854l-.12-.085L1.01 7.443z",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
}));
|
|
70
|
+
};
|
|
71
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
72
|
+
component: IconNode
|
|
73
|
+
}));
|
|
74
|
+
}
|
|
75
|
+
MailHollowFilled.displayName = 'MailHollowFilled';
|
|
76
|
+
exports["default"] = MailHollowFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { default as BankCardFilled } from './BankCardFilled';
|
|
|
25
25
|
export { default as BarChartFilled } from './BarChartFilled';
|
|
26
26
|
export { default as BarsOutlined } from './BarsOutlined';
|
|
27
27
|
export { default as BellOutlined } from './BellOutlined';
|
|
28
|
+
export { default as BigArticleBoardFilled } from './BigArticleBoardFilled';
|
|
28
29
|
export { default as BindChainFilled } from './BindChainFilled';
|
|
29
30
|
export { default as BindChainOutlined } from './BindChainOutlined';
|
|
30
31
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
@@ -216,6 +217,7 @@ export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
|
216
217
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
217
218
|
export { default as LoopOutlined } from './LoopOutlined';
|
|
218
219
|
export { default as MailFilled } from './MailFilled';
|
|
220
|
+
export { default as MailHollowFilled } from './MailHollowFilled';
|
|
219
221
|
export { default as MailOutlined } from './MailOutlined';
|
|
220
222
|
export { default as MediumVolumeOutlined } from './MediumVolumeOutlined';
|
|
221
223
|
export { default as MenuListOutlined } from './MenuListOutlined';
|
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.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = void 0;
|
|
11
|
+
exports.CallRecordOutlined = exports.CallOutlined = exports.CallFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BrokenHeartFilled = 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.BindChainFilled = exports.BigArticleBoardFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.AscOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.AdFilled = exports.ImpassabilityFilled = exports.DailyFinanceFilled = void 0;
|
|
12
|
+
exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ConfirmCircleSolidFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckboxMultipleBlankFilled = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = void 0;
|
|
13
|
+
exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = 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.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CyclePlusFilled = exports.CustomerServiceOutlined = void 0;
|
|
14
|
+
exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IbFilled = exports.HouseOutlined = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = void 0;
|
|
15
|
+
exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.PauseCircleFilled = exports.OtcMerchant = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = 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.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailHollowFilled = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LeftOutlined = void 0;
|
|
16
|
+
exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.ResourceOutlined = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PersonGroupFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = void 0;
|
|
17
|
+
exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = void 0;
|
|
18
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = void 0;
|
|
19
19
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
20
20
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -205,6 +205,13 @@ Object.defineProperty(exports, "BellOutlined", {
|
|
|
205
205
|
return __importDefault(BellOutlined_1)["default"];
|
|
206
206
|
}
|
|
207
207
|
});
|
|
208
|
+
var BigArticleBoardFilled_1 = require("./BigArticleBoardFilled");
|
|
209
|
+
Object.defineProperty(exports, "BigArticleBoardFilled", {
|
|
210
|
+
enumerable: true,
|
|
211
|
+
get: function get() {
|
|
212
|
+
return __importDefault(BigArticleBoardFilled_1)["default"];
|
|
213
|
+
}
|
|
214
|
+
});
|
|
208
215
|
var BindChainFilled_1 = require("./BindChainFilled");
|
|
209
216
|
Object.defineProperty(exports, "BindChainFilled", {
|
|
210
217
|
enumerable: true,
|
|
@@ -1542,6 +1549,13 @@ Object.defineProperty(exports, "MailFilled", {
|
|
|
1542
1549
|
return __importDefault(MailFilled_1)["default"];
|
|
1543
1550
|
}
|
|
1544
1551
|
});
|
|
1552
|
+
var MailHollowFilled_1 = require("./MailHollowFilled");
|
|
1553
|
+
Object.defineProperty(exports, "MailHollowFilled", {
|
|
1554
|
+
enumerable: true,
|
|
1555
|
+
get: function get() {
|
|
1556
|
+
return __importDefault(MailHollowFilled_1)["default"];
|
|
1557
|
+
}
|
|
1558
|
+
});
|
|
1545
1559
|
var MailOutlined_1 = require("./MailOutlined");
|
|
1546
1560
|
Object.defineProperty(exports, "MailOutlined", {
|
|
1547
1561
|
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.25",
|
|
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": "eb51e5f3d8fdb5b01bc9c137a1db5cdb7802e023"
|
|
26
26
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
function BigArticleBoardFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M8.862 1.017C9.07 1 9.316 1 9.568 1h4.864c.252 0 .498 0 .706.017.229.019.499.063.77.201a2 2 0 01.874.874c.138.271.183.541.201.77l.01.146c.394.013.733.045 1.042.128a4 4 0 012.829 2.829C21 6.476 21 7.067 21 7.862v9.38c0 .804 0 1.469-.044 2.01-.046.562-.145 1.079-.392 1.564a4 4 0 01-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 01-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C3 18.71 3 18.046 3 17.242v-9.38c0-.795 0-1.386.136-1.897a4 4 0 012.829-2.829c.31-.083.648-.115 1.043-.128.002-.05.005-.1.009-.146.019-.229.063-.499.201-.77a2 2 0 01.874-.874c.272-.138.541-.182.77-.201zM15 3.6c0-.297 0-.459-.01-.575l-.001-.014h-.014A8.187 8.187 0 0014.4 3H9.6c-.296 0-.459 0-.575.01l-.013.001-.002.014C9 3.14 9 3.303 9 3.6v.8c0 .297 0 .459.01.575l.002.014h.013C9.14 5 9.304 5 9.6 5h4.8c.297 0 .459 0 .575-.01l.014-.001v-.014C15 4.86 15 4.697 15 4.4v-.8zM7 8.705h10v2H7v-2zm0 4h8v2H7v-2zm0 4h4v2H7v-2z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
BigArticleBoardFilled.displayName = 'BigArticleBoardFilled';
|
|
20
|
+
export default BigArticleBoardFilled;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
function MailHollowFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M6.759 3H17.24c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 011.748 1.748c.054.106.1.213.142.323l-9.431 6.38-.013.01c-.73.51-.884.598-1.02.632a1 1 0 01-.484 0c-.136-.034-.29-.122-1.017-.63L1.396 5.264l.04-.081a4 4 0 011.748-1.748c.485-.247 1.002-.346 1.564-.392C5.29 3 5.954 3 6.758 3z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M1.01 7.443C1 7.833 1 8.27 1 8.76v6.482c0 .805 0 1.47.044 2.01.046.563.145 1.08.392 1.565a4 4 0 001.748 1.748c.485.247 1.002.346 1.564.392C5.29 21 5.954 21 6.758 21h10.483c.805 0 1.47 0 2.01-.044.563-.046 1.08-.145 1.565-.392a4 4 0 001.748-1.748c.247-.485.346-1.002.392-1.564.044-.541.044-1.206.044-2.01V8.758c0-.375 0-.719-.004-1.034l-8.594 5.814-.109.077c-.544.382-1.023.718-1.567.854a3 3 0 01-1.452 0c-.544-.136-1.022-.472-1.567-.854l-.12-.085L1.01 7.443z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
MailHollowFilled.displayName = 'MailHollowFilled';
|
|
22
|
+
export default MailHollowFilled;
|
package/src/index.tsx
CHANGED
|
@@ -23,6 +23,7 @@ export { default as BankCardFilled } from './BankCardFilled';
|
|
|
23
23
|
export { default as BarChartFilled } from './BarChartFilled';
|
|
24
24
|
export { default as BarsOutlined } from './BarsOutlined';
|
|
25
25
|
export { default as BellOutlined } from './BellOutlined';
|
|
26
|
+
export { default as BigArticleBoardFilled } from './BigArticleBoardFilled';
|
|
26
27
|
export { default as BindChainFilled } from './BindChainFilled';
|
|
27
28
|
export { default as BindChainOutlined } from './BindChainOutlined';
|
|
28
29
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
@@ -216,6 +217,7 @@ export { default as LoopFolderFilled } from './LoopFolderFilled';
|
|
|
216
217
|
export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
217
218
|
export { default as LoopOutlined } from './LoopOutlined';
|
|
218
219
|
export { default as MailFilled } from './MailFilled';
|
|
220
|
+
export { default as MailHollowFilled } from './MailHollowFilled';
|
|
219
221
|
export { default as MailOutlined } from './MailOutlined';
|
|
220
222
|
export { default as MediumVolumeOutlined } from './MediumVolumeOutlined';
|
|
221
223
|
export { default as MenuListOutlined } from './MenuListOutlined';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
2
|
+
<path
|
|
3
|
+
d="M21 11.2222V19.1111C21 19.3469 20.9052 19.573 20.7364 19.7397C20.5676 19.9064 20.3387 20 20.1 20H3.9C3.66131 20 3.43239 19.9064 3.2636 19.7397C3.09482 19.573 3 19.3469 3 19.1111V11.2222H21ZM21 9.44444H3V5.88889C3 5.65314 3.09482 5.42705 3.2636 5.26035C3.43239 5.09365 3.66131 5 3.9 5H20.1C20.3387 5 20.5676 5.09365 20.7364 5.26035C20.9052 5.42705 21 5.65314 21 5.88889V9.44444ZM14.7 15.5556V17.3333H18.3V15.5556H14.7Z"
|
|
4
|
+
fill="currentColor" />
|
|
3
5
|
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M8.86187 1.01695C9.07002 0.999943 9.31582 0.999973 9.5682 1L14.432 1C14.6844 0.999973 14.9302 0.999943 15.1383 1.01695C15.3669 1.03563 15.6367 1.07969 15.9081 1.21799C16.2844 1.40974 16.5904 1.7157 16.7821 2.09202C16.9204 2.36345 16.9645 2.63318 16.9832 2.86178C16.987 2.90871 16.99 2.95756 16.9923 3.00797C17.3874 3.02072 17.7259 3.05337 18.0354 3.1363C19.4157 3.50617 20.4939 4.58436 20.8638 5.96473C21.0009 6.47638 21.0006 7.06704 21.0001 7.86243L21.0001 17.2413C21.0001 18.0463 21.0001 18.7106 20.9559 19.2518C20.91 19.8139 20.8114 20.3306 20.5641 20.816C20.1806 21.5686 19.5687 22.1805 18.8161 22.564C18.3307 22.8113 17.814 22.9099 17.2519 22.9558C16.7107 23 16.0464 23 15.2414 23H8.75877C7.95381 23 7.28946 23 6.74827 22.9558C6.18617 22.9099 5.66947 22.8113 5.18413 22.564C4.43149 22.1805 3.81956 21.5686 3.43607 20.816C3.18878 20.3306 3.09022 19.8139 3.04429 19.2518C3.00007 18.7106 3.00008 18.0463 3.0001 17.2413L3.00005 7.86242C2.99962 7.06704 2.9993 6.47638 3.13639 5.96473C3.50626 4.58436 4.58445 3.50617 5.96482 3.1363C6.27434 3.05337 6.61277 3.02072 7.00794 3.00796C7.01024 2.95756 7.01321 2.90871 7.01704 2.86178C7.03572 2.63318 7.07979 2.36345 7.21808 2.09202C7.40983 1.7157 7.71579 1.40974 8.09212 1.21799C8.36354 1.07969 8.63327 1.03563 8.86187 1.01695ZM15.0001 3.60001C15.0001 3.30348 14.9993 3.14122 14.9898 3.02464L14.9886 3.01145L14.9755 3.01031C14.8589 3.00078 14.6966 3.00001 14.4001 3.00001H9.6001C9.30357 3.00001 9.14132 3.00078 9.02473 3.01031L9.01154 3.01145L9.0104 3.02464C9.00087 3.14122 9.0001 3.30348 9.0001 3.60001V4.40001C9.0001 4.69653 9.00087 4.85879 9.0104 4.97537L9.01154 4.98856L9.02473 4.9897C9.14131 4.99923 9.30357 5.00001 9.6001 5.00001H14.4001C14.6966 5.00001 14.8589 4.99923 14.9755 4.9897L14.9886 4.98856L14.9898 4.97537C14.9993 4.85879 15.0001 4.69653 15.0001 4.40001V3.60001ZM7 8.70508H17V10.7051H7V8.70508ZM7 12.7051H15V14.7051H7V12.7051ZM7 16.7051H11V18.7051H7V16.7051Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M6.7587 3H17.2413C18.0463 2.99999 18.7106 2.99998 19.2518 3.0442C19.8139 3.09012 20.3306 3.18868 20.816 3.43598C21.5686 3.81947 22.1805 4.43139 22.564 5.18404C22.618 5.29 22.6649 5.39746 22.7057 5.50656L13.2748 11.8872L13.2617 11.8962C12.5327 12.4064 12.3783 12.495 12.2419 12.529C12.0831 12.5686 11.917 12.5686 11.7582 12.529C11.622 12.495 11.4677 12.4067 10.7411 11.8981L1.39632 5.2648C1.4091 5.23778 1.42231 5.21086 1.43598 5.18404C1.81947 4.43139 2.43139 3.81947 3.18404 3.43598C3.66938 3.18868 4.18608 3.09012 4.74818 3.0442C5.28936 2.99998 5.95375 2.99999 6.7587 3Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M1.0099 7.44315C0.999987 7.83235 0.999993 8.26955 1 8.75867V15.2413C0.999988 16.0463 0.999979 16.7106 1.0442 17.2518C1.09012 17.8139 1.18868 18.3306 1.43598 18.816C1.81947 19.5686 2.43139 20.1805 3.18404 20.564C3.66938 20.8113 4.18608 20.9099 4.74818 20.9558C5.28937 21 5.95372 21 6.75868 21H17.2413C18.0463 21 18.7106 21 19.2518 20.9558C19.8139 20.9099 20.3306 20.8113 20.816 20.564C21.5686 20.1805 22.1805 19.5686 22.564 18.816C22.8113 18.3306 22.9099 17.8139 22.9558 17.2518C23 16.7106 23 16.0463 23 15.2413V8.75868C23 8.38437 23 8.04046 22.9956 7.7252L14.4021 13.5392L14.2932 13.6156C13.7486 13.998 13.2703 14.3338 12.7256 14.4696C12.2492 14.5884 11.7509 14.5884 11.2744 14.4696C10.7298 14.3338 10.2515 13.998 9.70685 13.6156L9.58612 13.5309L1.0099 7.44315Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
2
|
+
<path
|
|
3
|
+
d="M21 11.2222V19.1111C21 19.3469 20.9052 19.573 20.7364 19.7397C20.5676 19.9064 20.3387 20 20.1 20H3.9C3.66131 20 3.43239 19.9064 3.2636 19.7397C3.09482 19.573 3 19.3469 3 19.1111V11.2222H21ZM21 9.44444H3V5.88889C3 5.65314 3.09482 5.42705 3.2636 5.26035C3.43239 5.09365 3.66131 5 3.9 5H20.1C20.3387 5 20.5676 5.09365 20.7364 5.26035C20.9052 5.42705 21 5.65314 21 5.88889V9.44444ZM14.7 15.5556V17.3333H18.3V15.5556H14.7Z"
|
|
4
|
+
fill="currentColor" />
|
|
3
5
|
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M8.86187 1.01695C9.07002 0.999943 9.31582 0.999973 9.5682 1L14.432 1C14.6844 0.999973 14.9302 0.999943 15.1383 1.01695C15.3669 1.03563 15.6367 1.07969 15.9081 1.21799C16.2844 1.40974 16.5904 1.7157 16.7821 2.09202C16.9204 2.36345 16.9645 2.63318 16.9832 2.86178C16.987 2.90871 16.99 2.95756 16.9923 3.00797C17.3874 3.02072 17.7259 3.05337 18.0354 3.1363C19.4157 3.50617 20.4939 4.58436 20.8638 5.96473C21.0009 6.47638 21.0006 7.06704 21.0001 7.86243L21.0001 17.2413C21.0001 18.0463 21.0001 18.7106 20.9559 19.2518C20.91 19.8139 20.8114 20.3306 20.5641 20.816C20.1806 21.5686 19.5687 22.1805 18.8161 22.564C18.3307 22.8113 17.814 22.9099 17.2519 22.9558C16.7107 23 16.0464 23 15.2414 23H8.75877C7.95381 23 7.28946 23 6.74827 22.9558C6.18617 22.9099 5.66947 22.8113 5.18413 22.564C4.43149 22.1805 3.81956 21.5686 3.43607 20.816C3.18878 20.3306 3.09022 19.8139 3.04429 19.2518C3.00007 18.7106 3.00008 18.0463 3.0001 17.2413L3.00005 7.86242C2.99962 7.06704 2.9993 6.47638 3.13639 5.96473C3.50626 4.58436 4.58445 3.50617 5.96482 3.1363C6.27434 3.05337 6.61277 3.02072 7.00794 3.00796C7.01024 2.95756 7.01321 2.90871 7.01704 2.86178C7.03572 2.63318 7.07979 2.36345 7.21808 2.09202C7.40983 1.7157 7.71579 1.40974 8.09212 1.21799C8.36354 1.07969 8.63327 1.03563 8.86187 1.01695ZM15.0001 3.60001C15.0001 3.30348 14.9993 3.14122 14.9898 3.02464L14.9886 3.01145L14.9755 3.01031C14.8589 3.00078 14.6966 3.00001 14.4001 3.00001H9.6001C9.30357 3.00001 9.14132 3.00078 9.02473 3.01031L9.01154 3.01145L9.0104 3.02464C9.00087 3.14122 9.0001 3.30348 9.0001 3.60001V4.40001C9.0001 4.69653 9.00087 4.85879 9.0104 4.97537L9.01154 4.98856L9.02473 4.9897C9.14131 4.99923 9.30357 5.00001 9.6001 5.00001H14.4001C14.6966 5.00001 14.8589 4.99923 14.9755 4.9897L14.9886 4.98856L14.9898 4.97537C14.9993 4.85879 15.0001 4.69653 15.0001 4.40001V3.60001ZM7 8.70508H17V10.7051H7V8.70508ZM7 12.7051H15V14.7051H7V12.7051ZM7 16.7051H11V18.7051H7V16.7051Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M6.7587 3H17.2413C18.0463 2.99999 18.7106 2.99998 19.2518 3.0442C19.8139 3.09012 20.3306 3.18868 20.816 3.43598C21.5686 3.81947 22.1805 4.43139 22.564 5.18404C22.618 5.29 22.6649 5.39746 22.7057 5.50656L13.2748 11.8872L13.2617 11.8962C12.5327 12.4064 12.3783 12.495 12.2419 12.529C12.0831 12.5686 11.917 12.5686 11.7582 12.529C11.622 12.495 11.4677 12.4067 10.7411 11.8981L1.39632 5.2648C1.4091 5.23778 1.42231 5.21086 1.43598 5.18404C1.81947 4.43139 2.43139 3.81947 3.18404 3.43598C3.66938 3.18868 4.18608 3.09012 4.74818 3.0442C5.28936 2.99998 5.95375 2.99999 6.7587 3Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M1.0099 7.44315C0.999987 7.83235 0.999993 8.26955 1 8.75867V15.2413C0.999988 16.0463 0.999979 16.7106 1.0442 17.2518C1.09012 17.8139 1.18868 18.3306 1.43598 18.816C1.81947 19.5686 2.43139 20.1805 3.18404 20.564C3.66938 20.8113 4.18608 20.9099 4.74818 20.9558C5.28937 21 5.95372 21 6.75868 21H17.2413C18.0463 21 18.7106 21 19.2518 20.9558C19.8139 20.9099 20.3306 20.8113 20.816 20.564C21.5686 20.1805 22.1805 19.5686 22.564 18.816C22.8113 18.3306 22.9099 17.8139 22.9558 17.2518C23 16.7106 23 16.0463 23 15.2413V8.75868C23 8.38437 23 8.04046 22.9956 7.7252L14.4021 13.5392L14.2932 13.6156C13.7486 13.998 13.2703 14.3338 12.7256 14.4696C12.2492 14.5884 11.7509 14.5884 11.2744 14.4696C10.7298 14.3338 10.2515 13.998 9.70685 13.6156L9.58612 13.5309L1.0099 7.44315Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
</svg>
|