a-icons 1.2.74 → 1.2.76
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/LICENSE +21 -0
- package/es/BrowseEyes.d.ts +6 -0
- package/es/BrowseEyes.js +49 -0
- package/es/HttpsLock.d.ts +6 -0
- package/es/HttpsLock.js +46 -0
- package/es/InfoCircleOutlined.d.ts +6 -0
- package/es/InfoCircleOutlined.js +31 -0
- package/es/index.d.ts +3 -0
- package/es/index.js +3 -0
- package/lib/BrowseEyes.d.ts +6 -0
- package/lib/BrowseEyes.js +92 -0
- package/lib/HttpsLock.d.ts +6 -0
- package/lib/HttpsLock.js +89 -0
- package/lib/InfoCircleOutlined.d.ts +6 -0
- package/lib/InfoCircleOutlined.js +74 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +29 -8
- package/package.json +2 -2
- package/src/BrowseEyes.tsx +36 -0
- package/src/HttpsLock.tsx +35 -0
- package/src/InfoCircleOutlined.tsx +18 -0
- package/src/index.tsx +3 -0
- package/svgs/business/browse-eyes.svg +6 -0
- package/svgs/business/https-lock.svg +5 -0
- package/svgs/outlined/info-circle-outlined.svg +3 -0
- package/tmpAllSvgs/browse-eyes.svg +6 -0
- package/tmpAllSvgs/https-lock.svg +5 -0
- package/tmpAllSvgs/info-circle-outlined.svg +3 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 assui
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/es/BrowseEyes.js
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
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 BrowseEyes(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 20 20",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
22
|
+
x: 0.556,
|
|
23
|
+
y: 0.556,
|
|
24
|
+
width: 18.889,
|
|
25
|
+
height: 18.889,
|
|
26
|
+
rx: 9.444,
|
|
27
|
+
fill: "#47A92A"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
29
|
+
x: 0.556,
|
|
30
|
+
y: 0.556,
|
|
31
|
+
width: 18.889,
|
|
32
|
+
height: 18.889,
|
|
33
|
+
rx: 9.444,
|
|
34
|
+
stroke: "#fff",
|
|
35
|
+
strokeWidth: 1.111
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
d: "M8.5 10a1.5 1.5 0 113 0 1.5 1.5 0 01-3 0z",
|
|
38
|
+
fill: "#fff"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M10 5.5a6.253 6.253 0 00-5.955 4.348L3.996 10l.049.152a6.253 6.253 0 0011.91 0l.048-.152-.048-.152A6.253 6.253 0 0010 5.5zm0 2a2.5 2.5 0 110 5 2.5 2.5 0 010-5z",
|
|
41
|
+
fill: "#fff"
|
|
42
|
+
}));
|
|
43
|
+
};
|
|
44
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
45
|
+
component: IconNode
|
|
46
|
+
}));
|
|
47
|
+
}
|
|
48
|
+
BrowseEyes.displayName = 'BrowseEyes';
|
|
49
|
+
export default BrowseEyes;
|
package/es/HttpsLock.js
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
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 HttpsLock(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 20 20",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
22
|
+
x: 0.556,
|
|
23
|
+
y: 0.556,
|
|
24
|
+
width: 18.889,
|
|
25
|
+
height: 18.889,
|
|
26
|
+
rx: 9.444,
|
|
27
|
+
fill: "#EFB041"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
29
|
+
x: 0.556,
|
|
30
|
+
y: 0.556,
|
|
31
|
+
width: 18.889,
|
|
32
|
+
height: 18.889,
|
|
33
|
+
rx: 9.444,
|
|
34
|
+
stroke: "#fff",
|
|
35
|
+
strokeWidth: 1.111
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
d: "M13 7.5v1.75h1.25V15h-8.5V9.25H7V7.5a3 3 0 016 0zm-5 0v1.75h4V7.5a2 2 0 10-4 0zm2 3.625a1 1 0 100 2 1 1 0 000-2z",
|
|
38
|
+
fill: "#fff"
|
|
39
|
+
}));
|
|
40
|
+
};
|
|
41
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
42
|
+
component: IconNode
|
|
43
|
+
}));
|
|
44
|
+
}
|
|
45
|
+
HttpsLock.displayName = 'HttpsLock';
|
|
46
|
+
export default HttpsLock;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 InfoCircleOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 2a9 9 0 100 18 9 9 0 000-18zm1 14.5h-2v-8h2v8zm0-9h-2v-2h2v2z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
27
|
+
component: IconNode
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
InfoCircleOutlined.displayName = 'InfoCircleOutlined';
|
|
31
|
+
export default InfoCircleOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export { default as BoxAddFilled } from './BoxAddFilled';
|
|
|
37
37
|
export { default as BoxFilled } from './BoxFilled';
|
|
38
38
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
39
39
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
40
|
+
export { default as BrowseEyes } from './BrowseEyes';
|
|
40
41
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
41
42
|
export { default as CalendarFilled } from './CalendarFilled';
|
|
42
43
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
@@ -182,10 +183,12 @@ export { default as HomeOutlined } from './HomeOutlined';
|
|
|
182
183
|
export { default as HourGlassOutlined } from './HourGlassOutlined';
|
|
183
184
|
export { default as Hours24 } from './Hours24';
|
|
184
185
|
export { default as HouseOutlined } from './HouseOutlined';
|
|
186
|
+
export { default as HttpsLock } from './HttpsLock';
|
|
185
187
|
export { default as IdCardFilled } from './IdCardFilled';
|
|
186
188
|
export { default as ImacFilled } from './ImacFilled';
|
|
187
189
|
export { default as ImageFilled } from './ImageFilled';
|
|
188
190
|
export { default as ImageOutlined } from './ImageOutlined';
|
|
191
|
+
export { default as InfoCircleOutlined } from './InfoCircleOutlined';
|
|
189
192
|
export { default as InformationFilled } from './InformationFilled';
|
|
190
193
|
export { default as InformationOutlined } from './InformationOutlined';
|
|
191
194
|
export { default as InternalResourceOutlined } from './InternalResourceOutlined';
|
package/es/index.js
CHANGED
|
@@ -37,6 +37,7 @@ export { default as BoxAddFilled } from './BoxAddFilled';
|
|
|
37
37
|
export { default as BoxFilled } from './BoxFilled';
|
|
38
38
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
39
39
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
40
|
+
export { default as BrowseEyes } from './BrowseEyes';
|
|
40
41
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
41
42
|
export { default as CalendarFilled } from './CalendarFilled';
|
|
42
43
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
@@ -182,10 +183,12 @@ export { default as HomeOutlined } from './HomeOutlined';
|
|
|
182
183
|
export { default as HourGlassOutlined } from './HourGlassOutlined';
|
|
183
184
|
export { default as Hours24 } from './Hours24';
|
|
184
185
|
export { default as HouseOutlined } from './HouseOutlined';
|
|
186
|
+
export { default as HttpsLock } from './HttpsLock';
|
|
185
187
|
export { default as IdCardFilled } from './IdCardFilled';
|
|
186
188
|
export { default as ImacFilled } from './ImacFilled';
|
|
187
189
|
export { default as ImageFilled } from './ImageFilled';
|
|
188
190
|
export { default as ImageOutlined } from './ImageOutlined';
|
|
191
|
+
export { default as InfoCircleOutlined } from './InfoCircleOutlined';
|
|
189
192
|
export { default as InformationFilled } from './InformationFilled';
|
|
190
193
|
export { default as InformationOutlined } from './InformationOutlined';
|
|
191
194
|
export { default as InternalResourceOutlined } from './InternalResourceOutlined';
|
|
@@ -0,0 +1,92 @@
|
|
|
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 BrowseEyes(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 20 20",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("rect", {
|
|
65
|
+
x: 0.556,
|
|
66
|
+
y: 0.556,
|
|
67
|
+
width: 18.889,
|
|
68
|
+
height: 18.889,
|
|
69
|
+
rx: 9.444,
|
|
70
|
+
fill: "#47A92A"
|
|
71
|
+
}), React.createElement("rect", {
|
|
72
|
+
x: 0.556,
|
|
73
|
+
y: 0.556,
|
|
74
|
+
width: 18.889,
|
|
75
|
+
height: 18.889,
|
|
76
|
+
rx: 9.444,
|
|
77
|
+
stroke: "#fff",
|
|
78
|
+
strokeWidth: 1.111
|
|
79
|
+
}), React.createElement("path", {
|
|
80
|
+
d: "M8.5 10a1.5 1.5 0 113 0 1.5 1.5 0 01-3 0z",
|
|
81
|
+
fill: "#fff"
|
|
82
|
+
}), React.createElement("path", {
|
|
83
|
+
d: "M10 5.5a6.253 6.253 0 00-5.955 4.348L3.996 10l.049.152a6.253 6.253 0 0011.91 0l.048-.152-.048-.152A6.253 6.253 0 0010 5.5zm0 2a2.5 2.5 0 110 5 2.5 2.5 0 010-5z",
|
|
84
|
+
fill: "#fff"
|
|
85
|
+
}));
|
|
86
|
+
};
|
|
87
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
88
|
+
component: IconNode
|
|
89
|
+
}));
|
|
90
|
+
}
|
|
91
|
+
BrowseEyes.displayName = 'BrowseEyes';
|
|
92
|
+
exports["default"] = BrowseEyes;
|
package/lib/HttpsLock.js
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
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 HttpsLock(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 20 20",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("rect", {
|
|
65
|
+
x: 0.556,
|
|
66
|
+
y: 0.556,
|
|
67
|
+
width: 18.889,
|
|
68
|
+
height: 18.889,
|
|
69
|
+
rx: 9.444,
|
|
70
|
+
fill: "#EFB041"
|
|
71
|
+
}), React.createElement("rect", {
|
|
72
|
+
x: 0.556,
|
|
73
|
+
y: 0.556,
|
|
74
|
+
width: 18.889,
|
|
75
|
+
height: 18.889,
|
|
76
|
+
rx: 9.444,
|
|
77
|
+
stroke: "#fff",
|
|
78
|
+
strokeWidth: 1.111
|
|
79
|
+
}), React.createElement("path", {
|
|
80
|
+
d: "M13 7.5v1.75h1.25V15h-8.5V9.25H7V7.5a3 3 0 016 0zm-5 0v1.75h4V7.5a2 2 0 10-4 0zm2 3.625a1 1 0 100 2 1 1 0 000-2z",
|
|
81
|
+
fill: "#fff"
|
|
82
|
+
}));
|
|
83
|
+
};
|
|
84
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
85
|
+
component: IconNode
|
|
86
|
+
}));
|
|
87
|
+
}
|
|
88
|
+
HttpsLock.displayName = 'HttpsLock';
|
|
89
|
+
exports["default"] = HttpsLock;
|
|
@@ -0,0 +1,74 @@
|
|
|
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 InfoCircleOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
d: "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 2a9 9 0 100 18 9 9 0 000-18zm1 14.5h-2v-8h2v8zm0-9h-2v-2h2v2z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
70
|
+
component: IconNode
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
InfoCircleOutlined.displayName = 'InfoCircleOutlined';
|
|
74
|
+
exports["default"] = InfoCircleOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export { default as BoxAddFilled } from './BoxAddFilled';
|
|
|
37
37
|
export { default as BoxFilled } from './BoxFilled';
|
|
38
38
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
39
39
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
40
|
+
export { default as BrowseEyes } from './BrowseEyes';
|
|
40
41
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
41
42
|
export { default as CalendarFilled } from './CalendarFilled';
|
|
42
43
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
@@ -182,10 +183,12 @@ export { default as HomeOutlined } from './HomeOutlined';
|
|
|
182
183
|
export { default as HourGlassOutlined } from './HourGlassOutlined';
|
|
183
184
|
export { default as Hours24 } from './Hours24';
|
|
184
185
|
export { default as HouseOutlined } from './HouseOutlined';
|
|
186
|
+
export { default as HttpsLock } from './HttpsLock';
|
|
185
187
|
export { default as IdCardFilled } from './IdCardFilled';
|
|
186
188
|
export { default as ImacFilled } from './ImacFilled';
|
|
187
189
|
export { default as ImageFilled } from './ImageFilled';
|
|
188
190
|
export { default as ImageOutlined } from './ImageOutlined';
|
|
191
|
+
export { default as InfoCircleOutlined } from './InfoCircleOutlined';
|
|
189
192
|
export { default as InformationFilled } from './InformationFilled';
|
|
190
193
|
export { default as InformationOutlined } from './InformationOutlined';
|
|
191
194
|
export { default as InternalResourceOutlined } from './InternalResourceOutlined';
|
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.WealthOutlined = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UploadOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoWayFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = exports.TreeOutlined = void 0;
|
|
11
|
+
exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.Call = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFailOutlined = exports.CalendarOutlined = exports.CalendarFilled = exports.BusinessCardOutlined = exports.BrowseEyes = exports.BrokenLineOutlined = 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.BellOutlined = exports.BarsOutlined = exports.BarLineOutlined = exports.BarChartFilled = exports.BankAddFilled = exports.AtOutlined = exports.AscOutlined = exports.ArrowsRightLeftOutlined = exports.ArrowsChevronOutlined = exports.ArrowTopRightOutlined = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownOutlined = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AnnouncementOutlined = exports.AnalyzeOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AddChildOutlined = exports.AdFilled = exports.ImpassabilityFilled = void 0;
|
|
12
|
+
exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ContinueInvestFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CircleThreeRectFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.CheckCircleFilled = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = void 0;
|
|
13
|
+
exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ExchangeArrowOutlined = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = 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.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = void 0;
|
|
14
|
+
exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalTransfer = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.InfoCircleOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HttpsLock = exports.HouseOutlined = exports.Hours24 = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOutlined = exports.FileSearchFilled = void 0;
|
|
15
|
+
exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = 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.MoneyReceiveOutlined = exports.MinusSquareOutlined = exports.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailSettingFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = void 0;
|
|
16
|
+
exports.RoleOtcMerchant = exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.PlayOutlined = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonThreeLineOutlined = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = exports.PeopleAddFilled = void 0;
|
|
17
|
+
exports.TransferMoneyFilled = exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.SubtractFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShieldCheckedOutlined = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = exports.RoleSale = void 0;
|
|
18
|
+
exports.WealthOutlined = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UploadOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoWayFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -289,6 +289,13 @@ Object.defineProperty(exports, "BrokenLineOutlined", {
|
|
|
289
289
|
return __importDefault(BrokenLineOutlined_1)["default"];
|
|
290
290
|
}
|
|
291
291
|
});
|
|
292
|
+
var BrowseEyes_1 = require("./BrowseEyes");
|
|
293
|
+
Object.defineProperty(exports, "BrowseEyes", {
|
|
294
|
+
enumerable: true,
|
|
295
|
+
get: function get() {
|
|
296
|
+
return __importDefault(BrowseEyes_1)["default"];
|
|
297
|
+
}
|
|
298
|
+
});
|
|
292
299
|
var BusinessCardOutlined_1 = require("./BusinessCardOutlined");
|
|
293
300
|
Object.defineProperty(exports, "BusinessCardOutlined", {
|
|
294
301
|
enumerable: true,
|
|
@@ -1304,6 +1311,13 @@ Object.defineProperty(exports, "HouseOutlined", {
|
|
|
1304
1311
|
return __importDefault(HouseOutlined_1)["default"];
|
|
1305
1312
|
}
|
|
1306
1313
|
});
|
|
1314
|
+
var HttpsLock_1 = require("./HttpsLock");
|
|
1315
|
+
Object.defineProperty(exports, "HttpsLock", {
|
|
1316
|
+
enumerable: true,
|
|
1317
|
+
get: function get() {
|
|
1318
|
+
return __importDefault(HttpsLock_1)["default"];
|
|
1319
|
+
}
|
|
1320
|
+
});
|
|
1307
1321
|
var IdCardFilled_1 = require("./IdCardFilled");
|
|
1308
1322
|
Object.defineProperty(exports, "IdCardFilled", {
|
|
1309
1323
|
enumerable: true,
|
|
@@ -1332,6 +1346,13 @@ Object.defineProperty(exports, "ImageOutlined", {
|
|
|
1332
1346
|
return __importDefault(ImageOutlined_1)["default"];
|
|
1333
1347
|
}
|
|
1334
1348
|
});
|
|
1349
|
+
var InfoCircleOutlined_1 = require("./InfoCircleOutlined");
|
|
1350
|
+
Object.defineProperty(exports, "InfoCircleOutlined", {
|
|
1351
|
+
enumerable: true,
|
|
1352
|
+
get: function get() {
|
|
1353
|
+
return __importDefault(InfoCircleOutlined_1)["default"];
|
|
1354
|
+
}
|
|
1355
|
+
});
|
|
1335
1356
|
var InformationFilled_1 = require("./InformationFilled");
|
|
1336
1357
|
Object.defineProperty(exports, "InformationFilled", {
|
|
1337
1358
|
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.76",
|
|
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": "^3.2.49"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "09be25abe24d231a4f30aa433a870b40ec3d240a"
|
|
26
26
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function BrowseEyes(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<rect
|
|
8
|
+
x={0.556}
|
|
9
|
+
y={0.556}
|
|
10
|
+
width={18.889}
|
|
11
|
+
height={18.889}
|
|
12
|
+
rx={9.444}
|
|
13
|
+
fill="#47A92A"
|
|
14
|
+
/>
|
|
15
|
+
<rect
|
|
16
|
+
x={0.556}
|
|
17
|
+
y={0.556}
|
|
18
|
+
width={18.889}
|
|
19
|
+
height={18.889}
|
|
20
|
+
rx={9.444}
|
|
21
|
+
stroke="#fff"
|
|
22
|
+
strokeWidth={1.111}
|
|
23
|
+
/>
|
|
24
|
+
<path d="M8.5 10a1.5 1.5 0 113 0 1.5 1.5 0 01-3 0z" fill="#fff" />
|
|
25
|
+
<path
|
|
26
|
+
d="M10 5.5a6.253 6.253 0 00-5.955 4.348L3.996 10l.049.152a6.253 6.253 0 0011.91 0l.048-.152-.048-.152A6.253 6.253 0 0010 5.5zm0 2a2.5 2.5 0 110 5 2.5 2.5 0 010-5z"
|
|
27
|
+
fill="#fff"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
BrowseEyes.displayName = 'BrowseEyes';
|
|
36
|
+
export default BrowseEyes;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function HttpsLock(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<rect
|
|
8
|
+
x={0.556}
|
|
9
|
+
y={0.556}
|
|
10
|
+
width={18.889}
|
|
11
|
+
height={18.889}
|
|
12
|
+
rx={9.444}
|
|
13
|
+
fill="#EFB041"
|
|
14
|
+
/>
|
|
15
|
+
<rect
|
|
16
|
+
x={0.556}
|
|
17
|
+
y={0.556}
|
|
18
|
+
width={18.889}
|
|
19
|
+
height={18.889}
|
|
20
|
+
rx={9.444}
|
|
21
|
+
stroke="#fff"
|
|
22
|
+
strokeWidth={1.111}
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M13 7.5v1.75h1.25V15h-8.5V9.25H7V7.5a3 3 0 016 0zm-5 0v1.75h4V7.5a2 2 0 10-4 0zm2 3.625a1 1 0 100 2 1 1 0 000-2z"
|
|
26
|
+
fill="#fff"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
HttpsLock.displayName = 'HttpsLock';
|
|
35
|
+
export default HttpsLock;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function InfoCircleOutlined(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="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 2a9 9 0 100 18 9 9 0 000-18zm1 14.5h-2v-8h2v8zm0-9h-2v-2h2v2z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
InfoCircleOutlined.displayName = 'InfoCircleOutlined';
|
|
18
|
+
export default InfoCircleOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -37,6 +37,7 @@ export { default as BoxAddFilled } from './BoxAddFilled'
|
|
|
37
37
|
export { default as BoxFilled } from './BoxFilled'
|
|
38
38
|
export { default as BoxOutlined } from './BoxOutlined'
|
|
39
39
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined'
|
|
40
|
+
export { default as BrowseEyes } from './BrowseEyes'
|
|
40
41
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined'
|
|
41
42
|
export { default as CalendarFilled } from './CalendarFilled'
|
|
42
43
|
export { default as CalendarOutlined } from './CalendarOutlined'
|
|
@@ -182,10 +183,12 @@ export { default as HomeOutlined } from './HomeOutlined'
|
|
|
182
183
|
export { default as HourGlassOutlined } from './HourGlassOutlined'
|
|
183
184
|
export { default as Hours24 } from './Hours24'
|
|
184
185
|
export { default as HouseOutlined } from './HouseOutlined'
|
|
186
|
+
export { default as HttpsLock } from './HttpsLock'
|
|
185
187
|
export { default as IdCardFilled } from './IdCardFilled'
|
|
186
188
|
export { default as ImacFilled } from './ImacFilled'
|
|
187
189
|
export { default as ImageFilled } from './ImageFilled'
|
|
188
190
|
export { default as ImageOutlined } from './ImageOutlined'
|
|
191
|
+
export { default as InfoCircleOutlined } from './InfoCircleOutlined'
|
|
189
192
|
export { default as InformationFilled } from './InformationFilled'
|
|
190
193
|
export { default as InformationOutlined } from './InformationOutlined'
|
|
191
194
|
export { default as InternalResourceOutlined } from './InternalResourceOutlined'
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" fill="#47A92A"/>
|
|
3
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" stroke="white" stroke-width="1.11111"/>
|
|
4
|
+
<path d="M8.5 10C8.5 9.17157 9.17157 8.5 10 8.5C10.8284 8.5 11.5 9.17157 11.5 10C11.5 10.8284 10.8284 11.5 10 11.5C9.17157 11.5 8.5 10.8284 8.5 10Z" fill="white"/>
|
|
5
|
+
<path d="M9.99979 5.5C7.21051 5.5 4.84921 7.32682 4.04461 9.84798L3.99609 10L4.04461 10.152C4.84921 12.6732 7.21051 14.5 9.99979 14.5C12.7891 14.5 15.1504 12.6732 15.955 10.152L16.0035 10L15.955 9.84799C15.1504 7.32682 12.7891 5.5 9.99979 5.5ZM10 7.5C11.3807 7.5 12.5 8.61929 12.5 10C12.5 11.3807 11.3807 12.5 10 12.5C8.61929 12.5 7.5 11.3807 7.5 10C7.5 8.61929 8.61929 7.5 10 7.5Z" fill="white"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" fill="#EFB041"/>
|
|
3
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" stroke="white" stroke-width="1.11111"/>
|
|
4
|
+
<path d="M13 7.5V9.25001H14.25V15H5.75V9.25001H7V7.5C7 5.84315 8.34315 4.5 10 4.5C11.6569 4.5 13 5.84315 13 7.5ZM8 7.5V9.25001H12V7.5C12 6.39543 11.1046 5.5 10 5.5C8.89543 5.5 8 6.39543 8 7.5ZM10 11.125C9.44772 11.125 9 11.5727 9 12.125C9 12.6773 9.44772 13.125 10 13.125C10.5523 13.125 11 12.6773 11 12.125C11 11.5727 10.5523 11.125 10 11.125Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1ZM12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM13 17.5H11V9.5H13V17.5ZM13 8.5H11V6.5H13V8.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" fill="#47A92A"/>
|
|
3
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" stroke="white" stroke-width="1.11111"/>
|
|
4
|
+
<path d="M8.5 10C8.5 9.17157 9.17157 8.5 10 8.5C10.8284 8.5 11.5 9.17157 11.5 10C11.5 10.8284 10.8284 11.5 10 11.5C9.17157 11.5 8.5 10.8284 8.5 10Z" fill="white"/>
|
|
5
|
+
<path d="M9.99979 5.5C7.21051 5.5 4.84921 7.32682 4.04461 9.84798L3.99609 10L4.04461 10.152C4.84921 12.6732 7.21051 14.5 9.99979 14.5C12.7891 14.5 15.1504 12.6732 15.955 10.152L16.0035 10L15.955 9.84799C15.1504 7.32682 12.7891 5.5 9.99979 5.5ZM10 7.5C11.3807 7.5 12.5 8.61929 12.5 10C12.5 11.3807 11.3807 12.5 10 12.5C8.61929 12.5 7.5 11.3807 7.5 10C7.5 8.61929 8.61929 7.5 10 7.5Z" fill="white"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" fill="#EFB041"/>
|
|
3
|
+
<rect x="0.555556" y="0.555556" width="18.8889" height="18.8889" rx="9.44444" stroke="white" stroke-width="1.11111"/>
|
|
4
|
+
<path d="M13 7.5V9.25001H14.25V15H5.75V9.25001H7V7.5C7 5.84315 8.34315 4.5 10 4.5C11.6569 4.5 13 5.84315 13 7.5ZM8 7.5V9.25001H12V7.5C12 6.39543 11.1046 5.5 10 5.5C8.89543 5.5 8 6.39543 8 7.5ZM10 11.125C9.44772 11.125 9 11.5727 9 12.125C9 12.6773 9.44772 13.125 10 13.125C10.5523 13.125 11 12.6773 11 12.125C11 11.5727 10.5523 11.125 10 11.125Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1ZM12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM13 17.5H11V9.5H13V17.5ZM13 8.5H11V6.5H13V8.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|