srf-feathers 1.5.1 → 1.5.2
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/build/index.esm.js +111 -93
- package/build/index.esm.js.map +1 -1
- package/build/index.js +111 -93
- package/build/index.js.map +1 -1
- package/package.json +8 -8
package/build/index.esm.js
CHANGED
|
@@ -20,39 +20,57 @@ var classnames = {exports: {}};
|
|
|
20
20
|
|
|
21
21
|
var hasOwn = {}.hasOwnProperty;
|
|
22
22
|
|
|
23
|
-
function classNames() {
|
|
24
|
-
var classes =
|
|
23
|
+
function classNames () {
|
|
24
|
+
var classes = '';
|
|
25
25
|
|
|
26
26
|
for (var i = 0; i < arguments.length; i++) {
|
|
27
27
|
var arg = arguments[i];
|
|
28
|
-
if (
|
|
29
|
-
|
|
30
|
-
var argType = typeof arg;
|
|
31
|
-
|
|
32
|
-
if (argType === 'string' || argType === 'number') {
|
|
33
|
-
classes.push(arg);
|
|
34
|
-
} else if (Array.isArray(arg)) {
|
|
35
|
-
if (arg.length) {
|
|
36
|
-
var inner = classNames.apply(null, arg);
|
|
37
|
-
if (inner) {
|
|
38
|
-
classes.push(inner);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
} else if (argType === 'object') {
|
|
42
|
-
if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {
|
|
43
|
-
classes.push(arg.toString());
|
|
44
|
-
continue;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
for (var key in arg) {
|
|
48
|
-
if (hasOwn.call(arg, key) && arg[key]) {
|
|
49
|
-
classes.push(key);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
28
|
+
if (arg) {
|
|
29
|
+
classes = appendClass(classes, parseValue(arg));
|
|
52
30
|
}
|
|
53
31
|
}
|
|
54
32
|
|
|
55
|
-
return classes
|
|
33
|
+
return classes;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function parseValue (arg) {
|
|
37
|
+
if (typeof arg === 'string' || typeof arg === 'number') {
|
|
38
|
+
return arg;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
if (typeof arg !== 'object') {
|
|
42
|
+
return '';
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
if (Array.isArray(arg)) {
|
|
46
|
+
return classNames.apply(null, arg);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {
|
|
50
|
+
return arg.toString();
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
var classes = '';
|
|
54
|
+
|
|
55
|
+
for (var key in arg) {
|
|
56
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
|
57
|
+
classes = appendClass(classes, key);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return classes;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
function appendClass (value, newClass) {
|
|
65
|
+
if (!newClass) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
if (value) {
|
|
70
|
+
return value + ' ' + newClass;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
return value + newClass;
|
|
56
74
|
}
|
|
57
75
|
|
|
58
76
|
if (module.exports) {
|
|
@@ -207,7 +225,7 @@ const SvgAudio = props => /*#__PURE__*/React.createElement("svg", _extends$1Q({
|
|
|
207
225
|
}, props), _path$1s || (_path$1s = /*#__PURE__*/React.createElement("path", {
|
|
208
226
|
fill: "#22211D",
|
|
209
227
|
fillRule: "evenodd",
|
|
210
|
-
d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12M1 12c0 6.075 4.925 11 11 11s11-4.925 11-11S18.075 1 12 1 1 5.925 1 12m16.74-.002c0-1.41-.764-2.943-1.95-3.922a.543.543 0 0 0-.689.837c.944.779 1.555 1.995 1.555 3.085 0 1.086-.612 2.303-1.555 3.085a.543.543 0 0 0 .69.835c1.185-.98 1.948-2.513 1.948-3.92m-2.167-.003c0-.95-.499-1.833-1.391-2.481a.542.542 0 0 0-.638.876c.585.425.945.96.945 1.605 0 .646-.36 1.18-.944 1.605a.541.541 0 1 0 .637.877c.893-.649 1.39-1.53 1.39-2.482M7.94 10l3.617-3.916a.
|
|
228
|
+
d: "M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12M1 12c0 6.075 4.925 11 11 11s11-4.925 11-11S18.075 1 12 1 1 5.925 1 12m16.74-.002c0-1.41-.764-2.943-1.95-3.922a.543.543 0 0 0-.689.837c.944.779 1.555 1.995 1.555 3.085 0 1.086-.612 2.303-1.555 3.085a.543.543 0 0 0 .69.835c1.185-.98 1.948-2.513 1.948-3.92m-2.167-.003c0-.95-.499-1.833-1.391-2.481a.542.542 0 0 0-.638.876c.585.425.945.96.945 1.605 0 .646-.36 1.18-.944 1.605a.541.541 0 1 0 .637.877c.893-.649 1.39-1.53 1.39-2.482M7.94 10l3.617-3.916a.25.25 0 0 1 .287-.062.29.29 0 0 1 .163.264v11.428c0 .116-.064.22-.163.264a.24.24 0 0 1-.1.022.25.25 0 0 1-.187-.084L7.942 14H6c-.582 0-1-.37-1-1v-2c0-.63.418-1 1-1z",
|
|
211
229
|
clipRule: "evenodd"
|
|
212
230
|
})));
|
|
213
231
|
|
|
@@ -225,7 +243,7 @@ const SvgAudioFeed = props => /*#__PURE__*/React.createElement("svg", _extends$1
|
|
|
225
243
|
},
|
|
226
244
|
viewBox: "0 0 24 24"
|
|
227
245
|
}, props), _title || (_title = /*#__PURE__*/React.createElement("title", null, "Audio-Feed")), /*#__PURE__*/React.createElement("path", {
|
|
228
|
-
d: "M15.086.5c.265 0 .52.105.707.293l3.414 3.
|
|
246
|
+
d: "M15.086.5c.265 0 .52.105.707.293l3.414 3.414a1 1 0 0 1 .293.707V19.5a1 1 0 0 1-1 1h-14a1 1 0 0 1-1-1v-18a1 1 0 0 1 1-1z",
|
|
229
247
|
style: {
|
|
230
248
|
fill: "none",
|
|
231
249
|
stroke: "rgb(136,133,121)",
|
|
@@ -241,7 +259,7 @@ const SvgAudioFeed = props => /*#__PURE__*/React.createElement("svg", _extends$1
|
|
|
241
259
|
},
|
|
242
260
|
transform: "translate(2)"
|
|
243
261
|
}), /*#__PURE__*/React.createElement("path", {
|
|
244
|
-
d: "M6.557.084 2.94 4H1c-.582 0-1 .37-1 1v2c0 .63.418 1 1 1h1.942l3.615 3.916a.25.25 0 0 0 .287.062.
|
|
262
|
+
d: "M6.557.084 2.94 4H1c-.582 0-1 .37-1 1v2c0 .63.418 1 1 1h1.942l3.615 3.916a.25.25 0 0 0 .287.062.29.29 0 0 0 .163-.264V.286a.29.29 0 0 0-.163-.264.25.25 0 0 0-.287.062",
|
|
245
263
|
style: {
|
|
246
264
|
fill: "rgb(136,133,121)"
|
|
247
265
|
},
|
|
@@ -257,7 +275,7 @@ const SvgAudioFeed = props => /*#__PURE__*/React.createElement("svg", _extends$1
|
|
|
257
275
|
},
|
|
258
276
|
transform: "matrix(.65214 0 0 .69133 9.486 6.552)"
|
|
259
277
|
}), /*#__PURE__*/React.createElement("path", {
|
|
260
|
-
d: "M8.627 3.78a.
|
|
278
|
+
d: "M8.627 3.78a.29.29 0 0 0 .065.408c.477.347 1.047.943 1.047 1.807 0 .865-.57 1.46-1.047 1.807a.292.292 0 1 0 .343.473c.831-.604 1.288-1.413 1.288-2.28s-.457-1.676-1.288-2.279a.29.29 0 0 0-.408.064Z",
|
|
261
279
|
style: {
|
|
262
280
|
fill: "rgb(136,133,121)",
|
|
263
281
|
stroke: "rgb(136,133,121)",
|
|
@@ -327,7 +345,7 @@ const SvgAudioeditor = props => /*#__PURE__*/React.createElement("svg", _extends
|
|
|
327
345
|
}), /*#__PURE__*/React.createElement("path", {
|
|
328
346
|
d: "M10 14c0 .933-1.119 1.687-2.5 1.687S5 14.933 5 14s1.119-1.686 2.5-1.686S10 13.068 10 14"
|
|
329
347
|
}), /*#__PURE__*/React.createElement("path", {
|
|
330
|
-
d: "M10 14V7.223a1 1 0 0 1 1.5-.868l2 1.145M23.38 15.12l-7.63 7.63-3.75.75.75-3.75 7.63-7.63a2.114 2.114 0 0 1 2.992 0l.008.008a2.
|
|
348
|
+
d: "M10 14V7.223a1 1 0 0 1 1.5-.868l2 1.145M23.38 15.12l-7.63 7.63-3.75.75.75-3.75 7.63-7.63a2.114 2.114 0 0 1 2.992 0l.008.008a2.11 2.11 0 0 1 0 2.992"
|
|
331
349
|
}))));
|
|
332
350
|
|
|
333
351
|
var _path$1q, _path2$P;
|
|
@@ -360,7 +378,7 @@ const SvgChMap = props => /*#__PURE__*/React.createElement("svg", _extends$1L({
|
|
|
360
378
|
viewBox: "0 0 56 36"
|
|
361
379
|
}, props), _path$1p || (_path$1p = /*#__PURE__*/React.createElement("path", {
|
|
362
380
|
fill: "#B9B7AC",
|
|
363
|
-
d: "M32.228 3.753c-.268-.6-.658-.522-1.112-.16-.132.302-.122.458-.503.458-.385.015-1.107.04-1.42-.2-.083-.132-.122-.342-.224-.44-.205-.014-.508-.146-.688-.112-.273.049-.766.069-.883.337-.556.127-.596.376-.927.669-.38.117-1.913.254-2.206.049.015-.65-.551-.39-.941-.479-.303-.268-.371.523-.83.64.015.02-.634.083-.449.127-.8.088-.737.151-1.498-.293.425.107.522-.269.62-.59-.405.028-.986.248-1.356.395-.04.048-.513.205-.293.258.073.05.395.313.488.298.127-.02.185.127.283.19-.161-.146-.161-.19-.396-.219-.502-.42-.473-.293-.922.083.171.107.4.23.225.454-.093.069-.215-.03-.298.044-.063.112.103.2.108.298l.2-.024s-.21.024-.2.024c.048.117-.176.254-.225.308a.44.44 0 0 1-.268-.088c-.02.151.024.449.063.556.005.122.195.078.244.088l-.2-.005c-.098-.16-.102-.478-.107-.64-.23-.15-.527-.117-.322.172.283.239-.034.546-.166.727-.351.21-.869.093-1.205.103-.532.014-.815.547-1.118.078-.795-.18-.79-.503-.478-1.099-.234.044-.517.044-.664-.093-.414-.17-1.01.225-1.346-.083-.132-.063-.269.025-.337.083-.488.044-.005.513-.01.752-.146.313-.531.464-.805.498.054.596-.395.328-.673 1.07-.405.498 1.352.005 1.415.088.254-.225.434.078.6.21.244.214.01.473-.215.498-.122.024-.253.254-.307.317-.532.054-.512.781-.444 1.113-.537.362-1.23.909-1.464 1.416-.254.25-.863.855-1.161.86.024.21.044.356-.166.405-.259.371-.434.078-.683.669.464.576-.707 1.113-.966 1.382-.503.141-1.61.493-1.937.776-.537 1.5.59.386-.298 2.495-.044.108.034.22.078.279.395.459-.283.923-.63 1.054-.243.41-1.048.801-1.341.967-.127.118-1.903 1.72-1.835 1.753-.043.22.264.484.337.576-.395.44-.761 1.128-1.059 1.563.015.24.132.479.064.688-.498.376 1.498.43.658 1.714-.2.381-.312.88-.312 1.255.088.25-.156.342-.317.366-.122.06-.259-.078-.307-.019-.347.21-1.127.405-1.098.786.473.747.351.46.049 1.245.356-.278.99-.337 1.424-.337.327.196.508.205.825-.014.37-.63 1.283-1.099 1.752-1.617-.088-.776-.093-.249-.488-.42-.113-.131-.166-.405-.22-.561-.19.479-.703 1.318-1.127 1.616.03-.17.102-.366.249-.473l.083-.68c.136-.58 1.737-3.027 2.166-3.47.132-.133.874-.182 1.05-.216.287-.112.834-.727 1.136-.8.98-.294 2.508.375 3.396.707.542.21 1.605.4 1.874 1.002-.19.37-.474.375-.844.37-.035-.019.078.127.073.127.005-.2-.961-.253-1.074-.302l.01.127c.132.425-.39.713-.463 1.074 1.322 1.924 1 .771.302 2.876-.512 1.626 1.04.581 1.156 1.455-.087.161-.268.308-.185.513.03.102-.034.249-.01.346-.049.093.01.171.098.215.18.074.249-.16.405-.19.317.083 1.151 1.01 1.23 1.309.248.776.326 1.054.936 1.65.844.62 1.937-.02 2.728-.415.917.2 1.37.024 2.064-.576.429-.235.658-.064.888-.576.122-.23 1.297.195 1.468.214.264.113.513.425.635.674.156.098.317-.02.473-.034.337.18.878.225 1.234.288.4-.132-.058-.513.483-.464-.063-1.181 1.269-.542 1.6-1.299.328-.424.015-1.171.45-1.499.814-.034 1.356-1.045 1.166-1.787l-.366-.713c-.132-.107-.42-.283-.283-.473.215-.425.732-.616 1.17-.67.547-.356.68-.976 1.362-1.279.18-.18.293-.444.064-.634.146-.513.756-.752 1.234-.81 1.005-.25.722 1.151.708 1.747-.244 1.197-.66 2.149.834 2.617.346.254.912 1.353 1.259 1.592.42.088.951.762 1.312.215.142-.107.22.073.274.171.214.19.62.005.858.151.542.454.127.865-.224 1.275.005.053-.264.58-.278.635.268-.01.878.327 1.112.463.132.088.234.323.288.464.156.215.327.596.386.855.082.332-.113.693-.147 1.016.542-.284.752.048 1.269.102.4-.42 1.298-1.694.224-1.826-.205-.064-.278-.386-.336-.562-.064-.097-.235-.185-.127-.312.76-.532.063-.61.239-1.206.59-.503.941-.2.82-1.197-.03-.503.96-1.093 1.273-1.377.054-.166.083-.405.264-.483.395-.103.497-.708.59-1.035.18-.366.517-.977.424-1.392-.029-.19-.22-.703-.166-.893.04-.196.059-.445-.156-.528-.258-.312.044-.815.19-1.118.196-.298.781-.342 1.089-.23-.069.225.239.489.42.567.268-.068.219-.513.619-.576.18.395-.049 2.002.215 2.31.36.078.532.6.63.898.287.688 1.565.474 2.131.517.517-.136.395-.502.44-.908.492-.542.136.63 1.81-.444 2.04-.352 1.058.757 1.698 1.49.346.238.722.688.624 1.151.561.074 1.79-.37 1.283-1.079-1.654-1.474.259-1.367-.156-2.407-.453-.2-1.751-.205-1.112-.957-.376-.21-.098-.727-.156-1.06 0-.283.366-.473.493-.698-.005-.097.185-.644.21-.722.273-.142 1.307-.454 1.614-.41.605.414-.375.903.718 1.113.087.058.16.19.239.258.18.137.527.074.732.05 1.16.405 1.385.273 1.395-1.011-.039-.494-.449-.63-.883-.625-.234-.215-.493-.689-.137-.909.195-.23.093-.586.186-.85.566-.253.244-.693.22-1.147.653-.542.297-1.499.575-2.202.015-.337-.366-.596-.6-.776-.147-.147-.268-.606-.522-.62-.522.156-1.015.78-.966 1.337-.24.059-.522-.083-.752-.01-.532.894.059 1.011-1.278 1.397-.586.025-1.186-.38-1.557-.8l-1.322-.435c-.722-.415-.42-.874-.366-1.538-.039-.078-.132-.03-.18-.098.346-.347-2.274-.83-2.323-.947-.136-.093-.707.054-.859.049-.131-.059-.36-.059-.488.014-2.034-.273-.478-.303-.605-1.406-.2-.479-.41-.933-.302-1.475.176-.766.873-1.655 1.293-2.285-.02-.513.58-.933.722-1.377.161-1.465-.654-.766-1.18-1.865-.308.107-.64.693-.986.21-.05-.01-.893-.85-.962-.816-.073-.097-.19-.625-.331-.683-.254-.152-2.323-1.275-2.333-1.646-.453-.01-1.605-.063-2.064-.156a.
|
|
381
|
+
d: "M32.228 3.753c-.268-.6-.658-.522-1.112-.16-.132.302-.122.458-.503.458-.385.015-1.107.04-1.42-.2-.083-.132-.122-.342-.224-.44-.205-.014-.508-.146-.688-.112-.273.049-.766.069-.883.337-.556.127-.596.376-.927.669-.38.117-1.913.254-2.206.049.015-.65-.551-.39-.941-.479-.303-.268-.371.523-.83.64.015.02-.634.083-.449.127-.8.088-.737.151-1.498-.293.425.107.522-.269.62-.59-.405.028-.986.248-1.356.395-.04.048-.513.205-.293.258.073.05.395.313.488.298.127-.02.185.127.283.19-.161-.146-.161-.19-.396-.219-.502-.42-.473-.293-.922.083.171.107.4.23.225.454-.093.069-.215-.03-.298.044-.063.112.103.2.108.298l.2-.024s-.21.024-.2.024c.048.117-.176.254-.225.308a.44.44 0 0 1-.268-.088c-.02.151.024.449.063.556.005.122.195.078.244.088l-.2-.005c-.098-.16-.102-.478-.107-.64-.23-.15-.527-.117-.322.172.283.239-.034.546-.166.727-.351.21-.869.093-1.205.103-.532.014-.815.547-1.118.078-.795-.18-.79-.503-.478-1.099-.234.044-.517.044-.664-.093-.414-.17-1.01.225-1.346-.083-.132-.063-.269.025-.337.083-.488.044-.005.513-.01.752-.146.313-.531.464-.805.498.054.596-.395.328-.673 1.07-.405.498 1.352.005 1.415.088.254-.225.434.078.6.21.244.214.01.473-.215.498-.122.024-.253.254-.307.317-.532.054-.512.781-.444 1.113-.537.362-1.23.909-1.464 1.416-.254.25-.863.855-1.161.86.024.21.044.356-.166.405-.259.371-.434.078-.683.669.464.576-.707 1.113-.966 1.382-.503.141-1.61.493-1.937.776-.537 1.5.59.386-.298 2.495-.044.108.034.22.078.279.395.459-.283.923-.63 1.054-.243.41-1.048.801-1.341.967-.127.118-1.903 1.72-1.835 1.753-.043.22.264.484.337.576-.395.44-.761 1.128-1.059 1.563.015.24.132.479.064.688-.498.376 1.498.43.658 1.714-.2.381-.312.88-.312 1.255.088.25-.156.342-.317.366-.122.06-.259-.078-.307-.019-.347.21-1.127.405-1.098.786.473.747.351.46.049 1.245.356-.278.99-.337 1.424-.337.327.196.508.205.825-.014.37-.63 1.283-1.099 1.752-1.617-.088-.776-.093-.249-.488-.42-.113-.131-.166-.405-.22-.561-.19.479-.703 1.318-1.127 1.616.03-.17.102-.366.249-.473l.083-.68c.136-.58 1.737-3.027 2.166-3.47.132-.133.874-.182 1.05-.216.287-.112.834-.727 1.136-.8.98-.294 2.508.375 3.396.707.542.21 1.605.4 1.874 1.002-.19.37-.474.375-.844.37-.035-.019.078.127.073.127.005-.2-.961-.253-1.074-.302l.01.127c.132.425-.39.713-.463 1.074 1.322 1.924 1 .771.302 2.876-.512 1.626 1.04.581 1.156 1.455-.087.161-.268.308-.185.513.03.102-.034.249-.01.346-.049.093.01.171.098.215.18.074.249-.16.405-.19.317.083 1.151 1.01 1.23 1.309.248.776.326 1.054.936 1.65.844.62 1.937-.02 2.728-.415.917.2 1.37.024 2.064-.576.429-.235.658-.064.888-.576.122-.23 1.297.195 1.468.214.264.113.513.425.635.674.156.098.317-.02.473-.034.337.18.878.225 1.234.288.4-.132-.058-.513.483-.464-.063-1.181 1.269-.542 1.6-1.299.328-.424.015-1.171.45-1.499.814-.034 1.356-1.045 1.166-1.787l-.366-.713c-.132-.107-.42-.283-.283-.473.215-.425.732-.616 1.17-.67.547-.356.68-.976 1.362-1.279.18-.18.293-.444.064-.634.146-.513.756-.752 1.234-.81 1.005-.25.722 1.151.708 1.747-.244 1.197-.66 2.149.834 2.617.346.254.912 1.353 1.259 1.592.42.088.951.762 1.312.215.142-.107.22.073.274.171.214.19.62.005.858.151.542.454.127.865-.224 1.275.005.053-.264.58-.278.635.268-.01.878.327 1.112.463.132.088.234.323.288.464.156.215.327.596.386.855.082.332-.113.693-.147 1.016.542-.284.752.048 1.269.102.4-.42 1.298-1.694.224-1.826-.205-.064-.278-.386-.336-.562-.064-.097-.235-.185-.127-.312.76-.532.063-.61.239-1.206.59-.503.941-.2.82-1.197-.03-.503.96-1.093 1.273-1.377.054-.166.083-.405.264-.483.395-.103.497-.708.59-1.035.18-.366.517-.977.424-1.392-.029-.19-.22-.703-.166-.893.04-.196.059-.445-.156-.528-.258-.312.044-.815.19-1.118.196-.298.781-.342 1.089-.23-.069.225.239.489.42.567.268-.068.219-.513.619-.576.18.395-.049 2.002.215 2.31.36.078.532.6.63.898.287.688 1.565.474 2.131.517.517-.136.395-.502.44-.908.492-.542.136.63 1.81-.444 2.04-.352 1.058.757 1.698 1.49.346.238.722.688.624 1.151.561.074 1.79-.37 1.283-1.079-1.654-1.474.259-1.367-.156-2.407-.453-.2-1.751-.205-1.112-.957-.376-.21-.098-.727-.156-1.06 0-.283.366-.473.493-.698-.005-.097.185-.644.21-.722.273-.142 1.307-.454 1.614-.41.605.414-.375.903.718 1.113.087.058.16.19.239.258.18.137.527.074.732.05 1.16.405 1.385.273 1.395-1.011-.039-.494-.449-.63-.883-.625-.234-.215-.493-.689-.137-.909.195-.23.093-.586.186-.85.566-.253.244-.693.22-1.147.653-.542.297-1.499.575-2.202.015-.337-.366-.596-.6-.776-.147-.147-.268-.606-.522-.62-.522.156-1.015.78-.966 1.337-.24.059-.522-.083-.752-.01-.532.894.059 1.011-1.278 1.397-.586.025-1.186-.38-1.557-.8l-1.322-.435c-.722-.415-.42-.874-.366-1.538-.039-.078-.132-.03-.18-.098.346-.347-2.274-.83-2.323-.947-.136-.093-.707.054-.859.049-.131-.059-.36-.059-.488.014-2.034-.273-.478-.303-.605-1.406-.2-.479-.41-.933-.302-1.475.176-.766.873-1.655 1.293-2.285-.02-.513.58-.933.722-1.377.161-1.465-.654-.766-1.18-1.865-.308.107-.64.693-.986.21-.05-.01-.893-.85-.962-.816-.073-.097-.19-.625-.331-.683-.254-.152-2.323-1.275-2.333-1.646-.453-.01-1.605-.063-2.064-.156a.86.86 0 0 0-.434.308c-.512.23-1.21.288-1.615-.171-.205-.176-.273-.337.059-.362-.259-.258-.664-.62-1.06-.556-.033.117-.175.4-.009.473-.77-.005-.541.176-.864-.522.025-.132.196-.322.24-.444-.044-.171-.171-.25-.342-.181-.254-.02-.278-.415-.44-.571-.428-.289-.19.859-.609.478-.049-.17-.049-.425-.073-.596-.293-.18-.947-.21-.625.284-.244.185-.844.16-1.093.288-.351.425-.146.835-.76 1.05-.21.146-.098.37-.05.566-.087.176-.102.225.113.273 1.288.923.736-.112 2.176 0 .083.04.21.103.307.098-.044.03.005.581-.151.4.02-.166-.068-.185-.18-.078-.04.078-.025.186.014.26.01.092-.015.229 0 .321.02.215-.244.454-.376.171",
|
|
364
382
|
opacity: 0.5
|
|
365
383
|
})), _path2$O || (_path2$O = /*#__PURE__*/React.createElement("path", {
|
|
366
384
|
stroke: "#6B6960",
|
|
@@ -373,7 +391,7 @@ const SvgChMap = props => /*#__PURE__*/React.createElement("svg", _extends$1L({
|
|
|
373
391
|
strokeLinecap: "round",
|
|
374
392
|
strokeLinejoin: "round",
|
|
375
393
|
strokeWidth: 1.5,
|
|
376
|
-
d: "M21 5.967c0 2.733-3.406 6.593-4.596 7.86a.556.556 0 0 1-.808 0C14.406 12.56 11 8.703 11 5.966a4.95 4.95 0 0 1 1.464-3.512A5.
|
|
394
|
+
d: "M21 5.967c0 2.733-3.406 6.593-4.596 7.86a.556.556 0 0 1-.808 0C14.406 12.56 11 8.703 11 5.966a4.95 4.95 0 0 1 1.464-3.512A5.02 5.02 0 0 1 16 1c1.326 0 2.598.523 3.535 1.455A4.95 4.95 0 0 1 21 5.967"
|
|
377
395
|
})));
|
|
378
396
|
|
|
379
397
|
var _path$1o;
|
|
@@ -510,7 +528,7 @@ const SvgComment = props => /*#__PURE__*/React.createElement("svg", _extends$1D(
|
|
|
510
528
|
stroke: "#22211D",
|
|
511
529
|
strokeLinecap: "round",
|
|
512
530
|
strokeLinejoin: "round",
|
|
513
|
-
d: "M21.331 10.
|
|
531
|
+
d: "M21.331 10.477A7 7 0 0 0 21.5 9C21.5 4.306 16.8.5 11 .5S.5 4.306.5 9a7.74 7.74 0 0 0 3.018 5.959L1.5 19.5l5.637-2.6c.771.243 1.564.41 2.368.5"
|
|
514
532
|
})));
|
|
515
533
|
|
|
516
534
|
var _g$g;
|
|
@@ -825,7 +843,7 @@ const SvgEditArticle = props => /*#__PURE__*/React.createElement("svg", _extends
|
|
|
825
843
|
stroke: "#fff",
|
|
826
844
|
strokeLinecap: "round",
|
|
827
845
|
strokeLinejoin: "round",
|
|
828
|
-
d: "m22.88 15.12-7.63 7.63-3.75.75.75-3.75 7.63-7.63a2.114 2.114 0 0 1 2.992 0l.008.008a2.
|
|
846
|
+
d: "m22.88 15.12-7.63 7.63-3.75.75.75-3.75 7.63-7.63a2.114 2.114 0 0 1 2.992 0l.008.008a2.11 2.11 0 0 1 0 2.992M8.5 23.5h-7a1 1 0 0 1-1-1v-21a1 1 0 0 1 1-1h13.293a1 1 0 0 1 .707.293L19.207 4.5a1 1 0 0 1 .293.707V8.5M4.5 8.5H14M4.5 11.5H14M4.5 5.5h7M4.5 14.5H12M4.5 17.5h4"
|
|
829
847
|
})));
|
|
830
848
|
|
|
831
849
|
var _path$1a;
|
|
@@ -886,7 +904,7 @@ const SvgEdith = props => /*#__PURE__*/React.createElement("svg", _extends$1p({
|
|
|
886
904
|
d: "M32.873 13.95 31.399 15.1l1.096 1.403 1.474-1.152z"
|
|
887
905
|
})), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
|
|
888
906
|
fill: "#4E4D47",
|
|
889
|
-
d: "M33.05 14.99c.1.54-.14.72-.7.54-.01.01-.17-.41.09-.61.18-.15.38-.12.61.07M8 28.3c.36.54.8 1.02 1.33 1.44 1.02.79 2.77.92 3.74-.05 1.02-1.03 1.12-2.8 1.16-4.16.05-1.51-.08-3.25-1.01-4.51-1.07-1.46-3.17-1.58-4.84-1.58-.27 0-.54.01-.79.08-1.03.31-1.06 1.69-1.09 2.56-.04 1.35.23 2.77.57 4.08.21.77.51 1.49.93 2.14m17.33 2.68c1.5.05 2.7-.53 3.67-1.76.91-1.16 2.06-4.57 2.11-6.1.09-2.99-2-2.72-5.05-2.
|
|
907
|
+
d: "M33.05 14.99c.1.54-.14.72-.7.54-.01.01-.17-.41.09-.61.18-.15.38-.12.61.07M8 28.3c.36.54.8 1.02 1.33 1.44 1.02.79 2.77.92 3.74-.05 1.02-1.03 1.12-2.8 1.16-4.16.05-1.51-.08-3.25-1.01-4.51-1.07-1.46-3.17-1.58-4.84-1.58-.27 0-.54.01-.79.08-1.03.31-1.06 1.69-1.09 2.56-.04 1.35.23 2.77.57 4.08.21.77.51 1.49.93 2.14m17.33 2.68c1.5.05 2.7-.53 3.67-1.76.91-1.16 2.06-4.57 2.11-6.1.09-2.99-2-2.72-5.05-2.82s-6 2.42-6.09 5.41c-.12 3.72 1.87 5.16 5.36 5.27M2.9 18.49s4.12-.78 7.99-.02c2.62.51 3.5 2.13 5.08 3.07.76.45 1.74.46 2.59.03 1.66-.85 4.55-2.16 7.15-2.5 3.91-.52 9.25.69 9.25.69s.11 1.79-.07 2.18-.96.01-1.29.28-.94 1.44-1.23 1.55-.4.31-.4.31-.4 1.58-.58 2.09-1.32 5.48-5.37 5.75-5.56-1.48-5.56-1.48-1.37-1.27-1.36-3.5c0-1.6-.21-2.63-.46-2.95-.25-.33-.94-.63-1.49-.57-.54-.1-1.25.16-1.52.47s-.54 1.31-.64 2.92c-.13 2.22-1.06 3.43-1.06 3.43s-.89 1.03-2.87.93c-4.05-.19-4.86-5.55-5-6.08s-.45-2.12-.45-2.12-.09-.2-.38-.33-.83-1.33-1.13-1.62c-.31-.29-1.12.05-1.27-.36-.14-.39.07-2.17.07-2.17"
|
|
890
908
|
})), _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
|
|
891
909
|
fill: "#4E4D47",
|
|
892
910
|
d: "M34.89 21.93s4.74-.17 5.83.8c1.08.96 1.35 1.67 1.35 1.67s1.08-.06.68-1.24c-.41-1.18-1.14-1.91-2.68-2.09-1.53-.17-5.11-1.31-5.11-1.31z"
|
|
@@ -920,7 +938,7 @@ const SvgError = props => /*#__PURE__*/React.createElement("svg", _extends$1n({
|
|
|
920
938
|
stroke: "#4E4D47",
|
|
921
939
|
strokeLinecap: "round",
|
|
922
940
|
strokeLinejoin: "round",
|
|
923
|
-
d: "m1.62 21.902 9.528-19.341c.084-.17.207-.312.357-.41.15-.099.32-.151.495-.151.174 0 .345.052.495.15.15.1.273.241.357.41l9.529 19.342a1.
|
|
941
|
+
d: "m1.62 21.902 9.528-19.341c.084-.17.207-.312.357-.41.15-.099.32-.151.495-.151.174 0 .345.052.495.15.15.1.273.241.357.41l9.529 19.342a1.18 1.18 0 0 1-.017 1.069 1.03 1.03 0 0 1-.354.387.9.9 0 0 1-.48.142H2.47a.9.9 0 0 1-.48-.142 1.03 1.03 0 0 1-.354-.387 1.177 1.177 0 0 1-.016-1.068M12 10v7"
|
|
924
942
|
})), _path2$H || (_path2$H = /*#__PURE__*/React.createElement("path", {
|
|
925
943
|
stroke: "#4E4D47",
|
|
926
944
|
strokeLinecap: "round",
|
|
@@ -940,7 +958,7 @@ const SvgExclamationMark = props => /*#__PURE__*/React.createElement("svg", _ext
|
|
|
940
958
|
stroke: "#4E4D47",
|
|
941
959
|
strokeLinecap: "round",
|
|
942
960
|
strokeLinejoin: "round",
|
|
943
|
-
d: "M23.5 11.802A11.
|
|
961
|
+
d: "M23.5 11.802A11.67 11.67 0 0 1 12 23.5 11.33 11.33 0 0 1 .5 12.2 11.667 11.667 0 0 1 12 .5a11.33 11.33 0 0 1 11.5 11.301M12 14.005v-7"
|
|
944
962
|
})), _path2$G || (_path2$G = /*#__PURE__*/React.createElement("path", {
|
|
945
963
|
stroke: "#4E4D47",
|
|
946
964
|
strokeLinecap: "round",
|
|
@@ -959,7 +977,7 @@ const SvgExternalLink = props => /*#__PURE__*/React.createElement("svg", _extend
|
|
|
959
977
|
}, props), _path$15 || (_path$15 = /*#__PURE__*/React.createElement("path", {
|
|
960
978
|
fill: "#22211D",
|
|
961
979
|
fillRule: "evenodd",
|
|
962
|
-
d: "M7 6a.5.5 0 0 0 0 1h9.793L6.646 17.146a.5.5 0 0 0 .708.708L17.5 7.707V17.5a.5.5 0 0 0 1
|
|
980
|
+
d: "M7 6a.5.5 0 0 0 0 1h9.793L6.646 17.146a.5.5 0 0 0 .708.708L17.5 7.707V17.5a.5.5 0 0 0 1 0V6H7",
|
|
963
981
|
clipRule: "evenodd"
|
|
964
982
|
})));
|
|
965
983
|
|
|
@@ -976,7 +994,7 @@ const SvgEye = props => /*#__PURE__*/React.createElement("svg", _extends$1k({
|
|
|
976
994
|
}, props), _path$14 || (_path$14 = /*#__PURE__*/React.createElement("path", {
|
|
977
995
|
strokeLinecap: "round",
|
|
978
996
|
strokeLinejoin: "round",
|
|
979
|
-
d: "M2.036 12.322a1
|
|
997
|
+
d: "M2.036 12.322a1 1 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z"
|
|
980
998
|
})), _path2$F || (_path2$F = /*#__PURE__*/React.createElement("path", {
|
|
981
999
|
strokeLinecap: "round",
|
|
982
1000
|
strokeLinejoin: "round",
|
|
@@ -996,7 +1014,7 @@ const SvgEyeSlash = props => /*#__PURE__*/React.createElement("svg", _extends$1j
|
|
|
996
1014
|
}, props), _path$13 || (_path$13 = /*#__PURE__*/React.createElement("path", {
|
|
997
1015
|
strokeLinecap: "round",
|
|
998
1016
|
strokeLinejoin: "round",
|
|
999
|
-
d: "M3.98 8.223A10.
|
|
1017
|
+
d: "M3.98 8.223A10.5 10.5 0 0 0 1.934 12c1.292 4.338 5.31 7.5 10.066 7.5.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0 1 12 4.5c4.756 0 8.773 3.162 10.065 7.498a10.52 10.52 0 0 1-4.293 5.774M6.228 6.228 3 3m3.228 3.228 3.65 3.65m7.894 7.894L21 21m-3.228-3.228-3.65-3.65m0 0a3 3 0 1 0-4.243-4.243m4.242 4.242L9.88 9.88"
|
|
1000
1018
|
})));
|
|
1001
1019
|
|
|
1002
1020
|
var _path$12;
|
|
@@ -1027,7 +1045,7 @@ const SvgFavorite = props => /*#__PURE__*/React.createElement("svg", _extends$1h
|
|
|
1027
1045
|
stroke: "#fff",
|
|
1028
1046
|
strokeLinecap: "round",
|
|
1029
1047
|
strokeLinejoin: "round",
|
|
1030
|
-
d: "M10.91 1.56A1.
|
|
1048
|
+
d: "M10.91 1.56A1.14 1.14 0 0 1 12 .75a1.14 1.14 0 0 1 1.09.81l2.326 7.73h6.696a1.14 1.14 0 0 1 1.084.79 1.13 1.13 0 0 1-.423 1.272l-5.08 3.622 2.265 6.779a1.135 1.135 0 0 1-1.092 1.497 1.14 1.14 0 0 1-.673-.229L12 18.384 5.807 23.02a1.14 1.14 0 0 1-1.769-.559c-.074-.23-.073-.48.004-.71l2.264-6.778-5.079-3.622a1.137 1.137 0 0 1 .66-2.062h6.697z"
|
|
1031
1049
|
})));
|
|
1032
1050
|
|
|
1033
1051
|
var _path$10;
|
|
@@ -1042,11 +1060,11 @@ const SvgFavoriteRemoved = props => /*#__PURE__*/React.createElement("svg", _ext
|
|
|
1042
1060
|
stroke: "#fff",
|
|
1043
1061
|
strokeLinecap: "round",
|
|
1044
1062
|
strokeLinejoin: "round",
|
|
1045
|
-
d: "M10.91 1.56A1.
|
|
1063
|
+
d: "M10.91 1.56A1.14 1.14 0 0 1 12 .75a1.14 1.14 0 0 1 1.09.81l2.326 7.73h6.696a1.14 1.14 0 0 1 1.084.79 1.13 1.13 0 0 1-.423 1.272l-5.08 3.622 2.265 6.779a1.135 1.135 0 0 1-1.092 1.497 1.14 1.14 0 0 1-.673-.229L12 18.384 5.807 23.02a1.14 1.14 0 0 1-1.769-.559c-.074-.23-.073-.48.004-.71l2.264-6.778-5.079-3.622a1.137 1.137 0 0 1 .66-2.062h6.697z"
|
|
1046
1064
|
})), /*#__PURE__*/React.createElement("path", {
|
|
1047
1065
|
fill: "currentColor",
|
|
1048
1066
|
fillRule: "evenodd",
|
|
1049
|
-
d: "M20 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8m2.368-5.162a.5.5 0 1 0-.736-.676l-2.541 2.763-.723-.786a.5.5 0 0 0-.736.677l.834.907a.
|
|
1067
|
+
d: "M20 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8m2.368-5.162a.5.5 0 1 0-.736-.676l-2.541 2.763-.723-.786a.5.5 0 0 0-.736.677l.834.907a.86.86 0 0 0 .625.277.84.84 0 0 0 .625-.278z",
|
|
1050
1068
|
style: {
|
|
1051
1069
|
stroke: "none"
|
|
1052
1070
|
}
|
|
@@ -1167,20 +1185,20 @@ const SvgGlobiLogo = props => /*#__PURE__*/React.createElement("svg", _extends$1
|
|
|
1167
1185
|
stroke: "#4E4D47",
|
|
1168
1186
|
strokeLinecap: "round",
|
|
1169
1187
|
strokeMiterlimit: 10,
|
|
1170
|
-
d: "m29.93 41.94 2.45 4.01M13.61 43.8s4.03-4.4 4.15-5.
|
|
1188
|
+
d: "m29.93 41.94 2.45 4.01M13.61 43.8s4.03-4.4 4.15-5.41-9.09-4.36-7.09-15.58 14.49-9.97 14.49-9.97 4-.18 5.76 3.51"
|
|
1171
1189
|
})), _path2$C || (_path2$C = /*#__PURE__*/React.createElement("path", {
|
|
1172
1190
|
stroke: "#4E4D47",
|
|
1173
1191
|
strokeLinejoin: "round",
|
|
1174
1192
|
strokeMiterlimit: 10,
|
|
1175
|
-
d: "M24.55 40.12c6.91 2.55 7.22 1.13 7.22 1.13-6.97-5.88-7.82-10.4-7.82-10.4 1.75 1.66 5.26 2.65 8.42 1.55.18-.06.37-.13.55-.19 4.32-1.41 9.28-1.96 9.28-1.96.91-9.68-1.33-11.35-4.85-13.
|
|
1193
|
+
d: "M24.55 40.12c6.91 2.55 7.22 1.13 7.22 1.13-6.97-5.88-7.82-10.4-7.82-10.4 1.75 1.66 5.26 2.65 8.42 1.55.18-.06.37-.13.55-.19 4.32-1.41 9.28-1.96 9.28-1.96.91-9.68-1.33-11.35-4.85-13.01S29.16 17 29.16 17c.02-.25-1.26 13.84-6.79 13.95-3.62.08 2.18 9.17 2.18 9.17Z"
|
|
1176
1194
|
})), _path3$j || (_path3$j = /*#__PURE__*/React.createElement("path", {
|
|
1177
1195
|
stroke: "#4E4D47",
|
|
1178
1196
|
strokeLinecap: "round",
|
|
1179
1197
|
strokeMiterlimit: 10,
|
|
1180
|
-
d: "M21.22 27.73c2.12 0 3.84-2.1 3.84-4.
|
|
1198
|
+
d: "M21.22 27.73c2.12 0 3.84-2.1 3.84-4.69s-1.72-4.69-3.84-4.69-3.84 2.1-3.84 4.69 1.72 4.69 3.84 4.69Z"
|
|
1181
1199
|
})), _path4$6 || (_path4$6 = /*#__PURE__*/React.createElement("path", {
|
|
1182
1200
|
fill: "#4E4D47",
|
|
1183
|
-
d: "M13.37 14.04s-2.22.53-3.97.
|
|
1201
|
+
d: "M13.37 14.04s-2.22.53-3.97.48-6.49-.53-5.15 4.87c1.33 5.41 6.43 3.43 6.43 3.43s8.88-9.02 14.38-10.33c0 0 3.08-4.22-.26-6.06s-5.34-.65-5.34-.65-1.91.53-2.08 3.21-2.21 4.34-2.21 4.34l-2.31-2.85-1.03.83zM21.31 26.22c.585 0 1.06-.748 1.06-1.67s-.475-1.67-1.06-1.67-1.06.748-1.06 1.67.475 1.67 1.06 1.67"
|
|
1184
1202
|
})), _path5$4 || (_path5$4 = /*#__PURE__*/React.createElement("path", {
|
|
1185
1203
|
stroke: "#4E4D47",
|
|
1186
1204
|
strokeLinecap: "round",
|
|
@@ -1368,9 +1386,9 @@ const SvgInvisible = props => /*#__PURE__*/React.createElement("svg", _extends$1
|
|
|
1368
1386
|
strokeLinejoin: "round",
|
|
1369
1387
|
strokeWidth: 1.5
|
|
1370
1388
|
}, /*#__PURE__*/React.createElement("path", {
|
|
1371
|
-
d: "m2.783 21 18.75-18M8.964 19.
|
|
1389
|
+
d: "m2.783 21 18.75-18M8.964 19.051A10 10 0 0 0 12 19.5c4.1.069 8.258-2.813 10.824-5.637.57-.633.57-1.593 0-2.226A20.6 20.6 0 0 0 19.75 8.88m-5.337-2.598A9.6 9.6 0 0 0 12 6c-4.031-.067-8.2 2.752-10.821 5.635a1.663 1.663 0 0 0 0 2.226 21 21 0 0 0 2.6 2.4"
|
|
1372
1390
|
}), /*#__PURE__*/React.createElement("path", {
|
|
1373
|
-
d: "M8.25 12.75A3.
|
|
1391
|
+
d: "M8.25 12.75A3.75 3.75 0 0 1 12 9m3.75 3.749A3.75 3.75 0 0 1 12 16.5"
|
|
1374
1392
|
}))));
|
|
1375
1393
|
|
|
1376
1394
|
var _path$R;
|
|
@@ -1400,7 +1418,7 @@ const SvgLink = props => /*#__PURE__*/React.createElement("svg", _extends$11({
|
|
|
1400
1418
|
stroke: "#22211D",
|
|
1401
1419
|
strokeLinecap: "round",
|
|
1402
1420
|
strokeLinejoin: "round",
|
|
1403
|
-
d: "M13.5 14a2 2 0 0 0 2 2h5a3.
|
|
1421
|
+
d: "M13.5 14a2 2 0 0 0 2 2h5a3.01 3.01 0 0 0 3-3v-2a3.01 3.01 0 0 0-3-3h-5a2 2 0 0 0-2 2M10.5 14a2 2 0 0 1-2 2h-5a3.01 3.01 0 0 1-3-3v-2a3.01 3.01 0 0 1 3-3h5a2 2 0 0 1 2 2M6.5 11.999h11"
|
|
1404
1422
|
})));
|
|
1405
1423
|
|
|
1406
1424
|
var _path$P, _path2$x;
|
|
@@ -1464,7 +1482,7 @@ const SvgLiveticker = props => /*#__PURE__*/React.createElement("svg", _extends$
|
|
|
1464
1482
|
strokeLinecap: "round",
|
|
1465
1483
|
strokeLinejoin: "round",
|
|
1466
1484
|
strokeWidth: 1.5,
|
|
1467
|
-
d: "M20 9.237v2.833a9.
|
|
1485
|
+
d: "M20 9.237v2.833a9.93 9.93 0 0 0 1.667 5.5 9.93 9.93 0 0 0 1.666-5.5V9.237M10 9.237v6.666a1.666 1.666 0 0 0 1.667 1.667h1.666M30 17.57h-1.667a1.666 1.666 0 0 1-1.666-1.667v-5a1.667 1.667 0 0 1 1.666-1.666H30M26.667 14.237H30M10.833 25.903a1.667 1.667 0 1 0 0-3.333 1.667 1.667 0 0 0 0 3.333M15.833 22.57h12.5M15.833 25.903H22.5M10.833 34.237a1.667 1.667 0 1 0 0-3.334 1.667 1.667 0 0 0 0 3.334M15.833 30.903H25M15.833 34.237h10.834M5 5.903h30M30 .903v5"
|
|
1468
1486
|
})));
|
|
1469
1487
|
|
|
1470
1488
|
var _g$a, _defs$1;
|
|
@@ -1541,7 +1559,7 @@ const SvgMaterialBox = props => /*#__PURE__*/React.createElement("svg", _extends
|
|
|
1541
1559
|
stroke: "#22211D",
|
|
1542
1560
|
strokeLinecap: "round",
|
|
1543
1561
|
strokeLinejoin: "round",
|
|
1544
|
-
d: "M12.9 23.
|
|
1562
|
+
d: "M12.9 23.314a1 1 0 0 1-.8.013L1.115 18.751a1 1 0 0 1-.615-.923V6.15a1 1 0 0 1 .6-.917L11.6.668a1 1 0 0 1 .8 0l10.5 4.565a1 1 0 0 1 .6.917v11.7a1 1 0 0 1-.586.911zM12.5 10.494v12.921M12.5 10.494l10.819-4.917"
|
|
1545
1563
|
})), _path2$u || (_path2$u = /*#__PURE__*/React.createElement("path", {
|
|
1546
1564
|
stroke: "#22211D",
|
|
1547
1565
|
strokeLinecap: "round",
|
|
@@ -1561,7 +1579,7 @@ const SvgMegaphon = props => /*#__PURE__*/React.createElement("svg", _extends$V(
|
|
|
1561
1579
|
stroke: "#fff",
|
|
1562
1580
|
strokeLinecap: "round",
|
|
1563
1581
|
strokeLinejoin: "round",
|
|
1564
|
-
d: "M7.5 6.9v8.655a7.
|
|
1582
|
+
d: "M7.5 6.9v8.655a7.19 7.19 0 0 0 4 6.445"
|
|
1565
1583
|
})), _path2$t || (_path2$t = /*#__PURE__*/React.createElement("path", {
|
|
1566
1584
|
stroke: "#fff",
|
|
1567
1585
|
strokeLinecap: "round",
|
|
@@ -1604,12 +1622,12 @@ const SvgModerate = props => /*#__PURE__*/React.createElement("svg", _extends$T(
|
|
|
1604
1622
|
stroke: "#22211D",
|
|
1605
1623
|
strokeLinecap: "round",
|
|
1606
1624
|
strokeLinejoin: "round",
|
|
1607
|
-
d: "M6.5 5.5h11M6.5 9.5H12M13.5 14.5h6M13.5 17.5h6M6.5 13.5h2M7.971 18.673l-6.609 3.076 2.588-5.166a8.
|
|
1625
|
+
d: "M6.5 5.5h11M6.5 9.5H12M13.5 14.5h6M13.5 17.5h6M6.5 13.5h2M7.971 18.673l-6.609 3.076 2.588-5.166a8.61 8.61 0 0 1-3.45-6.7C.5 4.7 5.648.5 12 .5s11.5 4.2 11.5 9.383"
|
|
1608
1626
|
})), _path2$r || (_path2$r = /*#__PURE__*/React.createElement("path", {
|
|
1609
1627
|
stroke: "#22211D",
|
|
1610
1628
|
strokeLinecap: "round",
|
|
1611
1629
|
strokeLinejoin: "round",
|
|
1612
|
-
d: "M9.7 16.381c0 3.108 3.09 5.629 6.9 5.629a8.
|
|
1630
|
+
d: "M9.7 16.381c0 3.108 3.09 5.629 6.9 5.629a8.3 8.3 0 0 0 2.418-.356l3.965 1.846-1.553-3.1a5.17 5.17 0 0 0 2.07-4.019c0-3.109-3.089-5.63-6.9-5.63-3.81 0-6.9 2.521-6.9 5.63"
|
|
1613
1631
|
})));
|
|
1614
1632
|
|
|
1615
1633
|
var _path$H, _path2$q, _path3$f;
|
|
@@ -1721,7 +1739,7 @@ const SvgPeople = props => /*#__PURE__*/React.createElement("svg", _extends$O({
|
|
|
1721
1739
|
strokeLinecap: "round",
|
|
1722
1740
|
strokeLinejoin: "round",
|
|
1723
1741
|
strokeWidth: 1.667,
|
|
1724
|
-
d: "M20 39.167c10.585 0 19.167-8.581 19.167-19.167C39.167 9.415 30.585.833 20 .
|
|
1742
|
+
d: "M20 39.167c10.585 0 19.167-8.581 19.167-19.167C39.167 9.415 30.585.833 20 .833S.833 9.415.833 20 9.414 39.167 20 39.167",
|
|
1725
1743
|
clipRule: "evenodd"
|
|
1726
1744
|
})), _path3$e || (_path3$e = /*#__PURE__*/React.createElement("path", {
|
|
1727
1745
|
stroke: "#6B6960",
|
|
@@ -1775,11 +1793,11 @@ const SvgPodcast = props => /*#__PURE__*/React.createElement("svg", _extends$L({
|
|
|
1775
1793
|
strokeLinejoin: "round",
|
|
1776
1794
|
strokeWidth: 1.67
|
|
1777
1795
|
}, /*#__PURE__*/React.createElement("path", {
|
|
1778
|
-
d: "M10.681 22.427c-3.187-5.021-1.677-11.883 3.523-15.
|
|
1796
|
+
d: "M10.681 22.427c-3.187-5.021-1.677-11.883 3.523-15.063S26.114 5.69 29.3 10.879a11.01 11.01 0 0 1 0 11.548"
|
|
1779
1797
|
}), /*#__PURE__*/React.createElement("path", {
|
|
1780
|
-
d: "M8.165 27.448C2.295 21.088 2.63 11.046 9.172 5.
|
|
1798
|
+
d: "M8.165 27.448C2.295 21.088 2.63 11.046 9.172 5.02S25.61-.502 31.649 6.025c5.536 6.025 5.536 15.397 0 21.423"
|
|
1781
1799
|
}), /*#__PURE__*/React.createElement("path", {
|
|
1782
|
-
d: "M25.443 27.782c.167-1.84-1.175-3.514-3.02-3.682h-4.697a3.36 3.36 0 0 0-3.354 3.348v.334l1.006 8.369c.168 1.673 1.677 3.012 3.355 3.012h2.348c1.678 0 3.187-1.339 3.355-3.012zM19.907 20.92a4.
|
|
1800
|
+
d: "M25.443 27.782c.167-1.84-1.175-3.514-3.02-3.682h-4.697a3.36 3.36 0 0 0-3.354 3.348v.334l1.006 8.369c.168 1.673 1.677 3.012 3.355 3.012h2.348c1.678 0 3.187-1.339 3.355-3.012zM19.907 20.92a4.19 4.19 0 0 0 4.194-4.184 4.19 4.19 0 0 0-4.194-4.184 4.19 4.19 0 0 0-4.193 4.184 4.19 4.19 0 0 0 4.193 4.184"
|
|
1783
1801
|
}))));
|
|
1784
1802
|
|
|
1785
1803
|
var _path$C, _path2$o;
|
|
@@ -1792,14 +1810,14 @@ const SvgPolisMap = props => /*#__PURE__*/React.createElement("svg", _extends$K(
|
|
|
1792
1810
|
viewBox: "0 0 56 36"
|
|
1793
1811
|
}, props), _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
|
|
1794
1812
|
fill: "#B9B7AC",
|
|
1795
|
-
d: "M32.228 3.753c-.268-.6-.658-.522-1.112-.16-.132.302-.122.458-.503.458-.385.015-1.107.04-1.42-.2-.083-.132-.122-.342-.224-.44-.205-.014-.508-.146-.688-.112-.273.049-.766.069-.883.337-.556.127-.596.376-.927.669-.38.117-1.913.254-2.206.049.015-.65-.551-.39-.941-.479-.303-.268-.371.523-.83.64.015.02-.634.083-.449.127-.8.088-.737.151-1.498-.293.425.107.522-.269.62-.59-.405.028-.986.248-1.356.395-.04.048-.513.205-.293.258.073.05.395.313.488.298.127-.02.185.127.283.19-.161-.146-.161-.19-.396-.219-.502-.42-.473-.293-.922.083.171.107.4.23.225.454-.093.069-.215-.03-.298.044-.063.112.103.2.108.298l.2-.024s-.21.024-.2.024c.048.117-.176.254-.225.308a.44.44 0 0 1-.268-.088c-.02.151.024.449.063.556.005.122.195.078.244.088l-.2-.005c-.098-.16-.102-.478-.107-.64-.23-.15-.527-.117-.322.172.283.239-.034.546-.166.727-.351.21-.869.093-1.205.103-.532.014-.815.547-1.118.078-.795-.18-.79-.503-.478-1.099-.234.044-.517.044-.664-.093-.414-.17-1.01.225-1.346-.083-.132-.063-.269.025-.337.083-.488.044-.005.513-.01.752-.146.313-.531.464-.805.498.054.596-.395.328-.673 1.07-.405.498 1.352.005 1.415.088.254-.225.434.078.6.21.244.214.01.473-.215.498-.122.024-.253.254-.307.317-.532.054-.512.781-.444 1.113-.537.362-1.23.909-1.464 1.416-.254.25-.863.855-1.161.86.024.21.044.356-.166.405-.259.371-.434.078-.683.669.464.576-.707 1.113-.966 1.382-.503.141-1.61.493-1.937.776-.537 1.5.59.386-.298 2.495-.044.108.034.22.078.279.395.459-.283.923-.63 1.054-.243.41-1.048.801-1.341.967-.127.118-1.903 1.72-1.835 1.753-.043.22.264.484.337.576-.395.44-.761 1.128-1.059 1.563.015.24.132.479.064.688-.498.376 1.498.43.658 1.714-.2.381-.312.88-.312 1.255.088.25-.156.342-.317.366-.122.06-.259-.078-.307-.019-.347.21-1.127.405-1.098.786.473.747.351.46.049 1.245.356-.278.99-.337 1.424-.337.327.196.508.205.825-.014.37-.63 1.283-1.099 1.752-1.617-.088-.776-.093-.249-.488-.42-.113-.131-.166-.405-.22-.561-.19.479-.703 1.318-1.127 1.616.03-.17.102-.366.249-.473l.083-.68c.136-.58 1.737-3.027 2.166-3.47.132-.133.874-.182 1.05-.216.287-.112.834-.727 1.136-.8.98-.294 2.508.375 3.396.707.542.21 1.605.4 1.874 1.002-.19.37-.474.375-.844.37-.035-.019.078.127.073.127.005-.2-.961-.253-1.074-.302l.01.127c.132.425-.39.713-.463 1.074 1.322 1.924 1 .771.302 2.876-.512 1.626 1.04.581 1.156 1.455-.087.161-.268.308-.185.513.03.102-.034.249-.01.346-.049.093.01.171.098.215.18.074.249-.16.405-.19.317.083 1.151 1.01 1.23 1.309.248.776.326 1.054.936 1.65.844.62 1.937-.02 2.728-.415.917.2 1.37.024 2.064-.576.429-.235.658-.064.888-.576.122-.23 1.297.195 1.468.214.264.113.513.425.635.674.156.098.317-.02.473-.034.337.18.878.225 1.234.288.4-.132-.058-.513.483-.464-.063-1.181 1.269-.542 1.6-1.299.328-.424.015-1.171.45-1.499.814-.034 1.356-1.045 1.166-1.787l-.366-.713c-.132-.107-.42-.283-.283-.473.215-.425.732-.616 1.17-.67.547-.356.68-.976 1.362-1.279.18-.18.293-.444.064-.634.146-.513.756-.752 1.234-.81 1.005-.25.722 1.151.708 1.747-.244 1.197-.66 2.149.834 2.617.346.254.912 1.353 1.259 1.592.42.088.951.762 1.312.215.142-.107.22.073.274.171.214.19.62.005.858.151.542.454.127.865-.224 1.275.005.053-.264.58-.278.635.268-.01.878.327 1.112.463.132.088.234.323.288.464.156.215.327.596.386.855.082.332-.113.693-.147 1.016.542-.284.752.048 1.269.102.4-.42 1.298-1.694.224-1.826-.205-.064-.278-.386-.336-.562-.064-.097-.235-.185-.127-.312.76-.532.063-.61.239-1.206.59-.503.941-.2.82-1.197-.03-.503.96-1.093 1.273-1.377.054-.166.083-.405.264-.483.395-.103.497-.708.59-1.035.18-.366.517-.977.424-1.392-.029-.19-.22-.703-.166-.893.04-.196.059-.445-.156-.528-.258-.312.044-.815.19-1.118.196-.298.781-.342 1.089-.23-.069.225.239.489.42.567.268-.068.219-.513.619-.576.18.395-.049 2.002.215 2.31.36.078.532.6.63.898.287.688 1.565.474 2.131.517.517-.136.395-.502.44-.908.492-.542.136.63 1.81-.444 2.04-.352 1.058.757 1.698 1.49.346.238.722.688.624 1.151.561.074 1.79-.37 1.283-1.079-1.654-1.474.259-1.367-.156-2.407-.453-.2-1.751-.205-1.112-.957-.376-.21-.098-.727-.156-1.06 0-.283.366-.473.493-.698-.005-.097.185-.644.21-.722.273-.142 1.307-.454 1.614-.41.605.414-.375.903.718 1.113.087.058.16.19.239.258.18.137.527.074.732.05 1.16.405 1.385.273 1.395-1.011-.039-.494-.449-.63-.883-.625-.234-.215-.493-.689-.137-.909.195-.23.093-.586.186-.85.566-.253.244-.693.22-1.147.653-.542.297-1.499.575-2.202.015-.337-.366-.596-.6-.776-.147-.147-.268-.606-.522-.62-.522.156-1.015.78-.966 1.337-.24.059-.522-.083-.752-.01-.532.894.059 1.011-1.278 1.397-.586.025-1.186-.38-1.557-.8l-1.322-.435c-.722-.415-.42-.874-.366-1.538-.039-.078-.132-.03-.18-.098.346-.347-2.274-.83-2.323-.947-.136-.093-.707.054-.859.049-.131-.059-.36-.059-.488.014-2.034-.273-.478-.303-.605-1.406-.2-.479-.41-.933-.302-1.475.176-.766.873-1.655 1.293-2.285-.02-.513.58-.933.722-1.377.161-1.465-.654-.766-1.18-1.865-.308.107-.64.693-.986.21-.05-.01-.893-.85-.962-.816-.073-.097-.19-.625-.331-.683-.254-.152-2.323-1.275-2.333-1.646-.453-.01-1.605-.063-2.064-.156a.
|
|
1813
|
+
d: "M32.228 3.753c-.268-.6-.658-.522-1.112-.16-.132.302-.122.458-.503.458-.385.015-1.107.04-1.42-.2-.083-.132-.122-.342-.224-.44-.205-.014-.508-.146-.688-.112-.273.049-.766.069-.883.337-.556.127-.596.376-.927.669-.38.117-1.913.254-2.206.049.015-.65-.551-.39-.941-.479-.303-.268-.371.523-.83.64.015.02-.634.083-.449.127-.8.088-.737.151-1.498-.293.425.107.522-.269.62-.59-.405.028-.986.248-1.356.395-.04.048-.513.205-.293.258.073.05.395.313.488.298.127-.02.185.127.283.19-.161-.146-.161-.19-.396-.219-.502-.42-.473-.293-.922.083.171.107.4.23.225.454-.093.069-.215-.03-.298.044-.063.112.103.2.108.298l.2-.024s-.21.024-.2.024c.048.117-.176.254-.225.308a.44.44 0 0 1-.268-.088c-.02.151.024.449.063.556.005.122.195.078.244.088l-.2-.005c-.098-.16-.102-.478-.107-.64-.23-.15-.527-.117-.322.172.283.239-.034.546-.166.727-.351.21-.869.093-1.205.103-.532.014-.815.547-1.118.078-.795-.18-.79-.503-.478-1.099-.234.044-.517.044-.664-.093-.414-.17-1.01.225-1.346-.083-.132-.063-.269.025-.337.083-.488.044-.005.513-.01.752-.146.313-.531.464-.805.498.054.596-.395.328-.673 1.07-.405.498 1.352.005 1.415.088.254-.225.434.078.6.21.244.214.01.473-.215.498-.122.024-.253.254-.307.317-.532.054-.512.781-.444 1.113-.537.362-1.23.909-1.464 1.416-.254.25-.863.855-1.161.86.024.21.044.356-.166.405-.259.371-.434.078-.683.669.464.576-.707 1.113-.966 1.382-.503.141-1.61.493-1.937.776-.537 1.5.59.386-.298 2.495-.044.108.034.22.078.279.395.459-.283.923-.63 1.054-.243.41-1.048.801-1.341.967-.127.118-1.903 1.72-1.835 1.753-.043.22.264.484.337.576-.395.44-.761 1.128-1.059 1.563.015.24.132.479.064.688-.498.376 1.498.43.658 1.714-.2.381-.312.88-.312 1.255.088.25-.156.342-.317.366-.122.06-.259-.078-.307-.019-.347.21-1.127.405-1.098.786.473.747.351.46.049 1.245.356-.278.99-.337 1.424-.337.327.196.508.205.825-.014.37-.63 1.283-1.099 1.752-1.617-.088-.776-.093-.249-.488-.42-.113-.131-.166-.405-.22-.561-.19.479-.703 1.318-1.127 1.616.03-.17.102-.366.249-.473l.083-.68c.136-.58 1.737-3.027 2.166-3.47.132-.133.874-.182 1.05-.216.287-.112.834-.727 1.136-.8.98-.294 2.508.375 3.396.707.542.21 1.605.4 1.874 1.002-.19.37-.474.375-.844.37-.035-.019.078.127.073.127.005-.2-.961-.253-1.074-.302l.01.127c.132.425-.39.713-.463 1.074 1.322 1.924 1 .771.302 2.876-.512 1.626 1.04.581 1.156 1.455-.087.161-.268.308-.185.513.03.102-.034.249-.01.346-.049.093.01.171.098.215.18.074.249-.16.405-.19.317.083 1.151 1.01 1.23 1.309.248.776.326 1.054.936 1.65.844.62 1.937-.02 2.728-.415.917.2 1.37.024 2.064-.576.429-.235.658-.064.888-.576.122-.23 1.297.195 1.468.214.264.113.513.425.635.674.156.098.317-.02.473-.034.337.18.878.225 1.234.288.4-.132-.058-.513.483-.464-.063-1.181 1.269-.542 1.6-1.299.328-.424.015-1.171.45-1.499.814-.034 1.356-1.045 1.166-1.787l-.366-.713c-.132-.107-.42-.283-.283-.473.215-.425.732-.616 1.17-.67.547-.356.68-.976 1.362-1.279.18-.18.293-.444.064-.634.146-.513.756-.752 1.234-.81 1.005-.25.722 1.151.708 1.747-.244 1.197-.66 2.149.834 2.617.346.254.912 1.353 1.259 1.592.42.088.951.762 1.312.215.142-.107.22.073.274.171.214.19.62.005.858.151.542.454.127.865-.224 1.275.005.053-.264.58-.278.635.268-.01.878.327 1.112.463.132.088.234.323.288.464.156.215.327.596.386.855.082.332-.113.693-.147 1.016.542-.284.752.048 1.269.102.4-.42 1.298-1.694.224-1.826-.205-.064-.278-.386-.336-.562-.064-.097-.235-.185-.127-.312.76-.532.063-.61.239-1.206.59-.503.941-.2.82-1.197-.03-.503.96-1.093 1.273-1.377.054-.166.083-.405.264-.483.395-.103.497-.708.59-1.035.18-.366.517-.977.424-1.392-.029-.19-.22-.703-.166-.893.04-.196.059-.445-.156-.528-.258-.312.044-.815.19-1.118.196-.298.781-.342 1.089-.23-.069.225.239.489.42.567.268-.068.219-.513.619-.576.18.395-.049 2.002.215 2.31.36.078.532.6.63.898.287.688 1.565.474 2.131.517.517-.136.395-.502.44-.908.492-.542.136.63 1.81-.444 2.04-.352 1.058.757 1.698 1.49.346.238.722.688.624 1.151.561.074 1.79-.37 1.283-1.079-1.654-1.474.259-1.367-.156-2.407-.453-.2-1.751-.205-1.112-.957-.376-.21-.098-.727-.156-1.06 0-.283.366-.473.493-.698-.005-.097.185-.644.21-.722.273-.142 1.307-.454 1.614-.41.605.414-.375.903.718 1.113.087.058.16.19.239.258.18.137.527.074.732.05 1.16.405 1.385.273 1.395-1.011-.039-.494-.449-.63-.883-.625-.234-.215-.493-.689-.137-.909.195-.23.093-.586.186-.85.566-.253.244-.693.22-1.147.653-.542.297-1.499.575-2.202.015-.337-.366-.596-.6-.776-.147-.147-.268-.606-.522-.62-.522.156-1.015.78-.966 1.337-.24.059-.522-.083-.752-.01-.532.894.059 1.011-1.278 1.397-.586.025-1.186-.38-1.557-.8l-1.322-.435c-.722-.415-.42-.874-.366-1.538-.039-.078-.132-.03-.18-.098.346-.347-2.274-.83-2.323-.947-.136-.093-.707.054-.859.049-.131-.059-.36-.059-.488.014-2.034-.273-.478-.303-.605-1.406-.2-.479-.41-.933-.302-1.475.176-.766.873-1.655 1.293-2.285-.02-.513.58-.933.722-1.377.161-1.465-.654-.766-1.18-1.865-.308.107-.64.693-.986.21-.05-.01-.893-.85-.962-.816-.073-.097-.19-.625-.331-.683-.254-.152-2.323-1.275-2.333-1.646-.453-.01-1.605-.063-2.064-.156a.86.86 0 0 0-.434.308c-.512.23-1.21.288-1.615-.171-.205-.176-.273-.337.059-.362-.259-.258-.664-.62-1.06-.556-.033.117-.175.4-.009.473-.77-.005-.541.176-.864-.522.025-.132.196-.322.24-.444-.044-.171-.171-.25-.342-.181-.254-.02-.278-.415-.44-.571-.428-.289-.19.859-.609.478-.049-.17-.049-.425-.073-.596-.293-.18-.947-.21-.625.284-.244.185-.844.16-1.093.288-.351.425-.146.835-.76 1.05-.21.146-.098.37-.05.566-.087.176-.102.225.113.273 1.288.923.736-.112 2.176 0 .083.04.21.103.307.098-.044.03.005.581-.151.4.02-.166-.068-.185-.18-.078-.04.078-.025.186.014.26.01.092-.015.229 0 .321.02.215-.244.454-.376.171",
|
|
1796
1814
|
opacity: 0.5
|
|
1797
1815
|
})), _path2$o || (_path2$o = /*#__PURE__*/React.createElement("path", {
|
|
1798
1816
|
stroke: "#6B6960",
|
|
1799
1817
|
strokeLinecap: "round",
|
|
1800
1818
|
strokeLinejoin: "round",
|
|
1801
1819
|
strokeWidth: 1.5,
|
|
1802
|
-
d: "M14 22.2h24M15.714 17.129h3.429c.227 0 .445.089.606.
|
|
1820
|
+
d: "M14 22.2h24M15.714 17.129h3.429c.227 0 .445.089.606.247s.251.373.251.597v4.22h-5.143v-4.22c0-.224.09-.439.251-.597a.86.86 0 0 1 .606-.247M24.286 12.065h3.428c.228 0 .446.088.606.247.161.158.251.373.251.597v9.284H23.43v-9.285c0-.223.09-.438.25-.596a.86.86 0 0 1 .607-.247M32.857 7h3.429c.227 0 .445.089.606.247.16.159.25.373.25.597v14.35H32V7.843c0-.224.09-.438.251-.597A.86.86 0 0 1 32.857 7"
|
|
1803
1821
|
})));
|
|
1804
1822
|
|
|
1805
1823
|
var _path$B, _path2$n, _path3$d;
|
|
@@ -1815,7 +1833,7 @@ const SvgPoll = props => /*#__PURE__*/React.createElement("svg", _extends$J({
|
|
|
1815
1833
|
strokeLinecap: "round",
|
|
1816
1834
|
strokeLinejoin: "round",
|
|
1817
1835
|
strokeWidth: 1.5,
|
|
1818
|
-
d: "M14.167 12.919a6.254 6.254 0 1 1 7.603 6.103 1.
|
|
1836
|
+
d: "M14.167 12.919a6.254 6.254 0 1 1 7.603 6.103 1.68 1.68 0 0 0-1.353 1.625V22.5"
|
|
1819
1837
|
})), _path2$n || (_path2$n = /*#__PURE__*/React.createElement("path", {
|
|
1820
1838
|
fill: "#6B6960",
|
|
1821
1839
|
d: "M20.417 25a.834.834 0 1 1 0 1.668.834.834 0 0 1 0-1.668"
|
|
@@ -1849,7 +1867,7 @@ const SvgPreview = props => /*#__PURE__*/React.createElement("svg", _extends$I({
|
|
|
1849
1867
|
stroke: "#fff",
|
|
1850
1868
|
strokeLinecap: "round",
|
|
1851
1869
|
strokeLinejoin: "round",
|
|
1852
|
-
d: "M18.221 13.814c-.636-.75-3.18-3.507-6.221-3.
|
|
1870
|
+
d: "M18.221 13.814c-.636-.75-3.18-3.507-6.221-3.507s-5.585 2.756-6.221 3.506a.29.29 0 0 0 0 .373c.636.75 3.18 3.507 6.221 3.507s5.585-2.757 6.221-3.507a.29.29 0 0 0 0-.373"
|
|
1853
1871
|
})));
|
|
1854
1872
|
|
|
1855
1873
|
var _path$z, _path2$l;
|
|
@@ -1870,7 +1888,7 @@ const SvgPublish = props => /*#__PURE__*/React.createElement("svg", _extends$H({
|
|
|
1870
1888
|
strokeLinecap: "round",
|
|
1871
1889
|
strokeLinejoin: "round",
|
|
1872
1890
|
strokeWidth: 1.2,
|
|
1873
|
-
d: "m17 8-5.244 7.426c-.117.164-.265.3-.436.399a1.
|
|
1891
|
+
d: "m17 8-5.244 7.426c-.117.164-.265.3-.436.399a1.3 1.3 0 0 1-1.123.084 1.35 1.35 0 0 1-.485-.33L7 12.704"
|
|
1874
1892
|
})));
|
|
1875
1893
|
|
|
1876
1894
|
var _path$y, _path2$k, _path3$b;
|
|
@@ -1886,7 +1904,7 @@ const SvgPublishAndLeave = props => /*#__PURE__*/React.createElement("svg", _ext
|
|
|
1886
1904
|
strokeLinecap: "round",
|
|
1887
1905
|
strokeLinejoin: "round",
|
|
1888
1906
|
strokeWidth: 1.2,
|
|
1889
|
-
d: "M20.5 13.907A4.
|
|
1907
|
+
d: "M20.5 13.907A4.31 4.31 0 0 0 23 9.858a4.71 4.71 0 0 0-4.954-4.635A6.71 6.71 0 0 0 12 1.5a6.605 6.605 0 0 0-6.675 6.11A3.56 3.56 0 0 0 1 11.017 3.186 3.186 0 0 0 3.5 14.3M15 17H4"
|
|
1890
1908
|
})), _path2$k || (_path2$k = /*#__PURE__*/React.createElement("path", {
|
|
1891
1909
|
stroke: "#fff",
|
|
1892
1910
|
strokeLinecap: "round",
|
|
@@ -1898,7 +1916,7 @@ const SvgPublishAndLeave = props => /*#__PURE__*/React.createElement("svg", _ext
|
|
|
1898
1916
|
strokeLinecap: "round",
|
|
1899
1917
|
strokeLinejoin: "round",
|
|
1900
1918
|
strokeWidth: 1.2,
|
|
1901
|
-
d: "M6.5 19.626a6
|
|
1919
|
+
d: "M6.5 19.626a6 6 0 0 0 6.69 3.233 6.004 6.004 0 0 0 4.709-5.747 6 6 0 0 0-4.49-5.918 6.006 6.006 0 0 0-6.807 2.98"
|
|
1902
1920
|
})));
|
|
1903
1921
|
|
|
1904
1922
|
var _path$x;
|
|
@@ -1939,7 +1957,7 @@ const SvgQuestionMark = props => /*#__PURE__*/React.createElement("svg", _extend
|
|
|
1939
1957
|
stroke: "#4E4D47",
|
|
1940
1958
|
strokeLinecap: "round",
|
|
1941
1959
|
strokeLinejoin: "round",
|
|
1942
|
-
d: "M8.143 9.393c0-.635.29-1.132.636-1.677a3.
|
|
1960
|
+
d: "M8.143 9.393c0-.635.29-1.132.636-1.677a3.66 3.66 0 0 1 1.438-1.293 3.95 3.95 0 0 1 1.94-.42c.676.027 1.332.224 1.897.572a3.6 3.6 0 0 1 1.317 1.402 3.33 3.33 0 0 1-.323 3.59c-.393.515-1.036.814-1.655 1.068a2.47 2.47 0 0 0-1.092.865c-.266.382-.301.935-.301 1.392v.483"
|
|
1943
1961
|
})));
|
|
1944
1962
|
|
|
1945
1963
|
var _path$v, _path2$i;
|
|
@@ -1954,7 +1972,7 @@ const SvgQuote = props => /*#__PURE__*/React.createElement("svg", _extends$D({
|
|
|
1954
1972
|
stroke: "#22211D",
|
|
1955
1973
|
strokeLinecap: "round",
|
|
1956
1974
|
strokeLinejoin: "round",
|
|
1957
|
-
d: "M23.492 15.51c0 2.209-1.79 3.999-4 3.
|
|
1975
|
+
d: "M23.492 15.51c0 2.209-1.79 3.999-4 3.996q-3.989-.005-7.978-.006l-4 4v-4l-3.01.003a4.004 4.004 0 0 1-4.01-4.004V5.51c-.001-2.21 1.784-4 3.993-4L19.5 1.507a3.99 3.99 0 0 1 3.992 3.995z"
|
|
1958
1976
|
})), _path2$i || (_path2$i = /*#__PURE__*/React.createElement("path", {
|
|
1959
1977
|
stroke: "#000",
|
|
1960
1978
|
strokeLinecap: "round",
|
|
@@ -1981,7 +1999,7 @@ const SvgRawHtml = props => /*#__PURE__*/React.createElement("svg", _extends$C({
|
|
|
1981
1999
|
strokeLinecap: "round",
|
|
1982
2000
|
strokeLinejoin: "round",
|
|
1983
2001
|
strokeWidth: 1.667,
|
|
1984
|
-
d: "M14.471 8.721v3.071a5.
|
|
2002
|
+
d: "M14.471 8.721v3.071a5.34 5.34 0 0 1-1.563 3.773l-4.1 4.1a1.067 1.067 0 0 0 0 1.51l3.022 3.012a1.066 1.066 0 0 0 1.51 0l4.1-4.1a5.34 5.34 0 0 1 3.772-1.563h3.071"
|
|
1985
2003
|
})), _path3$9 || (_path3$9 = /*#__PURE__*/React.createElement("path", {
|
|
1986
2004
|
stroke: "#6B6960",
|
|
1987
2005
|
strokeLinecap: "round",
|
|
@@ -2028,12 +2046,12 @@ const SvgReply = props => /*#__PURE__*/React.createElement("svg", _extends$A({
|
|
|
2028
2046
|
stroke: "#fff",
|
|
2029
2047
|
strokeLinecap: "round",
|
|
2030
2048
|
strokeLinejoin: "round",
|
|
2031
|
-
d: "M14 14.5h2.947c1.34 0 2.626.474 3.573 1.
|
|
2049
|
+
d: "M14 14.5h2.947c1.34 0 2.626.474 3.573 1.318S22 17.807 22 19v1.5"
|
|
2032
2050
|
})), _path3$8 || (_path3$8 = /*#__PURE__*/React.createElement("path", {
|
|
2033
2051
|
stroke: "#fff",
|
|
2034
2052
|
strokeLinecap: "round",
|
|
2035
2053
|
strokeLinejoin: "round",
|
|
2036
|
-
d: "M21.661 11.
|
|
2054
|
+
d: "M21.661 11.017q.083-.505.089-1.017c0-4.695-4.7-8.5-10.5-8.5S.75 5.306.75 10a7.74 7.74 0 0 0 3.018 5.96L1.75 20.5l5.637-2.6c1.249.4 2.552.602 3.863.6q.834-.005 1.659-.117"
|
|
2037
2055
|
})));
|
|
2038
2056
|
|
|
2039
2057
|
var _path$r;
|
|
@@ -2113,7 +2131,7 @@ const SvgReview = props => /*#__PURE__*/React.createElement("svg", _extends$w({
|
|
|
2113
2131
|
stroke: "#fff",
|
|
2114
2132
|
strokeLinecap: "round",
|
|
2115
2133
|
strokeLinejoin: "round",
|
|
2116
|
-
d: "M8.25 9.742a3.752 3.752 0 1 1 4.562 3.658 1.
|
|
2134
|
+
d: "M8.25 9.742a3.752 3.752 0 1 1 4.562 3.658 1.01 1.01 0 0 0-.812.975v1.113"
|
|
2117
2135
|
})), _circle$4 || (_circle$4 = /*#__PURE__*/React.createElement("circle", {
|
|
2118
2136
|
cx: 12,
|
|
2119
2137
|
cy: 18,
|
|
@@ -2139,7 +2157,7 @@ const SvgReviewRemoved = props => /*#__PURE__*/React.createElement("svg", _exten
|
|
|
2139
2157
|
stroke: "#fff",
|
|
2140
2158
|
strokeLinecap: "round",
|
|
2141
2159
|
strokeLinejoin: "round",
|
|
2142
|
-
d: "M8.25 9.742a3.752 3.752 0 1 1 4.562 3.658 1.
|
|
2160
|
+
d: "M8.25 9.742a3.752 3.752 0 1 1 4.562 3.658 1.01 1.01 0 0 0-.812.975v1.113"
|
|
2143
2161
|
})), _circle$3 || (_circle$3 = /*#__PURE__*/React.createElement("circle", {
|
|
2144
2162
|
cx: 12,
|
|
2145
2163
|
cy: 18,
|
|
@@ -2150,11 +2168,11 @@ const SvgReviewRemoved = props => /*#__PURE__*/React.createElement("svg", _exten
|
|
|
2150
2168
|
stroke: "#fff",
|
|
2151
2169
|
strokeLinecap: "round",
|
|
2152
2170
|
strokeLinejoin: "round",
|
|
2153
|
-
d: "M15.5 1.043A11.
|
|
2171
|
+
d: "M15.5 1.043A11.5 11.5 0 0 0 12 .501C5.649.501.5 5.65.5 12.001s5.149 11.5 11.5 11.5 11.5-5.149 11.5-11.5c0-1.17-.175-2.3-.5-3.365"
|
|
2154
2172
|
})), /*#__PURE__*/React.createElement("path", {
|
|
2155
2173
|
fill: "currentColor",
|
|
2156
2174
|
fillRule: "evenodd",
|
|
2157
|
-
d: "M20 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8m2.368-5.162a.5.5 0 1 0-.736-.676l-2.541 2.763-.723-.786a.5.5 0 0 0-.736.677l.834.907a.
|
|
2175
|
+
d: "M20 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8m2.368-5.162a.5.5 0 1 0-.736-.676l-2.541 2.763-.723-.786a.5.5 0 0 0-.736.677l.834.907a.86.86 0 0 0 .625.277.84.84 0 0 0 .625-.278z",
|
|
2158
2176
|
style: {
|
|
2159
2177
|
stroke: "none"
|
|
2160
2178
|
}
|
|
@@ -2172,7 +2190,7 @@ const SvgRotateBack = props => /*#__PURE__*/React.createElement("svg", _extends$
|
|
|
2172
2190
|
stroke: "#22211D",
|
|
2173
2191
|
strokeLinecap: "round",
|
|
2174
2192
|
strokeLinejoin: "round",
|
|
2175
|
-
d: "M11.357 22.469a9.
|
|
2193
|
+
d: "M11.357 22.469a9.4 9.4 0 0 1-2-.451M7.36 21.056a9.5 9.5 0 0 1-1.577-1.257M4.455 18.136a9.4 9.4 0 0 1-.883-1.792M3.072 14.276a9.4 9.4 0 0 1-.03-2.077M3.455 10.202q.221-.688.547-1.334M10.33 3.618h2.095a9.456 9.456 0 0 1 1.042 18.852"
|
|
2176
2194
|
})), _path2$c || (_path2$c = /*#__PURE__*/React.createElement("path", {
|
|
2177
2195
|
stroke: "#22211D",
|
|
2178
2196
|
strokeLinecap: "round",
|
|
@@ -2192,7 +2210,7 @@ const SvgRotateForward = props => /*#__PURE__*/React.createElement("svg", _exten
|
|
|
2192
2210
|
stroke: "#22211D",
|
|
2193
2211
|
strokeLinecap: "round",
|
|
2194
2212
|
strokeLinejoin: "round",
|
|
2195
|
-
d: "M13.642 22.468a9.
|
|
2213
|
+
d: "M13.642 22.468a9.4 9.4 0 0 0 2-.451M17.64 21.057a9.5 9.5 0 0 0 1.577-1.257M20.545 18.136a9.4 9.4 0 0 0 .883-1.792M21.928 14.275a9.4 9.4 0 0 0 .03-2.077M21.545 10.203a9 9 0 0 0-.548-1.335M14.669 3.618h-2.095a9.456 9.456 0 0 0-1.042 18.852"
|
|
2196
2214
|
})), _path2$b || (_path2$b = /*#__PURE__*/React.createElement("path", {
|
|
2197
2215
|
stroke: "#22211D",
|
|
2198
2216
|
strokeLinecap: "round",
|
|
@@ -2246,7 +2264,7 @@ const SvgSaveAndLeave = props => /*#__PURE__*/React.createElement("svg", _extend
|
|
|
2246
2264
|
strokeLinecap: "round",
|
|
2247
2265
|
strokeLinejoin: "round",
|
|
2248
2266
|
strokeWidth: 1.2,
|
|
2249
|
-
d: "M2 16.6a10.
|
|
2267
|
+
d: "M2 16.6a10.5 10.5 0 0 0 4.885 4.858 10.56 10.56 0 0 0 6.853.8 10.54 10.54 0 0 0 5.878-3.6 10.48 10.48 0 0 0 .245-12.997 10.53 10.53 0 0 0-5.74-3.818 10.56 10.56 0 0 0-6.877.544A10.52 10.52 0 0 0 2.18 7.058"
|
|
2250
2268
|
})));
|
|
2251
2269
|
|
|
2252
2270
|
var _path$i, _path2$8, _path3$4, _path4$2, _path5$1, _path6$1, _path7, _path8, _path9;
|
|
@@ -2265,20 +2283,20 @@ const SvgSchorschLogo = props => /*#__PURE__*/React.createElement("svg", _extend
|
|
|
2265
2283
|
})), _path3$4 || (_path3$4 = /*#__PURE__*/React.createElement("path", {
|
|
2266
2284
|
stroke: "#4E4D47",
|
|
2267
2285
|
strokeMiterlimit: 10,
|
|
2268
|
-
d: "M35.18 18.11c-.98.86-2.89.49-4.26-.
|
|
2286
|
+
d: "M35.18 18.11c-.98.86-2.89.49-4.26-.83s-1.69-3.09-.72-3.95c.98-.86 2.89-.49 4.26.83 1.38 1.32 1.7 3.09.72 3.95Z"
|
|
2269
2287
|
})), _path4$2 || (_path4$2 = /*#__PURE__*/React.createElement("path", {
|
|
2270
2288
|
fill: "#4E4D47",
|
|
2271
|
-
d: "M35.62 18.15c-.69.61-1.83.55-2.54-.13s-.72-1.73-.03-2.
|
|
2289
|
+
d: "M35.62 18.15c-.69.61-1.83.55-2.54-.13s-.72-1.73-.03-2.34 1.83-.55 2.54.13c.71.69.72 1.74.03 2.34"
|
|
2272
2290
|
})), _path5$1 || (_path5$1 = /*#__PURE__*/React.createElement("path", {
|
|
2273
2291
|
fill: "#4E4D47",
|
|
2274
2292
|
stroke: "#4E4D47",
|
|
2275
2293
|
strokeMiterlimit: 10,
|
|
2276
|
-
d: "M36.42 37.14c.26.04.53-.01.78-.1 1.19-.42 4.83-1.69 5.77-1.69 1.13 0 1.64 3.42 1.04 4.7-.61 1.27-1.99 1.03-1.99 1.03l-5.17-2.34c-.3-.14-.63-.19-.96-.15l-6.08.74s-2.34-.16-1.47-2.
|
|
2294
|
+
d: "M36.42 37.14c.26.04.53-.01.78-.1 1.19-.42 4.83-1.69 5.77-1.69 1.13 0 1.64 3.42 1.04 4.7-.61 1.27-1.99 1.03-1.99 1.03l-5.17-2.34c-.3-.14-.63-.19-.96-.15l-6.08.74s-2.34-.16-1.47-2.47 1.3-1.83 2.42-1.51c1.05.3 3.87 1.55 5.66 1.79Z"
|
|
2277
2295
|
})), _path6$1 || (_path6$1 = /*#__PURE__*/React.createElement("path", {
|
|
2278
2296
|
fill: "#4E4D47",
|
|
2279
2297
|
stroke: "#4E4D47",
|
|
2280
2298
|
strokeMiterlimit: 10,
|
|
2281
|
-
d: "M36.39 39.25c.878 0 1.59-.658 1.59-1.
|
|
2299
|
+
d: "M36.39 39.25c.878 0 1.59-.658 1.59-1.47s-.712-1.47-1.59-1.47-1.59.658-1.59 1.47.712 1.47 1.59 1.47Z"
|
|
2282
2300
|
})), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
|
|
2283
2301
|
fill: "#4E4D47",
|
|
2284
2302
|
stroke: "#4E4D47",
|
|
@@ -2290,7 +2308,7 @@ const SvgSchorschLogo = props => /*#__PURE__*/React.createElement("svg", _extend
|
|
|
2290
2308
|
fill: "#fff",
|
|
2291
2309
|
stroke: "#4E4D47",
|
|
2292
2310
|
strokeMiterlimit: 10,
|
|
2293
|
-
d: "M29.19 14.94s-.39 2.57-7.98-.
|
|
2311
|
+
d: "M29.19 14.94s-.39 2.57-7.98-.05S2 1 2 1 6.84.92 13.41 3.69c6.56 2.76 14.48 7.9 15.2 8.97s.58 2.28.58 2.28Z"
|
|
2294
2312
|
})), _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
|
|
2295
2313
|
stroke: "#4E4D47",
|
|
2296
2314
|
strokeLinecap: "round",
|
|
@@ -2310,7 +2328,7 @@ const SvgSearch = props => /*#__PURE__*/React.createElement("svg", _extends$p({
|
|
|
2310
2328
|
fillRule: "evenodd",
|
|
2311
2329
|
stroke: "#6B6960"
|
|
2312
2330
|
}, /*#__PURE__*/React.createElement("path", {
|
|
2313
|
-
d: "M17.5 9.5a8 8 0 1 1-16 0 8 8 0 0 1 16
|
|
2331
|
+
d: "M17.5 9.5a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z"
|
|
2314
2332
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2315
2333
|
strokeLinecap: "round",
|
|
2316
2334
|
d: "M15.156 15.156 22.5 22.5"
|
|
@@ -2392,7 +2410,7 @@ const SvgSuccess = props => /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
|
2392
2410
|
})), _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
|
|
2393
2411
|
fill: "#fff",
|
|
2394
2412
|
fillRule: "evenodd",
|
|
2395
|
-
d: "M13.602 5.202a1 1 0 0 1 .197 1.4l-4.2 5.57a2.
|
|
2413
|
+
d: "M13.602 5.202a1 1 0 0 1 .197 1.4l-4.2 5.57a2.08 2.08 0 0 1-2.392.697 2.1 2.1 0 0 1-.744-.475l-2.168-2.157a1 1 0 1 1 1.41-1.418l2.168 2.156A.09.09 0 0 0 7.94 11a.1.1 0 0 0 .063-.034l4.198-5.568a1 1 0 0 1 1.4-.196",
|
|
2396
2414
|
clipRule: "evenodd"
|
|
2397
2415
|
})));
|
|
2398
2416
|
|
|
@@ -2510,7 +2528,7 @@ const SvgTeaser = props => /*#__PURE__*/React.createElement("svg", _extends$g({
|
|
|
2510
2528
|
strokeLinecap: "round",
|
|
2511
2529
|
d: "M21.207 4.5a1 1 0 0 1 .293.707V22.5a1 1 0 0 1-1 1h-17a1 1 0 0 1-1-1v-21a1 1 0 0 1 1-1h13.293a1 1 0 0 1 .707.293z"
|
|
2512
2530
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2513
|
-
d: "M13.333 9.667S5 8.667 5 17c2.667-5 8.333-3.333 8.333-3.333v2.666L19 11.667 13.333 7v2.
|
|
2531
|
+
d: "M13.333 9.667S5 8.667 5 17c2.667-5 8.333-3.333 8.333-3.333v2.666L19 11.667 13.333 7v2.667Z"
|
|
2514
2532
|
}))));
|
|
2515
2533
|
|
|
2516
2534
|
var _path$c, _path2$6, _path3$2;
|
|
@@ -2556,7 +2574,7 @@ const SvgThread = props => /*#__PURE__*/React.createElement("svg", _extends$e({
|
|
|
2556
2574
|
stroke: "#22211D",
|
|
2557
2575
|
strokeLinecap: "round",
|
|
2558
2576
|
strokeLinejoin: "round",
|
|
2559
|
-
d: "M10 16.3c0 2.925 2.91 5.297 6.5 5.297a7.
|
|
2577
|
+
d: "M10 16.3c0 2.925 2.91 5.297 6.5 5.297a7.8 7.8 0 0 0 2.278-.335L22.513 23l-1.463-2.918A4.86 4.86 0 0 0 23 16.3C23 13.373 20.09 11 16.5 11S10 13.373 10 16.3"
|
|
2560
2578
|
})));
|
|
2561
2579
|
|
|
2562
2580
|
var _g$1;
|
|
@@ -2612,7 +2630,7 @@ const SvgTwitter = props => /*#__PURE__*/React.createElement("svg", _extends$b({
|
|
|
2612
2630
|
stroke: "#fff",
|
|
2613
2631
|
strokeLinecap: "round",
|
|
2614
2632
|
strokeLinejoin: "round",
|
|
2615
|
-
d: "m23 3.628-2-.5 1-2-2.464.7A4.48 4.48 0 0 0 12 5.128v1c-3.539.73-6.634-1.2-9.5-4.
|
|
2633
|
+
d: "m23 3.628-2-.5 1-2-2.464.7A4.48 4.48 0 0 0 12 5.128v1c-3.539.73-6.634-1.2-9.5-4.5q-.75 4 1.5 6l-3-.5c.405 2.07 1.362 3.7 4 4l-2.5 1c1 2 2.566 2.31 5 2.5a10.75 10.75 0 0 1-6.5 2c12.755 5.67 20-2.664 20-10V5.3z"
|
|
2616
2634
|
})));
|
|
2617
2635
|
|
|
2618
2636
|
var _path$8;
|
|
@@ -2627,7 +2645,7 @@ const SvgUnlink = props => /*#__PURE__*/React.createElement("svg", _extends$a({
|
|
|
2627
2645
|
stroke: "#22211D",
|
|
2628
2646
|
strokeLinecap: "round",
|
|
2629
2647
|
strokeLinejoin: "round",
|
|
2630
|
-
d: "m15 18.999 1.5 1.5M9 18.999l-1.5 1.5M12 18.499v3M15 7.5h4.5a4.
|
|
2648
|
+
d: "m15 18.999 1.5 1.5M9 18.999l-1.5 1.5M12 18.499v3M15 7.5h4.5a4.01 4.01 0 0 1 4 4v1a4.01 4.01 0 0 1-4 4H15M9 7.5H4.5a4.01 4.01 0 0 0-4 4v1a4.01 4.01 0 0 0 4 4H9M15 4.999l1.5-1.5M9 4.999l-1.5-1.5M12 5.499v-3"
|
|
2631
2649
|
})));
|
|
2632
2650
|
|
|
2633
2651
|
var _path$7, _path2$4, _path3$1, _path4$1, _path5, _path6;
|
|
@@ -2690,7 +2708,7 @@ const SvgUpdate = props => /*#__PURE__*/React.createElement("svg", _extends$8({
|
|
|
2690
2708
|
stroke: "#4E4D47",
|
|
2691
2709
|
strokeLinecap: "round",
|
|
2692
2710
|
strokeLinejoin: "round",
|
|
2693
|
-
d: "M20.464 10.54a8.623 8.623 0 0 1-6.51 9.729 8.
|
|
2711
|
+
d: "M20.464 10.54a8.623 8.623 0 0 1-6.51 9.729 8.49 8.49 0 0 1-7.931-2.224M3.505 14.479a8.853 8.853 0 0 1 6.538-10.753 8.49 8.49 0 0 1 8.324 2.642"
|
|
2694
2712
|
})));
|
|
2695
2713
|
|
|
2696
2714
|
var _path$5;
|
|
@@ -2776,7 +2794,7 @@ const SvgVideoeditor = props => /*#__PURE__*/React.createElement("svg", _extends
|
|
|
2776
2794
|
stroke: "#22211D",
|
|
2777
2795
|
strokeLinecap: "round",
|
|
2778
2796
|
strokeLinejoin: "round",
|
|
2779
|
-
d: "m22.88 15.12-7.63 7.63-3.75.75.75-3.75 7.63-7.63a2.114 2.114 0 0 1 2.992 0l.008.008a2.
|
|
2797
|
+
d: "m22.88 15.12-7.63 7.63-3.75.75.75-3.75 7.63-7.63a2.114 2.114 0 0 1 2.992 0l.008.008a2.11 2.11 0 0 1 0 2.992M8.5 23.5h-7a1 1 0 0 1-1-1v-21a1 1 0 0 1 1-1h13.293a1 1 0 0 1 .707.293L19.207 4.5a1 1 0 0 1 .293.707V8"
|
|
2780
2798
|
})), _path2$1 || (_path2$1 = /*#__PURE__*/React.createElement("path", {
|
|
2781
2799
|
stroke: "#22211D",
|
|
2782
2800
|
strokeLinecap: "round",
|