a-icons 1.2.6 → 1.2.8
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/CallFilled.d.ts +6 -0
- package/es/CallFilled.js +37 -0
- package/es/PersonLeftArrowFilled.d.ts +6 -0
- package/es/PersonLeftArrowFilled.js +30 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +2 -0
- package/lib/CallFilled.d.ts +6 -0
- package/lib/CallFilled.js +80 -0
- package/lib/PersonLeftArrowFilled.d.ts +6 -0
- package/lib/PersonLeftArrowFilled.js +73 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +21 -7
- package/package.json +2 -2
- package/src/CallFilled.tsx +21 -0
- package/src/PersonLeftArrowFilled.tsx +18 -0
- package/src/index.tsx +2 -0
- package/svgs/filled/call-filled.svg +6 -0
- package/svgs/filled/person-left-arrow-filled.svg +12 -0
- package/tmpAllSvgs/call-filled.svg +6 -0
- package/tmpAllSvgs/person-left-arrow-filled.svg +12 -0
package/es/CallFilled.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
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 CallFilled(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("rect", {
|
|
21
|
+
width: "100%",
|
|
22
|
+
height: "100%",
|
|
23
|
+
rx: 12,
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd",
|
|
28
|
+
d: "M8.604 6.441a.667.667 0 00-.602 0c-.071.036-.16.113-.551.505l-.106.105c-.373.373-.474.481-.554.624a1.602 1.602 0 00-.171.657c0 .17.025.272.136.66a12.026 12.026 0 003.079 5.233 12.026 12.026 0 005.233 3.08c.388.11.49.134.66.135.19 0 .49-.078.656-.17.144-.081.252-.182.625-.555l.105-.106c.392-.39.468-.48.505-.55a.667.667 0 000-.603c-.037-.07-.113-.16-.505-.55l.472-.472-.472.471-.13-.13c-.257-.257-.315-.31-.358-.338a.667.667 0 00-.727 0c-.044.029-.102.081-.359.338l-.016.016c-.06.06-.135.136-.226.201l-.388-.542.388.542a1.363 1.363 0 01-1.15.196c-.106-.031-.194-.073-.263-.106l-.016-.008a10.401 10.401 0 01-2.856-2.027 10.401 10.401 0 01-2.035-2.872 1.653 1.653 0 01-.106-.264l.64-.186-.64.186a1.363 1.363 0 01.196-1.149c.065-.09.14-.167.201-.226l.016-.016c.257-.257.31-.315.338-.359a.667.667 0 000-.727c-.029-.043-.081-.101-.338-.358l-.13-.13c-.392-.392-.48-.469-.551-.505zM7.4 5.251a2 2 0 011.805 0c.289.147.54.398.829.688l.063.064.13.13.043.042c.19.19.355.355.47.533l-.558.363.559-.363a2 2 0 010 2.18c-.116.178-.28.342-.471.533l-.043.042a4.002 4.002 0 00-.072.076v.004a1.442 1.442 0 00.033.07 9.07 9.07 0 001.768 2.491 9.068 9.068 0 002.49 1.768l-.288.601.288-.601a6.5 6.5 0 00.071.034l.004-.001h.004l.072-.072.042-.043c.191-.19.355-.355.533-.47a2 2 0 012.18 0c.178.115.342.28.533.47l.042.043-.471.471.471-.471.13.13.064.063c.29.29.541.54.687.829a2 2 0 010 1.805c-.146.288-.397.539-.687.828l-.064.064-.105.105-.045.046c-.31.31-.548.548-.87.729a2.909 2.909 0 01-1.313.341c-.368 0-.637-.077-.983-.175l-.037-.011a13.36 13.36 0 01-5.812-3.419 13.359 13.359 0 01-3.419-5.812l-.01-.037c-.099-.346-.175-.615-.176-.983a2.91 2.91 0 01.341-1.314c.18-.32.419-.559.73-.869a95 95 0 00.045-.045l.105-.105.064-.064c.29-.29.54-.541.828-.687l.297.588-.297-.588z",
|
|
29
|
+
fill: "#fff"
|
|
30
|
+
}));
|
|
31
|
+
};
|
|
32
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
33
|
+
component: IconNode
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
36
|
+
CallFilled.displayName = 'CallFilled';
|
|
37
|
+
export default CallFilled;
|
|
@@ -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 PersonLeftArrowFilled(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: "M14.5 7a5 5 0 11-10 0 5 5 0 0110 0zM22.707 17.293L19 13.586 17.586 15l2 2H15v2h4.586l-2 2L19 22.414l3.707-3.707a1 1 0 000-1.414zM6 14a5 5 0 00-5 5v3h12v-8H6zM17 7a3.001 3.001 0 01-2 2.83v2.07a5.002 5.002 0 000-9.8v2.07c1.165.413 2 1.524 2 2.83z",
|
|
22
|
+
fill: "currentColor"
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
26
|
+
component: IconNode
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
PersonLeftArrowFilled.displayName = 'PersonLeftArrowFilled';
|
|
30
|
+
export default PersonLeftArrowFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
|
44
44
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
45
45
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
46
46
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
47
|
+
export { default as CallFilled } from './CallFilled';
|
|
47
48
|
export { default as CallOutlined } from './CallOutlined';
|
|
48
49
|
export { default as CameraFilled } from './CameraFilled';
|
|
49
50
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
@@ -247,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
247
248
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
248
249
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
249
250
|
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
251
|
+
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
|
|
250
252
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
251
253
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
252
254
|
export { default as PlayFilled } from './PlayFilled';
|
package/es/index.js
CHANGED
|
@@ -44,6 +44,7 @@ export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
|
44
44
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
45
45
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
46
46
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
47
|
+
export { default as CallFilled } from './CallFilled';
|
|
47
48
|
export { default as CallOutlined } from './CallOutlined';
|
|
48
49
|
export { default as CameraFilled } from './CameraFilled';
|
|
49
50
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
@@ -247,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
247
248
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
248
249
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
249
250
|
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
251
|
+
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
|
|
250
252
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
251
253
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
252
254
|
export { default as PlayFilled } from './PlayFilled';
|
|
@@ -0,0 +1,80 @@
|
|
|
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 CallFilled(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("rect", {
|
|
64
|
+
width: "100%",
|
|
65
|
+
height: "100%",
|
|
66
|
+
rx: 12,
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}), React.createElement("path", {
|
|
69
|
+
fillRule: "evenodd",
|
|
70
|
+
clipRule: "evenodd",
|
|
71
|
+
d: "M8.604 6.441a.667.667 0 00-.602 0c-.071.036-.16.113-.551.505l-.106.105c-.373.373-.474.481-.554.624a1.602 1.602 0 00-.171.657c0 .17.025.272.136.66a12.026 12.026 0 003.079 5.233 12.026 12.026 0 005.233 3.08c.388.11.49.134.66.135.19 0 .49-.078.656-.17.144-.081.252-.182.625-.555l.105-.106c.392-.39.468-.48.505-.55a.667.667 0 000-.603c-.037-.07-.113-.16-.505-.55l.472-.472-.472.471-.13-.13c-.257-.257-.315-.31-.358-.338a.667.667 0 00-.727 0c-.044.029-.102.081-.359.338l-.016.016c-.06.06-.135.136-.226.201l-.388-.542.388.542a1.363 1.363 0 01-1.15.196c-.106-.031-.194-.073-.263-.106l-.016-.008a10.401 10.401 0 01-2.856-2.027 10.401 10.401 0 01-2.035-2.872 1.653 1.653 0 01-.106-.264l.64-.186-.64.186a1.363 1.363 0 01.196-1.149c.065-.09.14-.167.201-.226l.016-.016c.257-.257.31-.315.338-.359a.667.667 0 000-.727c-.029-.043-.081-.101-.338-.358l-.13-.13c-.392-.392-.48-.469-.551-.505zM7.4 5.251a2 2 0 011.805 0c.289.147.54.398.829.688l.063.064.13.13.043.042c.19.19.355.355.47.533l-.558.363.559-.363a2 2 0 010 2.18c-.116.178-.28.342-.471.533l-.043.042a4.002 4.002 0 00-.072.076v.004a1.442 1.442 0 00.033.07 9.07 9.07 0 001.768 2.491 9.068 9.068 0 002.49 1.768l-.288.601.288-.601a6.5 6.5 0 00.071.034l.004-.001h.004l.072-.072.042-.043c.191-.19.355-.355.533-.47a2 2 0 012.18 0c.178.115.342.28.533.47l.042.043-.471.471.471-.471.13.13.064.063c.29.29.541.54.687.829a2 2 0 010 1.805c-.146.288-.397.539-.687.828l-.064.064-.105.105-.045.046c-.31.31-.548.548-.87.729a2.909 2.909 0 01-1.313.341c-.368 0-.637-.077-.983-.175l-.037-.011a13.36 13.36 0 01-5.812-3.419 13.359 13.359 0 01-3.419-5.812l-.01-.037c-.099-.346-.175-.615-.176-.983a2.91 2.91 0 01.341-1.314c.18-.32.419-.559.73-.869a95 95 0 00.045-.045l.105-.105.064-.064c.29-.29.54-.541.828-.687l.297.588-.297-.588z",
|
|
72
|
+
fill: "#fff"
|
|
73
|
+
}));
|
|
74
|
+
};
|
|
75
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
76
|
+
component: IconNode
|
|
77
|
+
}));
|
|
78
|
+
}
|
|
79
|
+
CallFilled.displayName = 'CallFilled';
|
|
80
|
+
exports["default"] = CallFilled;
|
|
@@ -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 PersonLeftArrowFilled(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: "M14.5 7a5 5 0 11-10 0 5 5 0 0110 0zM22.707 17.293L19 13.586 17.586 15l2 2H15v2h4.586l-2 2L19 22.414l3.707-3.707a1 1 0 000-1.414zM6 14a5 5 0 00-5 5v3h12v-8H6zM17 7a3.001 3.001 0 01-2 2.83v2.07a5.002 5.002 0 000-9.8v2.07c1.165.413 2 1.524 2 2.83z",
|
|
65
|
+
fill: "currentColor"
|
|
66
|
+
}));
|
|
67
|
+
};
|
|
68
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
69
|
+
component: IconNode
|
|
70
|
+
}));
|
|
71
|
+
}
|
|
72
|
+
PersonLeftArrowFilled.displayName = 'PersonLeftArrowFilled';
|
|
73
|
+
exports["default"] = PersonLeftArrowFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
|
44
44
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
45
45
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
46
46
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
47
|
+
export { default as CallFilled } from './CallFilled';
|
|
47
48
|
export { default as CallOutlined } from './CallOutlined';
|
|
48
49
|
export { default as CameraFilled } from './CameraFilled';
|
|
49
50
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
@@ -247,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
247
248
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
248
249
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
249
250
|
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
251
|
+
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
|
|
250
252
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
251
253
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
252
254
|
export { default as PlayFilled } from './PlayFilled';
|
package/lib/index.js
CHANGED
|
@@ -8,13 +8,13 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = 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 = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = void 0;
|
|
11
|
+
exports.CameraOutlined = exports.CameraFilled = exports.CallOutlined = exports.CallFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BrokenHeartFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BindChainFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.AscOutlined = 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.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.AdFilled = exports.ImpassabilityFilled = exports.DailyFinanceFilled = void 0;
|
|
12
|
+
exports.DataPanelOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ConfirmCircleSolidFilled = 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.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleStopFilled = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = 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.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = void 0;
|
|
13
|
+
exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = 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 = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = void 0;
|
|
14
|
+
exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = 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.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FireOutlined = exports.FireFilled = void 0;
|
|
15
|
+
exports.PersonGroupFilled = 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.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 = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MinusSquareOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = void 0;
|
|
16
|
+
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.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 = exports.PlusOutlined = exports.PlusFilled = exports.PlusBoldSquareFilled = exports.PlaySolidFilled = exports.PlaySharpFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PersonWarningFilled = exports.PersonLeftArrowFilled = void 0;
|
|
17
|
+
exports.YoutubeFilled = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UpgradeFilled = exports.UpFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.UnbindChainFilled = exports.TwoPersonConfirmFilled = exports.TwoPeopleRectOutlined = exports.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = 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 = exports.SphereFilled = exports.SpeakerFilled = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalFilled = void 0;
|
|
18
18
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
19
19
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
20
20
|
enumerable: true,
|
|
@@ -337,6 +337,13 @@ Object.defineProperty(exports, "CalendarOutlined", {
|
|
|
337
337
|
return __importDefault(CalendarOutlined_1)["default"];
|
|
338
338
|
}
|
|
339
339
|
});
|
|
340
|
+
var CallFilled_1 = require("./CallFilled");
|
|
341
|
+
Object.defineProperty(exports, "CallFilled", {
|
|
342
|
+
enumerable: true,
|
|
343
|
+
get: function get() {
|
|
344
|
+
return __importDefault(CallFilled_1)["default"];
|
|
345
|
+
}
|
|
346
|
+
});
|
|
340
347
|
var CallOutlined_1 = require("./CallOutlined");
|
|
341
348
|
Object.defineProperty(exports, "CallOutlined", {
|
|
342
349
|
enumerable: true,
|
|
@@ -1758,6 +1765,13 @@ Object.defineProperty(exports, "PersonGroupFilled", {
|
|
|
1758
1765
|
return __importDefault(PersonGroupFilled_1)["default"];
|
|
1759
1766
|
}
|
|
1760
1767
|
});
|
|
1768
|
+
var PersonLeftArrowFilled_1 = require("./PersonLeftArrowFilled");
|
|
1769
|
+
Object.defineProperty(exports, "PersonLeftArrowFilled", {
|
|
1770
|
+
enumerable: true,
|
|
1771
|
+
get: function get() {
|
|
1772
|
+
return __importDefault(PersonLeftArrowFilled_1)["default"];
|
|
1773
|
+
}
|
|
1774
|
+
});
|
|
1761
1775
|
var PersonWarningFilled_1 = require("./PersonWarningFilled");
|
|
1762
1776
|
Object.defineProperty(exports, "PersonWarningFilled", {
|
|
1763
1777
|
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.8",
|
|
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": "942425035308a79d22284f3648ecbd3a418df41a"
|
|
26
26
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function CallFilled(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
|
+
<rect width="100%" height="100%" rx={12} fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
clipRule="evenodd"
|
|
11
|
+
d="M8.604 6.441a.667.667 0 00-.602 0c-.071.036-.16.113-.551.505l-.106.105c-.373.373-.474.481-.554.624a1.602 1.602 0 00-.171.657c0 .17.025.272.136.66a12.026 12.026 0 003.079 5.233 12.026 12.026 0 005.233 3.08c.388.11.49.134.66.135.19 0 .49-.078.656-.17.144-.081.252-.182.625-.555l.105-.106c.392-.39.468-.48.505-.55a.667.667 0 000-.603c-.037-.07-.113-.16-.505-.55l.472-.472-.472.471-.13-.13c-.257-.257-.315-.31-.358-.338a.667.667 0 00-.727 0c-.044.029-.102.081-.359.338l-.016.016c-.06.06-.135.136-.226.201l-.388-.542.388.542a1.363 1.363 0 01-1.15.196c-.106-.031-.194-.073-.263-.106l-.016-.008a10.401 10.401 0 01-2.856-2.027 10.401 10.401 0 01-2.035-2.872 1.653 1.653 0 01-.106-.264l.64-.186-.64.186a1.363 1.363 0 01.196-1.149c.065-.09.14-.167.201-.226l.016-.016c.257-.257.31-.315.338-.359a.667.667 0 000-.727c-.029-.043-.081-.101-.338-.358l-.13-.13c-.392-.392-.48-.469-.551-.505zM7.4 5.251a2 2 0 011.805 0c.289.147.54.398.829.688l.063.064.13.13.043.042c.19.19.355.355.47.533l-.558.363.559-.363a2 2 0 010 2.18c-.116.178-.28.342-.471.533l-.043.042a4.002 4.002 0 00-.072.076v.004a1.442 1.442 0 00.033.07 9.07 9.07 0 001.768 2.491 9.068 9.068 0 002.49 1.768l-.288.601.288-.601a6.5 6.5 0 00.071.034l.004-.001h.004l.072-.072.042-.043c.191-.19.355-.355.533-.47a2 2 0 012.18 0c.178.115.342.28.533.47l.042.043-.471.471.471-.471.13.13.064.063c.29.29.541.54.687.829a2 2 0 010 1.805c-.146.288-.397.539-.687.828l-.064.064-.105.105-.045.046c-.31.31-.548.548-.87.729a2.909 2.909 0 01-1.313.341c-.368 0-.637-.077-.983-.175l-.037-.011a13.36 13.36 0 01-5.812-3.419 13.359 13.359 0 01-3.419-5.812l-.01-.037c-.099-.346-.175-.615-.176-.983a2.91 2.91 0 01.341-1.314c.18-.32.419-.559.73-.869a95 95 0 00.045-.045l.105-.105.064-.064c.29-.29.54-.541.828-.687l.297.588-.297-.588z"
|
|
12
|
+
fill="#fff"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
CallFilled.displayName = 'CallFilled';
|
|
21
|
+
export default CallFilled;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function PersonLeftArrowFilled(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="M14.5 7a5 5 0 11-10 0 5 5 0 0110 0zM22.707 17.293L19 13.586 17.586 15l2 2H15v2h4.586l-2 2L19 22.414l3.707-3.707a1 1 0 000-1.414zM6 14a5 5 0 00-5 5v3h12v-8H6zM17 7a3.001 3.001 0 01-2 2.83v2.07a5.002 5.002 0 000-9.8v2.07c1.165.413 2 1.524 2 2.83z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
PersonLeftArrowFilled.displayName = 'PersonLeftArrowFilled';
|
|
18
|
+
export default PersonLeftArrowFilled;
|
package/src/index.tsx
CHANGED
|
@@ -44,6 +44,7 @@ export { default as BrokenLineOutlined } from './BrokenLineOutlined';
|
|
|
44
44
|
export { default as BusinessCardFilled } from './BusinessCardFilled';
|
|
45
45
|
export { default as BusinessCardOutlined } from './BusinessCardOutlined';
|
|
46
46
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
47
|
+
export { default as CallFilled } from './CallFilled';
|
|
47
48
|
export { default as CallOutlined } from './CallOutlined';
|
|
48
49
|
export { default as CameraFilled } from './CameraFilled';
|
|
49
50
|
export { default as CameraOutlined } from './CameraOutlined';
|
|
@@ -247,6 +248,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
247
248
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
248
249
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
249
250
|
export { default as PersonGroupFilled } from './PersonGroupFilled';
|
|
251
|
+
export { default as PersonLeftArrowFilled } from './PersonLeftArrowFilled';
|
|
250
252
|
export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
251
253
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
252
254
|
export { default as PlayFilled } from './PlayFilled';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="100%" height="100%" rx="12" fill="currentColor" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M8.60351 6.44148C8.41432 6.34579 8.1909 6.34579 8.00171 6.44148C7.93056 6.47746 7.84187 6.55431 7.45052 6.94566L7.34543 7.05075C6.97195 7.42422 6.87128 7.53224 6.79081 7.67549C6.69753 7.84154 6.61939 8.14203 6.61996 8.33248C6.62046 8.50195 6.64548 8.60401 6.75565 8.99218C7.29939 10.9079 8.32512 12.7157 9.83467 14.2253C11.3442 15.7348 13.1521 16.7606 15.0678 17.3043C15.456 17.4145 15.558 17.4395 15.7275 17.44C15.9179 17.4406 16.2184 17.3624 16.3845 17.2692C16.5277 17.1887 16.6357 17.088 17.0092 16.7145L17.1143 16.6094C17.5057 16.2181 17.5825 16.1294 17.6185 16.0583C17.7142 15.8691 17.7142 15.6456 17.6185 15.4565C17.5825 15.3853 17.5057 15.2966 17.1143 14.9053L17.5857 14.4339L17.1143 14.9053L16.9844 14.7754C16.7273 14.5182 16.6694 14.4656 16.6256 14.4371C16.4047 14.2934 16.1198 14.2934 15.8988 14.4371C15.855 14.4656 15.7972 14.5182 15.5401 14.7754C15.535 14.7804 15.5298 14.7857 15.5244 14.791C15.4646 14.8511 15.3889 14.9271 15.2979 14.9922L14.9098 14.4502L15.2979 14.9922C14.9733 15.2247 14.5319 15.2999 14.1485 15.1882C14.0416 15.157 13.9536 15.1146 13.8851 15.0816C13.8797 15.079 13.8744 15.0764 13.8693 15.0739C12.836 14.5778 11.8682 13.9018 11.0132 13.0468C10.1582 12.1918 9.48214 11.224 8.98603 10.1907C8.98354 10.1855 8.98099 10.1802 8.97838 10.1748C8.94538 10.1064 8.90295 10.0184 8.87179 9.91144L9.51182 9.72487L8.87179 9.91144C8.76004 9.52808 8.8353 9.08671 9.06777 8.76205L9.06777 8.76205C9.13291 8.67109 9.20892 8.59535 9.26896 8.53552C9.27431 8.5302 9.27953 8.52499 9.28461 8.51992C9.54175 8.26278 9.5944 8.20496 9.62289 8.16114L9.62289 8.16114C9.76656 7.94017 9.76656 7.65531 9.62289 7.43435C9.5944 7.39053 9.54175 7.33271 9.28461 7.07557L9.1547 6.94566C8.76335 6.55431 8.67466 6.47746 8.60351 6.44148ZM7.39992 5.25168C7.96748 4.96461 8.63774 4.96461 9.2053 5.25168C9.4937 5.39755 9.74407 5.64856 10.0337 5.93893C10.0547 5.96003 10.076 5.98135 10.0975 6.00285L10.2274 6.13276C10.2416 6.14692 10.2556 6.16093 10.2695 6.1748C10.4606 6.36559 10.6252 6.52993 10.7407 6.70756L10.1818 7.07096L10.7407 6.70756C11.1717 7.37045 11.1717 8.22503 10.7407 8.88792C10.6252 9.06556 10.4606 9.2299 10.2695 9.42068C10.2556 9.43455 10.2416 9.44856 10.2274 9.46273C10.189 9.50113 10.1694 9.52083 10.1558 9.53526C10.1555 9.53635 10.1553 9.53755 10.1551 9.53885C10.1548 9.54029 10.1546 9.54163 10.1545 9.54284C10.1567 9.54772 10.1597 9.55416 10.1638 9.56287C10.1702 9.57649 10.1777 9.59218 10.188 9.61361C10.6199 10.5131 11.2089 11.3569 11.956 12.104C12.7031 12.8511 13.5468 13.4401 14.4464 13.872L14.1578 14.473L14.4464 13.872C14.4678 13.8823 14.4835 13.8898 14.4971 13.8962C14.5058 13.9003 14.5123 13.9033 14.5171 13.9055C14.5183 13.9053 14.5197 13.9052 14.5211 13.9049C14.5224 13.9047 14.5236 13.9044 14.5247 13.9042C14.5391 13.8905 14.5588 13.871 14.5972 13.8326C14.6114 13.8184 14.6254 13.8043 14.6393 13.7905C14.8301 13.5993 14.9944 13.4347 15.172 13.3192C15.8349 12.8882 16.6895 12.8882 17.3524 13.3192C17.53 13.4347 17.6944 13.5993 17.8852 13.7905C17.899 13.8043 17.913 13.8184 17.9272 13.8326L17.4558 14.304L17.9272 13.8326L18.0571 13.9625C18.0786 13.984 18.0999 14.0052 18.121 14.0263C18.4114 14.3159 18.6624 14.5663 18.8083 14.8547C19.0954 15.4222 19.0954 16.0925 18.8083 16.6601C18.6624 16.9485 18.4114 17.1988 18.121 17.4885C18.0999 17.5095 18.0786 17.5308 18.0571 17.5523L17.952 17.6573C17.9368 17.6726 17.9218 17.6876 17.9069 17.7025C17.5967 18.013 17.3589 18.2511 17.0375 18.4316C16.6709 18.6376 16.144 18.7746 15.7235 18.7733C15.3556 18.7722 15.0873 18.696 14.7413 18.5977C14.7289 18.5941 14.7164 18.5906 14.7037 18.587C12.5749 17.9828 10.5663 16.8425 8.89186 15.1681C7.21744 13.4937 6.07721 11.4851 5.47299 9.35624C5.4694 9.34362 5.46585 9.33111 5.46232 9.31869C5.36398 8.97269 5.28772 8.70437 5.28663 8.33645C5.28538 7.91593 5.42238 7.38911 5.62833 7.02248L5.62834 7.02248C5.80887 6.7011 6.04697 6.46324 6.35746 6.15307C6.37235 6.1382 6.3874 6.12316 6.40262 6.10794L6.50771 6.00285C6.52921 5.98135 6.55047 5.96003 6.57152 5.93893C6.86115 5.64856 7.11152 5.39755 7.39992 5.25168L7.6974 5.83984L7.39992 5.25168Z"
|
|
5
|
+
fill="white" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M14.5 7C14.5 9.76142 12.2614 12 9.5 12C6.73858 12 4.5 9.76142 4.5 7C4.5 4.23858 6.73858 2 9.5 2C12.2614 2 14.5 4.23858 14.5 7Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M22.7071 17.2929L19 13.5858L17.5858 15L19.5858 17H15V19H19.5858L17.5858 21L19 22.4142L22.7071 18.7071C23.0976 18.3166 23.0976 17.6834 22.7071 17.2929Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path d="M6 14C3.23858 14 1 16.2386 1 19V22H13V14H6Z" fill="currentColor" />
|
|
9
|
+
<path
|
|
10
|
+
d="M17 7C17 8.30622 16.1652 9.41746 15 9.82929V11.9C17.2822 11.4367 19 9.41896 19 7C19 4.58104 17.2822 2.56329 15 2.10002V4.17071C16.1652 4.58254 17 5.69378 17 7Z"
|
|
11
|
+
fill="currentColor" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="100%" height="100%" rx="12" fill="currentColor" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M8.60351 6.44148C8.41432 6.34579 8.1909 6.34579 8.00171 6.44148C7.93056 6.47746 7.84187 6.55431 7.45052 6.94566L7.34543 7.05075C6.97195 7.42422 6.87128 7.53224 6.79081 7.67549C6.69753 7.84154 6.61939 8.14203 6.61996 8.33248C6.62046 8.50195 6.64548 8.60401 6.75565 8.99218C7.29939 10.9079 8.32512 12.7157 9.83467 14.2253C11.3442 15.7348 13.1521 16.7606 15.0678 17.3043C15.456 17.4145 15.558 17.4395 15.7275 17.44C15.9179 17.4406 16.2184 17.3624 16.3845 17.2692C16.5277 17.1887 16.6357 17.088 17.0092 16.7145L17.1143 16.6094C17.5057 16.2181 17.5825 16.1294 17.6185 16.0583C17.7142 15.8691 17.7142 15.6456 17.6185 15.4565C17.5825 15.3853 17.5057 15.2966 17.1143 14.9053L17.5857 14.4339L17.1143 14.9053L16.9844 14.7754C16.7273 14.5182 16.6694 14.4656 16.6256 14.4371C16.4047 14.2934 16.1198 14.2934 15.8988 14.4371C15.855 14.4656 15.7972 14.5182 15.5401 14.7754C15.535 14.7804 15.5298 14.7857 15.5244 14.791C15.4646 14.8511 15.3889 14.9271 15.2979 14.9922L14.9098 14.4502L15.2979 14.9922C14.9733 15.2247 14.5319 15.2999 14.1485 15.1882C14.0416 15.157 13.9536 15.1146 13.8851 15.0816C13.8797 15.079 13.8744 15.0764 13.8693 15.0739C12.836 14.5778 11.8682 13.9018 11.0132 13.0468C10.1582 12.1918 9.48214 11.224 8.98603 10.1907C8.98354 10.1855 8.98099 10.1802 8.97838 10.1748C8.94538 10.1064 8.90295 10.0184 8.87179 9.91144L9.51182 9.72487L8.87179 9.91144C8.76004 9.52808 8.8353 9.08671 9.06777 8.76205L9.06777 8.76205C9.13291 8.67109 9.20892 8.59535 9.26896 8.53552C9.27431 8.5302 9.27953 8.52499 9.28461 8.51992C9.54175 8.26278 9.5944 8.20496 9.62289 8.16114L9.62289 8.16114C9.76656 7.94017 9.76656 7.65531 9.62289 7.43435C9.5944 7.39053 9.54175 7.33271 9.28461 7.07557L9.1547 6.94566C8.76335 6.55431 8.67466 6.47746 8.60351 6.44148ZM7.39992 5.25168C7.96748 4.96461 8.63774 4.96461 9.2053 5.25168C9.4937 5.39755 9.74407 5.64856 10.0337 5.93893C10.0547 5.96003 10.076 5.98135 10.0975 6.00285L10.2274 6.13276C10.2416 6.14692 10.2556 6.16093 10.2695 6.1748C10.4606 6.36559 10.6252 6.52993 10.7407 6.70756L10.1818 7.07096L10.7407 6.70756C11.1717 7.37045 11.1717 8.22503 10.7407 8.88792C10.6252 9.06556 10.4606 9.2299 10.2695 9.42068C10.2556 9.43455 10.2416 9.44856 10.2274 9.46273C10.189 9.50113 10.1694 9.52083 10.1558 9.53526C10.1555 9.53635 10.1553 9.53755 10.1551 9.53885C10.1548 9.54029 10.1546 9.54163 10.1545 9.54284C10.1567 9.54772 10.1597 9.55416 10.1638 9.56287C10.1702 9.57649 10.1777 9.59218 10.188 9.61361C10.6199 10.5131 11.2089 11.3569 11.956 12.104C12.7031 12.8511 13.5468 13.4401 14.4464 13.872L14.1578 14.473L14.4464 13.872C14.4678 13.8823 14.4835 13.8898 14.4971 13.8962C14.5058 13.9003 14.5123 13.9033 14.5171 13.9055C14.5183 13.9053 14.5197 13.9052 14.5211 13.9049C14.5224 13.9047 14.5236 13.9044 14.5247 13.9042C14.5391 13.8905 14.5588 13.871 14.5972 13.8326C14.6114 13.8184 14.6254 13.8043 14.6393 13.7905C14.8301 13.5993 14.9944 13.4347 15.172 13.3192C15.8349 12.8882 16.6895 12.8882 17.3524 13.3192C17.53 13.4347 17.6944 13.5993 17.8852 13.7905C17.899 13.8043 17.913 13.8184 17.9272 13.8326L17.4558 14.304L17.9272 13.8326L18.0571 13.9625C18.0786 13.984 18.0999 14.0052 18.121 14.0263C18.4114 14.3159 18.6624 14.5663 18.8083 14.8547C19.0954 15.4222 19.0954 16.0925 18.8083 16.6601C18.6624 16.9485 18.4114 17.1988 18.121 17.4885C18.0999 17.5095 18.0786 17.5308 18.0571 17.5523L17.952 17.6573C17.9368 17.6726 17.9218 17.6876 17.9069 17.7025C17.5967 18.013 17.3589 18.2511 17.0375 18.4316C16.6709 18.6376 16.144 18.7746 15.7235 18.7733C15.3556 18.7722 15.0873 18.696 14.7413 18.5977C14.7289 18.5941 14.7164 18.5906 14.7037 18.587C12.5749 17.9828 10.5663 16.8425 8.89186 15.1681C7.21744 13.4937 6.07721 11.4851 5.47299 9.35624C5.4694 9.34362 5.46585 9.33111 5.46232 9.31869C5.36398 8.97269 5.28772 8.70437 5.28663 8.33645C5.28538 7.91593 5.42238 7.38911 5.62833 7.02248L5.62834 7.02248C5.80887 6.7011 6.04697 6.46324 6.35746 6.15307C6.37235 6.1382 6.3874 6.12316 6.40262 6.10794L6.50771 6.00285C6.52921 5.98135 6.55047 5.96003 6.57152 5.93893C6.86115 5.64856 7.11152 5.39755 7.39992 5.25168L7.6974 5.83984L7.39992 5.25168Z"
|
|
5
|
+
fill="white" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M14.5 7C14.5 9.76142 12.2614 12 9.5 12C6.73858 12 4.5 9.76142 4.5 7C4.5 4.23858 6.73858 2 9.5 2C12.2614 2 14.5 4.23858 14.5 7Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M22.7071 17.2929L19 13.5858L17.5858 15L19.5858 17H15V19H19.5858L17.5858 21L19 22.4142L22.7071 18.7071C23.0976 18.3166 23.0976 17.6834 22.7071 17.2929Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path d="M6 14C3.23858 14 1 16.2386 1 19V22H13V14H6Z" fill="currentColor" />
|
|
9
|
+
<path
|
|
10
|
+
d="M17 7C17 8.30622 16.1652 9.41746 15 9.82929V11.9C17.2822 11.4367 19 9.41896 19 7C19 4.58104 17.2822 2.56329 15 2.10002V4.17071C16.1652 4.58254 17 5.69378 17 7Z"
|
|
11
|
+
fill="currentColor" />
|
|
12
|
+
</svg>
|