a-icons 1.1.39 → 1.1.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/ArrowTopRightOutlined.d.ts +7 -0
- package/es/ArrowTopRightOutlined.js +31 -0
- package/es/DownlaodAppOutlined.d.ts +7 -0
- package/es/DownlaodAppOutlined.js +31 -0
- package/es/RectTwoBarFilled.d.ts +7 -0
- package/es/RectTwoBarFilled.js +30 -0
- package/es/RectTwoBarOutlined.d.ts +7 -0
- package/es/RectTwoBarOutlined.js +40 -0
- package/es/TriangleArrowDownFilled.d.ts +7 -0
- package/es/TriangleArrowDownFilled.js +30 -0
- package/es/index.d.ts +5 -0
- package/es/index.js +5 -0
- package/lib/ArrowTopRightOutlined.d.ts +7 -0
- package/lib/ArrowTopRightOutlined.js +74 -0
- package/lib/DownlaodAppOutlined.d.ts +7 -0
- package/lib/DownlaodAppOutlined.js +74 -0
- package/lib/RectTwoBarFilled.d.ts +7 -0
- package/lib/RectTwoBarFilled.js +73 -0
- package/lib/RectTwoBarOutlined.d.ts +7 -0
- package/lib/RectTwoBarOutlined.js +83 -0
- package/lib/TriangleArrowDownFilled.d.ts +7 -0
- package/lib/TriangleArrowDownFilled.js +73 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +41 -6
- package/package.json +2 -2
- package/src/DownlaodAppOutlined.tsx +18 -0
- package/src/RectTwoBarFilled.tsx +18 -0
- package/src/RectTwoBarOutlined.tsx +28 -0
- package/src/TriangleArrowDownFilled.tsx +18 -0
- package/src/index.tsx +4 -0
- package/svgs/filled/rect-two-bar-filled.svg +5 -0
- package/svgs/filled/triangle-arrow-down-filled.svg +5 -0
- package/svgs/outlined/arrow-top-right-outlined.svg +5 -0
- package/svgs/outlined/downlaod-app-outlined.svg +5 -0
- package/svgs/outlined/rect-two-bar-outlined.svg +10 -0
- package/tmpAllSvgs/downlaod-app-outlined.svg +5 -0
- package/tmpAllSvgs/rect-two-bar-filled.svg +5 -0
- package/tmpAllSvgs/rect-two-bar-outlined.svg +10 -0
- package/tmpAllSvgs/triangle-arrow-down-filled.svg +5 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ArrowTopRightOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ArrowTopRightOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ArrowTopRightOutlined;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 ArrowTopRightOutlined(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: "M17.92 6.62a1 1 0 00-.54-.54A1 1 0 0017 6H7a1 1 0 000 2h7.59l-8.3 8.29a1 1 0 00.325 1.639 1 1 0 001.095-.219L16 9.41V17a1 1 0 002 0V7a.997.997 0 00-.08-.38z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
27
|
+
component: IconNode
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
ArrowTopRightOutlined.displayName = 'ArrowTopRightOutlined';
|
|
31
|
+
export default ArrowTopRightOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function DownlaodAppOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace DownlaodAppOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default DownlaodAppOutlined;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 DownlaodAppOutlined(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: "M8.29 13.29a1 1 0 000 1.42l3 3a1.002 1.002 0 001.42 0l3-3a1.004 1.004 0 10-1.42-1.42L13 14.59V3a1 1 0 00-2 0v11.59l-1.29-1.3a1 1 0 00-1.42 0zM18 9h-2a1 1 0 100 2h2a1 1 0 011 1v7a1 1 0 01-1 1H6a1 1 0 01-1-1v-7a1 1 0 011-1h2a1 1 0 000-2H6a3 3 0 00-3 3v7a3 3 0 003 3h12a3 3 0 003-3v-7a3 3 0 00-3-3z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}));
|
|
25
|
+
};
|
|
26
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
27
|
+
component: IconNode
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
DownlaodAppOutlined.displayName = 'DownlaodAppOutlined';
|
|
31
|
+
export default DownlaodAppOutlined;
|
|
@@ -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 RectTwoBarFilled(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: "M16.19 2H7.81C4.17 2 2 4.17 2 7.81v8.37C2 19.83 4.17 22 7.81 22h8.37c3.64 0 5.81-2.17 5.81-5.81V7.81C22 4.17 19.83 2 16.19 2zM9.91 16.19c0 .64-.52 1.16-1.17 1.16-.64 0-1.16-.52-1.16-1.16v-3.26c0-.64.52-1.16 1.16-1.16.65 0 1.17.52 1.17 1.16v3.26zm6.51 0c0 .64-.52 1.16-1.16 1.16-.65 0-1.17-.52-1.17-1.16V7.81c0-.64.52-1.16 1.17-1.16.64 0 1.16.52 1.16 1.16v8.38z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
RectTwoBarFilled.displayName = 'RectTwoBarFilled';
|
|
30
|
+
export default RectTwoBarFilled;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function RectTwoBarOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace RectTwoBarOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default RectTwoBarOutlined;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
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 RectTwoBarOutlined(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: "M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7z",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: 1.5,
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M15.5 18.5c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2s-2 .9-2 2v9a2 2 0 002 2zM8.5 18.5c1.1 0 2-.9 2-2V13c0-1.1-.9-2-2-2s-2 .9-2 2v3.5a2 2 0 002 2z",
|
|
29
|
+
stroke: "currentColor",
|
|
30
|
+
strokeWidth: 1.5,
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round"
|
|
33
|
+
}));
|
|
34
|
+
};
|
|
35
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
36
|
+
component: IconNode
|
|
37
|
+
}));
|
|
38
|
+
}
|
|
39
|
+
RectTwoBarOutlined.displayName = 'RectTwoBarOutlined';
|
|
40
|
+
export default RectTwoBarOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function TriangleArrowDownFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace TriangleArrowDownFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default TriangleArrowDownFilled;
|
|
@@ -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 TriangleArrowDownFilled(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: "M17.92 8.18H6.08c-.96 0-1.44 1.16-.76 1.84l5.18 5.18c.83.83 2.18.83 3.01 0l1.97-1.97 3.21-3.21c.67-.68.19-1.84-.77-1.84z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
TriangleArrowDownFilled.displayName = 'TriangleArrowDownFilled';
|
|
30
|
+
export default TriangleArrowDownFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
|
|
|
9
9
|
export { default as ArrowLeftOutlined } from './ArrowLeftOutlined';
|
|
10
10
|
export { default as ArrowRightOutlined } from './ArrowRightOutlined';
|
|
11
11
|
export { default as ArrowSwapHorizontal } from './ArrowSwapHorizontal';
|
|
12
|
+
export { default as ArrowTopRightOutlined } from './ArrowTopRightOutlined';
|
|
12
13
|
export { default as ArrowUpFilled } from './ArrowUpFilled';
|
|
13
14
|
export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
|
|
14
15
|
export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
|
|
@@ -77,6 +78,7 @@ export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
|
77
78
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
|
78
79
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
79
80
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
81
|
+
export { default as DownlaodAppOutlined } from './DownlaodAppOutlined';
|
|
80
82
|
export { default as DownloadOutlinedFile } from './DownloadOutlinedFile';
|
|
81
83
|
export { default as DownloadOutlined } from './DownloadOutlined';
|
|
82
84
|
export { default as DownloadReportOutlined } from './DownloadReportOutlined';
|
|
@@ -193,6 +195,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
195
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
196
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
197
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
198
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
199
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
200
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
201
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
202
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +247,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
247
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
248
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
249
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
250
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
251
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
252
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
253
|
export { default as UpFilled } from './UpFilled';
|
package/es/index.js
CHANGED
|
@@ -9,6 +9,7 @@ export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
|
|
|
9
9
|
export { default as ArrowLeftOutlined } from './ArrowLeftOutlined';
|
|
10
10
|
export { default as ArrowRightOutlined } from './ArrowRightOutlined';
|
|
11
11
|
export { default as ArrowSwapHorizontal } from './ArrowSwapHorizontal';
|
|
12
|
+
export { default as ArrowTopRightOutlined } from './ArrowTopRightOutlined';
|
|
12
13
|
export { default as ArrowUpFilled } from './ArrowUpFilled';
|
|
13
14
|
export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
|
|
14
15
|
export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
|
|
@@ -77,6 +78,7 @@ export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
|
77
78
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
|
78
79
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
79
80
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
81
|
+
export { default as DownlaodAppOutlined } from './DownlaodAppOutlined';
|
|
80
82
|
export { default as DownloadOutlinedFile } from './DownloadOutlinedFile';
|
|
81
83
|
export { default as DownloadOutlined } from './DownloadOutlined';
|
|
82
84
|
export { default as DownloadReportOutlined } from './DownloadReportOutlined';
|
|
@@ -193,6 +195,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
195
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
196
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
197
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
198
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
199
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
200
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
201
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
202
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +247,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
247
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
248
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
249
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
250
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
251
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
252
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
253
|
export { default as UpFilled } from './UpFilled';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ArrowTopRightOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ArrowTopRightOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ArrowTopRightOutlined;
|
|
@@ -0,0 +1,74 @@
|
|
|
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 ArrowTopRightOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
d: "M17.92 6.62a1 1 0 00-.54-.54A1 1 0 0017 6H7a1 1 0 000 2h7.59l-8.3 8.29a1 1 0 00.325 1.639 1 1 0 001.095-.219L16 9.41V17a1 1 0 002 0V7a.997.997 0 00-.08-.38z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
70
|
+
component: IconNode
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
ArrowTopRightOutlined.displayName = 'ArrowTopRightOutlined';
|
|
74
|
+
exports["default"] = ArrowTopRightOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function DownlaodAppOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace DownlaodAppOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default DownlaodAppOutlined;
|
|
@@ -0,0 +1,74 @@
|
|
|
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 DownlaodAppOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
d: "M8.29 13.29a1 1 0 000 1.42l3 3a1.002 1.002 0 001.42 0l3-3a1.004 1.004 0 10-1.42-1.42L13 14.59V3a1 1 0 00-2 0v11.59l-1.29-1.3a1 1 0 00-1.42 0zM18 9h-2a1 1 0 100 2h2a1 1 0 011 1v7a1 1 0 01-1 1H6a1 1 0 01-1-1v-7a1 1 0 011-1h2a1 1 0 000-2H6a3 3 0 00-3 3v7a3 3 0 003 3h12a3 3 0 003-3v-7a3 3 0 00-3-3z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}));
|
|
68
|
+
};
|
|
69
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
70
|
+
component: IconNode
|
|
71
|
+
}));
|
|
72
|
+
}
|
|
73
|
+
DownlaodAppOutlined.displayName = 'DownlaodAppOutlined';
|
|
74
|
+
exports["default"] = DownlaodAppOutlined;
|
|
@@ -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 RectTwoBarFilled(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: "M16.19 2H7.81C4.17 2 2 4.17 2 7.81v8.37C2 19.83 4.17 22 7.81 22h8.37c3.64 0 5.81-2.17 5.81-5.81V7.81C22 4.17 19.83 2 16.19 2zM9.91 16.19c0 .64-.52 1.16-1.17 1.16-.64 0-1.16-.52-1.16-1.16v-3.26c0-.64.52-1.16 1.16-1.16.65 0 1.17.52 1.17 1.16v3.26zm6.51 0c0 .64-.52 1.16-1.16 1.16-.65 0-1.17-.52-1.17-1.16V7.81c0-.64.52-1.16 1.17-1.16.64 0 1.16.52 1.16 1.16v8.38z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
RectTwoBarFilled.displayName = 'RectTwoBarFilled';
|
|
73
|
+
exports["default"] = RectTwoBarFilled;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function RectTwoBarOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace RectTwoBarOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default RectTwoBarOutlined;
|
|
@@ -0,0 +1,83 @@
|
|
|
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 RectTwoBarOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
d: "M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7z",
|
|
66
|
+
stroke: "currentColor",
|
|
67
|
+
strokeWidth: 1.5,
|
|
68
|
+
strokeLinecap: "round",
|
|
69
|
+
strokeLinejoin: "round"
|
|
70
|
+
}), React.createElement("path", {
|
|
71
|
+
d: "M15.5 18.5c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2s-2 .9-2 2v9a2 2 0 002 2zM8.5 18.5c1.1 0 2-.9 2-2V13c0-1.1-.9-2-2-2s-2 .9-2 2v3.5a2 2 0 002 2z",
|
|
72
|
+
stroke: "currentColor",
|
|
73
|
+
strokeWidth: 1.5,
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeLinejoin: "round"
|
|
76
|
+
}));
|
|
77
|
+
};
|
|
78
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
79
|
+
component: IconNode
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
RectTwoBarOutlined.displayName = 'RectTwoBarOutlined';
|
|
83
|
+
exports["default"] = RectTwoBarOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function TriangleArrowDownFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace TriangleArrowDownFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default TriangleArrowDownFilled;
|
|
@@ -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 TriangleArrowDownFilled(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: "M17.92 8.18H6.08c-.96 0-1.44 1.16-.76 1.84l5.18 5.18c.83.83 2.18.83 3.01 0l1.97-1.97 3.21-3.21c.67-.68.19-1.84-.77-1.84z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
TriangleArrowDownFilled.displayName = 'TriangleArrowDownFilled';
|
|
73
|
+
exports["default"] = TriangleArrowDownFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
|
|
|
9
9
|
export { default as ArrowLeftOutlined } from './ArrowLeftOutlined';
|
|
10
10
|
export { default as ArrowRightOutlined } from './ArrowRightOutlined';
|
|
11
11
|
export { default as ArrowSwapHorizontal } from './ArrowSwapHorizontal';
|
|
12
|
+
export { default as ArrowTopRightOutlined } from './ArrowTopRightOutlined';
|
|
12
13
|
export { default as ArrowUpFilled } from './ArrowUpFilled';
|
|
13
14
|
export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
|
|
14
15
|
export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
|
|
@@ -77,6 +78,7 @@ export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
|
77
78
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
|
78
79
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
79
80
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
81
|
+
export { default as DownlaodAppOutlined } from './DownlaodAppOutlined';
|
|
80
82
|
export { default as DownloadOutlinedFile } from './DownloadOutlinedFile';
|
|
81
83
|
export { default as DownloadOutlined } from './DownloadOutlined';
|
|
82
84
|
export { default as DownloadReportOutlined } from './DownloadReportOutlined';
|
|
@@ -193,6 +195,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
195
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
196
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
197
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
198
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
199
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
200
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
201
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
202
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +247,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
247
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
248
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
249
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
250
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
251
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
252
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
253
|
export { default as UpFilled } from './UpFilled';
|
package/lib/index.js
CHANGED
|
@@ -8,12 +8,12 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = void 0;
|
|
11
|
+
exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.CirclePlusFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.ImpassabilityFilled = void 0;
|
|
12
|
+
exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownlaodAppOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DotCalenderOutlined = exports.DollarOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DisplayerOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockOutline = void 0;
|
|
13
|
+
exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InviteFriendFilled = exports.InsFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FileDownloadLineOutlined = void 0;
|
|
14
|
+
exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OtcMerchant = exports.OtcMerchantLine = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailFilled = void 0;
|
|
15
|
+
exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalDiffusionOutlined = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = 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.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = void 0;
|
|
16
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = void 0;
|
|
17
17
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
18
18
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
19
19
|
enumerable: true,
|
|
@@ -91,6 +91,13 @@ Object.defineProperty(exports, "ArrowSwapHorizontal", {
|
|
|
91
91
|
return __importDefault(ArrowSwapHorizontal_1)["default"];
|
|
92
92
|
}
|
|
93
93
|
});
|
|
94
|
+
var ArrowTopRightOutlined_1 = require("./ArrowTopRightOutlined");
|
|
95
|
+
Object.defineProperty(exports, "ArrowTopRightOutlined", {
|
|
96
|
+
enumerable: true,
|
|
97
|
+
get: function get() {
|
|
98
|
+
return __importDefault(ArrowTopRightOutlined_1)["default"];
|
|
99
|
+
}
|
|
100
|
+
});
|
|
94
101
|
var ArrowUpFilled_1 = require("./ArrowUpFilled");
|
|
95
102
|
Object.defineProperty(exports, "ArrowUpFilled", {
|
|
96
103
|
enumerable: true,
|
|
@@ -567,6 +574,13 @@ Object.defineProperty(exports, "DoubleTextOutlined", {
|
|
|
567
574
|
return __importDefault(DoubleTextOutlined_1)["default"];
|
|
568
575
|
}
|
|
569
576
|
});
|
|
577
|
+
var DownlaodAppOutlined_1 = require("./DownlaodAppOutlined");
|
|
578
|
+
Object.defineProperty(exports, "DownlaodAppOutlined", {
|
|
579
|
+
enumerable: true,
|
|
580
|
+
get: function get() {
|
|
581
|
+
return __importDefault(DownlaodAppOutlined_1)["default"];
|
|
582
|
+
}
|
|
583
|
+
});
|
|
570
584
|
var DownloadOutlinedFile_1 = require("./DownloadOutlinedFile");
|
|
571
585
|
Object.defineProperty(exports, "DownloadOutlinedFile", {
|
|
572
586
|
enumerable: true,
|
|
@@ -1379,6 +1393,20 @@ Object.defineProperty(exports, "RectForkFilled", {
|
|
|
1379
1393
|
return __importDefault(RectForkFilled_1)["default"];
|
|
1380
1394
|
}
|
|
1381
1395
|
});
|
|
1396
|
+
var RectTwoBarFilled_1 = require("./RectTwoBarFilled");
|
|
1397
|
+
Object.defineProperty(exports, "RectTwoBarFilled", {
|
|
1398
|
+
enumerable: true,
|
|
1399
|
+
get: function get() {
|
|
1400
|
+
return __importDefault(RectTwoBarFilled_1)["default"];
|
|
1401
|
+
}
|
|
1402
|
+
});
|
|
1403
|
+
var RectTwoBarOutlined_1 = require("./RectTwoBarOutlined");
|
|
1404
|
+
Object.defineProperty(exports, "RectTwoBarOutlined", {
|
|
1405
|
+
enumerable: true,
|
|
1406
|
+
get: function get() {
|
|
1407
|
+
return __importDefault(RectTwoBarOutlined_1)["default"];
|
|
1408
|
+
}
|
|
1409
|
+
});
|
|
1382
1410
|
var RectsPlusFilled_1 = require("./RectsPlusFilled");
|
|
1383
1411
|
Object.defineProperty(exports, "RectsPlusFilled", {
|
|
1384
1412
|
enumerable: true,
|
|
@@ -1729,6 +1757,13 @@ Object.defineProperty(exports, "TreeOutlined", {
|
|
|
1729
1757
|
return __importDefault(TreeOutlined_1)["default"];
|
|
1730
1758
|
}
|
|
1731
1759
|
});
|
|
1760
|
+
var TriangleArrowDownFilled_1 = require("./TriangleArrowDownFilled");
|
|
1761
|
+
Object.defineProperty(exports, "TriangleArrowDownFilled", {
|
|
1762
|
+
enumerable: true,
|
|
1763
|
+
get: function get() {
|
|
1764
|
+
return __importDefault(TriangleArrowDownFilled_1)["default"];
|
|
1765
|
+
}
|
|
1766
|
+
});
|
|
1732
1767
|
var TwitterFilled_1 = require("./TwitterFilled");
|
|
1733
1768
|
Object.defineProperty(exports, "TwitterFilled", {
|
|
1734
1769
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.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": "^2.0.2"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "f6c312af541deb12cfe883de5e575b600337ec4a"
|
|
26
26
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function DownlaodAppOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M8.29 13.29a1 1 0 000 1.42l3 3a1.002 1.002 0 001.42 0l3-3a1.004 1.004 0 10-1.42-1.42L13 14.59V3a1 1 0 00-2 0v11.59l-1.29-1.3a1 1 0 00-1.42 0zM18 9h-2a1 1 0 100 2h2a1 1 0 011 1v7a1 1 0 01-1 1H6a1 1 0 01-1-1v-7a1 1 0 011-1h2a1 1 0 000-2H6a3 3 0 00-3 3v7a3 3 0 003 3h12a3 3 0 003-3v-7a3 3 0 00-3-3z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
DownlaodAppOutlined.displayName = 'DownlaodAppOutlined';
|
|
18
|
+
export default DownlaodAppOutlined;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function RectTwoBarFilled(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
|
+
d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81v8.37C2 19.83 4.17 22 7.81 22h8.37c3.64 0 5.81-2.17 5.81-5.81V7.81C22 4.17 19.83 2 16.19 2zM9.91 16.19c0 .64-.52 1.16-1.17 1.16-.64 0-1.16-.52-1.16-1.16v-3.26c0-.64.52-1.16 1.16-1.16.65 0 1.17.52 1.17 1.16v3.26zm6.51 0c0 .64-.52 1.16-1.16 1.16-.65 0-1.17-.52-1.17-1.16V7.81c0-.64.52-1.16 1.17-1.16.64 0 1.16.52 1.16 1.16v8.38z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
RectTwoBarFilled.displayName = 'RectTwoBarFilled';
|
|
18
|
+
export default RectTwoBarFilled;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function RectTwoBarOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M9 22h6c5 0 7-2 7-7V9c0-5-2-7-7-7H9C4 2 2 4 2 9v6c0 5 2 7 7 7z"
|
|
9
|
+
stroke="currentColor"
|
|
10
|
+
strokeWidth={1.5}
|
|
11
|
+
strokeLinecap="round"
|
|
12
|
+
strokeLinejoin="round"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
d="M15.5 18.5c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2s-2 .9-2 2v9a2 2 0 002 2zM8.5 18.5c1.1 0 2-.9 2-2V13c0-1.1-.9-2-2-2s-2 .9-2 2v3.5a2 2 0 002 2z"
|
|
16
|
+
stroke="currentColor"
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</svg>
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
RectTwoBarOutlined.displayName = 'RectTwoBarOutlined';
|
|
28
|
+
export default RectTwoBarOutlined;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function TriangleArrowDownFilled(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
|
+
d="M17.92 8.18H6.08c-.96 0-1.44 1.16-.76 1.84l5.18 5.18c.83.83 2.18.83 3.01 0l1.97-1.97 3.21-3.21c.67-.68.19-1.84-.77-1.84z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
TriangleArrowDownFilled.displayName = 'TriangleArrowDownFilled';
|
|
18
|
+
export default TriangleArrowDownFilled;
|
package/src/index.tsx
CHANGED
|
@@ -77,6 +77,7 @@ export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
|
77
77
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
|
78
78
|
export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
79
79
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
80
|
+
export { default as DownlaodAppOutlined } from './DownlaodAppOutlined';
|
|
80
81
|
export { default as DownloadOutlinedFile } from './DownloadOutlinedFile';
|
|
81
82
|
export { default as DownloadOutlined } from './DownloadOutlined';
|
|
82
83
|
export { default as DownloadReportOutlined } from './DownloadReportOutlined';
|
|
@@ -193,6 +194,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
194
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
195
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
196
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
197
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
198
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
199
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
200
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
201
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +246,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
246
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
247
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
248
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
249
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
250
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
251
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
252
|
export { default as UpFilled } from './UpFilled';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2ZM9.91 16.19C9.91 16.83 9.39 17.35 8.74 17.35C8.1 17.35 7.58 16.83 7.58 16.19V12.93C7.58 12.29 8.1 11.77 8.74 11.77C9.39 11.77 9.91 12.29 9.91 12.93V16.19ZM16.42 16.19C16.42 16.83 15.9 17.35 15.26 17.35C14.61 17.35 14.09 16.83 14.09 16.19V7.81C14.09 7.17 14.61 6.65 15.26 6.65C15.9 6.65 16.42 7.17 16.42 7.81V16.19Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M17.9197 8.17969H11.6897H6.07975C5.11975 8.17969 4.63975 9.33969 5.31975 10.0197L10.4997 15.1997C11.3297 16.0297 12.6797 16.0297 13.5097 15.1997L15.4797 13.2297L18.6897 10.0197C19.3597 9.33969 18.8797 8.17969 17.9197 8.17969Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M17.9199 6.62C17.8185 6.37565 17.6243 6.18147 17.3799 6.08C17.2597 6.02876 17.1306 6.00158 16.9999 6H6.99994C6.73472 6 6.48037 6.10536 6.29283 6.29289C6.1053 6.48043 5.99994 6.73478 5.99994 7C5.99994 7.26522 6.1053 7.51957 6.29283 7.70711C6.48037 7.89464 6.73472 8 6.99994 8H14.5899L6.28994 16.29C6.19621 16.383 6.12182 16.4936 6.07105 16.6154C6.02028 16.7373 5.99414 16.868 5.99414 17C5.99414 17.132 6.02028 17.2627 6.07105 17.3846C6.12182 17.5064 6.19621 17.617 6.28994 17.71C6.3829 17.8037 6.4935 17.8781 6.61536 17.9289C6.73722 17.9797 6.86793 18.0058 6.99994 18.0058C7.13195 18.0058 7.26266 17.9797 7.38452 17.9289C7.50638 17.8781 7.61698 17.8037 7.70994 17.71L15.9999 9.41V17C15.9999 17.2652 16.1053 17.5196 16.2928 17.7071C16.4804 17.8946 16.7347 18 16.9999 18C17.2652 18 17.5195 17.8946 17.707 17.7071C17.8946 17.5196 17.9999 17.2652 17.9999 17V7C17.9984 6.86932 17.9712 6.74022 17.9199 6.62Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M8.29 13.29C8.19627 13.383 8.12188 13.4936 8.07111 13.6154C8.02034 13.7373 7.9942 13.868 7.9942 14C7.9942 14.132 8.02034 14.2627 8.07111 14.3846C8.12188 14.5064 8.19627 14.617 8.29 14.71L11.29 17.71C11.383 17.8037 11.4936 17.8781 11.6154 17.9289C11.7373 17.9797 11.868 18.0058 12 18.0058C12.132 18.0058 12.2627 17.9797 12.3846 17.9289C12.5064 17.8781 12.617 17.8037 12.71 17.71L15.71 14.71C15.8983 14.5217 16.0041 14.2663 16.0041 14C16.0041 13.7337 15.8983 13.4783 15.71 13.29C15.5217 13.1017 15.2663 12.9959 15 12.9959C14.7337 12.9959 14.4783 13.1017 14.29 13.29L13 14.59V3C13 2.73478 12.8946 2.48043 12.7071 2.29289C12.5196 2.10536 12.2652 2 12 2C11.7348 2 11.4804 2.10536 11.2929 2.29289C11.1054 2.48043 11 2.73478 11 3V14.59L9.71 13.29C9.61704 13.1963 9.50644 13.1219 9.38458 13.0711C9.26272 13.0203 9.13201 12.9942 9 12.9942C8.86799 12.9942 8.73728 13.0203 8.61542 13.0711C8.49356 13.1219 8.38296 13.1963 8.29 13.29ZM18 9H16C15.7348 9 15.4804 9.10536 15.2929 9.29289C15.1054 9.48043 15 9.73478 15 10C15 10.2652 15.1054 10.5196 15.2929 10.7071C15.4804 10.8946 15.7348 11 16 11H18C18.2652 11 18.5196 11.1054 18.7071 11.2929C18.8946 11.4804 19 11.7348 19 12V19C19 19.2652 18.8946 19.5196 18.7071 19.7071C18.5196 19.8946 18.2652 20 18 20H6C5.73478 20 5.48043 19.8946 5.29289 19.7071C5.10536 19.5196 5 19.2652 5 19V12C5 11.7348 5.10536 11.4804 5.29289 11.2929C5.48043 11.1054 5.73478 11 6 11H8C8.26522 11 8.51957 10.8946 8.70711 10.7071C8.89464 10.5196 9 10.2652 9 10C9 9.73478 8.89464 9.48043 8.70711 9.29289C8.51957 9.10536 8.26522 9 8 9H6C5.20435 9 4.44129 9.31607 3.87868 9.87868C3.31607 10.4413 3 11.2044 3 12V19C3 19.7956 3.31607 20.5587 3.87868 21.1213C4.44129 21.6839 5.20435 22 6 22H18C18.7956 22 19.5587 21.6839 20.1213 21.1213C20.6839 20.5587 21 19.7956 21 19V12C21 11.2044 20.6839 10.4413 20.1213 9.87868C19.5587 9.31607 18.7956 9 18 9Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z" stroke="currentColor"
|
|
3
|
+
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
+
<path
|
|
5
|
+
d="M15.5 18.5C16.6 18.5 17.5 17.6 17.5 16.5V7.5C17.5 6.4 16.6 5.5 15.5 5.5C14.4 5.5 13.5 6.4 13.5 7.5V16.5C13.5 17.6 14.39 18.5 15.5 18.5Z"
|
|
6
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
7
|
+
<path
|
|
8
|
+
d="M8.5 18.5C9.6 18.5 10.5 17.6 10.5 16.5V13C10.5 11.9 9.6 11 8.5 11C7.4 11 6.5 11.9 6.5 13V16.5C6.5 17.6 7.39 18.5 8.5 18.5Z"
|
|
9
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M8.29 13.29C8.19627 13.383 8.12188 13.4936 8.07111 13.6154C8.02034 13.7373 7.9942 13.868 7.9942 14C7.9942 14.132 8.02034 14.2627 8.07111 14.3846C8.12188 14.5064 8.19627 14.617 8.29 14.71L11.29 17.71C11.383 17.8037 11.4936 17.8781 11.6154 17.9289C11.7373 17.9797 11.868 18.0058 12 18.0058C12.132 18.0058 12.2627 17.9797 12.3846 17.9289C12.5064 17.8781 12.617 17.8037 12.71 17.71L15.71 14.71C15.8983 14.5217 16.0041 14.2663 16.0041 14C16.0041 13.7337 15.8983 13.4783 15.71 13.29C15.5217 13.1017 15.2663 12.9959 15 12.9959C14.7337 12.9959 14.4783 13.1017 14.29 13.29L13 14.59V3C13 2.73478 12.8946 2.48043 12.7071 2.29289C12.5196 2.10536 12.2652 2 12 2C11.7348 2 11.4804 2.10536 11.2929 2.29289C11.1054 2.48043 11 2.73478 11 3V14.59L9.71 13.29C9.61704 13.1963 9.50644 13.1219 9.38458 13.0711C9.26272 13.0203 9.13201 12.9942 9 12.9942C8.86799 12.9942 8.73728 13.0203 8.61542 13.0711C8.49356 13.1219 8.38296 13.1963 8.29 13.29ZM18 9H16C15.7348 9 15.4804 9.10536 15.2929 9.29289C15.1054 9.48043 15 9.73478 15 10C15 10.2652 15.1054 10.5196 15.2929 10.7071C15.4804 10.8946 15.7348 11 16 11H18C18.2652 11 18.5196 11.1054 18.7071 11.2929C18.8946 11.4804 19 11.7348 19 12V19C19 19.2652 18.8946 19.5196 18.7071 19.7071C18.5196 19.8946 18.2652 20 18 20H6C5.73478 20 5.48043 19.8946 5.29289 19.7071C5.10536 19.5196 5 19.2652 5 19V12C5 11.7348 5.10536 11.4804 5.29289 11.2929C5.48043 11.1054 5.73478 11 6 11H8C8.26522 11 8.51957 10.8946 8.70711 10.7071C8.89464 10.5196 9 10.2652 9 10C9 9.73478 8.89464 9.48043 8.70711 9.29289C8.51957 9.10536 8.26522 9 8 9H6C5.20435 9 4.44129 9.31607 3.87868 9.87868C3.31607 10.4413 3 11.2044 3 12V19C3 19.7956 3.31607 20.5587 3.87868 21.1213C4.44129 21.6839 5.20435 22 6 22H18C18.7956 22 19.5587 21.6839 20.1213 21.1213C20.6839 20.5587 21 19.7956 21 19V12C21 11.2044 20.6839 10.4413 20.1213 9.87868C19.5587 9.31607 18.7956 9 18 9Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2ZM9.91 16.19C9.91 16.83 9.39 17.35 8.74 17.35C8.1 17.35 7.58 16.83 7.58 16.19V12.93C7.58 12.29 8.1 11.77 8.74 11.77C9.39 11.77 9.91 12.29 9.91 12.93V16.19ZM16.42 16.19C16.42 16.83 15.9 17.35 15.26 17.35C14.61 17.35 14.09 16.83 14.09 16.19V7.81C14.09 7.17 14.61 6.65 15.26 6.65C15.9 6.65 16.42 7.17 16.42 7.81V16.19Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z" stroke="currentColor"
|
|
3
|
+
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
+
<path
|
|
5
|
+
d="M15.5 18.5C16.6 18.5 17.5 17.6 17.5 16.5V7.5C17.5 6.4 16.6 5.5 15.5 5.5C14.4 5.5 13.5 6.4 13.5 7.5V16.5C13.5 17.6 14.39 18.5 15.5 18.5Z"
|
|
6
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
7
|
+
<path
|
|
8
|
+
d="M8.5 18.5C9.6 18.5 10.5 17.6 10.5 16.5V13C10.5 11.9 9.6 11 8.5 11C7.4 11 6.5 11.9 6.5 13V16.5C6.5 17.6 7.39 18.5 8.5 18.5Z"
|
|
9
|
+
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M17.9197 8.17969H11.6897H6.07975C5.11975 8.17969 4.63975 9.33969 5.31975 10.0197L10.4997 15.1997C11.3297 16.0297 12.6797 16.0297 13.5097 15.1997L15.4797 13.2297L18.6897 10.0197C19.3597 9.33969 18.8797 8.17969 17.9197 8.17969Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|