a-icons 1.1.26 → 1.1.28
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/BarChartFilled.d.ts +7 -0
- package/es/BarChartFilled.js +30 -0
- package/es/CustomerServiceOutlined.d.ts +7 -0
- package/es/CustomerServiceOutlined.js +33 -0
- package/es/EcLogo.d.ts +7 -0
- package/es/EcLogo.js +52 -0
- package/es/FundProjectionScreenFilled.d.ts +7 -0
- package/es/FundProjectionScreenFilled.js +33 -0
- package/es/FundProjectionScreenOutlined.d.ts +7 -0
- package/es/FundProjectionScreenOutlined.js +42 -0
- package/es/OtcMerchantLine.d.ts +7 -0
- package/es/OtcMerchantLine.js +42 -0
- package/es/index.d.ts +6 -0
- package/es/index.js +6 -0
- package/lib/BarChartFilled.d.ts +7 -0
- package/lib/BarChartFilled.js +73 -0
- package/lib/CustomerServiceOutlined.d.ts +7 -0
- package/lib/CustomerServiceOutlined.js +76 -0
- package/lib/EcLogo.d.ts +7 -0
- package/lib/EcLogo.js +95 -0
- package/lib/FundProjectionScreenFilled.d.ts +7 -0
- package/lib/FundProjectionScreenFilled.js +76 -0
- package/lib/FundProjectionScreenOutlined.d.ts +7 -0
- package/lib/FundProjectionScreenOutlined.js +85 -0
- package/lib/OtcMerchantLine.d.ts +7 -0
- package/lib/OtcMerchantLine.js +85 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.js +47 -5
- package/package.json +2 -2
- package/src/BarChartFilled.tsx +18 -0
- package/src/CustomerServiceOutlined.tsx +22 -0
- package/src/EcLogo.tsx +45 -0
- package/src/FundProjectionScreenFilled.tsx +22 -0
- package/src/FundProjectionScreenOutlined.tsx +30 -0
- package/src/OtcMerchantLine.tsx +31 -0
- package/src/index.tsx +6 -0
- package/svgs/business/ec-logo.svg +54 -0
- package/svgs/business/otc-merchant-line.svg +17 -0
- package/svgs/filled/bar-chart-filled.svg +14 -0
- package/svgs/filled/fund-projection-screen-filled.svg +11 -0
- package/svgs/outlined/customer-service-outlined.svg +8 -0
- package/svgs/outlined/fund-projection-screen-outlined.svg +12 -0
- package/tmpAllSvgs/bar-chart-filled.svg +14 -0
- package/tmpAllSvgs/customer-service-outlined.svg +8 -0
- package/tmpAllSvgs/ec-logo.svg +54 -0
- package/tmpAllSvgs/fund-projection-screen-filled.svg +11 -0
- package/tmpAllSvgs/fund-projection-screen-outlined.svg +12 -0
- package/tmpAllSvgs/otc-merchant-line.svg +17 -0
|
@@ -0,0 +1,30 @@
|
|
|
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 BarChartFilled(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("path", {
|
|
21
|
+
d: "M21 22.75H3c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h18c.41 0 .75.34.75.75s-.34.75-.75.75zM5.6 8.379H4c-.55 0-1 .45-1 1v8.62c0 .55.45 1 1 1h1.6c.55 0 1-.45 1-1v-8.62c0-.56-.45-1-1-1zM12.8 5.191h-1.6c-.55 0-1 .45-1 1v11.81c0 .55.45 1 1 1h1.6c.55 0 1-.45 1-1V6.191c0-.55-.45-1-1-1zM20 2h-1.6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1H20c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
BarChartFilled.displayName = 'BarChartFilled';
|
|
30
|
+
export default BarChartFilled;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function CustomerServiceOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace CustomerServiceOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default CustomerServiceOutlined;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 CustomerServiceOutlined(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("path", {
|
|
21
|
+
d: "M20.485 15.476a9.004 9.004 0 01-7.172 5.924 1.247 1.247 0 01-1.063.6h-1a1.25 1.25 0 010-2.5h1a1.242 1.242 0 01.918.408 7.507 7.507 0 005.722-4.446 1.75 1.75 0 01-1.39-1.712v-1.5a1.75 1.75 0 011.75-1.75h.224a7.49 7.49 0 00-14.95 0h.226a1.75 1.75 0 011.75 1.75v1.5a1.75 1.75 0 01-1.75 1.75h-1A1.75 1.75 0 012 13.75v-1.5a1.747 1.747 0 011.017-1.585 8.989 8.989 0 0117.966 0A1.747 1.747 0 0122 12.25v1.5a1.744 1.744 0 01-1.515 1.726zM3.5 12.75v.5a.75.75 0 101.5 0v-.5a.75.75 0 10-1.5 0zm17 0a.75.75 0 10-1.5 0v.5a.75.75 0 101.5 0v-.5z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
d: "M12 16.494a3.774 3.774 0 002.807-1.265.73.73 0 00-.055-1.043.758.758 0 00-1.06.055 2.233 2.233 0 01-3.384 0 .758.758 0 00-1.234.175.73.73 0 00.12.813A3.772 3.772 0 0012 16.494z",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
29
|
+
component: IconNode
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
CustomerServiceOutlined.displayName = 'CustomerServiceOutlined';
|
|
33
|
+
export default CustomerServiceOutlined;
|
package/es/EcLogo.d.ts
ADDED
package/es/EcLogo.js
ADDED
|
@@ -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
|
+
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 EcLogo(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 220 38",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
21
|
+
clipPath: "url(#ec-logo_svg__clip0_64_54)"
|
|
22
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
d: "M68.804 20.635H56.088v6.7h14.494v4.662H50.754V5.95h19.182v4.61H56.088v5.52h12.716v4.556zM91.168 19.616h-5.173c-.108-.696-.323-1.34-.7-1.93-.593-.75-1.455-1.178-2.64-1.178-1.725 0-2.856.857-3.503 2.519-.323.911-.485 2.09-.485 3.59 0 1.394.162 2.573.485 3.431.593 1.608 1.724 2.412 3.395 2.412 1.185 0 2.047-.322 2.532-.965.485-.643.808-1.447.916-2.465h5.173c-.108 1.554-.7 3.001-1.67 4.341-1.563 2.197-3.934 3.323-7.06 3.323-3.124 0-5.387-.911-6.842-2.734-1.455-1.822-2.21-4.234-2.21-7.128 0-3.323.809-5.896 2.425-7.718 1.617-1.822 3.88-2.733 6.682-2.733 2.425 0 4.418.536 5.927 1.608 1.508 1.072 2.478 2.894 2.748 5.627z",
|
|
24
|
+
fill: "#E33935"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M94.563 6.056h5.064l7.49 21.921 7.436-21.92h5.011v25.94h-3.395V16.67c0-.536 0-1.394.054-2.627.054-1.232.054-2.519.054-3.912l-7.436 21.867h-3.502l-7.49-21.867v.804c0 .643 0 1.608.054 2.894s.054 2.251.054 2.894v15.275h-3.394V6.057zM134.705 20.527c.754-.107 1.239-.375 1.455-.91.162-.269.215-.697.215-1.233 0-1.072-.377-1.876-1.185-2.359-.808-.482-1.886-.75-3.341-.75-1.67 0-2.855.429-3.556 1.34-.377.482-.646 1.233-.754 2.197h-2.964c.054-2.358.809-3.966 2.263-4.877 1.455-.911 3.126-1.393 5.065-1.393 2.209 0 4.041.428 5.442 1.286 1.401.857 2.048 2.144 2.048 3.966v10.88c0 .322.054.59.215.804.162.214.431.322.863.322h.484c.162 0 .378-.054.593-.054v2.358c-.485.161-.862.215-1.131.268-.27.054-.593.054-1.078.054-1.078 0-1.886-.375-2.371-1.18-.269-.428-.431-1.017-.539-1.768-.646.858-1.562 1.608-2.801 2.198-1.24.643-2.587.91-4.042.91-1.778 0-3.179-.535-4.31-1.607-1.132-1.072-1.671-2.412-1.671-3.966 0-1.769.539-3.109 1.671-4.074 1.077-.964 2.532-1.554 4.31-1.768l5.119-.643zm-6.735 8.576a3.73 3.73 0 002.371.804c1.131 0 2.209-.268 3.287-.75 1.778-.858 2.64-2.252 2.64-4.235V22.35c-.377.268-.916.429-1.509.643-.593.16-1.239.268-1.832.375l-1.94.268c-1.131.16-2.047.375-2.586.697-.97.536-1.455 1.447-1.455 2.626 0 .911.377 1.608 1.024 2.144zM144.836 13.078h3.017v3.269c.27-.643.862-1.394 1.832-2.305.97-.91 2.102-1.393 3.341-1.393h.323c.162 0 .377.053.755.053v3.377c-.216-.054-.378-.054-.539-.054h-.539c-1.616 0-2.856.536-3.718 1.555a5.312 5.312 0 00-1.293 3.537v10.88h-3.179v-18.92zM156.745 6.056h3.072v15.061l8.19-8.04h4.095l-7.328 7.022 7.705 11.898h-4.095l-5.981-9.594-2.64 2.52v7.074h-3.072V6.057h.054zM186.754 13.614c1.24.643 2.21 1.447 2.856 2.465.647.965 1.078 2.09 1.293 3.323.162.857.27 2.251.27 4.18h-13.848c.054 1.93.485 3.484 1.347 4.61.862 1.179 2.155 1.768 3.933 1.768 1.671 0 2.964-.536 3.988-1.661.539-.643.916-1.393 1.185-2.197h3.125c-.107.696-.377 1.447-.808 2.304-.485.858-.97 1.555-1.562 2.09-.97.965-2.156 1.555-3.557 1.93a12.36 12.36 0 01-2.586.268c-2.371 0-4.364-.858-5.981-2.573-1.616-1.715-2.425-4.127-2.425-7.182 0-3.055.809-5.52 2.479-7.396 1.67-1.876 3.772-2.84 6.466-2.84 1.239-.054 2.532.267 3.825.91zm1.132 7.396c-.108-1.394-.431-2.466-.916-3.323-.862-1.554-2.317-2.305-4.365-2.305-1.454 0-2.694.536-3.663 1.554-.97 1.073-1.509 2.412-1.563 4.02h10.507v.054zM195.861 7.825h3.233v5.253h3.017v2.572h-3.017v12.327c0 .644.215 1.126.7 1.34.269.107.647.215 1.239.215h.485c.162 0 .377-.054.647-.054v2.52c-.377.106-.755.16-1.132.214-.377.053-.808.053-1.293.053-1.509 0-2.478-.375-3.017-1.125-.539-.75-.809-1.77-.809-2.948V15.65h-2.586v-2.572h2.586V7.825h-.053zM207.173 26.048c.108 1.072.377 1.876.808 2.412.808 1.018 2.263 1.554 4.257 1.554 1.185 0 2.263-.268 3.179-.75.916-.536 1.401-1.287 1.401-2.358 0-.804-.377-1.448-1.078-1.876-.485-.268-1.401-.536-2.802-.912l-2.586-.643c-1.67-.375-2.856-.857-3.664-1.34-1.401-.857-2.101-2.036-2.101-3.59 0-1.77.646-3.216 1.993-4.342 1.293-1.125 3.071-1.661 5.281-1.661 2.909 0 5.011.857 6.25 2.519.808 1.072 1.185 2.197 1.185 3.43h-3.017c-.054-.697-.323-1.34-.808-1.93-.755-.804-2.048-1.232-3.88-1.232-1.239 0-2.155.214-2.802.696-.646.483-.97 1.072-.97 1.823 0 .804.431 1.5 1.24 1.983.485.268 1.185.536 2.155.75l2.155.536c2.317.536 3.88 1.072 4.688 1.608 1.239.804 1.886 2.09 1.886 3.805 0 1.662-.647 3.109-1.94 4.342-1.293 1.232-3.287 1.822-5.927 1.822-2.856 0-4.903-.643-6.089-1.93-1.185-1.286-1.832-2.84-1.885-4.716h3.071z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M30.378 34.034c10.16-6.447 14.09-18.39 8.778-26.676-5.314-8.286-17.858-9.776-28.02-3.329C.977 10.477-2.953 22.42 2.36 30.705c5.313 8.286 17.858 9.776 28.019 3.329z",
|
|
30
|
+
fill: "#E33935"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M31.2 11.202c-.7 0-1.293.59-1.293 1.286v.75c0 .697-.593 1.287-1.293 1.287s-1.293-.59-1.293-1.287V8.63c0-.697-.593-1.286-1.294-1.286-.7 0-1.293.59-1.293 1.286v10.505c0 .697-.592 1.286-1.293 1.286-.7 0-1.347-.59-1.347-1.286v-6.539c0-.697-.593-1.286-1.293-1.286s-1.293.59-1.293 1.286v18.116c0 .697.593 1.286 1.293 1.286s1.293-.59 1.293-1.286v-6.217c0-.697.593-1.287 1.293-1.287s1.293.59 1.293 1.287v3.644c0 .697.593 1.286 1.294 1.286.7 0 1.293-.589 1.293-1.286v-9.486c0-.697.593-1.287 1.293-1.287s1.293.59 1.293 1.287v.428c0 .697.593 1.287 1.293 1.287s1.294-.59 1.294-1.287v-6.592c.053-.697-.485-1.286-1.24-1.286z",
|
|
33
|
+
fill: "#fff"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M31.2 25.78c.862 0 1.562-.696 1.562-1.554 0-.859-.7-1.555-1.563-1.555s-1.562.696-1.562 1.555c0 .858.7 1.554 1.562 1.554zM15.517 8.147c-.7 0-1.294.59-1.294 1.286V14.9c0 .697-.592 1.286-1.293 1.286-.7 0-1.293-.59-1.293-1.286v-.643c0-.697-.593-1.287-1.293-1.287s-1.293.59-1.293 1.287v6.967c0 .697.592 1.287 1.293 1.287.7 0 1.293-.59 1.293-1.287v-.91c0-.698.593-1.287 1.293-1.287s1.293.59 1.293 1.286v9.165c0 .697.593 1.286 1.294 1.286.7 0 1.293-.59 1.293-1.286V9.433c0-.697-.593-1.286-1.293-1.286z",
|
|
36
|
+
fill: "#fff"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M10.399 27.924c.863 0 1.562-.696 1.562-1.555 0-.858-.7-1.554-1.563-1.554-.862 0-1.562.696-1.562 1.554 0 .859.7 1.555 1.563 1.555zM20.797 9.058c.863 0 1.563-.696 1.563-1.554 0-.859-.7-1.555-1.563-1.555s-1.563.696-1.563 1.555c0 .858.7 1.554 1.563 1.554z",
|
|
39
|
+
fill: "#fff"
|
|
40
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
41
|
+
id: "ec-logo_svg__clip0_64_54"
|
|
42
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
43
|
+
fill: "#fff",
|
|
44
|
+
d: "M0 0h220v38H0z"
|
|
45
|
+
}))));
|
|
46
|
+
};
|
|
47
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
48
|
+
component: IconNode
|
|
49
|
+
}));
|
|
50
|
+
}
|
|
51
|
+
EcLogo.displayName = 'EcLogo';
|
|
52
|
+
export default EcLogo;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function FundProjectionScreenFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace FundProjectionScreenFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default FundProjectionScreenFilled;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 FundProjectionScreenFilled(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("path", {
|
|
21
|
+
d: "M22 2.75H2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h20c.41 0 .75.34.75.75s-.34.75-.75.75zM16.67 22.34c-.13.26-.4.41-.67.41-.11 0-.23-.03-.33-.08L12 20.84l-3.67 1.83c-.1.05-.22.08-.33.08-.27 0-.54-.15-.67-.41a.74.74 0 01.34-1.01l3.58-1.79V17h1.5v2.54l3.58 1.79c.38.18.53.63.34 1.01z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
d: "M3 2v12.1C3 16 4 17 5.9 17h12.2c1.9 0 2.9-1 2.9-2.9V2H3zm13.98 6.58l-3.15 2.63c-.29.24-.66.34-1.01.28-.36-.06-.67-.28-.86-.6l-1.05-1.75-2.93 2.44c-.14.12-.31.17-.48.17a.75.75 0 01-.48-1.33l3.15-2.63c.29-.24.66-.34 1.01-.28.36.06.67.28.86.6l1.05 1.75 2.93-2.44a.75.75 0 011.06.1c.26.32.22.79-.1 1.06z",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
29
|
+
component: IconNode
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
FundProjectionScreenFilled.displayName = 'FundProjectionScreenFilled';
|
|
33
|
+
export default FundProjectionScreenFilled;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function FundProjectionScreenOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace FundProjectionScreenOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default FundProjectionScreenOutlined;
|
|
@@ -0,0 +1,42 @@
|
|
|
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 FundProjectionScreenOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M5.9 17h12.19c1.9 0 2.9-1 2.9-2.9V2h-18v12.1C3 16 4 17 5.9 17zM2 2h20M8 22l4-2v-3M16 22l-4-2",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: 1.5,
|
|
25
|
+
strokeMiterlimit: 10,
|
|
26
|
+
strokeLinecap: "round",
|
|
27
|
+
strokeLinejoin: "round"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M7.5 11l3.15-2.63c.25-.21.58-.15.75.13l1.2 2c.17.28.5.33.75.13L16.5 8",
|
|
30
|
+
stroke: "currentColor",
|
|
31
|
+
strokeWidth: 1.5,
|
|
32
|
+
strokeMiterlimit: 10,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
38
|
+
component: IconNode
|
|
39
|
+
}));
|
|
40
|
+
}
|
|
41
|
+
FundProjectionScreenOutlined.displayName = 'FundProjectionScreenOutlined';
|
|
42
|
+
export default FundProjectionScreenOutlined;
|
|
@@ -0,0 +1,42 @@
|
|
|
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 OtcMerchantLine(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M7.605 17.395c-1.582 0-2.478-.61-2.478-2.946 0-2.335.897-2.946 2.478-2.946 1.605 0 2.478.611 2.478 2.946s-.873 2.946-2.478 2.946zm0-1.048c1.007 0 1.227-.487 1.227-1.898 0-1.394-.22-1.922-1.227-1.922-1 0-1.22.528-1.22 1.922 0 1.411.22 1.898 1.22 1.898zM13.909 11.586a.549.549 0 110 1.098h-.883v4.034a.594.594 0 11-1.188 0v-4.035h-.884a.549.549 0 010-1.098h2.955zM17.544 17.395c-1.597 0-2.644-.545-2.644-2.946 0-2.211 1.03-2.946 2.636-2.946.352 0 .664.032.934.092.208.046.34.24.34.453 0 .353-.354.602-.704.558a3.934 3.934 0 00-.491-.03c-.984 0-1.417.462-1.417 1.865 0 1.485.433 1.865 1.4 1.865.194 0 .38-.012.563-.039.353-.051.712.197.712.554 0 .203-.12.39-.316.444-.287.08-.638.13-1.013.13z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M3.87 3.15a1 1 0 01.855-.483h14.55a1 1 0 01.856.483l2.654 4.4a.03.03 0 01-.01.04v0a7.488 7.488 0 01-7.16-.006v0a.03.03 0 00-.029 0v0a7.49 7.49 0 01-7.172 0v0a.03.03 0 00-.028 0v0a7.488 7.488 0 01-7.16.007v0a.03.03 0 01-.011-.04L3.869 3.15z",
|
|
26
|
+
stroke: "currentColor",
|
|
27
|
+
strokeWidth: 1.1,
|
|
28
|
+
strokeLinejoin: "round"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M3.163 9.049v9.783a2 2 0 002 2h13.674a2 2 0 002-2V9.049",
|
|
31
|
+
stroke: "currentColor",
|
|
32
|
+
strokeWidth: 1.1,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
38
|
+
component: IconNode
|
|
39
|
+
}));
|
|
40
|
+
}
|
|
41
|
+
OtcMerchantLine.displayName = 'OtcMerchantLine';
|
|
42
|
+
export default OtcMerchantLine;
|
package/es/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { default as ArrowsRightLeftOutlined } from './ArrowsRightLeftOutlined';
|
|
|
16
16
|
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
17
17
|
export { default as AtOutlined } from './AtOutlined';
|
|
18
18
|
export { default as BankCardFilled } from './BankCardFilled';
|
|
19
|
+
export { default as BarChartFilled } from './BarChartFilled';
|
|
19
20
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
20
21
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
21
22
|
export { default as BoxAddFilled } from './BoxAddFilled';
|
|
@@ -58,6 +59,7 @@ export { default as CopyFilled } from './CopyFilled';
|
|
|
58
59
|
export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined';
|
|
59
60
|
export { default as CreditCardFilled } from './CreditCardFilled';
|
|
60
61
|
export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
62
|
+
export { default as CustomerServiceOutlined } from './CustomerServiceOutlined';
|
|
61
63
|
export { default as DashboardFilled } from './DashboardFilled';
|
|
62
64
|
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
63
65
|
export { default as DisplayerOutlined } from './DisplayerOutlined';
|
|
@@ -71,6 +73,7 @@ export { default as DownloadOutlined } from './DownloadOutlined';
|
|
|
71
73
|
export { default as DownloadReportOutlined } from './DownloadReportOutlined';
|
|
72
74
|
export { default as EarthFilled } from './EarthFilled';
|
|
73
75
|
export { default as EarthOutlined } from './EarthOutlined';
|
|
76
|
+
export { default as EcLogo } from './EcLogo';
|
|
74
77
|
export { default as Edit2Filled } from './Edit2Filled';
|
|
75
78
|
export { default as EditFilled } from './EditFilled';
|
|
76
79
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
@@ -91,6 +94,8 @@ export { default as FilterOutlined } from './FilterOutlined';
|
|
|
91
94
|
export { default as FireFilled } from './FireFilled';
|
|
92
95
|
export { default as FolderAddOutlined } from './FolderAddOutlined';
|
|
93
96
|
export { default as FormOutlined } from './FormOutlined';
|
|
97
|
+
export { default as FundProjectionScreenFilled } from './FundProjectionScreenFilled';
|
|
98
|
+
export { default as FundProjectionScreenOutlined } from './FundProjectionScreenOutlined';
|
|
94
99
|
export { default as FunnelFilled } from './FunnelFilled';
|
|
95
100
|
export { default as FunnelOutlined } from './FunnelOutlined';
|
|
96
101
|
export { default as GarbageCanOutlined } from './GarbageCanOutlined';
|
|
@@ -135,6 +140,7 @@ export { default as OffOutlined } from './OffOutlined';
|
|
|
135
140
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
136
141
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
137
142
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
143
|
+
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
138
144
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
139
145
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
140
146
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
package/es/index.js
CHANGED
|
@@ -16,6 +16,7 @@ export { default as ArrowsRightLeftOutlined } from './ArrowsRightLeftOutlined';
|
|
|
16
16
|
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
17
17
|
export { default as AtOutlined } from './AtOutlined';
|
|
18
18
|
export { default as BankCardFilled } from './BankCardFilled';
|
|
19
|
+
export { default as BarChartFilled } from './BarChartFilled';
|
|
19
20
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
20
21
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
21
22
|
export { default as BoxAddFilled } from './BoxAddFilled';
|
|
@@ -58,6 +59,7 @@ export { default as CopyFilled } from './CopyFilled';
|
|
|
58
59
|
export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined';
|
|
59
60
|
export { default as CreditCardFilled } from './CreditCardFilled';
|
|
60
61
|
export { default as CreditCardOutlined } from './CreditCardOutlined';
|
|
62
|
+
export { default as CustomerServiceOutlined } from './CustomerServiceOutlined';
|
|
61
63
|
export { default as DashboardFilled } from './DashboardFilled';
|
|
62
64
|
export { default as DashboardOutlined } from './DashboardOutlined';
|
|
63
65
|
export { default as DisplayerOutlined } from './DisplayerOutlined';
|
|
@@ -71,6 +73,7 @@ export { default as DownloadOutlined } from './DownloadOutlined';
|
|
|
71
73
|
export { default as DownloadReportOutlined } from './DownloadReportOutlined';
|
|
72
74
|
export { default as EarthFilled } from './EarthFilled';
|
|
73
75
|
export { default as EarthOutlined } from './EarthOutlined';
|
|
76
|
+
export { default as EcLogo } from './EcLogo';
|
|
74
77
|
export { default as Edit2Filled } from './Edit2Filled';
|
|
75
78
|
export { default as EditFilled } from './EditFilled';
|
|
76
79
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
@@ -91,6 +94,8 @@ export { default as FilterOutlined } from './FilterOutlined';
|
|
|
91
94
|
export { default as FireFilled } from './FireFilled';
|
|
92
95
|
export { default as FolderAddOutlined } from './FolderAddOutlined';
|
|
93
96
|
export { default as FormOutlined } from './FormOutlined';
|
|
97
|
+
export { default as FundProjectionScreenFilled } from './FundProjectionScreenFilled';
|
|
98
|
+
export { default as FundProjectionScreenOutlined } from './FundProjectionScreenOutlined';
|
|
94
99
|
export { default as FunnelFilled } from './FunnelFilled';
|
|
95
100
|
export { default as FunnelOutlined } from './FunnelOutlined';
|
|
96
101
|
export { default as GarbageCanOutlined } from './GarbageCanOutlined';
|
|
@@ -135,6 +140,7 @@ export { default as OffOutlined } from './OffOutlined';
|
|
|
135
140
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
136
141
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
137
142
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
143
|
+
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
138
144
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
139
145
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
140
146
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
@@ -0,0 +1,73 @@
|
|
|
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 BarChartFilled(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("path", {
|
|
64
|
+
d: "M21 22.75H3c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h18c.41 0 .75.34.75.75s-.34.75-.75.75zM5.6 8.379H4c-.55 0-1 .45-1 1v8.62c0 .55.45 1 1 1h1.6c.55 0 1-.45 1-1v-8.62c0-.56-.45-1-1-1zM12.8 5.191h-1.6c-.55 0-1 .45-1 1v11.81c0 .55.45 1 1 1h1.6c.55 0 1-.45 1-1V6.191c0-.55-.45-1-1-1zM20 2h-1.6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1H20c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
BarChartFilled.displayName = 'BarChartFilled';
|
|
73
|
+
exports["default"] = BarChartFilled;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function CustomerServiceOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace CustomerServiceOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default CustomerServiceOutlined;
|
|
@@ -0,0 +1,76 @@
|
|
|
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 CustomerServiceOutlined(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("path", {
|
|
64
|
+
d: "M20.485 15.476a9.004 9.004 0 01-7.172 5.924 1.247 1.247 0 01-1.063.6h-1a1.25 1.25 0 010-2.5h1a1.242 1.242 0 01.918.408 7.507 7.507 0 005.722-4.446 1.75 1.75 0 01-1.39-1.712v-1.5a1.75 1.75 0 011.75-1.75h.224a7.49 7.49 0 00-14.95 0h.226a1.75 1.75 0 011.75 1.75v1.5a1.75 1.75 0 01-1.75 1.75h-1A1.75 1.75 0 012 13.75v-1.5a1.747 1.747 0 011.017-1.585 8.989 8.989 0 0117.966 0A1.747 1.747 0 0122 12.25v1.5a1.744 1.744 0 01-1.515 1.726zM3.5 12.75v.5a.75.75 0 101.5 0v-.5a.75.75 0 10-1.5 0zm17 0a.75.75 0 10-1.5 0v.5a.75.75 0 101.5 0v-.5z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}), React.createElement("path", {
|
|
67
|
+
d: "M12 16.494a3.774 3.774 0 002.807-1.265.73.73 0 00-.055-1.043.758.758 0 00-1.06.055 2.233 2.233 0 01-3.384 0 .758.758 0 00-1.234.175.73.73 0 00.12.813A3.772 3.772 0 0012 16.494z",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
}));
|
|
70
|
+
};
|
|
71
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
72
|
+
component: IconNode
|
|
73
|
+
}));
|
|
74
|
+
}
|
|
75
|
+
CustomerServiceOutlined.displayName = 'CustomerServiceOutlined';
|
|
76
|
+
exports["default"] = CustomerServiceOutlined;
|