@bento-core/about 0.2.0
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/babel.config.json +21 -0
- package/dist/aboutBodyView.js +329 -0
- package/dist/aboutHeaderView.js +56 -0
- package/dist/assets/About-ExternalLink.svg +15 -0
- package/dist/assets/About-Table-ExternalLink.svg +15 -0
- package/dist/assets/About_CRDC.png +0 -0
- package/dist/assets/About_CTDC_Model.png +0 -0
- package/dist/assets/About_DataDictionary.png +0 -0
- package/dist/assets/About_Developers.png +0 -0
- package/dist/assets/About_Purpose.png +0 -0
- package/dist/assets/About_RequestAccess.png +0 -0
- package/dist/assets/About_Resources.png +0 -0
- package/dist/assets/About_Support.png +0 -0
- package/dist/assets/Model-Buttons-Center.svg +65 -0
- package/dist/assets/Model-Buttons-ZoomIn.svg +66 -0
- package/dist/assets/Model-Buttons-ZoomOut.svg +66 -0
- package/dist/assets/Photo-About_SteeringCommittee.jpg +0 -0
- package/dist/index.js +27 -0
- package/dist/xoomInOutView.js +169 -0
- package/package.json +29 -0
- package/src/aboutBodyView.js +373 -0
- package/src/aboutHeaderView.js +42 -0
- package/src/assets/About-ExternalLink.svg +15 -0
- package/src/assets/About-Table-ExternalLink.svg +15 -0
- package/src/assets/About_CRDC.png +0 -0
- package/src/assets/About_CTDC_Model.png +0 -0
- package/src/assets/About_DataDictionary.png +0 -0
- package/src/assets/About_Developers.png +0 -0
- package/src/assets/About_Purpose.png +0 -0
- package/src/assets/About_RequestAccess.png +0 -0
- package/src/assets/About_Resources.png +0 -0
- package/src/assets/About_Support.png +0 -0
- package/src/assets/Model-Buttons-Center.svg +65 -0
- package/src/assets/Model-Buttons-ZoomIn.svg +66 -0
- package/src/assets/Model-Buttons-ZoomOut.svg +66 -0
- package/src/assets/Photo-About_SteeringCommittee.jpg +0 -0
- package/src/index.js +3 -0
- package/src/xoomInOutView.js +153 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"presets": [
|
|
3
|
+
[
|
|
4
|
+
"@babel/env",
|
|
5
|
+
{
|
|
6
|
+
"targets": {
|
|
7
|
+
"edge": "17",
|
|
8
|
+
"firefox": "60",
|
|
9
|
+
"chrome": "67",
|
|
10
|
+
"safari": "11.1"
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"@babel/preset-react"
|
|
15
|
+
],
|
|
16
|
+
"plugins": [
|
|
17
|
+
"@babel/plugin-transform-react-jsx",
|
|
18
|
+
"@babel/plugin-syntax-jsx",
|
|
19
|
+
"@babel/plugin-proposal-class-properties"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _core = require("@material-ui/core");
|
|
9
|
+
var _xoomInOutView = _interopRequireDefault(require("./xoomInOutView"));
|
|
10
|
+
var _AboutTableExternalLink = _interopRequireDefault(require("./assets/About-Table-ExternalLink.svg"));
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
|
+
const AboutBody = _ref => {
|
|
13
|
+
let {
|
|
14
|
+
classes,
|
|
15
|
+
data,
|
|
16
|
+
externalIconImage
|
|
17
|
+
} = _ref;
|
|
18
|
+
function boldText(text) {
|
|
19
|
+
const boldedText = text.split('$$').map(splitedText => {
|
|
20
|
+
if (splitedText != null && /\*(.*)\*/.test(splitedText)) {
|
|
21
|
+
return /*#__PURE__*/_react.default.createElement("span", {
|
|
22
|
+
className: classes.title
|
|
23
|
+
}, splitedText.match(/\*(.*)\*/).pop());
|
|
24
|
+
}
|
|
25
|
+
return splitedText;
|
|
26
|
+
});
|
|
27
|
+
return boldedText;
|
|
28
|
+
}
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("div", {
|
|
30
|
+
className: classes.container
|
|
31
|
+
}, /*#__PURE__*/_react.default.createElement(_core.Grid, {
|
|
32
|
+
container: true,
|
|
33
|
+
spacing: 16,
|
|
34
|
+
direction: "row",
|
|
35
|
+
className: classes.aboutSection
|
|
36
|
+
}, data.imageLocation === 'left' && /*#__PURE__*/_react.default.createElement(_core.Grid, {
|
|
37
|
+
item: true,
|
|
38
|
+
lg: 3,
|
|
39
|
+
md: 3,
|
|
40
|
+
sm: 12,
|
|
41
|
+
xs: 12,
|
|
42
|
+
className: classes.imageSection
|
|
43
|
+
}, data.image), /*#__PURE__*/_react.default.createElement(_core.Grid, {
|
|
44
|
+
item: true,
|
|
45
|
+
lg: 9,
|
|
46
|
+
md: 9,
|
|
47
|
+
sm: 12,
|
|
48
|
+
xs: 12,
|
|
49
|
+
className: classes.contentSection
|
|
50
|
+
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
51
|
+
className: classes.text
|
|
52
|
+
}, data.content ? data.content.map(contentObj => /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, contentObj.listWithNumbers && /*#__PURE__*/_react.default.createElement("div", {
|
|
53
|
+
className: classes.text
|
|
54
|
+
}, /*#__PURE__*/_react.default.createElement("ol", null, contentObj.listWithNumbers.map(listObj => listObj.listWithAlpahbets ?
|
|
55
|
+
/*#__PURE__*/
|
|
56
|
+
// Alphetised sub ordered list
|
|
57
|
+
_react.default.createElement("ol", {
|
|
58
|
+
type: "a"
|
|
59
|
+
}, listObj.listWithAlpahbets.map(listObj1 => /*#__PURE__*/_react.default.createElement("li", null, listObj1.includes('$$') ? boldText(listObj1) : listObj1))) : /*#__PURE__*/_react.default.createElement("li", null, listObj.includes('$$') ? boldText(listObj) : listObj)))), contentObj.listWithAlpahbets && /*#__PURE__*/_react.default.createElement("div", {
|
|
60
|
+
className: classes.text
|
|
61
|
+
}, /*#__PURE__*/_react.default.createElement("ol", {
|
|
62
|
+
type: "a"
|
|
63
|
+
}, contentObj.listWithAlpahbets.map(listObj => /*#__PURE__*/_react.default.createElement("li", null, listObj.includes('$$') ? boldText(listObj) : listObj)))), contentObj.paragraph && /*#__PURE__*/_react.default.createElement("div", {
|
|
64
|
+
className: classes.text
|
|
65
|
+
}, contentObj.paragraph.split('$$').map(splitedParagraph => {
|
|
66
|
+
// Checking for regex ()[] pattern
|
|
67
|
+
if (splitedParagraph != null && (/\[(.+)\]\((.+)\)/g.test(splitedParagraph) || /\((.+)\)\[(.+)\]/g.test(splitedParagraph))) {
|
|
68
|
+
const title = splitedParagraph.match(/\[(.*)\]/).pop();
|
|
69
|
+
const linkAttrs = splitedParagraph.match(/\((.*)\)/).pop().split(' ');
|
|
70
|
+
const target = linkAttrs.find(link => link.includes('target:'));
|
|
71
|
+
const url = linkAttrs.find(link => link.includes('url:'));
|
|
72
|
+
const type = linkAttrs.find(link => link.includes('type:')); // 0 : no img
|
|
73
|
+
const href = splitedParagraph.match(/\((.*)\)/).pop();
|
|
74
|
+
const link = /*#__PURE__*/_react.default.createElement(_core.Link, {
|
|
75
|
+
title: title,
|
|
76
|
+
target: target ? target.replace('target:', '') : '_blank',
|
|
77
|
+
rel: "noreferrer",
|
|
78
|
+
href: url ? url.replace('url:', '') : href && href.includes('@') ? "mailto:".concat(href) : href,
|
|
79
|
+
color: "inherit",
|
|
80
|
+
className: classes.link
|
|
81
|
+
}, title);
|
|
82
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, link, type ? '' : /*#__PURE__*/_react.default.createElement("img", {
|
|
83
|
+
src: externalIconImage
|
|
84
|
+
// externalIconImage: 'https://raw.githubusercontent.com/CBIIT/datacommons-assets/main/common/images/logos/svgs/externalLinkIcon.svg',
|
|
85
|
+
,
|
|
86
|
+
alt: "outbounnd web site icon",
|
|
87
|
+
className: classes.linkIcon
|
|
88
|
+
}));
|
|
89
|
+
}
|
|
90
|
+
// For email
|
|
91
|
+
if (splitedParagraph != null && /@(.*)@/.test(splitedParagraph)) {
|
|
92
|
+
return /*#__PURE__*/_react.default.createElement("span", {
|
|
93
|
+
className: classes.email
|
|
94
|
+
}, splitedParagraph.match(/@(.*)@/).pop());
|
|
95
|
+
}
|
|
96
|
+
// For sub headings
|
|
97
|
+
if (splitedParagraph != null && /#(.*)#/.test(splitedParagraph)) {
|
|
98
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
99
|
+
className: classes.title
|
|
100
|
+
}, splitedParagraph.match(/#(.*)#/).pop());
|
|
101
|
+
}
|
|
102
|
+
// For bolding inline words
|
|
103
|
+
if (splitedParagraph != null && /\*(.*)\*/.test(splitedParagraph)) {
|
|
104
|
+
return /*#__PURE__*/_react.default.createElement("span", {
|
|
105
|
+
className: classes.title
|
|
106
|
+
}, splitedParagraph.match(/\*(.*)\*/).pop());
|
|
107
|
+
}
|
|
108
|
+
// For downloading things
|
|
109
|
+
if (splitedParagraph != null && /{(.*)}/.test(splitedParagraph)) {
|
|
110
|
+
const downloadAttrs = splitedParagraph.match(/{(.*)}/).pop().split(',');
|
|
111
|
+
const downloadLink = downloadAttrs.find(link => link.includes('link:'));
|
|
112
|
+
const downloadTitle = downloadAttrs.find(link => link.includes('title:'));
|
|
113
|
+
return /*#__PURE__*/_react.default.createElement(_core.Link, {
|
|
114
|
+
target: "_blank",
|
|
115
|
+
className: classes.link,
|
|
116
|
+
href: downloadLink ? downloadLink.replace('link:', '') : ''
|
|
117
|
+
}, downloadTitle ? downloadTitle.replace('title:', '') : '');
|
|
118
|
+
}
|
|
119
|
+
return splitedParagraph;
|
|
120
|
+
})), contentObj.table && /*#__PURE__*/_react.default.createElement("div", {
|
|
121
|
+
className: classes.tableDiv
|
|
122
|
+
}, /*#__PURE__*/_react.default.createElement("table", {
|
|
123
|
+
className: classes.table
|
|
124
|
+
}, /*#__PURE__*/_react.default.createElement("thead", {
|
|
125
|
+
className: classes.tableHeader
|
|
126
|
+
}, /*#__PURE__*/_react.default.createElement("tr", {
|
|
127
|
+
className: classes.tableBodyRow
|
|
128
|
+
}, /*#__PURE__*/_react.default.createElement("th", {
|
|
129
|
+
className: classes.headerCell,
|
|
130
|
+
"aria-label": "Index"
|
|
131
|
+
}), contentObj.table[0].head.map(rowObj => {
|
|
132
|
+
let outputHTML = /*#__PURE__*/_react.default.createElement("th", {
|
|
133
|
+
className: classes.headerCell
|
|
134
|
+
}, rowObj);
|
|
135
|
+
if (rowObj != null && /{(.*)}/.test(rowObj)) {
|
|
136
|
+
const thAttrs = rowObj.match(/{(.*)}/).pop().split('$$');
|
|
137
|
+
const inlineStyleStr = thAttrs.find(thAttr => thAttr.includes('style:')).replace('style:', '').replace(/'/g, '');
|
|
138
|
+
const inlineStyleMap = {};
|
|
139
|
+
inlineStyleStr.split(',').forEach(style => {
|
|
140
|
+
// eslint-disable-next-line prefer-destructuring
|
|
141
|
+
inlineStyleMap[style.split(':')[0]] = style.split(':')[1];
|
|
142
|
+
});
|
|
143
|
+
const text = thAttrs.find(thAttr => thAttr.includes('text:'));
|
|
144
|
+
outputHTML = /*#__PURE__*/_react.default.createElement("th", {
|
|
145
|
+
className: classes.headerCell,
|
|
146
|
+
style: inlineStyleMap
|
|
147
|
+
}, text.replace('text:', ''));
|
|
148
|
+
}
|
|
149
|
+
return outputHTML;
|
|
150
|
+
}))), /*#__PURE__*/_react.default.createElement("tbody", null, contentObj.table[1].body.map((rowObj, index) => /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("tr", {
|
|
151
|
+
className: classes.tableBodyRow
|
|
152
|
+
}, /*#__PURE__*/_react.default.createElement("td", {
|
|
153
|
+
className: classes.tableCell
|
|
154
|
+
}, index + 1), rowObj.row.map(rowValue => {
|
|
155
|
+
let outputHTML = /*#__PURE__*/_react.default.createElement("td", {
|
|
156
|
+
className: classes.tableCell
|
|
157
|
+
}, rowValue);
|
|
158
|
+
// add inline style
|
|
159
|
+
if (rowValue != null && /{(.*)}/.test(rowValue)) {
|
|
160
|
+
const thAttrs = rowValue.match(/{(.*)}/).pop().split('$$');
|
|
161
|
+
const inlineStyleStr = thAttrs.find(thAttr => thAttr.includes('style:')).replace('style:', '').replace(/'/g, '');
|
|
162
|
+
const inlineStyleMap = {};
|
|
163
|
+
inlineStyleStr.split(',').forEach(style => {
|
|
164
|
+
// eslint-disable-next-line prefer-destructuring
|
|
165
|
+
inlineStyleMap[style.split(':')[0]] = style.split(':')[1];
|
|
166
|
+
});
|
|
167
|
+
const text = thAttrs.find(thAttr => thAttr.includes('text:'));
|
|
168
|
+
outputHTML = /*#__PURE__*/_react.default.createElement("td", {
|
|
169
|
+
className: classes.tableCell,
|
|
170
|
+
style: inlineStyleMap
|
|
171
|
+
}, text.replace('text:', ''));
|
|
172
|
+
}
|
|
173
|
+
if (rowValue != null && (/\[(.+)\]\((.+)\)/g.test(rowValue) || /\((.+)\)\[(.+)\]/g.test(rowValue))) {
|
|
174
|
+
const title = rowValue.match(/\[(.*)\]/).pop();
|
|
175
|
+
const linkAttrs = rowValue.match(/\((.*)\)/).pop().split(' ');
|
|
176
|
+
const target = linkAttrs.find(link => link.includes('target:'));
|
|
177
|
+
const url = linkAttrs.find(link => link.includes('url:'));
|
|
178
|
+
const type = linkAttrs.find(link => link.includes('type:')); // 0 : no img
|
|
179
|
+
const link = /*#__PURE__*/_react.default.createElement(_core.Link, {
|
|
180
|
+
title: title,
|
|
181
|
+
target: target ? target.replace('target:', '') : '_blank',
|
|
182
|
+
rel: "noreferrer",
|
|
183
|
+
href: url ? url.replace('url:', '') : rowValue.match(/\((.*)\)/).pop(),
|
|
184
|
+
color: "inherit",
|
|
185
|
+
className: classes.tableLink
|
|
186
|
+
}, title);
|
|
187
|
+
outputHTML = /*#__PURE__*/_react.default.createElement("td", {
|
|
188
|
+
className: classes.tableCell
|
|
189
|
+
}, link, type ? '' : /*#__PURE__*/_react.default.createElement("img", {
|
|
190
|
+
src: _AboutTableExternalLink.default,
|
|
191
|
+
alt: "outbounnd web site icon",
|
|
192
|
+
className: classes.tablelinkIcon
|
|
193
|
+
}));
|
|
194
|
+
}
|
|
195
|
+
return outputHTML;
|
|
196
|
+
}))))))), /*#__PURE__*/_react.default.createElement("br", null))) : '')), data.imageLocation === 'right' && /*#__PURE__*/_react.default.createElement(_core.Grid, {
|
|
197
|
+
item: true,
|
|
198
|
+
lg: 3,
|
|
199
|
+
md: 3,
|
|
200
|
+
sm: 12,
|
|
201
|
+
xs: 12,
|
|
202
|
+
className: classes.imageSection
|
|
203
|
+
}, data.image))), data.secondaryZoomImageTitle && /*#__PURE__*/_react.default.createElement("div", {
|
|
204
|
+
className: classes.secondayTitle
|
|
205
|
+
}, data.secondaryZoomImageTitle), data.secondaryImage && /*#__PURE__*/_react.default.createElement(_xoomInOutView.default, null, data.secondaryImageData));
|
|
206
|
+
};
|
|
207
|
+
const styles = () => ({
|
|
208
|
+
container: {
|
|
209
|
+
margin: '16px auto 16px auto',
|
|
210
|
+
color: '#000000',
|
|
211
|
+
fontFamily: props => props.data.fontFamily ? props.data.fontFamily : 'Nunito',
|
|
212
|
+
fontSize: '15px',
|
|
213
|
+
lineHeight: '22px',
|
|
214
|
+
maxWidth: '1440px'
|
|
215
|
+
},
|
|
216
|
+
maxWidthContainer: {
|
|
217
|
+
margin: '0px auto 0px auto',
|
|
218
|
+
maxWidth: '1440px'
|
|
219
|
+
},
|
|
220
|
+
secondayTitle: {
|
|
221
|
+
display: 'block',
|
|
222
|
+
textAlign: 'center',
|
|
223
|
+
fontWeight: 'bold',
|
|
224
|
+
marginBottom: '70px',
|
|
225
|
+
color: '#033D6F',
|
|
226
|
+
fontSize: '28px',
|
|
227
|
+
fontFamily: 'Lato'
|
|
228
|
+
},
|
|
229
|
+
text: {
|
|
230
|
+
// height: '476px',
|
|
231
|
+
// width: '675px',
|
|
232
|
+
color: '#000000',
|
|
233
|
+
fontFamily: props => props.data.fontFamily ? props.data.fontFamily : 'Nunito',
|
|
234
|
+
fontSize: '16px',
|
|
235
|
+
lineHeight: props => props.data.lineHeight ? props.data.lineHeight : '30px'
|
|
236
|
+
},
|
|
237
|
+
title: props => ({
|
|
238
|
+
color: props.titleColor,
|
|
239
|
+
fontWeight: 'bold'
|
|
240
|
+
}),
|
|
241
|
+
email: props => ({
|
|
242
|
+
color: props.linkColor,
|
|
243
|
+
fontWeight: 'bold'
|
|
244
|
+
}),
|
|
245
|
+
contentSection: {
|
|
246
|
+
padding: props => props.data.imageLocation === 'right' ? '8px 25px 8px 0px !important' : '8px 0px 8px 25px !important',
|
|
247
|
+
float: 'left'
|
|
248
|
+
},
|
|
249
|
+
imageSection: {
|
|
250
|
+
float: 'left'
|
|
251
|
+
},
|
|
252
|
+
aboutSection: {
|
|
253
|
+
padding: '60px 45px'
|
|
254
|
+
},
|
|
255
|
+
img: {
|
|
256
|
+
width: '100%'
|
|
257
|
+
},
|
|
258
|
+
linkIcon: {
|
|
259
|
+
width: '20px',
|
|
260
|
+
verticalAlign: 'sub',
|
|
261
|
+
margin: '0px 0px 0px 2px'
|
|
262
|
+
},
|
|
263
|
+
link: props => ({
|
|
264
|
+
color: props.linkColor,
|
|
265
|
+
'&:hover': {
|
|
266
|
+
color: props.linkColor
|
|
267
|
+
}
|
|
268
|
+
}),
|
|
269
|
+
tableDiv: {
|
|
270
|
+
marginTop: '0px'
|
|
271
|
+
},
|
|
272
|
+
tablelinkIcon: {
|
|
273
|
+
width: '15px',
|
|
274
|
+
verticalAlign: 'sub',
|
|
275
|
+
margin: '0px 0px 0px 2px'
|
|
276
|
+
},
|
|
277
|
+
tableLink: {
|
|
278
|
+
fontWeight: 'bolder',
|
|
279
|
+
textDecoration: 'underline'
|
|
280
|
+
},
|
|
281
|
+
table: {
|
|
282
|
+
borderSpacing: '0',
|
|
283
|
+
borderCollapse: 'collapse',
|
|
284
|
+
fontSize: '12px',
|
|
285
|
+
fontWeight: 'bold',
|
|
286
|
+
letterSpacing: '0.025em',
|
|
287
|
+
lineHeight: '30px',
|
|
288
|
+
textAlign: 'left',
|
|
289
|
+
width: '100%'
|
|
290
|
+
},
|
|
291
|
+
tableHeader: {
|
|
292
|
+
fontFamily: props => props.data.fontFamily ? props.data.fontFamily : 'Nunito',
|
|
293
|
+
color: '#194563',
|
|
294
|
+
textTransform: 'uppercase'
|
|
295
|
+
},
|
|
296
|
+
tableBodyRow: {
|
|
297
|
+
borderSpacing: '0',
|
|
298
|
+
borderCollapse: 'collapse',
|
|
299
|
+
color: '#3E7AAA'
|
|
300
|
+
},
|
|
301
|
+
tableCell: {
|
|
302
|
+
fontFamily: props => props.data.fontFamily ? props.data.fontFamily : 'Nunito',
|
|
303
|
+
fontSize: '14px',
|
|
304
|
+
padding: '8px 15px 8px 0px',
|
|
305
|
+
borderBottom: '0.66px solid #087CA5'
|
|
306
|
+
},
|
|
307
|
+
headerCell: {
|
|
308
|
+
borderBottom: '4px solid #087CA5',
|
|
309
|
+
borderSpacing: '0',
|
|
310
|
+
borderCollapse: 'collapse',
|
|
311
|
+
fontWeight: 'bolder'
|
|
312
|
+
},
|
|
313
|
+
MyCasesWizardStep4: {
|
|
314
|
+
width: '600px'
|
|
315
|
+
}
|
|
316
|
+
});
|
|
317
|
+
AboutBody.defaultProps = {
|
|
318
|
+
classes: {},
|
|
319
|
+
data: {
|
|
320
|
+
content: [],
|
|
321
|
+
fontFamily: 'Nunito',
|
|
322
|
+
lineHeight: '30px'
|
|
323
|
+
},
|
|
324
|
+
linkColor: '#0296C9',
|
|
325
|
+
titleColor: '#0B3556',
|
|
326
|
+
externalIconImage: 'https://raw.githubusercontent.com/CBIIT/datacommons-assets/main/common/images/logos/svgs/externalLinkIcon.svg'
|
|
327
|
+
};
|
|
328
|
+
var _default = (0, _core.withStyles)(styles)(AboutBody);
|
|
329
|
+
exports.default = _default;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _core = require("@material-ui/core");
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
10
|
+
const AboutHeader = _ref => {
|
|
11
|
+
let {
|
|
12
|
+
classes,
|
|
13
|
+
title
|
|
14
|
+
} = _ref;
|
|
15
|
+
return /*#__PURE__*/_react.default.createElement("div", {
|
|
16
|
+
className: classes.container
|
|
17
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
18
|
+
className: classes.header
|
|
19
|
+
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
20
|
+
id: "about_title",
|
|
21
|
+
className: classes.titleBody
|
|
22
|
+
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
23
|
+
className: classes.titleText
|
|
24
|
+
}, title))), /*#__PURE__*/_react.default.createElement("div", {
|
|
25
|
+
className: classes.whitePadding
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
const styles = () => ({
|
|
29
|
+
header: {
|
|
30
|
+
padding: '45px'
|
|
31
|
+
},
|
|
32
|
+
container: props => ({
|
|
33
|
+
background: props.background
|
|
34
|
+
}),
|
|
35
|
+
whitePadding: {
|
|
36
|
+
height: '6px',
|
|
37
|
+
background: 'white'
|
|
38
|
+
},
|
|
39
|
+
titleBody: {
|
|
40
|
+
textAlign: 'center'
|
|
41
|
+
},
|
|
42
|
+
titleText: props => ({
|
|
43
|
+
height: '65px',
|
|
44
|
+
width: '252px',
|
|
45
|
+
color: props.titleColor,
|
|
46
|
+
fontFamily: 'Lato',
|
|
47
|
+
fontSize: '35px',
|
|
48
|
+
fontWeight: 'bold'
|
|
49
|
+
})
|
|
50
|
+
});
|
|
51
|
+
AboutHeader.defaultProps = {
|
|
52
|
+
titleColor: '#0077E3',
|
|
53
|
+
background: '#e7eef5'
|
|
54
|
+
};
|
|
55
|
+
var _default = (0, _core.withStyles)(styles)(AboutHeader);
|
|
56
|
+
exports.default = _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 131.2 130.5" style="enable-background:new 0 0 131.2 130.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#0296C9;}
|
|
7
|
+
</style>
|
|
8
|
+
<title>Group</title>
|
|
9
|
+
<desc>Created with Sketch.</desc>
|
|
10
|
+
<g>
|
|
11
|
+
<polygon class="st0" points="70.9,16 86.1,31.2 44,72.8 56.9,85.8 99,44.1 115.8,60.9 115.8,16 "/>
|
|
12
|
+
<polygon class="st0" points="87,100.2 29.6,100.2 29.6,42.8 61.9,42.8 75.3,29.4 16.2,29.4 16.2,113.7 100.4,113.7 100.4,55.4
|
|
13
|
+
87,68.8 "/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 131.2 130.5" style="enable-background:new 0 0 131.2 130.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#3E7AAA;}
|
|
7
|
+
</style>
|
|
8
|
+
<title>Group</title>
|
|
9
|
+
<desc>Created with Sketch.</desc>
|
|
10
|
+
<g>
|
|
11
|
+
<polygon class="st0" points="70.9,16 86.1,31.2 44,72.8 56.9,85.8 99,44.1 115.8,60.9 115.8,16 "/>
|
|
12
|
+
<polygon class="st0" points="87,100.2 29.6,100.2 29.6,42.8 61.9,42.8 75.3,29.4 16.2,29.4 16.2,113.7 100.4,113.7 100.4,55.4
|
|
13
|
+
87,68.8 "/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 42 42" style="enable-background:new 0 0 42 42;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{display:none;}
|
|
7
|
+
.st1{display:inline;fill:#687A91;stroke:#FFFFFF;stroke-width:0.85;stroke-miterlimit:10;}
|
|
8
|
+
.st2{display:inline;fill:#FFFFFF;}
|
|
9
|
+
.st3{fill:#687A91;stroke:#FFFFFF;stroke-width:0.85;stroke-miterlimit:10;}
|
|
10
|
+
.st4{fill:#FFFFFF;}
|
|
11
|
+
</style>
|
|
12
|
+
<g id="Layer_1" class="st0">
|
|
13
|
+
<circle class="st1" cx="20.9" cy="21" r="20"/>
|
|
14
|
+
<path class="st2" d="M32.8,31.6l-3.9-4c1.8-2,3-4.6,3-7.5C32,14,26.9,9,20.8,9c-3,0-5.9,1.2-8,3.3c-2.1,2.1-3.2,4.8-3.2,7.8
|
|
15
|
+
c0,6.1,5,11.1,11.2,11.1c2.3,0,4.4-0.7,6.2-1.8l4,4.1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,0.9-0.4C33.3,33,33.4,32.2,32.8,31.6z
|
|
16
|
+
M20.8,11.7c4.7,0,8.5,3.8,8.5,8.4c0,4.6-3.8,8.4-8.5,8.4c-4.7,0-8.5-3.8-8.5-8.4C12.2,15.5,16.1,11.7,20.8,11.7z"/>
|
|
17
|
+
<path class="st2" d="M25.8,21.1H16c-0.4,0-0.7-0.3-0.7-0.7v0c0-0.4,0.3-0.7,0.7-0.7h9.8c0.4,0,0.7,0.3,0.7,0.7v0
|
|
18
|
+
C26.5,20.8,26.2,21.1,25.8,21.1z"/>
|
|
19
|
+
<path class="st2" d="M20.2,25.3v-9.8c0-0.4,0.3-0.7,0.7-0.7h0c0.4,0,0.7,0.3,0.7,0.7v9.8c0,0.4-0.3,0.7-0.7,0.7h0
|
|
20
|
+
C20.5,26,20.2,25.7,20.2,25.3z"/>
|
|
21
|
+
</g>
|
|
22
|
+
<g id="Layer_2" class="st0">
|
|
23
|
+
<circle class="st1" cx="20.9" cy="20.9" r="20"/>
|
|
24
|
+
<path class="st2" d="M32.9,31.6l-3.9-4c1.8-2,3-4.6,3-7.5C32,14,27,9,20.8,9c-3,0-5.9,1.2-8,3.3c-2.1,2.1-3.2,4.8-3.2,7.8
|
|
25
|
+
c0,6.1,5,11.1,11.2,11.1c2.3,0,4.4-0.7,6.2-1.8l4,4.1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,0.9-0.4C33.4,33,33.4,32.2,32.9,31.6z
|
|
26
|
+
M20.8,11.7c4.7,0,8.5,3.8,8.5,8.4c0,4.6-3.8,8.4-8.5,8.4c-4.7,0-8.5-3.8-8.5-8.4C12.3,15.5,16.1,11.7,20.8,11.7z"/>
|
|
27
|
+
<path class="st2" d="M25.8,21.1H16c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h9.8c0.4,0,0.7,0.3,0.7,0.7l0,0
|
|
28
|
+
C26.5,20.8,26.2,21.1,25.8,21.1z"/>
|
|
29
|
+
</g>
|
|
30
|
+
<g id="Layer_3">
|
|
31
|
+
<circle class="st3" cx="20.8" cy="21" r="20"/>
|
|
32
|
+
<g>
|
|
33
|
+
<g>
|
|
34
|
+
<path class="st4" d="M34.9,20.4l-1.8-1.8c-0.3-0.3-0.7-0.3-1,0c-0.3,0.3-0.3,0.7,0,1l0.5,0.5h-7c-0.3-2.1-1.9-3.7-4-4v-7l0.5,0.5
|
|
35
|
+
c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.7,0-1L21.3,7c-0.3-0.3-0.8-0.3-1,0l-1.8,1.8c-0.3,0.3-0.3,0.7,0,1
|
|
36
|
+
c0.3,0.3,0.7,0.3,1,0l0.6-0.5v7c-2.1,0.3-3.7,1.9-4,4h-7l0.5-0.5c0.3-0.3,0.3-0.8,0-1c-0.3-0.3-0.7-0.3-1,0l-1.8,1.8
|
|
37
|
+
c-0.3,0.3-0.3,0.7,0,1l1.8,1.8c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.7,0-1l-0.5-0.5h7
|
|
38
|
+
c0.3,2.1,1.9,3.7,4,4v7l-0.5-0.5c-0.3-0.3-0.7-0.3-1,0c-0.3,0.3-0.3,0.7,0,1l1.8,1.8c0.1,0.1,0.3,0.2,0.5,0.2
|
|
39
|
+
c0.2,0,0.4-0.1,0.5-0.2l1.8-1.8c0.3-0.3,0.3-0.7,0-1c-0.3-0.3-0.7-0.3-1,0l-0.6,0.5v-7c2.1-0.3,3.7-2,4-4h7l-0.5,0.5
|
|
40
|
+
c-0.3,0.3-0.3,0.7,0,1c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2l1.8-1.8C35.1,21.2,35.1,20.7,34.9,20.4z M20.9,24.3
|
|
41
|
+
c-1.8,0-3.3-1.5-3.3-3.3c0-1.8,1.5-3.3,3.3-3.3c1.8,0,3.3,1.5,3.3,3.3C24.2,22.8,22.7,24.3,20.9,24.3z"/>
|
|
42
|
+
<path class="st4" d="M20.9,35.3c-0.2,0-0.4-0.1-0.6-0.3l-1.8-1.8c-0.2-0.2-0.3-0.4-0.3-0.6c0-0.2,0.1-0.4,0.3-0.6
|
|
43
|
+
c0.3-0.3,0.9-0.3,1.2,0l0.3,0.3v-6.5c-2-0.4-3.6-2-4-4H9.5l0.3,0.3c0.2,0.2,0.3,0.4,0.3,0.6c0,0.2-0.1,0.4-0.3,0.6
|
|
44
|
+
c-0.3,0.3-0.9,0.3-1.2,0l-1.8-1.8c-0.3-0.3-0.3-0.9,0-1.2l1.8-1.8c0.3-0.3,0.9-0.3,1.2,0c0.2,0.1,0.2,0.3,0.3,0.6
|
|
45
|
+
c0,0.2-0.1,0.5-0.3,0.6l-0.3,0.3H16c0.3-2,1.9-3.6,4-4V9.5l-0.4,0.3c-0.3,0.3-0.9,0.3-1.2,0c-0.3-0.3-0.3-0.9,0-1.2l1.8-1.8
|
|
46
|
+
c0.1-0.2,0.3-0.2,0.6-0.3c0.2,0,0.5,0.1,0.6,0.3l1.8,1.8c0.3,0.3,0.3,0.9,0,1.2c-0.3,0.3-0.9,0.3-1.2,0l-0.3-0.3v6.6
|
|
47
|
+
c2,0.4,3.6,1.9,4,4h6.6L32,19.8c-0.3-0.3-0.3-0.9,0-1.2c0.3-0.3,0.9-0.3,1.2,0l1.8,1.8c0.3,0.3,0.3,0.9,0,1.2l-1.8,1.8
|
|
48
|
+
c-0.3,0.3-0.9,0.3-1.2,0c-0.3-0.3-0.3-0.9,0-1.2l0.3-0.3h-6.5c-0.4,2-2,3.6-4,4v6.6l0.4-0.3c0.3-0.3,0.9-0.3,1.2,0
|
|
49
|
+
c0.2,0.2,0.3,0.4,0.3,0.6c0,0.2-0.1,0.4-0.3,0.6l-1.8,1.8C21.3,35.2,21.1,35.3,20.9,35.3z M19.1,32.1c-0.2,0-0.3,0.1-0.4,0.2
|
|
50
|
+
c-0.1,0.1-0.2,0.3-0.2,0.4s0.1,0.3,0.2,0.4l1.8,1.8c0.2,0.2,0.6,0.2,0.8,0l1.8-1.8c0.1-0.1,0.2-0.3,0.2-0.4s-0.1-0.3-0.2-0.4
|
|
51
|
+
c-0.2-0.2-0.6-0.2-0.8,0L21.5,33v-7.3l0.1,0c2-0.3,3.6-1.9,3.9-3.9l0-0.1h7.4l-0.7,0.7c-0.2,0.2-0.2,0.6,0,0.8
|
|
52
|
+
c0.2,0.2,0.6,0.2,0.8,0l1.8-1.8c0.2-0.2,0.2-0.6,0-0.9L33,18.8c-0.2-0.2-0.6-0.2-0.8,0c-0.2,0.2-0.2,0.6,0,0.8l0.7,0.8h-7.4
|
|
53
|
+
l0-0.1c-0.3-2-1.9-3.6-3.9-3.9l-0.1,0V9l0.7,0.7c0.2,0.2,0.6,0.2,0.8,0c0.1-0.1,0.2-0.3,0.2-0.4S23.2,9,23.1,8.8l-1.8-1.8
|
|
54
|
+
C21.1,7,21,6.9,20.8,6.9c-0.2,0-0.3,0.1-0.4,0.2l-1.8,1.8c-0.2,0.2-0.2,0.6,0,0.8c0.2,0.2,0.6,0.2,0.8,0L20.3,9v7.3l-0.1,0
|
|
55
|
+
c-2,0.3-3.6,1.9-3.9,3.9l0,0.1H8.9l0.7-0.7c0.1-0.1,0.2-0.3,0.2-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.2-0.2-0.6-0.2-0.9,0l-1.8,1.8
|
|
56
|
+
c-0.2,0.2-0.2,0.6,0,0.8l1.8,1.8c0.2,0.2,0.6,0.2,0.8,0c0.1-0.1,0.2-0.3,0.2-0.4s-0.1-0.3-0.2-0.4l-0.7-0.7h7.4l0,0.1
|
|
57
|
+
c0.3,2,1.9,3.6,3.9,3.9l0.1,0V33l-0.7-0.7C19.4,32.2,19.3,32.1,19.1,32.1z M20.9,24.4c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5
|
|
58
|
+
c1.9,0,3.5,1.6,3.5,3.5S22.8,24.4,20.9,24.4z M20.9,17.8c-1.8,0-3.2,1.4-3.2,3.2s1.4,3.2,3.2,3.2c1.8,0,3.2-1.4,3.2-3.2
|
|
59
|
+
S22.6,17.8,20.9,17.8z"/>
|
|
60
|
+
</g>
|
|
61
|
+
</g>
|
|
62
|
+
</g>
|
|
63
|
+
<g id="Layer_4">
|
|
64
|
+
</g>
|
|
65
|
+
</svg>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 42 42" style="enable-background:new 0 0 42 42;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#687A91;stroke:#FFFFFF;stroke-width:0.85;stroke-miterlimit:10;}
|
|
7
|
+
.st1{fill:#FFFFFF;}
|
|
8
|
+
.st2{display:none;}
|
|
9
|
+
.st3{display:inline;fill:#687A91;stroke:#FFFFFF;stroke-width:0.85;stroke-miterlimit:10;}
|
|
10
|
+
.st4{display:inline;fill:#FFFFFF;}
|
|
11
|
+
.st5{display:inline;}
|
|
12
|
+
</style>
|
|
13
|
+
<g id="Layer_1">
|
|
14
|
+
<circle class="st0" cx="20.9" cy="21" r="20"/>
|
|
15
|
+
<path class="st1" d="M32.8,31.6l-3.9-4c1.8-2,3-4.6,3-7.5C32,14,26.9,9,20.8,9c-3,0-5.9,1.2-8,3.3c-2.1,2.1-3.2,4.8-3.2,7.8
|
|
16
|
+
c0,6.1,5,11.1,11.2,11.1c2.3,0,4.4-0.7,6.2-1.8l4,4.1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,0.9-0.4C33.3,33,33.4,32.2,32.8,31.6z
|
|
17
|
+
M20.8,11.7c4.7,0,8.5,3.8,8.5,8.4c0,4.6-3.8,8.4-8.5,8.4c-4.7,0-8.5-3.8-8.5-8.4C12.2,15.5,16.1,11.7,20.8,11.7z"/>
|
|
18
|
+
<path class="st1" d="M25.8,21.1H16c-0.4,0-0.7-0.3-0.7-0.7v0c0-0.4,0.3-0.7,0.7-0.7h9.8c0.4,0,0.7,0.3,0.7,0.7v0
|
|
19
|
+
C26.5,20.8,26.2,21.1,25.8,21.1z"/>
|
|
20
|
+
<path class="st1" d="M20.2,25.3v-9.8c0-0.4,0.3-0.7,0.7-0.7h0c0.4,0,0.7,0.3,0.7,0.7v9.8c0,0.4-0.3,0.7-0.7,0.7h0
|
|
21
|
+
C20.5,26,20.2,25.7,20.2,25.3z"/>
|
|
22
|
+
</g>
|
|
23
|
+
<g id="Layer_2" class="st2">
|
|
24
|
+
<circle class="st3" cx="20.9" cy="20.9" r="20"/>
|
|
25
|
+
<path class="st4" d="M32.9,31.6l-3.9-4c1.8-2,3-4.6,3-7.5C32,14,27,9,20.8,9c-3,0-5.9,1.2-8,3.3c-2.1,2.1-3.2,4.8-3.2,7.8
|
|
26
|
+
c0,6.1,5,11.1,11.2,11.1c2.3,0,4.4-0.7,6.2-1.8l4,4.1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,0.9-0.4C33.4,33,33.4,32.2,32.9,31.6z
|
|
27
|
+
M20.8,11.7c4.7,0,8.5,3.8,8.5,8.4c0,4.6-3.8,8.4-8.5,8.4c-4.7,0-8.5-3.8-8.5-8.4C12.3,15.5,16.1,11.7,20.8,11.7z"/>
|
|
28
|
+
<path class="st4" d="M25.8,21.1H16c-0.4,0-0.7-0.3-0.7-0.7l0,0c0-0.4,0.3-0.7,0.7-0.7h9.8c0.4,0,0.7,0.3,0.7,0.7l0,0
|
|
29
|
+
C26.5,20.8,26.2,21.1,25.8,21.1z"/>
|
|
30
|
+
</g>
|
|
31
|
+
<g id="Layer_3" class="st2">
|
|
32
|
+
<circle class="st3" cx="20.8" cy="21" r="20"/>
|
|
33
|
+
<g class="st5">
|
|
34
|
+
<g>
|
|
35
|
+
<path class="st1" d="M34.9,20.4l-1.8-1.8c-0.3-0.3-0.7-0.3-1,0c-0.3,0.3-0.3,0.7,0,1l0.5,0.5h-7c-0.3-2.1-1.9-3.7-4-4v-7l0.5,0.5
|
|
36
|
+
c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.7,0-1L21.3,7c-0.3-0.3-0.8-0.3-1,0l-1.8,1.8c-0.3,0.3-0.3,0.7,0,1
|
|
37
|
+
c0.3,0.3,0.7,0.3,1,0l0.6-0.5v7c-2.1,0.3-3.7,1.9-4,4h-7l0.5-0.5c0.3-0.3,0.3-0.8,0-1c-0.3-0.3-0.7-0.3-1,0l-1.8,1.8
|
|
38
|
+
c-0.3,0.3-0.3,0.7,0,1l1.8,1.8c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.7,0-1l-0.5-0.5h7
|
|
39
|
+
c0.3,2.1,1.9,3.7,4,4v7l-0.5-0.5c-0.3-0.3-0.7-0.3-1,0c-0.3,0.3-0.3,0.7,0,1l1.8,1.8c0.1,0.1,0.3,0.2,0.5,0.2
|
|
40
|
+
c0.2,0,0.4-0.1,0.5-0.2l1.8-1.8c0.3-0.3,0.3-0.7,0-1c-0.3-0.3-0.7-0.3-1,0l-0.6,0.5v-7c2.1-0.3,3.7-2,4-4h7l-0.5,0.5
|
|
41
|
+
c-0.3,0.3-0.3,0.7,0,1c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2l1.8-1.8C35.1,21.2,35.1,20.7,34.9,20.4z M20.9,24.3
|
|
42
|
+
c-1.8,0-3.3-1.5-3.3-3.3c0-1.8,1.5-3.3,3.3-3.3c1.8,0,3.3,1.5,3.3,3.3C24.2,22.8,22.7,24.3,20.9,24.3z"/>
|
|
43
|
+
<path class="st1" d="M20.9,35.3c-0.2,0-0.4-0.1-0.6-0.3l-1.8-1.8c-0.2-0.2-0.3-0.4-0.3-0.6c0-0.2,0.1-0.4,0.3-0.6
|
|
44
|
+
c0.3-0.3,0.9-0.3,1.2,0l0.3,0.3v-6.5c-2-0.4-3.6-2-4-4H9.5l0.3,0.3c0.2,0.2,0.3,0.4,0.3,0.6c0,0.2-0.1,0.4-0.3,0.6
|
|
45
|
+
c-0.3,0.3-0.9,0.3-1.2,0l-1.8-1.8c-0.3-0.3-0.3-0.9,0-1.2l1.8-1.8c0.3-0.3,0.9-0.3,1.2,0c0.2,0.1,0.2,0.3,0.3,0.6
|
|
46
|
+
c0,0.2-0.1,0.5-0.3,0.6l-0.3,0.3H16c0.3-2,1.9-3.6,4-4V9.5l-0.4,0.3c-0.3,0.3-0.9,0.3-1.2,0c-0.3-0.3-0.3-0.9,0-1.2l1.8-1.8
|
|
47
|
+
c0.1-0.2,0.3-0.2,0.6-0.3c0.2,0,0.5,0.1,0.6,0.3l1.8,1.8c0.3,0.3,0.3,0.9,0,1.2c-0.3,0.3-0.9,0.3-1.2,0l-0.3-0.3v6.6
|
|
48
|
+
c2,0.4,3.6,1.9,4,4h6.6L32,19.8c-0.3-0.3-0.3-0.9,0-1.2c0.3-0.3,0.9-0.3,1.2,0l1.8,1.8c0.3,0.3,0.3,0.9,0,1.2l-1.8,1.8
|
|
49
|
+
c-0.3,0.3-0.9,0.3-1.2,0c-0.3-0.3-0.3-0.9,0-1.2l0.3-0.3h-6.5c-0.4,2-2,3.6-4,4v6.6l0.4-0.3c0.3-0.3,0.9-0.3,1.2,0
|
|
50
|
+
c0.2,0.2,0.3,0.4,0.3,0.6c0,0.2-0.1,0.4-0.3,0.6l-1.8,1.8C21.3,35.2,21.1,35.3,20.9,35.3z M19.1,32.1c-0.2,0-0.3,0.1-0.4,0.2
|
|
51
|
+
c-0.1,0.1-0.2,0.3-0.2,0.4s0.1,0.3,0.2,0.4l1.8,1.8c0.2,0.2,0.6,0.2,0.8,0l1.8-1.8c0.1-0.1,0.2-0.3,0.2-0.4s-0.1-0.3-0.2-0.4
|
|
52
|
+
c-0.2-0.2-0.6-0.2-0.8,0L21.5,33v-7.3l0.1,0c2-0.3,3.6-1.9,3.9-3.9l0-0.1h7.4l-0.7,0.7c-0.2,0.2-0.2,0.6,0,0.8
|
|
53
|
+
c0.2,0.2,0.6,0.2,0.8,0l1.8-1.8c0.2-0.2,0.2-0.6,0-0.9L33,18.8c-0.2-0.2-0.6-0.2-0.8,0c-0.2,0.2-0.2,0.6,0,0.8l0.7,0.8h-7.4
|
|
54
|
+
l0-0.1c-0.3-2-1.9-3.6-3.9-3.9l-0.1,0V9l0.7,0.7c0.2,0.2,0.6,0.2,0.8,0c0.1-0.1,0.2-0.3,0.2-0.4S23.2,9,23.1,8.8l-1.8-1.8
|
|
55
|
+
C21.1,7,21,6.9,20.8,6.9c-0.2,0-0.3,0.1-0.4,0.2l-1.8,1.8c-0.2,0.2-0.2,0.6,0,0.8c0.2,0.2,0.6,0.2,0.8,0L20.3,9v7.3l-0.1,0
|
|
56
|
+
c-2,0.3-3.6,1.9-3.9,3.9l0,0.1H8.9l0.7-0.7c0.1-0.1,0.2-0.3,0.2-0.5c0-0.2-0.1-0.3-0.2-0.4c-0.2-0.2-0.6-0.2-0.9,0l-1.8,1.8
|
|
57
|
+
c-0.2,0.2-0.2,0.6,0,0.8l1.8,1.8c0.2,0.2,0.6,0.2,0.8,0c0.1-0.1,0.2-0.3,0.2-0.4s-0.1-0.3-0.2-0.4l-0.7-0.7h7.4l0,0.1
|
|
58
|
+
c0.3,2,1.9,3.6,3.9,3.9l0.1,0V33l-0.7-0.7C19.4,32.2,19.3,32.1,19.1,32.1z M20.9,24.4c-1.9,0-3.5-1.6-3.5-3.5s1.6-3.5,3.5-3.5
|
|
59
|
+
c1.9,0,3.5,1.6,3.5,3.5S22.8,24.4,20.9,24.4z M20.9,17.8c-1.8,0-3.2,1.4-3.2,3.2s1.4,3.2,3.2,3.2c1.8,0,3.2-1.4,3.2-3.2
|
|
60
|
+
S22.6,17.8,20.9,17.8z"/>
|
|
61
|
+
</g>
|
|
62
|
+
</g>
|
|
63
|
+
</g>
|
|
64
|
+
<g id="Layer_4">
|
|
65
|
+
</g>
|
|
66
|
+
</svg>
|