a-icons 1.0.42 → 1.0.46
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/ArrowDropDownFilled.js +1 -2
- package/es/CalendarOutlined.d.ts +6 -0
- package/es/{FormFilled.js → CalendarOutlined.js} +5 -9
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/lib/ArrowDropDownFilled.js +1 -2
- package/lib/CalendarOutlined.d.ts +6 -0
- package/lib/{FormFilled.js → CalendarOutlined.js} +5 -9
- package/lib/index.d.ts +1 -1
- package/lib/index.js +9 -9
- package/package.json +2 -2
- package/src/ArrowDropDownFilled.tsx +1 -1
- package/src/BankCardFilled.tsx +18 -0
- package/src/CalendarOutlined.tsx +18 -0
- package/src/CameraOutlined.tsx +8 -1
- package/src/CategoryFilled.tsx +8 -1
- package/src/{ErrorWarningLine.tsx → ErrorWarningOutlined.tsx} +3 -3
- package/src/HandCoinsFilled.tsx +18 -0
- package/src/KeyFilled.tsx +18 -0
- package/src/SearchDocumentFilled.tsx +4 -1
- package/src/StampFilled.tsx +6 -1
- package/src/WalletFilled.tsx +4 -1
- package/src/index.tsx +5 -2
- package/svgs/filled/arrow-drop-down-filled.svg +1 -1
- package/svgs/filled/bank-card-filled.svg +3 -0
- package/svgs/filled/hand-coins-filled.svg +3 -0
- package/svgs/filled/key-filled.svg +3 -0
- package/svgs/outlined/calendar-outlined.svg +5 -0
- package/svgs/{filled/error-warning-line.svg → outlined/error-warning-outlined.svg} +0 -0
- package/tmpAllSvgs/arrow-drop-down-filled.svg +1 -1
- package/tmpAllSvgs/bank-card-filled.svg +3 -0
- package/tmpAllSvgs/calendar-outlined.svg +5 -0
- package/tmpAllSvgs/{error-warning-line.svg → error-warning-outlined.svg} +0 -0
- package/tmpAllSvgs/hand-coins-filled.svg +3 -0
- package/tmpAllSvgs/key-filled.svg +3 -0
- package/es/FormFilled.d.ts +0 -6
- package/lib/FormFilled.d.ts +0 -6
- package/src/FormFilled.tsx +0 -24
- package/svgs/filled/form-filled.svg +0 -8
- package/tmpAllSvgs/form-filled.svg +0 -8
|
@@ -17,18 +17,14 @@ var __assign = this && this.__assign || function () {
|
|
|
17
17
|
import * as React from 'react';
|
|
18
18
|
import Icon from 'a-base-icon/lib/Icon';
|
|
19
19
|
|
|
20
|
-
function
|
|
20
|
+
function CalendarOutlined(componentProps) {
|
|
21
21
|
var IconNode = function IconNode(props) {
|
|
22
22
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
23
|
viewBox: "0 0 24 24",
|
|
24
|
+
fill: "none",
|
|
24
25
|
xmlns: "http://www.w3.org/2000/svg"
|
|
25
26
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
d: "
|
|
27
|
-
fill: "currentColor"
|
|
28
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
-
fillRule: "evenodd",
|
|
30
|
-
clipRule: "evenodd",
|
|
31
|
-
d: "M16.77 3.11a3.22 3.22 0 014.51-.34 3.22 3.22 0 01-.34 4.56L14.27 14a2.48 2.48 0 01-1.27.64l-3.38.76a.77.77 0 01-.94-1l.73-3.4a2.55 2.55 0 01.69-1.22l6.67-6.67zm.41 4.66l2.24-2.24a.75.75 0 00-1.06-1.06l-2.24 2.24a.75.75 0 001.06 1.06z",
|
|
27
|
+
d: "M17 3h4a1 1 0 011 1v16a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1h4V1h2v2h6V1h2v2zm3 8H4v8h16v-8zm-5-6H9v2H7V5H4v4h16V5h-3v2h-2V5zm-9 8h2v2H6v-2zm5 0h2v2h-2v-2zm5 0h2v2h-2v-2z",
|
|
32
28
|
fill: "currentColor"
|
|
33
29
|
}));
|
|
34
30
|
};
|
|
@@ -38,5 +34,5 @@ function FormFilled(componentProps) {
|
|
|
38
34
|
}));
|
|
39
35
|
}
|
|
40
36
|
|
|
41
|
-
|
|
42
|
-
export default
|
|
37
|
+
CalendarOutlined.displayName = 'CalendarOutlined';
|
|
38
|
+
export default CalendarOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
|
12
12
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
13
13
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
14
14
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
15
|
+
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
15
16
|
export { default as CameraFilled } from './CameraFilled';
|
|
16
17
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
17
18
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -44,7 +45,6 @@ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
|
44
45
|
export { default as ErrorWarningLine } from './ErrorWarningLine';
|
|
45
46
|
export { default as FileFilled } from './FileFilled';
|
|
46
47
|
export { default as FileOutlined } from './FileOutlined';
|
|
47
|
-
export { default as FormFilled } from './FormFilled';
|
|
48
48
|
export { default as FormOutlined } from './FormOutlined';
|
|
49
49
|
export { default as HomeFilled } from './HomeFilled';
|
|
50
50
|
export { default as HomeOutlined } from './HomeOutlined';
|
package/es/index.js
CHANGED
|
@@ -12,6 +12,7 @@ export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
|
12
12
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
13
13
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
14
14
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
15
|
+
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
15
16
|
export { default as CameraFilled } from './CameraFilled';
|
|
16
17
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
17
18
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -44,7 +45,6 @@ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
|
44
45
|
export { default as ErrorWarningLine } from './ErrorWarningLine';
|
|
45
46
|
export { default as FileFilled } from './FileFilled';
|
|
46
47
|
export { default as FileOutlined } from './FileOutlined';
|
|
47
|
-
export { default as FormFilled } from './FormFilled';
|
|
48
48
|
export { default as FormOutlined } from './FormOutlined';
|
|
49
49
|
export { default as HomeFilled } from './HomeFilled';
|
|
50
50
|
export { default as HomeOutlined } from './HomeOutlined';
|
|
@@ -64,18 +64,14 @@ var React = __importStar(require("react"));
|
|
|
64
64
|
|
|
65
65
|
var Icon_1 = __importDefault(require("a-base-icon/lib/Icon"));
|
|
66
66
|
|
|
67
|
-
function
|
|
67
|
+
function CalendarOutlined(componentProps) {
|
|
68
68
|
var IconNode = function IconNode(props) {
|
|
69
69
|
return React.createElement("svg", __assign({
|
|
70
70
|
viewBox: "0 0 24 24",
|
|
71
|
+
fill: "none",
|
|
71
72
|
xmlns: "http://www.w3.org/2000/svg"
|
|
72
73
|
}, props), React.createElement("path", {
|
|
73
|
-
d: "
|
|
74
|
-
fill: "currentColor"
|
|
75
|
-
}), React.createElement("path", {
|
|
76
|
-
fillRule: "evenodd",
|
|
77
|
-
clipRule: "evenodd",
|
|
78
|
-
d: "M16.77 3.11a3.22 3.22 0 014.51-.34 3.22 3.22 0 01-.34 4.56L14.27 14a2.48 2.48 0 01-1.27.64l-3.38.76a.77.77 0 01-.94-1l.73-3.4a2.55 2.55 0 01.69-1.22l6.67-6.67zm.41 4.66l2.24-2.24a.75.75 0 00-1.06-1.06l-2.24 2.24a.75.75 0 001.06 1.06z",
|
|
74
|
+
d: "M17 3h4a1 1 0 011 1v16a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1h4V1h2v2h6V1h2v2zm3 8H4v8h16v-8zm-5-6H9v2H7V5H4v4h16V5h-3v2h-2V5zm-9 8h2v2H6v-2zm5 0h2v2h-2v-2zm5 0h2v2h-2v-2z",
|
|
79
75
|
fill: "currentColor"
|
|
80
76
|
}));
|
|
81
77
|
};
|
|
@@ -85,5 +81,5 @@ function FormFilled(componentProps) {
|
|
|
85
81
|
}));
|
|
86
82
|
}
|
|
87
83
|
|
|
88
|
-
|
|
89
|
-
exports["default"] =
|
|
84
|
+
CalendarOutlined.displayName = 'CalendarOutlined';
|
|
85
|
+
exports["default"] = CalendarOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
|
12
12
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
13
13
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
14
14
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
15
|
+
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
15
16
|
export { default as CameraFilled } from './CameraFilled';
|
|
16
17
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
17
18
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -44,7 +45,6 @@ export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
|
44
45
|
export { default as ErrorWarningLine } from './ErrorWarningLine';
|
|
45
46
|
export { default as FileFilled } from './FileFilled';
|
|
46
47
|
export { default as FileOutlined } from './FileOutlined';
|
|
47
|
-
export { default as FormFilled } from './FormFilled';
|
|
48
48
|
export { default as FormOutlined } from './FormOutlined';
|
|
49
49
|
export { default as HomeFilled } from './HomeFilled';
|
|
50
50
|
export { default as HomeOutlined } from './HomeOutlined';
|
package/lib/index.js
CHANGED
|
@@ -130,6 +130,15 @@ Object.defineProperty(exports, "BusinessCardOutlined", {
|
|
|
130
130
|
}
|
|
131
131
|
});
|
|
132
132
|
|
|
133
|
+
var CalendarOutlined_1 = require("./CalendarOutlined");
|
|
134
|
+
|
|
135
|
+
Object.defineProperty(exports, "CalendarOutlined", {
|
|
136
|
+
enumerable: true,
|
|
137
|
+
get: function get() {
|
|
138
|
+
return CalendarOutlined_1["default"];
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
|
|
133
142
|
var CameraFilled_1 = require("./CameraFilled");
|
|
134
143
|
|
|
135
144
|
Object.defineProperty(exports, "CameraFilled", {
|
|
@@ -418,15 +427,6 @@ Object.defineProperty(exports, "FileOutlined", {
|
|
|
418
427
|
}
|
|
419
428
|
});
|
|
420
429
|
|
|
421
|
-
var FormFilled_1 = require("./FormFilled");
|
|
422
|
-
|
|
423
|
-
Object.defineProperty(exports, "FormFilled", {
|
|
424
|
-
enumerable: true,
|
|
425
|
-
get: function get() {
|
|
426
|
-
return FormFilled_1["default"];
|
|
427
|
-
}
|
|
428
|
-
});
|
|
429
|
-
|
|
430
430
|
var FormOutlined_1 = require("./FormOutlined");
|
|
431
431
|
|
|
432
432
|
Object.defineProperty(exports, "FormOutlined", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.46",
|
|
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": "c085269f0865b407c557d602ef1f3fa41d6d5cbc"
|
|
26
26
|
}
|
|
@@ -4,7 +4,7 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
|
4
4
|
function ArrowDropDownFilled(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
-
<path d="M12 14l-4-4h8l-4 4z" fill="currentColor"
|
|
7
|
+
<path d="M12 14l-4-4h8l-4 4z" fill="currentColor" />
|
|
8
8
|
</svg>
|
|
9
9
|
);
|
|
10
10
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function BankCardFilled(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="M21 11.222v7.89a.883.883 0 01-.264.628.906.906 0 01-.636.26H3.9a.906.906 0 01-.636-.26A.883.883 0 013 19.11v-7.889h18zm0-1.778H3V5.89c0-.236.095-.462.264-.629A.906.906 0 013.9 5h16.2c.239 0 .468.094.636.26A.883.883 0 0121 5.89v3.555zm-6.3 6.112v1.777h3.6v-1.777h-3.6z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
BankCardFilled.displayName = 'BankCardFilled';
|
|
18
|
+
export default BankCardFilled;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function CalendarOutlined(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="M17 3h4a1 1 0 011 1v16a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1h4V1h2v2h6V1h2v2zm3 8H4v8h16v-8zm-5-6H9v2H7V5H4v4h16V5h-3v2h-2V5zm-9 8h2v2H6v-2zm5 0h2v2h-2v-2zm5 0h2v2h-2v-2z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
CalendarOutlined.displayName = 'CalendarOutlined';
|
|
18
|
+
export default CalendarOutlined;
|
package/src/CameraOutlined.tsx
CHANGED
|
@@ -16,7 +16,14 @@ function CameraOutlined(componentProps: IconProps) {
|
|
|
16
16
|
d="M7.716 12.19a4.21 4.21 0 118.42 0 4.21 4.21 0 01-8.42 0zm1.579 0a2.632 2.632 0 105.263 0 2.632 2.632 0 00-5.263 0z"
|
|
17
17
|
fill="currentColor"
|
|
18
18
|
/>
|
|
19
|
-
<rect
|
|
19
|
+
<rect
|
|
20
|
+
x={16.137}
|
|
21
|
+
y={6.916}
|
|
22
|
+
width={2.105}
|
|
23
|
+
height={2.116}
|
|
24
|
+
rx={0.5}
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
20
27
|
</svg>
|
|
21
28
|
);
|
|
22
29
|
|
package/src/CategoryFilled.tsx
CHANGED
|
@@ -7,7 +7,14 @@ function CategoryFilled(componentProps: IconProps) {
|
|
|
7
7
|
<rect x={2.33} y={2} width={8.67} height={6.67} rx={2.25} fill="currentColor" />
|
|
8
8
|
<rect x={13.67} y={2} width={8} height={11.33} rx={2.25} fill="currentColor" />
|
|
9
9
|
<rect x={13.67} y={16} width={8} height={6} rx={2.25} fill="currentColor" />
|
|
10
|
-
<rect
|
|
10
|
+
<rect
|
|
11
|
+
x={2.33}
|
|
12
|
+
y={11.33}
|
|
13
|
+
width={8.67}
|
|
14
|
+
height={10.67}
|
|
15
|
+
rx={2.25}
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
11
18
|
</svg>
|
|
12
19
|
);
|
|
13
20
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
3
|
|
|
4
|
-
function
|
|
4
|
+
function ErrorWarningOutlined(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
7
|
<path
|
|
@@ -14,5 +14,5 @@ function ErrorWarningLine(componentProps: IconProps) {
|
|
|
14
14
|
return <Icon {...componentProps} component={IconNode} />;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
export default
|
|
17
|
+
ErrorWarningOutlined.displayName = 'ErrorWarningOutlined';
|
|
18
|
+
export default ErrorWarningOutlined;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function HandCoinsFilled(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.4 12.5h1.927c1.06 0 2.076.424 2.826 1.18.75.754 1.17 1.779 1.17 2.846H9.106l.001.895h7.106v-.895a5.018 5.018 0 00-.787-2.684h2.564c.84 0 1.662.24 2.372.69A4.464 4.464 0 0122 16.394C19.9 19.186 16.498 21 12.66 21c-2.453 0-4.531-.528-6.219-1.454v-8.325A6.167 6.167 0 019.4 12.5zm-3.847 6.71a.898.898 0 01-.26.633.885.885 0 01-.628.262H2.888a.885.885 0 01-.628-.262.898.898 0 01-.26-.633v-8.052c0-.237.094-.465.26-.633a.885.885 0 01.628-.262h1.777c.235 0 .461.094.628.262.166.168.26.396.26.633v8.053zM17.1 6.684c.707 0 1.385.283 1.885.786a2.694 2.694 0 010 3.796 2.655 2.655 0 01-3.769 0 2.694 2.694 0 010-3.796 2.655 2.655 0 011.884-.786zM10.883 4c.706 0 1.384.283 1.884.786a2.694 2.694 0 010 3.796 2.655 2.655 0 01-3.769 0 2.694 2.694 0 010-3.796A2.655 2.655 0 0110.883 4z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
HandCoinsFilled.displayName = 'HandCoinsFilled';
|
|
18
|
+
export default HandCoinsFilled;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
+
|
|
4
|
+
function KeyFilled(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="M10.313 11.566l7.94-7.94 2.121 2.121-1.414 1.414 2.121 2.121-3.535 3.536-2.121-2.121-2.99 2.99a5.003 5.003 0 01-7.97 5.849 5 5 0 015.848-7.97zm-.899 5.848a2 2 0 10-2.78-2.877 2 2 0 002.78 2.877z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
KeyFilled.displayName = 'KeyFilled';
|
|
18
|
+
export default KeyFilled;
|
|
@@ -14,7 +14,10 @@ function SearchDocumentFilled(componentProps: IconProps) {
|
|
|
14
14
|
d="M14.07 10.24h4.78a.5.5 0 01.5.5v6.92a4 4 0 01-4 4H8.46a4 4 0 01-4-4V6.5a4 4 0 014-4h2.67a.51.51 0 01.5.5v4.78a2.45 2.45 0 002.44 2.46zm-5.22 8.04a2.87 2.87 0 001.51.44l.04-.05a2.84 2.84 0 10-2.84-2.84c.002.461.119.915.34 1.32a.996.996 0 00-.13.09l-1.06 1.1a.75.75 0 00.54 1.27.7.7 0 00.54-.23l1.06-1.1z"
|
|
15
15
|
fill="currentColor"
|
|
16
16
|
/>
|
|
17
|
-
<path
|
|
17
|
+
<path
|
|
18
|
+
d="M10.36 14.53a1.35 1.35 0 10-.02 2.7 1.35 1.35 0 00.02-2.7z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
18
21
|
</svg>
|
|
19
22
|
);
|
|
20
23
|
|
package/src/StampFilled.tsx
CHANGED
|
@@ -3,7 +3,12 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
|
3
3
|
|
|
4
4
|
function StampFilled(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
-
<svg
|
|
6
|
+
<svg
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
7
12
|
<rect x={4} y={13} width={16} height={5} rx={2} />
|
|
8
13
|
<path d="M10 10h4v4h-4z" />
|
|
9
14
|
<circle cx={12} cy={7} r={4} />
|
package/src/WalletFilled.tsx
CHANGED
|
@@ -4,7 +4,10 @@ import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
|
4
4
|
function WalletFilled(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
-
<path
|
|
7
|
+
<path
|
|
8
|
+
d="M18.314 11.22a.676.676 0 100 1.351H22V11.2h-.105l-3.58.02z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
8
11
|
<path
|
|
9
12
|
d="M21.895 14.381h-3.58a2.486 2.486 0 010-4.971H22v-1.6A3.81 3.81 0 0018.19 4H5.81A3.81 3.81 0 002 7.81v8.171a3.81 3.81 0 003.81 3.81h12.38A3.81 3.81 0 0022 15.98v-1.62l-.105.02z"
|
|
10
13
|
fill="currentColor"
|
package/src/index.tsx
CHANGED
|
@@ -6,12 +6,14 @@ export { default as ArrowDropDownFilled } from './ArrowDropDownFilled';
|
|
|
6
6
|
export { default as ArrowsChevronFilled } from './ArrowsChevronFilled';
|
|
7
7
|
export { default as ArrowsChevronOutlined } from './ArrowsChevronOutlined';
|
|
8
8
|
export { default as ArticleBoardFilled } from './ArticleBoardFilled';
|
|
9
|
+
export { default as BankCardFilled } from './BankCardFilled';
|
|
9
10
|
export { default as BoxFilled } from './BoxFilled';
|
|
10
11
|
export { default as BoxOutlined } from './BoxOutlined';
|
|
11
12
|
export { default as BrokenLineFilled } from './BrokenLineFilled';
|
|
12
13
|
export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
13
14
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
14
15
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
16
|
+
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
15
17
|
export { default as CameraFilled } from './CameraFilled';
|
|
16
18
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
17
19
|
export { default as CardFilled } from './CardFilled';
|
|
@@ -41,15 +43,16 @@ export { default as DoubleTextFilled } from './DoubleTextFilled';
|
|
|
41
43
|
export { default as DoubleTextOutlined } from './DoubleTextOutlined';
|
|
42
44
|
export { default as EditFilled } from './EditFilled';
|
|
43
45
|
export { default as EditSimpleOutlined } from './EditSimpleOutlined';
|
|
44
|
-
export { default as
|
|
46
|
+
export { default as ErrorWarningOutlined } from './ErrorWarningOutlined';
|
|
45
47
|
export { default as FileFilled } from './FileFilled';
|
|
46
48
|
export { default as FileOutlined } from './FileOutlined';
|
|
47
|
-
export { default as FormFilled } from './FormFilled';
|
|
48
49
|
export { default as FormOutlined } from './FormOutlined';
|
|
50
|
+
export { default as HandCoinsFilled } from './HandCoinsFilled';
|
|
49
51
|
export { default as HomeFilled } from './HomeFilled';
|
|
50
52
|
export { default as HomeOutlined } from './HomeOutlined';
|
|
51
53
|
export { default as ImacFilled } from './ImacFilled';
|
|
52
54
|
export { default as ImacOutlined } from './ImacOutlined';
|
|
55
|
+
export { default as KeyFilled } from './KeyFilled';
|
|
53
56
|
export { default as LayerFilled } from './LayerFilled';
|
|
54
57
|
export { default as LayerOutlined } from './LayerOutlined';
|
|
55
58
|
export { default as LineUpFilled } from './LineUpFilled';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M21 11.2222V19.1111C21 19.3469 20.9052 19.573 20.7364 19.7397C20.5676 19.9064 20.3387 20 20.1 20H3.9C3.66131 20 3.43239 19.9064 3.2636 19.7397C3.09482 19.573 3 19.3469 3 19.1111V11.2222H21ZM21 9.44444H3V5.88889C3 5.65314 3.09482 5.42705 3.2636 5.26035C3.43239 5.09365 3.66131 5 3.9 5H20.1C20.3387 5 20.5676 5.09365 20.7364 5.26035C20.9052 5.42705 21 5.65314 21 5.88889V9.44444ZM14.7 15.5556V17.3333H18.3V15.5556H14.7Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.39918 12.5H11.3267C12.3868 12.5 13.4035 12.9242 14.1531 13.6793C14.9027 14.4344 15.3239 15.4585 15.3239 16.5263H9.10517L9.10606 17.4211H16.2121V16.5263C16.2093 15.5743 15.9362 14.6429 15.4251 13.8421H17.9886C18.8283 13.8419 19.6508 14.0814 20.3608 14.5329C21.0707 14.9844 21.6391 15.6293 22 16.393C19.8993 19.1855 16.4981 21 12.6591 21C10.2066 21 8.12897 20.4721 6.44129 19.5461V11.2214C7.52195 11.3774 8.54243 11.8185 9.39918 12.5ZM5.55303 19.2105C5.55303 19.4478 5.45944 19.6754 5.29286 19.8432C5.12628 20.011 4.90035 20.1053 4.66477 20.1053H2.88826C2.65268 20.1053 2.42674 20.011 2.26016 19.8432C2.09358 19.6754 2 19.4478 2 19.2105V11.1579C2 10.9206 2.09358 10.693 2.26016 10.5252C2.42674 10.3574 2.65268 10.2632 2.88826 10.2632H4.66477C4.90035 10.2632 5.12628 10.3574 5.29286 10.5252C5.45944 10.693 5.55303 10.9206 5.55303 11.1579V19.2105ZM17.1004 6.68421C17.8071 6.68421 18.4849 6.96701 18.9847 7.4704C19.4844 7.97378 19.7651 8.65652 19.7651 9.36842C19.7651 10.0803 19.4844 10.7631 18.9847 11.2664C18.4849 11.7698 17.8071 12.0526 17.1004 12.0526C16.3936 12.0526 15.7158 11.7698 15.2161 11.2664C14.7164 10.7631 14.4356 10.0803 14.4356 9.36842C14.4356 8.65652 14.7164 7.97378 15.2161 7.4704C15.7158 6.96701 16.3936 6.68421 17.1004 6.68421ZM10.8826 4C11.5893 4 12.2671 4.2828 12.7669 4.78619C13.2666 5.28957 13.5473 5.97231 13.5473 6.68421C13.5473 7.39611 13.2666 8.07885 12.7669 8.58223C12.2671 9.08562 11.5893 9.36842 10.8826 9.36842C10.1758 9.36842 9.49804 9.08562 8.99829 8.58223C8.49855 8.07885 8.2178 7.39611 8.2178 6.68421C8.2178 5.97231 8.49855 5.28957 8.99829 4.78619C9.49804 4.2828 10.1758 4 10.8826 4Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.313 11.566L18.253 3.62601L20.374 5.74701L18.96 7.16101L21.081 9.28201L17.546 12.818L15.425 10.697L12.435 13.687C12.9855 14.7463 13.1391 15.9676 12.8679 17.1302C12.5966 18.2928 11.9185 19.3201 10.9561 20.0264C9.99363 20.7327 8.81029 21.0715 7.61985 20.9816C6.42942 20.8916 5.31041 20.3789 4.46499 19.536C3.61914 18.6915 3.1038 17.572 3.01235 16.3802C2.92089 15.1885 3.25938 14.0034 3.96647 13.0397C4.67356 12.0761 5.70246 11.3976 6.86673 11.1272C8.031 10.8569 9.25361 11.0125 10.313 11.566ZM9.41399 17.414C9.60501 17.2295 9.75737 17.0088 9.86219 16.7648C9.96701 16.5208 10.0222 16.2584 10.0245 15.9928C10.0268 15.7273 9.97619 15.4639 9.87563 15.2181C9.77507 14.9723 9.62656 14.749 9.43878 14.5612C9.25099 14.3734 9.02769 14.2249 8.7819 14.1244C8.5361 14.0238 8.27274 13.9732 8.00718 13.9755C7.74163 13.9778 7.47919 14.033 7.23518 14.1378C6.99117 14.2426 6.77048 14.395 6.58599 14.586C6.22167 14.9632 6.02008 15.4684 6.02464 15.9928C6.0292 16.5172 6.23953 17.0188 6.61035 17.3896C6.98117 17.7605 7.48279 17.9708 8.00718 17.9754C8.53158 17.9799 9.03678 17.7783 9.41399 17.414Z" fill="currentColor" />
|
|
3
|
+
</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 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V20C22 20.2652 21.8946 20.5196 21.7071 20.7071C21.5196 20.8946 21.2652 21 21 21H3C2.73478 21 2.48043 20.8946 2.29289 20.7071C2.10536 20.5196 2 20.2652 2 20V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H7V1H9V3H15V1H17V3ZM20 11H4V19H20V11ZM15 5H9V7H7V5H4V9H20V5H17V7H15V5ZM6 13H8V15H6V13ZM11 13H13V15H11V13ZM16 13H18V15H16V13Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
File without changes
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M21 11.2222V19.1111C21 19.3469 20.9052 19.573 20.7364 19.7397C20.5676 19.9064 20.3387 20 20.1 20H3.9C3.66131 20 3.43239 19.9064 3.2636 19.7397C3.09482 19.573 3 19.3469 3 19.1111V11.2222H21ZM21 9.44444H3V5.88889C3 5.65314 3.09482 5.42705 3.2636 5.26035C3.43239 5.09365 3.66131 5 3.9 5H20.1C20.3387 5 20.5676 5.09365 20.7364 5.26035C20.9052 5.42705 21 5.65314 21 5.88889V9.44444ZM14.7 15.5556V17.3333H18.3V15.5556H14.7Z" fill="currentColor" />
|
|
3
|
+
</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 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V20C22 20.2652 21.8946 20.5196 21.7071 20.7071C21.5196 20.8946 21.2652 21 21 21H3C2.73478 21 2.48043 20.8946 2.29289 20.7071C2.10536 20.5196 2 20.2652 2 20V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H7V1H9V3H15V1H17V3ZM20 11H4V19H20V11ZM15 5H9V7H7V5H4V9H20V5H17V7H15V5ZM6 13H8V15H6V13ZM11 13H13V15H11V13ZM16 13H18V15H16V13Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
File without changes
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.39918 12.5H11.3267C12.3868 12.5 13.4035 12.9242 14.1531 13.6793C14.9027 14.4344 15.3239 15.4585 15.3239 16.5263H9.10517L9.10606 17.4211H16.2121V16.5263C16.2093 15.5743 15.9362 14.6429 15.4251 13.8421H17.9886C18.8283 13.8419 19.6508 14.0814 20.3608 14.5329C21.0707 14.9844 21.6391 15.6293 22 16.393C19.8993 19.1855 16.4981 21 12.6591 21C10.2066 21 8.12897 20.4721 6.44129 19.5461V11.2214C7.52195 11.3774 8.54243 11.8185 9.39918 12.5ZM5.55303 19.2105C5.55303 19.4478 5.45944 19.6754 5.29286 19.8432C5.12628 20.011 4.90035 20.1053 4.66477 20.1053H2.88826C2.65268 20.1053 2.42674 20.011 2.26016 19.8432C2.09358 19.6754 2 19.4478 2 19.2105V11.1579C2 10.9206 2.09358 10.693 2.26016 10.5252C2.42674 10.3574 2.65268 10.2632 2.88826 10.2632H4.66477C4.90035 10.2632 5.12628 10.3574 5.29286 10.5252C5.45944 10.693 5.55303 10.9206 5.55303 11.1579V19.2105ZM17.1004 6.68421C17.8071 6.68421 18.4849 6.96701 18.9847 7.4704C19.4844 7.97378 19.7651 8.65652 19.7651 9.36842C19.7651 10.0803 19.4844 10.7631 18.9847 11.2664C18.4849 11.7698 17.8071 12.0526 17.1004 12.0526C16.3936 12.0526 15.7158 11.7698 15.2161 11.2664C14.7164 10.7631 14.4356 10.0803 14.4356 9.36842C14.4356 8.65652 14.7164 7.97378 15.2161 7.4704C15.7158 6.96701 16.3936 6.68421 17.1004 6.68421ZM10.8826 4C11.5893 4 12.2671 4.2828 12.7669 4.78619C13.2666 5.28957 13.5473 5.97231 13.5473 6.68421C13.5473 7.39611 13.2666 8.07885 12.7669 8.58223C12.2671 9.08562 11.5893 9.36842 10.8826 9.36842C10.1758 9.36842 9.49804 9.08562 8.99829 8.58223C8.49855 8.07885 8.2178 7.39611 8.2178 6.68421C8.2178 5.97231 8.49855 5.28957 8.99829 4.78619C9.49804 4.2828 10.1758 4 10.8826 4Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.313 11.566L18.253 3.62601L20.374 5.74701L18.96 7.16101L21.081 9.28201L17.546 12.818L15.425 10.697L12.435 13.687C12.9855 14.7463 13.1391 15.9676 12.8679 17.1302C12.5966 18.2928 11.9185 19.3201 10.9561 20.0264C9.99363 20.7327 8.81029 21.0715 7.61985 20.9816C6.42942 20.8916 5.31041 20.3789 4.46499 19.536C3.61914 18.6915 3.1038 17.572 3.01235 16.3802C2.92089 15.1885 3.25938 14.0034 3.96647 13.0397C4.67356 12.0761 5.70246 11.3976 6.86673 11.1272C8.031 10.8569 9.25361 11.0125 10.313 11.566ZM9.41399 17.414C9.60501 17.2295 9.75737 17.0088 9.86219 16.7648C9.96701 16.5208 10.0222 16.2584 10.0245 15.9928C10.0268 15.7273 9.97619 15.4639 9.87563 15.2181C9.77507 14.9723 9.62656 14.749 9.43878 14.5612C9.25099 14.3734 9.02769 14.2249 8.7819 14.1244C8.5361 14.0238 8.27274 13.9732 8.00718 13.9755C7.74163 13.9778 7.47919 14.033 7.23518 14.1378C6.99117 14.2426 6.77048 14.395 6.58599 14.586C6.22167 14.9632 6.02008 15.4684 6.02464 15.9928C6.0292 16.5172 6.23953 17.0188 6.61035 17.3896C6.98117 17.7605 7.48279 17.9708 8.00718 17.9754C8.53158 17.9799 9.03678 17.7783 9.41399 17.414Z" fill="currentColor" />
|
|
3
|
+
</svg>
|
package/es/FormFilled.d.ts
DELETED
package/lib/FormFilled.d.ts
DELETED
package/src/FormFilled.tsx
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import Icon, { IconProps } from 'a-base-icon/lib/Icon';
|
|
3
|
-
|
|
4
|
-
function FormFilled(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="M13.24 15.62l-3.41.73a1.832 1.832 0 01-.4 0 1.75 1.75 0 01-1.26-.52 1.81 1.81 0 01-.47-1.66l.73-3.4a3.51 3.51 0 011-1.75l5.7-5.7h-9a4.14 4.14 0 00-4.19 4.19v10.35A4.14 4.14 0 006.08 22h10.36a4.14 4.14 0 004.14-4.14V9.07L15 14.66a3.5 3.5 0 01-1.76.96z"
|
|
9
|
-
fill="currentColor"
|
|
10
|
-
/>
|
|
11
|
-
<path
|
|
12
|
-
fillRule="evenodd"
|
|
13
|
-
clipRule="evenodd"
|
|
14
|
-
d="M16.77 3.11a3.22 3.22 0 014.51-.34 3.22 3.22 0 01-.34 4.56L14.27 14a2.48 2.48 0 01-1.27.64l-3.38.76a.77.77 0 01-.94-1l.73-3.4a2.55 2.55 0 01.69-1.22l6.67-6.67zm.41 4.66l2.24-2.24a.75.75 0 00-1.06-1.06l-2.24 2.24a.75.75 0 001.06 1.06z"
|
|
15
|
-
fill="currentColor"
|
|
16
|
-
/>
|
|
17
|
-
</svg>
|
|
18
|
-
);
|
|
19
|
-
|
|
20
|
-
return <Icon {...componentProps} component={IconNode} />;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
FormFilled.displayName = 'FormFilled';
|
|
24
|
-
export default FormFilled;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
3
|
-
d="M13.24 15.62L9.83 16.35C9.69707 16.3646 9.56294 16.3646 9.43 16.35C8.95699 16.3541 8.50246 16.1665 8.17 15.83C7.74274 15.3917 7.56592 14.7672 7.7 14.17L8.43 10.77C8.58508 10.1015 8.93275 9.49303 9.43 9.02001L15.13 3.32001H6.13C5.01465 3.30645 3.94101 3.74355 3.15228 4.53228C2.36354 5.32102 1.92645 6.39465 1.94 7.51001V17.86C1.94 20.1465 3.79354 22 6.08 22H16.44C18.7265 22 20.58 20.1465 20.58 17.86V9.07001L15 14.66C14.5195 15.1448 13.9077 15.4785 13.24 15.62Z"
|
|
4
|
-
fill="currentColor" />
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
-
d="M16.77 3.11001C17.9273 1.78227 19.9367 1.63079 21.28 2.77001C21.843 3.41829 22.1238 4.26458 22.0599 5.12084C21.9961 5.9771 21.5929 6.7724 20.94 7.33001L14.27 14C13.9182 14.3328 13.4767 14.5552 13 14.64L9.61998 15.4C9.34189 15.4811 9.04183 15.3992 8.84343 15.1882C8.64504 14.9771 8.58188 14.6726 8.67998 14.4L9.40998 11C9.52151 10.5369 9.76054 10.1142 10.1 9.78001L16.77 3.11001ZM17.18 7.77001L19.42 5.53001C19.6953 5.2345 19.6872 4.774 19.4016 4.48839C19.116 4.20278 18.6555 4.19465 18.36 4.47001L16.12 6.71001C15.8275 7.00283 15.8275 7.4772 16.12 7.77001C16.4128 8.06247 16.8872 8.06247 17.18 7.77001Z"
|
|
7
|
-
fill="currentColor" />
|
|
8
|
-
</svg>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
3
|
-
d="M13.24 15.62L9.83 16.35C9.69707 16.3646 9.56294 16.3646 9.43 16.35C8.95699 16.3541 8.50246 16.1665 8.17 15.83C7.74274 15.3917 7.56592 14.7672 7.7 14.17L8.43 10.77C8.58508 10.1015 8.93275 9.49303 9.43 9.02001L15.13 3.32001H6.13C5.01465 3.30645 3.94101 3.74355 3.15228 4.53228C2.36354 5.32102 1.92645 6.39465 1.94 7.51001V17.86C1.94 20.1465 3.79354 22 6.08 22H16.44C18.7265 22 20.58 20.1465 20.58 17.86V9.07001L15 14.66C14.5195 15.1448 13.9077 15.4785 13.24 15.62Z"
|
|
4
|
-
fill="currentColor" />
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
-
d="M16.77 3.11001C17.9273 1.78227 19.9367 1.63079 21.28 2.77001C21.843 3.41829 22.1238 4.26458 22.0599 5.12084C21.9961 5.9771 21.5929 6.7724 20.94 7.33001L14.27 14C13.9182 14.3328 13.4767 14.5552 13 14.64L9.61998 15.4C9.34189 15.4811 9.04183 15.3992 8.84343 15.1882C8.64504 14.9771 8.58188 14.6726 8.67998 14.4L9.40998 11C9.52151 10.5369 9.76054 10.1142 10.1 9.78001L16.77 3.11001ZM17.18 7.77001L19.42 5.53001C19.6953 5.2345 19.6872 4.774 19.4016 4.48839C19.116 4.20278 18.6555 4.19465 18.36 4.47001L16.12 6.71001C15.8275 7.00283 15.8275 7.4772 16.12 7.77001C16.4128 8.06247 16.8872 8.06247 17.18 7.77001Z"
|
|
7
|
-
fill="currentColor" />
|
|
8
|
-
</svg>
|