a-icons 1.0.14 → 1.0.18
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/CloseCircleFilled.d.ts +6 -0
- package/es/CloseCircleFilled.js +40 -0
- package/es/CloseCircleOutlined.js +24 -8
- package/es/ConfirmCircleFilled.d.ts +6 -0
- package/es/ConfirmCircleFilled.js +39 -0
- package/es/ConfirmCircleOutlined.d.ts +6 -0
- package/es/ConfirmCircleOutlined.js +49 -0
- package/es/MoveOutlined.d.ts +6 -0
- package/es/MoveOutlined.js +52 -0
- package/es/TmdLogo.d.ts +6 -0
- package/es/TmdLogo.js +51 -0
- package/es/index.d.ts +5 -0
- package/es/index.js +5 -0
- package/lib/CloseCircleFilled.d.ts +6 -0
- package/lib/CloseCircleFilled.js +87 -0
- package/lib/CloseCircleOutlined.js +24 -8
- package/lib/ConfirmCircleFilled.d.ts +6 -0
- package/lib/ConfirmCircleFilled.js +86 -0
- package/lib/ConfirmCircleOutlined.d.ts +6 -0
- package/lib/ConfirmCircleOutlined.js +96 -0
- package/lib/MoveOutlined.d.ts +6 -0
- package/lib/MoveOutlined.js +99 -0
- package/lib/TmdLogo.d.ts +6 -0
- package/lib/TmdLogo.js +98 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +45 -0
- package/package.json +3 -3
- package/src/CloseCircleFilled.tsx +20 -0
- package/src/CloseCircleOutlined.tsx +25 -5
- package/src/ConfirmCircleFilled.tsx +20 -0
- package/src/ConfirmCircleOutlined.tsx +31 -0
- package/src/MoveOutlined.tsx +30 -0
- package/src/TmdLogo.tsx +27 -0
- package/src/index.tsx +5 -0
- package/svgs/business/tmd-logo.svg +24 -0
- package/svgs/filled/close-circle-filled.svg +5 -0
- package/svgs/filled/confirm-circle-filled.svg +5 -0
- package/svgs/outlined/close-circle-outlined.svg +7 -9
- package/svgs/outlined/confirm-circle-outlined.svg +9 -0
- package/svgs/outlined/move-outlined.svg +8 -0
- package/tmpAllSvgs/close-circle-filled.svg +5 -0
- package/tmpAllSvgs/close-circle-outlined.svg +7 -9
- package/tmpAllSvgs/confirm-circle-filled.svg +5 -0
- package/tmpAllSvgs/confirm-circle-outlined.svg +9 -0
- package/tmpAllSvgs/move-outlined.svg +8 -0
- package/tmpAllSvgs/tmd-logo.svg +24 -0
|
@@ -0,0 +1,40 @@
|
|
|
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 CloseCircleFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
clipRule: "evenodd",
|
|
29
|
+
d: "M3 12a9 9 0 1118 0 9 9 0 01-18 0zm10.662-2.705a.7.7 0 11.99.99l-1.768 1.768 1.91 1.909a.7.7 0 01-.99.99l-1.91-1.91-1.91 1.91a.7.7 0 11-.989-.99l1.91-1.91-1.768-1.767a.7.7 0 01.99-.99l1.767 1.768 1.768-1.768z",
|
|
30
|
+
fill: "currentColor"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
35
|
+
component: IconNode
|
|
36
|
+
}));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
CloseCircleFilled.displayName = 'CloseCircleFilled';
|
|
40
|
+
export default CloseCircleFilled;
|
|
@@ -20,15 +20,31 @@ import Icon from 'a-base-icon/lib/Icon';
|
|
|
20
20
|
function CloseCircleOutlined(componentProps) {
|
|
21
21
|
var IconNode = function IconNode(props) {
|
|
22
22
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
clipRule: "evenodd",
|
|
29
|
+
d: "M4.4 12a7.6 7.6 0 1015.2 0 7.6 7.6 0 00-15.2 0zM12 3a9 9 0 100 18 9 9 0 000-18z",
|
|
26
30
|
fill: "currentColor"
|
|
27
|
-
}, /*#__PURE__*/React.createElement("
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
32
|
+
x: 14.157,
|
|
33
|
+
y: 8.8,
|
|
34
|
+
width: 1.4,
|
|
35
|
+
height: 8,
|
|
36
|
+
rx: 0.7,
|
|
37
|
+
transform: "rotate(45 14.157 8.8)",
|
|
38
|
+
fill: "currentColor"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
40
|
+
x: 15.288,
|
|
41
|
+
y: 14.457,
|
|
42
|
+
width: 1.4,
|
|
43
|
+
height: 8,
|
|
44
|
+
rx: 0.7,
|
|
45
|
+
transform: "rotate(135 15.288 14.457)",
|
|
46
|
+
fill: "currentColor"
|
|
47
|
+
}));
|
|
32
48
|
};
|
|
33
49
|
|
|
34
50
|
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
@@ -0,0 +1,39 @@
|
|
|
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 ConfirmCircleFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd",
|
|
28
|
+
d: "M12 3a9 9 0 100 18 9 9 0 000-18zm4.48 6.323a.7.7 0 00-.99 0l-4.172 4.172-2.333-2.333a.7.7 0 10-.99.99l2.687 2.687c.024.024.05.046.076.066a.7.7 0 001.056.076l4.666-4.668a.7.7 0 000-.99z",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}));
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
34
|
+
component: IconNode
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
ConfirmCircleFilled.displayName = 'ConfirmCircleFilled';
|
|
39
|
+
export default ConfirmCircleFilled;
|
|
@@ -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
|
+
|
|
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 ConfirmCircleOutlined(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
27
|
+
x: 3.7,
|
|
28
|
+
y: 3.7,
|
|
29
|
+
width: 16.6,
|
|
30
|
+
height: 16.6,
|
|
31
|
+
rx: 8.3,
|
|
32
|
+
stroke: "currentColor",
|
|
33
|
+
strokeWidth: 1.4
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M7.995 12.152a.7.7 0 11.99-.99l2.687 2.687a.7.7 0 11-.99.99l-2.687-2.687z",
|
|
36
|
+
fill: "currentColor"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M15.49 9.323a.7.7 0 01.99.99l-4.667 4.667a.7.7 0 01-.99-.99l4.667-4.667z",
|
|
39
|
+
fill: "currentColor"
|
|
40
|
+
}));
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
44
|
+
component: IconNode
|
|
45
|
+
}));
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
ConfirmCircleOutlined.displayName = 'ConfirmCircleOutlined';
|
|
49
|
+
export default ConfirmCircleOutlined;
|
|
@@ -0,0 +1,52 @@
|
|
|
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 MoveOutlined(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("rect", {
|
|
28
|
+
fill: "inherit",
|
|
29
|
+
x: 16,
|
|
30
|
+
y: 11.373,
|
|
31
|
+
width: 1.4,
|
|
32
|
+
height: 8,
|
|
33
|
+
rx: 0.7,
|
|
34
|
+
transform: "rotate(90 16 11.373)"
|
|
35
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
36
|
+
fill: "inherit",
|
|
37
|
+
d: "M12.7 15.3a.7.7 0 11-1.4 0V8.7a.7.7 0 111.4 0v6.6z"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39
|
+
fill: "currentColor",
|
|
40
|
+
fillRule: "evenodd",
|
|
41
|
+
clipRule: "evenodd",
|
|
42
|
+
d: "M15.295 6.323a.7.7 0 01-.99 0L11.972 3.99 9.638 6.323a.7.7 0 11-.99-.99l2.829-2.828a.7.7 0 01.99 0l2.828 2.828a.7.7 0 010 .99zM8.705 17.334a.7.7 0 01.99 0l2.333 2.333 2.334-2.334a.7.7 0 01.99.99l-2.829 2.829a.7.7 0 01-.99 0l-2.828-2.829a.7.7 0 010-.99zM17.333 15.295a.7.7 0 010-.99l2.334-2.333-2.334-2.334a.7.7 0 11.99-.99l2.829 2.829a.7.7 0 010 .99l-2.829 2.828a.7.7 0 01-.99 0zM6.323 15.295a.7.7 0 000-.99L3.99 11.972l2.333-2.334a.7.7 0 10-.99-.99l-2.828 2.829a.7.7 0 000 .99l2.828 2.828a.7.7 0 00.99 0z"
|
|
43
|
+
}));
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
47
|
+
component: IconNode
|
|
48
|
+
}));
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
MoveOutlined.displayName = 'MoveOutlined';
|
|
52
|
+
export default MoveOutlined;
|
package/es/TmdLogo.d.ts
ADDED
package/es/TmdLogo.js
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
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 TmdLogo(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 159 45",
|
|
24
|
+
fill: "none",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M60.48 11.152v2.976h7.648V34h3.456V14.128H79.2v-2.976H60.48zm28.839 5.856c-1.024 0-1.92.288-2.688.928-.64.448-1.184 1.12-1.6 2.016v-2.496h-3.392V34h3.392v-8.768c0-1.44.416-2.624 1.28-3.52.8-.832 1.728-1.248 2.752-1.248.768 0 1.568.096 2.4.352v-3.392c-.576-.288-1.312-.416-2.144-.416zm11.682 0c-2.048 0-3.712.352-4.928 1.12-1.408.832-2.304 2.176-2.656 3.968l3.36.288c.192-.928.672-1.6 1.44-2.048.64-.384 1.504-.576 2.56-.576 2.496 0 3.744 1.152 3.744 3.456v.672l-3.712.096c-2.432.064-4.352.544-5.696 1.504-1.472.992-2.208 2.432-2.208 4.288 0 1.376.512 2.496 1.568 3.36.96.864 2.304 1.312 4.032 1.312 1.472 0 2.752-.288 3.84-.8a6.89 6.89 0 002.4-1.984V34h3.136V23.44c0-2.016-.512-3.552-1.504-4.608-1.152-1.216-2.944-1.824-5.376-1.824zm3.52 9.344v.96c0 1.28-.544 2.368-1.568 3.232-1.024.864-2.24 1.312-3.68 1.312-.864 0-1.568-.224-2.08-.64-.544-.416-.8-.928-.8-1.568 0-2.048 1.536-3.136 4.64-3.2l3.488-.096zm19.147-15.648v9.216c-1.344-1.952-3.04-2.912-5.056-2.912-2.368 0-4.256.864-5.6 2.592-1.28 1.6-1.888 3.616-1.888 6.048 0 2.528.64 4.608 1.92 6.208 1.376 1.728 3.296 2.592 5.728 2.592 2.24 0 3.968-.832 5.12-2.432V34h3.168V10.704h-3.392zm-4.288 9.056c1.248 0 2.272.48 3.104 1.504.832 1.088 1.28 2.528 1.28 4.32v.288c0 1.664-.352 3.008-1.056 4.064-.832 1.152-1.952 1.76-3.424 1.76-1.664 0-2.912-.608-3.68-1.792-.672-1.024-.992-2.432-.992-4.256 0-1.824.352-3.232 1.056-4.192.8-1.152 2.048-1.696 3.712-1.696zm18.517-2.752c-2.432 0-4.384.832-5.792 2.528-1.472 1.664-2.176 3.712-2.176 6.176 0 2.72.768 4.864 2.304 6.464 1.408 1.504 3.36 2.272 5.792 2.272 2.208 0 4.032-.64 5.472-1.888 1.152-1.024 1.888-2.336 2.272-3.872h-3.392c-.448.96-.928 1.696-1.504 2.144-.736.544-1.696.832-2.88.832-1.344 0-2.4-.448-3.168-1.28-.768-.864-1.184-2.112-1.312-3.712h12.544c-.032-2.944-.704-5.248-1.984-6.912-1.408-1.856-3.488-2.752-6.176-2.752zm.096 2.784c2.688 0 4.192 1.44 4.512 4.32h-8.928c.192-1.408.672-2.464 1.376-3.2.768-.768 1.76-1.12 3.04-1.12zm18.638-2.784c-1.024 0-1.92.288-2.688.928-.64.448-1.184 1.12-1.6 2.016v-2.496h-3.392V34h3.392v-8.768c0-1.44.416-2.624 1.28-3.52.8-.832 1.728-1.248 2.752-1.248.768 0 1.568.096 2.4.352v-3.392c-.576-.288-1.312-.416-2.144-.416z",
|
|
28
|
+
fill: "#000"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
30
|
+
clipPath: "url(#tmd-logo_svg__clip0_416_1173)",
|
|
31
|
+
fill: "#FF6B00"
|
|
32
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M45.026 11h-2.321v2.742h2.32c3.405 0 6.345 2.741 6.345 6.245v5.026c0 3.504-2.785 6.245-6.344 6.245h-4.952v-2.59h4.333c2.32 0 4.178-1.827 4.178-3.96v-4.264c0-2.285-1.857-3.96-4.178-3.96h-1.702v2.741h1.702c.774 0 1.547.61 1.547 1.371v4.113c0 .761-.619 1.37-1.547 1.37h-7.118v8.073h7.582a8.943 8.943 0 008.974-8.986v-5.18C54 14.96 49.977 11 45.025 11zM14.39 11H0v2.742h12.997L26.15 31.41l2.94-3.808v-4.57l-2.94 3.808L14.389 11z"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M17.794 34h2.785v-5.636l-2.785-3.655V34zM40.075 11h-2.786v12.338h2.785V11zM34.504 11H31.41l-5.26 7.007L20.889 11h-3.095l8.355 11.271 5.57-7.463V34h2.785V11.152L34.66 11h-.155zM12.378 31.258H9.593V16.331H0v2.742h6.963V34h8.2V21.053l-2.785-3.656v13.861z"
|
|
36
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
37
|
+
id: "tmd-logo_svg__clip0_416_1173"
|
|
38
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
39
|
+
fill: "#fff",
|
|
40
|
+
transform: "translate(0 11)",
|
|
41
|
+
d: "M0 0h54v23H0z"
|
|
42
|
+
}))));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
46
|
+
component: IconNode
|
|
47
|
+
}));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
TmdLogo.displayName = 'TmdLogo';
|
|
51
|
+
export default TmdLogo;
|
package/es/index.d.ts
CHANGED
|
@@ -4,11 +4,14 @@ export { default as CardFilled } from './CardFilled';
|
|
|
4
4
|
export { default as CardOutlined } from './CardOutlined';
|
|
5
5
|
export { default as CategoryFilled } from './CategoryFilled';
|
|
6
6
|
export { default as CategoryOutlined } from './CategoryOutlined';
|
|
7
|
+
export { default as CloseCircleFilled } from './CloseCircleFilled';
|
|
7
8
|
export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
8
9
|
export { default as CloseFilled } from './CloseFilled';
|
|
9
10
|
export { default as CloseOutlined } from './CloseOutlined';
|
|
10
11
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
11
12
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
13
|
+
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
14
|
+
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
|
|
12
15
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
13
16
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
14
17
|
export { default as EditFilled } from './EditFilled';
|
|
@@ -26,6 +29,7 @@ export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
|
26
29
|
export { default as LoopOutlined } from './LoopOutlined';
|
|
27
30
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
28
31
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
32
|
+
export { default as MoveOutlined } from './MoveOutlined';
|
|
29
33
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
30
34
|
export { default as PeopleAddOutlined } from './PeopleAddOutlined';
|
|
31
35
|
export { default as PeopleFilled } from './PeopleFilled';
|
|
@@ -42,6 +46,7 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
42
46
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
43
47
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
44
48
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
49
|
+
export { default as TmdLogo } from './TmdLogo';
|
|
45
50
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
46
51
|
export { default as UpFilled } from './UpFilled';
|
|
47
52
|
export { default as UpOutlined } from './UpOutlined';
|
package/es/index.js
CHANGED
|
@@ -4,11 +4,14 @@ export { default as CardFilled } from './CardFilled';
|
|
|
4
4
|
export { default as CardOutlined } from './CardOutlined';
|
|
5
5
|
export { default as CategoryFilled } from './CategoryFilled';
|
|
6
6
|
export { default as CategoryOutlined } from './CategoryOutlined';
|
|
7
|
+
export { default as CloseCircleFilled } from './CloseCircleFilled';
|
|
7
8
|
export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
8
9
|
export { default as CloseFilled } from './CloseFilled';
|
|
9
10
|
export { default as CloseOutlined } from './CloseOutlined';
|
|
10
11
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
11
12
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
13
|
+
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
14
|
+
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
|
|
12
15
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
13
16
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
14
17
|
export { default as EditFilled } from './EditFilled';
|
|
@@ -26,6 +29,7 @@ export { default as LoopFolderOutlined } from './LoopFolderOutlined';
|
|
|
26
29
|
export { default as LoopOutlined } from './LoopOutlined';
|
|
27
30
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
28
31
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
32
|
+
export { default as MoveOutlined } from './MoveOutlined';
|
|
29
33
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
30
34
|
export { default as PeopleAddOutlined } from './PeopleAddOutlined';
|
|
31
35
|
export { default as PeopleFilled } from './PeopleFilled';
|
|
@@ -42,6 +46,7 @@ export { default as SettingFilled } from './SettingFilled';
|
|
|
42
46
|
export { default as SettingOutlined } from './SettingOutlined';
|
|
43
47
|
export { default as SettingSquareFilled } from './SettingSquareFilled';
|
|
44
48
|
export { default as SettingSquareOutlined } from './SettingSquareOutlined';
|
|
49
|
+
export { default as TmdLogo } from './TmdLogo';
|
|
45
50
|
export { default as TrashCanFilled } from './TrashCanFilled';
|
|
46
51
|
export { default as UpFilled } from './UpFilled';
|
|
47
52
|
export { default as UpOutlined } from './UpOutlined';
|
|
@@ -0,0 +1,87 @@
|
|
|
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 CloseCircleFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
fillRule: "evenodd",
|
|
75
|
+
clipRule: "evenodd",
|
|
76
|
+
d: "M3 12a9 9 0 1118 0 9 9 0 01-18 0zm10.662-2.705a.7.7 0 11.99.99l-1.768 1.768 1.91 1.909a.7.7 0 01-.99.99l-1.91-1.91-1.91 1.91a.7.7 0 11-.989-.99l1.91-1.91-1.768-1.767a.7.7 0 01.99-.99l1.767 1.768 1.768-1.768z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
}));
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
82
|
+
component: IconNode
|
|
83
|
+
}));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
CloseCircleFilled.displayName = 'CloseCircleFilled';
|
|
87
|
+
exports["default"] = CloseCircleFilled;
|
|
@@ -67,15 +67,31 @@ var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
|
67
67
|
function CloseCircleOutlined(componentProps) {
|
|
68
68
|
var IconNode = function IconNode(props) {
|
|
69
69
|
return React.createElement("svg", __assign({
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), React.createElement("path", {
|
|
74
|
+
fillRule: "evenodd",
|
|
75
|
+
clipRule: "evenodd",
|
|
76
|
+
d: "M4.4 12a7.6 7.6 0 1015.2 0 7.6 7.6 0 00-15.2 0zM12 3a9 9 0 100 18 9 9 0 000-18z",
|
|
73
77
|
fill: "currentColor"
|
|
74
|
-
}, React.createElement("
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
78
|
+
}), React.createElement("rect", {
|
|
79
|
+
x: 14.157,
|
|
80
|
+
y: 8.8,
|
|
81
|
+
width: 1.4,
|
|
82
|
+
height: 8,
|
|
83
|
+
rx: 0.7,
|
|
84
|
+
transform: "rotate(45 14.157 8.8)",
|
|
85
|
+
fill: "currentColor"
|
|
86
|
+
}), React.createElement("rect", {
|
|
87
|
+
x: 15.288,
|
|
88
|
+
y: 14.457,
|
|
89
|
+
width: 1.4,
|
|
90
|
+
height: 8,
|
|
91
|
+
rx: 0.7,
|
|
92
|
+
transform: "rotate(135 15.288 14.457)",
|
|
93
|
+
fill: "currentColor"
|
|
94
|
+
}));
|
|
79
95
|
};
|
|
80
96
|
|
|
81
97
|
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
@@ -0,0 +1,86 @@
|
|
|
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 ConfirmCircleFilled(componentProps) {
|
|
68
|
+
var IconNode = function IconNode(props) {
|
|
69
|
+
return React.createElement("svg", __assign({
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
72
|
+
}, props), React.createElement("path", {
|
|
73
|
+
fillRule: "evenodd",
|
|
74
|
+
clipRule: "evenodd",
|
|
75
|
+
d: "M12 3a9 9 0 100 18 9 9 0 000-18zm4.48 6.323a.7.7 0 00-.99 0l-4.172 4.172-2.333-2.333a.7.7 0 10-.99.99l2.687 2.687c.024.024.05.046.076.066a.7.7 0 001.056.076l4.666-4.668a.7.7 0 000-.99z",
|
|
76
|
+
fill: "currentColor"
|
|
77
|
+
}));
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
return React.createElement(Icon_1["default"], __assign({}, componentProps, {
|
|
81
|
+
component: IconNode
|
|
82
|
+
}));
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
ConfirmCircleFilled.displayName = 'ConfirmCircleFilled';
|
|
86
|
+
exports["default"] = ConfirmCircleFilled;
|