a-icons 1.0.25 → 1.0.29
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/ArticleBoardFilled.d.ts +6 -0
- package/es/ArticleBoardFilled.js +40 -0
- package/es/BusinessCardFilled.d.ts +6 -0
- package/es/BusinessCardFilled.js +40 -0
- package/es/EditSimpleOutlined.d.ts +6 -0
- package/es/EditSimpleOutlined.js +40 -0
- package/es/StampFilled.d.ts +6 -0
- package/es/StampFilled.js +53 -0
- package/es/index.d.ts +4 -0
- package/es/index.js +4 -0
- package/lib/ArticleBoardFilled.d.ts +6 -0
- package/lib/ArticleBoardFilled.js +87 -0
- package/lib/BusinessCardFilled.d.ts +6 -0
- package/lib/BusinessCardFilled.js +87 -0
- package/lib/EditSimpleOutlined.d.ts +6 -0
- package/lib/EditSimpleOutlined.js +87 -0
- package/lib/StampFilled.d.ts +6 -0
- package/lib/StampFilled.js +100 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +36 -0
- package/package.json +2 -2
- package/src/ArticleBoardFilled.tsx +20 -0
- package/src/BusinessCardFilled.tsx +20 -0
- package/src/CameraOutlined.tsx +1 -8
- package/src/CategoryFilled.tsx +1 -8
- package/src/EditSimpleOutlined.tsx +20 -0
- package/src/SearchDocumentFilled.tsx +1 -4
- package/src/StampFilled.tsx +18 -0
- package/src/WalletFilled.tsx +1 -4
- package/src/index.tsx +4 -0
- package/svgs/filled/article-board-filled.svg +3 -0
- package/svgs/filled/business-card-filled.svg +3 -0
- package/svgs/filled/stamp-filled.svg +6 -0
- package/svgs/outlined/edit-simple-outlined.svg +4 -0
- package/tmpAllSvgs/article-board-filled.svg +3 -0
- package/tmpAllSvgs/business-card-filled.svg +3 -0
- package/tmpAllSvgs/edit-simple-outlined.svg +4 -0
- package/tmpAllSvgs/stamp-filled.svg +6 -0
|
@@ -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 ArticleBoardFilled(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: "M15.074 4.527v-.154c0-.758-.614-1.373-1.373-1.373H9.599c-.759 0-1.374.615-1.374 1.373V4.5a3.804 3.804 0 00-3.487 3.813v9.614A3.813 3.813 0 008.56 21.74h6.19a3.813 3.813 0 003.821-3.813V8.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V5.45h-4.12V4.373zm2.098 5.078H8.878a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.98 6.822H8.876a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.799-2.647h5.548a.678.678 0 100-1.355H8.877a.678.678 0 000 1.355z",
|
|
30
|
+
fill: "currentColor"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
35
|
+
component: IconNode
|
|
36
|
+
}));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
ArticleBoardFilled.displayName = 'ArticleBoardFilled';
|
|
40
|
+
export default ArticleBoardFilled;
|
|
@@ -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 BusinessCardFilled(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: "M2 3a2 2 0 00-2 2v14a2 2 0 002 2h20a2 2 0 002-2V5a2 2 0 00-2-2H2zm5.004 3.8H6.46c-1.177.021-2.12.981-2.12 2.158v.659a2.435 2.435 0 104.87 0v-.659A2.167 2.167 0 007.004 6.8zm.736 2.817a1.002 1.002 0 11-2.005 0v-.659c0-.4.325-.725.725-.725h.544c.403 0 .73.323.736.725v.659zm2.596 4.535a1.986 1.986 0 00-1.909-1.604h-3.38a1.976 1.976 0 00-1.91 1.604l-.095.44a2.062 2.062 0 00.43 1.727c.362.453.91.716 1.49.716h3.541a1.91 1.91 0 001.5-.716 2.09 2.09 0 00.42-1.728l-.087-.44zm-1.441 1.26a.544.544 0 01-.392.191H4.961a.496.496 0 01-.382-.19.601.601 0 01-.124-.536l.086-.439a.544.544 0 01.506-.458h3.37a.554.554 0 01.516.458l.086.44a.668.668 0 01-.124.534zM12.8 9a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7zm.7 2.3a.7.7 0 100 1.4h7a.7.7 0 100-1.4h-7zm-.7 3.7a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7z",
|
|
30
|
+
fill: "currentColor"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
35
|
+
component: IconNode
|
|
36
|
+
}));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
BusinessCardFilled.displayName = 'BusinessCardFilled';
|
|
40
|
+
export default BusinessCardFilled;
|
|
@@ -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 EditSimpleOutlined(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.706 5H7a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-5.52M12 12l7-7",
|
|
28
|
+
stroke: "currentColor",
|
|
29
|
+
strokeWidth: 1.4,
|
|
30
|
+
strokeLinecap: "round"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
35
|
+
component: IconNode
|
|
36
|
+
}));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
EditSimpleOutlined.displayName = 'EditSimpleOutlined';
|
|
40
|
+
export default EditSimpleOutlined;
|
|
@@ -0,0 +1,53 @@
|
|
|
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 StampFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "currentColor",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
27
|
+
x: 4,
|
|
28
|
+
y: 13,
|
|
29
|
+
width: 16,
|
|
30
|
+
height: 5,
|
|
31
|
+
rx: 2
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M10 10h4v4h-4z"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
35
|
+
cx: 12,
|
|
36
|
+
cy: 7,
|
|
37
|
+
r: 4
|
|
38
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
39
|
+
x: 5,
|
|
40
|
+
y: 19,
|
|
41
|
+
width: 14,
|
|
42
|
+
height: 2,
|
|
43
|
+
rx: 1
|
|
44
|
+
}));
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
48
|
+
component: IconNode
|
|
49
|
+
}));
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
StampFilled.displayName = 'StampFilled';
|
|
53
|
+
export default StampFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
2
2
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
3
|
+
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
3
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
4
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
|
+
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
5
7
|
export { default as CameraFilled } from './CameraFilled';
|
|
6
8
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
7
9
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -24,6 +26,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
|
24
26
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
25
27
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
26
28
|
export { default as EditFilled } from './EditFilled';
|
|
29
|
+
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
27
30
|
export { default as FileFilled } from './FileFilled';
|
|
28
31
|
export { default as FileOutlined } from './FileOutlined';
|
|
29
32
|
export { default as FormFilled } from './FormFilled';
|
|
@@ -70,6 +73,7 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
70
73
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
71
74
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
72
75
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
76
|
+
export { default as StampFilled } from './StampFilled';
|
|
73
77
|
export { default as StarFilled } from './StarFilled';
|
|
74
78
|
export { default as StarOutlined } from './StarOutlined';
|
|
75
79
|
export { default as StopFilled } from './StopFilled';
|
package/es/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
2
2
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
3
|
+
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
3
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
4
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
|
+
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
5
7
|
export { default as CameraFilled } from './CameraFilled';
|
|
6
8
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
7
9
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -24,6 +26,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
|
24
26
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
25
27
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
26
28
|
export { default as EditFilled } from './EditFilled';
|
|
29
|
+
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
27
30
|
export { default as FileFilled } from './FileFilled';
|
|
28
31
|
export { default as FileOutlined } from './FileOutlined';
|
|
29
32
|
export { default as FormFilled } from './FormFilled';
|
|
@@ -70,6 +73,7 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
70
73
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
71
74
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
72
75
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
76
|
+
export { default as StampFilled } from './StampFilled';
|
|
73
77
|
export { default as StarFilled } from './StarFilled';
|
|
74
78
|
export { default as StarOutlined } from './StarOutlined';
|
|
75
79
|
export { default as StopFilled } from './StopFilled';
|
|
@@ -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 ArticleBoardFilled(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: "M15.074 4.527v-.154c0-.758-.614-1.373-1.373-1.373H9.599c-.759 0-1.374.615-1.374 1.373V4.5a3.804 3.804 0 00-3.487 3.813v9.614A3.813 3.813 0 008.56 21.74h6.19a3.813 3.813 0 003.821-3.813V8.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V5.45h-4.12V4.373zm2.098 5.078H8.878a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.98 6.822H8.876a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.799-2.647h5.548a.678.678 0 100-1.355H8.877a.678.678 0 000 1.355z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
}));
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
82
|
+
component: IconNode
|
|
83
|
+
}));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
ArticleBoardFilled.displayName = 'ArticleBoardFilled';
|
|
87
|
+
exports["default"] = ArticleBoardFilled;
|
|
@@ -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 BusinessCardFilled(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: "M2 3a2 2 0 00-2 2v14a2 2 0 002 2h20a2 2 0 002-2V5a2 2 0 00-2-2H2zm5.004 3.8H6.46c-1.177.021-2.12.981-2.12 2.158v.659a2.435 2.435 0 104.87 0v-.659A2.167 2.167 0 007.004 6.8zm.736 2.817a1.002 1.002 0 11-2.005 0v-.659c0-.4.325-.725.725-.725h.544c.403 0 .73.323.736.725v.659zm2.596 4.535a1.986 1.986 0 00-1.909-1.604h-3.38a1.976 1.976 0 00-1.91 1.604l-.095.44a2.062 2.062 0 00.43 1.727c.362.453.91.716 1.49.716h3.541a1.91 1.91 0 001.5-.716 2.09 2.09 0 00.42-1.728l-.087-.44zm-1.441 1.26a.544.544 0 01-.392.191H4.961a.496.496 0 01-.382-.19.601.601 0 01-.124-.536l.086-.439a.544.544 0 01.506-.458h3.37a.554.554 0 01.516.458l.086.44a.668.668 0 01-.124.534zM12.8 9a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7zm.7 2.3a.7.7 0 100 1.4h7a.7.7 0 100-1.4h-7zm-.7 3.7a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
}));
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
82
|
+
component: IconNode
|
|
83
|
+
}));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
BusinessCardFilled.displayName = 'BusinessCardFilled';
|
|
87
|
+
exports["default"] = BusinessCardFilled;
|
|
@@ -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 EditSimpleOutlined(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.706 5H7a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-5.52M12 12l7-7",
|
|
75
|
+
stroke: "currentColor",
|
|
76
|
+
strokeWidth: 1.4,
|
|
77
|
+
strokeLinecap: "round"
|
|
78
|
+
}));
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
82
|
+
component: IconNode
|
|
83
|
+
}));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
EditSimpleOutlined.displayName = 'EditSimpleOutlined';
|
|
87
|
+
exports["default"] = EditSimpleOutlined;
|
|
@@ -0,0 +1,100 @@
|
|
|
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 StampFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "currentColor",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("rect", {
|
|
74
|
+
x: 4,
|
|
75
|
+
y: 13,
|
|
76
|
+
width: 16,
|
|
77
|
+
height: 5,
|
|
78
|
+
rx: 2
|
|
79
|
+
}), React.createElement("path", {
|
|
80
|
+
d: "M10 10h4v4h-4z"
|
|
81
|
+
}), React.createElement("circle", {
|
|
82
|
+
cx: 12,
|
|
83
|
+
cy: 7,
|
|
84
|
+
r: 4
|
|
85
|
+
}), React.createElement("rect", {
|
|
86
|
+
x: 5,
|
|
87
|
+
y: 19,
|
|
88
|
+
width: 14,
|
|
89
|
+
height: 2,
|
|
90
|
+
rx: 1
|
|
91
|
+
}));
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
95
|
+
component: IconNode
|
|
96
|
+
}));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
StampFilled.displayName = 'StampFilled';
|
|
100
|
+
exports["default"] = StampFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
2
2
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
3
|
+
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
3
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
4
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
|
+
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
5
7
|
export { default as CameraFilled } from './CameraFilled';
|
|
6
8
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
7
9
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -24,6 +26,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
|
24
26
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
25
27
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
26
28
|
export { default as EditFilled } from './EditFilled';
|
|
29
|
+
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
27
30
|
export { default as FileFilled } from './FileFilled';
|
|
28
31
|
export { default as FileOutlined } from './FileOutlined';
|
|
29
32
|
export { default as FormFilled } from './FormFilled';
|
|
@@ -70,6 +73,7 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
70
73
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
71
74
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
72
75
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
76
|
+
export { default as StampFilled } from './StampFilled';
|
|
73
77
|
export { default as StarFilled } from './StarFilled';
|
|
74
78
|
export { default as StarOutlined } from './StarOutlined';
|
|
75
79
|
export { default as StopFilled } from './StopFilled';
|
package/lib/index.js
CHANGED
|
@@ -22,6 +22,15 @@ Object.defineProperty(exports, "AlertTriangleOutlined", {
|
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
+
var ArticleBoardFilled_1 = require("./ArticleBoardFilled");
|
|
26
|
+
|
|
27
|
+
Object.defineProperty(exports, "ArticleBoardFilled", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function get() {
|
|
30
|
+
return ArticleBoardFilled_1["default"];
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
|
|
25
34
|
var BrokenLineFilled_1 = require("./BrokenLineFilled");
|
|
26
35
|
|
|
27
36
|
Object.defineProperty(exports, "BrokenLineFilled", {
|
|
@@ -40,6 +49,15 @@ Object.defineProperty(exports, "BrokenLineOutlined", {
|
|
|
40
49
|
}
|
|
41
50
|
});
|
|
42
51
|
|
|
52
|
+
var BusinessCardFilled_1 = require("./BusinessCardFilled");
|
|
53
|
+
|
|
54
|
+
Object.defineProperty(exports, "BusinessCardFilled", {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: function get() {
|
|
57
|
+
return BusinessCardFilled_1["default"];
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
|
|
43
61
|
var CameraFilled_1 = require("./CameraFilled");
|
|
44
62
|
|
|
45
63
|
Object.defineProperty(exports, "CameraFilled", {
|
|
@@ -238,6 +256,15 @@ Object.defineProperty(exports, "EditFilled", {
|
|
|
238
256
|
}
|
|
239
257
|
});
|
|
240
258
|
|
|
259
|
+
var EditSimpleOutlined_1 = require("./EditSimpleOutlined");
|
|
260
|
+
|
|
261
|
+
Object.defineProperty(exports, "EditSimpleOutlined", {
|
|
262
|
+
enumerable: true,
|
|
263
|
+
get: function get() {
|
|
264
|
+
return EditSimpleOutlined_1["default"];
|
|
265
|
+
}
|
|
266
|
+
});
|
|
267
|
+
|
|
241
268
|
var FileFilled_1 = require("./FileFilled");
|
|
242
269
|
|
|
243
270
|
Object.defineProperty(exports, "FileFilled", {
|
|
@@ -652,6 +679,15 @@ Object.defineProperty(exports, "SettingSquareOutlined", {
|
|
|
652
679
|
}
|
|
653
680
|
});
|
|
654
681
|
|
|
682
|
+
var StampFilled_1 = require("./StampFilled");
|
|
683
|
+
|
|
684
|
+
Object.defineProperty(exports, "StampFilled", {
|
|
685
|
+
enumerable: true,
|
|
686
|
+
get: function get() {
|
|
687
|
+
return StampFilled_1["default"];
|
|
688
|
+
}
|
|
689
|
+
});
|
|
690
|
+
|
|
655
691
|
var StarFilled_1 = require("./StarFilled");
|
|
656
692
|
|
|
657
693
|
Object.defineProperty(exports, "StarFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.29",
|
|
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": "d08a0b1e3576c8ef14019db60abccea5566519d8"
|
|
26
26
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function ArticleBoardFilled(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="M15.074 4.527v-.154c0-.758-.614-1.373-1.373-1.373H9.599c-.759 0-1.374.615-1.374 1.373V4.5a3.804 3.804 0 00-3.487 3.813v9.614A3.813 3.813 0 008.56 21.74h6.19a3.813 3.813 0 003.821-3.813V8.313a3.813 3.813 0 00-3.497-3.786zm-5.476-.154h4.12V5.45h-4.12V4.373zm2.098 5.078H8.878a.678.678 0 000 1.356h2.82a.678.678 0 100-1.356zm1.98 6.822H8.876a.678.678 0 010-1.355h4.798a.678.678 0 010 1.355zm-4.799-2.647h5.548a.678.678 0 100-1.355H8.877a.678.678 0 000 1.355z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
ArticleBoardFilled.displayName = 'ArticleBoardFilled';
|
|
20
|
+
export default ArticleBoardFilled;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function BusinessCardFilled(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="M2 3a2 2 0 00-2 2v14a2 2 0 002 2h20a2 2 0 002-2V5a2 2 0 00-2-2H2zm5.004 3.8H6.46c-1.177.021-2.12.981-2.12 2.158v.659a2.435 2.435 0 104.87 0v-.659A2.167 2.167 0 007.004 6.8zm.736 2.817a1.002 1.002 0 11-2.005 0v-.659c0-.4.325-.725.725-.725h.544c.403 0 .73.323.736.725v.659zm2.596 4.535a1.986 1.986 0 00-1.909-1.604h-3.38a1.976 1.976 0 00-1.91 1.604l-.095.44a2.062 2.062 0 00.43 1.727c.362.453.91.716 1.49.716h3.541a1.91 1.91 0 001.5-.716 2.09 2.09 0 00.42-1.728l-.087-.44zm-1.441 1.26a.544.544 0 01-.392.191H4.961a.496.496 0 01-.382-.19.601.601 0 01-.124-.536l.086-.439a.544.544 0 01.506-.458h3.37a.554.554 0 01.516.458l.086.44a.668.668 0 01-.124.534zM12.8 9a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7zm.7 2.3a.7.7 0 100 1.4h7a.7.7 0 100-1.4h-7zm-.7 3.7a.7.7 0 01.7-.7h7a.7.7 0 110 1.4h-7a.7.7 0 01-.7-.7z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
BusinessCardFilled.displayName = 'BusinessCardFilled';
|
|
20
|
+
export default BusinessCardFilled;
|
package/src/CameraOutlined.tsx
CHANGED
|
@@ -16,14 +16,7 @@ function CameraOutlined(componentProps: IconProps) {
|
|
|
16
16
|
d="M7.716 12.19a4.21 4.21 0 118.42 0 4.21 4.21 0 01-8.42 0zm1.579 0a2.632 2.632 0 105.263 0 2.632 2.632 0 00-5.263 0z"
|
|
17
17
|
fill="currentColor"
|
|
18
18
|
/>
|
|
19
|
-
<rect
|
|
20
|
-
x={16.137}
|
|
21
|
-
y={6.916}
|
|
22
|
-
width={2.105}
|
|
23
|
-
height={2.116}
|
|
24
|
-
rx={0.5}
|
|
25
|
-
fill="currentColor"
|
|
26
|
-
/>
|
|
19
|
+
<rect x={16.137} y={6.916} width={2.105} height={2.116} rx={0.5} fill="currentColor" />
|
|
27
20
|
</svg>
|
|
28
21
|
);
|
|
29
22
|
|
package/src/CategoryFilled.tsx
CHANGED
|
@@ -7,14 +7,7 @@ function CategoryFilled(componentProps: IconProps) {
|
|
|
7
7
|
<rect x={2.33} y={2} width={8.67} height={6.67} rx={2.25} fill="currentColor" />
|
|
8
8
|
<rect x={13.67} y={2} width={8} height={11.33} rx={2.25} fill="currentColor" />
|
|
9
9
|
<rect x={13.67} y={16} width={8} height={6} rx={2.25} fill="currentColor" />
|
|
10
|
-
<rect
|
|
11
|
-
x={2.33}
|
|
12
|
-
y={11.33}
|
|
13
|
-
width={8.67}
|
|
14
|
-
height={10.67}
|
|
15
|
-
rx={2.25}
|
|
16
|
-
fill="currentColor"
|
|
17
|
-
/>
|
|
10
|
+
<rect x={2.33} y={11.33} width={8.67} height={10.67} rx={2.25} fill="currentColor" />
|
|
18
11
|
</svg>
|
|
19
12
|
);
|
|
20
13
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function EditSimpleOutlined(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.706 5H7a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-5.52M12 12l7-7"
|
|
9
|
+
stroke="currentColor"
|
|
10
|
+
strokeWidth={1.4}
|
|
11
|
+
strokeLinecap="round"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
EditSimpleOutlined.displayName = 'EditSimpleOutlined';
|
|
20
|
+
export default EditSimpleOutlined;
|
|
@@ -14,10 +14,7 @@ function SearchDocumentFilled(componentProps: IconProps) {
|
|
|
14
14
|
d="M14.07 10.24h4.78a.5.5 0 01.5.5v6.92a4 4 0 01-4 4H8.46a4 4 0 01-4-4V6.5a4 4 0 014-4h2.67a.51.51 0 01.5.5v4.78a2.45 2.45 0 002.44 2.46zm-5.22 8.04a2.87 2.87 0 001.51.44l.04-.05a2.84 2.84 0 10-2.84-2.84c.002.461.119.915.34 1.32a.996.996 0 00-.13.09l-1.06 1.1a.75.75 0 00.54 1.27.7.7 0 00.54-.23l1.06-1.1z"
|
|
15
15
|
fill="currentColor"
|
|
16
16
|
/>
|
|
17
|
-
<path
|
|
18
|
-
d="M10.36 14.53a1.35 1.35 0 10-.02 2.7 1.35 1.35 0 00.02-2.7z"
|
|
19
|
-
fill="currentColor"
|
|
20
|
-
/>
|
|
17
|
+
<path d="M10.36 14.53a1.35 1.35 0 10-.02 2.7 1.35 1.35 0 00.02-2.7z" fill="currentColor" />
|
|
21
18
|
</svg>
|
|
22
19
|
);
|
|
23
20
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function StampFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<rect x={4} y={13} width={16} height={5} rx={2} />
|
|
8
|
+
<path d="M10 10h4v4h-4z" />
|
|
9
|
+
<circle cx={12} cy={7} r={4} />
|
|
10
|
+
<rect x={5} y={19} width={14} height={2} rx={1} />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
StampFilled.displayName = 'StampFilled';
|
|
18
|
+
export default StampFilled;
|
package/src/WalletFilled.tsx
CHANGED
|
@@ -4,10 +4,7 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
|
4
4
|
function WalletFilled(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
-
<path
|
|
8
|
-
d="M18.314 11.22a.676.676 0 100 1.351H22V11.2h-.105l-3.58.02z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
7
|
+
<path d="M18.314 11.22a.676.676 0 100 1.351H22V11.2h-.105l-3.58.02z" fill="currentColor" />
|
|
11
8
|
<path
|
|
12
9
|
d="M21.895 14.381h-3.58a2.486 2.486 0 010-4.971H22v-1.6A3.81 3.81 0 0018.19 4H5.81A3.81 3.81 0 002 7.81v8.171a3.81 3.81 0 003.81 3.81h12.38A3.81 3.81 0 0022 15.98v-1.62l-.105.02z"
|
|
13
10
|
fill="currentColor"
|
package/src/index.tsx
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
2
2
|
export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
|
|
3
|
+
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
3
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
4
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
|
+
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
5
7
|
export { default as CameraFilled } from './CameraFilled';
|
|
6
8
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
7
9
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -24,6 +26,7 @@ export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
|
24
26
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
25
27
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
26
28
|
export { default as EditFilled } from './EditFilled';
|
|
29
|
+
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
27
30
|
export { default as FileFilled } from './FileFilled';
|
|
28
31
|
export { default as FileOutlined } from './FileOutlined';
|
|
29
32
|
export { default as FormFilled } from './FormFilled';
|
|
@@ -70,6 +73,7 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
70
73
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
71
74
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
72
75
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
76
|
+
export { default as StampFilled } from './StampFilled';
|
|
73
77
|
export { default as StarFilled } from './StarFilled';
|
|
74
78
|
export { default as StarOutlined } from './StarOutlined';
|
|
75
79
|
export { default as StopFilled } from './StopFilled';
|
|
@@ -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="M15.0744 4.52703V4.37342C15.0744 3.6149 14.4595 3 13.701 3H9.59881C8.84029 3 8.22539 3.6149 8.22539 4.37342V4.49992C6.24541 4.66507 4.72602 6.32616 4.73761 8.31298V17.9269C4.73761 18.9398 5.14058 19.911 5.85763 20.6264C6.57467 21.3417 7.54686 21.7424 8.55971 21.74H14.7491C15.762 21.7424 16.7342 21.3417 17.4512 20.6264C18.1683 19.911 18.5712 18.9398 18.5712 17.9269V8.31298C18.564 6.33506 17.0455 4.69106 15.0744 4.52703ZM9.59779 4.37342H13.7181V5.44867H9.59779V4.37342ZM11.6965 9.45148H8.87742C8.50315 9.45148 8.19974 9.75489 8.19974 10.1292C8.19974 10.5034 8.50315 10.8068 8.87742 10.8068H11.6965C12.0708 10.8068 12.3742 10.5034 12.3742 10.1292C12.3742 9.75489 12.0708 9.45148 11.6965 9.45148ZM13.6754 16.2734H8.87742C8.50315 16.2734 8.19974 15.97 8.19974 15.5957C8.19974 15.2215 8.50315 14.918 8.87742 14.918H13.6754C14.0496 14.918 14.353 15.2215 14.353 15.5957C14.353 15.97 14.0496 16.2734 13.6754 16.2734ZM8.87742 13.626H14.4253C14.7996 13.626 15.103 13.3226 15.103 12.9483C15.103 12.574 14.7996 12.2706 14.4253 12.2706H8.87742C8.50315 12.2706 8.19974 12.574 8.19974 12.9483C8.19974 13.3226 8.50315 13.626 8.87742 13.626Z" 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="M2 3C0.895431 3 0 3.89543 0 5V19C0 20.1046 0.89543 21 2 21H22C23.1046 21 24 20.1046 24 19V5C24 3.89543 23.1046 3 22 3H2ZM7.00443 6.80039H6.46022C5.28349 6.82122 4.34051 7.78118 4.3407 8.9581V9.61687C4.3407 10.9615 5.4307 12.0515 6.77529 12.0515C8.11988 12.0515 9.20988 10.9615 9.20988 9.61687V8.9581C9.20742 8.37829 8.97272 7.82364 8.55827 7.41815C8.14381 7.01267 7.58416 6.79016 7.00443 6.80039ZM7.73962 9.61693C7.73962 10.1706 7.2908 10.6194 6.73715 10.6194C6.18349 10.6194 5.73467 10.1706 5.73467 9.61693V8.95816C5.73467 8.55742 6.05953 8.23255 6.46027 8.23255H7.00447C7.40679 8.23252 7.7344 8.55588 7.73962 8.95816V9.61693ZM10.3365 14.1519C10.1569 13.2345 9.36169 12.5665 8.427 12.548H5.04721C4.11116 12.5629 3.31399 13.2325 3.13773 14.1519L3.04226 14.5911C2.91658 15.2025 3.07455 15.8379 3.47189 16.3192C3.83401 16.7715 4.3819 17.0349 4.96129 17.0353H8.50338C9.08611 17.0378 9.63811 16.7741 10.0023 16.3192C10.3926 15.8344 10.5465 15.201 10.4224 14.5911L10.3365 14.1519ZM8.89482 15.4121C8.79661 15.5275 8.65475 15.5967 8.50338 15.6031H4.96129C4.81172 15.6002 4.67142 15.5301 4.57939 15.4121C4.45438 15.2643 4.40818 15.0653 4.45528 14.8775L4.5412 14.4383C4.58117 14.1856 4.79179 13.9948 5.04722 13.98H8.41745C8.67509 13.994 8.88891 14.1841 8.93301 14.4383L9.01894 14.8775C9.05604 15.0652 9.01085 15.2599 8.89482 15.4121ZM12.8 9C12.8 8.6134 13.1134 8.3 13.5 8.3H20.5C20.8866 8.3 21.2 8.6134 21.2 9C21.2 9.3866 20.8866 9.7 20.5 9.7H13.5C13.1134 9.7 12.8 9.3866 12.8 9ZM13.5 11.3C13.1134 11.3 12.8 11.6134 12.8 12C12.8 12.3866 13.1134 12.7 13.5 12.7H20.5C20.8866 12.7 21.2 12.3866 21.2 12C21.2 11.6134 20.8866 11.3 20.5 11.3H13.5ZM12.8 15C12.8 14.6134 13.1134 14.3 13.5 14.3H20.5C20.8866 14.3 21.2 14.6134 21.2 15C21.2 15.3866 20.8866 15.7 20.5 15.7H13.5C13.1134 15.7 12.8 15.3866 12.8 15Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="4" y="13" width="16" height="5" rx="2" fill="currentColor" />
|
|
3
|
+
<rect x="10" y="10" width="4" height="4" fill="currentColor" />
|
|
4
|
+
<circle cx="12" cy="7" r="4" fill="currentColor" />
|
|
5
|
+
<rect x="5" y="19" width="14" height="2" rx="1" fill="currentColor" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.7059 5H7C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H17C18.1046 19 19 18.1046 19 17V11.48" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
3
|
+
<path d="M12 12L19 5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
4
|
+
</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="M15.0744 4.52703V4.37342C15.0744 3.6149 14.4595 3 13.701 3H9.59881C8.84029 3 8.22539 3.6149 8.22539 4.37342V4.49992C6.24541 4.66507 4.72602 6.32616 4.73761 8.31298V17.9269C4.73761 18.9398 5.14058 19.911 5.85763 20.6264C6.57467 21.3417 7.54686 21.7424 8.55971 21.74H14.7491C15.762 21.7424 16.7342 21.3417 17.4512 20.6264C18.1683 19.911 18.5712 18.9398 18.5712 17.9269V8.31298C18.564 6.33506 17.0455 4.69106 15.0744 4.52703ZM9.59779 4.37342H13.7181V5.44867H9.59779V4.37342ZM11.6965 9.45148H8.87742C8.50315 9.45148 8.19974 9.75489 8.19974 10.1292C8.19974 10.5034 8.50315 10.8068 8.87742 10.8068H11.6965C12.0708 10.8068 12.3742 10.5034 12.3742 10.1292C12.3742 9.75489 12.0708 9.45148 11.6965 9.45148ZM13.6754 16.2734H8.87742C8.50315 16.2734 8.19974 15.97 8.19974 15.5957C8.19974 15.2215 8.50315 14.918 8.87742 14.918H13.6754C14.0496 14.918 14.353 15.2215 14.353 15.5957C14.353 15.97 14.0496 16.2734 13.6754 16.2734ZM8.87742 13.626H14.4253C14.7996 13.626 15.103 13.3226 15.103 12.9483C15.103 12.574 14.7996 12.2706 14.4253 12.2706H8.87742C8.50315 12.2706 8.19974 12.574 8.19974 12.9483C8.19974 13.3226 8.50315 13.626 8.87742 13.626Z" 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="M2 3C0.895431 3 0 3.89543 0 5V19C0 20.1046 0.89543 21 2 21H22C23.1046 21 24 20.1046 24 19V5C24 3.89543 23.1046 3 22 3H2ZM7.00443 6.80039H6.46022C5.28349 6.82122 4.34051 7.78118 4.3407 8.9581V9.61687C4.3407 10.9615 5.4307 12.0515 6.77529 12.0515C8.11988 12.0515 9.20988 10.9615 9.20988 9.61687V8.9581C9.20742 8.37829 8.97272 7.82364 8.55827 7.41815C8.14381 7.01267 7.58416 6.79016 7.00443 6.80039ZM7.73962 9.61693C7.73962 10.1706 7.2908 10.6194 6.73715 10.6194C6.18349 10.6194 5.73467 10.1706 5.73467 9.61693V8.95816C5.73467 8.55742 6.05953 8.23255 6.46027 8.23255H7.00447C7.40679 8.23252 7.7344 8.55588 7.73962 8.95816V9.61693ZM10.3365 14.1519C10.1569 13.2345 9.36169 12.5665 8.427 12.548H5.04721C4.11116 12.5629 3.31399 13.2325 3.13773 14.1519L3.04226 14.5911C2.91658 15.2025 3.07455 15.8379 3.47189 16.3192C3.83401 16.7715 4.3819 17.0349 4.96129 17.0353H8.50338C9.08611 17.0378 9.63811 16.7741 10.0023 16.3192C10.3926 15.8344 10.5465 15.201 10.4224 14.5911L10.3365 14.1519ZM8.89482 15.4121C8.79661 15.5275 8.65475 15.5967 8.50338 15.6031H4.96129C4.81172 15.6002 4.67142 15.5301 4.57939 15.4121C4.45438 15.2643 4.40818 15.0653 4.45528 14.8775L4.5412 14.4383C4.58117 14.1856 4.79179 13.9948 5.04722 13.98H8.41745C8.67509 13.994 8.88891 14.1841 8.93301 14.4383L9.01894 14.8775C9.05604 15.0652 9.01085 15.2599 8.89482 15.4121ZM12.8 9C12.8 8.6134 13.1134 8.3 13.5 8.3H20.5C20.8866 8.3 21.2 8.6134 21.2 9C21.2 9.3866 20.8866 9.7 20.5 9.7H13.5C13.1134 9.7 12.8 9.3866 12.8 9ZM13.5 11.3C13.1134 11.3 12.8 11.6134 12.8 12C12.8 12.3866 13.1134 12.7 13.5 12.7H20.5C20.8866 12.7 21.2 12.3866 21.2 12C21.2 11.6134 20.8866 11.3 20.5 11.3H13.5ZM12.8 15C12.8 14.6134 13.1134 14.3 13.5 14.3H20.5C20.8866 14.3 21.2 14.6134 21.2 15C21.2 15.3866 20.8866 15.7 20.5 15.7H13.5C13.1134 15.7 12.8 15.3866 12.8 15Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.7059 5H7C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H17C18.1046 19 19 18.1046 19 17V11.48" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
3
|
+
<path d="M12 12L19 5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="4" y="13" width="16" height="5" rx="2" fill="currentColor" />
|
|
3
|
+
<rect x="10" y="10" width="4" height="4" fill="currentColor" />
|
|
4
|
+
<circle cx="12" cy="7" r="4" fill="currentColor" />
|
|
5
|
+
<rect x="5" y="19" width="14" height="2" rx="1" fill="currentColor" />
|
|
6
|
+
</svg>
|