a-icons 1.1.39 → 1.1.40
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/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 +3 -0
- package/es/index.js +3 -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 +3 -0
- package/lib/index.js +24 -3
- package/package.json +2 -2
- package/src/RectTwoBarFilled.tsx +18 -0
- package/src/RectTwoBarOutlined.tsx +28 -0
- package/src/TriangleArrowDownFilled.tsx +18 -0
- package/src/index.tsx +3 -0
- package/svgs/filled/rect-two-bar-filled.svg +5 -0
- package/svgs/filled/triangle-arrow-down-filled.svg +5 -0
- package/svgs/outlined/rect-two-bar-outlined.svg +10 -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,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
|
@@ -193,6 +193,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
193
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
194
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
195
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
196
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
197
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
198
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
199
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
200
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +245,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
245
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
246
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
247
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
248
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
249
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
250
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
251
|
export { default as UpFilled } from './UpFilled';
|
package/es/index.js
CHANGED
|
@@ -193,6 +193,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
193
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
194
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
195
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
196
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
197
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
198
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
199
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
200
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +245,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
245
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
246
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
247
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
248
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
249
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
250
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
251
|
export { default as UpFilled } from './UpFilled';
|
|
@@ -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
|
@@ -193,6 +193,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
193
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
194
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
195
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
196
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
197
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
198
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
199
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
200
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +245,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
245
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
246
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
247
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
248
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
249
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
250
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
251
|
export { default as UpFilled } from './UpFilled';
|
package/lib/index.js
CHANGED
|
@@ -11,9 +11,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
11
11
|
exports.ClockOutline = 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.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.FileFilled = exports.FileDownloadLineOutlined = 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.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 = void 0;
|
|
13
13
|
exports.MailOutlined = exports.MailFilled = 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 = void 0;
|
|
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;
|
|
14
|
+
exports.RefreshOutlined = exports.RefreshFilled = 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 = void 0;
|
|
15
|
+
exports.UnlockFilled = exports.TwitterFilled = 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 = 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 = void 0;
|
|
17
17
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
18
18
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
19
19
|
enumerable: true,
|
|
@@ -1379,6 +1379,20 @@ Object.defineProperty(exports, "RectForkFilled", {
|
|
|
1379
1379
|
return __importDefault(RectForkFilled_1)["default"];
|
|
1380
1380
|
}
|
|
1381
1381
|
});
|
|
1382
|
+
var RectTwoBarFilled_1 = require("./RectTwoBarFilled");
|
|
1383
|
+
Object.defineProperty(exports, "RectTwoBarFilled", {
|
|
1384
|
+
enumerable: true,
|
|
1385
|
+
get: function get() {
|
|
1386
|
+
return __importDefault(RectTwoBarFilled_1)["default"];
|
|
1387
|
+
}
|
|
1388
|
+
});
|
|
1389
|
+
var RectTwoBarOutlined_1 = require("./RectTwoBarOutlined");
|
|
1390
|
+
Object.defineProperty(exports, "RectTwoBarOutlined", {
|
|
1391
|
+
enumerable: true,
|
|
1392
|
+
get: function get() {
|
|
1393
|
+
return __importDefault(RectTwoBarOutlined_1)["default"];
|
|
1394
|
+
}
|
|
1395
|
+
});
|
|
1382
1396
|
var RectsPlusFilled_1 = require("./RectsPlusFilled");
|
|
1383
1397
|
Object.defineProperty(exports, "RectsPlusFilled", {
|
|
1384
1398
|
enumerable: true,
|
|
@@ -1729,6 +1743,13 @@ Object.defineProperty(exports, "TreeOutlined", {
|
|
|
1729
1743
|
return __importDefault(TreeOutlined_1)["default"];
|
|
1730
1744
|
}
|
|
1731
1745
|
});
|
|
1746
|
+
var TriangleArrowDownFilled_1 = require("./TriangleArrowDownFilled");
|
|
1747
|
+
Object.defineProperty(exports, "TriangleArrowDownFilled", {
|
|
1748
|
+
enumerable: true,
|
|
1749
|
+
get: function get() {
|
|
1750
|
+
return __importDefault(TriangleArrowDownFilled_1)["default"];
|
|
1751
|
+
}
|
|
1752
|
+
});
|
|
1732
1753
|
var TwitterFilled_1 = require("./TwitterFilled");
|
|
1733
1754
|
Object.defineProperty(exports, "TwitterFilled", {
|
|
1734
1755
|
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.40",
|
|
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": "0e7b1b743743de598529e8d83fbbb4c8875d59be"
|
|
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 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
|
@@ -193,6 +193,8 @@ export { default as ReceiptFilled } from './ReceiptFilled';
|
|
|
193
193
|
export { default as ReceiptOutlined } from './ReceiptOutlined';
|
|
194
194
|
export { default as RectBoardOutlined } from './RectBoardOutlined';
|
|
195
195
|
export { default as RectForkFilled } from './RectForkFilled';
|
|
196
|
+
export { default as RectTwoBarFilled } from './RectTwoBarFilled';
|
|
197
|
+
export { default as RectTwoBarOutlined } from './RectTwoBarOutlined';
|
|
196
198
|
export { default as RectsPlusFilled } from './RectsPlusFilled';
|
|
197
199
|
export { default as RefreshFilled } from './RefreshFilled';
|
|
198
200
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
@@ -243,6 +245,7 @@ export { default as TrashOutlined } from './TrashOutlined';
|
|
|
243
245
|
export { default as TreeCircleFilled } from './TreeCircleFilled';
|
|
244
246
|
export { default as TreeFilled } from './TreeFilled';
|
|
245
247
|
export { default as TreeOutlined } from './TreeOutlined';
|
|
248
|
+
export { default as TriangleArrowDownFilled } from './TriangleArrowDownFilled';
|
|
246
249
|
export { default as TwitterFilled } from './TwitterFilled';
|
|
247
250
|
export { default as UnlockFilled } from './UnlockFilled';
|
|
248
251
|
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,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="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>
|