a-icons 1.0.29 → 1.0.30
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/BusinessCardOutline.d.ts +6 -0
- package/es/BusinessCardOutline.js +53 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/BusinessCardOutline.d.ts +6 -0
- package/lib/BusinessCardOutline.js +100 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +9 -0
- package/package.json +2 -2
- package/src/BusinessCardOutline.tsx +35 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/business-card-outline.svg +8 -0
- package/tmpAllSvgs/business-card-outline.svg +8 -0
|
@@ -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 BusinessCardOutline(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("rect", {
|
|
27
|
+
x: 0.7,
|
|
28
|
+
y: 3.7,
|
|
29
|
+
width: 22.6,
|
|
30
|
+
height: 16.6,
|
|
31
|
+
rx: 1.3,
|
|
32
|
+
stroke: "currentColor",
|
|
33
|
+
strokeWidth: 1.4
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M6.46 6.8h.544A2.167 2.167 0 019.21 8.958v.659a2.435 2.435 0 11-4.87 0v-.659c0-1.177.943-2.137 2.12-2.158zm.277 3.82c.554 0 1.003-.45 1.003-1.003v-.659a.735.735 0 00-.736-.725H6.46c-.4 0-.725.324-.725.725v.659c0 .554.448 1.002 1.002 1.002zM8.427 12.548c.935.018 1.73.687 1.91 1.604l.085.44a2.09 2.09 0 01-.42 1.727 1.91 1.91 0 01-1.499.716H4.961a1.91 1.91 0 01-1.49-.716 2.062 2.062 0 01-.429-1.728l.096-.44a1.976 1.976 0 011.91-1.603h3.379zm.076 3.055a.544.544 0 00.392-.19.668.668 0 00.124-.536l-.086-.439a.554.554 0 00-.516-.458h-3.37a.544.544 0 00-.506.458l-.086.44a.601.601 0 00.124.534.496.496 0 00.382.191h3.542z",
|
|
38
|
+
fill: "currentColor"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M13.5 9h7M13.5 12h7M13.5 15h7",
|
|
41
|
+
stroke: "currentColor",
|
|
42
|
+
strokeWidth: 1.4,
|
|
43
|
+
strokeLinecap: "round"
|
|
44
|
+
}));
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
48
|
+
component: IconNode
|
|
49
|
+
}));
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
BusinessCardOutline.displayName = 'BusinessCardOutline';
|
|
53
|
+
export default BusinessCardOutline;
|
package/es/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
|
4
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
5
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
6
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
7
|
+
export { default as BusinessCardOutline } from './BusinessCardOutline';
|
|
7
8
|
export { default as CameraFilled } from './CameraFilled';
|
|
8
9
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
9
10
|
export { default as CardFilled } from './CardFilled';
|
package/es/index.js
CHANGED
|
@@ -4,6 +4,7 @@ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
|
4
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
5
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
6
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
7
|
+
export { default as BusinessCardOutline } from './BusinessCardOutline';
|
|
7
8
|
export { default as CameraFilled } from './CameraFilled';
|
|
8
9
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
9
10
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -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 BusinessCardOutline(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("rect", {
|
|
74
|
+
x: 0.7,
|
|
75
|
+
y: 3.7,
|
|
76
|
+
width: 22.6,
|
|
77
|
+
height: 16.6,
|
|
78
|
+
rx: 1.3,
|
|
79
|
+
stroke: "currentColor",
|
|
80
|
+
strokeWidth: 1.4
|
|
81
|
+
}), React.createElement("path", {
|
|
82
|
+
fillRule: "evenodd",
|
|
83
|
+
clipRule: "evenodd",
|
|
84
|
+
d: "M6.46 6.8h.544A2.167 2.167 0 019.21 8.958v.659a2.435 2.435 0 11-4.87 0v-.659c0-1.177.943-2.137 2.12-2.158zm.277 3.82c.554 0 1.003-.45 1.003-1.003v-.659a.735.735 0 00-.736-.725H6.46c-.4 0-.725.324-.725.725v.659c0 .554.448 1.002 1.002 1.002zM8.427 12.548c.935.018 1.73.687 1.91 1.604l.085.44a2.09 2.09 0 01-.42 1.727 1.91 1.91 0 01-1.499.716H4.961a1.91 1.91 0 01-1.49-.716 2.062 2.062 0 01-.429-1.728l.096-.44a1.976 1.976 0 011.91-1.603h3.379zm.076 3.055a.544.544 0 00.392-.19.668.668 0 00.124-.536l-.086-.439a.554.554 0 00-.516-.458h-3.37a.544.544 0 00-.506.458l-.086.44a.601.601 0 00.124.534.496.496 0 00.382.191h3.542z",
|
|
85
|
+
fill: "currentColor"
|
|
86
|
+
}), React.createElement("path", {
|
|
87
|
+
d: "M13.5 9h7M13.5 12h7M13.5 15h7",
|
|
88
|
+
stroke: "currentColor",
|
|
89
|
+
strokeWidth: 1.4,
|
|
90
|
+
strokeLinecap: "round"
|
|
91
|
+
}));
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
95
|
+
component: IconNode
|
|
96
|
+
}));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
BusinessCardOutline.displayName = 'BusinessCardOutline';
|
|
100
|
+
exports["default"] = BusinessCardOutline;
|
package/lib/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
|
4
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
5
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
6
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
7
|
+
export { default as BusinessCardOutline } from './BusinessCardOutline';
|
|
7
8
|
export { default as CameraFilled } from './CameraFilled';
|
|
8
9
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
9
10
|
export { default as CardFilled } from './CardFilled';
|
package/lib/index.js
CHANGED
|
@@ -58,6 +58,15 @@ Object.defineProperty(exports, "BusinessCardFilled", {
|
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
60
|
|
|
61
|
+
var BusinessCardOutline_1 = require("./BusinessCardOutline");
|
|
62
|
+
|
|
63
|
+
Object.defineProperty(exports, "BusinessCardOutline", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function get() {
|
|
66
|
+
return BusinessCardOutline_1["default"];
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
|
|
61
70
|
var CameraFilled_1 = require("./CameraFilled");
|
|
62
71
|
|
|
63
72
|
Object.defineProperty(exports, "CameraFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30",
|
|
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": "b18be3724d2783f000c87d76f467a334e5bf82a6"
|
|
26
26
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function BusinessCardOutline(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
|
+
<rect
|
|
8
|
+
x={0.7}
|
|
9
|
+
y={3.7}
|
|
10
|
+
width={22.6}
|
|
11
|
+
height={16.6}
|
|
12
|
+
rx={1.3}
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeWidth={1.4}
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M6.46 6.8h.544A2.167 2.167 0 019.21 8.958v.659a2.435 2.435 0 11-4.87 0v-.659c0-1.177.943-2.137 2.12-2.158zm.277 3.82c.554 0 1.003-.45 1.003-1.003v-.659a.735.735 0 00-.736-.725H6.46c-.4 0-.725.324-.725.725v.659c0 .554.448 1.002 1.002 1.002zM8.427 12.548c.935.018 1.73.687 1.91 1.604l.085.44a2.09 2.09 0 01-.42 1.727 1.91 1.91 0 01-1.499.716H4.961a1.91 1.91 0 01-1.49-.716 2.062 2.062 0 01-.429-1.728l.096-.44a1.976 1.976 0 011.91-1.603h3.379zm.076 3.055a.544.544 0 00.392-.19.668.668 0 00.124-.536l-.086-.439a.554.554 0 00-.516-.458h-3.37a.544.544 0 00-.506.458l-.086.44a.601.601 0 00.124.534.496.496 0 00.382.191h3.542z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M13.5 9h7M13.5 12h7M13.5 15h7"
|
|
24
|
+
stroke="currentColor"
|
|
25
|
+
strokeWidth={1.4}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
BusinessCardOutline.displayName = 'BusinessCardOutline';
|
|
35
|
+
export default BusinessCardOutline;
|
package/src/index.tsx
CHANGED
|
@@ -4,6 +4,7 @@ export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
|
4
4
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
5
5
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
6
6
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
7
|
+
export { default as BusinessCardOutline } from './BusinessCardOutline';
|
|
7
8
|
export { default as CameraFilled } from './CameraFilled';
|
|
8
9
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
9
10
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.7" y="3.7" width="22.6" height="16.6" rx="1.3" stroke="currentColor" stroke-width="1.4" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.46022 6.80039H7.00443C7.58416 6.79016 8.14381 7.01267 8.55827 7.41815C8.97272 7.82364 9.20742 8.37829 9.20988 8.9581V9.61687C9.20988 10.9615 8.11988 12.0515 6.77529 12.0515C5.4307 12.0515 4.3407 10.9615 4.3407 9.61687V8.9581C4.34051 7.78118 5.28349 6.82122 6.46022 6.80039ZM6.73715 10.6194C7.2908 10.6194 7.73962 10.1706 7.73962 9.61693V8.95816C7.7344 8.55588 7.40679 8.23252 7.00447 8.23255H6.46027C6.05953 8.23255 5.73467 8.55742 5.73467 8.95816V9.61693C5.73467 10.1706 6.18349 10.6194 6.73715 10.6194Z" fill="currentColor" />
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.427 12.548C9.36169 12.5665 10.1569 13.2345 10.3365 14.1519L10.4224 14.5911C10.5465 15.201 10.3926 15.8344 10.0023 16.3192C9.63811 16.7741 9.08611 17.0378 8.50338 17.0353H4.96129C4.3819 17.0349 3.83401 16.7715 3.47189 16.3192C3.07455 15.8379 2.91658 15.2025 3.04226 14.5911L3.13773 14.1519C3.31399 13.2325 4.11116 12.5629 5.04721 12.548H8.427ZM8.50338 15.6031C8.65475 15.5967 8.79661 15.5275 8.89483 15.4121C9.01085 15.2599 9.05604 15.0652 9.01894 14.8775L8.93301 14.4383C8.88891 14.1841 8.67509 13.994 8.41745 13.98H5.04722C4.79179 13.9948 4.58117 14.1856 4.5412 14.4383L4.45528 14.8775C4.40818 15.0653 4.45438 15.2643 4.57939 15.4121C4.67142 15.5301 4.81172 15.6002 4.96129 15.6031H8.50338Z" fill="currentColor" />
|
|
5
|
+
<path d="M13.5 9H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
6
|
+
<path d="M13.5 12H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
7
|
+
<path d="M13.5 15H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.7" y="3.7" width="22.6" height="16.6" rx="1.3" stroke="currentColor" stroke-width="1.4" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.46022 6.80039H7.00443C7.58416 6.79016 8.14381 7.01267 8.55827 7.41815C8.97272 7.82364 9.20742 8.37829 9.20988 8.9581V9.61687C9.20988 10.9615 8.11988 12.0515 6.77529 12.0515C5.4307 12.0515 4.3407 10.9615 4.3407 9.61687V8.9581C4.34051 7.78118 5.28349 6.82122 6.46022 6.80039ZM6.73715 10.6194C7.2908 10.6194 7.73962 10.1706 7.73962 9.61693V8.95816C7.7344 8.55588 7.40679 8.23252 7.00447 8.23255H6.46027C6.05953 8.23255 5.73467 8.55742 5.73467 8.95816V9.61693C5.73467 10.1706 6.18349 10.6194 6.73715 10.6194Z" fill="currentColor" />
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.427 12.548C9.36169 12.5665 10.1569 13.2345 10.3365 14.1519L10.4224 14.5911C10.5465 15.201 10.3926 15.8344 10.0023 16.3192C9.63811 16.7741 9.08611 17.0378 8.50338 17.0353H4.96129C4.3819 17.0349 3.83401 16.7715 3.47189 16.3192C3.07455 15.8379 2.91658 15.2025 3.04226 14.5911L3.13773 14.1519C3.31399 13.2325 4.11116 12.5629 5.04721 12.548H8.427ZM8.50338 15.6031C8.65475 15.5967 8.79661 15.5275 8.89483 15.4121C9.01085 15.2599 9.05604 15.0652 9.01894 14.8775L8.93301 14.4383C8.88891 14.1841 8.67509 13.994 8.41745 13.98H5.04722C4.79179 13.9948 4.58117 14.1856 4.5412 14.4383L4.45528 14.8775C4.40818 15.0653 4.45438 15.2643 4.57939 15.4121C4.67142 15.5301 4.81172 15.6002 4.96129 15.6031H8.50338Z" fill="currentColor" />
|
|
5
|
+
<path d="M13.5 9H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
6
|
+
<path d="M13.5 12H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
7
|
+
<path d="M13.5 15H20.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" />
|
|
8
|
+
</svg>
|