a-icons 1.0.11 → 1.0.12
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/SettingFilled.d.ts +6 -0
- package/es/SettingFilled.js +46 -0
- package/es/SettingOutlined.d.ts +6 -0
- package/es/SettingOutlined.js +46 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/SettingFilled.d.ts +6 -0
- package/lib/SettingFilled.js +93 -0
- package/lib/SettingOutlined.d.ts +6 -0
- package/lib/SettingOutlined.js +93 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +18 -0
- package/package.json +2 -2
- package/src/SettingFilled.tsx +21 -0
- package/src/SettingOutlined.tsx +26 -0
- package/src/index.tsx +2 -0
- package/svgs/filled/setting-filled.svg +4 -0
- package/svgs/outlined/setting-outlined.svg +4 -0
- package/tmpAllSvgs/setting-filled.svg +4 -0
- package/tmpAllSvgs/setting-outlined.svg +4 -0
|
@@ -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
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function SettingFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
width: 24,
|
|
24
|
+
height: 24,
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement("circle", {
|
|
28
|
+
cx: 11.8,
|
|
29
|
+
cy: 11.81,
|
|
30
|
+
r: 1.96,
|
|
31
|
+
fill: "currentColor"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
fill: "currentColor",
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
clipRule: "evenodd",
|
|
36
|
+
d: "M19.226 8.73c.19.465.642.769 1.144.77a1.24 1.24 0 011.24 1.24v2.14a1.24 1.24 0 01-1.24 1.24 1.24 1.24 0 00-.87 2.12 1.26 1.26 0 010 1.76L18 19.5a1.26 1.26 0 01-1.76 0 1.24 1.24 0 00-2.12.87 1.24 1.24 0 01-1.24 1.24h-2.14a1.24 1.24 0 01-1.24-1.24 1.24 1.24 0 00-2.12-.87 1.26 1.26 0 01-1.76 0L4.12 18a1.26 1.26 0 010-1.76 1.24 1.24 0 00-.88-2.12A1.24 1.24 0 012 12.88v-2.14c0-.685.555-1.24 1.24-1.24a1.24 1.24 0 00.87-2.12 1.26 1.26 0 010-1.76l1.5-1.5a1.26 1.26 0 011.76 0 1.24 1.24 0 002.12-.88c0-.685.555-1.24 1.24-1.24h2.15a1.24 1.24 0 011.24 1.24 1.24 1.24 0 002.12.88 1.26 1.26 0 011.76 0l1.5 1.5a1.26 1.26 0 010 1.76 1.24 1.24 0 00-.274 1.35zM8.34 11.81a3.46 3.46 0 106.92 0 3.46 3.46 0 00-6.92 0z"
|
|
37
|
+
}));
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
41
|
+
component: IconNode
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
SettingFilled.displayName = 'SettingFilled';
|
|
46
|
+
export default SettingFilled;
|
|
@@ -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
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/Icon';
|
|
19
|
+
|
|
20
|
+
function SettingOutlined(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
width: 24,
|
|
24
|
+
height: 24,
|
|
25
|
+
fill: "none",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
fill: "currentColor",
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M19.226 8.73c.19.465.642.769 1.144.77.68.005 1.23.56 1.23 1.24v2.14a1.24 1.24 0 01-1.24 1.24 1.24 1.24 0 00-.87 2.12 1.26 1.26 0 010 1.76l-1.5 1.5a1.26 1.26 0 01-1.76 0 1.18 1.18 0 00-.87-.37 1.24 1.24 0 00-1.25 1.24 1.24 1.24 0 01-1.24 1.24h-2.14a1.24 1.24 0 01-1.24-1.24 1.24 1.24 0 00-1.25-1.24 1.18 1.18 0 00-.87.37 1.26 1.26 0 01-1.76 0L4.11 18a1.26 1.26 0 010-1.76 1.24 1.24 0 00-.87-2.12A1.24 1.24 0 012 12.88v-2.14c0-.685.555-1.24 1.24-1.24a1.24 1.24 0 00.87-2.12 1.26 1.26 0 010-1.76l1.5-1.5a1.26 1.26 0 011.76 0c.226.24.541.373.87.37a1.24 1.24 0 001.25-1.25c0-.685.555-1.24 1.24-1.24h2.15c.685 0 1.24.555 1.24 1.24a1.24 1.24 0 001.25 1.25c.329.003.644-.13.87-.37a1.26 1.26 0 011.76 0l1.5 1.5a1.26 1.26 0 010 1.76 1.24 1.24 0 00-.274 1.35zM17.8 14.31a2.72 2.72 0 012.31-1.68l-.03-1.64a2.72 2.72 0 01-2.28-1.68 2.76 2.76 0 01.45-2.8L17.1 5.36a2.7 2.7 0 01-1.74.63 2.76 2.76 0 01-2.74-2.49h-1.64a2.75 2.75 0 01-2.74 2.49 2.7 2.7 0 01-1.74-.63L5.38 6.51a2.76 2.76 0 01.42 2.8 2.72 2.72 0 01-2.28 1.68v1.64a2.72 2.72 0 012.28 1.68 2.76 2.76 0 01-.45 2.8l1.15 1.15a2.7 2.7 0 011.74-.63 2.76 2.76 0 012.74 2.49h1.64a2.73 2.73 0 012.74-2.49 2.7 2.7 0 011.74.63l1.12-1.15a2.76 2.76 0 01-.42-2.8z"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
fill: "currentColor",
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
clipRule: "evenodd",
|
|
36
|
+
d: "M8.34 11.81a3.46 3.46 0 116.92 0 3.46 3.46 0 01-6.92 0zm1.46 0a2 2 0 104 0 2 2 0 00-4 0z"
|
|
37
|
+
}));
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
41
|
+
component: IconNode
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
SettingOutlined.displayName = 'SettingOutlined';
|
|
46
|
+
export default SettingOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
2
2
|
export { default as EditFilled } from './EditFilled';
|
|
3
|
+
export { default as SettingFilled } from './SettingFilled';
|
|
4
|
+
export { default as SettingOutlined } from './SettingOutlined';
|
|
3
5
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
package/es/index.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
2
2
|
export { default as EditFilled } from './EditFilled';
|
|
3
|
+
export { default as SettingFilled } from './SettingFilled';
|
|
4
|
+
export { default as SettingOutlined } from './SettingOutlined';
|
|
3
5
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function SettingFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
width: 24,
|
|
71
|
+
height: 24,
|
|
72
|
+
fill: "none",
|
|
73
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
74
|
+
}, props), React.createElement("circle", {
|
|
75
|
+
cx: 11.8,
|
|
76
|
+
cy: 11.81,
|
|
77
|
+
r: 1.96,
|
|
78
|
+
fill: "currentColor"
|
|
79
|
+
}), React.createElement("path", {
|
|
80
|
+
fill: "currentColor",
|
|
81
|
+
fillRule: "evenodd",
|
|
82
|
+
clipRule: "evenodd",
|
|
83
|
+
d: "M19.226 8.73c.19.465.642.769 1.144.77a1.24 1.24 0 011.24 1.24v2.14a1.24 1.24 0 01-1.24 1.24 1.24 1.24 0 00-.87 2.12 1.26 1.26 0 010 1.76L18 19.5a1.26 1.26 0 01-1.76 0 1.24 1.24 0 00-2.12.87 1.24 1.24 0 01-1.24 1.24h-2.14a1.24 1.24 0 01-1.24-1.24 1.24 1.24 0 00-2.12-.87 1.26 1.26 0 01-1.76 0L4.12 18a1.26 1.26 0 010-1.76 1.24 1.24 0 00-.88-2.12A1.24 1.24 0 012 12.88v-2.14c0-.685.555-1.24 1.24-1.24a1.24 1.24 0 00.87-2.12 1.26 1.26 0 010-1.76l1.5-1.5a1.26 1.26 0 011.76 0 1.24 1.24 0 002.12-.88c0-.685.555-1.24 1.24-1.24h2.15a1.24 1.24 0 011.24 1.24 1.24 1.24 0 002.12.88 1.26 1.26 0 011.76 0l1.5 1.5a1.26 1.26 0 010 1.76 1.24 1.24 0 00-.274 1.35zM8.34 11.81a3.46 3.46 0 106.92 0 3.46 3.46 0 00-6.92 0z"
|
|
84
|
+
}));
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
88
|
+
component: IconNode
|
|
89
|
+
}));
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
SettingFilled.displayName = 'SettingFilled';
|
|
93
|
+
exports["default"] = SettingFilled;
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
Object.defineProperty(o, k2, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return m[k];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
33
|
+
Object.defineProperty(o, "default", {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
value: v
|
|
36
|
+
});
|
|
37
|
+
} : function (o, v) {
|
|
38
|
+
o["default"] = v;
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k in mod) {
|
|
45
|
+
if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
__setModuleDefault(result, mod);
|
|
49
|
+
|
|
50
|
+
return result;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
54
|
+
return mod && mod.__esModule ? mod : {
|
|
55
|
+
"default": mod
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
Object.defineProperty(exports, "__esModule", {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
var React = __importStar(require("react"));
|
|
64
|
+
|
|
65
|
+
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
|
+
|
|
67
|
+
function SettingOutlined(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
width: 24,
|
|
71
|
+
height: 24,
|
|
72
|
+
fill: "none",
|
|
73
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
74
|
+
}, props), React.createElement("path", {
|
|
75
|
+
fill: "currentColor",
|
|
76
|
+
fillRule: "evenodd",
|
|
77
|
+
clipRule: "evenodd",
|
|
78
|
+
d: "M19.226 8.73c.19.465.642.769 1.144.77.68.005 1.23.56 1.23 1.24v2.14a1.24 1.24 0 01-1.24 1.24 1.24 1.24 0 00-.87 2.12 1.26 1.26 0 010 1.76l-1.5 1.5a1.26 1.26 0 01-1.76 0 1.18 1.18 0 00-.87-.37 1.24 1.24 0 00-1.25 1.24 1.24 1.24 0 01-1.24 1.24h-2.14a1.24 1.24 0 01-1.24-1.24 1.24 1.24 0 00-1.25-1.24 1.18 1.18 0 00-.87.37 1.26 1.26 0 01-1.76 0L4.11 18a1.26 1.26 0 010-1.76 1.24 1.24 0 00-.87-2.12A1.24 1.24 0 012 12.88v-2.14c0-.685.555-1.24 1.24-1.24a1.24 1.24 0 00.87-2.12 1.26 1.26 0 010-1.76l1.5-1.5a1.26 1.26 0 011.76 0c.226.24.541.373.87.37a1.24 1.24 0 001.25-1.25c0-.685.555-1.24 1.24-1.24h2.15c.685 0 1.24.555 1.24 1.24a1.24 1.24 0 001.25 1.25c.329.003.644-.13.87-.37a1.26 1.26 0 011.76 0l1.5 1.5a1.26 1.26 0 010 1.76 1.24 1.24 0 00-.274 1.35zM17.8 14.31a2.72 2.72 0 012.31-1.68l-.03-1.64a2.72 2.72 0 01-2.28-1.68 2.76 2.76 0 01.45-2.8L17.1 5.36a2.7 2.7 0 01-1.74.63 2.76 2.76 0 01-2.74-2.49h-1.64a2.75 2.75 0 01-2.74 2.49 2.7 2.7 0 01-1.74-.63L5.38 6.51a2.76 2.76 0 01.42 2.8 2.72 2.72 0 01-2.28 1.68v1.64a2.72 2.72 0 012.28 1.68 2.76 2.76 0 01-.45 2.8l1.15 1.15a2.7 2.7 0 011.74-.63 2.76 2.76 0 012.74 2.49h1.64a2.73 2.73 0 012.74-2.49 2.7 2.7 0 011.74.63l1.12-1.15a2.76 2.76 0 01-.42-2.8z"
|
|
79
|
+
}), React.createElement("path", {
|
|
80
|
+
fill: "currentColor",
|
|
81
|
+
fillRule: "evenodd",
|
|
82
|
+
clipRule: "evenodd",
|
|
83
|
+
d: "M8.34 11.81a3.46 3.46 0 116.92 0 3.46 3.46 0 01-6.92 0zm1.46 0a2 2 0 104 0 2 2 0 00-4 0z"
|
|
84
|
+
}));
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
88
|
+
component: IconNode
|
|
89
|
+
}));
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
SettingOutlined.displayName = 'SettingOutlined';
|
|
93
|
+
exports["default"] = SettingOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
2
2
|
export { default as EditFilled } from './EditFilled';
|
|
3
|
+
export { default as SettingFilled } from './SettingFilled';
|
|
4
|
+
export { default as SettingOutlined } from './SettingOutlined';
|
|
3
5
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
package/lib/index.js
CHANGED
|
@@ -22,6 +22,24 @@ Object.defineProperty(exports, "EditFilled", {
|
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
+
var SettingFilled_1 = require("./SettingFilled");
|
|
26
|
+
|
|
27
|
+
Object.defineProperty(exports, "SettingFilled", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function get() {
|
|
30
|
+
return SettingFilled_1["default"];
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
var SettingOutlined_1 = require("./SettingOutlined");
|
|
35
|
+
|
|
36
|
+
Object.defineProperty(exports, "SettingOutlined", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function get() {
|
|
39
|
+
return SettingOutlined_1["default"];
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
|
|
25
43
|
var TrashCanFilled_1 = require("./TrashCanFilled");
|
|
26
44
|
|
|
27
45
|
Object.defineProperty(exports, "TrashCanFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
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": "8fde37ab8c36afa2ca7c531ce3daabf188a4725b"
|
|
26
26
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function SettingFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg width={24} height={24} fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<circle cx={11.8} cy={11.81} r={1.96} fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
clipRule="evenodd"
|
|
12
|
+
d="M19.226 8.73c.19.465.642.769 1.144.77a1.24 1.24 0 011.24 1.24v2.14a1.24 1.24 0 01-1.24 1.24 1.24 1.24 0 00-.87 2.12 1.26 1.26 0 010 1.76L18 19.5a1.26 1.26 0 01-1.76 0 1.24 1.24 0 00-2.12.87 1.24 1.24 0 01-1.24 1.24h-2.14a1.24 1.24 0 01-1.24-1.24 1.24 1.24 0 00-2.12-.87 1.26 1.26 0 01-1.76 0L4.12 18a1.26 1.26 0 010-1.76 1.24 1.24 0 00-.88-2.12A1.24 1.24 0 012 12.88v-2.14c0-.685.555-1.24 1.24-1.24a1.24 1.24 0 00.87-2.12 1.26 1.26 0 010-1.76l1.5-1.5a1.26 1.26 0 011.76 0 1.24 1.24 0 002.12-.88c0-.685.555-1.24 1.24-1.24h2.15a1.24 1.24 0 011.24 1.24 1.24 1.24 0 002.12.88 1.26 1.26 0 011.76 0l1.5 1.5a1.26 1.26 0 010 1.76 1.24 1.24 0 00-.274 1.35zM8.34 11.81a3.46 3.46 0 106.92 0 3.46 3.46 0 00-6.92 0z"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
SettingFilled.displayName = 'SettingFilled';
|
|
21
|
+
export default SettingFilled;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function SettingOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg width={24} height={24} fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M19.226 8.73c.19.465.642.769 1.144.77.68.005 1.23.56 1.23 1.24v2.14a1.24 1.24 0 01-1.24 1.24 1.24 1.24 0 00-.87 2.12 1.26 1.26 0 010 1.76l-1.5 1.5a1.26 1.26 0 01-1.76 0 1.18 1.18 0 00-.87-.37 1.24 1.24 0 00-1.25 1.24 1.24 1.24 0 01-1.24 1.24h-2.14a1.24 1.24 0 01-1.24-1.24 1.24 1.24 0 00-1.25-1.24 1.18 1.18 0 00-.87.37 1.26 1.26 0 01-1.76 0L4.11 18a1.26 1.26 0 010-1.76 1.24 1.24 0 00-.87-2.12A1.24 1.24 0 012 12.88v-2.14c0-.685.555-1.24 1.24-1.24a1.24 1.24 0 00.87-2.12 1.26 1.26 0 010-1.76l1.5-1.5a1.26 1.26 0 011.76 0c.226.24.541.373.87.37a1.24 1.24 0 001.25-1.25c0-.685.555-1.24 1.24-1.24h2.15c.685 0 1.24.555 1.24 1.24a1.24 1.24 0 001.25 1.25c.329.003.644-.13.87-.37a1.26 1.26 0 011.76 0l1.5 1.5a1.26 1.26 0 010 1.76 1.24 1.24 0 00-.274 1.35zM17.8 14.31a2.72 2.72 0 012.31-1.68l-.03-1.64a2.72 2.72 0 01-2.28-1.68 2.76 2.76 0 01.45-2.8L17.1 5.36a2.7 2.7 0 01-1.74.63 2.76 2.76 0 01-2.74-2.49h-1.64a2.75 2.75 0 01-2.74 2.49 2.7 2.7 0 01-1.74-.63L5.38 6.51a2.76 2.76 0 01.42 2.8 2.72 2.72 0 01-2.28 1.68v1.64a2.72 2.72 0 012.28 1.68 2.76 2.76 0 01-.45 2.8l1.15 1.15a2.7 2.7 0 011.74-.63 2.76 2.76 0 012.74 2.49h1.64a2.73 2.73 0 012.74-2.49 2.7 2.7 0 011.74.63l1.12-1.15a2.76 2.76 0 01-.42-2.8z"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
d="M8.34 11.81a3.46 3.46 0 116.92 0 3.46 3.46 0 01-6.92 0zm1.46 0a2 2 0 104 0 2 2 0 00-4 0z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
SettingOutlined.displayName = 'SettingOutlined';
|
|
26
|
+
export default SettingOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
2
2
|
export { default as EditFilled } from './EditFilled';
|
|
3
|
+
export { default as SettingFilled } from './SettingFilled';
|
|
4
|
+
export { default as SettingOutlined } from './SettingOutlined';
|
|
3
5
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="11.8" cy="11.81" r="1.96" fill="currentColor"/>
|
|
3
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M19.2264 8.73077C19.4169 9.19491 19.8683 9.49854 20.37 9.5C20.6989 9.5 21.0143 9.63064 21.2468 9.86319C21.4794 10.0957 21.61 10.4111 21.61 10.74V12.88C21.61 13.5648 21.0548 14.12 20.37 14.12C19.8683 14.1215 19.4169 14.4251 19.2264 14.8892C19.036 15.3534 19.144 15.8865 19.5 16.24C19.9776 16.7295 19.9776 17.5105 19.5 18L18 19.5C17.5105 19.9776 16.7295 19.9776 16.24 19.5C15.8865 19.144 15.3534 19.036 14.8892 19.2264C14.4251 19.4169 14.1215 19.8683 14.12 20.37C14.12 21.0548 13.5648 21.61 12.88 21.61H10.74C10.0552 21.61 9.5 21.0548 9.5 20.37C9.49854 19.8683 9.19491 19.4169 8.73077 19.2264C8.26664 19.036 7.73346 19.144 7.38 19.5C6.89055 19.9776 6.10945 19.9776 5.62 19.5L4.12 18C3.64237 17.5105 3.64237 16.7295 4.12 16.24C4.47735 15.8853 4.5847 15.3496 4.39166 14.8846C4.19862 14.4195 3.74352 14.1174 3.24 14.12C2.55517 14.12 2 13.5648 2 12.88V10.74C2 10.0552 2.55517 9.5 3.24 9.5C3.7417 9.49854 4.19308 9.19491 4.38355 8.73077C4.57402 8.26664 4.46605 7.73346 4.11 7.38C3.63237 6.89055 3.63237 6.10945 4.11 5.62L5.61 4.12C6.09945 3.64237 6.88055 3.64237 7.37 4.12C7.72474 4.47735 8.26035 4.5847 8.7254 4.39166C9.19046 4.19862 9.4926 3.74352 9.49 3.24C9.49 2.55517 10.0452 2 10.73 2H12.88C13.2089 2 13.5243 2.13064 13.7568 2.36319C13.9894 2.59573 14.12 2.91113 14.12 3.24C14.1174 3.74352 14.4195 4.19862 14.8846 4.39166C15.3496 4.5847 15.8853 4.47735 16.24 4.12C16.7295 3.64237 17.5105 3.64237 18 4.12L19.5 5.62C19.9776 6.10945 19.9776 6.89055 19.5 7.38C19.144 7.73346 19.036 8.26664 19.2264 8.73077ZM8.34 11.81C8.34 13.7209 9.88909 15.27 11.8 15.27C13.7109 15.27 15.26 13.7209 15.26 11.81C15.26 9.8991 13.7109 8.35 11.8 8.35C9.88909 8.35 8.34 9.8991 8.34 11.81Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M19.2264 8.73077C19.4169 9.19491 19.8683 9.49854 20.37 9.5C21.0509 9.50549 21.6 10.0591 21.6 10.74V12.88C21.6 13.5648 21.0448 14.12 20.36 14.12C19.8583 14.1215 19.4069 14.4251 19.2164 14.8892C19.026 15.3534 19.134 15.8865 19.49 16.24C19.9676 16.7295 19.9676 17.5105 19.49 18L17.99 19.5C17.5005 19.9776 16.7194 19.9776 16.23 19.5C16.0042 19.2608 15.6889 19.1267 15.36 19.13C15.0294 19.1273 14.7114 19.2568 14.4767 19.4896C14.242 19.7225 14.11 20.0394 14.11 20.37C14.11 21.0548 13.5548 21.61 12.87 21.61H10.73C10.0452 21.61 9.49 21.0548 9.49 20.37C9.49001 20.0394 9.358 19.7225 9.12328 19.4896C8.88857 19.2568 8.5706 19.1273 8.24 19.13C7.91111 19.1267 7.59576 19.2608 7.37 19.5C6.88055 19.9776 6.09945 19.9776 5.61 19.5L4.11 18C3.63237 17.5105 3.63237 16.7295 4.11 16.24C4.46605 15.8865 4.57402 15.3534 4.38355 14.8892C4.19308 14.4251 3.7417 14.1215 3.24 14.12C2.91113 14.12 2.59573 13.9894 2.36319 13.7568C2.13064 13.5243 2 13.2089 2 12.88V10.74C2 10.0552 2.55517 9.5 3.24 9.5C3.7417 9.49854 4.19308 9.19491 4.38355 8.73077C4.57402 8.26664 4.46605 7.73346 4.11 7.38C3.63237 6.89055 3.63237 6.10945 4.11 5.62L5.61 4.12C6.09945 3.64237 6.88055 3.64237 7.37 4.12C7.59576 4.35919 7.91111 4.49331 8.24 4.49C8.57234 4.49269 8.89185 4.36186 9.12685 4.12685C9.36186 3.89185 9.49269 3.57234 9.49 3.24C9.49 2.55517 10.0452 2 10.73 2H12.88C13.5648 2 14.12 2.55517 14.12 3.24C14.1173 3.57234 14.2481 3.89185 14.4831 4.12685C14.7182 4.36186 15.0377 4.49269 15.37 4.49C15.6989 4.49331 16.0142 4.35919 16.24 4.12C16.7294 3.64237 17.5105 3.64237 18 4.12L19.5 5.62C19.9776 6.10945 19.9776 6.89055 19.5 7.38C19.144 7.73346 19.036 8.26664 19.2264 8.73077ZM17.8 14.31C18.1904 13.3582 19.0843 12.7081 20.11 12.63L20.08 10.99C19.0654 10.901 18.1855 10.2527 17.8 9.31C17.4224 8.36508 17.5953 7.28901 18.25 6.51L17.1 5.36C16.6123 5.76841 15.9961 5.99152 15.36 5.99C13.9429 5.98653 12.7586 4.91035 12.62 3.5H10.98C10.8458 4.9126 9.65895 5.9912 8.24 5.99C7.6039 5.99152 6.98768 5.76841 6.5 5.36L5.38 6.51C6.02453 7.29496 6.18586 8.37048 5.8 9.31C5.41447 10.2527 4.53459 10.901 3.52 10.99V12.63C4.53459 12.719 5.41447 13.3673 5.8 14.31C6.17764 15.2549 6.0047 16.331 5.35 17.11L6.5 18.26C6.98768 17.8516 7.6039 17.6285 8.24 17.63C9.65715 17.6335 10.8414 18.7096 10.98 20.12H12.62C12.745 18.7029 13.9374 17.6193 15.36 17.63C15.9961 17.6285 16.6123 17.8516 17.1 18.26L18.22 17.11C17.5755 16.325 17.4141 15.2495 17.8 14.31Z" />
|
|
3
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M8.33997 11.81C8.33997 9.89907 9.88906 8.34998 11.8 8.34998C12.7176 8.34998 13.5977 8.71451 14.2466 9.36339C14.8954 10.0123 15.26 10.8923 15.26 11.81C15.26 13.7209 13.7109 15.27 11.8 15.27C9.88906 15.27 8.33997 13.7209 8.33997 11.81ZM9.79997 11.81C9.79997 12.9145 10.6954 13.81 11.8 13.81C12.9045 13.81 13.8 12.9145 13.8 11.81C13.8 10.7054 12.9045 9.80997 11.8 9.80997C10.6954 9.80997 9.79997 10.7054 9.79997 11.81Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="11.8" cy="11.81" r="1.96" fill="currentColor"/>
|
|
3
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M19.2264 8.73077C19.4169 9.19491 19.8683 9.49854 20.37 9.5C20.6989 9.5 21.0143 9.63064 21.2468 9.86319C21.4794 10.0957 21.61 10.4111 21.61 10.74V12.88C21.61 13.5648 21.0548 14.12 20.37 14.12C19.8683 14.1215 19.4169 14.4251 19.2264 14.8892C19.036 15.3534 19.144 15.8865 19.5 16.24C19.9776 16.7295 19.9776 17.5105 19.5 18L18 19.5C17.5105 19.9776 16.7295 19.9776 16.24 19.5C15.8865 19.144 15.3534 19.036 14.8892 19.2264C14.4251 19.4169 14.1215 19.8683 14.12 20.37C14.12 21.0548 13.5648 21.61 12.88 21.61H10.74C10.0552 21.61 9.5 21.0548 9.5 20.37C9.49854 19.8683 9.19491 19.4169 8.73077 19.2264C8.26664 19.036 7.73346 19.144 7.38 19.5C6.89055 19.9776 6.10945 19.9776 5.62 19.5L4.12 18C3.64237 17.5105 3.64237 16.7295 4.12 16.24C4.47735 15.8853 4.5847 15.3496 4.39166 14.8846C4.19862 14.4195 3.74352 14.1174 3.24 14.12C2.55517 14.12 2 13.5648 2 12.88V10.74C2 10.0552 2.55517 9.5 3.24 9.5C3.7417 9.49854 4.19308 9.19491 4.38355 8.73077C4.57402 8.26664 4.46605 7.73346 4.11 7.38C3.63237 6.89055 3.63237 6.10945 4.11 5.62L5.61 4.12C6.09945 3.64237 6.88055 3.64237 7.37 4.12C7.72474 4.47735 8.26035 4.5847 8.7254 4.39166C9.19046 4.19862 9.4926 3.74352 9.49 3.24C9.49 2.55517 10.0452 2 10.73 2H12.88C13.2089 2 13.5243 2.13064 13.7568 2.36319C13.9894 2.59573 14.12 2.91113 14.12 3.24C14.1174 3.74352 14.4195 4.19862 14.8846 4.39166C15.3496 4.5847 15.8853 4.47735 16.24 4.12C16.7295 3.64237 17.5105 3.64237 18 4.12L19.5 5.62C19.9776 6.10945 19.9776 6.89055 19.5 7.38C19.144 7.73346 19.036 8.26664 19.2264 8.73077ZM8.34 11.81C8.34 13.7209 9.88909 15.27 11.8 15.27C13.7109 15.27 15.26 13.7209 15.26 11.81C15.26 9.8991 13.7109 8.35 11.8 8.35C9.88909 8.35 8.34 9.8991 8.34 11.81Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M19.2264 8.73077C19.4169 9.19491 19.8683 9.49854 20.37 9.5C21.0509 9.50549 21.6 10.0591 21.6 10.74V12.88C21.6 13.5648 21.0448 14.12 20.36 14.12C19.8583 14.1215 19.4069 14.4251 19.2164 14.8892C19.026 15.3534 19.134 15.8865 19.49 16.24C19.9676 16.7295 19.9676 17.5105 19.49 18L17.99 19.5C17.5005 19.9776 16.7194 19.9776 16.23 19.5C16.0042 19.2608 15.6889 19.1267 15.36 19.13C15.0294 19.1273 14.7114 19.2568 14.4767 19.4896C14.242 19.7225 14.11 20.0394 14.11 20.37C14.11 21.0548 13.5548 21.61 12.87 21.61H10.73C10.0452 21.61 9.49 21.0548 9.49 20.37C9.49001 20.0394 9.358 19.7225 9.12328 19.4896C8.88857 19.2568 8.5706 19.1273 8.24 19.13C7.91111 19.1267 7.59576 19.2608 7.37 19.5C6.88055 19.9776 6.09945 19.9776 5.61 19.5L4.11 18C3.63237 17.5105 3.63237 16.7295 4.11 16.24C4.46605 15.8865 4.57402 15.3534 4.38355 14.8892C4.19308 14.4251 3.7417 14.1215 3.24 14.12C2.91113 14.12 2.59573 13.9894 2.36319 13.7568C2.13064 13.5243 2 13.2089 2 12.88V10.74C2 10.0552 2.55517 9.5 3.24 9.5C3.7417 9.49854 4.19308 9.19491 4.38355 8.73077C4.57402 8.26664 4.46605 7.73346 4.11 7.38C3.63237 6.89055 3.63237 6.10945 4.11 5.62L5.61 4.12C6.09945 3.64237 6.88055 3.64237 7.37 4.12C7.59576 4.35919 7.91111 4.49331 8.24 4.49C8.57234 4.49269 8.89185 4.36186 9.12685 4.12685C9.36186 3.89185 9.49269 3.57234 9.49 3.24C9.49 2.55517 10.0452 2 10.73 2H12.88C13.5648 2 14.12 2.55517 14.12 3.24C14.1173 3.57234 14.2481 3.89185 14.4831 4.12685C14.7182 4.36186 15.0377 4.49269 15.37 4.49C15.6989 4.49331 16.0142 4.35919 16.24 4.12C16.7294 3.64237 17.5105 3.64237 18 4.12L19.5 5.62C19.9776 6.10945 19.9776 6.89055 19.5 7.38C19.144 7.73346 19.036 8.26664 19.2264 8.73077ZM17.8 14.31C18.1904 13.3582 19.0843 12.7081 20.11 12.63L20.08 10.99C19.0654 10.901 18.1855 10.2527 17.8 9.31C17.4224 8.36508 17.5953 7.28901 18.25 6.51L17.1 5.36C16.6123 5.76841 15.9961 5.99152 15.36 5.99C13.9429 5.98653 12.7586 4.91035 12.62 3.5H10.98C10.8458 4.9126 9.65895 5.9912 8.24 5.99C7.6039 5.99152 6.98768 5.76841 6.5 5.36L5.38 6.51C6.02453 7.29496 6.18586 8.37048 5.8 9.31C5.41447 10.2527 4.53459 10.901 3.52 10.99V12.63C4.53459 12.719 5.41447 13.3673 5.8 14.31C6.17764 15.2549 6.0047 16.331 5.35 17.11L6.5 18.26C6.98768 17.8516 7.6039 17.6285 8.24 17.63C9.65715 17.6335 10.8414 18.7096 10.98 20.12H12.62C12.745 18.7029 13.9374 17.6193 15.36 17.63C15.9961 17.6285 16.6123 17.8516 17.1 18.26L18.22 17.11C17.5755 16.325 17.4141 15.2495 17.8 14.31Z" />
|
|
3
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M8.33997 11.81C8.33997 9.89907 9.88906 8.34998 11.8 8.34998C12.7176 8.34998 13.5977 8.71451 14.2466 9.36339C14.8954 10.0123 15.26 10.8923 15.26 11.81C15.26 13.7209 13.7109 15.27 11.8 15.27C9.88906 15.27 8.33997 13.7209 8.33997 11.81ZM9.79997 11.81C9.79997 12.9145 10.6954 13.81 11.8 13.81C12.9045 13.81 13.8 12.9145 13.8 11.81C13.8 10.7054 12.9045 9.80997 11.8 9.80997C10.6954 9.80997 9.79997 10.7054 9.79997 11.81Z" />
|
|
4
|
+
</svg>
|