a-icons 1.1.71 → 1.1.73
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/CheckedOutlined.d.ts +6 -0
- package/es/CheckedOutlined.js +37 -0
- package/es/PersonGroupFilled.d.ts +6 -0
- package/es/PersonGroupFilled.js +37 -0
- package/es/SignalDiffusionFilled.d.ts +6 -0
- package/es/SignalDiffusionFilled.js +41 -0
- package/es/index.d.ts +3 -0
- package/es/index.js +3 -0
- package/lib/CheckedOutlined.d.ts +6 -0
- package/lib/CheckedOutlined.js +80 -0
- package/lib/PersonGroupFilled.d.ts +6 -0
- package/lib/PersonGroupFilled.js +80 -0
- package/lib/SignalDiffusionFilled.d.ts +6 -0
- package/lib/SignalDiffusionFilled.js +84 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +27 -6
- package/package.json +2 -2
- package/src/CheckedOutlined.tsx +25 -0
- package/src/PersonGroupFilled.tsx +21 -0
- package/src/SignalDiffusionFilled.tsx +26 -0
- package/src/index.tsx +3 -0
- package/svgs/filled/person-group-filled.svg +6 -0
- package/svgs/filled/signal-diffusion-filled.svg +14 -0
- package/svgs/outlined/checked-outlined.svg +11 -0
- package/tmpAllSvgs/checked-outlined.svg +11 -0
- package/tmpAllSvgs/person-group-filled.svg +6 -0
- package/tmpAllSvgs/signal-diffusion-filled.svg +14 -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
|
+
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 CheckedOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
21
|
+
clipPath: "url(#checked-outlined_svg__clip0_11995_6628)"
|
|
22
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M11.125 14.118L17.083 8l.917.941L11.125 16 7 11.765l.917-.941 3.208 3.294z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
26
|
+
id: "checked-outlined_svg__clip0_11995_6628"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
fill: "#fff",
|
|
29
|
+
d: "M0 0h24v24H0z"
|
|
30
|
+
}))));
|
|
31
|
+
};
|
|
32
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
33
|
+
component: IconNode
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
36
|
+
CheckedOutlined.displayName = 'CheckedOutlined';
|
|
37
|
+
export default CheckedOutlined;
|
|
@@ -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
|
+
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 PersonGroupFilled(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
21
|
+
width: 24,
|
|
22
|
+
height: 24,
|
|
23
|
+
rx: 4,
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd",
|
|
28
|
+
d: "M14.378 7.127c.31 0 .588.067.831.202.244.135.454.3.63.497s.31.41.404.638c.093.228.14.43.14.606v8.782c0 .3-.06.57-.179.808-.12.239-.274.44-.466.607a2.207 2.207 0 01-.645.388c-.239.093-.477.14-.715.14H6.715c-.197 0-.412-.057-.645-.171a2.727 2.727 0 01-.653-.45 2.556 2.556 0 01-.505-.646 1.51 1.51 0 01-.203-.738V9.132c0-.218.052-.443.156-.676.104-.233.238-.448.404-.645.166-.197.358-.36.575-.49.218-.13.446-.194.684-.194h7.85zm1.834-2.922c.445 0 .855.132 1.228.396s.697.59.971.98c.275.388.49.807.645 1.258.156.451.234.863.234 1.236v8.254c0 .217-.065.417-.195.598s-.287.337-.474.466a2.58 2.58 0 01-.606.311c-.218.078-.42.117-.606.117h-.062v-9.28c-.083-.715-.306-1.264-.669-1.647-.363-.384-.844-.632-1.445-.746-.601-.114-7.586 0-7.586 0a.267.267 0 00.016-.11c0-.206.062-.419.186-.637a2.29 2.29 0 01.49-.59c.202-.176.427-.321.676-.435.249-.114.498-.171.746-.171h6.45zM10.7 9.585a1.847 1.847 0 00-1.845 1.846c0 1 .78 1.808 1.798 1.843a.312.312 0 01.086 0h.027a1.84 1.84 0 001.778-1.842A1.847 1.847 0 0010.7 9.585zm-2.214 4.86c1.227-.742 3.214-.742 4.432 0 .55.336.852.79.856 1.281 0 .495-.305.95-.856 1.29-.611.374-1.415.562-2.218.562-.804 0-1.607-.188-2.218-.563-.55-.335-.856-.79-.856-1.28 0-.492.305-.95.86-1.29z",
|
|
29
|
+
fill: "inherit"
|
|
30
|
+
}));
|
|
31
|
+
};
|
|
32
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
33
|
+
component: IconNode
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
36
|
+
PersonGroupFilled.displayName = 'PersonGroupFilled';
|
|
37
|
+
export default PersonGroupFilled;
|
|
@@ -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
|
+
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 SignalDiffusionFilled(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
21
|
+
width: 24,
|
|
22
|
+
height: 24,
|
|
23
|
+
rx: 4,
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M12 13.724c.956 0 1.73-.772 1.73-1.724s-.774-1.724-1.73-1.724c-.955 0-1.729.772-1.729 1.724s.774 1.724 1.73 1.724z",
|
|
27
|
+
fill: "inherit"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M8.956 8.537c-2.029 1.891-2.029 4.958 0 6.85M15.044 15.386c2.03-1.891 2.03-4.957 0-6.849M6.62 6.636a7.57 7.57 0 000 10.728M17.382 17.365a7.57 7.57 0 000-10.73",
|
|
30
|
+
stroke: "inherit",
|
|
31
|
+
strokeWidth: 1.522,
|
|
32
|
+
strokeLinecap: "round",
|
|
33
|
+
strokeLinejoin: "round"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
37
|
+
component: IconNode
|
|
38
|
+
}));
|
|
39
|
+
}
|
|
40
|
+
SignalDiffusionFilled.displayName = 'SignalDiffusionFilled';
|
|
41
|
+
export default SignalDiffusionFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export { default as ChainFilled } from './ChainFilled';
|
|
|
52
52
|
export { default as ChainOutlined } from './ChainOutlined';
|
|
53
53
|
export { default as CheckOutlined } from './CheckOutlined';
|
|
54
54
|
export { default as CheckboxMultipleOutlined } from './CheckboxMultipleOutlined';
|
|
55
|
+
export { default as CheckedOutlined } from './CheckedOutlined';
|
|
55
56
|
export { default as ChevronRightOutlined } from './ChevronRightOutlined';
|
|
56
57
|
export { default as ChevronUpFilled } from './ChevronUpFilled';
|
|
57
58
|
export { default as CircleDollarFilled } from './CircleDollarFilled';
|
|
@@ -239,6 +240,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
240
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
241
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
242
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
243
|
+
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
242
244
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
243
245
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
244
246
|
export { default as PlayFilled } from './PlayFilled';
|
|
@@ -284,6 +286,7 @@ export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled'
|
|
|
284
286
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
285
287
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
286
288
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
|
289
|
+
export { default as SignalDiffusionFilled } from './SignalDiffusionFilled';
|
|
287
290
|
export { default as SignalDiffusionOutlined } from './SignalDiffusionOutlined';
|
|
288
291
|
export { default as SignalFilled } from './SignalFilled';
|
|
289
292
|
export { default as SignalOutlined } from './SignalOutlined';
|
package/es/index.js
CHANGED
|
@@ -52,6 +52,7 @@ export { default as ChainFilled } from './ChainFilled';
|
|
|
52
52
|
export { default as ChainOutlined } from './ChainOutlined';
|
|
53
53
|
export { default as CheckOutlined } from './CheckOutlined';
|
|
54
54
|
export { default as CheckboxMultipleOutlined } from './CheckboxMultipleOutlined';
|
|
55
|
+
export { default as CheckedOutlined } from './CheckedOutlined';
|
|
55
56
|
export { default as ChevronRightOutlined } from './ChevronRightOutlined';
|
|
56
57
|
export { default as ChevronUpFilled } from './ChevronUpFilled';
|
|
57
58
|
export { default as CircleDollarFilled } from './CircleDollarFilled';
|
|
@@ -239,6 +240,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
240
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
241
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
242
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
243
|
+
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
242
244
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
243
245
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
244
246
|
export { default as PlayFilled } from './PlayFilled';
|
|
@@ -284,6 +286,7 @@ export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled'
|
|
|
284
286
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
285
287
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
286
288
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
|
289
|
+
export { default as SignalDiffusionFilled } from './SignalDiffusionFilled';
|
|
287
290
|
export { default as SignalDiffusionOutlined } from './SignalDiffusionOutlined';
|
|
288
291
|
export { default as SignalFilled } from './SignalFilled';
|
|
289
292
|
export { default as SignalOutlined } from './SignalOutlined';
|
|
@@ -0,0 +1,80 @@
|
|
|
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 CheckedOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("g", {
|
|
64
|
+
clipPath: "url(#checked-outlined_svg__clip0_11995_6628)"
|
|
65
|
+
}, React.createElement("path", {
|
|
66
|
+
d: "M11.125 14.118L17.083 8l.917.941L11.125 16 7 11.765l.917-.941 3.208 3.294z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
})), React.createElement("defs", null, React.createElement("clipPath", {
|
|
69
|
+
id: "checked-outlined_svg__clip0_11995_6628"
|
|
70
|
+
}, React.createElement("path", {
|
|
71
|
+
fill: "#fff",
|
|
72
|
+
d: "M0 0h24v24H0z"
|
|
73
|
+
}))));
|
|
74
|
+
};
|
|
75
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
76
|
+
component: IconNode
|
|
77
|
+
}));
|
|
78
|
+
}
|
|
79
|
+
CheckedOutlined.displayName = 'CheckedOutlined';
|
|
80
|
+
exports["default"] = CheckedOutlined;
|
|
@@ -0,0 +1,80 @@
|
|
|
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 PersonGroupFilled(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("rect", {
|
|
64
|
+
width: 24,
|
|
65
|
+
height: 24,
|
|
66
|
+
rx: 4,
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
fillRule: "evenodd",
|
|
70
|
+
clipRule: "evenodd",
|
|
71
|
+
d: "M14.378 7.127c.31 0 .588.067.831.202.244.135.454.3.63.497s.31.41.404.638c.093.228.14.43.14.606v8.782c0 .3-.06.57-.179.808-.12.239-.274.44-.466.607a2.207 2.207 0 01-.645.388c-.239.093-.477.14-.715.14H6.715c-.197 0-.412-.057-.645-.171a2.727 2.727 0 01-.653-.45 2.556 2.556 0 01-.505-.646 1.51 1.51 0 01-.203-.738V9.132c0-.218.052-.443.156-.676.104-.233.238-.448.404-.645.166-.197.358-.36.575-.49.218-.13.446-.194.684-.194h7.85zm1.834-2.922c.445 0 .855.132 1.228.396s.697.59.971.98c.275.388.49.807.645 1.258.156.451.234.863.234 1.236v8.254c0 .217-.065.417-.195.598s-.287.337-.474.466a2.58 2.58 0 01-.606.311c-.218.078-.42.117-.606.117h-.062v-9.28c-.083-.715-.306-1.264-.669-1.647-.363-.384-.844-.632-1.445-.746-.601-.114-7.586 0-7.586 0a.267.267 0 00.016-.11c0-.206.062-.419.186-.637a2.29 2.29 0 01.49-.59c.202-.176.427-.321.676-.435.249-.114.498-.171.746-.171h6.45zM10.7 9.585a1.847 1.847 0 00-1.845 1.846c0 1 .78 1.808 1.798 1.843a.312.312 0 01.086 0h.027a1.84 1.84 0 001.778-1.842A1.847 1.847 0 0010.7 9.585zm-2.214 4.86c1.227-.742 3.214-.742 4.432 0 .55.336.852.79.856 1.281 0 .495-.305.95-.856 1.29-.611.374-1.415.562-2.218.562-.804 0-1.607-.188-2.218-.563-.55-.335-.856-.79-.856-1.28 0-.492.305-.95.86-1.29z",
|
|
72
|
+
fill: "inherit"
|
|
73
|
+
}));
|
|
74
|
+
};
|
|
75
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
76
|
+
component: IconNode
|
|
77
|
+
}));
|
|
78
|
+
}
|
|
79
|
+
PersonGroupFilled.displayName = 'PersonGroupFilled';
|
|
80
|
+
exports["default"] = PersonGroupFilled;
|
|
@@ -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
|
+
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 SignalDiffusionFilled(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("rect", {
|
|
64
|
+
width: 24,
|
|
65
|
+
height: 24,
|
|
66
|
+
rx: 4,
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
d: "M12 13.724c.956 0 1.73-.772 1.73-1.724s-.774-1.724-1.73-1.724c-.955 0-1.729.772-1.729 1.724s.774 1.724 1.73 1.724z",
|
|
70
|
+
fill: "inherit"
|
|
71
|
+
}), React.createElement("path", {
|
|
72
|
+
d: "M8.956 8.537c-2.029 1.891-2.029 4.958 0 6.85M15.044 15.386c2.03-1.891 2.03-4.957 0-6.849M6.62 6.636a7.57 7.57 0 000 10.728M17.382 17.365a7.57 7.57 0 000-10.73",
|
|
73
|
+
stroke: "inherit",
|
|
74
|
+
strokeWidth: 1.522,
|
|
75
|
+
strokeLinecap: "round",
|
|
76
|
+
strokeLinejoin: "round"
|
|
77
|
+
}));
|
|
78
|
+
};
|
|
79
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
80
|
+
component: IconNode
|
|
81
|
+
}));
|
|
82
|
+
}
|
|
83
|
+
SignalDiffusionFilled.displayName = 'SignalDiffusionFilled';
|
|
84
|
+
exports["default"] = SignalDiffusionFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export { default as ChainFilled } from './ChainFilled';
|
|
|
52
52
|
export { default as ChainOutlined } from './ChainOutlined';
|
|
53
53
|
export { default as CheckOutlined } from './CheckOutlined';
|
|
54
54
|
export { default as CheckboxMultipleOutlined } from './CheckboxMultipleOutlined';
|
|
55
|
+
export { default as CheckedOutlined } from './CheckedOutlined';
|
|
55
56
|
export { default as ChevronRightOutlined } from './ChevronRightOutlined';
|
|
56
57
|
export { default as ChevronUpFilled } from './ChevronUpFilled';
|
|
57
58
|
export { default as CircleDollarFilled } from './CircleDollarFilled';
|
|
@@ -239,6 +240,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
240
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
241
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
242
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
243
|
+
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
242
244
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
243
245
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
244
246
|
export { default as PlayFilled } from './PlayFilled';
|
|
@@ -284,6 +286,7 @@ export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled'
|
|
|
284
286
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
285
287
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
286
288
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
|
289
|
+
export { default as SignalDiffusionFilled } from './SignalDiffusionFilled';
|
|
287
290
|
export { default as SignalDiffusionOutlined } from './SignalDiffusionOutlined';
|
|
288
291
|
export { default as SignalFilled } from './SignalFilled';
|
|
289
292
|
export { default as SignalOutlined } from './SignalOutlined';
|
package/lib/index.js
CHANGED
|
@@ -9,12 +9,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
11
|
exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.ImpassabilityFilled = exports.DailyFinanceOutlined = exports.DailyFinanceFilled = void 0;
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = void 0;
|
|
12
|
+
exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockOutline = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleStopFilled = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckedOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = void 0;
|
|
13
|
+
exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.FileBottomArrowOutlined = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownlaodAppOutlined = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotCalenderOutlined = void 0;
|
|
14
|
+
exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImportOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeWifiOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = void 0;
|
|
15
|
+
exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PersonWarningFilled = exports.PersonGroupFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OtcMerchant = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = 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.MinusSquareOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = void 0;
|
|
16
|
+
exports.SquareBoxOutlined = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SiteMapOutlined = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = 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.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = void 0;
|
|
17
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = void 0;
|
|
18
18
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
19
19
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
20
20
|
enumerable: true,
|
|
@@ -393,6 +393,13 @@ Object.defineProperty(exports, "CheckboxMultipleOutlined", {
|
|
|
393
393
|
return __importDefault(CheckboxMultipleOutlined_1)["default"];
|
|
394
394
|
}
|
|
395
395
|
});
|
|
396
|
+
var CheckedOutlined_1 = require("./CheckedOutlined");
|
|
397
|
+
Object.defineProperty(exports, "CheckedOutlined", {
|
|
398
|
+
enumerable: true,
|
|
399
|
+
get: function get() {
|
|
400
|
+
return __importDefault(CheckedOutlined_1)["default"];
|
|
401
|
+
}
|
|
402
|
+
});
|
|
396
403
|
var ChevronRightOutlined_1 = require("./ChevronRightOutlined");
|
|
397
404
|
Object.defineProperty(exports, "ChevronRightOutlined", {
|
|
398
405
|
enumerable: true,
|
|
@@ -1702,6 +1709,13 @@ Object.defineProperty(exports, "PeopleTeamOutlined", {
|
|
|
1702
1709
|
return __importDefault(PeopleTeamOutlined_1)["default"];
|
|
1703
1710
|
}
|
|
1704
1711
|
});
|
|
1712
|
+
var PersonGroupFilled_1 = require("./PersonGroupFilled");
|
|
1713
|
+
Object.defineProperty(exports, "PersonGroupFilled", {
|
|
1714
|
+
enumerable: true,
|
|
1715
|
+
get: function get() {
|
|
1716
|
+
return __importDefault(PersonGroupFilled_1)["default"];
|
|
1717
|
+
}
|
|
1718
|
+
});
|
|
1705
1719
|
var PersonWarningFilled_1 = require("./PersonWarningFilled");
|
|
1706
1720
|
Object.defineProperty(exports, "PersonWarningFilled", {
|
|
1707
1721
|
enumerable: true,
|
|
@@ -2017,6 +2031,13 @@ Object.defineProperty(exports, "SignBankCardFilled", {
|
|
|
2017
2031
|
return __importDefault(SignBankCardFilled_1)["default"];
|
|
2018
2032
|
}
|
|
2019
2033
|
});
|
|
2034
|
+
var SignalDiffusionFilled_1 = require("./SignalDiffusionFilled");
|
|
2035
|
+
Object.defineProperty(exports, "SignalDiffusionFilled", {
|
|
2036
|
+
enumerable: true,
|
|
2037
|
+
get: function get() {
|
|
2038
|
+
return __importDefault(SignalDiffusionFilled_1)["default"];
|
|
2039
|
+
}
|
|
2040
|
+
});
|
|
2020
2041
|
var SignalDiffusionOutlined_1 = require("./SignalDiffusionOutlined");
|
|
2021
2042
|
Object.defineProperty(exports, "SignalDiffusionOutlined", {
|
|
2022
2043
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.73",
|
|
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": "c3d514cc349603205461fa3a1944cd6f82aaeee9"
|
|
26
26
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function CheckedOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<g clipPath="url(#checked-outlined_svg__clip0_11995_6628)">
|
|
8
|
+
<path
|
|
9
|
+
d="M11.125 14.118L17.083 8l.917.941L11.125 16 7 11.765l.917-.941 3.208 3.294z"
|
|
10
|
+
fill="currentColor"
|
|
11
|
+
/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="checked-outlined_svg__clip0_11995_6628">
|
|
15
|
+
<path fill="#fff" d="M0 0h24v24H0z" />
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
CheckedOutlined.displayName = 'CheckedOutlined';
|
|
25
|
+
export default CheckedOutlined;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function PersonGroupFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<rect width={24} height={24} rx={4} fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M14.378 7.127c.31 0 .588.067.831.202.244.135.454.3.63.497s.31.41.404.638c.093.228.14.43.14.606v8.782c0 .3-.06.57-.179.808-.12.239-.274.44-.466.607a2.207 2.207 0 01-.645.388c-.239.093-.477.14-.715.14H6.715c-.197 0-.412-.057-.645-.171a2.727 2.727 0 01-.653-.45 2.556 2.556 0 01-.505-.646 1.51 1.51 0 01-.203-.738V9.132c0-.218.052-.443.156-.676.104-.233.238-.448.404-.645.166-.197.358-.36.575-.49.218-.13.446-.194.684-.194h7.85zm1.834-2.922c.445 0 .855.132 1.228.396s.697.59.971.98c.275.388.49.807.645 1.258.156.451.234.863.234 1.236v8.254c0 .217-.065.417-.195.598s-.287.337-.474.466a2.58 2.58 0 01-.606.311c-.218.078-.42.117-.606.117h-.062v-9.28c-.083-.715-.306-1.264-.669-1.647-.363-.384-.844-.632-1.445-.746-.601-.114-7.586 0-7.586 0a.267.267 0 00.016-.11c0-.206.062-.419.186-.637a2.29 2.29 0 01.49-.59c.202-.176.427-.321.676-.435.249-.114.498-.171.746-.171h6.45zM10.7 9.585a1.847 1.847 0 00-1.845 1.846c0 1 .78 1.808 1.798 1.843a.312.312 0 01.086 0h.027a1.84 1.84 0 001.778-1.842A1.847 1.847 0 0010.7 9.585zm-2.214 4.86c1.227-.742 3.214-.742 4.432 0 .55.336.852.79.856 1.281 0 .495-.305.95-.856 1.29-.611.374-1.415.562-2.218.562-.804 0-1.607-.188-2.218-.563-.55-.335-.856-.79-.856-1.28 0-.492.305-.95.86-1.29z"
|
|
12
|
+
fill="inherit"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
PersonGroupFilled.displayName = 'PersonGroupFilled';
|
|
21
|
+
export default PersonGroupFilled;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function SignalDiffusionFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<rect width={24} height={24} rx={4} fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M12 13.724c.956 0 1.73-.772 1.73-1.724s-.774-1.724-1.73-1.724c-.955 0-1.729.772-1.729 1.724s.774 1.724 1.73 1.724z"
|
|
10
|
+
fill="inherit"
|
|
11
|
+
/>
|
|
12
|
+
<path
|
|
13
|
+
d="M8.956 8.537c-2.029 1.891-2.029 4.958 0 6.85M15.044 15.386c2.03-1.891 2.03-4.957 0-6.849M6.62 6.636a7.57 7.57 0 000 10.728M17.382 17.365a7.57 7.57 0 000-10.73"
|
|
14
|
+
stroke="inherit"
|
|
15
|
+
strokeWidth={1.522}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
SignalDiffusionFilled.displayName = 'SignalDiffusionFilled';
|
|
26
|
+
export default SignalDiffusionFilled;
|
package/src/index.tsx
CHANGED
|
@@ -52,6 +52,7 @@ export { default as ChainFilled } from './ChainFilled';
|
|
|
52
52
|
export { default as ChainOutlined } from './ChainOutlined';
|
|
53
53
|
export { default as CheckOutlined } from './CheckOutlined';
|
|
54
54
|
export { default as CheckboxMultipleOutlined } from './CheckboxMultipleOutlined';
|
|
55
|
+
export { default as CheckedOutlined } from './CheckedOutlined';
|
|
55
56
|
export { default as ChevronRightOutlined } from './ChevronRightOutlined';
|
|
56
57
|
export { default as ChevronUpFilled } from './ChevronUpFilled';
|
|
57
58
|
export { default as CircleDollarFilled } from './CircleDollarFilled';
|
|
@@ -239,6 +240,7 @@ export { default as PeopleQuestionFilled } from './PeopleQuestionFilled';
|
|
|
239
240
|
export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
240
241
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
241
242
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
243
|
+
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
242
244
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
243
245
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
244
246
|
export { default as PlayFilled } from './PlayFilled';
|
|
@@ -284,6 +286,7 @@ export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled'
|
|
|
284
286
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
285
287
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
286
288
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
|
289
|
+
export { default as SignalDiffusionFilled } from './SignalDiffusionFilled';
|
|
287
290
|
export { default as SignalDiffusionOutlined } from './SignalDiffusionOutlined';
|
|
288
291
|
export { default as SignalFilled } from './SignalFilled';
|
|
289
292
|
export { default as SignalOutlined } from './SignalOutlined';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="24" height="24" rx="4" fill="currentColor" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M14.3777 7.12682C14.6886 7.12682 14.9658 7.19418 15.2093 7.32889C15.4528 7.46361 15.6627 7.62941 15.8388 7.82629C16.015 8.02318 16.1497 8.23561 16.243 8.46359C16.3362 8.69157 16.3829 8.89363 16.3829 9.0698V17.852C16.3829 18.1526 16.3233 18.422 16.2041 18.6603C16.0849 18.8987 15.9295 19.1007 15.7378 19.2665C15.5461 19.4323 15.3311 19.5619 15.0927 19.6551C14.8544 19.7484 14.6161 19.795 14.3777 19.795H6.71462C6.51773 19.795 6.30271 19.738 6.06955 19.624C5.8364 19.51 5.61878 19.3598 5.41672 19.1733C5.21465 18.9867 5.04625 18.7717 4.91154 18.5282C4.77683 18.2847 4.70947 18.0386 4.70947 17.7899V9.13197C4.70947 8.91436 4.76129 8.68897 4.86491 8.45582C4.96854 8.22266 5.10325 8.00764 5.26905 7.81075C5.43485 7.61386 5.62656 7.45065 5.84417 7.32112C6.06178 7.19159 6.28976 7.12682 6.5281 7.12682H14.3777ZM16.2119 4.20459C16.6575 4.20459 17.0668 4.33671 17.4398 4.60096C17.8129 4.8652 18.1367 5.19162 18.4113 5.58022C18.6859 5.96881 18.901 6.38849 19.0564 6.83926C19.2118 7.29003 19.2896 7.70194 19.2896 8.07499V16.3287C19.2896 16.5464 19.2248 16.7458 19.0953 16.9272C18.9657 17.1085 18.8077 17.264 18.6212 17.3935C18.4346 17.523 18.2326 17.6267 18.015 17.7044C17.7973 17.7821 17.5953 17.821 17.4088 17.821H17.3466V8.54131C17.2637 7.82629 17.0409 7.27708 16.6782 6.89367C16.3155 6.51025 15.8336 6.26155 15.2326 6.14756C14.6316 6.03358 7.64725 6.14756 7.64725 6.14756C7.65761 6.12684 7.66279 6.09057 7.66279 6.03876C7.66279 5.83151 7.72497 5.61908 7.84932 5.40146C7.97367 5.18385 8.13688 4.98696 8.33895 4.8108C8.54102 4.63463 8.7664 4.48956 9.0151 4.37557C9.2638 4.26158 9.51251 4.20459 9.76121 4.20459H16.2119ZM10.6998 9.58505C9.68235 9.58505 8.85522 10.413 8.85522 11.4315C8.85522 12.4306 9.63575 13.2391 10.6532 13.2741C10.6842 13.2702 10.7153 13.2702 10.7386 13.2741H10.758H10.7658C11.7599 13.2391 12.5404 12.4306 12.5443 11.4315C12.5443 10.413 11.7172 9.58505 10.6998 9.58505ZM8.48599 14.4454C9.71305 13.7032 11.6999 13.7032 12.9183 14.4454C13.4685 14.7806 13.7698 15.2355 13.7742 15.7263C13.7742 16.2211 13.4685 16.676 12.9183 17.0152C12.3069 17.3903 11.5034 17.5778 10.6999 17.5778C9.89646 17.5778 9.09297 17.3903 8.48162 17.0152C7.9314 16.68 7.62573 16.2251 7.62573 15.7343C7.62573 15.2435 7.9314 14.7846 8.48599 14.4454Z"
|
|
5
|
+
fill="inherit" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="24" height="24" rx="4" fill="currentColor" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12.0006 13.724C12.9558 13.724 13.7302 12.952 13.7302 11.9998C13.7302 11.0476 12.9558 10.2756 12.0006 10.2756C11.0454 10.2756 10.271 11.0476 10.271 11.9998C10.271 12.952 11.0454 13.724 12.0006 13.724Z"
|
|
5
|
+
fill="inherit" />
|
|
6
|
+
<path d="M8.95637 8.53711C6.92698 10.4285 6.92698 13.495 8.95637 15.3863" stroke="inherit"
|
|
7
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
8
|
+
<path d="M15.0444 15.3863C17.0738 13.495 17.0738 10.4285 15.0444 8.53711" stroke="inherit"
|
|
9
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
10
|
+
<path d="M6.61913 6.6355C3.64714 9.59821 3.64714 14.4017 6.61913 17.3644" stroke="inherit"
|
|
11
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
12
|
+
<path d="M17.3821 17.3646C20.3541 14.4019 20.3541 9.59845 17.3821 6.63574" stroke="inherit"
|
|
13
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_11995_6628)">
|
|
3
|
+
<path d="M11.1249 14.118L17.0828 8L18 8.94102L11.1249 16L7 11.7647L7.9165 10.8237L11.1249 14.118Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_11995_6628">
|
|
8
|
+
<rect width="24" height="24" fill="white" />
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_11995_6628)">
|
|
3
|
+
<path d="M11.1249 14.118L17.0828 8L18 8.94102L11.1249 16L7 11.7647L7.9165 10.8237L11.1249 14.118Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_11995_6628">
|
|
8
|
+
<rect width="24" height="24" fill="white" />
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="24" height="24" rx="4" fill="currentColor" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M14.3777 7.12682C14.6886 7.12682 14.9658 7.19418 15.2093 7.32889C15.4528 7.46361 15.6627 7.62941 15.8388 7.82629C16.015 8.02318 16.1497 8.23561 16.243 8.46359C16.3362 8.69157 16.3829 8.89363 16.3829 9.0698V17.852C16.3829 18.1526 16.3233 18.422 16.2041 18.6603C16.0849 18.8987 15.9295 19.1007 15.7378 19.2665C15.5461 19.4323 15.3311 19.5619 15.0927 19.6551C14.8544 19.7484 14.6161 19.795 14.3777 19.795H6.71462C6.51773 19.795 6.30271 19.738 6.06955 19.624C5.8364 19.51 5.61878 19.3598 5.41672 19.1733C5.21465 18.9867 5.04625 18.7717 4.91154 18.5282C4.77683 18.2847 4.70947 18.0386 4.70947 17.7899V9.13197C4.70947 8.91436 4.76129 8.68897 4.86491 8.45582C4.96854 8.22266 5.10325 8.00764 5.26905 7.81075C5.43485 7.61386 5.62656 7.45065 5.84417 7.32112C6.06178 7.19159 6.28976 7.12682 6.5281 7.12682H14.3777ZM16.2119 4.20459C16.6575 4.20459 17.0668 4.33671 17.4398 4.60096C17.8129 4.8652 18.1367 5.19162 18.4113 5.58022C18.6859 5.96881 18.901 6.38849 19.0564 6.83926C19.2118 7.29003 19.2896 7.70194 19.2896 8.07499V16.3287C19.2896 16.5464 19.2248 16.7458 19.0953 16.9272C18.9657 17.1085 18.8077 17.264 18.6212 17.3935C18.4346 17.523 18.2326 17.6267 18.015 17.7044C17.7973 17.7821 17.5953 17.821 17.4088 17.821H17.3466V8.54131C17.2637 7.82629 17.0409 7.27708 16.6782 6.89367C16.3155 6.51025 15.8336 6.26155 15.2326 6.14756C14.6316 6.03358 7.64725 6.14756 7.64725 6.14756C7.65761 6.12684 7.66279 6.09057 7.66279 6.03876C7.66279 5.83151 7.72497 5.61908 7.84932 5.40146C7.97367 5.18385 8.13688 4.98696 8.33895 4.8108C8.54102 4.63463 8.7664 4.48956 9.0151 4.37557C9.2638 4.26158 9.51251 4.20459 9.76121 4.20459H16.2119ZM10.6998 9.58505C9.68235 9.58505 8.85522 10.413 8.85522 11.4315C8.85522 12.4306 9.63575 13.2391 10.6532 13.2741C10.6842 13.2702 10.7153 13.2702 10.7386 13.2741H10.758H10.7658C11.7599 13.2391 12.5404 12.4306 12.5443 11.4315C12.5443 10.413 11.7172 9.58505 10.6998 9.58505ZM8.48599 14.4454C9.71305 13.7032 11.6999 13.7032 12.9183 14.4454C13.4685 14.7806 13.7698 15.2355 13.7742 15.7263C13.7742 16.2211 13.4685 16.676 12.9183 17.0152C12.3069 17.3903 11.5034 17.5778 10.6999 17.5778C9.89646 17.5778 9.09297 17.3903 8.48162 17.0152C7.9314 16.68 7.62573 16.2251 7.62573 15.7343C7.62573 15.2435 7.9314 14.7846 8.48599 14.4454Z"
|
|
5
|
+
fill="inherit" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="24" height="24" rx="4" fill="currentColor" />
|
|
3
|
+
<path
|
|
4
|
+
d="M12.0006 13.724C12.9558 13.724 13.7302 12.952 13.7302 11.9998C13.7302 11.0476 12.9558 10.2756 12.0006 10.2756C11.0454 10.2756 10.271 11.0476 10.271 11.9998C10.271 12.952 11.0454 13.724 12.0006 13.724Z"
|
|
5
|
+
fill="inherit" />
|
|
6
|
+
<path d="M8.95637 8.53711C6.92698 10.4285 6.92698 13.495 8.95637 15.3863" stroke="inherit"
|
|
7
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
8
|
+
<path d="M15.0444 15.3863C17.0738 13.495 17.0738 10.4285 15.0444 8.53711" stroke="inherit"
|
|
9
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
10
|
+
<path d="M6.61913 6.6355C3.64714 9.59821 3.64714 14.4017 6.61913 17.3644" stroke="inherit"
|
|
11
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
12
|
+
<path d="M17.3821 17.3646C20.3541 14.4019 20.3541 9.59845 17.3821 6.63574" stroke="inherit"
|
|
13
|
+
stroke-width="1.52205" stroke-linecap="round" stroke-linejoin="round" />
|
|
14
|
+
</svg>
|