@pagopa/io-app-design-system 1.38.6 → 1.39.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/lib/commonjs/components/numberpad/NumberButton.js +11 -3
- package/lib/commonjs/components/numberpad/NumberButton.js.map +1 -1
- package/lib/commonjs/components/numberpad/NumberPad.js +67 -61
- package/lib/commonjs/components/numberpad/NumberPad.js.map +1 -1
- package/lib/commonjs/components/numberpad/__test__/NumberPad.test.js +76 -0
- package/lib/commonjs/components/numberpad/__test__/NumberPad.test.js.map +1 -0
- package/lib/commonjs/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +1266 -0
- package/lib/module/components/numberpad/NumberButton.js +12 -4
- package/lib/module/components/numberpad/NumberButton.js.map +1 -1
- package/lib/module/components/numberpad/NumberPad.js +66 -61
- package/lib/module/components/numberpad/NumberPad.js.map +1 -1
- package/lib/module/components/numberpad/__test__/NumberPad.test.js +73 -0
- package/lib/module/components/numberpad/__test__/NumberPad.test.js.map +1 -0
- package/lib/module/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +1266 -0
- package/lib/typescript/components/numberpad/NumberButton.d.ts +17 -1
- package/lib/typescript/components/numberpad/NumberButton.d.ts.map +1 -1
- package/lib/typescript/components/numberpad/NumberPad.d.ts +39 -5
- package/lib/typescript/components/numberpad/NumberPad.d.ts.map +1 -1
- package/lib/typescript/components/numberpad/__test__/NumberPad.test.d.ts +2 -0
- package/lib/typescript/components/numberpad/__test__/NumberPad.test.d.ts.map +1 -0
- package/lib/typescript/utils/types.d.ts +8 -0
- package/lib/typescript/utils/types.d.ts.map +1 -1
- package/package.json +2 -1
- package/src/components/numberpad/NumberButton.tsx +26 -7
- package/src/components/numberpad/NumberPad.tsx +126 -93
- package/src/components/numberpad/__test__/NumberPad.test.tsx +77 -0
- package/src/components/numberpad/__test__/__snapshots__/NumberPad.test.tsx.snap +1266 -0
- package/src/utils/types.ts +10 -0
|
@@ -0,0 +1,1266 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`NumberPad Should match the snapshot 1`] = `
|
|
4
|
+
<View
|
|
5
|
+
style={
|
|
6
|
+
{
|
|
7
|
+
"paddingHorizontal": 24,
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
>
|
|
11
|
+
<View
|
|
12
|
+
style={
|
|
13
|
+
[
|
|
14
|
+
{
|
|
15
|
+
"flexDirection": "row",
|
|
16
|
+
"justifyContent": "space-between",
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"alignItems": "center",
|
|
20
|
+
"flexGrow": 1,
|
|
21
|
+
"justifyContent": "space-between",
|
|
22
|
+
},
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
>
|
|
26
|
+
<View
|
|
27
|
+
accessibilityRole="button"
|
|
28
|
+
accessibilityState={
|
|
29
|
+
{
|
|
30
|
+
"busy": undefined,
|
|
31
|
+
"checked": undefined,
|
|
32
|
+
"disabled": undefined,
|
|
33
|
+
"expanded": undefined,
|
|
34
|
+
"selected": undefined,
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
accessibilityValue={
|
|
38
|
+
{
|
|
39
|
+
"max": undefined,
|
|
40
|
+
"min": undefined,
|
|
41
|
+
"now": undefined,
|
|
42
|
+
"text": undefined,
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
accessible={true}
|
|
46
|
+
collapsable={false}
|
|
47
|
+
focusable={true}
|
|
48
|
+
onBlur={[Function]}
|
|
49
|
+
onClick={[Function]}
|
|
50
|
+
onFocus={[Function]}
|
|
51
|
+
onResponderGrant={[Function]}
|
|
52
|
+
onResponderMove={[Function]}
|
|
53
|
+
onResponderRelease={[Function]}
|
|
54
|
+
onResponderTerminate={[Function]}
|
|
55
|
+
onResponderTerminationRequest={[Function]}
|
|
56
|
+
onStartShouldSetResponder={[Function]}
|
|
57
|
+
>
|
|
58
|
+
<View
|
|
59
|
+
style={
|
|
60
|
+
[
|
|
61
|
+
{
|
|
62
|
+
"alignItems": "center",
|
|
63
|
+
"justifyContent": "center",
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"borderRadius": 100,
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"height": 56,
|
|
70
|
+
"width": 56,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"backgroundColor": undefined,
|
|
74
|
+
"transform": [
|
|
75
|
+
{
|
|
76
|
+
"scale": undefined,
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
},
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
>
|
|
83
|
+
<Text
|
|
84
|
+
allowFontScaling={false}
|
|
85
|
+
color="white"
|
|
86
|
+
defaultColor="bluegreyDark"
|
|
87
|
+
defaultWeight="SemiBold"
|
|
88
|
+
font="TitilliumWeb"
|
|
89
|
+
fontStyle={
|
|
90
|
+
{
|
|
91
|
+
"fontSize": 24,
|
|
92
|
+
"lineHeight": 34,
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
style={
|
|
96
|
+
[
|
|
97
|
+
{
|
|
98
|
+
"fontSize": 24,
|
|
99
|
+
"lineHeight": 34,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"color": "#FFFFFF",
|
|
103
|
+
"fontFamily": "Titillium Web",
|
|
104
|
+
"fontStyle": "normal",
|
|
105
|
+
"fontWeight": "600",
|
|
106
|
+
},
|
|
107
|
+
]
|
|
108
|
+
}
|
|
109
|
+
weight="SemiBold"
|
|
110
|
+
>
|
|
111
|
+
1
|
|
112
|
+
</Text>
|
|
113
|
+
</View>
|
|
114
|
+
</View>
|
|
115
|
+
<View
|
|
116
|
+
accessibilityRole="button"
|
|
117
|
+
accessibilityState={
|
|
118
|
+
{
|
|
119
|
+
"busy": undefined,
|
|
120
|
+
"checked": undefined,
|
|
121
|
+
"disabled": undefined,
|
|
122
|
+
"expanded": undefined,
|
|
123
|
+
"selected": undefined,
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
accessibilityValue={
|
|
127
|
+
{
|
|
128
|
+
"max": undefined,
|
|
129
|
+
"min": undefined,
|
|
130
|
+
"now": undefined,
|
|
131
|
+
"text": undefined,
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
accessible={true}
|
|
135
|
+
collapsable={false}
|
|
136
|
+
focusable={true}
|
|
137
|
+
onBlur={[Function]}
|
|
138
|
+
onClick={[Function]}
|
|
139
|
+
onFocus={[Function]}
|
|
140
|
+
onResponderGrant={[Function]}
|
|
141
|
+
onResponderMove={[Function]}
|
|
142
|
+
onResponderRelease={[Function]}
|
|
143
|
+
onResponderTerminate={[Function]}
|
|
144
|
+
onResponderTerminationRequest={[Function]}
|
|
145
|
+
onStartShouldSetResponder={[Function]}
|
|
146
|
+
>
|
|
147
|
+
<View
|
|
148
|
+
style={
|
|
149
|
+
[
|
|
150
|
+
{
|
|
151
|
+
"alignItems": "center",
|
|
152
|
+
"justifyContent": "center",
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"borderRadius": 100,
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"height": 56,
|
|
159
|
+
"width": 56,
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"backgroundColor": undefined,
|
|
163
|
+
"transform": [
|
|
164
|
+
{
|
|
165
|
+
"scale": undefined,
|
|
166
|
+
},
|
|
167
|
+
],
|
|
168
|
+
},
|
|
169
|
+
]
|
|
170
|
+
}
|
|
171
|
+
>
|
|
172
|
+
<Text
|
|
173
|
+
allowFontScaling={false}
|
|
174
|
+
color="white"
|
|
175
|
+
defaultColor="bluegreyDark"
|
|
176
|
+
defaultWeight="SemiBold"
|
|
177
|
+
font="TitilliumWeb"
|
|
178
|
+
fontStyle={
|
|
179
|
+
{
|
|
180
|
+
"fontSize": 24,
|
|
181
|
+
"lineHeight": 34,
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
style={
|
|
185
|
+
[
|
|
186
|
+
{
|
|
187
|
+
"fontSize": 24,
|
|
188
|
+
"lineHeight": 34,
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"color": "#FFFFFF",
|
|
192
|
+
"fontFamily": "Titillium Web",
|
|
193
|
+
"fontStyle": "normal",
|
|
194
|
+
"fontWeight": "600",
|
|
195
|
+
},
|
|
196
|
+
]
|
|
197
|
+
}
|
|
198
|
+
weight="SemiBold"
|
|
199
|
+
>
|
|
200
|
+
2
|
|
201
|
+
</Text>
|
|
202
|
+
</View>
|
|
203
|
+
</View>
|
|
204
|
+
<View
|
|
205
|
+
accessibilityRole="button"
|
|
206
|
+
accessibilityState={
|
|
207
|
+
{
|
|
208
|
+
"busy": undefined,
|
|
209
|
+
"checked": undefined,
|
|
210
|
+
"disabled": undefined,
|
|
211
|
+
"expanded": undefined,
|
|
212
|
+
"selected": undefined,
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
accessibilityValue={
|
|
216
|
+
{
|
|
217
|
+
"max": undefined,
|
|
218
|
+
"min": undefined,
|
|
219
|
+
"now": undefined,
|
|
220
|
+
"text": undefined,
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
accessible={true}
|
|
224
|
+
collapsable={false}
|
|
225
|
+
focusable={true}
|
|
226
|
+
onBlur={[Function]}
|
|
227
|
+
onClick={[Function]}
|
|
228
|
+
onFocus={[Function]}
|
|
229
|
+
onResponderGrant={[Function]}
|
|
230
|
+
onResponderMove={[Function]}
|
|
231
|
+
onResponderRelease={[Function]}
|
|
232
|
+
onResponderTerminate={[Function]}
|
|
233
|
+
onResponderTerminationRequest={[Function]}
|
|
234
|
+
onStartShouldSetResponder={[Function]}
|
|
235
|
+
>
|
|
236
|
+
<View
|
|
237
|
+
style={
|
|
238
|
+
[
|
|
239
|
+
{
|
|
240
|
+
"alignItems": "center",
|
|
241
|
+
"justifyContent": "center",
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"borderRadius": 100,
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"height": 56,
|
|
248
|
+
"width": 56,
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"backgroundColor": undefined,
|
|
252
|
+
"transform": [
|
|
253
|
+
{
|
|
254
|
+
"scale": undefined,
|
|
255
|
+
},
|
|
256
|
+
],
|
|
257
|
+
},
|
|
258
|
+
]
|
|
259
|
+
}
|
|
260
|
+
>
|
|
261
|
+
<Text
|
|
262
|
+
allowFontScaling={false}
|
|
263
|
+
color="white"
|
|
264
|
+
defaultColor="bluegreyDark"
|
|
265
|
+
defaultWeight="SemiBold"
|
|
266
|
+
font="TitilliumWeb"
|
|
267
|
+
fontStyle={
|
|
268
|
+
{
|
|
269
|
+
"fontSize": 24,
|
|
270
|
+
"lineHeight": 34,
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
style={
|
|
274
|
+
[
|
|
275
|
+
{
|
|
276
|
+
"fontSize": 24,
|
|
277
|
+
"lineHeight": 34,
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"color": "#FFFFFF",
|
|
281
|
+
"fontFamily": "Titillium Web",
|
|
282
|
+
"fontStyle": "normal",
|
|
283
|
+
"fontWeight": "600",
|
|
284
|
+
},
|
|
285
|
+
]
|
|
286
|
+
}
|
|
287
|
+
weight="SemiBold"
|
|
288
|
+
>
|
|
289
|
+
3
|
|
290
|
+
</Text>
|
|
291
|
+
</View>
|
|
292
|
+
</View>
|
|
293
|
+
</View>
|
|
294
|
+
<View
|
|
295
|
+
style={
|
|
296
|
+
{
|
|
297
|
+
"height": 16,
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
/>
|
|
301
|
+
<View
|
|
302
|
+
style={
|
|
303
|
+
[
|
|
304
|
+
{
|
|
305
|
+
"flexDirection": "row",
|
|
306
|
+
"justifyContent": "space-between",
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"alignItems": "center",
|
|
310
|
+
"flexGrow": 1,
|
|
311
|
+
"justifyContent": "space-between",
|
|
312
|
+
},
|
|
313
|
+
]
|
|
314
|
+
}
|
|
315
|
+
>
|
|
316
|
+
<View
|
|
317
|
+
accessibilityRole="button"
|
|
318
|
+
accessibilityState={
|
|
319
|
+
{
|
|
320
|
+
"busy": undefined,
|
|
321
|
+
"checked": undefined,
|
|
322
|
+
"disabled": undefined,
|
|
323
|
+
"expanded": undefined,
|
|
324
|
+
"selected": undefined,
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
accessibilityValue={
|
|
328
|
+
{
|
|
329
|
+
"max": undefined,
|
|
330
|
+
"min": undefined,
|
|
331
|
+
"now": undefined,
|
|
332
|
+
"text": undefined,
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
accessible={true}
|
|
336
|
+
collapsable={false}
|
|
337
|
+
focusable={true}
|
|
338
|
+
onBlur={[Function]}
|
|
339
|
+
onClick={[Function]}
|
|
340
|
+
onFocus={[Function]}
|
|
341
|
+
onResponderGrant={[Function]}
|
|
342
|
+
onResponderMove={[Function]}
|
|
343
|
+
onResponderRelease={[Function]}
|
|
344
|
+
onResponderTerminate={[Function]}
|
|
345
|
+
onResponderTerminationRequest={[Function]}
|
|
346
|
+
onStartShouldSetResponder={[Function]}
|
|
347
|
+
>
|
|
348
|
+
<View
|
|
349
|
+
style={
|
|
350
|
+
[
|
|
351
|
+
{
|
|
352
|
+
"alignItems": "center",
|
|
353
|
+
"justifyContent": "center",
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"borderRadius": 100,
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"height": 56,
|
|
360
|
+
"width": 56,
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"backgroundColor": undefined,
|
|
364
|
+
"transform": [
|
|
365
|
+
{
|
|
366
|
+
"scale": undefined,
|
|
367
|
+
},
|
|
368
|
+
],
|
|
369
|
+
},
|
|
370
|
+
]
|
|
371
|
+
}
|
|
372
|
+
>
|
|
373
|
+
<Text
|
|
374
|
+
allowFontScaling={false}
|
|
375
|
+
color="white"
|
|
376
|
+
defaultColor="bluegreyDark"
|
|
377
|
+
defaultWeight="SemiBold"
|
|
378
|
+
font="TitilliumWeb"
|
|
379
|
+
fontStyle={
|
|
380
|
+
{
|
|
381
|
+
"fontSize": 24,
|
|
382
|
+
"lineHeight": 34,
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
style={
|
|
386
|
+
[
|
|
387
|
+
{
|
|
388
|
+
"fontSize": 24,
|
|
389
|
+
"lineHeight": 34,
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"color": "#FFFFFF",
|
|
393
|
+
"fontFamily": "Titillium Web",
|
|
394
|
+
"fontStyle": "normal",
|
|
395
|
+
"fontWeight": "600",
|
|
396
|
+
},
|
|
397
|
+
]
|
|
398
|
+
}
|
|
399
|
+
weight="SemiBold"
|
|
400
|
+
>
|
|
401
|
+
4
|
|
402
|
+
</Text>
|
|
403
|
+
</View>
|
|
404
|
+
</View>
|
|
405
|
+
<View
|
|
406
|
+
accessibilityRole="button"
|
|
407
|
+
accessibilityState={
|
|
408
|
+
{
|
|
409
|
+
"busy": undefined,
|
|
410
|
+
"checked": undefined,
|
|
411
|
+
"disabled": undefined,
|
|
412
|
+
"expanded": undefined,
|
|
413
|
+
"selected": undefined,
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
accessibilityValue={
|
|
417
|
+
{
|
|
418
|
+
"max": undefined,
|
|
419
|
+
"min": undefined,
|
|
420
|
+
"now": undefined,
|
|
421
|
+
"text": undefined,
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
accessible={true}
|
|
425
|
+
collapsable={false}
|
|
426
|
+
focusable={true}
|
|
427
|
+
onBlur={[Function]}
|
|
428
|
+
onClick={[Function]}
|
|
429
|
+
onFocus={[Function]}
|
|
430
|
+
onResponderGrant={[Function]}
|
|
431
|
+
onResponderMove={[Function]}
|
|
432
|
+
onResponderRelease={[Function]}
|
|
433
|
+
onResponderTerminate={[Function]}
|
|
434
|
+
onResponderTerminationRequest={[Function]}
|
|
435
|
+
onStartShouldSetResponder={[Function]}
|
|
436
|
+
>
|
|
437
|
+
<View
|
|
438
|
+
style={
|
|
439
|
+
[
|
|
440
|
+
{
|
|
441
|
+
"alignItems": "center",
|
|
442
|
+
"justifyContent": "center",
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"borderRadius": 100,
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"height": 56,
|
|
449
|
+
"width": 56,
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"backgroundColor": undefined,
|
|
453
|
+
"transform": [
|
|
454
|
+
{
|
|
455
|
+
"scale": undefined,
|
|
456
|
+
},
|
|
457
|
+
],
|
|
458
|
+
},
|
|
459
|
+
]
|
|
460
|
+
}
|
|
461
|
+
>
|
|
462
|
+
<Text
|
|
463
|
+
allowFontScaling={false}
|
|
464
|
+
color="white"
|
|
465
|
+
defaultColor="bluegreyDark"
|
|
466
|
+
defaultWeight="SemiBold"
|
|
467
|
+
font="TitilliumWeb"
|
|
468
|
+
fontStyle={
|
|
469
|
+
{
|
|
470
|
+
"fontSize": 24,
|
|
471
|
+
"lineHeight": 34,
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
style={
|
|
475
|
+
[
|
|
476
|
+
{
|
|
477
|
+
"fontSize": 24,
|
|
478
|
+
"lineHeight": 34,
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"color": "#FFFFFF",
|
|
482
|
+
"fontFamily": "Titillium Web",
|
|
483
|
+
"fontStyle": "normal",
|
|
484
|
+
"fontWeight": "600",
|
|
485
|
+
},
|
|
486
|
+
]
|
|
487
|
+
}
|
|
488
|
+
weight="SemiBold"
|
|
489
|
+
>
|
|
490
|
+
5
|
|
491
|
+
</Text>
|
|
492
|
+
</View>
|
|
493
|
+
</View>
|
|
494
|
+
<View
|
|
495
|
+
accessibilityRole="button"
|
|
496
|
+
accessibilityState={
|
|
497
|
+
{
|
|
498
|
+
"busy": undefined,
|
|
499
|
+
"checked": undefined,
|
|
500
|
+
"disabled": undefined,
|
|
501
|
+
"expanded": undefined,
|
|
502
|
+
"selected": undefined,
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
accessibilityValue={
|
|
506
|
+
{
|
|
507
|
+
"max": undefined,
|
|
508
|
+
"min": undefined,
|
|
509
|
+
"now": undefined,
|
|
510
|
+
"text": undefined,
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
accessible={true}
|
|
514
|
+
collapsable={false}
|
|
515
|
+
focusable={true}
|
|
516
|
+
onBlur={[Function]}
|
|
517
|
+
onClick={[Function]}
|
|
518
|
+
onFocus={[Function]}
|
|
519
|
+
onResponderGrant={[Function]}
|
|
520
|
+
onResponderMove={[Function]}
|
|
521
|
+
onResponderRelease={[Function]}
|
|
522
|
+
onResponderTerminate={[Function]}
|
|
523
|
+
onResponderTerminationRequest={[Function]}
|
|
524
|
+
onStartShouldSetResponder={[Function]}
|
|
525
|
+
>
|
|
526
|
+
<View
|
|
527
|
+
style={
|
|
528
|
+
[
|
|
529
|
+
{
|
|
530
|
+
"alignItems": "center",
|
|
531
|
+
"justifyContent": "center",
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"borderRadius": 100,
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"height": 56,
|
|
538
|
+
"width": 56,
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"backgroundColor": undefined,
|
|
542
|
+
"transform": [
|
|
543
|
+
{
|
|
544
|
+
"scale": undefined,
|
|
545
|
+
},
|
|
546
|
+
],
|
|
547
|
+
},
|
|
548
|
+
]
|
|
549
|
+
}
|
|
550
|
+
>
|
|
551
|
+
<Text
|
|
552
|
+
allowFontScaling={false}
|
|
553
|
+
color="white"
|
|
554
|
+
defaultColor="bluegreyDark"
|
|
555
|
+
defaultWeight="SemiBold"
|
|
556
|
+
font="TitilliumWeb"
|
|
557
|
+
fontStyle={
|
|
558
|
+
{
|
|
559
|
+
"fontSize": 24,
|
|
560
|
+
"lineHeight": 34,
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
style={
|
|
564
|
+
[
|
|
565
|
+
{
|
|
566
|
+
"fontSize": 24,
|
|
567
|
+
"lineHeight": 34,
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"color": "#FFFFFF",
|
|
571
|
+
"fontFamily": "Titillium Web",
|
|
572
|
+
"fontStyle": "normal",
|
|
573
|
+
"fontWeight": "600",
|
|
574
|
+
},
|
|
575
|
+
]
|
|
576
|
+
}
|
|
577
|
+
weight="SemiBold"
|
|
578
|
+
>
|
|
579
|
+
6
|
|
580
|
+
</Text>
|
|
581
|
+
</View>
|
|
582
|
+
</View>
|
|
583
|
+
</View>
|
|
584
|
+
<View
|
|
585
|
+
style={
|
|
586
|
+
{
|
|
587
|
+
"height": 16,
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
/>
|
|
591
|
+
<View
|
|
592
|
+
style={
|
|
593
|
+
[
|
|
594
|
+
{
|
|
595
|
+
"flexDirection": "row",
|
|
596
|
+
"justifyContent": "space-between",
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"alignItems": "center",
|
|
600
|
+
"flexGrow": 1,
|
|
601
|
+
"justifyContent": "space-between",
|
|
602
|
+
},
|
|
603
|
+
]
|
|
604
|
+
}
|
|
605
|
+
>
|
|
606
|
+
<View
|
|
607
|
+
accessibilityRole="button"
|
|
608
|
+
accessibilityState={
|
|
609
|
+
{
|
|
610
|
+
"busy": undefined,
|
|
611
|
+
"checked": undefined,
|
|
612
|
+
"disabled": undefined,
|
|
613
|
+
"expanded": undefined,
|
|
614
|
+
"selected": undefined,
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
accessibilityValue={
|
|
618
|
+
{
|
|
619
|
+
"max": undefined,
|
|
620
|
+
"min": undefined,
|
|
621
|
+
"now": undefined,
|
|
622
|
+
"text": undefined,
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
accessible={true}
|
|
626
|
+
collapsable={false}
|
|
627
|
+
focusable={true}
|
|
628
|
+
onBlur={[Function]}
|
|
629
|
+
onClick={[Function]}
|
|
630
|
+
onFocus={[Function]}
|
|
631
|
+
onResponderGrant={[Function]}
|
|
632
|
+
onResponderMove={[Function]}
|
|
633
|
+
onResponderRelease={[Function]}
|
|
634
|
+
onResponderTerminate={[Function]}
|
|
635
|
+
onResponderTerminationRequest={[Function]}
|
|
636
|
+
onStartShouldSetResponder={[Function]}
|
|
637
|
+
>
|
|
638
|
+
<View
|
|
639
|
+
style={
|
|
640
|
+
[
|
|
641
|
+
{
|
|
642
|
+
"alignItems": "center",
|
|
643
|
+
"justifyContent": "center",
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"borderRadius": 100,
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"height": 56,
|
|
650
|
+
"width": 56,
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"backgroundColor": undefined,
|
|
654
|
+
"transform": [
|
|
655
|
+
{
|
|
656
|
+
"scale": undefined,
|
|
657
|
+
},
|
|
658
|
+
],
|
|
659
|
+
},
|
|
660
|
+
]
|
|
661
|
+
}
|
|
662
|
+
>
|
|
663
|
+
<Text
|
|
664
|
+
allowFontScaling={false}
|
|
665
|
+
color="white"
|
|
666
|
+
defaultColor="bluegreyDark"
|
|
667
|
+
defaultWeight="SemiBold"
|
|
668
|
+
font="TitilliumWeb"
|
|
669
|
+
fontStyle={
|
|
670
|
+
{
|
|
671
|
+
"fontSize": 24,
|
|
672
|
+
"lineHeight": 34,
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
style={
|
|
676
|
+
[
|
|
677
|
+
{
|
|
678
|
+
"fontSize": 24,
|
|
679
|
+
"lineHeight": 34,
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"color": "#FFFFFF",
|
|
683
|
+
"fontFamily": "Titillium Web",
|
|
684
|
+
"fontStyle": "normal",
|
|
685
|
+
"fontWeight": "600",
|
|
686
|
+
},
|
|
687
|
+
]
|
|
688
|
+
}
|
|
689
|
+
weight="SemiBold"
|
|
690
|
+
>
|
|
691
|
+
7
|
|
692
|
+
</Text>
|
|
693
|
+
</View>
|
|
694
|
+
</View>
|
|
695
|
+
<View
|
|
696
|
+
accessibilityRole="button"
|
|
697
|
+
accessibilityState={
|
|
698
|
+
{
|
|
699
|
+
"busy": undefined,
|
|
700
|
+
"checked": undefined,
|
|
701
|
+
"disabled": undefined,
|
|
702
|
+
"expanded": undefined,
|
|
703
|
+
"selected": undefined,
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
accessibilityValue={
|
|
707
|
+
{
|
|
708
|
+
"max": undefined,
|
|
709
|
+
"min": undefined,
|
|
710
|
+
"now": undefined,
|
|
711
|
+
"text": undefined,
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
accessible={true}
|
|
715
|
+
collapsable={false}
|
|
716
|
+
focusable={true}
|
|
717
|
+
onBlur={[Function]}
|
|
718
|
+
onClick={[Function]}
|
|
719
|
+
onFocus={[Function]}
|
|
720
|
+
onResponderGrant={[Function]}
|
|
721
|
+
onResponderMove={[Function]}
|
|
722
|
+
onResponderRelease={[Function]}
|
|
723
|
+
onResponderTerminate={[Function]}
|
|
724
|
+
onResponderTerminationRequest={[Function]}
|
|
725
|
+
onStartShouldSetResponder={[Function]}
|
|
726
|
+
>
|
|
727
|
+
<View
|
|
728
|
+
style={
|
|
729
|
+
[
|
|
730
|
+
{
|
|
731
|
+
"alignItems": "center",
|
|
732
|
+
"justifyContent": "center",
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"borderRadius": 100,
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"height": 56,
|
|
739
|
+
"width": 56,
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"backgroundColor": undefined,
|
|
743
|
+
"transform": [
|
|
744
|
+
{
|
|
745
|
+
"scale": undefined,
|
|
746
|
+
},
|
|
747
|
+
],
|
|
748
|
+
},
|
|
749
|
+
]
|
|
750
|
+
}
|
|
751
|
+
>
|
|
752
|
+
<Text
|
|
753
|
+
allowFontScaling={false}
|
|
754
|
+
color="white"
|
|
755
|
+
defaultColor="bluegreyDark"
|
|
756
|
+
defaultWeight="SemiBold"
|
|
757
|
+
font="TitilliumWeb"
|
|
758
|
+
fontStyle={
|
|
759
|
+
{
|
|
760
|
+
"fontSize": 24,
|
|
761
|
+
"lineHeight": 34,
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
style={
|
|
765
|
+
[
|
|
766
|
+
{
|
|
767
|
+
"fontSize": 24,
|
|
768
|
+
"lineHeight": 34,
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"color": "#FFFFFF",
|
|
772
|
+
"fontFamily": "Titillium Web",
|
|
773
|
+
"fontStyle": "normal",
|
|
774
|
+
"fontWeight": "600",
|
|
775
|
+
},
|
|
776
|
+
]
|
|
777
|
+
}
|
|
778
|
+
weight="SemiBold"
|
|
779
|
+
>
|
|
780
|
+
8
|
|
781
|
+
</Text>
|
|
782
|
+
</View>
|
|
783
|
+
</View>
|
|
784
|
+
<View
|
|
785
|
+
accessibilityRole="button"
|
|
786
|
+
accessibilityState={
|
|
787
|
+
{
|
|
788
|
+
"busy": undefined,
|
|
789
|
+
"checked": undefined,
|
|
790
|
+
"disabled": undefined,
|
|
791
|
+
"expanded": undefined,
|
|
792
|
+
"selected": undefined,
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
accessibilityValue={
|
|
796
|
+
{
|
|
797
|
+
"max": undefined,
|
|
798
|
+
"min": undefined,
|
|
799
|
+
"now": undefined,
|
|
800
|
+
"text": undefined,
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
accessible={true}
|
|
804
|
+
collapsable={false}
|
|
805
|
+
focusable={true}
|
|
806
|
+
onBlur={[Function]}
|
|
807
|
+
onClick={[Function]}
|
|
808
|
+
onFocus={[Function]}
|
|
809
|
+
onResponderGrant={[Function]}
|
|
810
|
+
onResponderMove={[Function]}
|
|
811
|
+
onResponderRelease={[Function]}
|
|
812
|
+
onResponderTerminate={[Function]}
|
|
813
|
+
onResponderTerminationRequest={[Function]}
|
|
814
|
+
onStartShouldSetResponder={[Function]}
|
|
815
|
+
>
|
|
816
|
+
<View
|
|
817
|
+
style={
|
|
818
|
+
[
|
|
819
|
+
{
|
|
820
|
+
"alignItems": "center",
|
|
821
|
+
"justifyContent": "center",
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"borderRadius": 100,
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"height": 56,
|
|
828
|
+
"width": 56,
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"backgroundColor": undefined,
|
|
832
|
+
"transform": [
|
|
833
|
+
{
|
|
834
|
+
"scale": undefined,
|
|
835
|
+
},
|
|
836
|
+
],
|
|
837
|
+
},
|
|
838
|
+
]
|
|
839
|
+
}
|
|
840
|
+
>
|
|
841
|
+
<Text
|
|
842
|
+
allowFontScaling={false}
|
|
843
|
+
color="white"
|
|
844
|
+
defaultColor="bluegreyDark"
|
|
845
|
+
defaultWeight="SemiBold"
|
|
846
|
+
font="TitilliumWeb"
|
|
847
|
+
fontStyle={
|
|
848
|
+
{
|
|
849
|
+
"fontSize": 24,
|
|
850
|
+
"lineHeight": 34,
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
style={
|
|
854
|
+
[
|
|
855
|
+
{
|
|
856
|
+
"fontSize": 24,
|
|
857
|
+
"lineHeight": 34,
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"color": "#FFFFFF",
|
|
861
|
+
"fontFamily": "Titillium Web",
|
|
862
|
+
"fontStyle": "normal",
|
|
863
|
+
"fontWeight": "600",
|
|
864
|
+
},
|
|
865
|
+
]
|
|
866
|
+
}
|
|
867
|
+
weight="SemiBold"
|
|
868
|
+
>
|
|
869
|
+
9
|
|
870
|
+
</Text>
|
|
871
|
+
</View>
|
|
872
|
+
</View>
|
|
873
|
+
</View>
|
|
874
|
+
<View
|
|
875
|
+
style={
|
|
876
|
+
{
|
|
877
|
+
"height": 16,
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
/>
|
|
881
|
+
<View
|
|
882
|
+
style={
|
|
883
|
+
[
|
|
884
|
+
{
|
|
885
|
+
"flexDirection": "row",
|
|
886
|
+
"justifyContent": "space-between",
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"alignItems": "center",
|
|
890
|
+
"flexGrow": 1,
|
|
891
|
+
"justifyContent": "space-between",
|
|
892
|
+
},
|
|
893
|
+
]
|
|
894
|
+
}
|
|
895
|
+
>
|
|
896
|
+
<View
|
|
897
|
+
style={
|
|
898
|
+
[
|
|
899
|
+
{
|
|
900
|
+
"height": 56,
|
|
901
|
+
"width": 56,
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"alignItems": "center",
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"justifyContent": "center",
|
|
908
|
+
},
|
|
909
|
+
]
|
|
910
|
+
}
|
|
911
|
+
>
|
|
912
|
+
<View
|
|
913
|
+
accessibilityLabel="touch id trigger"
|
|
914
|
+
accessibilityRole="button"
|
|
915
|
+
accessibilityState={
|
|
916
|
+
{
|
|
917
|
+
"busy": undefined,
|
|
918
|
+
"checked": undefined,
|
|
919
|
+
"disabled": false,
|
|
920
|
+
"expanded": undefined,
|
|
921
|
+
"selected": undefined,
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
accessibilityValue={
|
|
925
|
+
{
|
|
926
|
+
"max": undefined,
|
|
927
|
+
"min": undefined,
|
|
928
|
+
"now": undefined,
|
|
929
|
+
"text": undefined,
|
|
930
|
+
}
|
|
931
|
+
}
|
|
932
|
+
accessible={true}
|
|
933
|
+
collapsable={false}
|
|
934
|
+
focusable={true}
|
|
935
|
+
hitSlop={8}
|
|
936
|
+
onBlur={[Function]}
|
|
937
|
+
onClick={[Function]}
|
|
938
|
+
onFocus={[Function]}
|
|
939
|
+
onResponderGrant={[Function]}
|
|
940
|
+
onResponderMove={[Function]}
|
|
941
|
+
onResponderRelease={[Function]}
|
|
942
|
+
onResponderTerminate={[Function]}
|
|
943
|
+
onResponderTerminationRequest={[Function]}
|
|
944
|
+
onStartShouldSetResponder={[Function]}
|
|
945
|
+
>
|
|
946
|
+
<View
|
|
947
|
+
style={
|
|
948
|
+
[
|
|
949
|
+
{
|
|
950
|
+
"height": 24,
|
|
951
|
+
"width": 24,
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"alignItems": "center",
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"justifyContent": "center",
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"transform": [
|
|
961
|
+
{
|
|
962
|
+
"scale": undefined,
|
|
963
|
+
},
|
|
964
|
+
],
|
|
965
|
+
},
|
|
966
|
+
]
|
|
967
|
+
}
|
|
968
|
+
>
|
|
969
|
+
<RNSVGSvgView
|
|
970
|
+
accessibilityElementsHidden={true}
|
|
971
|
+
accessibilityLabel=""
|
|
972
|
+
accessible={false}
|
|
973
|
+
align="xMidYMid"
|
|
974
|
+
animatedProps={
|
|
975
|
+
{
|
|
976
|
+
"color": undefined,
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
bbHeight={24}
|
|
980
|
+
bbWidth={24}
|
|
981
|
+
focusable={false}
|
|
982
|
+
height={24}
|
|
983
|
+
importantForAccessibility="no-hide-descendants"
|
|
984
|
+
meetOrSlice={0}
|
|
985
|
+
minX={0}
|
|
986
|
+
minY={0}
|
|
987
|
+
style={
|
|
988
|
+
[
|
|
989
|
+
{
|
|
990
|
+
"backgroundColor": "transparent",
|
|
991
|
+
"borderWidth": 0,
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"color": "#FFFFFF",
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"flex": 0,
|
|
998
|
+
"height": 24,
|
|
999
|
+
"width": 24,
|
|
1000
|
+
},
|
|
1001
|
+
]
|
|
1002
|
+
}
|
|
1003
|
+
tintColor="#FFFFFF"
|
|
1004
|
+
vbHeight={24}
|
|
1005
|
+
vbWidth={24}
|
|
1006
|
+
width={24}
|
|
1007
|
+
>
|
|
1008
|
+
<RNSVGGroup
|
|
1009
|
+
fill={
|
|
1010
|
+
{
|
|
1011
|
+
"payload": 4278190080,
|
|
1012
|
+
"type": 0,
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
>
|
|
1016
|
+
<RNSVGPath
|
|
1017
|
+
clipRule={0}
|
|
1018
|
+
d="M5.3669 22.0799C5.54087 22.2122 5.75341 22.2839 5.972 22.284C6.15303 22.284 6.33068 22.2349 6.486 22.142C11 19.433 11 13.946 11 10.999C11 10.7337 11.1054 10.4794 11.2929 10.2918C11.4804 10.1043 11.7348 9.99895 12 9.99895C12.2652 9.99895 12.5196 10.1043 12.7071 10.2918C12.8946 10.4794 13 10.7337 13 10.999C13 11.2642 13.1054 11.5185 13.2929 11.7061C13.4804 11.8936 13.7348 11.999 14 11.999C14.2652 11.999 14.5196 11.8936 14.7071 11.7061C14.8946 11.5185 15 11.2642 15 10.999C15 10.2033 14.6839 9.44024 14.1213 8.87763C13.5587 8.31502 12.7956 7.99895 12 7.99895C11.2044 7.99895 10.4413 8.31502 9.87868 8.87763C9.31607 9.44024 9 10.2033 9 10.999C9 13.729 9 18.299 5.457 20.427C5.26967 20.5396 5.12441 20.7105 5.04345 20.9135C4.96248 21.1166 4.95027 21.3406 5.00869 21.5512C5.0671 21.7618 5.19292 21.9475 5.3669 22.0799ZM14.896 14.084C14.55 18.171 13.217 21.405 10.935 23.705V23.701C10.748 23.8891 10.494 23.9953 10.2287 23.9962C9.96341 23.997 9.70867 23.8924 9.5205 23.7055C9.33233 23.5185 9.22614 23.2644 9.2253 22.9991C9.22445 22.7339 9.32902 22.4791 9.516 22.291C11.485 20.31 12.593 17.567 12.904 13.91C12.913 13.7783 12.9483 13.6499 13.008 13.5322C13.0677 13.4146 13.1504 13.3102 13.2513 13.2252C13.3521 13.1401 13.4691 13.0763 13.5951 13.0375C13.7212 12.9986 13.8538 12.9855 13.985 12.999C14.1161 13.0102 14.2438 13.0471 14.3606 13.1078C14.4774 13.1684 14.5811 13.2515 14.6658 13.3523C14.7504 13.4531 14.8143 13.5696 14.8538 13.6952C14.8933 13.8207 14.9077 13.9529 14.896 14.084ZM17.643 20.338C17.2467 21.4455 16.7416 22.5111 16.135 23.519C16.0668 23.6313 15.9772 23.7291 15.8713 23.8068C15.7653 23.8845 15.6451 23.9406 15.5174 23.9719C15.2597 24.035 14.9874 23.9931 14.7605 23.8555C14.6482 23.7873 14.5503 23.6977 14.4726 23.5917C14.3949 23.4858 14.3388 23.3655 14.3076 23.2379C14.2763 23.1103 14.2705 22.9777 14.2905 22.8478C14.3105 22.718 14.3558 22.5933 14.424 22.481C14.9617 21.5869 15.4099 20.642 15.762 19.66C15.8562 19.4164 16.0421 19.2193 16.2797 19.1109C16.5174 19.0026 16.788 18.9915 17.0337 19.08C17.2794 19.1686 17.4808 19.3498 17.5946 19.5849C17.7085 19.82 17.7258 20.0902 17.643 20.338ZM19 10.999C19.038 13.0741 18.8705 15.1478 18.5 17.19C18.4558 17.4173 18.334 17.6223 18.1554 17.7698C17.9769 17.9174 17.7526 17.9984 17.521 17.999C17.4562 17.999 17.3915 17.9927 17.328 17.98C17.0679 17.9292 16.8386 17.7772 16.6905 17.5574C16.5423 17.3377 16.4875 17.0681 16.538 16.808C16.8821 14.8915 17.0369 12.9458 17 10.999C16.9993 9.98698 16.6916 8.99903 16.1174 8.16568C15.5433 7.33234 14.7298 6.69282 13.7845 6.33166C12.8391 5.97049 11.8064 5.90468 10.8229 6.14292C9.83937 6.38116 8.95128 6.91223 8.276 7.66595C8.18966 7.7681 8.08371 7.85189 7.96441 7.91236C7.84512 7.97284 7.7149 8.00877 7.58148 8.01802C7.44805 8.02728 7.31412 8.00968 7.18762 7.96626C7.06111 7.92283 6.94461 7.85448 6.84499 7.76523C6.74537 7.67598 6.66467 7.56766 6.60766 7.44667C6.55065 7.32568 6.51849 7.19449 6.51308 7.06085C6.50768 6.92721 6.52913 6.79384 6.57618 6.66864C6.62323 6.54345 6.69492 6.42896 6.787 6.33195C7.73248 5.27691 8.97584 4.53359 10.3528 4.20021C11.7297 3.86683 13.1753 3.95909 14.4987 4.46479C15.8221 4.9705 16.9609 5.86585 17.7646 7.03251C18.5683 8.19918 18.9991 9.58225 19 10.999ZM7.069 10.166C7.02279 10.4412 6.99971 10.7198 7 10.999C7 16.774 4.88732 19.9713 1.0499 19.9988C1.03337 19.9996 1.01673 20 1 20C0.447715 20 0 19.5523 0 19C0 18.9998 4.50013e-08 18.9997 1.34992e-07 18.9995C4.49994e-08 18.9993 0 18.9991 0 18.999C0 18.7337 0.105357 18.4794 0.292893 18.2918C0.48043 18.1043 0.734784 17.999 1 17.999C3.654 17.999 5 15.644 5 10.999C5.00054 10.6078 5.03399 10.2175 5.1 9.83195C5.11551 9.69701 5.15835 9.56664 5.2259 9.44879C5.29346 9.33095 5.38431 9.2281 5.49293 9.14653C5.60154 9.06496 5.72563 9.00637 5.85763 8.97433C5.98963 8.9423 6.12678 8.9375 6.2607 8.96021C6.39462 8.98293 6.52251 9.03269 6.63657 9.10646C6.75062 9.18024 6.84845 9.27647 6.92409 9.3893C6.99972 9.50212 7.05158 9.62918 7.0765 9.76271C7.10141 9.89624 7.09886 10.0334 7.069 10.166ZM23 10.999C23.13 15.2538 22.3457 19.4871 20.7 23.413C20.6208 23.587 20.4934 23.7348 20.3328 23.8386C20.1722 23.9425 19.9852 23.9981 19.794 23.999C19.6514 23.9992 19.5105 23.9685 19.381 23.909C19.2612 23.8549 19.1532 23.7778 19.0632 23.682C18.9732 23.5862 18.9029 23.4736 18.8565 23.3506C18.8101 23.2276 18.7883 23.0967 18.7925 22.9653C18.7967 22.834 18.8268 22.7047 18.881 22.585C20.4035 18.9177 21.1259 14.9677 21 10.999C21.0029 9.64107 20.695 8.30052 20.1 7.07995C20.0425 6.96176 20.0089 6.83342 20.0011 6.70224C19.9932 6.57106 20.0113 6.43961 20.0542 6.31542C20.0972 6.19122 20.1642 6.07669 20.2514 5.97839C20.3386 5.88008 20.4443 5.79991 20.5625 5.74245C20.6807 5.685 20.809 5.65139 20.9402 5.64354C21.0714 5.63569 21.2028 5.65375 21.327 5.6967C21.4512 5.73965 21.5658 5.80663 21.6641 5.89384C21.7624 5.98105 21.8425 6.08676 21.9 6.20495C22.6283 7.69786 23.0046 9.33788 23 10.999ZM3 10.999V13.999C3 14.2642 2.89464 14.5185 2.70711 14.7061C2.51957 14.8936 2.26522 14.999 2 14.999C1.73478 14.999 1.48043 14.8936 1.29289 14.7061C1.10536 14.5185 1 14.2642 1 13.999V10.999C1.00344 8.08263 2.16347 5.28673 4.22563 3.22458C6.28778 1.16242 9.08367 0.00239289 12 -0.00104758C14.3812 -0.00833344 16.6994 0.764374 18.6 2.19895C18.8122 2.35808 18.9524 2.59498 18.99 2.85753C19.0275 3.12008 18.9591 3.38678 18.8 3.59895C18.6409 3.81113 18.404 3.9514 18.1414 3.9889C17.8789 4.02641 17.6122 3.95808 17.4 3.79895C15.8452 2.62473 13.9484 1.99246 12 1.99895C9.61386 2.0016 7.32622 2.95066 5.63896 4.63792C3.95171 6.32517 3.00265 8.61282 3 10.999Z"
|
|
1019
|
+
fill={
|
|
1020
|
+
{
|
|
1021
|
+
"type": 2,
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
fillRule={0}
|
|
1025
|
+
propList={
|
|
1026
|
+
[
|
|
1027
|
+
"fill",
|
|
1028
|
+
"fillRule",
|
|
1029
|
+
]
|
|
1030
|
+
}
|
|
1031
|
+
/>
|
|
1032
|
+
</RNSVGGroup>
|
|
1033
|
+
</RNSVGSvgView>
|
|
1034
|
+
</View>
|
|
1035
|
+
</View>
|
|
1036
|
+
</View>
|
|
1037
|
+
<View
|
|
1038
|
+
accessibilityRole="button"
|
|
1039
|
+
accessibilityState={
|
|
1040
|
+
{
|
|
1041
|
+
"busy": undefined,
|
|
1042
|
+
"checked": undefined,
|
|
1043
|
+
"disabled": undefined,
|
|
1044
|
+
"expanded": undefined,
|
|
1045
|
+
"selected": undefined,
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
accessibilityValue={
|
|
1049
|
+
{
|
|
1050
|
+
"max": undefined,
|
|
1051
|
+
"min": undefined,
|
|
1052
|
+
"now": undefined,
|
|
1053
|
+
"text": undefined,
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
accessible={true}
|
|
1057
|
+
collapsable={false}
|
|
1058
|
+
focusable={true}
|
|
1059
|
+
onBlur={[Function]}
|
|
1060
|
+
onClick={[Function]}
|
|
1061
|
+
onFocus={[Function]}
|
|
1062
|
+
onResponderGrant={[Function]}
|
|
1063
|
+
onResponderMove={[Function]}
|
|
1064
|
+
onResponderRelease={[Function]}
|
|
1065
|
+
onResponderTerminate={[Function]}
|
|
1066
|
+
onResponderTerminationRequest={[Function]}
|
|
1067
|
+
onStartShouldSetResponder={[Function]}
|
|
1068
|
+
>
|
|
1069
|
+
<View
|
|
1070
|
+
style={
|
|
1071
|
+
[
|
|
1072
|
+
{
|
|
1073
|
+
"alignItems": "center",
|
|
1074
|
+
"justifyContent": "center",
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"borderRadius": 100,
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"height": 56,
|
|
1081
|
+
"width": 56,
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"backgroundColor": undefined,
|
|
1085
|
+
"transform": [
|
|
1086
|
+
{
|
|
1087
|
+
"scale": undefined,
|
|
1088
|
+
},
|
|
1089
|
+
],
|
|
1090
|
+
},
|
|
1091
|
+
]
|
|
1092
|
+
}
|
|
1093
|
+
>
|
|
1094
|
+
<Text
|
|
1095
|
+
allowFontScaling={false}
|
|
1096
|
+
color="white"
|
|
1097
|
+
defaultColor="bluegreyDark"
|
|
1098
|
+
defaultWeight="SemiBold"
|
|
1099
|
+
font="TitilliumWeb"
|
|
1100
|
+
fontStyle={
|
|
1101
|
+
{
|
|
1102
|
+
"fontSize": 24,
|
|
1103
|
+
"lineHeight": 34,
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
style={
|
|
1107
|
+
[
|
|
1108
|
+
{
|
|
1109
|
+
"fontSize": 24,
|
|
1110
|
+
"lineHeight": 34,
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"color": "#FFFFFF",
|
|
1114
|
+
"fontFamily": "Titillium Web",
|
|
1115
|
+
"fontStyle": "normal",
|
|
1116
|
+
"fontWeight": "600",
|
|
1117
|
+
},
|
|
1118
|
+
]
|
|
1119
|
+
}
|
|
1120
|
+
weight="SemiBold"
|
|
1121
|
+
>
|
|
1122
|
+
0
|
|
1123
|
+
</Text>
|
|
1124
|
+
</View>
|
|
1125
|
+
</View>
|
|
1126
|
+
<View
|
|
1127
|
+
style={
|
|
1128
|
+
[
|
|
1129
|
+
{
|
|
1130
|
+
"height": 56,
|
|
1131
|
+
"width": 56,
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"alignItems": "center",
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"justifyContent": "center",
|
|
1138
|
+
},
|
|
1139
|
+
]
|
|
1140
|
+
}
|
|
1141
|
+
>
|
|
1142
|
+
<View
|
|
1143
|
+
accessibilityLabel="delete"
|
|
1144
|
+
accessibilityRole="button"
|
|
1145
|
+
accessibilityState={
|
|
1146
|
+
{
|
|
1147
|
+
"busy": undefined,
|
|
1148
|
+
"checked": undefined,
|
|
1149
|
+
"disabled": false,
|
|
1150
|
+
"expanded": undefined,
|
|
1151
|
+
"selected": undefined,
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
accessibilityValue={
|
|
1155
|
+
{
|
|
1156
|
+
"max": undefined,
|
|
1157
|
+
"min": undefined,
|
|
1158
|
+
"now": undefined,
|
|
1159
|
+
"text": undefined,
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
accessible={true}
|
|
1163
|
+
collapsable={false}
|
|
1164
|
+
focusable={true}
|
|
1165
|
+
hitSlop={8}
|
|
1166
|
+
onBlur={[Function]}
|
|
1167
|
+
onClick={[Function]}
|
|
1168
|
+
onFocus={[Function]}
|
|
1169
|
+
onResponderGrant={[Function]}
|
|
1170
|
+
onResponderMove={[Function]}
|
|
1171
|
+
onResponderRelease={[Function]}
|
|
1172
|
+
onResponderTerminate={[Function]}
|
|
1173
|
+
onResponderTerminationRequest={[Function]}
|
|
1174
|
+
onStartShouldSetResponder={[Function]}
|
|
1175
|
+
>
|
|
1176
|
+
<View
|
|
1177
|
+
style={
|
|
1178
|
+
[
|
|
1179
|
+
{
|
|
1180
|
+
"height": 24,
|
|
1181
|
+
"width": 24,
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"alignItems": "center",
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"justifyContent": "center",
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"transform": [
|
|
1191
|
+
{
|
|
1192
|
+
"scale": undefined,
|
|
1193
|
+
},
|
|
1194
|
+
],
|
|
1195
|
+
},
|
|
1196
|
+
]
|
|
1197
|
+
}
|
|
1198
|
+
>
|
|
1199
|
+
<RNSVGSvgView
|
|
1200
|
+
accessibilityElementsHidden={true}
|
|
1201
|
+
accessibilityLabel=""
|
|
1202
|
+
accessible={false}
|
|
1203
|
+
align="xMidYMid"
|
|
1204
|
+
animatedProps={
|
|
1205
|
+
{
|
|
1206
|
+
"color": undefined,
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
bbHeight={24}
|
|
1210
|
+
bbWidth={24}
|
|
1211
|
+
focusable={false}
|
|
1212
|
+
height={24}
|
|
1213
|
+
importantForAccessibility="no-hide-descendants"
|
|
1214
|
+
meetOrSlice={0}
|
|
1215
|
+
minX={0}
|
|
1216
|
+
minY={0}
|
|
1217
|
+
style={
|
|
1218
|
+
[
|
|
1219
|
+
{
|
|
1220
|
+
"backgroundColor": "transparent",
|
|
1221
|
+
"borderWidth": 0,
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"color": "#FFFFFF",
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"flex": 0,
|
|
1228
|
+
"height": 24,
|
|
1229
|
+
"width": 24,
|
|
1230
|
+
},
|
|
1231
|
+
]
|
|
1232
|
+
}
|
|
1233
|
+
tintColor="#FFFFFF"
|
|
1234
|
+
vbHeight={24}
|
|
1235
|
+
vbWidth={24}
|
|
1236
|
+
width={24}
|
|
1237
|
+
>
|
|
1238
|
+
<RNSVGGroup
|
|
1239
|
+
fill={
|
|
1240
|
+
{
|
|
1241
|
+
"payload": 4278190080,
|
|
1242
|
+
"type": 0,
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
>
|
|
1246
|
+
<RNSVGPath
|
|
1247
|
+
d="M9.85825 3a5.00004 5.00004 0 0 0-3.53536 1.46429L.90808 9.87858c-1.17171 1.17162-1.17171 3.07122 0 4.24282l5.41481 5.4143A4.99992 4.99992 0 0 0 9.85825 21h9.14245c2.7615 0 5-2.2386 5-5V8c0-2.76142-2.2385-5-5-5H9.85825ZM7.73704 5.87858A2.99997 2.99997 0 0 1 9.85825 5h9.14245c1.6569 0 3 1.34315 3 3v8c0 1.6569-1.3431 3-3 3H9.85825c-.7956 0-1.55861-.316-2.12121-.8786l-5.41482-5.4143c-.39057-.3905-.39057-1.0237 0-1.4142l5.41482-5.41432Zm9.55586 2.41431c.3905-.39052 1.0237-.39052 1.4142 0 .3905.39053.3905 1.02369 0 1.41422L16.4142 12l2.2929 2.2929c.3905.3905.3905 1.0237 0 1.4142-.3905.3905-1.0237.3905-1.4142 0L15 13.4142l-2.2929 2.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L13.5858 12l-2.2929-2.29289c-.3905-.39053-.3905-1.02369 0-1.41422.3905-.39052 1.0237-.39052 1.4142 0L15 10.5858l2.2929-2.29291Z"
|
|
1248
|
+
fill={
|
|
1249
|
+
{
|
|
1250
|
+
"type": 2,
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
propList={
|
|
1254
|
+
[
|
|
1255
|
+
"fill",
|
|
1256
|
+
]
|
|
1257
|
+
}
|
|
1258
|
+
/>
|
|
1259
|
+
</RNSVGGroup>
|
|
1260
|
+
</RNSVGSvgView>
|
|
1261
|
+
</View>
|
|
1262
|
+
</View>
|
|
1263
|
+
</View>
|
|
1264
|
+
</View>
|
|
1265
|
+
</View>
|
|
1266
|
+
`;
|