a-icons 1.1.43 → 1.1.44
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/FileBottomArrowOutlined.d.ts +7 -0
- package/es/FileBottomArrowOutlined.js +30 -0
- package/es/ShieldTickAsteriskFilled.d.ts +7 -0
- package/es/ShieldTickAsteriskFilled.js +53 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/FileBottomArrowOutlined.d.ts +7 -0
- package/lib/FileBottomArrowOutlined.js +73 -0
- package/lib/ShieldTickAsteriskFilled.d.ts +7 -0
- package/lib/ShieldTickAsteriskFilled.js +96 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +18 -4
- package/package.json +2 -2
- package/src/FileBottomArrowOutlined.tsx +18 -0
- package/src/ShieldTickAsteriskFilled.tsx +48 -0
- package/src/index.tsx +2 -0
- package/svgs/filled/shield-tick-asterisk-filled.svg +17 -0
- package/svgs/outlined/file-bottom-arrow-outlined.svg +5 -0
- package/tmpAllSvgs/file-bottom-arrow-outlined.svg +5 -0
- package/tmpAllSvgs/shield-tick-asterisk-filled.svg +17 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function FileBottomArrowOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace FileBottomArrowOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default FileBottomArrowOutlined;
|
|
@@ -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 FileBottomArrowOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M20 8.94a1.307 1.307 0 00-.06-.27v-.09a1.07 1.07 0 00-.19-.28l-6-6a1.071 1.071 0 00-.28-.19h-.1a1.099 1.099 0 00-.31-.11H7a3 3 0 00-3 3v14a3 3 0 003 3h10a3 3 0 003-3V9v-.06zm-6-3.53L16.59 8H15a1 1 0 01-1-1V5.41zM18 19a1 1 0 01-1 1H7a1 1 0 01-1-1V5a1 1 0 011-1h5v3a3 3 0 003 3h3v9zm-4.71-4.71l-.29.3V12a1 1 0 00-2 0v2.59l-.29-.3a1.004 1.004 0 10-1.42 1.42l2 2a1 1 0 00.33.21.94.94 0 00.76 0 1 1 0 00.33-.21l2-2a1.004 1.004 0 10-1.42-1.42z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
FileBottomArrowOutlined.displayName = 'FileBottomArrowOutlined';
|
|
30
|
+
export default FileBottomArrowOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ShieldTickAsteriskFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ShieldTickAsteriskFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ShieldTickAsteriskFilled;
|
|
@@ -0,0 +1,53 @@
|
|
|
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 ShieldTickAsteriskFilled(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: "M18.052 6.353L11.91 4.33a.59.59 0 00-.367 0L5.41 6.383a.546.546 0 00-.379.515l.015 6.287c.18 3.69 6.256 5.937 6.514 6.03a.582.582 0 00.4 0c.258-.095 6.323-2.37 6.488-6.084l-.015-6.263a.545.545 0 00-.381-.514z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M15.857 9.76l-5.21 4.383-2.504-2.371.759-.719 1.789 1.694L15.144 9l.713.76z",
|
|
27
|
+
fill: "inherit"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M10.273 18.558c-.287-1.432-.431-2.148-.076-2.681.355-.534 1.07-.677 2.5-.963l4.743-.95c1.43-.287 2.144-.43 2.677-.075.533.355.677 1.071.964 2.503.287 1.432.43 2.148.075 2.681-.355.534-1.07.677-2.5.963l-4.743.95c-1.43.287-2.144.43-2.677.075-.533-.355-.677-1.071-.963-2.503z",
|
|
30
|
+
fill: "#DC4946"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M13.238 16.332l.504-.108.647 3.024-.504.108-.647-3.024z",
|
|
33
|
+
fill: "currentColor"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M14.438 16.352l.432.28-1.681 2.596-.433-.28 1.681-2.596z",
|
|
36
|
+
fill: "currentColor"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "M12.654 16.733l-.28.433 2.596 1.681.28-.432-2.596-1.682zM17.361 15.3l.504-.107.647 3.025-.504.107-.647-3.024z",
|
|
39
|
+
fill: "currentColor"
|
|
40
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
41
|
+
d: "M18.56 15.321l.433.28-1.681 2.596-.433-.28 1.681-2.596z",
|
|
42
|
+
fill: "currentColor"
|
|
43
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
44
|
+
d: "M16.777 15.702l-.28.433 2.596 1.681.28-.432-2.596-1.682z",
|
|
45
|
+
fill: "currentColor"
|
|
46
|
+
}));
|
|
47
|
+
};
|
|
48
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
49
|
+
component: IconNode
|
|
50
|
+
}));
|
|
51
|
+
}
|
|
52
|
+
ShieldTickAsteriskFilled.displayName = 'ShieldTickAsteriskFilled';
|
|
53
|
+
export default ShieldTickAsteriskFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ export { default as EyeOutlined } from './EyeOutlined';
|
|
|
105
105
|
export { default as EyeSlashFilled } from './EyeSlashFilled';
|
|
106
106
|
export { default as EyeSlashOutlined } from './EyeSlashOutlined';
|
|
107
107
|
export { default as FacebookFilled } from './FacebookFilled';
|
|
108
|
+
export { default as FileBottomArrowOutlined } from './FileBottomArrowOutlined';
|
|
108
109
|
export { default as FileDownloadLineOutlined } from './FileDownloadLineOutlined';
|
|
109
110
|
export { default as FileFilled } from './FileFilled';
|
|
110
111
|
export { default as FileFinishFilled } from './FileFinishFilled';
|
|
@@ -229,6 +230,7 @@ export { default as ShareFilled } from './ShareFilled';
|
|
|
229
230
|
export { default as ShareOutlined } from './ShareOutlined';
|
|
230
231
|
export { default as ShieldFilled } from './ShieldFilled';
|
|
231
232
|
export { default as ShieldOutlined } from './ShieldOutlined';
|
|
233
|
+
export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled';
|
|
232
234
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
233
235
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
234
236
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
package/es/index.js
CHANGED
|
@@ -105,6 +105,7 @@ export { default as EyeOutlined } from './EyeOutlined';
|
|
|
105
105
|
export { default as EyeSlashFilled } from './EyeSlashFilled';
|
|
106
106
|
export { default as EyeSlashOutlined } from './EyeSlashOutlined';
|
|
107
107
|
export { default as FacebookFilled } from './FacebookFilled';
|
|
108
|
+
export { default as FileBottomArrowOutlined } from './FileBottomArrowOutlined';
|
|
108
109
|
export { default as FileDownloadLineOutlined } from './FileDownloadLineOutlined';
|
|
109
110
|
export { default as FileFilled } from './FileFilled';
|
|
110
111
|
export { default as FileFinishFilled } from './FileFinishFilled';
|
|
@@ -229,6 +230,7 @@ export { default as ShareFilled } from './ShareFilled';
|
|
|
229
230
|
export { default as ShareOutlined } from './ShareOutlined';
|
|
230
231
|
export { default as ShieldFilled } from './ShieldFilled';
|
|
231
232
|
export { default as ShieldOutlined } from './ShieldOutlined';
|
|
233
|
+
export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled';
|
|
232
234
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
233
235
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
234
236
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function FileBottomArrowOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace FileBottomArrowOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default FileBottomArrowOutlined;
|
|
@@ -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 FileBottomArrowOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("path", {
|
|
64
|
+
d: "M20 8.94a1.307 1.307 0 00-.06-.27v-.09a1.07 1.07 0 00-.19-.28l-6-6a1.071 1.071 0 00-.28-.19h-.1a1.099 1.099 0 00-.31-.11H7a3 3 0 00-3 3v14a3 3 0 003 3h10a3 3 0 003-3V9v-.06zm-6-3.53L16.59 8H15a1 1 0 01-1-1V5.41zM18 19a1 1 0 01-1 1H7a1 1 0 01-1-1V5a1 1 0 011-1h5v3a3 3 0 003 3h3v9zm-4.71-4.71l-.29.3V12a1 1 0 00-2 0v2.59l-.29-.3a1.004 1.004 0 10-1.42 1.42l2 2a1 1 0 00.33.21.94.94 0 00.76 0 1 1 0 00.33-.21l2-2a1.004 1.004 0 10-1.42-1.42z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
FileBottomArrowOutlined.displayName = 'FileBottomArrowOutlined';
|
|
73
|
+
exports["default"] = FileBottomArrowOutlined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function ShieldTickAsteriskFilled(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace ShieldTickAsteriskFilled {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default ShieldTickAsteriskFilled;
|
|
@@ -0,0 +1,96 @@
|
|
|
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 ShieldTickAsteriskFilled(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: "M18.052 6.353L11.91 4.33a.59.59 0 00-.367 0L5.41 6.383a.546.546 0 00-.379.515l.015 6.287c.18 3.69 6.256 5.937 6.514 6.03a.582.582 0 00.4 0c.258-.095 6.323-2.37 6.488-6.084l-.015-6.263a.545.545 0 00-.381-.514z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}), React.createElement("path", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
clipRule: "evenodd",
|
|
69
|
+
d: "M15.857 9.76l-5.21 4.383-2.504-2.371.759-.719 1.789 1.694L15.144 9l.713.76z",
|
|
70
|
+
fill: "inherit"
|
|
71
|
+
}), React.createElement("path", {
|
|
72
|
+
d: "M10.273 18.558c-.287-1.432-.431-2.148-.076-2.681.355-.534 1.07-.677 2.5-.963l4.743-.95c1.43-.287 2.144-.43 2.677-.075.533.355.677 1.071.964 2.503.287 1.432.43 2.148.075 2.681-.355.534-1.07.677-2.5.963l-4.743.95c-1.43.287-2.144.43-2.677.075-.533-.355-.677-1.071-.963-2.503z",
|
|
73
|
+
fill: "#DC4946"
|
|
74
|
+
}), React.createElement("path", {
|
|
75
|
+
d: "M13.238 16.332l.504-.108.647 3.024-.504.108-.647-3.024z",
|
|
76
|
+
fill: "currentColor"
|
|
77
|
+
}), React.createElement("path", {
|
|
78
|
+
d: "M14.438 16.352l.432.28-1.681 2.596-.433-.28 1.681-2.596z",
|
|
79
|
+
fill: "currentColor"
|
|
80
|
+
}), React.createElement("path", {
|
|
81
|
+
d: "M12.654 16.733l-.28.433 2.596 1.681.28-.432-2.596-1.682zM17.361 15.3l.504-.107.647 3.025-.504.107-.647-3.024z",
|
|
82
|
+
fill: "currentColor"
|
|
83
|
+
}), React.createElement("path", {
|
|
84
|
+
d: "M18.56 15.321l.433.28-1.681 2.596-.433-.28 1.681-2.596z",
|
|
85
|
+
fill: "currentColor"
|
|
86
|
+
}), React.createElement("path", {
|
|
87
|
+
d: "M16.777 15.702l-.28.433 2.596 1.681.28-.432-2.596-1.682z",
|
|
88
|
+
fill: "currentColor"
|
|
89
|
+
}));
|
|
90
|
+
};
|
|
91
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
92
|
+
component: IconNode
|
|
93
|
+
}));
|
|
94
|
+
}
|
|
95
|
+
ShieldTickAsteriskFilled.displayName = 'ShieldTickAsteriskFilled';
|
|
96
|
+
exports["default"] = ShieldTickAsteriskFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ export { default as EyeOutlined } from './EyeOutlined';
|
|
|
105
105
|
export { default as EyeSlashFilled } from './EyeSlashFilled';
|
|
106
106
|
export { default as EyeSlashOutlined } from './EyeSlashOutlined';
|
|
107
107
|
export { default as FacebookFilled } from './FacebookFilled';
|
|
108
|
+
export { default as FileBottomArrowOutlined } from './FileBottomArrowOutlined';
|
|
108
109
|
export { default as FileDownloadLineOutlined } from './FileDownloadLineOutlined';
|
|
109
110
|
export { default as FileFilled } from './FileFilled';
|
|
110
111
|
export { default as FileFinishFilled } from './FileFinishFilled';
|
|
@@ -229,6 +230,7 @@ export { default as ShareFilled } from './ShareFilled';
|
|
|
229
230
|
export { default as ShareOutlined } from './ShareOutlined';
|
|
230
231
|
export { default as ShieldFilled } from './ShieldFilled';
|
|
231
232
|
export { default as ShieldOutlined } from './ShieldOutlined';
|
|
233
|
+
export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled';
|
|
232
234
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
233
235
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
234
236
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
package/lib/index.js
CHANGED
|
@@ -10,10 +10,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.CirculationFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = 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
12
|
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.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChainOutlined = exports.DoubleChainFilled = 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 = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = void 0;
|
|
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 = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = void 0;
|
|
13
|
+
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 = exports.FileBottomArrowOutlined = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = void 0;
|
|
14
|
+
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 = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = void 0;
|
|
15
|
+
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.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkFilled = 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 = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = void 0;
|
|
17
17
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
18
18
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
19
19
|
enumerable: true,
|
|
@@ -763,6 +763,13 @@ Object.defineProperty(exports, "FacebookFilled", {
|
|
|
763
763
|
return __importDefault(FacebookFilled_1)["default"];
|
|
764
764
|
}
|
|
765
765
|
});
|
|
766
|
+
var FileBottomArrowOutlined_1 = require("./FileBottomArrowOutlined");
|
|
767
|
+
Object.defineProperty(exports, "FileBottomArrowOutlined", {
|
|
768
|
+
enumerable: true,
|
|
769
|
+
get: function get() {
|
|
770
|
+
return __importDefault(FileBottomArrowOutlined_1)["default"];
|
|
771
|
+
}
|
|
772
|
+
});
|
|
766
773
|
var FileDownloadLineOutlined_1 = require("./FileDownloadLineOutlined");
|
|
767
774
|
Object.defineProperty(exports, "FileDownloadLineOutlined", {
|
|
768
775
|
enumerable: true,
|
|
@@ -1631,6 +1638,13 @@ Object.defineProperty(exports, "ShieldOutlined", {
|
|
|
1631
1638
|
return __importDefault(ShieldOutlined_1)["default"];
|
|
1632
1639
|
}
|
|
1633
1640
|
});
|
|
1641
|
+
var ShieldTickAsteriskFilled_1 = require("./ShieldTickAsteriskFilled");
|
|
1642
|
+
Object.defineProperty(exports, "ShieldTickAsteriskFilled", {
|
|
1643
|
+
enumerable: true,
|
|
1644
|
+
get: function get() {
|
|
1645
|
+
return __importDefault(ShieldTickAsteriskFilled_1)["default"];
|
|
1646
|
+
}
|
|
1647
|
+
});
|
|
1634
1648
|
var ShopKeeperFilled_1 = require("./ShopKeeperFilled");
|
|
1635
1649
|
Object.defineProperty(exports, "ShopKeeperFilled", {
|
|
1636
1650
|
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.44",
|
|
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": "8a2878f26c03453b304c1a91d578a9fafe9a067b"
|
|
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 FileBottomArrowOutlined(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="M20 8.94a1.307 1.307 0 00-.06-.27v-.09a1.07 1.07 0 00-.19-.28l-6-6a1.071 1.071 0 00-.28-.19h-.1a1.099 1.099 0 00-.31-.11H7a3 3 0 00-3 3v14a3 3 0 003 3h10a3 3 0 003-3V9v-.06zm-6-3.53L16.59 8H15a1 1 0 01-1-1V5.41zM18 19a1 1 0 01-1 1H7a1 1 0 01-1-1V5a1 1 0 011-1h5v3a3 3 0 003 3h3v9zm-4.71-4.71l-.29.3V12a1 1 0 00-2 0v2.59l-.29-.3a1.004 1.004 0 10-1.42 1.42l2 2a1 1 0 00.33.21.94.94 0 00.76 0 1 1 0 00.33-.21l2-2a1.004 1.004 0 10-1.42-1.42z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
FileBottomArrowOutlined.displayName = 'FileBottomArrowOutlined';
|
|
18
|
+
export default FileBottomArrowOutlined;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function ShieldTickAsteriskFilled(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="M18.052 6.353L11.91 4.33a.59.59 0 00-.367 0L5.41 6.383a.546.546 0 00-.379.515l.015 6.287c.18 3.69 6.256 5.937 6.514 6.03a.582.582 0 00.4 0c.258-.095 6.323-2.37 6.488-6.084l-.015-6.263a.545.545 0 00-.381-.514z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
fillRule="evenodd"
|
|
13
|
+
clipRule="evenodd"
|
|
14
|
+
d="M15.857 9.76l-5.21 4.383-2.504-2.371.759-.719 1.789 1.694L15.144 9l.713.76z"
|
|
15
|
+
fill="inherit"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M10.273 18.558c-.287-1.432-.431-2.148-.076-2.681.355-.534 1.07-.677 2.5-.963l4.743-.95c1.43-.287 2.144-.43 2.677-.075.533.355.677 1.071.964 2.503.287 1.432.43 2.148.075 2.681-.355.534-1.07.677-2.5.963l-4.743.95c-1.43.287-2.144.43-2.677.075-.533-.355-.677-1.071-.963-2.503z"
|
|
19
|
+
fill="#DC4946"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
d="M13.238 16.332l.504-.108.647 3.024-.504.108-.647-3.024z"
|
|
23
|
+
fill="currentColor"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M14.438 16.352l.432.28-1.681 2.596-.433-.28 1.681-2.596z"
|
|
27
|
+
fill="currentColor"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M12.654 16.733l-.28.433 2.596 1.681.28-.432-2.596-1.682zM17.361 15.3l.504-.107.647 3.025-.504.107-.647-3.024z"
|
|
31
|
+
fill="currentColor"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
d="M18.56 15.321l.433.28-1.681 2.596-.433-.28 1.681-2.596z"
|
|
35
|
+
fill="currentColor"
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
d="M16.777 15.702l-.28.433 2.596 1.681.28-.432-2.596-1.682z"
|
|
39
|
+
fill="currentColor"
|
|
40
|
+
/>
|
|
41
|
+
</svg>
|
|
42
|
+
);
|
|
43
|
+
|
|
44
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
ShieldTickAsteriskFilled.displayName = 'ShieldTickAsteriskFilled';
|
|
48
|
+
export default ShieldTickAsteriskFilled;
|
package/src/index.tsx
CHANGED
|
@@ -105,6 +105,7 @@ export { default as EyeOutlined } from './EyeOutlined';
|
|
|
105
105
|
export { default as EyeSlashFilled } from './EyeSlashFilled';
|
|
106
106
|
export { default as EyeSlashOutlined } from './EyeSlashOutlined';
|
|
107
107
|
export { default as FacebookFilled } from './FacebookFilled';
|
|
108
|
+
export { default as FileBottomArrowOutlined } from './FileBottomArrowOutlined';
|
|
108
109
|
export { default as FileDownloadLineOutlined } from './FileDownloadLineOutlined';
|
|
109
110
|
export { default as FileFilled } from './FileFilled';
|
|
110
111
|
export { default as FileFinishFilled } from './FileFinishFilled';
|
|
@@ -229,6 +230,7 @@ export { default as ShareFilled } from './ShareFilled';
|
|
|
229
230
|
export { default as ShareOutlined } from './ShareOutlined';
|
|
230
231
|
export { default as ShieldFilled } from './ShieldFilled';
|
|
231
232
|
export { default as ShieldOutlined } from './ShieldOutlined';
|
|
233
|
+
export { default as ShieldTickAsteriskFilled } from './ShieldTickAsteriskFilled';
|
|
232
234
|
export { default as ShopKeeperFilled } from './ShopKeeperFilled';
|
|
233
235
|
export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
|
|
234
236
|
export { default as SignBankCardFilled } from './SignBankCardFilled';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M18.0516 6.35336L11.91 4.3299C11.7907 4.29106 11.6615 4.29136 11.5425 4.33074L5.41007 6.38222C5.18292 6.45828 5.03075 6.66513 5.03128 6.89711L5.04563 13.1842C5.2262 16.8734 11.3018 19.1207 11.5602 19.2145C11.6241 19.2378 11.6924 19.2496 11.7605 19.2494C11.829 19.2493 11.8968 19.2371 11.9607 19.2136C12.2182 19.1186 18.2829 16.8436 18.4476 13.1296L18.4333 6.86652C18.4328 6.63454 18.2797 6.42836 18.0516 6.35336Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M15.8569 9.75955L10.6476 14.1429L8.14258 11.7716L8.9017 11.053L10.6909 12.7467L15.1436 9L15.8569 9.75955Z"
|
|
7
|
+
fill="inherit" />
|
|
8
|
+
<path
|
|
9
|
+
d="M10.2725 18.5578C9.98551 17.1257 9.84203 16.4097 10.1972 15.8766C10.5523 15.3435 11.267 15.2003 12.6966 14.9138L17.4396 13.9635C18.8692 13.677 19.584 13.5338 20.117 13.8889C20.6501 14.244 20.7936 14.9601 21.0806 16.3922C21.3675 17.8243 21.511 18.5404 21.1559 19.0734C20.8008 19.6065 20.086 19.7497 18.6565 20.0362L13.9134 20.9866C12.4839 21.273 11.7691 21.4162 11.236 21.0611C10.7029 20.706 10.5594 19.99 10.2725 18.5578Z"
|
|
10
|
+
fill="#DC4946" />
|
|
11
|
+
<path d="M13.2383 16.3318L13.7424 16.224L14.3888 19.2485L13.8847 19.3563L13.2383 16.3318Z" fill="currentColor" />
|
|
12
|
+
<path d="M14.4375 16.3521L14.8701 16.6323L13.1886 19.228L12.756 18.9478L14.4375 16.3521Z" fill="currentColor" />
|
|
13
|
+
<path d="M12.6543 16.733L12.374 17.1657L14.9698 18.8472L15.25 18.4146L12.6543 16.733Z" fill="currentColor" />
|
|
14
|
+
<path d="M17.3613 15.3009L17.8654 15.1932L18.5118 18.2176L18.0078 18.3254L17.3613 15.3009Z" fill="currentColor" />
|
|
15
|
+
<path d="M18.5605 15.3212L18.9932 15.6014L17.3116 18.1972L16.879 17.9169L18.5605 15.3212Z" fill="currentColor" />
|
|
16
|
+
<path d="M16.7773 15.7021L16.4971 16.1348L19.0928 17.8163L19.3731 17.3837L16.7773 15.7021Z" fill="currentColor" />
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg clip="" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M20 8.94C19.9896 8.84813 19.9695 8.75763 19.94 8.67V8.58C19.8919 8.47718 19.8278 8.38267 19.75 8.3V8.3L13.75 2.3C13.6673 2.22222 13.5728 2.15808 13.47 2.11H13.37C13.2728 2.058 13.1683 2.02092 13.06 2H7C6.20435 2 5.44129 2.31607 4.87868 2.87868C4.31607 3.44129 4 4.20435 4 5V19C4 19.7956 4.31607 20.5587 4.87868 21.1213C5.44129 21.6839 6.20435 22 7 22H17C17.7956 22 18.5587 21.6839 19.1213 21.1213C19.6839 20.5587 20 19.7956 20 19V9C20 9 20 9 20 8.94ZM14 5.41L16.59 8H15C14.7348 8 14.4804 7.89464 14.2929 7.70711C14.1054 7.51957 14 7.26522 14 7V5.41ZM18 19C18 19.2652 17.8946 19.5196 17.7071 19.7071C17.5196 19.8946 17.2652 20 17 20H7C6.73478 20 6.48043 19.8946 6.29289 19.7071C6.10536 19.5196 6 19.2652 6 19V5C6 4.73478 6.10536 4.48043 6.29289 4.29289C6.48043 4.10536 6.73478 4 7 4H12V7C12 7.79565 12.3161 8.55871 12.8787 9.12132C13.4413 9.68393 14.2044 10 15 10H18V19ZM13.29 14.29L13 14.59V12C13 11.7348 12.8946 11.4804 12.7071 11.2929C12.5196 11.1054 12.2652 11 12 11C11.7348 11 11.4804 11.1054 11.2929 11.2929C11.1054 11.4804 11 11.7348 11 12V14.59L10.71 14.29C10.5217 14.1017 10.2663 13.9959 10 13.9959C9.7337 13.9959 9.4783 14.1017 9.29 14.29C9.1017 14.4783 8.99591 14.7337 8.99591 15C8.99591 15.2663 9.1017 15.5217 9.29 15.71L11.29 17.71C11.3851 17.801 11.4972 17.8724 11.62 17.92C11.7397 17.9729 11.8691 18.0002 12 18.0002C12.1309 18.0002 12.2603 17.9729 12.38 17.92C12.5028 17.8724 12.6149 17.801 12.71 17.71L14.71 15.71C14.8983 15.5217 15.0041 15.2663 15.0041 15C15.0041 14.7337 14.8983 14.4783 14.71 14.29C14.5217 14.1017 14.2663 13.9959 14 13.9959C13.7337 13.9959 13.4783 14.1017 13.29 14.29V14.29Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg clip="" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M20 8.94C19.9896 8.84813 19.9695 8.75763 19.94 8.67V8.58C19.8919 8.47718 19.8278 8.38267 19.75 8.3V8.3L13.75 2.3C13.6673 2.22222 13.5728 2.15808 13.47 2.11H13.37C13.2728 2.058 13.1683 2.02092 13.06 2H7C6.20435 2 5.44129 2.31607 4.87868 2.87868C4.31607 3.44129 4 4.20435 4 5V19C4 19.7956 4.31607 20.5587 4.87868 21.1213C5.44129 21.6839 6.20435 22 7 22H17C17.7956 22 18.5587 21.6839 19.1213 21.1213C19.6839 20.5587 20 19.7956 20 19V9C20 9 20 9 20 8.94ZM14 5.41L16.59 8H15C14.7348 8 14.4804 7.89464 14.2929 7.70711C14.1054 7.51957 14 7.26522 14 7V5.41ZM18 19C18 19.2652 17.8946 19.5196 17.7071 19.7071C17.5196 19.8946 17.2652 20 17 20H7C6.73478 20 6.48043 19.8946 6.29289 19.7071C6.10536 19.5196 6 19.2652 6 19V5C6 4.73478 6.10536 4.48043 6.29289 4.29289C6.48043 4.10536 6.73478 4 7 4H12V7C12 7.79565 12.3161 8.55871 12.8787 9.12132C13.4413 9.68393 14.2044 10 15 10H18V19ZM13.29 14.29L13 14.59V12C13 11.7348 12.8946 11.4804 12.7071 11.2929C12.5196 11.1054 12.2652 11 12 11C11.7348 11 11.4804 11.1054 11.2929 11.2929C11.1054 11.4804 11 11.7348 11 12V14.59L10.71 14.29C10.5217 14.1017 10.2663 13.9959 10 13.9959C9.7337 13.9959 9.4783 14.1017 9.29 14.29C9.1017 14.4783 8.99591 14.7337 8.99591 15C8.99591 15.2663 9.1017 15.5217 9.29 15.71L11.29 17.71C11.3851 17.801 11.4972 17.8724 11.62 17.92C11.7397 17.9729 11.8691 18.0002 12 18.0002C12.1309 18.0002 12.2603 17.9729 12.38 17.92C12.5028 17.8724 12.6149 17.801 12.71 17.71L14.71 15.71C14.8983 15.5217 15.0041 15.2663 15.0041 15C15.0041 14.7337 14.8983 14.4783 14.71 14.29C14.5217 14.1017 14.2663 13.9959 14 13.9959C13.7337 13.9959 13.4783 14.1017 13.29 14.29V14.29Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M18.0516 6.35336L11.91 4.3299C11.7907 4.29106 11.6615 4.29136 11.5425 4.33074L5.41007 6.38222C5.18292 6.45828 5.03075 6.66513 5.03128 6.89711L5.04563 13.1842C5.2262 16.8734 11.3018 19.1207 11.5602 19.2145C11.6241 19.2378 11.6924 19.2496 11.7605 19.2494C11.829 19.2493 11.8968 19.2371 11.9607 19.2136C12.2182 19.1186 18.2829 16.8436 18.4476 13.1296L18.4333 6.86652C18.4328 6.63454 18.2797 6.42836 18.0516 6.35336Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
6
|
+
d="M15.8569 9.75955L10.6476 14.1429L8.14258 11.7716L8.9017 11.053L10.6909 12.7467L15.1436 9L15.8569 9.75955Z"
|
|
7
|
+
fill="inherit" />
|
|
8
|
+
<path
|
|
9
|
+
d="M10.2725 18.5578C9.98551 17.1257 9.84203 16.4097 10.1972 15.8766C10.5523 15.3435 11.267 15.2003 12.6966 14.9138L17.4396 13.9635C18.8692 13.677 19.584 13.5338 20.117 13.8889C20.6501 14.244 20.7936 14.9601 21.0806 16.3922C21.3675 17.8243 21.511 18.5404 21.1559 19.0734C20.8008 19.6065 20.086 19.7497 18.6565 20.0362L13.9134 20.9866C12.4839 21.273 11.7691 21.4162 11.236 21.0611C10.7029 20.706 10.5594 19.99 10.2725 18.5578Z"
|
|
10
|
+
fill="#DC4946" />
|
|
11
|
+
<path d="M13.2383 16.3318L13.7424 16.224L14.3888 19.2485L13.8847 19.3563L13.2383 16.3318Z" fill="currentColor" />
|
|
12
|
+
<path d="M14.4375 16.3521L14.8701 16.6323L13.1886 19.228L12.756 18.9478L14.4375 16.3521Z" fill="currentColor" />
|
|
13
|
+
<path d="M12.6543 16.733L12.374 17.1657L14.9698 18.8472L15.25 18.4146L12.6543 16.733Z" fill="currentColor" />
|
|
14
|
+
<path d="M17.3613 15.3009L17.8654 15.1932L18.5118 18.2176L18.0078 18.3254L17.3613 15.3009Z" fill="currentColor" />
|
|
15
|
+
<path d="M18.5605 15.3212L18.9932 15.6014L17.3116 18.1972L16.879 17.9169L18.5605 15.3212Z" fill="currentColor" />
|
|
16
|
+
<path d="M16.7773 15.7021L16.4971 16.1348L19.0928 17.8163L19.3731 17.3837L16.7773 15.7021Z" fill="currentColor" />
|
|
17
|
+
</svg>
|