a-icons 1.0.51 → 1.0.52
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/ExternalLinkFilled.d.ts +6 -0
- package/es/ExternalLinkFilled.js +41 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/ExternalLinkFilled.d.ts +6 -0
- package/lib/ExternalLinkFilled.js +88 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +9 -0
- package/package.json +2 -2
- package/src/CameraOutlined.tsx +8 -1
- package/src/CategoryFilled.tsx +8 -1
- package/src/ExternalLinkFilled.tsx +22 -0
- package/src/SearchDocumentFilled.tsx +4 -1
- package/src/StampFilled.tsx +6 -1
- package/src/WalletFilled.tsx +4 -1
- package/src/index.tsx +1 -0
- package/svgs/filled/external-link-filled.svg +4 -0
- package/tmpAllSvgs/external-link-filled.svg +4 -0
|
@@ -0,0 +1,41 @@
|
|
|
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 ExternalLinkFilled(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: "M17.34 7.04l-4.24 4.24a.75.75 0 01-1.06-1.06l4.24-4.24a4.39 4.39 0 00-2.44-.77H7.33A4.33 4.33 0 003 9.51v6.48a4.33 4.33 0 004.33 4.33h6.48a4.33 4.33 0 004.33-4.33V9.54a4.33 4.33 0 00-.8-2.5z",
|
|
28
|
+
fill: "currentColor"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M20.26 3.46a.71.71 0 00-.4-.4.75.75 0 00-.29-.06h-5a.75.75 0 000 1.5h3.19l-1.47 1.47c.41.29.77.65 1.06 1.06l1.47-1.47v3.19a.75.75 0 001.5 0v-5c0-.1-.02-.198-.06-.29z",
|
|
31
|
+
fill: "currentColor"
|
|
32
|
+
}));
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
36
|
+
component: IconNode
|
|
37
|
+
}));
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
ExternalLinkFilled.displayName = 'ExternalLinkFilled';
|
|
41
|
+
export default ExternalLinkFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
|
47
47
|
export { default as EditFilled } from './EditFilled';
|
|
48
48
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
49
49
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
50
|
+
export { default as ExternalLinkFilled } from './ExternalLinkFilled';
|
|
50
51
|
export { default as EyeFilled } from './EyeFilled';
|
|
51
52
|
export { default as EyeOutlined } from './EyeOutlined';
|
|
52
53
|
export { default as FileFilled } from './FileFilled';
|
package/es/index.js
CHANGED
|
@@ -47,6 +47,7 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
|
47
47
|
export { default as EditFilled } from './EditFilled';
|
|
48
48
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
49
49
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
50
|
+
export { default as ExternalLinkFilled } from './ExternalLinkFilled';
|
|
50
51
|
export { default as EyeFilled } from './EyeFilled';
|
|
51
52
|
export { default as EyeOutlined } from './EyeOutlined';
|
|
52
53
|
export { default as FileFilled } from './FileFilled';
|
|
@@ -0,0 +1,88 @@
|
|
|
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 ExternalLinkFilled(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: "M17.34 7.04l-4.24 4.24a.75.75 0 01-1.06-1.06l4.24-4.24a4.39 4.39 0 00-2.44-.77H7.33A4.33 4.33 0 003 9.51v6.48a4.33 4.33 0 004.33 4.33h6.48a4.33 4.33 0 004.33-4.33V9.54a4.33 4.33 0 00-.8-2.5z",
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
}), React.createElement("path", {
|
|
77
|
+
d: "M20.26 3.46a.71.71 0 00-.4-.4.75.75 0 00-.29-.06h-5a.75.75 0 000 1.5h3.19l-1.47 1.47c.41.29.77.65 1.06 1.06l1.47-1.47v3.19a.75.75 0 001.5 0v-5c0-.1-.02-.198-.06-.29z",
|
|
78
|
+
fill: "currentColor"
|
|
79
|
+
}));
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
83
|
+
component: IconNode
|
|
84
|
+
}));
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
ExternalLinkFilled.displayName = 'ExternalLinkFilled';
|
|
88
|
+
exports["default"] = ExternalLinkFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
|
47
47
|
export { default as EditFilled } from './EditFilled';
|
|
48
48
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
49
49
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
50
|
+
export { default as ExternalLinkFilled } from './ExternalLinkFilled';
|
|
50
51
|
export { default as EyeFilled } from './EyeFilled';
|
|
51
52
|
export { default as EyeOutlined } from './EyeOutlined';
|
|
52
53
|
export { default as FileFilled } from './FileFilled';
|
package/lib/index.js
CHANGED
|
@@ -445,6 +445,15 @@ Object.defineProperty(exports, "ErrorWarningOutlined", {
|
|
|
445
445
|
}
|
|
446
446
|
});
|
|
447
447
|
|
|
448
|
+
var ExternalLinkFilled_1 = require("./ExternalLinkFilled");
|
|
449
|
+
|
|
450
|
+
Object.defineProperty(exports, "ExternalLinkFilled", {
|
|
451
|
+
enumerable: true,
|
|
452
|
+
get: function get() {
|
|
453
|
+
return ExternalLinkFilled_1["default"];
|
|
454
|
+
}
|
|
455
|
+
});
|
|
456
|
+
|
|
448
457
|
var EyeFilled_1 = require("./EyeFilled");
|
|
449
458
|
|
|
450
459
|
Object.defineProperty(exports, "EyeFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
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": "9ee38fdd30280a63f2ddb0ed95a9e8e2dcf09ce3"
|
|
26
26
|
}
|
package/src/CameraOutlined.tsx
CHANGED
|
@@ -16,7 +16,14 @@ 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
|
|
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
|
+
/>
|
|
20
27
|
</svg>
|
|
21
28
|
);
|
|
22
29
|
|
package/src/CategoryFilled.tsx
CHANGED
|
@@ -7,7 +7,14 @@ 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
|
|
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
|
+
/>
|
|
11
18
|
</svg>
|
|
12
19
|
);
|
|
13
20
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function ExternalLinkFilled(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="M17.34 7.04l-4.24 4.24a.75.75 0 01-1.06-1.06l4.24-4.24a4.39 4.39 0 00-2.44-.77H7.33A4.33 4.33 0 003 9.51v6.48a4.33 4.33 0 004.33 4.33h6.48a4.33 4.33 0 004.33-4.33V9.54a4.33 4.33 0 00-.8-2.5z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M20.26 3.46a.71.71 0 00-.4-.4.75.75 0 00-.29-.06h-5a.75.75 0 000 1.5h3.19l-1.47 1.47c.41.29.77.65 1.06 1.06l1.47-1.47v3.19a.75.75 0 001.5 0v-5c0-.1-.02-.198-.06-.29z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
ExternalLinkFilled.displayName = 'ExternalLinkFilled';
|
|
22
|
+
export default ExternalLinkFilled;
|
|
@@ -14,7 +14,10 @@ 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
|
|
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
|
+
/>
|
|
18
21
|
</svg>
|
|
19
22
|
);
|
|
20
23
|
|
package/src/StampFilled.tsx
CHANGED
|
@@ -3,7 +3,12 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
|
3
3
|
|
|
4
4
|
function StampFilled(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
-
<svg
|
|
6
|
+
<svg
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
7
12
|
<rect x={4} y={13} width={16} height={5} rx={2} />
|
|
8
13
|
<path d="M10 10h4v4h-4z" />
|
|
9
14
|
<circle cx={12} cy={7} r={4} />
|
package/src/WalletFilled.tsx
CHANGED
|
@@ -4,7 +4,10 @@ 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
|
|
7
|
+
<path
|
|
8
|
+
d="M18.314 11.22a.676.676 0 100 1.351H22V11.2h-.105l-3.58.02z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
8
11
|
<path
|
|
9
12
|
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"
|
|
10
13
|
fill="currentColor"
|
package/src/index.tsx
CHANGED
|
@@ -47,6 +47,7 @@ export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
|
47
47
|
export { default as EditFilled } from './EditFilled';
|
|
48
48
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
49
49
|
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
50
|
+
export { default as ExternalLinkFilled } from './ExternalLinkFilled';
|
|
50
51
|
export { default as EyeFilled } from './EyeFilled';
|
|
51
52
|
export { default as EyeOutlined } from './EyeOutlined';
|
|
52
53
|
export { default as FileFilled } from './FileFilled';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.34 7.03999L13.1 11.28C12.8072 11.5724 12.3328 11.5724 12.04 11.28C11.7475 10.9872 11.7475 10.5128 12.04 10.22L16.28 5.97999C15.5612 5.48674 14.7117 5.21869 13.84 5.20999H7.33C4.95027 5.20993 3.01649 7.13032 3 9.50999V15.99C3 18.3814 4.93861 20.32 7.33 20.32H13.81C16.2014 20.32 18.14 18.3814 18.14 15.99V9.53999C18.1384 8.64396 17.8589 7.77048 17.34 7.03999Z" fill="currentColor" />
|
|
3
|
+
<path d="M20.2601 3.46C20.1879 3.27701 20.0431 3.13217 19.8601 3.06C19.7684 3.02092 19.6698 3.00053 19.5701 3H14.5701C14.1559 3 13.8201 3.33579 13.8201 3.75C13.8201 4.16421 14.1559 4.5 14.5701 4.5H17.7601L16.2901 5.97C16.7008 6.26085 17.0592 6.61927 17.3501 7.03L18.8201 5.56V8.75C18.8201 9.16421 19.1559 9.5 19.5701 9.5C19.9843 9.5 20.3201 9.16421 20.3201 8.75V3.75C20.3195 3.65031 20.2991 3.55172 20.2601 3.46Z" fill="currentColor" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.34 7.03999L13.1 11.28C12.8072 11.5724 12.3328 11.5724 12.04 11.28C11.7475 10.9872 11.7475 10.5128 12.04 10.22L16.28 5.97999C15.5612 5.48674 14.7117 5.21869 13.84 5.20999H7.33C4.95027 5.20993 3.01649 7.13032 3 9.50999V15.99C3 18.3814 4.93861 20.32 7.33 20.32H13.81C16.2014 20.32 18.14 18.3814 18.14 15.99V9.53999C18.1384 8.64396 17.8589 7.77048 17.34 7.03999Z" fill="currentColor" />
|
|
3
|
+
<path d="M20.2601 3.46C20.1879 3.27701 20.0431 3.13217 19.8601 3.06C19.7684 3.02092 19.6698 3.00053 19.5701 3H14.5701C14.1559 3 13.8201 3.33579 13.8201 3.75C13.8201 4.16421 14.1559 4.5 14.5701 4.5H17.7601L16.2901 5.97C16.7008 6.26085 17.0592 6.61927 17.3501 7.03L18.8201 5.56V8.75C18.8201 9.16421 19.1559 9.5 19.5701 9.5C19.9843 9.5 20.3201 9.16421 20.3201 8.75V3.75C20.3195 3.65031 20.2991 3.55172 20.2601 3.46Z" fill="currentColor" />
|
|
4
|
+
</svg>
|