gatsby-core-theme 25.0.7 → 25.0.9
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/CHANGELOG.md +24 -0
- package/package.json +1 -1
- package/src/components/atoms/author/author.module.scss +104 -84
- package/src/components/atoms/author/author.stories.js +11 -0
- package/src/components/atoms/author/author.test.js +40 -1
- package/src/components/atoms/author/index.js +23 -7
- package/src/components/molecules/bonus/template-two/bonus.test.js +1 -1
- package/src/components/molecules/bonus/template-two/index.js +8 -2
- package/src/components/molecules/header/index.js +3 -1
- package/src/images/verify.svg +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## [25.0.9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v25.0.8...v25.0.9) (2023-07-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add a props to hide welcome text ([f466dd2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/f466dd2902bcc021f918d2735f58792e7b6700b6))
|
|
7
|
+
* add translation ([1187556](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/118755677306e37f43787bbf923572290a23868b))
|
|
8
|
+
* fix test ([dee8bb7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/dee8bb7e975542e84c7b0fc2b6fb50c56063bc13))
|
|
9
|
+
|
|
10
|
+
## [25.0.8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v25.0.7...v25.0.8) (2023-07-26)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Code Refactoring
|
|
14
|
+
|
|
15
|
+
* add verification badge to author ([28f704c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/28f704cc99b96bf88ddbfcfecbb1aa359690eb70))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
* Merge branch 'author' into 'master' ([c5655c8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c5655c8f85ce6a9cfba3ce3812ac44a9707b3b51))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Tests
|
|
22
|
+
|
|
23
|
+
* test scripts ([e2c8b88](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e2c8b88e1a27526579d97de15fd53c6c42038160))
|
|
24
|
+
|
|
1
25
|
## [25.0.7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v25.0.6...v25.0.7) (2023-07-25)
|
|
2
26
|
|
|
3
27
|
|
package/package.json
CHANGED
|
@@ -14,119 +14,139 @@
|
|
|
14
14
|
justify-content: flex-end;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
order: 1;
|
|
17
|
+
@include max(mobile) {
|
|
18
|
+
padding: 0 1.6rem;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
22
21
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
.infoContainer {
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
white-space: nowrap;
|
|
26
|
+
order: 1;
|
|
27
|
+
gap: 0.5rem;
|
|
26
28
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
border-radius: 50%;
|
|
31
|
-
margin: 0 8px 0 6px;
|
|
32
|
-
}
|
|
29
|
+
.prefixStyle {
|
|
30
|
+
margin: 0;
|
|
31
|
+
}
|
|
33
32
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
img {
|
|
34
|
+
width: 30px;
|
|
35
|
+
height: 30px;
|
|
36
|
+
border-radius: 50%;
|
|
37
|
+
}
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
> a {
|
|
40
|
+
color: var(--author-link-text-color);
|
|
41
|
+
font-weight: var(--author-fontweight);
|
|
42
|
+
text-decoration: underline;
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
44
|
+
&:before {
|
|
45
|
+
content: '';
|
|
46
|
+
padding: 0 2px;
|
|
48
47
|
}
|
|
49
48
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
> a,
|
|
54
|
-
.prefixStyle {
|
|
55
|
-
display: none;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
img {
|
|
59
|
-
margin: 0;
|
|
60
|
-
}
|
|
49
|
+
&:after {
|
|
50
|
+
content: '';
|
|
51
|
+
padding: 0 2px;
|
|
61
52
|
}
|
|
62
53
|
}
|
|
63
|
-
.dateTimeWrapper {
|
|
64
|
-
display: flex;
|
|
65
|
-
align-items: center;
|
|
66
|
-
white-space: nowrap;
|
|
67
|
-
order: 4;
|
|
68
|
-
flex: 1 1 auto;
|
|
69
|
-
gap: 0.5rem;
|
|
70
54
|
|
|
71
|
-
|
|
72
|
-
|
|
55
|
+
@include max(mobile) {
|
|
56
|
+
justify-content: flex-start;
|
|
57
|
+
|
|
58
|
+
> a,
|
|
59
|
+
.prefixStyle {
|
|
60
|
+
display: none;
|
|
73
61
|
}
|
|
74
|
-
|
|
75
|
-
|
|
62
|
+
|
|
63
|
+
img {
|
|
64
|
+
margin: 0;
|
|
76
65
|
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
77
68
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
69
|
+
.dateTimeWrapper {
|
|
70
|
+
display: flex;
|
|
71
|
+
align-items: center;
|
|
72
|
+
white-space: nowrap;
|
|
73
|
+
order: 4;
|
|
74
|
+
flex: 1 1 auto;
|
|
75
|
+
gap: 0.5rem;
|
|
81
76
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
text-decoration: underline;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
77
|
+
a {
|
|
78
|
+
pointer-events: none;
|
|
87
79
|
}
|
|
88
|
-
|
|
89
|
-
|
|
80
|
+
a, .noLink {
|
|
81
|
+
color: var(--author-primary-text-color);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@include max(mobile){
|
|
90
85
|
order: 2;
|
|
91
86
|
flex: 0 0 auto;
|
|
92
|
-
gap: 0.5rem;
|
|
93
87
|
|
|
94
|
-
.
|
|
95
|
-
|
|
88
|
+
.dateLink {
|
|
89
|
+
pointer-events: all;
|
|
90
|
+
text-decoration: underline;
|
|
96
91
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
order: 4;
|
|
100
|
-
flex: 1 1 auto;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
101
94
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
95
|
+
.readingWithBorder {
|
|
96
|
+
order: 2;
|
|
97
|
+
flex: 0 0 auto;
|
|
98
|
+
gap: 0.5rem;
|
|
105
99
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
}
|
|
100
|
+
.readText {
|
|
101
|
+
display: none;
|
|
110
102
|
}
|
|
103
|
+
|
|
104
|
+
@include max(mobile){
|
|
105
|
+
order: 4;
|
|
106
|
+
flex: 1 1 auto;
|
|
111
107
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
gap: 0.5rem;
|
|
115
|
-
|
|
116
|
-
> a {
|
|
117
|
-
color: var(--author-link-text-color);
|
|
118
|
-
font-weight: var(--author-fontweight);
|
|
119
|
-
text-decoration: underline;
|
|
108
|
+
.readingTimeText {
|
|
109
|
+
display: none;
|
|
120
110
|
}
|
|
121
111
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
display: none;
|
|
112
|
+
.readText {
|
|
113
|
+
display: block;
|
|
125
114
|
}
|
|
126
115
|
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.reviewer {
|
|
119
|
+
order: 3;
|
|
120
|
+
gap: 0.5rem;
|
|
121
|
+
|
|
122
|
+
> a {
|
|
123
|
+
color: var(--author-link-text-color);
|
|
124
|
+
font-weight: var(--author-fontweight);
|
|
125
|
+
text-decoration: underline;
|
|
126
|
+
}
|
|
127
127
|
|
|
128
128
|
@include max(mobile) {
|
|
129
|
-
|
|
129
|
+
justify-content: flex-start;
|
|
130
|
+
display: none;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.authorImgContainer {
|
|
135
|
+
position: relative;
|
|
136
|
+
@include flex-align(center, center);
|
|
137
|
+
|
|
138
|
+
> span {
|
|
139
|
+
position: absolute;
|
|
140
|
+
@include flex-align(center, center);
|
|
141
|
+
bottom: -2px;
|
|
142
|
+
right: -2px;
|
|
143
|
+
width: 15px;
|
|
144
|
+
height: 15px;
|
|
145
|
+
|
|
146
|
+
img {
|
|
147
|
+
width: 15px;
|
|
148
|
+
height: 15px;
|
|
149
|
+
}
|
|
130
150
|
}
|
|
131
151
|
}
|
|
132
152
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable import/no-extraneous-dependencies */
|
|
1
2
|
import React from 'react';
|
|
2
3
|
import {
|
|
3
4
|
Title,
|
|
@@ -97,6 +98,16 @@ export default {
|
|
|
97
98
|
defaultValue: { summary: '.' },
|
|
98
99
|
},
|
|
99
100
|
},
|
|
101
|
+
showVerification: {
|
|
102
|
+
name: 'showVerification',
|
|
103
|
+
type: { name: 'boolean', required: false },
|
|
104
|
+
defaultValue: '',
|
|
105
|
+
description: 'Show verification badge for author',
|
|
106
|
+
table: {
|
|
107
|
+
type: { summary: 'boolean' },
|
|
108
|
+
defaultValue: { summary: false },
|
|
109
|
+
},
|
|
110
|
+
},
|
|
100
111
|
},
|
|
101
112
|
parameters: {
|
|
102
113
|
docs: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { render, cleanup } from '@testing-library/react';
|
|
2
|
+
import { render, cleanup, waitFor } from '@testing-library/react';
|
|
3
3
|
import '@testing-library/jest-dom/extend-expect';
|
|
4
4
|
|
|
5
5
|
import Author from '.';
|
|
@@ -39,6 +39,45 @@ describe('Author Component', () => {
|
|
|
39
39
|
expect(prefix).toBeTruthy();
|
|
40
40
|
expect(container.querySelector('i')).toBeTruthy();
|
|
41
41
|
});
|
|
42
|
+
test('with verification badge with author profile image', async () => {
|
|
43
|
+
// eslint-disable-next-line global-require
|
|
44
|
+
const func = require('../../../helpers/device-detect');
|
|
45
|
+
func.isNativeImageLazyLoadingSupported = jest.fn(() => true);
|
|
46
|
+
|
|
47
|
+
const { container } = render(
|
|
48
|
+
<Author
|
|
49
|
+
authorImg="1689948486/hampus-320x320.jpg.jpeg"
|
|
50
|
+
name="mohsen"
|
|
51
|
+
icon={<i className="twitter" />}
|
|
52
|
+
prefix="with"
|
|
53
|
+
date="2020-04-24 15:37:42"
|
|
54
|
+
showVerification
|
|
55
|
+
/>
|
|
56
|
+
);
|
|
57
|
+
await waitFor(() => {
|
|
58
|
+
expect(container.querySelector('img')).toBeTruthy();
|
|
59
|
+
expect(container.querySelector('.authorImgContainer')).toBeTruthy();
|
|
60
|
+
expect(container.querySelectorAll('.authorImgContainer img')).toHaveLength(2);
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
test('without verification badge', async () => {
|
|
64
|
+
// eslint-disable-next-line global-require
|
|
65
|
+
const func = require('../../../helpers/device-detect');
|
|
66
|
+
func.isNativeImageLazyLoadingSupported = jest.fn(() => true);
|
|
67
|
+
|
|
68
|
+
const { container } = render(
|
|
69
|
+
<Author
|
|
70
|
+
authorImg="1689948486/hampus-320x320.jpg.jpeg"
|
|
71
|
+
name="mohsen"
|
|
72
|
+
icon={<i className="twitter" />}
|
|
73
|
+
prefix="with"
|
|
74
|
+
date="2020-04-24 15:37:42"
|
|
75
|
+
/>
|
|
76
|
+
);
|
|
77
|
+
await waitFor(() => {
|
|
78
|
+
expect(container.querySelectorAll('.authorImgContainer img')).toHaveLength(1);
|
|
79
|
+
});
|
|
80
|
+
});
|
|
42
81
|
});
|
|
43
82
|
afterEach(() => {
|
|
44
83
|
cleanup();
|
|
@@ -26,6 +26,8 @@ const Author = ({
|
|
|
26
26
|
clock = '../../../images/clock.svg',
|
|
27
27
|
authorImageWidth = 30,
|
|
28
28
|
authorImageHeight = 30,
|
|
29
|
+
showVerification = false,
|
|
30
|
+
verifyIcon = '../../../images/verify.svg',
|
|
29
31
|
}) => {
|
|
30
32
|
const { translations } = useContext(Context) || {};
|
|
31
33
|
const prefixstyle = !link || !authorImg;
|
|
@@ -60,13 +62,25 @@ const Author = ({
|
|
|
60
62
|
</Link>
|
|
61
63
|
{icon}
|
|
62
64
|
{authorImg && (
|
|
63
|
-
<
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
65
|
+
<div className={styles.authorImgContainer}>
|
|
66
|
+
<LazyImage
|
|
67
|
+
alt={name}
|
|
68
|
+
loading="eager"
|
|
69
|
+
width={authorImageWidth}
|
|
70
|
+
height={authorImageHeight}
|
|
71
|
+
src={imagePrettyUrl(authorImg, authorImageWidth, authorImageHeight)}
|
|
72
|
+
/>
|
|
73
|
+
{showVerification && (
|
|
74
|
+
<span>
|
|
75
|
+
<LazyImage
|
|
76
|
+
src={verifyIcon}
|
|
77
|
+
alt={translate(translations, 'verified', 'Verified')}
|
|
78
|
+
width={10}
|
|
79
|
+
height={10}
|
|
80
|
+
/>
|
|
81
|
+
</span>
|
|
82
|
+
)}
|
|
83
|
+
</div>
|
|
70
84
|
)}
|
|
71
85
|
</div>
|
|
72
86
|
)}
|
|
@@ -126,6 +140,8 @@ Author.propTypes = {
|
|
|
126
140
|
clock: PropTypes.string,
|
|
127
141
|
authorImageHeight: PropTypes.number,
|
|
128
142
|
authorImageWidth: PropTypes.number,
|
|
143
|
+
showVerification: PropTypes.bool,
|
|
144
|
+
verifyIcon: PropTypes.string,
|
|
129
145
|
};
|
|
130
146
|
|
|
131
147
|
export default Author;
|
|
@@ -40,7 +40,7 @@ describe('TemplateOne', () => {
|
|
|
40
40
|
|
|
41
41
|
test('displays the welcome bonus text', () => {
|
|
42
42
|
renderComponent(operator);
|
|
43
|
-
const welcomeBonus = screen.getByText('Welcome
|
|
43
|
+
const welcomeBonus = screen.getByText('Welcome Bonus');
|
|
44
44
|
expect(welcomeBonus).toBeInTheDocument();
|
|
45
45
|
});
|
|
46
46
|
|
|
@@ -3,7 +3,7 @@ import React, { useState, useEffect, useContext } from 'react';
|
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
4
|
import { FaArrowRight } from '@react-icons/all-files/fa/FaArrowRight';
|
|
5
5
|
import { IoMdClose } from '@react-icons/all-files/io/IoMdClose';
|
|
6
|
-
import { prettyTracker, imagePrettyUrl } from '~helpers/getters';
|
|
6
|
+
import { prettyTracker, imagePrettyUrl, translate } from '~helpers/getters';
|
|
7
7
|
import LazyImage from '~hooks/lazy-image';
|
|
8
8
|
import isSticky from '~hooks/stickyOnScroll';
|
|
9
9
|
import Onliner from '~atoms/bonus';
|
|
@@ -21,6 +21,7 @@ export default function TemplateOne({
|
|
|
21
21
|
tncEnable = true,
|
|
22
22
|
tncFixed = false,
|
|
23
23
|
showOnLoad = false,
|
|
24
|
+
showWelcomeText = true,
|
|
24
25
|
floating = false,
|
|
25
26
|
}) {
|
|
26
27
|
const prettyLink = prettyTracker(
|
|
@@ -90,7 +91,12 @@ export default function TemplateOne({
|
|
|
90
91
|
</div>
|
|
91
92
|
</a>
|
|
92
93
|
<div className={styles.bonus || ''}>
|
|
93
|
-
|
|
94
|
+
{showWelcomeText && (
|
|
95
|
+
<p className={styles.welcomeBonus}>
|
|
96
|
+
{translate(translations, 'welcome_bonus', 'Welcome Bonus')}
|
|
97
|
+
</p>
|
|
98
|
+
)}
|
|
99
|
+
|
|
94
100
|
<Onliner item={operator} tracker={module?.type || 'main'} />
|
|
95
101
|
{tncEnable && !tncFixed && <Tnc hasCollapse={false} operator={operator} />}
|
|
96
102
|
</div>
|
|
@@ -63,7 +63,8 @@ function Header({ section, content = null, backgroundImage = true, showAuthor =
|
|
|
63
63
|
{Author && (
|
|
64
64
|
<div className={styles.authorContainer || ''}>
|
|
65
65
|
<Author
|
|
66
|
-
|
|
66
|
+
authorImg={section.page?.author?.image}
|
|
67
|
+
link={section.page?.author?.profile_page_path}
|
|
67
68
|
name={section.page.author?.name}
|
|
68
69
|
date={section.page.updated_at ? section.page.updated_at : section.page.created_at}
|
|
69
70
|
readingTime={section.page.reading_time}
|
|
@@ -104,6 +105,7 @@ Header.propTypes = {
|
|
|
104
105
|
author: PropTypes.shape({
|
|
105
106
|
name: PropTypes.string,
|
|
106
107
|
profile_page_path: PropTypes.string,
|
|
108
|
+
image: PropTypes.string,
|
|
107
109
|
}),
|
|
108
110
|
relation: PropTypes.shape({
|
|
109
111
|
url: PropTypes.string,
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1978_1963)">
|
|
3
|
+
<path d="M15.0501 23.1008L14.7086 22.8077C14.5901 22.7061 14.4502 22.6316 14.299 22.5898C14.1478 22.548 13.989 22.5399 13.8343 22.5661C13.6795 22.5923 13.5326 22.652 13.4041 22.7411C13.2756 22.8302 13.1688 22.9464 13.0913 23.0812L12.8679 23.47C12.7751 23.6316 12.6402 23.766 12.4773 23.8591C12.3143 23.9523 12.1292 24.0009 11.9409 24C11.7525 23.9991 11.5679 23.9487 11.4059 23.8539C11.2439 23.7592 11.1104 23.6236 11.0191 23.461L10.8001 23.0701C10.7239 22.9346 10.6182 22.8174 10.4906 22.7272C10.3629 22.6369 10.2166 22.5757 10.0621 22.5481C9.90757 22.5205 9.74878 22.527 9.59717 22.5674C9.44556 22.6077 9.30492 22.6807 9.18541 22.7813L8.8391 23.0713C8.69579 23.1919 8.52251 23.2726 8.3371 23.3051C8.15169 23.3376 7.96085 23.3208 7.78423 23.2564C7.6076 23.1919 7.45156 23.0822 7.33217 22.9385C7.21278 22.7947 7.13436 22.6222 7.10497 22.4386L7.03657 21.9977C7.01208 21.8446 6.95342 21.6988 6.86484 21.5709C6.77625 21.4429 6.65996 21.336 6.52437 21.2578C6.38878 21.1796 6.23728 21.1322 6.08083 21.1189C5.92438 21.1056 5.76689 21.1267 5.61975 21.1809L5.19552 21.3372C5.0191 21.4021 4.82834 21.4195 4.64288 21.3875C4.45741 21.3554 4.28393 21.2752 4.1403 21.1551C3.99666 21.035 3.88804 20.8792 3.82563 20.7039C3.76322 20.5286 3.74926 20.34 3.78519 20.1576L3.87176 19.7189C3.9018 19.5668 3.8972 19.41 3.85829 19.2598C3.81938 19.1097 3.74714 18.97 3.64679 18.8508C3.54645 18.7316 3.42051 18.6359 3.27809 18.5707C3.13567 18.5054 2.98033 18.4722 2.82332 18.4735L2.37052 18.4769C2.1821 18.4787 1.99661 18.4308 1.83318 18.3382C1.66974 18.2456 1.53428 18.1117 1.44073 17.9503C1.34719 17.7888 1.29896 17.6057 1.30101 17.4197C1.30305 17.2338 1.3553 17.0517 1.45238 16.8923L1.6857 16.5078C1.76658 16.3749 1.81654 16.226 1.83195 16.0717C1.84737 15.9175 1.82786 15.7617 1.77483 15.6158C1.72181 15.4699 1.6366 15.3374 1.52536 15.228C1.41412 15.1186 1.27963 15.0349 1.13161 14.983L0.705222 14.8339C0.527736 14.7718 0.370247 14.664 0.248967 14.5218C0.127687 14.3796 0.0469981 14.2081 0.0152069 14.0249C-0.0165843 13.8417 0.00167089 13.6534 0.0680934 13.4795C0.134516 13.3055 0.246705 13.1522 0.393113 13.0353L0.744614 12.7542C0.866647 12.6567 0.965208 12.5337 1.03317 12.394C1.10113 12.2543 1.13679 12.1015 1.13758 11.9465C1.13837 11.7916 1.10426 11.6384 1.03772 11.498C0.971181 11.3577 0.873876 11.2337 0.752839 11.135L0.403935 10.8505C0.258997 10.7321 0.148603 10.5778 0.0840927 10.4033C0.0195825 10.2289 0.00328234 10.0407 0.0368663 9.85801C0.0704502 9.67532 0.152708 9.50475 0.275189 9.36381C0.397669 9.22288 0.555957 9.11667 0.733792 9.05609L1.16148 8.91083C1.31016 8.8605 1.44564 8.77815 1.55809 8.66975C1.67053 8.56136 1.75714 8.42963 1.81163 8.28412C1.86613 8.13861 1.88714 7.98296 1.87314 7.82844C1.85915 7.67392 1.8105 7.52442 1.73072 7.39075L1.50129 7.00624C1.40579 6.84604 1.35527 6.66361 1.35494 6.47773C1.35461 6.29185 1.40447 6.10925 1.49941 5.94871C1.59434 5.78818 1.73091 5.65551 1.89505 5.56437C2.0592 5.47324 2.24499 5.42692 2.43329 5.43019L2.88609 5.43831C3.04309 5.441 3.19874 5.40923 3.34178 5.3453C3.48483 5.28137 3.6117 5.18688 3.71322 5.06865C3.81475 4.95043 3.88839 4.81142 3.92884 4.66167C3.96928 4.51192 3.97551 4.35518 3.94709 4.20276L3.86484 3.76357C3.83062 3.58079 3.84638 3.39231 3.91049 3.21753C3.9746 3.04276 4.08475 2.888 4.2296 2.7692C4.37444 2.6504 4.54875 2.57184 4.73458 2.54161C4.92041 2.51139 5.11105 2.53059 5.28686 2.59723L5.70935 2.75745C5.85594 2.81302 6.0132 2.83576 6.16978 2.824C6.32635 2.81225 6.47832 2.7663 6.6147 2.68947C6.75108 2.61265 6.86845 2.50687 6.95833 2.37979C7.04821 2.25272 7.10835 2.10751 7.13441 1.95468L7.20973 1.51506C7.24106 1.33187 7.32125 1.16021 7.44206 1.01773C7.56287 0.875256 7.71994 0.767095 7.89713 0.704366C8.07432 0.641637 8.26524 0.626602 8.45026 0.660809C8.63529 0.695015 8.80775 0.777227 8.94992 0.898998L9.29147 1.19208C9.40992 1.29384 9.54982 1.36834 9.70104 1.41018C9.85226 1.45201 10.011 1.46014 10.1658 1.43397C10.3206 1.4078 10.4676 1.34799 10.5961 1.25886C10.7245 1.16974 10.8313 1.05353 10.9087 0.918651L11.1321 0.530298C11.2249 0.368593 11.3597 0.234222 11.5227 0.141017C11.6856 0.0478129 11.8707 -0.00085884 12.059 1.147e-05C12.2474 0.00088178 12.432 0.0512629 12.5941 0.145969C12.7561 0.240676 12.8896 0.376287 12.9809 0.538844L13.2 0.929759C13.2761 1.06533 13.3818 1.18251 13.5094 1.27283C13.637 1.36314 13.7834 1.42433 13.9379 1.45197C14.0924 1.47961 14.2513 1.47301 14.4029 1.43264C14.5545 1.39228 14.6951 1.31915 14.8146 1.21857L15.1609 0.928904C15.3042 0.808349 15.4775 0.727648 15.6628 0.695107C15.8482 0.662565 16.039 0.679361 16.2157 0.743759C16.3923 0.808158 16.5483 0.917834 16.6677 1.06151C16.7871 1.20518 16.8656 1.37766 16.8951 1.5612L16.9661 2.00253C16.9905 2.15544 17.0491 2.30108 17.1376 2.42892C17.226 2.55677 17.3421 2.66363 17.4775 2.74179C17.6129 2.81994 17.7642 2.86745 17.9205 2.88087C18.0768 2.89429 18.2341 2.87329 18.3812 2.81939L18.8054 2.66345C18.982 2.59828 19.173 2.58079 19.3587 2.61281C19.5444 2.64482 19.7181 2.72518 19.8618 2.84557C20.0056 2.96597 20.1142 3.12205 20.1764 3.29769C20.2386 3.47334 20.2522 3.66219 20.2157 3.84474L20.1291 4.28308C20.0992 4.43523 20.1039 4.59205 20.1428 4.7422C20.1818 4.89236 20.2541 5.03209 20.3544 5.1513C20.4548 5.27052 20.5808 5.36623 20.7232 5.43153C20.8656 5.49683 21.021 5.53008 21.178 5.52888L21.6308 5.52504C21.8191 5.5237 22.0044 5.57188 22.1675 5.66463C22.3307 5.75737 22.4659 5.89134 22.5592 6.05275C22.6525 6.21415 22.7006 6.39718 22.6985 6.58301C22.6964 6.76883 22.6442 6.95075 22.5472 7.11006L22.3139 7.49456C22.2339 7.62725 22.1847 7.77577 22.1697 7.92946C22.1548 8.08315 22.1745 8.2382 22.2275 8.38348C22.2804 8.52876 22.3654 8.66066 22.4761 8.76971C22.5868 8.87876 22.7207 8.96226 22.868 9.01422L23.2944 9.16375C23.4719 9.22593 23.6294 9.33366 23.7506 9.47587C23.8719 9.61807 23.9526 9.78961 23.9844 9.97282C24.0162 10.156 23.9979 10.3443 23.9315 10.5182C23.8651 10.6921 23.7529 10.8455 23.6065 10.9624L23.2546 11.2431C23.1325 11.3406 23.034 11.4637 22.9661 11.6035C22.8982 11.7432 22.8625 11.8961 22.8618 12.0511C22.861 12.206 22.8952 12.3593 22.9618 12.4996C23.0283 12.64 23.1257 12.764 23.2468 12.8627L23.5957 13.1472C23.7407 13.2655 23.8512 13.4199 23.9158 13.5943C23.9804 13.7687 23.9968 13.957 23.9632 14.1398C23.9296 14.3225 23.8473 14.4931 23.7247 14.634C23.6021 14.775 23.4437 14.8811 23.2658 14.9416L22.8368 15.089C22.6883 15.1393 22.553 15.2217 22.4407 15.33C22.3284 15.4383 22.2419 15.5699 22.1874 15.7153C22.133 15.8606 22.112 16.0161 22.1259 16.1705C22.1399 16.3248 22.1884 16.4742 22.268 16.6078L22.4974 16.9923C22.5928 17.1525 22.6433 17.3349 22.6435 17.5207C22.6438 17.7065 22.5939 17.889 22.499 18.0495C22.4041 18.21 22.2676 18.3426 22.1035 18.4337C21.9394 18.5248 21.7537 18.5711 21.5654 18.5679L21.1126 18.5602C20.9557 18.5575 20.8 18.5892 20.657 18.6531C20.5139 18.7169 20.3871 18.8114 20.2855 18.9296C20.184 19.0478 20.1103 19.1868 20.0699 19.3365C20.0294 19.4862 20.0232 19.643 20.0516 19.7954L20.1339 20.235C20.1685 20.4178 20.1532 20.6064 20.0893 20.7814C20.0255 20.9564 19.9156 21.1115 19.7708 21.2305C19.6261 21.3496 19.4517 21.4285 19.2658 21.459C19.0799 21.4894 18.8892 21.4704 18.7132 21.4039L18.2915 21.2415C18.1449 21.1858 17.9875 21.1629 17.8308 21.1747C17.6741 21.1864 17.522 21.2323 17.3855 21.3092C17.249 21.3861 17.1315 21.492 17.0416 21.6192C16.9517 21.7464 16.8916 21.8917 16.8656 22.0447L16.7907 22.4852C16.7595 22.6685 16.6794 22.8403 16.5585 22.9829C16.4377 23.1254 16.2805 23.2337 16.1032 23.2964C15.9259 23.3591 15.7349 23.374 15.5498 23.3396C15.3647 23.3053 15.1922 23.2228 15.0501 23.1008Z" fill="#165AF8"/>
|
|
4
|
+
<path d="M17.9639 7.78278C17.8835 7.69945 17.7868 7.6331 17.6797 7.58776C17.5726 7.54242 17.4573 7.51904 17.3407 7.51904C17.2242 7.51904 17.1088 7.54242 17.0017 7.58776C16.8946 7.6331 16.7979 7.69945 16.7176 7.78278L10.0413 14.3719L7.28166 11.6484C7.20125 11.5651 7.10457 11.4989 6.99746 11.4536C6.89035 11.4083 6.77504 11.385 6.65853 11.385C6.54201 11.385 6.4267 11.4083 6.31959 11.4536C6.21249 11.4989 6.1158 11.5651 6.03539 11.6484C5.95107 11.7277 5.88394 11.8231 5.83807 11.9288C5.7922 12.0346 5.76855 12.1484 5.76855 12.2633C5.76855 12.3783 5.7922 12.4921 5.83807 12.5979C5.88394 12.7036 5.95107 12.799 6.03539 12.8783L9.41706 16.2167C9.5954 16.3927 9.77332 16.4803 10.0404 16.4803C10.3075 16.4803 10.4854 16.3927 10.6633 16.2167L17.9639 9.01406C18.0484 8.93468 18.1157 8.83918 18.1617 8.73335C18.2077 8.62752 18.2314 8.51357 18.2314 8.39842C18.2314 8.28327 18.2077 8.16932 18.1617 8.06349C18.1157 7.95766 18.0484 7.86216 17.9639 7.78278Z" fill="white"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_1978_1963">
|
|
8
|
+
<rect width="24" height="24" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|