a-icons 1.2.44 → 1.2.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/MessageTipOutlined.d.ts +6 -0
- package/es/MessageTipOutlined.js +30 -0
- package/es/RetryFilled.d.ts +6 -0
- package/es/RetryFilled.js +35 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/MessageTipOutlined.d.ts +6 -0
- package/lib/MessageTipOutlined.js +73 -0
- package/lib/RetryFilled.d.ts +6 -0
- package/lib/RetryFilled.js +78 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +18 -4
- package/package.json +2 -2
- package/src/MessageTipOutlined.tsx +18 -0
- package/src/RetryFilled.tsx +21 -0
- package/src/index.tsx +2 -0
- package/svgs/filled/retry-filled.svg +4 -0
- package/svgs/outlined/message-tip-outlined.svg +5 -0
- package/tmpAllSvgs/message-tip-outlined.svg +5 -0
- package/tmpAllSvgs/retry-filled.svg +4 -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 MessageTipOutlined(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 13.2V7.8c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.856 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C4 6.361 4 6.942 4 7.8V14c0 .994.009 1.295.068 1.518a2 2 0 001.415 1.414c.222.06.523.068 1.517.068a1 1 0 011 1v1.919l2.06-1.649c.457-.364.79-.637 1.172-.832.321-.164.663-.284 1.016-.356.421-.086.852-.082 1.436-.082H16.2c.857 0 1.439 0 1.889-.037.438-.036.663-.101.82-.18a2 2 0 00.873-.875c.08-.156.145-.38.181-.82.037-.45.037-1.031.037-1.888zm-6.99-.2v2H11v-2h2.01zM11 6h2v5.5h-2V6zm11 7.2c0 .824.001 1.502-.044 2.052-.046.562-.144 1.08-.392 1.564a4.001 4.001 0 01-1.747 1.748c-.486.248-1.003.346-1.565.392-.55.045-1.228.044-2.052.044h-2.516c-.664 0-.858.005-1.034.041a1.997 1.997 0 00-.507.178c-.16.081-.315.2-.833.614l-2.385 1.908c-.193.154-.39.314-.564.428-.157.104-.462.29-.859.291a1.5 1.5 0 01-1.174-.565c-.247-.31-.293-.664-.31-.852-.02-.206-.018-.46-.018-.707v-1.347c-.392-.013-.728-.043-1.035-.126a4 4 0 01-2.828-2.828C1.992 15.495 2 14.865 2 14V7.8c0-.824 0-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C6.298 1.999 6.976 2 7.8 2h8.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.565.392a4 4 0 011.747 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052v5.4z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
MessageTipOutlined.displayName = 'MessageTipOutlined';
|
|
30
|
+
export default MessageTipOutlined;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
var __assign = this && this.__assign || function () {
|
|
2
|
+
__assign = Object.assign || function (t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) {
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
import * as React from 'react';
|
|
14
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
+
function RetryFilled(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M13 7a2 2 0 002 2h6v8.241c0 .805 0 1.47-.044 2.011-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3 18.711 3 18.046 3 17.242V6.758c0-.805 0-1.47.044-2.011.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.29 1 7.954 1 8.758 1H13v6zm2.545 8.608a3.568 3.568 0 01-5.33 2.685l.816-1.412a.3.3 0 00-.255-.45l-3.245-.053c-.196-.003-.342.18-.282.366a4.995 4.995 0 009.728-1.111l-1.432-.025zm-1.048-4.73a4.994 4.994 0 00-7.475 3.897l1.433.024a3.568 3.568 0 015.33-2.684l-.816 1.411a.3.3 0 00.255.45l3.245.054a.283.283 0 00.282-.366 4.977 4.977 0 00-2.254-2.785z",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M20.414 7H15V1.586L20.414 7z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}));
|
|
29
|
+
};
|
|
30
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
31
|
+
component: IconNode
|
|
32
|
+
}));
|
|
33
|
+
}
|
|
34
|
+
RetryFilled.displayName = 'RetryFilled';
|
|
35
|
+
export default RetryFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -241,6 +241,7 @@ export { default as MediumVolumeOutlined } from './MediumVolumeOutlined';
|
|
|
241
241
|
export { default as MenuListOutlined } from './MenuListOutlined';
|
|
242
242
|
export { default as MessageSmileOutlined } from './MessageSmileOutlined';
|
|
243
243
|
export { default as MessageSquareOutlined } from './MessageSquareOutlined';
|
|
244
|
+
export { default as MessageTipOutlined } from './MessageTipOutlined';
|
|
244
245
|
export { default as MinusSquareOutlined } from './MinusSquareOutlined';
|
|
245
246
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
246
247
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
@@ -311,6 +312,7 @@ export { default as RefreshFilled } from './RefreshFilled';
|
|
|
311
312
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
312
313
|
export { default as RefreshRightOutlined } from './RefreshRightOutlined';
|
|
313
314
|
export { default as ResourceOutlined } from './ResourceOutlined';
|
|
315
|
+
export { default as RetryFilled } from './RetryFilled';
|
|
314
316
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
315
317
|
export { default as RingDotsFilled } from './RingDotsFilled';
|
|
316
318
|
export { default as RiskControlFilled } from './RiskControlFilled';
|
package/es/index.js
CHANGED
|
@@ -241,6 +241,7 @@ export { default as MediumVolumeOutlined } from './MediumVolumeOutlined';
|
|
|
241
241
|
export { default as MenuListOutlined } from './MenuListOutlined';
|
|
242
242
|
export { default as MessageSmileOutlined } from './MessageSmileOutlined';
|
|
243
243
|
export { default as MessageSquareOutlined } from './MessageSquareOutlined';
|
|
244
|
+
export { default as MessageTipOutlined } from './MessageTipOutlined';
|
|
244
245
|
export { default as MinusSquareOutlined } from './MinusSquareOutlined';
|
|
245
246
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
246
247
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
@@ -311,6 +312,7 @@ export { default as RefreshFilled } from './RefreshFilled';
|
|
|
311
312
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
312
313
|
export { default as RefreshRightOutlined } from './RefreshRightOutlined';
|
|
313
314
|
export { default as ResourceOutlined } from './ResourceOutlined';
|
|
315
|
+
export { default as RetryFilled } from './RetryFilled';
|
|
314
316
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
315
317
|
export { default as RingDotsFilled } from './RingDotsFilled';
|
|
316
318
|
export { default as RiskControlFilled } from './RiskControlFilled';
|
|
@@ -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 MessageTipOutlined(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 13.2V7.8c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.856 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C4 6.361 4 6.942 4 7.8V14c0 .994.009 1.295.068 1.518a2 2 0 001.415 1.414c.222.06.523.068 1.517.068a1 1 0 011 1v1.919l2.06-1.649c.457-.364.79-.637 1.172-.832.321-.164.663-.284 1.016-.356.421-.086.852-.082 1.436-.082H16.2c.857 0 1.439 0 1.889-.037.438-.036.663-.101.82-.18a2 2 0 00.873-.875c.08-.156.145-.38.181-.82.037-.45.037-1.031.037-1.888zm-6.99-.2v2H11v-2h2.01zM11 6h2v5.5h-2V6zm11 7.2c0 .824.001 1.502-.044 2.052-.046.562-.144 1.08-.392 1.564a4.001 4.001 0 01-1.747 1.748c-.486.248-1.003.346-1.565.392-.55.045-1.228.044-2.052.044h-2.516c-.664 0-.858.005-1.034.041a1.997 1.997 0 00-.507.178c-.16.081-.315.2-.833.614l-2.385 1.908c-.193.154-.39.314-.564.428-.157.104-.462.29-.859.291a1.5 1.5 0 01-1.174-.565c-.247-.31-.293-.664-.31-.852-.02-.206-.018-.46-.018-.707v-1.347c-.392-.013-.728-.043-1.035-.126a4 4 0 01-2.828-2.828C1.992 15.495 2 14.865 2 14V7.8c0-.824 0-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C6.298 1.999 6.976 2 7.8 2h8.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.565.392a4 4 0 011.747 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052v5.4z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
MessageTipOutlined.displayName = 'MessageTipOutlined';
|
|
73
|
+
exports["default"] = MessageTipOutlined;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __assign = this && this.__assign || function () {
|
|
4
|
+
__assign = Object.assign || function (t) {
|
|
5
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
6
|
+
s = arguments[i];
|
|
7
|
+
for (var p in s) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
return __assign.apply(this, arguments);
|
|
14
|
+
};
|
|
15
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return m[k];
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
Object.defineProperty(o, k2, desc);
|
|
27
|
+
} : function (o, m, k, k2) {
|
|
28
|
+
if (k2 === undefined) k2 = k;
|
|
29
|
+
o[k2] = m[k];
|
|
30
|
+
});
|
|
31
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
32
|
+
Object.defineProperty(o, "default", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
value: v
|
|
35
|
+
});
|
|
36
|
+
} : function (o, v) {
|
|
37
|
+
o["default"] = v;
|
|
38
|
+
});
|
|
39
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
40
|
+
if (mod && mod.__esModule) return mod;
|
|
41
|
+
var result = {};
|
|
42
|
+
if (mod != null) for (var k in mod) {
|
|
43
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
44
|
+
}
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
49
|
+
return mod && mod.__esModule ? mod : {
|
|
50
|
+
"default": mod
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
Object.defineProperty(exports, "__esModule", {
|
|
54
|
+
value: true
|
|
55
|
+
});
|
|
56
|
+
var React = __importStar(require("react"));
|
|
57
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
+
function RetryFilled(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 24 24",
|
|
62
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
+
}, props), React.createElement("path", {
|
|
64
|
+
fillRule: "evenodd",
|
|
65
|
+
clipRule: "evenodd",
|
|
66
|
+
d: "M13 7a2 2 0 002 2h6v8.241c0 .805 0 1.47-.044 2.011-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3 18.711 3 18.046 3 17.242V6.758c0-.805 0-1.47.044-2.011.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.29 1 7.954 1 8.758 1H13v6zm2.545 8.608a3.568 3.568 0 01-5.33 2.685l.816-1.412a.3.3 0 00-.255-.45l-3.245-.053c-.196-.003-.342.18-.282.366a4.995 4.995 0 009.728-1.111l-1.432-.025zm-1.048-4.73a4.994 4.994 0 00-7.475 3.897l1.433.024a3.568 3.568 0 015.33-2.684l-.816 1.411a.3.3 0 00.255.45l3.245.054a.283.283 0 00.282-.366 4.977 4.977 0 00-2.254-2.785z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
d: "M20.414 7H15V1.586L20.414 7z",
|
|
70
|
+
fill: "currentColor"
|
|
71
|
+
}));
|
|
72
|
+
};
|
|
73
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
74
|
+
component: IconNode
|
|
75
|
+
}));
|
|
76
|
+
}
|
|
77
|
+
RetryFilled.displayName = 'RetryFilled';
|
|
78
|
+
exports["default"] = RetryFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -241,6 +241,7 @@ export { default as MediumVolumeOutlined } from './MediumVolumeOutlined';
|
|
|
241
241
|
export { default as MenuListOutlined } from './MenuListOutlined';
|
|
242
242
|
export { default as MessageSmileOutlined } from './MessageSmileOutlined';
|
|
243
243
|
export { default as MessageSquareOutlined } from './MessageSquareOutlined';
|
|
244
|
+
export { default as MessageTipOutlined } from './MessageTipOutlined';
|
|
244
245
|
export { default as MinusSquareOutlined } from './MinusSquareOutlined';
|
|
245
246
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled';
|
|
246
247
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
@@ -311,6 +312,7 @@ export { default as RefreshFilled } from './RefreshFilled';
|
|
|
311
312
|
export { default as RefreshOutlined } from './RefreshOutlined';
|
|
312
313
|
export { default as RefreshRightOutlined } from './RefreshRightOutlined';
|
|
313
314
|
export { default as ResourceOutlined } from './ResourceOutlined';
|
|
315
|
+
export { default as RetryFilled } from './RetryFilled';
|
|
314
316
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled';
|
|
315
317
|
export { default as RingDotsFilled } from './RingDotsFilled';
|
|
316
318
|
export { default as RiskControlFilled } from './RiskControlFilled';
|
package/lib/index.js
CHANGED
|
@@ -12,10 +12,10 @@ exports.CallFilled = exports.CallFailOutlined = exports.CalendarOutlined = expor
|
|
|
12
12
|
exports.ContinueInvestFilled = exports.ConfirmCircleSolidFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckboxMultipleBlankFilled = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CallRecordOutlined = exports.CallOutlined = void 0;
|
|
13
13
|
exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = void 0;
|
|
14
14
|
exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileTextOutlined = exports.FileShieldOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = void 0;
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = void 0;
|
|
15
|
+
exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailOutlined = exports.MailHollowFilled = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinkedinFilled = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InternalResourceOutlined = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IbFilled = exports.HouseOutlined = void 0;
|
|
16
|
+
exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PersonGroupFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFolderFilled = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchant = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = void 0;
|
|
17
|
+
exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = void 0;
|
|
18
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareAOutlined = exports.SphereOutlined = void 0;
|
|
19
19
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
20
20
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -1717,6 +1717,13 @@ Object.defineProperty(exports, "MessageSquareOutlined", {
|
|
|
1717
1717
|
return __importDefault(MessageSquareOutlined_1)["default"];
|
|
1718
1718
|
}
|
|
1719
1719
|
});
|
|
1720
|
+
var MessageTipOutlined_1 = require("./MessageTipOutlined");
|
|
1721
|
+
Object.defineProperty(exports, "MessageTipOutlined", {
|
|
1722
|
+
enumerable: true,
|
|
1723
|
+
get: function get() {
|
|
1724
|
+
return __importDefault(MessageTipOutlined_1)["default"];
|
|
1725
|
+
}
|
|
1726
|
+
});
|
|
1720
1727
|
var MinusSquareOutlined_1 = require("./MinusSquareOutlined");
|
|
1721
1728
|
Object.defineProperty(exports, "MinusSquareOutlined", {
|
|
1722
1729
|
enumerable: true,
|
|
@@ -2207,6 +2214,13 @@ Object.defineProperty(exports, "ResourceOutlined", {
|
|
|
2207
2214
|
return __importDefault(ResourceOutlined_1)["default"];
|
|
2208
2215
|
}
|
|
2209
2216
|
});
|
|
2217
|
+
var RetryFilled_1 = require("./RetryFilled");
|
|
2218
|
+
Object.defineProperty(exports, "RetryFilled", {
|
|
2219
|
+
enumerable: true,
|
|
2220
|
+
get: function get() {
|
|
2221
|
+
return __importDefault(RetryFilled_1)["default"];
|
|
2222
|
+
}
|
|
2223
|
+
});
|
|
2210
2224
|
var RetryRefreshFilled_1 = require("./RetryRefreshFilled");
|
|
2211
2225
|
Object.defineProperty(exports, "RetryRefreshFilled", {
|
|
2212
2226
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.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": "^3.2.49"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "d521c4004b1e1a0d677a91a154cf83f71ac4064c"
|
|
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 MessageTipOutlined(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 13.2V7.8c0-.857 0-1.439-.037-1.889-.036-.438-.101-.663-.18-.82a2 2 0 00-.875-.873c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.856 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 00-.873.875c-.08.156-.145.38-.18.82C4 6.361 4 6.942 4 7.8V14c0 .994.009 1.295.068 1.518a2 2 0 001.415 1.414c.222.06.523.068 1.517.068a1 1 0 011 1v1.919l2.06-1.649c.457-.364.79-.637 1.172-.832.321-.164.663-.284 1.016-.356.421-.086.852-.082 1.436-.082H16.2c.857 0 1.439 0 1.889-.037.438-.036.663-.101.82-.18a2 2 0 00.873-.875c.08-.156.145-.38.181-.82.037-.45.037-1.031.037-1.888zm-6.99-.2v2H11v-2h2.01zM11 6h2v5.5h-2V6zm11 7.2c0 .824.001 1.502-.044 2.052-.046.562-.144 1.08-.392 1.564a4.001 4.001 0 01-1.747 1.748c-.486.248-1.003.346-1.565.392-.55.045-1.228.044-2.052.044h-2.516c-.664 0-.858.005-1.034.041a1.997 1.997 0 00-.507.178c-.16.081-.315.2-.833.614l-2.385 1.908c-.193.154-.39.314-.564.428-.157.104-.462.29-.859.291a1.5 1.5 0 01-1.174-.565c-.247-.31-.293-.664-.31-.852-.02-.206-.018-.46-.018-.707v-1.347c-.392-.013-.728-.043-1.035-.126a4 4 0 01-2.828-2.828C1.992 15.495 2 14.865 2 14V7.8c0-.824 0-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C6.298 1.999 6.976 2 7.8 2h8.4c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.565.392a4 4 0 011.747 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052v5.4z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
MessageTipOutlined.displayName = 'MessageTipOutlined';
|
|
18
|
+
export default MessageTipOutlined;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function RetryFilled(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M13 7a2 2 0 002 2h6v8.241c0 .805 0 1.47-.044 2.011-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 01-1.748 1.748c-.485.248-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H8.758c-.805 0-1.47 0-2.011-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 01-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C3 18.711 3 18.046 3 17.242V6.758c0-.805 0-1.47.044-2.011.046-.562.144-1.08.392-1.564a4.001 4.001 0 011.748-1.748c.485-.248 1.002-.346 1.564-.392C7.29 1 7.954 1 8.758 1H13v6zm2.545 8.608a3.568 3.568 0 01-5.33 2.685l.816-1.412a.3.3 0 00-.255-.45l-3.245-.053c-.196-.003-.342.18-.282.366a4.995 4.995 0 009.728-1.111l-1.432-.025zm-1.048-4.73a4.994 4.994 0 00-7.475 3.897l1.433.024a3.568 3.568 0 015.33-2.684l-.816 1.411a.3.3 0 00.255.45l3.245.054a.283.283 0 00.282-.366 4.977 4.977 0 00-2.254-2.785z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path d="M20.414 7H15V1.586L20.414 7z" fill="currentColor" />
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
RetryFilled.displayName = 'RetryFilled';
|
|
21
|
+
export default RetryFilled;
|
package/src/index.tsx
CHANGED
|
@@ -241,6 +241,7 @@ export { default as MediumVolumeOutlined } from './MediumVolumeOutlined'
|
|
|
241
241
|
export { default as MenuListOutlined } from './MenuListOutlined'
|
|
242
242
|
export { default as MessageSmileOutlined } from './MessageSmileOutlined'
|
|
243
243
|
export { default as MessageSquareOutlined } from './MessageSquareOutlined'
|
|
244
|
+
export { default as MessageTipOutlined } from './MessageTipOutlined'
|
|
244
245
|
export { default as MinusSquareOutlined } from './MinusSquareOutlined'
|
|
245
246
|
export { default as MoneySymbolFilled } from './MoneySymbolFilled'
|
|
246
247
|
export { default as MoneySymbolOutlined } from './MoneySymbolOutlined'
|
|
@@ -311,6 +312,7 @@ export { default as RefreshFilled } from './RefreshFilled'
|
|
|
311
312
|
export { default as RefreshOutlined } from './RefreshOutlined'
|
|
312
313
|
export { default as RefreshRightOutlined } from './RefreshRightOutlined'
|
|
313
314
|
export { default as ResourceOutlined } from './ResourceOutlined'
|
|
315
|
+
export { default as RetryFilled } from './RetryFilled'
|
|
314
316
|
export { default as RetryRefreshFilled } from './RetryRefreshFilled'
|
|
315
317
|
export { default as RingDotsFilled } from './RingDotsFilled'
|
|
316
318
|
export { default as RiskControlFilled } from './RiskControlFilled'
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 7C13 8.10457 13.8954 9 15 9H21V17.2412C21 18.0462 21.0003 18.7108 20.9561 19.252C20.9101 19.814 20.8117 20.3311 20.5645 20.8164C20.181 21.5689 19.5689 22.181 18.8164 22.5645C18.3311 22.8117 17.814 22.9101 17.252 22.9561C16.7108 23.0003 16.0462 23 15.2412 23H8.75879C7.95383 23 7.28924 23.0003 6.74805 22.9561C6.18599 22.9101 5.6689 22.8117 5.18359 22.5645C4.43109 22.181 3.81902 21.5689 3.43555 20.8164C3.18827 20.3311 3.08987 19.814 3.04395 19.252C2.99973 18.7108 2.99999 18.0462 3 17.2412V6.75879C2.99999 5.95385 2.99973 5.28923 3.04395 4.74805C3.08988 4.18599 3.18827 3.6689 3.43555 3.18359C3.81902 2.43109 4.43109 1.81902 5.18359 1.43555C5.6689 1.18827 6.18599 1.08987 6.74805 1.04395C7.28923 0.99973 7.95385 0.999989 8.75879 1H13V7ZM15.5449 15.6084C15.4913 16.0803 15.3424 16.5497 15.0898 16.9873C14.1047 18.6936 11.9221 19.2781 10.2158 18.293L11.0313 16.8809C11.1455 16.6828 11.0051 16.4354 10.7764 16.4316L7.53125 16.3779C7.33516 16.3747 7.18861 16.5576 7.24902 16.7441C7.61641 17.8785 8.389 18.8862 9.50293 19.5293C11.8916 20.9083 14.946 20.0898 16.3252 17.7012C16.7036 17.0457 16.917 16.3401 16.9775 15.6328L15.5449 15.6084ZM14.4971 10.8789C12.1083 9.49974 9.05398 10.3182 7.67481 12.707C7.29644 13.3625 7.08291 14.0681 7.02246 14.7754L8.45508 14.7988C8.50874 14.3268 8.65748 13.8576 8.91016 13.4199C9.89527 11.7137 12.0779 11.1291 13.7842 12.1143L12.9688 13.5264C12.8544 13.7245 12.9949 13.9728 13.2236 13.9766L16.4688 14.0303C16.6647 14.0335 16.8111 13.8505 16.751 13.6641C16.3836 12.5296 15.611 11.5221 14.4971 10.8789Z" fill="currentColor"/>
|
|
3
|
+
<path d="M20.4141 7H15V1.58594L20.4141 7Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M20.0001 13.2002V7.79981C20.0001 6.94342 19.9997 6.36117 19.963 5.91113C19.9272 5.47272 19.862 5.2482 19.7823 5.0918C19.5906 4.71555 19.2845 4.40951 18.9083 4.21778C18.7519 4.13809 18.5274 4.07293 18.089 4.03711C17.6389 4.00035 17.0567 4 16.2003 4H7.79989C6.9435 4 6.36125 4.00035 5.91122 4.03711C5.4728 4.07293 5.24828 4.13809 5.09188 4.21778C4.71563 4.40951 4.40959 4.71555 4.21786 5.0918C4.13817 5.2482 4.07301 5.47272 4.03719 5.91113C4.00043 6.36117 4.00008 6.94342 4.00008 7.79981V14C4.00008 14.9944 4.00888 15.2953 4.06844 15.5176C4.25338 16.2078 4.79232 16.7467 5.48251 16.9316C5.70478 16.9912 6.00574 17 7.00008 17C7.55237 17 8.00008 17.4477 8.00008 18V19.9189L10.0606 18.2705C10.5165 17.9058 10.8499 17.633 11.2325 17.4375C11.5534 17.2736 11.8952 17.1545 12.2481 17.082C12.669 16.9957 13.0998 17 13.6837 17H16.2003C17.0567 17 17.6389 16.9997 18.089 16.9629C18.5274 16.9271 18.7519 16.8619 18.9083 16.7822C19.2845 16.5905 19.5906 16.2845 19.7823 15.9082C19.862 15.7518 19.9272 15.5273 19.963 15.0889C19.9997 14.6388 20.0001 14.0566 20.0001 13.2002ZM13.0098 13V15H11.0001V13H13.0098ZM11.0001 6H13.0001V11.5H11.0001V6ZM22.0001 13.2002C22.0001 14.0237 22.0011 14.7016 21.9561 15.252C21.9102 15.814 21.8118 16.3311 21.5645 16.8164C21.1811 17.5689 20.569 18.181 19.8165 18.5645C19.3312 18.8117 18.8141 18.9101 18.252 18.9561C17.7017 19.001 17.0238 19 16.2003 19H13.6837C13.0198 19 12.8264 19.0049 12.6505 19.041C12.474 19.0772 12.3031 19.1368 12.1427 19.2188C11.9827 19.3005 11.8282 19.4181 11.3097 19.833L8.92489 21.7412C8.73242 21.8952 8.53429 22.0547 8.36141 22.1689C8.20403 22.273 7.89886 22.4594 7.50204 22.46C7.04533 22.4605 6.61319 22.2524 6.32821 21.8955C6.08074 21.5855 6.03476 21.231 6.01766 21.043C5.99893 20.8367 6.00008 20.5823 6.00008 20.3359V18.9893C5.60831 18.9763 5.27237 18.9457 4.96493 18.8633C3.58456 18.4934 2.50667 17.4155 2.1368 16.0352C1.99192 15.4944 2.00008 14.8656 2.00008 14V7.79981C2.00008 6.97632 1.99906 6.29843 2.04403 5.74805C2.08996 5.18599 2.18836 4.6689 2.43563 4.1836C2.8191 3.43109 3.43117 2.81902 4.18368 2.43555C4.66898 2.18827 5.18607 2.08988 5.74813 2.04395C6.29851 1.99898 6.9764 2 7.79989 2H16.2003C17.0238 2 17.7017 1.99898 18.252 2.04395C18.8141 2.08988 19.3312 2.18827 19.8165 2.43555C20.569 2.81902 21.1811 3.43109 21.5645 4.1836C21.8118 4.6689 21.9102 5.18599 21.9561 5.74805C22.0011 6.29843 22.0001 6.97632 22.0001 7.79981V13.2002Z"
|
|
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="M20.0001 13.2002V7.79981C20.0001 6.94342 19.9997 6.36117 19.963 5.91113C19.9272 5.47272 19.862 5.2482 19.7823 5.0918C19.5906 4.71555 19.2845 4.40951 18.9083 4.21778C18.7519 4.13809 18.5274 4.07293 18.089 4.03711C17.6389 4.00035 17.0567 4 16.2003 4H7.79989C6.9435 4 6.36125 4.00035 5.91122 4.03711C5.4728 4.07293 5.24828 4.13809 5.09188 4.21778C4.71563 4.40951 4.40959 4.71555 4.21786 5.0918C4.13817 5.2482 4.07301 5.47272 4.03719 5.91113C4.00043 6.36117 4.00008 6.94342 4.00008 7.79981V14C4.00008 14.9944 4.00888 15.2953 4.06844 15.5176C4.25338 16.2078 4.79232 16.7467 5.48251 16.9316C5.70478 16.9912 6.00574 17 7.00008 17C7.55237 17 8.00008 17.4477 8.00008 18V19.9189L10.0606 18.2705C10.5165 17.9058 10.8499 17.633 11.2325 17.4375C11.5534 17.2736 11.8952 17.1545 12.2481 17.082C12.669 16.9957 13.0998 17 13.6837 17H16.2003C17.0567 17 17.6389 16.9997 18.089 16.9629C18.5274 16.9271 18.7519 16.8619 18.9083 16.7822C19.2845 16.5905 19.5906 16.2845 19.7823 15.9082C19.862 15.7518 19.9272 15.5273 19.963 15.0889C19.9997 14.6388 20.0001 14.0566 20.0001 13.2002ZM13.0098 13V15H11.0001V13H13.0098ZM11.0001 6H13.0001V11.5H11.0001V6ZM22.0001 13.2002C22.0001 14.0237 22.0011 14.7016 21.9561 15.252C21.9102 15.814 21.8118 16.3311 21.5645 16.8164C21.1811 17.5689 20.569 18.181 19.8165 18.5645C19.3312 18.8117 18.8141 18.9101 18.252 18.9561C17.7017 19.001 17.0238 19 16.2003 19H13.6837C13.0198 19 12.8264 19.0049 12.6505 19.041C12.474 19.0772 12.3031 19.1368 12.1427 19.2188C11.9827 19.3005 11.8282 19.4181 11.3097 19.833L8.92489 21.7412C8.73242 21.8952 8.53429 22.0547 8.36141 22.1689C8.20403 22.273 7.89886 22.4594 7.50204 22.46C7.04533 22.4605 6.61319 22.2524 6.32821 21.8955C6.08074 21.5855 6.03476 21.231 6.01766 21.043C5.99893 20.8367 6.00008 20.5823 6.00008 20.3359V18.9893C5.60831 18.9763 5.27237 18.9457 4.96493 18.8633C3.58456 18.4934 2.50667 17.4155 2.1368 16.0352C1.99192 15.4944 2.00008 14.8656 2.00008 14V7.79981C2.00008 6.97632 1.99906 6.29843 2.04403 5.74805C2.08996 5.18599 2.18836 4.6689 2.43563 4.1836C2.8191 3.43109 3.43117 2.81902 4.18368 2.43555C4.66898 2.18827 5.18607 2.08988 5.74813 2.04395C6.29851 1.99898 6.9764 2 7.79989 2H16.2003C17.0238 2 17.7017 1.99898 18.252 2.04395C18.8141 2.08988 19.3312 2.18827 19.8165 2.43555C20.569 2.81902 21.1811 3.43109 21.5645 4.1836C21.8118 4.6689 21.9102 5.18599 21.9561 5.74805C22.0011 6.29843 22.0001 6.97632 22.0001 7.79981V13.2002Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 7C13 8.10457 13.8954 9 15 9H21V17.2412C21 18.0462 21.0003 18.7108 20.9561 19.252C20.9101 19.814 20.8117 20.3311 20.5645 20.8164C20.181 21.5689 19.5689 22.181 18.8164 22.5645C18.3311 22.8117 17.814 22.9101 17.252 22.9561C16.7108 23.0003 16.0462 23 15.2412 23H8.75879C7.95383 23 7.28924 23.0003 6.74805 22.9561C6.18599 22.9101 5.6689 22.8117 5.18359 22.5645C4.43109 22.181 3.81902 21.5689 3.43555 20.8164C3.18827 20.3311 3.08987 19.814 3.04395 19.252C2.99973 18.7108 2.99999 18.0462 3 17.2412V6.75879C2.99999 5.95385 2.99973 5.28923 3.04395 4.74805C3.08988 4.18599 3.18827 3.6689 3.43555 3.18359C3.81902 2.43109 4.43109 1.81902 5.18359 1.43555C5.6689 1.18827 6.18599 1.08987 6.74805 1.04395C7.28923 0.99973 7.95385 0.999989 8.75879 1H13V7ZM15.5449 15.6084C15.4913 16.0803 15.3424 16.5497 15.0898 16.9873C14.1047 18.6936 11.9221 19.2781 10.2158 18.293L11.0313 16.8809C11.1455 16.6828 11.0051 16.4354 10.7764 16.4316L7.53125 16.3779C7.33516 16.3747 7.18861 16.5576 7.24902 16.7441C7.61641 17.8785 8.389 18.8862 9.50293 19.5293C11.8916 20.9083 14.946 20.0898 16.3252 17.7012C16.7036 17.0457 16.917 16.3401 16.9775 15.6328L15.5449 15.6084ZM14.4971 10.8789C12.1083 9.49974 9.05398 10.3182 7.67481 12.707C7.29644 13.3625 7.08291 14.0681 7.02246 14.7754L8.45508 14.7988C8.50874 14.3268 8.65748 13.8576 8.91016 13.4199C9.89527 11.7137 12.0779 11.1291 13.7842 12.1143L12.9688 13.5264C12.8544 13.7245 12.9949 13.9728 13.2236 13.9766L16.4688 14.0303C16.6647 14.0335 16.8111 13.8505 16.751 13.6641C16.3836 12.5296 15.611 11.5221 14.4971 10.8789Z" fill="currentColor"/>
|
|
3
|
+
<path d="M20.4141 7H15V1.58594L20.4141 7Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|