a-icons 1.2.39 → 1.2.41
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/ContinueInvestFilled.d.ts +6 -0
- package/es/ContinueInvestFilled.js +35 -0
- package/es/PauseInvestFilled.d.ts +6 -0
- package/es/PauseInvestFilled.js +35 -0
- package/es/Pdf.d.ts +6 -0
- package/es/Pdf.js +56 -0
- package/es/index.d.ts +3 -0
- package/es/index.js +3 -0
- package/lib/ContinueInvestFilled.d.ts +6 -0
- package/lib/ContinueInvestFilled.js +78 -0
- package/lib/PauseInvestFilled.d.ts +6 -0
- package/lib/PauseInvestFilled.js +78 -0
- package/lib/Pdf.d.ts +6 -0
- package/lib/Pdf.js +99 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +28 -7
- package/package.json +2 -2
- package/src/ContinueInvestFilled.tsx +24 -0
- package/src/PauseInvestFilled.tsx +24 -0
- package/src/Pdf.tsx +49 -0
- package/src/index.tsx +3 -0
- package/svgs/business/pdf.svg +16 -0
- package/svgs/filled/continue-invest-filled.svg +6 -0
- package/svgs/filled/pause-invest-filled.svg +6 -0
- package/tmpAllSvgs/continue-invest-filled.svg +6 -0
- package/tmpAllSvgs/pause-invest-filled.svg +6 -0
- package/tmpAllSvgs/pdf.svg +16 -0
|
@@ -0,0 +1,35 @@
|
|
|
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 ContinueInvestFilled(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
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-1.06 3.25l1.5 1.5H15v1.5h3.44l-1.5 1.5L18 21.31l2.78-2.78a.75.75 0 000-1.06L18 14.69l-1.06 1.06z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
31
|
+
component: IconNode
|
|
32
|
+
}));
|
|
33
|
+
}
|
|
34
|
+
ContinueInvestFilled.displayName = 'ContinueInvestFilled';
|
|
35
|
+
export default ContinueInvestFilled;
|
|
@@ -0,0 +1,35 @@
|
|
|
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 PauseInvestFilled(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
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-2.125 7.9h1.5v-4.8h-1.5v4.8zm2.75 0h1.5v-4.8h-1.5v4.8z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
31
|
+
component: IconNode
|
|
32
|
+
}));
|
|
33
|
+
}
|
|
34
|
+
PauseInvestFilled.displayName = 'PauseInvestFilled';
|
|
35
|
+
export default PauseInvestFilled;
|
package/es/Pdf.d.ts
ADDED
package/es/Pdf.js
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
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 Pdf(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 40 40",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
22
|
+
clipPath: "url(#pdf_svg__clip0_23648_109766)"
|
|
23
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
d: "M35.22 36.2c0 .5-.2.98-.56 1.34-.36.36-.84.56-1.34.56H6.66c-.5 0-1-.2-1.34-.56-.36-.36-.56-.84-.56-1.34V1.9c0-.5.2-1 .56-1.34C5.66.2 6.16 0 6.66 0h16.36c.5 0 1 .2 1.36.56l10.3 10.3c.36.36.56.84.56 1.36V36.2h-.02z",
|
|
25
|
+
fill: "#EBECF0"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M35.22 36.2v1.9c0 .5-.2 1-.56 1.34-.36.36-.84.56-1.34.56H6.66c-1.06 0-1.9-.86-1.9-1.9v-1.9c0 .5.2.98.56 1.34.36.36.84.56 1.34.56h26.66c1.06 0 1.9-.86 1.9-1.9z",
|
|
28
|
+
fill: "#C1C7D0"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M4.76 20.96v-3.82L.94 20.96h3.82zm30.46 0l.04-3.82 3.8 3.82h-3.84z",
|
|
31
|
+
fill: "#D30000"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M35.22 12.22v.26h-10.3c-1.06 0-1.9-.86-1.9-1.9V0c.5 0 1 .2 1.36.56l10.32 10.3c.34.36.54.84.52 1.36z",
|
|
34
|
+
fill: "#C1C7D0"
|
|
35
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
36
|
+
d: "M19.645 23.872h-1.567v5.585h1.54c1.747 0 2.692-.985 2.692-2.885 0-1.653-.864-2.678-2.665-2.7zm-8.905.003H8.498v2.373h2.242c.918 0 1.499-.315 1.499-1.203 0-.723-.445-1.17-1.5-1.17z",
|
|
37
|
+
fill: "#FF1D1D"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39
|
+
d: "M.96 20.96v9.5c0 .52.2 1 .561 1.36.34.36.84.56 1.34.56h34.28c1.04 0 1.9-.84 1.9-1.9v-9.52H.961zm9.95 6.972H8.5v3.206H6.32v-8.936h4.623c2.078 0 3.46 1.05 3.46 2.809 0 1.758-1.302 2.92-3.494 2.92zm8.994 3.206h-3.993v-8.936h4.04c3.01 0 4.657 1.954 4.657 4.312 0 2.86-2.103 4.624-4.704 4.624zm13.842-7.21H28.56v2.031h4.837v1.738h-4.836v3.44h-2.169v-8.935h7.354v1.725z",
|
|
40
|
+
fill: "#FF1D1D"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42
|
+
d: "M10.941 22.202H6.318v8.936h2.18v-3.206h2.41c2.192 0 3.493-1.094 3.493-2.921 0-1.827-1.381-2.809-3.46-2.809zm-.202 4.046H8.498v-2.373h2.241c1.054 0 1.5.447 1.5 1.17 0 .888-.582 1.203-1.5 1.203zm9.21-4.046h-4.04v8.936h3.994c2.6 0 4.704-1.764 4.704-4.624 0-2.358-1.647-4.312-4.658-4.312zm-.332 7.255h-1.54v-5.585h1.567c1.8.022 2.666 1.047 2.666 2.7 0 1.9-.945 2.885-2.693 2.885zm6.774 1.68h2.168v-3.44h4.836V25.96H28.56v-2.032h5.185v-1.726h-7.353v8.936z",
|
|
43
|
+
fill: "#fff"
|
|
44
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
45
|
+
id: "pdf_svg__clip0_23648_109766"
|
|
46
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
47
|
+
fill: "#fff",
|
|
48
|
+
d: "M0 0h40v40H0z"
|
|
49
|
+
}))));
|
|
50
|
+
};
|
|
51
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
52
|
+
component: IconNode
|
|
53
|
+
}));
|
|
54
|
+
}
|
|
55
|
+
Pdf.displayName = 'Pdf';
|
|
56
|
+
export default Pdf;
|
package/es/index.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ export { default as ComputerOutlined } from './ComputerOutlined';
|
|
|
97
97
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
98
98
|
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
|
|
99
99
|
export { default as ConfirmCircleSolidFilled } from './ConfirmCircleSolidFilled';
|
|
100
|
+
export { default as ContinueInvestFilled } from './ContinueInvestFilled';
|
|
100
101
|
export { default as CopyFilled } from './CopyFilled';
|
|
101
102
|
export { default as CopyLineOutlined } from './CopyLineOutlined';
|
|
102
103
|
export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined';
|
|
@@ -259,6 +260,8 @@ export { default as OppositeArrowsOutlined } from './OppositeArrowsOutlined';
|
|
|
259
260
|
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
260
261
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
261
262
|
export { default as PauseCircleFilled } from './PauseCircleFilled';
|
|
263
|
+
export { default as PauseInvestFilled } from './PauseInvestFilled';
|
|
264
|
+
export { default as Pdf } from './Pdf';
|
|
262
265
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
263
266
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
264
267
|
export { default as PeopleAddOutlined } from './PeopleAddOutlined';
|
package/es/index.js
CHANGED
|
@@ -97,6 +97,7 @@ export { default as ComputerOutlined } from './ComputerOutlined';
|
|
|
97
97
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
98
98
|
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
|
|
99
99
|
export { default as ConfirmCircleSolidFilled } from './ConfirmCircleSolidFilled';
|
|
100
|
+
export { default as ContinueInvestFilled } from './ContinueInvestFilled';
|
|
100
101
|
export { default as CopyFilled } from './CopyFilled';
|
|
101
102
|
export { default as CopyLineOutlined } from './CopyLineOutlined';
|
|
102
103
|
export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined';
|
|
@@ -259,6 +260,8 @@ export { default as OppositeArrowsOutlined } from './OppositeArrowsOutlined';
|
|
|
259
260
|
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
260
261
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
261
262
|
export { default as PauseCircleFilled } from './PauseCircleFilled';
|
|
263
|
+
export { default as PauseInvestFilled } from './PauseInvestFilled';
|
|
264
|
+
export { default as Pdf } from './Pdf';
|
|
262
265
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
263
266
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
264
267
|
export { default as PeopleAddOutlined } from './PeopleAddOutlined';
|
|
@@ -0,0 +1,78 @@
|
|
|
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 ContinueInvestFilled(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
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-1.06 3.25l1.5 1.5H15v1.5h3.44l-1.5 1.5L18 21.31l2.78-2.78a.75.75 0 000-1.06L18 14.69l-1.06 1.06z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
d: "M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z",
|
|
70
|
+
fill: "currentColor"
|
|
71
|
+
}));
|
|
72
|
+
};
|
|
73
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
74
|
+
component: IconNode
|
|
75
|
+
}));
|
|
76
|
+
}
|
|
77
|
+
ContinueInvestFilled.displayName = 'ContinueInvestFilled';
|
|
78
|
+
exports["default"] = ContinueInvestFilled;
|
|
@@ -0,0 +1,78 @@
|
|
|
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 PauseInvestFilled(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
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-2.125 7.9h1.5v-4.8h-1.5v4.8zm2.75 0h1.5v-4.8h-1.5v4.8z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
d: "M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z",
|
|
70
|
+
fill: "currentColor"
|
|
71
|
+
}));
|
|
72
|
+
};
|
|
73
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
74
|
+
component: IconNode
|
|
75
|
+
}));
|
|
76
|
+
}
|
|
77
|
+
PauseInvestFilled.displayName = 'PauseInvestFilled';
|
|
78
|
+
exports["default"] = PauseInvestFilled;
|
package/lib/Pdf.d.ts
ADDED
package/lib/Pdf.js
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
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 Pdf(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 40 40",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("g", {
|
|
65
|
+
clipPath: "url(#pdf_svg__clip0_23648_109766)"
|
|
66
|
+
}, React.createElement("path", {
|
|
67
|
+
d: "M35.22 36.2c0 .5-.2.98-.56 1.34-.36.36-.84.56-1.34.56H6.66c-.5 0-1-.2-1.34-.56-.36-.36-.56-.84-.56-1.34V1.9c0-.5.2-1 .56-1.34C5.66.2 6.16 0 6.66 0h16.36c.5 0 1 .2 1.36.56l10.3 10.3c.36.36.56.84.56 1.36V36.2h-.02z",
|
|
68
|
+
fill: "#EBECF0"
|
|
69
|
+
}), React.createElement("path", {
|
|
70
|
+
d: "M35.22 36.2v1.9c0 .5-.2 1-.56 1.34-.36.36-.84.56-1.34.56H6.66c-1.06 0-1.9-.86-1.9-1.9v-1.9c0 .5.2.98.56 1.34.36.36.84.56 1.34.56h26.66c1.06 0 1.9-.86 1.9-1.9z",
|
|
71
|
+
fill: "#C1C7D0"
|
|
72
|
+
}), React.createElement("path", {
|
|
73
|
+
d: "M4.76 20.96v-3.82L.94 20.96h3.82zm30.46 0l.04-3.82 3.8 3.82h-3.84z",
|
|
74
|
+
fill: "#D30000"
|
|
75
|
+
}), React.createElement("path", {
|
|
76
|
+
d: "M35.22 12.22v.26h-10.3c-1.06 0-1.9-.86-1.9-1.9V0c.5 0 1 .2 1.36.56l10.32 10.3c.34.36.54.84.52 1.36z",
|
|
77
|
+
fill: "#C1C7D0"
|
|
78
|
+
}), React.createElement("path", {
|
|
79
|
+
d: "M19.645 23.872h-1.567v5.585h1.54c1.747 0 2.692-.985 2.692-2.885 0-1.653-.864-2.678-2.665-2.7zm-8.905.003H8.498v2.373h2.242c.918 0 1.499-.315 1.499-1.203 0-.723-.445-1.17-1.5-1.17z",
|
|
80
|
+
fill: "#FF1D1D"
|
|
81
|
+
}), React.createElement("path", {
|
|
82
|
+
d: "M.96 20.96v9.5c0 .52.2 1 .561 1.36.34.36.84.56 1.34.56h34.28c1.04 0 1.9-.84 1.9-1.9v-9.52H.961zm9.95 6.972H8.5v3.206H6.32v-8.936h4.623c2.078 0 3.46 1.05 3.46 2.809 0 1.758-1.302 2.92-3.494 2.92zm8.994 3.206h-3.993v-8.936h4.04c3.01 0 4.657 1.954 4.657 4.312 0 2.86-2.103 4.624-4.704 4.624zm13.842-7.21H28.56v2.031h4.837v1.738h-4.836v3.44h-2.169v-8.935h7.354v1.725z",
|
|
83
|
+
fill: "#FF1D1D"
|
|
84
|
+
}), React.createElement("path", {
|
|
85
|
+
d: "M10.941 22.202H6.318v8.936h2.18v-3.206h2.41c2.192 0 3.493-1.094 3.493-2.921 0-1.827-1.381-2.809-3.46-2.809zm-.202 4.046H8.498v-2.373h2.241c1.054 0 1.5.447 1.5 1.17 0 .888-.582 1.203-1.5 1.203zm9.21-4.046h-4.04v8.936h3.994c2.6 0 4.704-1.764 4.704-4.624 0-2.358-1.647-4.312-4.658-4.312zm-.332 7.255h-1.54v-5.585h1.567c1.8.022 2.666 1.047 2.666 2.7 0 1.9-.945 2.885-2.693 2.885zm6.774 1.68h2.168v-3.44h4.836V25.96H28.56v-2.032h5.185v-1.726h-7.353v8.936z",
|
|
86
|
+
fill: "#fff"
|
|
87
|
+
})), React.createElement("defs", null, React.createElement("clipPath", {
|
|
88
|
+
id: "pdf_svg__clip0_23648_109766"
|
|
89
|
+
}, React.createElement("path", {
|
|
90
|
+
fill: "#fff",
|
|
91
|
+
d: "M0 0h40v40H0z"
|
|
92
|
+
}))));
|
|
93
|
+
};
|
|
94
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
95
|
+
component: IconNode
|
|
96
|
+
}));
|
|
97
|
+
}
|
|
98
|
+
Pdf.displayName = 'Pdf';
|
|
99
|
+
exports["default"] = Pdf;
|
package/lib/index.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ export { default as ComputerOutlined } from './ComputerOutlined';
|
|
|
97
97
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled';
|
|
98
98
|
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined';
|
|
99
99
|
export { default as ConfirmCircleSolidFilled } from './ConfirmCircleSolidFilled';
|
|
100
|
+
export { default as ContinueInvestFilled } from './ContinueInvestFilled';
|
|
100
101
|
export { default as CopyFilled } from './CopyFilled';
|
|
101
102
|
export { default as CopyLineOutlined } from './CopyLineOutlined';
|
|
102
103
|
export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined';
|
|
@@ -259,6 +260,8 @@ export { default as OppositeArrowsOutlined } from './OppositeArrowsOutlined';
|
|
|
259
260
|
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
260
261
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
261
262
|
export { default as PauseCircleFilled } from './PauseCircleFilled';
|
|
263
|
+
export { default as PauseInvestFilled } from './PauseInvestFilled';
|
|
264
|
+
export { default as Pdf } from './Pdf';
|
|
262
265
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
263
266
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
264
267
|
export { default as PeopleAddOutlined } from './PeopleAddOutlined';
|
package/lib/index.js
CHANGED
|
@@ -9,13 +9,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
11
|
exports.CallFilled = exports.CallFailOutlined = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BrokenHeartFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BindChainFilled = exports.BigArticleBoardFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.AscOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AdFilled = exports.ImpassabilityFilled = exports.DailyFinanceFilled = void 0;
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = void 0;
|
|
12
|
+
exports.ContinueInvestFilled = exports.ConfirmCircleSolidFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckboxMultipleBlankFilled = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CallRecordOutlined = exports.CallOutlined = void 0;
|
|
13
|
+
exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = void 0;
|
|
14
|
+
exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileTextOutlined = exports.FileShieldOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = void 0;
|
|
15
|
+
exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailOutlined = exports.MailHollowFilled = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InternalResourceOutlined = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IbFilled = exports.HouseOutlined = void 0;
|
|
16
|
+
exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PersonGroupFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFolderFilled = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchant = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = void 0;
|
|
17
|
+
exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.ResourceOutlined = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = void 0;
|
|
18
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = void 0;
|
|
19
19
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
20
20
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -709,6 +709,13 @@ Object.defineProperty(exports, "ConfirmCircleSolidFilled", {
|
|
|
709
709
|
return __importDefault(ConfirmCircleSolidFilled_1)["default"];
|
|
710
710
|
}
|
|
711
711
|
});
|
|
712
|
+
var ContinueInvestFilled_1 = require("./ContinueInvestFilled");
|
|
713
|
+
Object.defineProperty(exports, "ContinueInvestFilled", {
|
|
714
|
+
enumerable: true,
|
|
715
|
+
get: function get() {
|
|
716
|
+
return __importDefault(ContinueInvestFilled_1)["default"];
|
|
717
|
+
}
|
|
718
|
+
});
|
|
712
719
|
var CopyFilled_1 = require("./CopyFilled");
|
|
713
720
|
Object.defineProperty(exports, "CopyFilled", {
|
|
714
721
|
enumerable: true,
|
|
@@ -1843,6 +1850,20 @@ Object.defineProperty(exports, "PauseCircleFilled", {
|
|
|
1843
1850
|
return __importDefault(PauseCircleFilled_1)["default"];
|
|
1844
1851
|
}
|
|
1845
1852
|
});
|
|
1853
|
+
var PauseInvestFilled_1 = require("./PauseInvestFilled");
|
|
1854
|
+
Object.defineProperty(exports, "PauseInvestFilled", {
|
|
1855
|
+
enumerable: true,
|
|
1856
|
+
get: function get() {
|
|
1857
|
+
return __importDefault(PauseInvestFilled_1)["default"];
|
|
1858
|
+
}
|
|
1859
|
+
});
|
|
1860
|
+
var Pdf_1 = require("./Pdf");
|
|
1861
|
+
Object.defineProperty(exports, "Pdf", {
|
|
1862
|
+
enumerable: true,
|
|
1863
|
+
get: function get() {
|
|
1864
|
+
return __importDefault(Pdf_1)["default"];
|
|
1865
|
+
}
|
|
1866
|
+
});
|
|
1846
1867
|
var PencilOutlined_1 = require("./PencilOutlined");
|
|
1847
1868
|
Object.defineProperty(exports, "PencilOutlined", {
|
|
1848
1869
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.41",
|
|
4
4
|
"repository": "git@github.com:SPOTEC-LTD/assui.git",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"assui": "^3.2.49"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "b9363caa1f1a8ccbd8921742d489a8ce6362d1cb"
|
|
26
26
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function ContinueInvestFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-1.06 3.25l1.5 1.5H15v1.5h3.44l-1.5 1.5L18 21.31l2.78-2.78a.75.75 0 000-1.06L18 14.69l-1.06 1.06z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
ContinueInvestFilled.displayName = 'ContinueInvestFilled';
|
|
24
|
+
export default ContinueInvestFilled;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function PauseInvestFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M18 12.5a5.5 5.5 0 110 11 5.5 5.5 0 010-11zm-2.125 7.9h1.5v-4.8h-1.5v4.8zm2.75 0h1.5v-4.8h-1.5v4.8z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M1.048 14.948c.496.325 1.04.593 1.593.814 1.804.721 4.145 1.119 6.62 1.119.448 0 .892-.015 1.328-.04A7.56 7.56 0 0010.5 18a7.47 7.47 0 00.76 3.293c.045.136.092.27.144.403a20.05 20.05 0 01-2.142.114c-4.537 0-8.214-1.472-8.214-3.287v-3.575zM17.477 10.52a7.5 7.5 0 00-6.155 4.065 20.1 20.1 0 01-2.06.105c-4.537 0-8.214-1.471-8.214-3.286V7.83a9.05 9.05 0 001.593.814c1.804.721 4.145 1.119 6.62 1.119 2.476 0 4.819-.398 6.623-1.12a9.053 9.053 0 001.593-.813v2.69zM9.262 1c3.402 0 6.322.828 7.57 2.007.415.393.645.826.645 1.28C17.476 6.1 13.798 7.57 9.262 7.57s-8.214-1.47-8.214-3.285C1.048 2.472 4.725 1 9.262 1z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
PauseInvestFilled.displayName = 'PauseInvestFilled';
|
|
24
|
+
export default PauseInvestFilled;
|
package/src/Pdf.tsx
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function Pdf(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<g clipPath="url(#pdf_svg__clip0_23648_109766)">
|
|
8
|
+
<path
|
|
9
|
+
d="M35.22 36.2c0 .5-.2.98-.56 1.34-.36.36-.84.56-1.34.56H6.66c-.5 0-1-.2-1.34-.56-.36-.36-.56-.84-.56-1.34V1.9c0-.5.2-1 .56-1.34C5.66.2 6.16 0 6.66 0h16.36c.5 0 1 .2 1.36.56l10.3 10.3c.36.36.56.84.56 1.36V36.2h-.02z"
|
|
10
|
+
fill="#EBECF0"
|
|
11
|
+
/>
|
|
12
|
+
<path
|
|
13
|
+
d="M35.22 36.2v1.9c0 .5-.2 1-.56 1.34-.36.36-.84.56-1.34.56H6.66c-1.06 0-1.9-.86-1.9-1.9v-1.9c0 .5.2.98.56 1.34.36.36.84.56 1.34.56h26.66c1.06 0 1.9-.86 1.9-1.9z"
|
|
14
|
+
fill="#C1C7D0"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M4.76 20.96v-3.82L.94 20.96h3.82zm30.46 0l.04-3.82 3.8 3.82h-3.84z"
|
|
18
|
+
fill="#D30000"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M35.22 12.22v.26h-10.3c-1.06 0-1.9-.86-1.9-1.9V0c.5 0 1 .2 1.36.56l10.32 10.3c.34.36.54.84.52 1.36z"
|
|
22
|
+
fill="#C1C7D0"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M19.645 23.872h-1.567v5.585h1.54c1.747 0 2.692-.985 2.692-2.885 0-1.653-.864-2.678-2.665-2.7zm-8.905.003H8.498v2.373h2.242c.918 0 1.499-.315 1.499-1.203 0-.723-.445-1.17-1.5-1.17z"
|
|
26
|
+
fill="#FF1D1D"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M.96 20.96v9.5c0 .52.2 1 .561 1.36.34.36.84.56 1.34.56h34.28c1.04 0 1.9-.84 1.9-1.9v-9.52H.961zm9.95 6.972H8.5v3.206H6.32v-8.936h4.623c2.078 0 3.46 1.05 3.46 2.809 0 1.758-1.302 2.92-3.494 2.92zm8.994 3.206h-3.993v-8.936h4.04c3.01 0 4.657 1.954 4.657 4.312 0 2.86-2.103 4.624-4.704 4.624zm13.842-7.21H28.56v2.031h4.837v1.738h-4.836v3.44h-2.169v-8.935h7.354v1.725z"
|
|
30
|
+
fill="#FF1D1D"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M10.941 22.202H6.318v8.936h2.18v-3.206h2.41c2.192 0 3.493-1.094 3.493-2.921 0-1.827-1.381-2.809-3.46-2.809zm-.202 4.046H8.498v-2.373h2.241c1.054 0 1.5.447 1.5 1.17 0 .888-.582 1.203-1.5 1.203zm9.21-4.046h-4.04v8.936h3.994c2.6 0 4.704-1.764 4.704-4.624 0-2.358-1.647-4.312-4.658-4.312zm-.332 7.255h-1.54v-5.585h1.567c1.8.022 2.666 1.047 2.666 2.7 0 1.9-.945 2.885-2.693 2.885zm6.774 1.68h2.168v-3.44h4.836V25.96H28.56v-2.032h5.185v-1.726h-7.353v8.936z"
|
|
34
|
+
fill="#fff"
|
|
35
|
+
/>
|
|
36
|
+
</g>
|
|
37
|
+
<defs>
|
|
38
|
+
<clipPath id="pdf_svg__clip0_23648_109766">
|
|
39
|
+
<path fill="#fff" d="M0 0h40v40H0z" />
|
|
40
|
+
</clipPath>
|
|
41
|
+
</defs>
|
|
42
|
+
</svg>
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
Pdf.displayName = 'Pdf';
|
|
49
|
+
export default Pdf;
|
package/src/index.tsx
CHANGED
|
@@ -97,6 +97,7 @@ export { default as ComputerOutlined } from './ComputerOutlined'
|
|
|
97
97
|
export { default as ConfirmCircleFilled } from './ConfirmCircleFilled'
|
|
98
98
|
export { default as ConfirmCircleOutlined } from './ConfirmCircleOutlined'
|
|
99
99
|
export { default as ConfirmCircleSolidFilled } from './ConfirmCircleSolidFilled'
|
|
100
|
+
export { default as ContinueInvestFilled } from './ContinueInvestFilled'
|
|
100
101
|
export { default as CopyFilled } from './CopyFilled'
|
|
101
102
|
export { default as CopyLineOutlined } from './CopyLineOutlined'
|
|
102
103
|
export { default as CornerRightArrowsOutlined } from './CornerRightArrowsOutlined'
|
|
@@ -259,6 +260,8 @@ export { default as OppositeArrowsOutlined } from './OppositeArrowsOutlined'
|
|
|
259
260
|
export { default as OtcMerchantLine } from './OtcMerchantLine'
|
|
260
261
|
export { default as OtcMerchant } from './OtcMerchant'
|
|
261
262
|
export { default as PauseCircleFilled } from './PauseCircleFilled'
|
|
263
|
+
export { default as PauseInvestFilled } from './PauseInvestFilled'
|
|
264
|
+
export { default as Pdf } from './Pdf'
|
|
262
265
|
export { default as PencilOutlined } from './PencilOutlined'
|
|
263
266
|
export { default as PeopleAddFilled } from './PeopleAddFilled'
|
|
264
267
|
export { default as PeopleAddOutlined } from './PeopleAddOutlined'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_23648_109766)">
|
|
3
|
+
<path d="M35.2197 36.2002C35.2197 36.7002 35.0195 37.1802 34.6597 37.54C34.2993 37.8999 33.8198 38.1001 33.3193 38.1001H6.65967C6.15967 38.1001 5.65967 37.8999 5.31982 37.54C4.95996 37.1797 4.75977 36.7002 4.75977 36.2002V1.8999C4.75977 1.3999 4.95947 0.899902 5.31982 0.560059C5.65967 0.200195 6.16016 0 6.65967 0H23.02C23.52 0 24.02 0.200195 24.3799 0.560059L34.6797 10.8604C35.0396 11.2202 35.2397 11.7002 35.2397 12.2202V36.2002H35.2197Z" fill="#EBECF0"/>
|
|
4
|
+
<path d="M35.2197 36.2002V38.1001C35.2197 38.6001 35.0195 39.1001 34.6597 39.4399C34.2993 39.8003 33.8198 40 33.3193 40H6.65967C5.59961 40 4.75977 39.1401 4.75977 38.1001V36.2002C4.75977 36.7002 4.95947 37.1802 5.31982 37.54C5.67969 37.8999 6.15967 38.1001 6.65967 38.1001H33.3198C34.3799 38.1001 35.2197 37.2402 35.2197 36.2002Z" fill="#C1C7D0"/>
|
|
5
|
+
<path d="M4.75928 20.96V17.1396L0.939453 20.96H4.75928ZM35.2192 20.96L35.2593 17.1396L39.0591 20.96H35.2192Z" fill="#D30000"/>
|
|
6
|
+
<path d="M35.2197 12.2202V12.48H24.9194C23.8594 12.48 23.0195 11.6201 23.0195 10.5801V0C23.5195 0 24.0195 0.200195 24.3794 0.560059L34.6997 10.8604C35.0395 11.2202 35.2397 11.7002 35.2197 12.2202Z" fill="#C1C7D0"/>
|
|
7
|
+
<path d="M19.645 23.8716H18.0781V29.457H19.6172C21.3652 29.457 22.3101 28.4722 22.3101 26.5723C22.3101 24.9189 21.4458 23.8936 19.645 23.8716ZM10.7397 23.8745H8.49805V26.248H10.7397C11.6582 26.248 12.2388 25.9331 12.2388 25.0454C12.2388 24.3218 11.7939 23.8745 10.7397 23.8745Z" fill="#FF1D1D"/>
|
|
8
|
+
<path d="M0.960938 20.96V30.46C0.960938 30.98 1.16064 31.46 1.521 31.8198C1.86084 32.1802 2.36084 32.3799 2.86084 32.3799H37.1411C38.1812 32.3799 39.041 31.54 39.041 30.48V20.96H0.960938ZM10.9092 27.9316H8.49951V31.1377H6.31982V22.2021H10.9434C13.021 22.2021 14.4023 23.2524 14.4023 25.0107C14.4023 26.769 13.1011 27.9316 10.9092 27.9316ZM19.9043 31.1377H15.9111V22.2021H19.9502C22.9609 22.2021 24.6084 24.1562 24.6084 26.5137C24.6084 29.374 22.5049 31.1377 19.9043 31.1377ZM33.7456 23.9272H28.5605V25.9595H33.397V27.6973H28.5605V31.1372H26.3921V22.2017H33.7456V23.9268V23.9272Z" fill="#FF1D1D"/>
|
|
9
|
+
<path d="M10.9414 22.2021H6.31836V31.1377H8.49805V27.9316H10.9077C13.0996 27.9316 14.4009 26.8379 14.4009 25.0107C14.4009 23.1836 13.0195 22.2021 10.9419 22.2021H10.9414ZM10.7393 26.248H8.49756V23.8745H10.7393C11.7935 23.8745 12.2383 24.3218 12.2383 25.0454C12.2383 25.9326 11.6572 26.248 10.7393 26.248ZM19.9487 22.2021H15.9097V31.1377H19.9028C22.5034 31.1377 24.6069 29.374 24.6069 26.5137C24.6069 24.1562 22.96 22.2021 19.9487 22.2021ZM19.6167 29.457H18.0776V23.8716H19.6445C21.4448 23.894 22.3096 24.9194 22.3096 26.5723C22.3096 28.4722 21.3647 29.457 19.6167 29.457ZM26.3906 31.1377H28.5591V27.6978H33.3955V25.96H28.5591V23.9277H33.7441V22.2021H26.3906V31.1377Z" fill="white"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_23648_109766">
|
|
13
|
+
<rect width="40" height="40" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 12.5C21.0373 12.5003 23.5 14.9626 23.5 18C23.5 21.0374 21.0373 23.4997 18 23.5C14.9624 23.5 12.499 21.0376 12.499 18C12.499 14.9624 14.9624 12.5 18 12.5ZM16.9395 15.75L18.4395 17.25H15V18.75H18.4395L16.9395 20.25L18 21.3105L20.7803 18.5303C21.0728 18.2374 21.0728 17.7626 20.7803 17.4697L18 14.6895L16.9395 15.75Z" fill="currentColor"/>
|
|
3
|
+
<path d="M1.04785 14.9482C1.54382 15.2729 2.0879 15.5406 2.64062 15.7617C4.4446 16.4833 6.78635 16.8808 9.26172 16.8809C9.70915 16.8809 10.1525 16.8663 10.5889 16.8408C10.5303 17.2186 10.5 17.6058 10.5 18C10.5 19.1814 10.7732 20.2989 11.2598 21.293C11.3045 21.4291 11.3518 21.5639 11.4043 21.6963C10.7213 21.7699 10.0028 21.8096 9.26172 21.8096C4.72529 21.8095 1.04785 20.338 1.04785 18.5234V14.9482Z" fill="currentColor"/>
|
|
4
|
+
<path d="M17.4766 10.5195C14.7877 10.7049 12.4897 12.3067 11.3223 14.585C10.6639 14.653 9.97323 14.6904 9.26172 14.6904C4.72529 14.6903 1.04785 13.2189 1.04785 11.4043V7.8291C1.54383 8.15382 2.08788 8.42148 2.64062 8.64258C4.4446 9.36412 6.78633 9.76167 9.26172 9.76172C11.7373 9.76172 14.0797 9.36419 15.8838 8.64258C16.4365 8.42148 16.9806 8.15382 17.4766 7.8291V10.5195Z" fill="currentColor"/>
|
|
5
|
+
<path d="M9.26172 1C12.6642 1 15.5841 1.82754 16.8311 3.00684C17.2466 3.3999 17.4766 3.83251 17.4766 4.28613C17.476 6.10059 13.798 7.57129 9.26172 7.57129C4.72563 7.5712 1.04842 6.10053 1.04785 4.28613C1.04785 2.47154 4.72529 1.00009 9.26172 1Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 12.5C21.0373 12.5003 23.5 14.9626 23.5 18C23.5 21.0374 21.0373 23.4997 18 23.5C14.9624 23.5 12.499 21.0376 12.499 18C12.499 14.9624 14.9624 12.5 18 12.5ZM15.875 20.3994H17.375V15.5996H15.875V20.3994ZM18.625 20.3994H20.125V15.5996H18.625V20.3994Z" fill="currentColor"/>
|
|
3
|
+
<path d="M1.04785 14.9482C1.54382 15.2729 2.0879 15.5406 2.64062 15.7617C4.4446 16.4833 6.78635 16.8808 9.26172 16.8809C9.70915 16.8809 10.1525 16.8663 10.5889 16.8408C10.5303 17.2186 10.5 17.6058 10.5 18C10.5 19.1814 10.7732 20.2989 11.2598 21.293C11.3045 21.4291 11.3518 21.5639 11.4043 21.6963C10.7213 21.7699 10.0028 21.8096 9.26172 21.8096C4.72529 21.8095 1.04785 20.338 1.04785 18.5234V14.9482Z" fill="currentColor"/>
|
|
4
|
+
<path d="M17.4766 10.5195C14.7877 10.7049 12.4897 12.3067 11.3223 14.585C10.6639 14.653 9.97323 14.6904 9.26172 14.6904C4.72529 14.6903 1.04785 13.2189 1.04785 11.4043V7.8291C1.54383 8.15382 2.08788 8.42148 2.64062 8.64258C4.4446 9.36412 6.78633 9.76167 9.26172 9.76172C11.7373 9.76172 14.0797 9.36419 15.8838 8.64258C16.4365 8.42148 16.9806 8.15382 17.4766 7.8291V10.5195Z" fill="currentColor"/>
|
|
5
|
+
<path d="M9.26172 1C12.6642 1 15.5841 1.82754 16.8311 3.00684C17.2466 3.3999 17.4766 3.83251 17.4766 4.28613C17.476 6.10059 13.798 7.57129 9.26172 7.57129C4.72563 7.5712 1.04842 6.10053 1.04785 4.28613C1.04785 2.47154 4.72529 1.00009 9.26172 1Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 12.5C21.0373 12.5003 23.5 14.9626 23.5 18C23.5 21.0374 21.0373 23.4997 18 23.5C14.9624 23.5 12.499 21.0376 12.499 18C12.499 14.9624 14.9624 12.5 18 12.5ZM16.9395 15.75L18.4395 17.25H15V18.75H18.4395L16.9395 20.25L18 21.3105L20.7803 18.5303C21.0728 18.2374 21.0728 17.7626 20.7803 17.4697L18 14.6895L16.9395 15.75Z" fill="currentColor"/>
|
|
3
|
+
<path d="M1.04785 14.9482C1.54382 15.2729 2.0879 15.5406 2.64062 15.7617C4.4446 16.4833 6.78635 16.8808 9.26172 16.8809C9.70915 16.8809 10.1525 16.8663 10.5889 16.8408C10.5303 17.2186 10.5 17.6058 10.5 18C10.5 19.1814 10.7732 20.2989 11.2598 21.293C11.3045 21.4291 11.3518 21.5639 11.4043 21.6963C10.7213 21.7699 10.0028 21.8096 9.26172 21.8096C4.72529 21.8095 1.04785 20.338 1.04785 18.5234V14.9482Z" fill="currentColor"/>
|
|
4
|
+
<path d="M17.4766 10.5195C14.7877 10.7049 12.4897 12.3067 11.3223 14.585C10.6639 14.653 9.97323 14.6904 9.26172 14.6904C4.72529 14.6903 1.04785 13.2189 1.04785 11.4043V7.8291C1.54383 8.15382 2.08788 8.42148 2.64062 8.64258C4.4446 9.36412 6.78633 9.76167 9.26172 9.76172C11.7373 9.76172 14.0797 9.36419 15.8838 8.64258C16.4365 8.42148 16.9806 8.15382 17.4766 7.8291V10.5195Z" fill="currentColor"/>
|
|
5
|
+
<path d="M9.26172 1C12.6642 1 15.5841 1.82754 16.8311 3.00684C17.2466 3.3999 17.4766 3.83251 17.4766 4.28613C17.476 6.10059 13.798 7.57129 9.26172 7.57129C4.72563 7.5712 1.04842 6.10053 1.04785 4.28613C1.04785 2.47154 4.72529 1.00009 9.26172 1Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 12.5C21.0373 12.5003 23.5 14.9626 23.5 18C23.5 21.0374 21.0373 23.4997 18 23.5C14.9624 23.5 12.499 21.0376 12.499 18C12.499 14.9624 14.9624 12.5 18 12.5ZM15.875 20.3994H17.375V15.5996H15.875V20.3994ZM18.625 20.3994H20.125V15.5996H18.625V20.3994Z" fill="currentColor"/>
|
|
3
|
+
<path d="M1.04785 14.9482C1.54382 15.2729 2.0879 15.5406 2.64062 15.7617C4.4446 16.4833 6.78635 16.8808 9.26172 16.8809C9.70915 16.8809 10.1525 16.8663 10.5889 16.8408C10.5303 17.2186 10.5 17.6058 10.5 18C10.5 19.1814 10.7732 20.2989 11.2598 21.293C11.3045 21.4291 11.3518 21.5639 11.4043 21.6963C10.7213 21.7699 10.0028 21.8096 9.26172 21.8096C4.72529 21.8095 1.04785 20.338 1.04785 18.5234V14.9482Z" fill="currentColor"/>
|
|
4
|
+
<path d="M17.4766 10.5195C14.7877 10.7049 12.4897 12.3067 11.3223 14.585C10.6639 14.653 9.97323 14.6904 9.26172 14.6904C4.72529 14.6903 1.04785 13.2189 1.04785 11.4043V7.8291C1.54383 8.15382 2.08788 8.42148 2.64062 8.64258C4.4446 9.36412 6.78633 9.76167 9.26172 9.76172C11.7373 9.76172 14.0797 9.36419 15.8838 8.64258C16.4365 8.42148 16.9806 8.15382 17.4766 7.8291V10.5195Z" fill="currentColor"/>
|
|
5
|
+
<path d="M9.26172 1C12.6642 1 15.5841 1.82754 16.8311 3.00684C17.2466 3.3999 17.4766 3.83251 17.4766 4.28613C17.476 6.10059 13.798 7.57129 9.26172 7.57129C4.72563 7.5712 1.04842 6.10053 1.04785 4.28613C1.04785 2.47154 4.72529 1.00009 9.26172 1Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_23648_109766)">
|
|
3
|
+
<path d="M35.2197 36.2002C35.2197 36.7002 35.0195 37.1802 34.6597 37.54C34.2993 37.8999 33.8198 38.1001 33.3193 38.1001H6.65967C6.15967 38.1001 5.65967 37.8999 5.31982 37.54C4.95996 37.1797 4.75977 36.7002 4.75977 36.2002V1.8999C4.75977 1.3999 4.95947 0.899902 5.31982 0.560059C5.65967 0.200195 6.16016 0 6.65967 0H23.02C23.52 0 24.02 0.200195 24.3799 0.560059L34.6797 10.8604C35.0396 11.2202 35.2397 11.7002 35.2397 12.2202V36.2002H35.2197Z" fill="#EBECF0"/>
|
|
4
|
+
<path d="M35.2197 36.2002V38.1001C35.2197 38.6001 35.0195 39.1001 34.6597 39.4399C34.2993 39.8003 33.8198 40 33.3193 40H6.65967C5.59961 40 4.75977 39.1401 4.75977 38.1001V36.2002C4.75977 36.7002 4.95947 37.1802 5.31982 37.54C5.67969 37.8999 6.15967 38.1001 6.65967 38.1001H33.3198C34.3799 38.1001 35.2197 37.2402 35.2197 36.2002Z" fill="#C1C7D0"/>
|
|
5
|
+
<path d="M4.75928 20.96V17.1396L0.939453 20.96H4.75928ZM35.2192 20.96L35.2593 17.1396L39.0591 20.96H35.2192Z" fill="#D30000"/>
|
|
6
|
+
<path d="M35.2197 12.2202V12.48H24.9194C23.8594 12.48 23.0195 11.6201 23.0195 10.5801V0C23.5195 0 24.0195 0.200195 24.3794 0.560059L34.6997 10.8604C35.0395 11.2202 35.2397 11.7002 35.2197 12.2202Z" fill="#C1C7D0"/>
|
|
7
|
+
<path d="M19.645 23.8716H18.0781V29.457H19.6172C21.3652 29.457 22.3101 28.4722 22.3101 26.5723C22.3101 24.9189 21.4458 23.8936 19.645 23.8716ZM10.7397 23.8745H8.49805V26.248H10.7397C11.6582 26.248 12.2388 25.9331 12.2388 25.0454C12.2388 24.3218 11.7939 23.8745 10.7397 23.8745Z" fill="#FF1D1D"/>
|
|
8
|
+
<path d="M0.960938 20.96V30.46C0.960938 30.98 1.16064 31.46 1.521 31.8198C1.86084 32.1802 2.36084 32.3799 2.86084 32.3799H37.1411C38.1812 32.3799 39.041 31.54 39.041 30.48V20.96H0.960938ZM10.9092 27.9316H8.49951V31.1377H6.31982V22.2021H10.9434C13.021 22.2021 14.4023 23.2524 14.4023 25.0107C14.4023 26.769 13.1011 27.9316 10.9092 27.9316ZM19.9043 31.1377H15.9111V22.2021H19.9502C22.9609 22.2021 24.6084 24.1562 24.6084 26.5137C24.6084 29.374 22.5049 31.1377 19.9043 31.1377ZM33.7456 23.9272H28.5605V25.9595H33.397V27.6973H28.5605V31.1372H26.3921V22.2017H33.7456V23.9268V23.9272Z" fill="#FF1D1D"/>
|
|
9
|
+
<path d="M10.9414 22.2021H6.31836V31.1377H8.49805V27.9316H10.9077C13.0996 27.9316 14.4009 26.8379 14.4009 25.0107C14.4009 23.1836 13.0195 22.2021 10.9419 22.2021H10.9414ZM10.7393 26.248H8.49756V23.8745H10.7393C11.7935 23.8745 12.2383 24.3218 12.2383 25.0454C12.2383 25.9326 11.6572 26.248 10.7393 26.248ZM19.9487 22.2021H15.9097V31.1377H19.9028C22.5034 31.1377 24.6069 29.374 24.6069 26.5137C24.6069 24.1562 22.96 22.2021 19.9487 22.2021ZM19.6167 29.457H18.0776V23.8716H19.6445C21.4448 23.894 22.3096 24.9194 22.3096 26.5723C22.3096 28.4722 21.3647 29.457 19.6167 29.457ZM26.3906 31.1377H28.5591V27.6978H33.3955V25.96H28.5591V23.9277H33.7441V22.2021H26.3906V31.1377Z" fill="white"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0_23648_109766">
|
|
13
|
+
<rect width="40" height="40" fill="white"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|