a-icons 1.0.61 → 1.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/VectorOutlined.d.ts +6 -0
- package/es/VectorOutlined.js +37 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/VectorOutlined.d.ts +6 -0
- package/lib/VectorOutlined.js +84 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +9 -0
- package/package.json +2 -2
- package/src/VectorOutlined.tsx +18 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/vector-outlined.svg +5 -0
- package/tmpAllSvgs/vector-outlined.svg +5 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function VectorOutlined(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 16 19",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M2.167 14h11.666V8.192c0-3.235-2.611-5.859-5.833-5.859s-5.833 2.624-5.833 5.86V14zM8 .667c4.142 0 7.5 3.369 7.5 7.525v7.475H.5V8.192C.5 4.036 3.858.667 8 .667zM5.917 16.5h4.166a2.083 2.083 0 11-4.166 0z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
32
|
+
component: IconNode
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
VectorOutlined.displayName = 'VectorOutlined';
|
|
37
|
+
export default VectorOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -152,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
152
152
|
export { default as UpFilled } from './UpFilled';
|
|
153
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
154
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
155
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
156
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/es/index.js
CHANGED
|
@@ -152,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
152
152
|
export { default as UpFilled } from './UpFilled';
|
|
153
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
154
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
155
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
156
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function VectorOutlined(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 16 19",
|
|
71
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
72
|
+
}, props), React.createElement("path", {
|
|
73
|
+
d: "M2.167 14h11.666V8.192c0-3.235-2.611-5.859-5.833-5.859s-5.833 2.624-5.833 5.86V14zM8 .667c4.142 0 7.5 3.369 7.5 7.525v7.475H.5V8.192C.5 4.036 3.858.667 8 .667zM5.917 16.5h4.166a2.083 2.083 0 11-4.166 0z",
|
|
74
|
+
fill: "currentColor"
|
|
75
|
+
}));
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
VectorOutlined.displayName = 'VectorOutlined';
|
|
84
|
+
exports["default"] = VectorOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -152,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
152
152
|
export { default as UpFilled } from './UpFilled';
|
|
153
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
154
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
155
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
156
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
package/lib/index.js
CHANGED
|
@@ -1390,6 +1390,15 @@ Object.defineProperty(exports, "UpgradeFilled", {
|
|
|
1390
1390
|
}
|
|
1391
1391
|
});
|
|
1392
1392
|
|
|
1393
|
+
var VectorOutlined_1 = require("./VectorOutlined");
|
|
1394
|
+
|
|
1395
|
+
Object.defineProperty(exports, "VectorOutlined", {
|
|
1396
|
+
enumerable: true,
|
|
1397
|
+
get: function get() {
|
|
1398
|
+
return VectorOutlined_1["default"];
|
|
1399
|
+
}
|
|
1400
|
+
});
|
|
1401
|
+
|
|
1393
1402
|
var WalletFilled_1 = require("./WalletFilled");
|
|
1394
1403
|
|
|
1395
1404
|
Object.defineProperty(exports, "WalletFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.62",
|
|
4
4
|
"repository": "git@github.com:SPOTEC-LTD/assui.git",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"assui": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "99105773c2c64e67cfdf29a7c41b6eefe3cd7cf1"
|
|
26
26
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function VectorOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 16 19" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M2.167 14h11.666V8.192c0-3.235-2.611-5.859-5.833-5.859s-5.833 2.624-5.833 5.86V14zM8 .667c4.142 0 7.5 3.369 7.5 7.525v7.475H.5V8.192C.5 4.036 3.858.667 8 .667zM5.917 16.5h4.166a2.083 2.083 0 11-4.166 0z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
VectorOutlined.displayName = 'VectorOutlined';
|
|
18
|
+
export default VectorOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -152,5 +152,6 @@ export { default as UnlockFilled } from './UnlockFilled';
|
|
|
152
152
|
export { default as UpFilled } from './UpFilled';
|
|
153
153
|
export { default as UpOutlined } from './UpOutlined';
|
|
154
154
|
export { default as UpgradeFilled } from './UpgradeFilled';
|
|
155
|
+
export { default as VectorOutlined } from './VectorOutlined';
|
|
155
156
|
export { default as WalletFilled } from './WalletFilled';
|
|
156
157
|
export { default as WalletOutlined } from './WalletOutlined';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 19" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M2.16667 14H13.8333V8.19246C13.8333 4.95663 11.2217 2.33329 8 2.33329C4.77833 2.33329 2.16667 4.95663 2.16667 8.19246V14ZM8 0.666626C12.1417 0.666626 15.5 4.03579 15.5 8.19246V15.6666H0.5V8.19246C0.5 4.03579 3.85833 0.666626 8 0.666626ZM5.91667 16.5H10.0833C10.0833 17.0525 9.86384 17.5824 9.47314 17.9731C9.08244 18.3638 8.55253 18.5833 8 18.5833C7.44747 18.5833 6.91756 18.3638 6.52686 17.9731C6.13616 17.5824 5.91667 17.0525 5.91667 16.5Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 19" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M2.16667 14H13.8333V8.19246C13.8333 4.95663 11.2217 2.33329 8 2.33329C4.77833 2.33329 2.16667 4.95663 2.16667 8.19246V14ZM8 0.666626C12.1417 0.666626 15.5 4.03579 15.5 8.19246V15.6666H0.5V8.19246C0.5 4.03579 3.85833 0.666626 8 0.666626ZM5.91667 16.5H10.0833C10.0833 17.0525 9.86384 17.5824 9.47314 17.9731C9.08244 18.3638 8.55253 18.5833 8 18.5833C7.44747 18.5833 6.91756 18.3638 6.52686 17.9731C6.13616 17.5824 5.91667 17.0525 5.91667 16.5Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|