@homecode/ui 4.27.21 → 4.27.23
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/dist/esm/src/components/Icon/icons/call.svg.js +17 -0
- package/dist/esm/src/components/Icon/icons/discord.svg.js +17 -0
- package/dist/esm/src/components/Icon/icons/index.js +4 -0
- package/dist/esm/src/components/Icon/icons/linkedin.svg.js +20 -0
- package/dist/esm/src/components/Icon/icons/youtube.svg.js +20 -0
- package/dist/esm/types/src/components/Icon/icons/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
var SvgCall = function SvgCall(props) {
|
|
5
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M19.222 23.974c-1.04 0-2.501-.376-4.69-1.597-2.66-1.492-4.718-2.871-7.365-5.51-2.553-2.55-3.795-4.2-5.534-7.362-1.96-3.57-1.625-5.442-1.25-6.24.444-.956 1.103-1.528 1.951-2.095A9.396 9.395 0 0 1 3.86.359l.148-.065c.264-.12.663-.3 1.17-.107.337.126.64.386 1.11.852.97.955 2.293 3.082 2.782 4.128.327.703.543 1.166.545 1.69 0 .609-.308 1.078-.68 1.587l-.205.274c-.407.533-.495.687-.437.961.12.553 1.006 2.2 2.462 3.652 1.457 1.453 3.054 2.285 3.609 2.402.286.061.443-.032.993-.451l.246-.186c.567-.422 1.017-.722 1.612-.722h.004c.518 0 .962.226 1.697.598.96.483 3.15 1.79 4.112 2.757.467.472.728.772.856 1.11.191.508.01.906-.107 1.173l-.065.146a9.4 9.4 0 0 1-.814 1.522c-.566.848-1.141 1.503-2.1 1.95a3.6 3.6 0 0 1-1.574.346",
|
|
11
|
+
style: {
|
|
12
|
+
strokeWidth: 0.0532912
|
|
13
|
+
}
|
|
14
|
+
}));
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export { SvgCall as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
var SvgDiscord = function SvgDiscord(props) {
|
|
5
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24"
|
|
8
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
9
|
+
fill: "#5865f2",
|
|
10
|
+
d: "M20.21 4.295a19.3 19.3 0 0 0-4.86-1.523 16 16 0 0 0-.622 1.29 17.7 17.7 0 0 0-5.388 0 12 12 0 0 0-.631-1.293 19.3 19.3 0 0 0-4.863 1.533C.768 8.95-.065 13.482.351 17.95a19.6 19.6 0 0 0 5.964 3.056q.721-.995 1.274-2.105a12.4 12.4 0 0 1-2.008-.976q.252-.187.491-.392c3.877 1.813 8.09 1.813 11.92 0q.243.2.492.392-.958.575-2.012.98.55 1.11 1.275 2.101a19.3 19.3 0 0 0 5.966-3.056c.489-5.18-.836-9.67-3.504-13.656M8.118 15.205c-1.163 0-2.117-1.088-2.117-2.41 0-1.32.932-2.409 2.117-2.409s2.14 1.088 2.117 2.41c.003 1.324-.932 2.41-2.114 2.41m7.829 0c-1.163 0-2.117-1.089-2.117-2.41s.932-2.41 2.114-2.41c1.188 0 2.142 1.088 2.12 2.41 0 1.324-.932 2.41-2.117 2.41",
|
|
11
|
+
style: {
|
|
12
|
+
strokeWidth: 3.10913
|
|
13
|
+
}
|
|
14
|
+
}));
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export { SvgDiscord as default };
|
|
@@ -10,6 +10,7 @@ var ICONS = {
|
|
|
10
10
|
bookmarkAdd: () => import('./bookmarkAdd.svg.js'),
|
|
11
11
|
brain: () => import('./brain.svg.js'),
|
|
12
12
|
brokenImage: () => import('./brokenImage.svg.js'),
|
|
13
|
+
call: () => import('./call.svg.js'),
|
|
13
14
|
camera: () => import('./camera.svg.js'),
|
|
14
15
|
chat: () => import('./chat.svg.js'),
|
|
15
16
|
check: () => import('./check.svg.js'),
|
|
@@ -25,6 +26,7 @@ var ICONS = {
|
|
|
25
26
|
clearAll: () => import('./clearAll.svg.js'),
|
|
26
27
|
cubes: () => import('./cubes.svg.js'),
|
|
27
28
|
delete: () => import('./delete.svg.js'),
|
|
29
|
+
discord: () => import('./discord.svg.js'),
|
|
28
30
|
draft: () => import('./draft.svg.js'),
|
|
29
31
|
dragHandlerHorizontal: () => import('./dragHandlerHorizontal.svg.js'),
|
|
30
32
|
dragHandlerVertical: () => import('./dragHandlerVertical.svg.js'),
|
|
@@ -51,6 +53,7 @@ var ICONS = {
|
|
|
51
53
|
home: () => import('./home.svg.js'),
|
|
52
54
|
layers: () => import('./layers.svg.js'),
|
|
53
55
|
link: () => import('./link.svg.js'),
|
|
56
|
+
linkedin: () => import('./linkedin.svg.js'),
|
|
54
57
|
loader: () => import('./loader.svg.js'),
|
|
55
58
|
lock: () => import('./lock.svg.js'),
|
|
56
59
|
lockOpen: () => import('./lockOpen.svg.js'),
|
|
@@ -90,6 +93,7 @@ var ICONS = {
|
|
|
90
93
|
telegram: () => import('./telegram.svg.js'),
|
|
91
94
|
tool: () => import('./tool.svg.js'),
|
|
92
95
|
trafficLight: () => import('./trafficLight.svg.js'),
|
|
96
|
+
youtube: () => import('./youtube.svg.js'),
|
|
93
97
|
};
|
|
94
98
|
|
|
95
99
|
export { ICONS as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
var SvgLinkedin = function SvgLinkedin(props) {
|
|
5
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
xmlSpace: "preserve",
|
|
8
|
+
width: 24,
|
|
9
|
+
height: 24,
|
|
10
|
+
viewBox: "0 0 11.46 11.46"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
d: "M10.406 0H1.035C.463 0 0 .463 0 1.035v9.371c0 .572.463 1.035 1.035 1.035h9.371c.572 0 1.035-.463 1.035-1.035V1.035C11.441.463 10.978 0 10.406 0M3.54 9.88a.3.3 0 0 1-.3.3H1.956a.3.3 0 0 1-.301-.3V4.504a.3.3 0 0 1 .301-.301H3.24a.3.3 0 0 1 .301.3zm-.942-6.183a1.218 1.218 0 1 1 0-2.436 1.218 1.218 0 0 1 0 2.436m7.643 6.206a.277.277 0 0 1-.277.277H8.588a.277.277 0 0 1-.277-.277v-2.52c0-.377.11-1.648-.983-1.648-.848 0-1.02.87-1.054 1.26v2.908a.277.277 0 0 1-.277.277h-1.33a.277.277 0 0 1-.278-.277V4.48c0-.152.124-.276.277-.276h1.33c.154 0 .278.124.278.276v.47c.314-.472.781-.837 1.776-.837 2.203 0 2.19 2.059 2.19 3.19z",
|
|
13
|
+
style: {
|
|
14
|
+
fill: "#0077b7",
|
|
15
|
+
strokeWidth: 0.0299512
|
|
16
|
+
}
|
|
17
|
+
}));
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export { SvgLinkedin as default };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
var SvgYoutube = function SvgYoutube(props) {
|
|
5
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
xmlSpace: "preserve",
|
|
8
|
+
width: 24,
|
|
9
|
+
height: 24,
|
|
10
|
+
viewBox: "0 0 13.83 13.83"
|
|
11
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
d: "M365.257 67.393H95.744C42.866 67.393 0 110.259 0 163.137v134.728c0 52.878 42.866 95.744 95.744 95.744h269.513c52.878 0 95.744-42.866 95.744-95.744V163.137c0-52.878-42.866-95.744-95.744-95.744m-64.751 169.663-126.06 60.123c-3.359 1.602-7.239-.847-7.239-4.568V168.607c0-3.774 3.982-6.22 7.348-4.514l126.06 63.881c3.748 1.899 3.683 7.274-.109 9.082",
|
|
13
|
+
style: {
|
|
14
|
+
fill: "#f61c0d"
|
|
15
|
+
},
|
|
16
|
+
transform: "translate(.05 .083) scale(.02983)"
|
|
17
|
+
}));
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export { SvgYoutube as default };
|
|
@@ -11,6 +11,7 @@ declare const _default: {
|
|
|
11
11
|
bookmarkAdd: () => Promise<typeof import("*.svg")>;
|
|
12
12
|
brain: () => Promise<typeof import("*.svg")>;
|
|
13
13
|
brokenImage: () => Promise<typeof import("*.svg")>;
|
|
14
|
+
call: () => Promise<typeof import("*.svg")>;
|
|
14
15
|
camera: () => Promise<typeof import("*.svg")>;
|
|
15
16
|
chat: () => Promise<typeof import("*.svg")>;
|
|
16
17
|
check: () => Promise<typeof import("*.svg")>;
|
|
@@ -26,6 +27,7 @@ declare const _default: {
|
|
|
26
27
|
clearAll: () => Promise<typeof import("*.svg")>;
|
|
27
28
|
cubes: () => Promise<typeof import("*.svg")>;
|
|
28
29
|
delete: () => Promise<typeof import("*.svg")>;
|
|
30
|
+
discord: () => Promise<typeof import("*.svg")>;
|
|
29
31
|
draft: () => Promise<typeof import("*.svg")>;
|
|
30
32
|
dragHandlerHorizontal: () => Promise<typeof import("*.svg")>;
|
|
31
33
|
dragHandlerVertical: () => Promise<typeof import("*.svg")>;
|
|
@@ -52,6 +54,7 @@ declare const _default: {
|
|
|
52
54
|
home: () => Promise<typeof import("*.svg")>;
|
|
53
55
|
layers: () => Promise<typeof import("*.svg")>;
|
|
54
56
|
link: () => Promise<typeof import("*.svg")>;
|
|
57
|
+
linkedin: () => Promise<typeof import("*.svg")>;
|
|
55
58
|
loader: () => Promise<typeof import("*.svg")>;
|
|
56
59
|
lock: () => Promise<typeof import("*.svg")>;
|
|
57
60
|
lockOpen: () => Promise<typeof import("*.svg")>;
|
|
@@ -91,5 +94,6 @@ declare const _default: {
|
|
|
91
94
|
telegram: () => Promise<typeof import("*.svg")>;
|
|
92
95
|
tool: () => Promise<typeof import("*.svg")>;
|
|
93
96
|
trafficLight: () => Promise<typeof import("*.svg")>;
|
|
97
|
+
youtube: () => Promise<typeof import("*.svg")>;
|
|
94
98
|
};
|
|
95
99
|
export default _default;
|