be-components 5.4.2 → 5.4.4

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.
Files changed (65) hide show
  1. package/lib/commonjs/Bracket/components/BracketCompetitionActions.js +3 -3
  2. package/lib/commonjs/Bracket/components/BracketCompetitionActions.js.map +1 -1
  3. package/lib/commonjs/Bracket/components/CompetitionLeaderboard.js +1 -0
  4. package/lib/commonjs/Bracket/components/CompetitionLeaderboard.js.map +1 -1
  5. package/lib/commonjs/Bracket/index.js +3 -2
  6. package/lib/commonjs/Bracket/index.js.map +1 -1
  7. package/lib/commonjs/Components/Jerseys.js +117 -114
  8. package/lib/commonjs/Components/Jerseys.js.map +1 -1
  9. package/lib/commonjs/GolfScoreboard/api/index.js +69 -0
  10. package/lib/commonjs/GolfScoreboard/api/index.js.map +1 -0
  11. package/lib/commonjs/GolfScoreboard/index.js +188 -0
  12. package/lib/commonjs/GolfScoreboard/index.js.map +1 -0
  13. package/lib/commonjs/index.js +7 -0
  14. package/lib/commonjs/index.js.map +1 -1
  15. package/lib/module/Bracket/components/BracketCompetitionActions.js +3 -3
  16. package/lib/module/Bracket/components/BracketCompetitionActions.js.map +1 -1
  17. package/lib/module/Bracket/components/CompetitionLeaderboard.js +1 -0
  18. package/lib/module/Bracket/components/CompetitionLeaderboard.js.map +1 -1
  19. package/lib/module/Bracket/index.js +3 -2
  20. package/lib/module/Bracket/index.js.map +1 -1
  21. package/lib/module/Components/Jerseys.js +117 -114
  22. package/lib/module/Components/Jerseys.js.map +1 -1
  23. package/lib/module/GolfScoreboard/api/index.js +62 -0
  24. package/lib/module/GolfScoreboard/api/index.js.map +1 -0
  25. package/lib/module/GolfScoreboard/index.js +179 -0
  26. package/lib/module/GolfScoreboard/index.js.map +1 -0
  27. package/lib/module/index.js +2 -1
  28. package/lib/module/index.js.map +1 -1
  29. package/lib/typescript/lib/commonjs/Bracket/components/CompetitionLeaderboard.d.ts.map +1 -1
  30. package/lib/typescript/lib/commonjs/Bracket/index.d.ts.map +1 -1
  31. package/lib/typescript/lib/commonjs/Components/Jerseys.d.ts.map +1 -1
  32. package/lib/typescript/lib/commonjs/GolfScoreboard/api/index.d.ts +11 -0
  33. package/lib/typescript/lib/commonjs/GolfScoreboard/api/index.d.ts.map +1 -0
  34. package/lib/typescript/lib/commonjs/GolfScoreboard/index.d.ts +6 -0
  35. package/lib/typescript/lib/commonjs/GolfScoreboard/index.d.ts.map +1 -0
  36. package/lib/typescript/lib/commonjs/index.d.ts +1 -0
  37. package/lib/typescript/lib/commonjs/index.d.ts.map +1 -1
  38. package/lib/typescript/lib/module/Bracket/components/CompetitionLeaderboard.d.ts.map +1 -1
  39. package/lib/typescript/lib/module/Bracket/index.d.ts.map +1 -1
  40. package/lib/typescript/lib/module/Components/Jerseys.d.ts.map +1 -1
  41. package/lib/typescript/lib/module/GolfScoreboard/api/index.d.ts +10 -0
  42. package/lib/typescript/lib/module/GolfScoreboard/api/index.d.ts.map +1 -0
  43. package/lib/typescript/lib/module/GolfScoreboard/index.d.ts +6 -0
  44. package/lib/typescript/lib/module/GolfScoreboard/index.d.ts.map +1 -0
  45. package/lib/typescript/lib/module/index.d.ts +2 -1
  46. package/lib/typescript/lib/module/index.d.ts.map +1 -1
  47. package/lib/typescript/src/Bracket/components/BracketCompetitionActions.d.ts.map +1 -1
  48. package/lib/typescript/src/Bracket/components/CompetitionLeaderboard.d.ts.map +1 -1
  49. package/lib/typescript/src/Bracket/index.d.ts.map +1 -1
  50. package/lib/typescript/src/Components/Jerseys.d.ts.map +1 -1
  51. package/lib/typescript/src/GolfScoreboard/api/index.d.ts +15 -0
  52. package/lib/typescript/src/GolfScoreboard/api/index.d.ts.map +1 -0
  53. package/lib/typescript/src/GolfScoreboard/index.d.ts +7 -0
  54. package/lib/typescript/src/GolfScoreboard/index.d.ts.map +1 -0
  55. package/lib/typescript/src/index.d.ts +2 -1
  56. package/lib/typescript/src/index.d.ts.map +1 -1
  57. package/package.json +1 -1
  58. package/src/Bracket/components/BracketCompetitionActions.tsx +3 -4
  59. package/src/Bracket/components/CompetitionLeaderboard.tsx +1 -0
  60. package/src/Bracket/index.tsx +3 -2
  61. package/src/Components/Jerseys.tsx +87 -83
  62. package/src/GolfScoreboard/api/index.tsx +66 -0
  63. package/src/GolfScoreboard/index.tsx +140 -0
  64. package/src/index.tsx +2 -0
  65. package/src/types.d.ts +91 -0
@@ -39,7 +39,9 @@ const AthleteImage = ({
39
39
  stripe_fill: athlete.team?.secondary_color ?? _colors.default.brand.mint
40
40
  });
41
41
  case 'PGA':
42
- return /*#__PURE__*/_react.default.createElement(PGAJersey, null);
42
+ return /*#__PURE__*/_react.default.createElement(PGAJersey, {
43
+ size: size
44
+ });
43
45
  case 'NHL':
44
46
  return /*#__PURE__*/_react.default.createElement(NHLJersey, {
45
47
  jersey_fill: athlete.team?.primary_color ?? _colors.default.brand.midnight,
@@ -63,12 +65,11 @@ const AthleteImage = ({
63
65
  };
64
66
  return /*#__PURE__*/_react.default.createElement(_reactNative.View, {
65
67
  style: {
66
- margin: 5,
67
68
  alignSelf: 'center',
68
69
  justifyContent: 'center',
69
70
  alignItems: 'center',
70
- height: athlete_image ? undefined : 55,
71
- width: athlete_image ? undefined : 55,
71
+ height: athlete_image ? undefined : size * 2,
72
+ width: athlete_image ? undefined : size * 2,
72
73
  borderRadius: 100,
73
74
  backgroundColor: _colors.default.shades.white
74
75
  }
@@ -164,9 +165,9 @@ const NFLJersey = ({
164
165
  })), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
165
166
  id: "Page-1",
166
167
  stroke: "none",
167
- "stroke-width": "1",
168
+ strokeWidth: "1",
168
169
  fill: "none",
169
- "fill-rule": "evenodd"
170
+ fillRule: "evenodd"
170
171
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
171
172
  id: "TestJersey",
172
173
  transform: "translate(1.000000, 1.000000)"
@@ -174,37 +175,37 @@ const NFLJersey = ({
174
175
  d: "M29.6625067,0 C29.6625067,0 38.5345729,3.33771499 40.9941085,5.57790377 L47.9332299,18.3586203 L38.0071901,22.6188591 L37.3919103,21.4769884 L37.3919103,49.7315574 L23.9468183,50 L10.5405277,49.7315574 L10.5405277,21.4769884 L9.92524785,22.6188591 L0,18.3586203 L6.93991321,5.57790377 C9.39944886,3.33771499 18.271515,0 18.271515,0 L18.2533021,0 C18.2533021,0 24.4583637,1.34933958 29.6442938,0 L29.6625067,0 Z",
175
176
  id: "Path",
176
177
  fill: jersey_fill,
177
- "fill-rule": "nonzero"
178
+ fillRule: "nonzero"
178
179
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
179
180
  d: "M29.6625067,0 C29.6625067,0 38.5345729,3.33771499 40.9941085,5.57790377 L47.9332299,18.3586203 L38.0071901,22.6188591 L37.3919103,21.4769884 L37.3919103,49.7315574 L23.9468183,50 L10.5405277,49.7315574 L10.5405277,21.4769884 L9.92524785,22.6188591 L0,18.3586203 L6.93991321,5.57790377 C9.39944886,3.33771499 18.271515,0 18.271515,0 L18.2533021,0 C18.2533021,0 24.4583637,1.34933958 29.6442938,0 L29.6625067,0 Z",
180
181
  id: "Jersey_Dimples",
181
182
  fill: "url(#pattern-1)",
182
- "fill-rule": "nonzero",
183
+ fillRule: "nonzero",
183
184
  opacity: "0.1"
184
185
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
185
186
  id: "Path",
186
187
  fill: stripe_fill,
187
- "fill-rule": "nonzero",
188
+ fillRule: "nonzero",
188
189
  points: "17.2864338 0.390389915 18.271515 2.2506184e-15 23.9681987 6.34205442 29.6625067 2.2506184e-15 30.7014349 0.394349245 24.7323493 7.91390833 23.369548 7.91390833"
189
190
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
190
191
  id: "Path",
191
192
  fill: stripe_fill,
192
- "fill-rule": "nonzero",
193
+ fillRule: "nonzero",
193
194
  points: "10.3900732 21.863419 0.703968832 17.1383548 1.07852143 16.369453 10.6355516 21.0319597"
194
195
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
195
196
  id: "Path",
196
197
  fill: stripe_fill,
197
- "fill-rule": "nonzero",
198
+ fillRule: "nonzero",
198
199
  points: "10.6846473 20.4895315 1.35884198 15.9402616 1.73418644 15.1721517 10.7717526 19.5804694"
199
200
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
200
201
  id: "Path",
201
202
  fill: stripe_fill,
202
- "fill-rule": "nonzero",
203
+ fillRule: "nonzero",
203
204
  points: "37.5906687 21.863419 47.2775649 17.1383548 46.9022204 16.369453 37.3451902 21.0319597"
204
205
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
205
206
  id: "Path",
206
207
  fill: stripe_fill,
207
- "fill-rule": "nonzero",
208
+ fillRule: "nonzero",
208
209
  points: "37.2960945 20.4895315 46.6218998 15.9402616 46.2473472 15.1721517 37.2097811 19.5804694"
209
210
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
210
211
  d: "M18.2738906,1.9692911e-15 C18.2738906,1.9692911e-15 24.4789522,1.34933958 29.6648823,1.9692911e-15",
@@ -251,7 +252,7 @@ const NFLJersey = ({
251
252
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Rect, {
252
253
  id: "Rectangle",
253
254
  fill: jersey_fill,
254
- "fill-rule": "nonzero",
255
+ fillRule: "nonzero",
255
256
  x: "30.1890976",
256
257
  y: "44.6105603",
257
258
  width: "5.17880333",
@@ -272,9 +273,9 @@ const NBAJersey = ({
272
273
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
273
274
  id: "Page-1",
274
275
  stroke: "none",
275
- "stroke-width": "1",
276
+ strokeWidth: "1",
276
277
  fill: "none",
277
- "fill-rule": "evenodd"
278
+ fillRule: "evenodd"
278
279
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
279
280
  id: "NBAJerseyTemplate-2-(1)",
280
281
  transform: "translate(1.000000, 1.000000)"
@@ -282,62 +283,62 @@ const NBAJersey = ({
282
283
  d: "M27.4621596,17.5910203 C27.4621596,17.5910203 25.5039596,16.5846203 24.6198596,14.1637203 C22.9522596,9.3376103 26.1426596,2.3577703 26.1426596,2.3577703 L21.8056596,0 C18.8761596,3.1756303 13.8576596,2.9707803 13.8576596,2.9707803 C13.8576596,2.9707803 8.8398896,3.1748503 5.9096196,0 L1.5741796,2.3577703 C1.5741796,2.3577703 4.7646096,9.3376103 3.0969596,14.1637203 C2.2121096,16.5846203 0.2539256,17.5910203 0.2539256,17.5910203 L0,49.9268203 L27.7152596,49.9268203 L27.4613596,17.5910203 L27.4621596,17.5910203 Z",
283
284
  id: "Path",
284
285
  fill: jersey_fill,
285
- "fill-rule": "nonzero"
286
+ fillRule: "nonzero"
286
287
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
287
288
  d: "M5.8480996,0.0332031 C6.5701496,4.9123203 9.8813096,8.5989103 13.8576596,8.5989103 C17.8340596,8.5989103 21.1342596,4.9263403 21.8641596,0.0596862 L22.7279596,0.5348233 C21.7153596,5.6359303 18.1416596,9.4050903 13.8880596,9.4050903 C9.6343896,9.4050903 6.0326996,5.6063303 5.0364696,0.4748473 L5.8480996,0.0332031 Z",
288
289
  id: "Path",
289
290
  fill: stripe_fill,
290
- "fill-rule": "nonzero"
291
+ fillRule: "nonzero"
291
292
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
292
293
  d: "M4.9367396,11.4209203 C5.0675996,7.6478203 2.6412896,1.7763703 2.6412896,1.7763703 L1.5718396,2.3582203 C1.6162396,2.4867403 2.3889196,4.5002303 2.4340996,4.6388703 C2.4730396,4.7588303 2.5127696,4.8826703 2.5524896,5.0088603 C2.6514096,5.3258703 2.7503296,5.6639203 2.8461396,6.0183303 C2.8843096,6.1600903 2.9216896,6.3041903 2.9590796,6.4514003 C3.5479396,8.7998303 3.9288296,11.7511203 3.0953896,14.1642203 C2.6810096,15.2983203 2.0313996,16.1216203 1.4573396,16.6770203 C1.4549996,16.6793203 1.4526596,16.6816203 1.4503296,16.6840203 C1.2688396,16.8584203 1.0959196,17.0064203 0.9401386,17.1287203 C0.8583526,17.1934203 0.7812406,17.2502203 0.7103596,17.3009203 C0.6192266,17.3663203 0.3209026,17.5478203 0.2539166,17.5906203 L0.2430116,19.1072203 C2.8141996,17.5509203 4.8074396,15.1931203 4.9382996,11.4201203 L4.9367396,11.4209203 Z",
293
294
  id: "Path",
294
295
  fill: stripe_fill,
295
- "fill-rule": "nonzero"
296
+ fillRule: "nonzero"
296
297
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
297
298
  d: "M22.7754596,11.4209203 C22.6445596,7.6478203 25.0708596,1.7763703 25.0708596,1.7763703 L26.1403596,2.3582203 C26.0959596,2.4867403 25.3232596,4.5002303 25.2780596,4.6388703 C25.2391596,4.7588303 25.1994596,4.8826703 25.1596596,5.0088603 C25.0607596,5.3258703 24.9618596,5.6639203 24.8660596,6.0183303 C24.8278596,6.1600903 24.7904596,6.3041903 24.7530596,6.4514003 C24.1642596,8.7998303 23.7833596,11.7511203 24.6167596,14.1642203 C25.0311596,15.2983203 25.6807596,16.1216203 26.2548596,16.6770203 C26.2571596,16.6793203 26.2595596,16.6816203 26.2618596,16.6840203 C26.4433596,16.8584203 26.6162596,17.0064203 26.7720596,17.1287203 C26.8538596,17.1934203 26.9309596,17.2502203 27.0018596,17.3009203 C27.0929596,17.3663203 27.3912596,17.5478203 27.4582596,17.5906203 L27.4691596,19.1072203 C24.8979596,17.5509203 22.9047596,15.1931203 22.7738596,11.4201203 L22.7754596,11.4209203 Z",
298
299
  id: "Path",
299
300
  fill: stripe_fill,
300
- "fill-rule": "nonzero"
301
+ fillRule: "nonzero"
301
302
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
302
303
  d: "M2.6436396,1.7763703 C2.6436396,1.7763703 5.0691696,7.6478203 4.9390896,11.4209203 C4.8090196,15.1939203 2.8142196,17.5501203 0.2438046,19.1072203",
303
304
  id: "Path",
304
305
  stroke: "#000000",
305
- "stroke-width": "0.2"
306
+ strokeWidth: "0.2"
306
307
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
307
308
  d: "M13.8576596,2.9707803 C13.8576596,2.9707803 8.8398896,3.1756303 5.9103996,6.66133815e-16",
308
309
  id: "Path",
309
310
  stroke: "#000000",
310
- "stroke-width": "0.2"
311
+ strokeWidth: "0.2"
311
312
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
312
313
  d: "M5.9103896,0 L1.5741796,2.3577703 C1.5741796,2.3577703 4.7646096,9.3376103 3.0969596,14.1637203 C2.2121096,16.5846203 0.2539256,17.5910203 0.2539256,17.5910203 L8.8817842e-16,49.9268203 L13.8576596,49.9268203",
313
314
  id: "Path",
314
315
  stroke: "#000000",
315
- "stroke-width": "0.2"
316
+ strokeWidth: "0.2"
316
317
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
317
318
  d: "M13.8576596,49.9268203 L27.7153596,49.9268203 L27.4613596,17.5910203 C27.4613596,17.5910203 25.5031596,16.5846203 24.6191596,14.1637203 C22.9514596,9.3376103 26.1418596,2.3577703 26.1418596,2.3577703 L21.8056596,0",
318
319
  id: "Path",
319
320
  stroke: "#000000",
320
- "stroke-width": "0.2"
321
+ strokeWidth: "0.2"
321
322
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
322
323
  d: "M25.0724596,1.7763703 C25.0724596,1.7763703 22.6469596,7.6478203 22.7769596,11.4209203 C22.9078596,15.1939203 24.9010596,17.5509203 27.4722596,19.1079203",
323
324
  id: "Path",
324
325
  stroke: "#000000",
325
- "stroke-width": "0.2"
326
+ strokeWidth: "0.2"
326
327
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
327
328
  d: "M13.8576596,2.9707803 C13.8576596,2.9707803 18.8761596,3.1756303 21.8056596,6.66133815e-16",
328
329
  id: "Path",
329
330
  stroke: "#000000",
330
- "stroke-width": "0.2"
331
+ strokeWidth: "0.2"
331
332
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
332
333
  d: "M21.8640596,0.0596862 C21.1342596,4.9255603 17.8269596,8.5989103 13.8584596,8.5989103 C9.8898596,8.5989103 6.5701396,4.9123203 5.8480796,0.0332031",
333
334
  id: "Path",
334
335
  stroke: "#000000",
335
- "stroke-width": "0.2"
336
+ strokeWidth: "0.2"
336
337
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
337
338
  d: "M22.7279596,0.5363413 C21.7153596,5.6374403 18.1416596,9.4066103 13.8880596,9.4066103 C9.6343896,9.4066103 6.0326996,5.6070703 5.0364696,0.4755863",
338
339
  id: "Path",
339
340
  stroke: "#000000",
340
- "stroke-width": "0.2"
341
+ strokeWidth: "0.2"
341
342
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Line, {
342
343
  x1: "3.3329796",
343
344
  y1: "3.6315003",
@@ -345,7 +346,7 @@ const NBAJersey = ({
345
346
  y2: "2.6718703",
346
347
  id: "Path",
347
348
  stroke: "#000000",
348
- "stroke-width": "0.2"
349
+ strokeWidth: "0.2"
349
350
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Line, {
350
351
  x1: "24.3792596",
351
352
  y1: "3.6315703",
@@ -353,7 +354,7 @@ const NBAJersey = ({
353
354
  y2: "2.6953103",
354
355
  id: "Path",
355
356
  stroke: "#000000",
356
- "stroke-width": "0.2"
357
+ strokeWidth: "0.2"
357
358
  }))));
358
359
  };
359
360
  const MMAJersey = () => {
@@ -364,12 +365,12 @@ const MMAJersey = () => {
364
365
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
365
366
  id: "Page-1",
366
367
  stroke: "none",
367
- "stroke-width": "1",
368
+ strokeWidth: "1",
368
369
  fill: "none",
369
- "fill-rule": "evenodd"
370
+ fillRule: "evenodd"
370
371
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
371
372
  id: "MMA_Glove",
372
- "fill-rule": "nonzero"
373
+ fillRule: "nonzero"
373
374
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
374
375
  id: "Path",
375
376
  fill: "#002A51",
@@ -388,38 +389,40 @@ const MMAJersey = () => {
388
389
  fill: "#FFFFFF"
389
390
  }))));
390
391
  };
391
- const PGAJersey = () => {
392
+ const PGAJersey = ({
393
+ size
394
+ }) => {
395
+ const ratio = 0.82;
396
+ let height = size ?? 40;
397
+ let width = height * ratio;
392
398
  return /*#__PURE__*/_react.default.createElement(_reactNativeSvg.default, {
393
- width: "41",
394
- height: "50",
395
- viewBox: "0 0 537 651",
396
- fill: "none"
399
+ width: `${width}px`,
400
+ height: `${height}px`,
401
+ viewBox: "0 0 34 42"
402
+ }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
403
+ id: "Page-1",
404
+ stroke: "none",
405
+ strokeWidth: "1",
406
+ fill: "none",
407
+ fillRule: "evenodd"
408
+ }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
409
+ id: "GolfPolo-(1)",
410
+ transform: "translate(1.000000, 1.000000)"
397
411
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
398
- d: "M94.8493 120.508L176.487 82.4722C177.051 82.2093 177.722 82.4433 178 83C178.997 85.6579 180.295 88.1926 181.87 90.5545L182.5 91.5L193 110L202.035 130.222C202.858 132.064 204.973 132.948 206.862 132.239C207.284 132.081 207.675 131.849 208.016 131.555L232.446 110.478C232.814 110.16 233.214 109.881 233.64 109.644C236.005 108.331 238.909 108.469 241.139 110.002L241.5 110.25C239.867 103.88 236.465 98.1021 231.688 93.5831L226.012 88.2141C222.351 84.751 219.126 80.8539 216.41 76.6093L215.06 74.5C213.717 72.4016 214.571 69.5998 216.855 68.6064L217.1 68.5C221.693 66.5029 226.432 64.8599 231.276 63.5852L234.595 62.712C246.482 59.5837 258.723 58 271.015 58H277L282.595 58.4304C291.847 59.1421 301.018 60.6712 310 63L321.879 67.2151C324.05 67.9853 325.5 70.0391 325.5 72.3424C325.5 73.7283 324.971 75.062 324.021 76.0712L317.5 83L315.763 85.3163C311.936 90.4183 307.48 95.016 302.5 99L299.049 102.45C297.731 103.769 297.948 105.965 299.5 107L300.369 107.29C301.783 107.761 303.129 108.419 304.369 109.246C305.122 109.748 305.833 110.31 306.495 110.926L320 123.5L329.032 130.479C330.157 131.349 331.753 131.247 332.759 130.241C332.919 130.081 333.059 129.902 333.177 129.709L358.321 88.2675C359.363 86.5493 361.227 85.5 363.237 85.5C364.069 85.5 364.891 85.6806 365.647 86.0293L449 124.5C458.586 131.111 466.889 139.414 473.5 149C479.728 157.194 483.734 166.858 485.131 177.055L498 271L510.935 341.423C511.273 343.266 510.411 345.122 508.784 346.052C508.267 346.348 507.695 346.535 507.103 346.604L473.5 350.5L434.392 356.16C432.732 356.4 431.5 357.823 431.5 359.5L434.5 606.5V620.951C434.5 623.596 432.633 625.873 430.039 626.392C429.68 626.464 429.316 626.5 428.951 626.5H161.5L124.5 627L109.204 627.9C108.096 627.965 106.994 627.684 106.052 627.095C104.467 626.105 103.514 624.359 103.536 622.49L106.5 377V356.578L35.9925 348.933C33.5177 348.665 31.3683 347.11 30.3382 344.844C29.7905 343.639 29.5933 342.304 29.7693 340.992L50.3609 187.45C51.7756 176.902 55.0647 166.691 60.0732 157.3C63.0162 151.782 66.5309 146.588 70.5594 141.804L76.957 134.207C79.3125 131.41 81.9552 128.868 84.8417 126.623C87.9374 124.215 91.2944 122.164 94.8493 120.508Z",
399
- fill: "#0C2A4E"
400
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
401
- d: "M179.5 81.4997L201.5 51.4997L205.5 43.5C235 25.5 246.5 28.9997 271 25.4997C290.6 22.6997 318.5 34.9997 330 41.4997L338 49.9997L359 81.4997L328.5 129.5L303.5 105.5L304.5 101L309.5 95.9997L322.5 79.9997L328.5 71.4997L326.5 66.9997L287 55.9997H266L213 63.9997L210 68.4997L237.5 103L205.5 129.5L179.5 81.4997Z",
402
- fill: "#245FB1"
403
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
404
- d: "M335.5 44.9996L335.625 45.1746M335.625 45.1746L335.916 45.583M335.625 45.1746C335.668 45.2119 335.712 45.2491 335.755 45.2861C335.847 45.3655 335.901 45.4704 335.916 45.583M335.625 45.1746C326.936 37.7508 301.878 25.0004 269.439 25C236.439 25 212.003 37.7508 203.314 45.1746M335.916 45.583L361.425 81.394C361.474 81.4632 361.54 81.5188 361.617 81.5553L455.957 126.479C455.986 126.493 456.011 126.508 456.037 126.527C464.885 133.055 483.606 153.139 488 181.5C492.384 209.794 505.072 303.633 510.935 347.511C510.972 347.788 510.773 348.026 510.495 348.059L413.518 359.439C413.236 359.472 412.984 359.277 412.963 358.993C409.99 318.311 408.88 235.865 428 227.5M335.916 45.583C335.926 45.6588 335.917 45.7381 335.891 45.8154C334.495 49.8524 331.337 59.4318 329 68M360.5 82L332.31 130.962C332.15 131.239 331.777 131.298 331.54 131.083L300.409 102.871C300.19 102.672 300.183 102.334 300.402 102.135C309.209 94.1248 326.637 76.666 329 68M329 68C317.333 63.1667 288.626 55.7746 269.687 55.7746C249.439 55.7746 221.606 63.1667 209.939 68M300 104.5L269.687 128.849C269.569 128.944 269.5 129.088 269.5 129.239V242.5M432.5 357.5L435.993 626.993C435.997 627.272 435.772 627.5 435.493 627.5H263M203.439 44.9996L203.314 45.1746M203.314 45.1746L203.024 45.583M203.314 45.1746C203.271 45.2119 203.228 45.2491 203.185 45.2861C203.093 45.3655 203.038 45.4704 203.024 45.583M203.024 45.583L177.514 81.394C177.465 81.4632 177.399 81.5188 177.322 81.5553L82.9822 126.479C82.9536 126.493 82.9279 126.508 82.9024 126.527C74.0539 133.055 55.3331 153.139 50.9392 181.5C46.5555 209.794 33.8672 303.633 28.0044 347.511C27.9674 347.788 28.1664 348.026 28.4438 348.059L125.421 359.439C125.703 359.472 125.956 359.277 125.976 358.993C128.949 318.311 130.059 235.865 110.939 227.5M203.024 45.583C203.014 45.6588 203.022 45.7381 203.049 45.8154C204.444 49.8524 207.602 59.4318 209.939 68M178.439 82L206.63 130.962C206.789 131.239 207.162 131.298 207.399 131.083L238.53 102.871C238.749 102.672 238.756 102.334 238.537 102.135C229.73 94.1248 212.303 76.666 209.939 68M238.939 104.5L269.252 128.849C269.37 128.944 269.439 129.088 269.439 129.239V242.5M106.439 357.5L102.946 626.993C102.942 627.272 103.167 627.5 103.446 627.5H275.939",
405
- stroke: "#B2BCD2",
406
- "stroke-width": "8"
407
- }), /*#__PURE__*/_react.default.createElement("circle", {
408
- cx: "292.439",
409
- cy: "156",
410
- r: "6.5",
411
- fill: "#B2BCD2"
412
- }), /*#__PURE__*/_react.default.createElement("circle", {
413
- cx: "292.439",
414
- cy: "182",
415
- r: "6.5",
416
- fill: "#B2BCD2"
417
- }), /*#__PURE__*/_react.default.createElement("circle", {
418
- cx: "292.439",
419
- cy: "208",
420
- r: "6.5",
421
- fill: "#B2BCD2"
422
- }));
412
+ d: "M4.43511765,6.33647664 L9.85136947,3.81299214 C9.88878804,3.79555004 9.93330553,3.81107477 9.95174943,3.84800902 C10.0178954,4.02434735 10.1040112,4.19251198 10.2085045,4.34921219 L10.2503019,4.41194137 L10.9469242,5.63932356 L11.5463511,6.98095181 C11.600953,7.10315927 11.7412727,7.16180823 11.8665983,7.11476964 C11.8945959,7.10428713 11.9205368,7.0888951 11.9431604,7.06938967 L13.5639684,5.67103646 C13.5883833,5.64993876 13.6149213,5.63142851 13.6431843,5.61570475 C13.8000902,5.52859378 13.992756,5.53774939 14.1407053,5.63945625 L14.1646559,5.65590981 C14.0563145,5.23329226 13.8306089,4.84995759 13.5136789,4.55014461 L13.1371048,4.19393839 C12.8942158,3.96417908 12.6802532,3.70562605 12.5000602,3.42401813 L12.4104945,3.28407666 C12.3213932,3.14485835 12.3780518,2.95897298 12.5295837,2.89306587 L12.5458383,2.88600676 C12.8505608,2.7535092 13.1649697,2.64450439 13.4863447,2.55993444 L13.7065437,2.502002 C14.4951866,2.29445499 15.3073155,2.18938444 16.122828,2.18938444 L16.5199028,2.18938444 L16.8911029,2.21793932 C17.5049267,2.26515705 18.1133766,2.36660516 18.7092872,2.52110936 L19.4973992,2.80076009 C19.6414342,2.851859 19.7376344,2.98811833 19.7376344,3.14093073 C19.7376344,3.23287824 19.7025379,3.32136254 19.6395102,3.3883179 L19.2068746,3.84800902 L19.0916333,4.0016839 C18.8377311,4.34017601 18.5420978,4.64521033 18.2116998,4.90952875 L17.9827433,5.13841894 C17.8953006,5.22592797 17.9096975,5.37162155 18.0126649,5.44028861 L18.0703187,5.45952866 C18.1641305,5.49077714 18.2534308,5.53443214 18.3356986,5.58929944 C18.3856564,5.62260462 18.4328277,5.65989051 18.476748,5.70075902 L19.372737,6.53498083 L19.9719649,6.99800247 C20.046603,7.0557226 20.1524896,7.04895542 20.2192327,6.98221236 C20.2298479,6.97159717 20.2391362,6.95972141 20.2469649,6.94691683 L21.9151431,4.19748122 C21.9842746,4.08348727 22.1079416,4.01387148 22.2412951,4.01387148 C22.2964941,4.01387148 22.3510297,4.02585338 22.4011865,4.04898788 L27.9312398,6.60132582 C28.5672228,7.0399325 29.1180852,7.59079489 29.5566919,8.2267779 C29.9698885,8.77040869 30.2356665,9.41156661 30.3283504,10.0880864 L31.182144,16.3208658 L32.0403164,20.9930786 C32.062741,21.1153524 32.0055516,21.2384887 31.8976083,21.3001895 C31.863308,21.3198276 31.8253586,21.3322341 31.7860824,21.3368119 L29.5566919,21.595292 L26.9620723,21.9708046 C26.8519397,21.9867274 26.7702026,22.0811363 26.7702026,22.1923968 L26.9692376,38.5796077 L26.9692376,39.538359 C26.9692376,39.7138415 26.8453715,39.864909 26.6732726,39.8993421 C26.6494548,39.9041189 26.6253052,39.9065073 26.6010893,39.9065073 L8.85705721,39.9065073 L6.40229284,39.9396798 L5.38747998,39.9993903 C5.31396973,40.0037027 5.24085756,39.9850598 5.17836059,39.9459826 C5.07320379,39.880301 5.00997702,39.7644627 5.01143661,39.6404639 L5.20808314,23.353434 L5.20808314,21.9985368 L0.530264248,21.4913294 C0.366073683,21.4735489 0.223471777,21.3703825 0.15512981,21.2200448 C0.118792663,21.1400991 0.105709432,21.0515285 0.117386149,20.9644839 L1.4835355,10.7777425 C1.57739375,10.0779356 1.79560903,9.400487 2.12789788,8.77744126 C2.32315117,8.41134964 2.55633388,8.0667538 2.82360464,7.7493594 L3.24805331,7.24533657 C3.40432891,7.05976965 3.5796588,6.8911207 3.77116359,6.74217621 C3.97654776,6.5824175 4.19926787,6.44634393 4.43511765,6.33647664 Z",
413
+ id: "Path",
414
+ fill: "#0C2A4E",
415
+ fillRule: "nonzero"
416
+ }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
417
+ d: "M10.0512669,3.74847164 L11.5108565,1.75812215 L11.7762365,1.22738219 C13.7334135,0.0331724915 14.4963808,0.265360029 16.1218329,0.033152588 C17.4221945,-0.152613365 19.2732196,0.663429927 20.0361869,1.09467232 L20.5669467,1.65860467 L21.9601914,3.74847164 L19.9366694,6.93305073 L18.2780448,5.34077114 L18.3443898,5.04221871 L18.6761147,4.71047389 L19.5385995,3.64895417 L19.9366694,3.08502181 L19.8039794,2.78646939 L17.1833526,2.05667457 L15.7901079,2.05667457 L12.2738238,2.58743444 L12.0747889,2.88598686 L13.8992759,5.17490868 L11.7762365,6.93305073 L10.0512669,3.74847164 Z",
418
+ id: "Path",
419
+ fill: "#245FB1",
420
+ fillRule: "nonzero"
421
+ }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
422
+ d: "M20.4158083,1.34075582 L20.4283083,1.35825582 M20.4213081,1.34843865 L20.4504081,1.38927865 M20.4213081,1.34843865 C20.4256081,1.35216865 20.4300081,1.35588865 20.4343081,1.35958865 C20.4435081,1.36752865 20.4489081,1.37801865 20.4504081,1.38927865 M20.4093774,1.3384835 C19.8329058,0.84595161 18.1704332,2.65379932e-05 16.0182683,0 C13.8288839,0 12.2076779,0.84595161 11.6312063,1.3384835 M20.4286838,1.36557879 L22.1210779,3.74145898 C22.1243289,3.74605005 22.1287076,3.74973883 22.1338162,3.75216042 L28.3928019,6.73262254 C28.9851299,7.16890715 30.2271743,8.50137979 30.5186942,10.3829899 C30.8095506,12.2601548 31.6513357,18.4859017 32.0403164,21.3969868 C32.0427711,21.4153644 32.0295685,21.4311545 32.0111246,21.4333439 L25.5771872,22.1883498 C25.5584779,22.1905392 25.5417589,22.1776019 25.5403657,22.1587599 C25.3431221,19.4597133 25.2694791,13.9898349 26.5379952,13.4348591 M20.4286838,1.36557879 C20.4293472,1.37060774 20.4287501,1.37586889 20.4270252,1.38099736 C20.3344076,1.64883206 20.1248901,2.28437719 19.9698419,2.85283427 M22.0597088,3.78166403 L20.1894438,7.0300471 C20.1788286,7.04842466 20.1540819,7.05233901 20.1383581,7.03807484 L18.0729725,5.16635018 C18.0584429,5.15314752 18.0579785,5.13072292 18.072508,5.11752027 C18.6568083,4.58608369 19.8130687,3.4277799 19.9698419,2.85283427 M19.9698419,2.85283427 C19.195795,2.53216907 17.2912295,2.04174032 16.0347219,2.04174032 C14.6913687,2.04174032 12.8447888,2.53216907 12.0707418,2.85283427 M18.0458374,5.27442615 L16.0347219,6.88986015 C16.0268932,6.89616292 16.0223154,6.9057166 16.0223154,6.91573469 L16.0223154,14.4300338 M26.8365476,22.0597069 L27.0682941,39.9392154 C27.068556,39.9577256 27.0536284,39.9728523 27.0351182,39.9728523 L15.591073,39.9728523 M11.6584304,1.34075582 L11.6459304,1.35825582 M11.6529138,1.34843865 L11.6239138,1.38927865 M11.6529138,1.34843865 C11.6486138,1.35216865 11.6443138,1.35588865 11.6400138,1.35958865 C11.6308138,1.36752865 11.6253138,1.37801865 11.6239138,1.38927865 M11.6119663,1.36557879 L9.91950577,3.74145898 C9.91625486,3.74605005 9.9118761,3.74973883 9.90676753,3.75216042 L3.6477951,6.73262254 C3.64589763,6.73355137 3.64419257,6.73454654 3.64250077,6.7358071 C3.05544719,7.16890715 1.81341603,8.50137979 1.52190281,10.3829899 C1.2310663,12.2601548 0.389261255,18.4859017 0.000293888291,21.3969868 C-0.00216087608,21.4153644 0.0110417755,21.4311545 0.0294458739,21.4333439 L6.46339657,22.1883498 C6.48210585,22.1905392 6.49889113,22.1776019 6.50021803,22.1587599 C6.69746167,19.4597133 6.7711046,13.9898349 5.50258852,13.4348591 M11.6119663,1.36557879 C11.6113028,1.37060774 11.6118336,1.37586889 11.6136249,1.38099736 C11.7061762,1.64883206 11.9156936,2.28437719 12.0707418,2.85283427 M9.98087488,3.78166403 L11.8512063,7.0300471 C11.8617551,7.04842466 11.8865018,7.05233901 11.9022256,7.03807484 L13.9676113,5.16635018 C13.9821408,5.15314752 13.9826052,5.13072292 13.9680757,5.11752027 C13.3837754,4.58608369 12.2275814,3.4277799 12.0707418,2.85283427 M13.9947464,5.27442615 L16.0058618,6.88986015 C16.0136905,6.89616292 16.0182683,6.9057166 16.0182683,6.91573469 L16.0182683,14.4300338 M5.2040361,22.0597069 L4.97228959,39.9392154 C4.97202769,39.9577256 4.98695531,39.9728523 5.00546556,39.9728523 L16.4495107,39.9728523",
423
+ id: "Shape",
424
+ stroke: "#B2BCD2"
425
+ }))));
423
426
  };
424
427
  const Horse = () => {
425
428
  return /*#__PURE__*/_react.default.createElement(_reactNativeSvg.default, {
@@ -429,9 +432,9 @@ const Horse = () => {
429
432
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
430
433
  id: "Page-1",
431
434
  stroke: "none",
432
- "stroke-width": "1",
435
+ strokeWidth: "1",
433
436
  fill: "none",
434
- "fill-rule": "evenodd"
437
+ fillRule: "evenodd"
435
438
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
436
439
  id: "Horse",
437
440
  transform: "translate(1.000000, 1.000000)"
@@ -439,58 +442,58 @@ const Horse = () => {
439
442
  d: "M4,18.5 L4,10.5 L12.5,10 L12.5,18.5 C12.5,18.8333 12.4,19 12,19 L5,19 C4.2,19 4,18.8333 4,18.5 Z",
440
443
  id: "Path",
441
444
  fill: "#C4C4C4",
442
- "fill-rule": "nonzero"
445
+ fillRule: "nonzero"
443
446
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
444
447
  d: "M4,18.5 L4,10.5 L12.5,10 L12.5,18.5 C12.5,18.8333 12.4,19 12,19 L5,19 C4.2,19 4,18.8333 4,18.5 Z",
445
448
  id: "Path",
446
449
  stroke: "#646464",
447
450
  fill: _colors.default.highlights.highlight500Faded,
448
- "stroke-width": "0.25",
451
+ strokeWidth: "0.25",
449
452
  "stroke-linecap": "round"
450
453
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
451
454
  d: "M13.5,8.9995 C8.3,11.3995 2.33333,9.9995 0,8.9995 C1.34323,10.3426 5.5,11 7.5,11 C9,11 12,10.7499 13.5,9.9998 C14.6507,9.4244 19.8333,7.4996 22,6.9995 C21.3333,6.6662 18.7,6.5995 13.5,8.9995 Z",
452
455
  id: "Path",
453
456
  fill: "#676767",
454
- "fill-rule": "nonzero"
457
+ fillRule: "nonzero"
455
458
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
456
459
  d: "M18.5,24 C16.9,23.6 16.1667,22.1666 16,21.5 C16.5,23.5 20,23.5 20.5,23.5 C21,23.5 23.9393,22.8535 25,22.5 C26.5,22 30,21.5 32,21.5 C33.6,21.5 35.3333,22.8333 36,23.5 L31,25 C32.2,23.8 33.5,23 34.5,23 L34,22.5 C33.5,22.3333 32.3,22 31.5,22 C30.5,22 26,23 24.5,23.5 C23,24 20.5,24.5 18.5,24 Z",
457
460
  id: "Path",
458
461
  fill: "#676767",
459
- "fill-rule": "nonzero"
462
+ fillRule: "nonzero"
460
463
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
461
464
  d: "M22.5,15 C21.7,13.8 19.5,14.1667 18.5,14.5 C19,14 22.5,13.5 23.5,14 C24.3,14.4 25.1667,16.1666 25.5,17 C26,17.1666 27.6,17.5 30,17.5 C32.4,17.5 36.3333,19.5 38,20.5 L30.5,18.3414 C28.969,18.0072 25.3798,18.0601 24.5,18.5 C23.7,18.9 23.5,18 23.5,18 C23.5,18 23.3,16.2 22.5,15 Z",
462
465
  id: "Path",
463
466
  fill: "#676767",
464
- "fill-rule": "nonzero"
467
+ fillRule: "nonzero"
465
468
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
466
469
  d: "M26.5186,15.9283 C26.5121,15.9524 26.5059,15.9764 26.5,16 C26.5,15.9822 26.5063,15.9581 26.5186,15.9283 C27.059,13.906 29.5236,9.9941 31.5,9.5 C32,9 31.9,8.4 31.5,8 C31.1,7.6 31.6667,6.1666 32,5.5 C32.1667,6.3333 32.6,8.1 33,8.5 C33.5,9 36,11 38.5,10.5 C37.1667,11 34.2,11.8 33,11 C31.5533,10.0355 26.8509,15.1173 26.5186,15.9283 Z",
467
470
  id: "Path",
468
471
  fill: "#676767",
469
- "fill-rule": "nonzero"
472
+ fillRule: "nonzero"
470
473
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
471
474
  d: "M41.5,13 C41.5,12.6 40.1667,11.5 39.5,11 C39.8333,11 40.6,11.1 41,11.5 C41.4,11.9 42.1667,12 42.5,12 C42.5,12.4 42.8333,12.8333 43,13 C43.1667,12.6667 43.6,12 44,12 C44.4,12 44.5,11.6667 44.5,11.5 L44.5,11 C44.5,10.8333 44.3,10.4 43.5,10 C42.7887,9.6443 40.707,6.8905 39.4341,5.1128 C39.1622,4.8099 39,4.5901 39,4.5 C39.1293,4.6847 39.2754,4.8912 39.4341,5.1128 C40.6716,6.4914 44.1801,9.5901 45,10 C45.8,10.4 45.3333,11.8333 45,12.5 C44.8333,12.6667 44.4,13 44,13 C43.5,13 43.5,14 43,14 C42.5,14 41.5,13.5 41.5,13 Z",
472
475
  id: "Path",
473
476
  fill: "#676767",
474
- "fill-rule": "nonzero"
477
+ fillRule: "nonzero"
475
478
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
476
479
  d: "M15,4.5 C17.5,5 22,4.4995 22.5,3.9995 C20.3333,4.1662 15.7,4.0995 14.5,2.4995 C16.8333,2.9995 22,3.7995 24,2.9995 C26.5,1.9995 28.5,1.9995 29.5,1.9995 C29,1.8329 27.7,1.4995 26.5,1.4995 C25,1.4995 24,1.9995 22.5,1.9995 C21,1.9995 18.5,0.9995 18,0.4995 C19.7308,1.3845 24.7,1.2995 27.5,0.4995 C29,-0.0007 30.5,0 33,0.9992 L33.6599,1.4395 C34.1879,1.7912 34.7733,1.6264 35,1.5 C35,1.3333 35.1,0.9 35.5,0.5 C35.9,0.1 36.3333,0 36.5,0 C36.423,0.3081 36.3104,0.7372 36.2115,1.0702 C36.4357,0.8232 36.7863,0.6068 37,0.5 L37,2.5 C37,3 37.5,3 37.5,3.5 C37.5,3.9 37.1667,4.3333 37,4.5 L37,3.5 C37,3.6667 36.8,4 36,4 C35.5,4 34.3333,5.1667 34,6 C33.5,5.5 34.6464,4.3536 35,4 C35.5,3.5 36.5,3.5 36.5,3 C36.5,2.6 35.8333,1.8333 35.5,1.5 C35.1,2.3 34.5,2 34.5,2 L32.5,2.5 C30.6667,3.1667 27.5,4.5 26.5,5 C25.8675,5.3162 20,6.5 17.5,6 C15.092,5.5184 9.9006,5.9646 7.7346,7.3385 C7.6524,7.3942 7.574,7.4482 7.5,7.5 C7.5736,7.4448 7.6519,7.391 7.7346,7.3385 C9.5036,6.1401 13.0888,4.1178 15,4.5 Z",
477
480
  id: "Path",
478
481
  fill: "#676767",
479
- "fill-rule": "nonzero"
482
+ fillRule: "nonzero"
480
483
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
481
484
  d: "M34.5,2 L32.5,2.5 C30.6667,3.1667 27.5,4.5 26.5,5 C25.8675,5.3162 20,6.5 17.5,6 C15,5.5 9.5,6 7.5,7.5 C9.1667,6.3333 13,4.1 15,4.5 C17.5,5 22,4.4995 22.5,3.9995 C20.3333,4.1662 15.7,4.0995 14.5,2.4995 C16.8333,2.9995 22,3.7995 24,2.9995 C26.5,1.9995 28.5,1.9995 29.5,1.9995 C29,1.8329 27.7,1.4995 26.5,1.4995 C25,1.4995 24,1.9995 22.5,1.9995 C21,1.9995 18.5,0.9995 18,0.4995 C19.7308,1.3845 24.7,1.2995 27.5,0.4995 C29,-0.0007 30.5,1.11022302e-16 33,0.9992 L33.6599,1.4395 M34.5,2 C34.5,2 35.1,2.3 35.5,1.5 C35.8333,1.8333 36.5,2.6 36.5,3 C36.5,3.5 35.5,3.5 35,4 C34.6464,4.3536 33.5,5.5 34,6 C34.3333,5.1667 35.5,4 36,4 C36.8,4 37,3.6667 37,3.5 L37,4.5 C37.1667,4.3333 37.5,3.9 37.5,3.5 C37.5,3 37,3 37,2.5 C37,2.1 37,1 37,0.5 C36.6667,0.6667 36,1.1 36,1.5 C36,1.9 36.3333,0.6667 36.5,0 C36.3333,0 35.9,0.1 35.5,0.5 C35.1,0.9 35,1.3333 35,1.5 C34.7733,1.6264 34.1879,1.7912 33.6599,1.4395 M34.5,2 L33.6599,1.4395 M0,8.9995 C2.33333,9.9995 8.3,11.3995 13.5,8.9995 C18.7,6.5995 21.3333,6.6662 22,6.9995 C19.8333,7.4996 14.6507,9.4244 13.5,9.9998 C12,10.7499 9,11 7.5,11 C5.5,11 1.34323,10.3426 0,8.9995 Z M16,21.5 C16.1667,22.1666 16.9,23.6 18.5,24 C20.5,24.5 23,24 24.5,23.5 C26,23 30.5,22 31.5,22 C32.3,22 33.5,22.3333 34,22.5 L34.5,23 C33.5,23 32.2,23.8 31,25 L36,23.5 C35.3333,22.8333 33.6,21.5 32,21.5 C30,21.5 26.5,22 25,22.5 C23.9393,22.8535 21,23.5 20.5,23.5 C20,23.5 16.5,23.5 16,21.5 Z M18.5,14.5 C19.5,14.1667 21.7,13.8 22.5,15 C23.3,16.2 23.5,18 23.5,18 C23.5,18 23.7,18.9 24.5,18.5 C25.3798,18.0601 28.969,18.0072 30.5,18.3414 L38,20.5 C36.3333,19.5 32.4,17.5 30,17.5 C27.6,17.5 26,17.1666 25.5,17 C25.1667,16.1666 24.3,14.4 23.5,14 C22.5,13.5 19,14 18.5,14.5 Z M26.5,16 C27,14 29.5,10 31.5,9.5 C32,9 31.9,8.4 31.5,8 C31.1,7.6 31.6667,6.1666 32,5.5 C32.1667,6.3333 32.6,8.1 33,8.5 C33.5,9 36,11 38.5,10.5 C37.1667,11 34.2,11.8 33,11 C31.5,10 26.5,15.5 26.5,16 Z M39.5,11 C40.1667,11.5 41.5,12.6 41.5,13 C41.5,13.5 42.5,14 43,14 C43.5,14 43.5,13 44,13 C44.4,13 44.8333,12.6667 45,12.5 C45.3333,11.8333 45.8,10.4 45,10 C44,9.5 39,5 39,4.5 C40.1667,6.1666 42.7,9.6 43.5,10 C44.3,10.4 44.5,10.8333 44.5,11 L44.5,11.5 C44.5,11.6667 44.4,12 44,12 C43.6,12 43.1667,12.6667 43,13 C42.8333,12.8333 42.5,12.4 42.5,12 C42.1667,12 41.4,11.9 41,11.5 C40.6,11.1 39.8333,11 39.5,11 Z",
482
485
  id: "Shape",
483
486
  stroke: "#676767",
484
- "stroke-width": "0.5",
487
+ strokeWidth: "0.5",
485
488
  "stroke-linecap": "round",
486
489
  "stroke-linejoin": "round"
487
490
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
488
491
  d: "M39,5.9995 C39,5.9995 38.3,5.9001 37.5,5.5001 C37.8333,5.3334 38,5.0007 38.5,5.5003 C38.7829,5.7831 39,5.9995 39,5.9995 Z",
489
492
  id: "Path",
490
493
  stroke: "#646464",
491
- "stroke-width": "0.25",
494
+ strokeWidth: "0.25",
492
495
  fill: "#646464",
493
- "fill-rule": "nonzero",
496
+ fillRule: "nonzero",
494
497
  "stroke-linecap": "round"
495
498
  }))));
496
499
  };
@@ -505,9 +508,9 @@ const NHLJersey = ({
505
508
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
506
509
  id: "Page-1",
507
510
  stroke: "none",
508
- "stroke-width": "1",
511
+ strokeWidth: "1",
509
512
  fill: "none",
510
- "fill-rule": "evenodd"
513
+ fillRule: "evenodd"
511
514
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
512
515
  id: "HockeyJerseyTemplate-1",
513
516
  transform: "translate(1.000000, -0.000000)"
@@ -515,62 +518,62 @@ const NHLJersey = ({
515
518
  d: "M21.8934492,50.1075287 C29.7517492,50.1075287 33.7066492,46.6889287 33.7066492,46.6889287 C33.3190492,41.6757287 33.2352492,36.4133287 33.2352492,36.4133287 C33.8640492,39.2624287 36.6538492,46.4634287 36.6538492,46.4634287 C40.0629492,46.4927287 43.7955492,45.5499287 43.7955492,45.5499287 C43.7955492,44.3025287 41.4281492,20.0472287 39.4436492,12.6199287 C37.4590492,5.19268874 35.9657492,4.03390874 34.8069492,3.42485874 C33.6481492,2.81500874 26.2738492,0.185014644 26.2738492,0.185014644 L26.3577492,0.185014644 C26.3577492,0.185014644 21.4987492,1.60244874 17.4386492,0.185014644 L17.5225492,0.185014644 C17.5225492,0.185014644 10.1482492,2.81500874 8.9886592,3.42405874 C7.8290892,4.03311874 6.3365092,5.19268874 4.3519492,12.6191287 C2.3673892,20.0464287 0,44.3017287 0,45.5499287 C0,45.5499287 3.7334092,46.4927287 7.1417292,46.4634287 C7.1417292,46.4634287 9.9314992,39.2624287 10.5603492,36.4133287 C10.5603492,36.4133287 10.3538492,42.5631287 10.0889492,46.6889287 C10.0889492,46.6889287 14.0350492,50.1075287 21.8934492,50.1075287 Z",
516
519
  id: "Path",
517
520
  fill: jersey_fill,
518
- "fill-rule": "nonzero"
521
+ fillRule: "nonzero"
519
522
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
520
523
  d: "M17.4386492,0.185014644 C21.4995492,1.60244874 26.3577492,0.185014644 26.3577492,0.185014644 L28.5139492,0.961753744 C28.5139492,0.961753744 21.3057492,4.15175874 15.2816492,0.961753744 L17.4386492,0.185014644 Z",
521
524
  id: "Path",
522
525
  fill: stripe_fill,
523
- "fill-rule": "nonzero"
526
+ fillRule: "nonzero"
524
527
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
525
528
  id: "Path",
526
529
  fill: stripe_fill,
527
- "fill-rule": "nonzero",
530
+ fillRule: "nonzero",
528
531
  points: "0.6035152 38.9163287 8.9475292 41.6349287 9.9599792 38.5279287 0.9562912 35.5942287"
529
532
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
530
533
  id: "Path",
531
534
  fill: stripe_fill,
532
- "fill-rule": "nonzero",
535
+ fillRule: "nonzero",
533
536
  points: "43.1904492 38.9163287 34.8464492 41.6349287 33.8340492 38.5279287 42.8377492 35.5942287"
534
537
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
535
538
  d: "M10.2471492,44.3186287 C18.2897492,46.2494287 25.5018492,46.2494287 33.5445492,44.3186287 C33.4416492,43.0886287 33.4891492,42.1798287 33.3918492,41.1088287 C25.8562492,42.9178287 17.9986492,42.9178287 10.4630492,41.1088287 C10.3072492,42.2027287 10.3214492,43.1772287 10.2471492,44.3186287 Z",
536
539
  id: "Path",
537
540
  fill: stripe_fill,
538
- "fill-rule": "nonzero"
541
+ fillRule: "nonzero"
539
542
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
540
543
  d: "M10.3744492,39.6846287 C18.3047492,41.5885287 25.4172492,41.5885287 33.3483492,39.6846287 C33.2463492,38.4713287 33.2937492,37.5759287 33.1980492,36.5199287 C25.7668492,38.3044287 18.0192492,38.3044287 10.5880492,36.5199287 C10.4337492,37.5988287 10.4488492,38.5599287 10.3752492,39.6846287 L10.3744492,39.6846287 Z",
541
544
  id: "Path",
542
545
  fill: stripe_fill,
543
- "fill-rule": "nonzero"
546
+ fillRule: "nonzero"
544
547
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
545
548
  d: "M33.2352492,36.4133287 C33.8640492,39.2624287 36.6538492,46.4634287 36.6538492,46.4634287 C40.0629492,46.4927287 43.7955492,45.5499287 43.7955492,45.5499287 C43.7955492,44.3025287 41.4281492,20.0472287 39.4436492,12.6199287 C37.4590492,5.19268874 35.9656492,4.03390874 34.8069492,3.42485874 C33.6481492,2.81500874 26.2738492,0.185014644 26.2738492,0.185014644",
546
549
  id: "Path",
547
550
  stroke: "#000000",
548
- "stroke-width": "0.2"
551
+ strokeWidth: "0.2"
549
552
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
550
553
  d: "M33.7074492,7.03950874 C33.7074492,7.03950874 32.4893492,31.5993287 33.7074492,46.6888287 C33.7074492,46.6888287 29.7525492,50.1074287 21.8942492,50.1074287",
551
554
  id: "Path",
552
555
  stroke: "#000000",
553
- "stroke-width": "0.2"
556
+ strokeWidth: "0.2"
554
557
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
555
558
  d: "M10.5611492,36.4133287 C9.9322992,39.2624287 7.1425192,46.4634287 7.1425192,46.4634287 C3.7334092,46.4927287 0.0007934,45.5499287 0.0007934,45.5499287 C0.0007934,44.3025287 2.3681892,20.0472287 4.3527492,12.6199287 C6.3373092,5.19268874 7.8306692,4.03390874 8.9894492,3.42485874 C10.1482492,2.81500874 17.5225492,0.185014644 17.5225492,0.185014644",
556
559
  id: "Path",
557
560
  stroke: "#000000",
558
- "stroke-width": "0.2"
561
+ strokeWidth: "0.2"
559
562
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
560
563
  d: "M10.0888492,7.03950874 C10.0888492,7.03950874 11.3070492,31.5993287 10.0888492,46.6888287 C10.0888492,46.6888287 14.0350492,50.1074287 21.8934492,50.1074287",
561
564
  id: "Path",
562
565
  stroke: "#000000",
563
- "stroke-width": "0.2"
566
+ strokeWidth: "0.2"
564
567
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
565
568
  d: "M26.3577492,0.185014644 C26.3577492,0.185014644 21.4987492,1.60244874 17.4386492,0.185014644",
566
569
  id: "Path",
567
570
  stroke: "#000000",
568
- "stroke-width": "0.2"
571
+ strokeWidth: "0.2"
569
572
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
570
573
  d: "M28.5139492,0.961381744 C28.5139492,0.961381744 21.3057492,4.15138874 15.2816492,0.961381744",
571
574
  id: "Path",
572
575
  stroke: "#000000",
573
- "stroke-width": "0.2"
576
+ strokeWidth: "0.2"
574
577
  }))));
575
578
  };
576
579
  const MLBJersey = ({
@@ -584,9 +587,9 @@ const MLBJersey = ({
584
587
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
585
588
  id: "Page-1",
586
589
  stroke: "none",
587
- "stroke-width": "1",
590
+ strokeWidth: "1",
588
591
  fill: "none",
589
- "fill-rule": "evenodd"
592
+ fillRule: "evenodd"
590
593
  }, /*#__PURE__*/_react.default.createElement(_reactNativeSvg.G, {
591
594
  id: "Baseball",
592
595
  transform: "translate(1.000000, 0.000000)"
@@ -594,119 +597,119 @@ const MLBJersey = ({
594
597
  d: "M3.44369,25.7043763 L0,17.6691763 L1.1479,17.2386763 L9.18316,14.2254763 L13.40966,13.1688763 L16.18536,12.3883763 C18.36636,14.2256763 21.23606,15.3735763 23.99096,12.3887763 L26.97556,13.0775763 L31.56706,14.2254763 L39.02846,17.2386763 L40.17636,17.6691763 L36.73266,25.7043763 L35.43216,25.5418763 L32.14106,25.1304763 L33.19456,41.9868763 L33.28896,43.4967763 C31.94976,43.8793763 29.15656,44.8742763 28.69736,45.7925763 C28.23816,46.7108763 23.91446,47.7056763 21.80996,48.0883763 L18.94026,48.0883763 C17.21846,48.0883763 12.62686,46.9404763 11.47896,45.7925763 C10.56066,44.8742763 8.41786,43.8793763 7.46136,43.4967763 L7.51506,41.7754763 L8.03526,25.1304763 L4.7442,25.5418763 L3.44369,25.7043763 Z",
595
598
  id: "Path",
596
599
  fill: jersey_fill,
597
- "fill-rule": "nonzero"
600
+ fillRule: "nonzero"
598
601
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
599
602
  d: "M1.1479,17.2386763 L9.18316,14.2254763 L13.40966,13.1688763 M1.1479,17.2386763 L0,17.6691763 L3.44369,25.7043763 L4.7442,25.5418763 M1.1479,17.2386763 L4.7442,25.5418763 M4.7442,25.5418763 L8.03526,25.1304763 L7.46136,43.4967763 C8.41786,43.8793763 10.56066,44.8742763 11.47896,45.7925763 C12.62686,46.9404763 17.21846,48.0883763 18.94026,48.0883763 C20.31776,48.0883763 21.42736,48.0883763 21.80996,48.0883763 C23.91446,47.7056763 28.23826,46.7108763 28.69736,45.7925763 C29.15656,44.8742763 31.94976,43.8793763 33.28896,43.4967763 L33.19456,41.9868763 M13.40966,13.1688763 L16.07056,12.5035763 C16.64446,14.4167763 18.25156,18.2430763 20.08816,18.2430763 C21.92476,18.7022763 24.10576,14.2254763 24.10576,12.5035763 L26.97556,13.0775763 M13.40966,13.1688763 C13.53136,14.1906763 14.00436,16.4351763 14.92266,17.2386763 C16.07056,18.2430763 18.94026,19.9648763 18.94026,21.6867763 C18.94026,23.5233763 18.94026,39.0832763 18.94026,46.6336763 C16.83576,46.5445763 12.93096,45.5226763 11.47896,44.0706763 C9.75706,42.3488763 8.41786,41.7748763 7.46136,41.7748763 M39.02846,17.2386763 L40.17636,17.6691763 L36.73266,25.7043763 L35.43216,25.5418763 M39.02846,17.2386763 L35.43216,25.5418763 M39.02846,17.2386763 L31.56706,14.2254763 L26.97556,13.0775763 M35.43216,25.5418763 L32.14106,25.1304763 L33.19456,41.9868763 M26.97556,13.0775763 C26.79646,14.3210763 26.40156,16.5212763 25.55906,17.2386763 C24.81366,17.8733763 21.80996,19.9648763 21.80996,21.6867763 C21.80996,23.0642763 21.67996,38.8919763 21.61496,46.6336763 C23.40186,46.5445763 27.31986,46.0221763 28.69736,44.6446763 C30.07486,43.2671763 32.26946,42.2988763 33.19456,41.9868763",
600
603
  id: "Shape",
601
604
  stroke: stripe_fill,
602
- "stroke-width": "0.286974",
605
+ strokeWidth: "0.286974",
603
606
  "stroke-linecap": "round"
604
607
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
605
608
  id: "Path",
606
609
  fill: stripe_fill,
607
- "fill-rule": "nonzero",
610
+ fillRule: "nonzero",
608
611
  points: "3.44369 25.7043763 1.77635684e-15 17.6691763 1.1479 17.2386763 4.7442 25.5418763"
609
612
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
610
613
  d: "M20.08816,18.2430763 C18.25156,18.2430763 16.64446,14.4167763 16.07056,12.5035763 L13.40966,13.1688763 C13.53136,14.1906763 14.00436,16.4351763 14.92266,17.2386763 C16.07056,18.2430763 18.94026,19.9648763 18.94026,21.6867763 L18.94026,46.6336763 C16.83576,46.5445763 12.93096,45.5226763 11.47896,44.0706763 C9.75706,42.3488763 8.41786,41.7748763 7.46136,41.7748763 L7.46136,43.4967763 C8.41786,43.8793763 10.56066,44.8742763 11.47896,45.7925763 C12.62686,46.9404763 17.21846,48.0883763 18.94026,48.0883763 L21.80996,48.0883763 C23.91446,47.7056763 28.12346,46.6336763 28.69736,45.7925763 C29.15486,45.1220763 31.94976,43.8793763 33.28896,43.4967763 L33.19456,41.9868763 C32.26946,42.2988763 30.07486,43.2671763 28.69736,44.6446763 C27.31986,46.0221763 23.40186,46.5445763 21.61496,46.6336763 C21.67996,38.8919763 21.80996,23.0642763 21.80996,21.6867763 C21.80996,19.9648763 24.81366,17.8733763 25.55906,17.2386763 C26.40156,16.5212763 26.79646,14.3210763 26.97556,13.0775763 L24.10576,12.5035763 C24.10576,14.2254763 21.92476,18.7022763 20.08816,18.2430763 Z",
611
614
  id: "Path",
612
615
  fill: stripe_fill,
613
- "fill-rule": "nonzero"
616
+ fillRule: "nonzero"
614
617
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
615
618
  id: "Path",
616
619
  fill: stripe_fill,
617
- "fill-rule": "nonzero",
620
+ fillRule: "nonzero",
618
621
  points: "40.17636 17.6691763 36.73266 25.7043763 35.43216 25.5418763 39.02846 17.2386763"
619
622
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
620
623
  id: "Path",
621
624
  stroke: stripe_fill,
622
- "stroke-width": "0.286974",
625
+ strokeWidth: "0.286974",
623
626
  "stroke-linecap": "round",
624
627
  points: "3.44369 25.7043763 1.77635684e-15 17.6691763 1.1479 17.2386763 4.7442 25.5418763"
625
628
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
626
629
  d: "M20.08816,18.2430763 C18.25156,18.2430763 16.64446,14.4167763 16.07056,12.5035763 L13.40966,13.1688763 C13.53136,14.1906763 14.00436,16.4351763 14.92266,17.2386763 C16.07056,18.2430763 18.94026,19.9648763 18.94026,21.6867763 L18.94026,46.6336763 C16.83576,46.5445763 12.93096,45.5226763 11.47896,44.0706763 C9.75706,42.3488763 8.41786,41.7748763 7.46136,41.7748763 L7.46136,43.4967763 C8.41786,43.8793763 10.56066,44.8742763 11.47896,45.7925763 C12.62686,46.9404763 17.21846,48.0883763 18.94026,48.0883763 L21.80996,48.0883763 C23.91446,47.7056763 28.12346,46.6336763 28.69736,45.7925763 C29.15486,45.1220763 31.94976,43.8793763 33.28896,43.4967763 L33.19456,41.9868763 C32.26946,42.2988763 30.07486,43.2671763 28.69736,44.6446763 C27.31986,46.0221763 23.40186,46.5445763 21.61496,46.6336763 C21.67996,38.8919763 21.80996,23.0642763 21.80996,21.6867763 C21.80996,19.9648763 24.81366,17.8733763 25.55906,17.2386763 C26.40156,16.5212763 26.79646,14.3210763 26.97556,13.0775763 L24.10576,12.5035763 C24.10576,14.2254763 21.92476,18.7022763 20.08816,18.2430763 Z",
627
630
  id: "Path",
628
631
  stroke: stripe_fill,
629
- "stroke-width": "0.286974",
632
+ strokeWidth: "0.286974",
630
633
  "stroke-linecap": "round"
631
634
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Polygon, {
632
635
  id: "Path",
633
636
  stroke: stripe_fill,
634
- "stroke-width": "0.286974",
637
+ strokeWidth: "0.286974",
635
638
  "stroke-linecap": "round",
636
639
  points: "40.17636 17.6691763 36.73266 25.7043763 35.43216 25.5418763 39.02846 17.2386763"
637
640
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
638
641
  d: "M16.18536,12.3887763 C18.94026,14.7996763 21.80996,14.7996763 23.96806,12.3883763 M31.56706,14.2254763 C31.37576,17.4777763 31.22276,24.2121763 32.14106,25.1304763 M9.18316,14.2254763 C9.18316,17.4777763 8.95356,24.2121763 8.03526,25.1304763",
639
642
  id: "Shape",
640
643
  stroke: stripe_fill,
641
- "stroke-width": "0.114789",
644
+ strokeWidth: "0.114789",
642
645
  "stroke-linecap": "round"
643
646
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
644
647
  d: "M21.23606,17.6695763 C20.66206,18.2435763 18.36636,20.5393763 18.36636,23.9830763",
645
648
  id: "Path",
646
649
  stroke: jersey_fill,
647
- "stroke-width": "0.114789",
650
+ strokeWidth: "0.114789",
648
651
  "stroke-linecap": "round"
649
652
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
650
653
  d: "M20.54736,44.9315763 C20.54736,45.0899763 20.41886,45.2184763 20.26036,45.2184763 C20.10186,45.2184763 19.97336,45.0899763 19.97336,44.9315763 C19.97336,44.7730763 20.10186,44.6445763 20.26036,44.6445763 C20.41886,44.6445763 20.54736,44.7730763 20.54736,44.9315763 Z",
651
654
  id: "Path",
652
655
  fill: jersey_fill,
653
- "fill-rule": "nonzero"
656
+ fillRule: "nonzero"
654
657
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
655
658
  d: "M20.54736,38.0441763 C20.54736,38.2026763 20.41886,38.3311763 20.26036,38.3311763 C20.10186,38.3311763 19.97336,38.2026763 19.97336,38.0441763 C19.97336,37.8856763 20.10186,37.7571763 20.26036,37.7571763 C20.41886,37.7571763 20.54736,37.8856763 20.54736,38.0441763 Z",
656
659
  id: "Path",
657
660
  fill: jersey_fill,
658
- "fill-rule": "nonzero"
661
+ fillRule: "nonzero"
659
662
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
660
663
  d: "M20.54736,31.1567763 C20.54736,31.3152763 20.41886,31.4437763 20.26036,31.4437763 C20.10186,31.4437763 19.97336,31.3152763 19.97336,31.1567763 C19.97336,30.9982763 20.10186,30.8697763 20.26036,30.8697763 C20.41886,30.8697763 20.54736,30.9982763 20.54736,31.1567763 Z",
661
664
  id: "Path",
662
665
  fill: jersey_fill,
663
- "fill-rule": "nonzero"
666
+ fillRule: "nonzero"
664
667
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
665
668
  d: "M20.54736,24.2693763 C20.54736,24.4278763 20.41886,24.5563763 20.26036,24.5563763 C20.10186,24.5563763 19.97336,24.4278763 19.97336,24.2693763 C19.97336,24.1109763 20.10186,23.9824763 20.26036,23.9824763 C20.41886,23.9824763 20.54736,24.1109763 20.54736,24.2693763 Z",
666
669
  id: "Path",
667
670
  fill: jersey_fill,
668
- "fill-rule": "nonzero"
671
+ fillRule: "nonzero"
669
672
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
670
673
  d: "M20.54736,41.4878763 C20.54736,41.6463763 20.41886,41.7747763 20.26036,41.7747763 C20.10186,41.7747763 19.97336,41.6463763 19.97336,41.4878763 C19.97336,41.3293763 20.10186,41.2008763 20.26036,41.2008763 C20.41886,41.2008763 20.54736,41.3293763 20.54736,41.4878763 Z",
671
674
  id: "Path",
672
675
  fill: jersey_fill,
673
- "fill-rule": "nonzero"
676
+ fillRule: "nonzero"
674
677
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
675
678
  d: "M20.54736,34.6004763 C20.54736,34.7589763 20.41886,34.8874763 20.26036,34.8874763 C20.10186,34.8874763 19.97336,34.7589763 19.97336,34.6004763 C19.97336,34.4419763 20.10186,34.3134763 20.26036,34.3134763 C20.41886,34.3134763 20.54736,34.4419763 20.54736,34.6004763 Z",
676
679
  id: "Path",
677
680
  fill: jersey_fill,
678
- "fill-rule": "nonzero"
681
+ fillRule: "nonzero"
679
682
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
680
683
  d: "M20.54736,27.7130763 C20.54736,27.8715763 20.41886,28.0000763 20.26036,28.0000763 C20.10186,28.0000763 19.97336,27.8715763 19.97336,27.7130763 C19.97336,27.5545763 20.10186,27.4261763 20.26036,27.4261763 C20.41886,27.4261763 20.54736,27.5545763 20.54736,27.7130763 Z",
681
684
  id: "Path",
682
685
  fill: jersey_fill,
683
- "fill-rule": "nonzero"
686
+ fillRule: "nonzero"
684
687
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
685
688
  d: "M20.54736,20.8257763 C20.54736,20.9842763 20.41886,21.1126763 20.26036,21.1126763 C20.10186,21.1126763 19.97336,20.9842763 19.97336,20.8257763 C19.97336,20.6672763 20.10186,20.5387763 20.26036,20.5387763 C20.41886,20.5387763 20.54736,20.6672763 20.54736,20.8257763 Z",
686
689
  id: "Path",
687
690
  fill: jersey_fill,
688
- "fill-rule": "nonzero"
691
+ fillRule: "nonzero"
689
692
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
690
693
  d: "M14.58816,8.08857633 C14.58816,6.08857633 13.58816,0.588576331 20.58816,0.588576331 C27.08816,0.588576331 26.08816,6.08857633 26.08816,8.08857633 C27.08816,9.08857633 26.58816,9.58857633 26.08816,9.58857633 C25.68816,9.58857633 24.92146,9.25523633 24.58816,9.08857633 C24.08816,8.83857633 22.08816,8.33857633 20.58816,8.33857633 C19.08816,8.33857633 17.01516,8.87508633 16.58816,9.08857633 C16.25486,9.25523633 15.38816,9.58857633 14.58816,9.58857633 C13.78816,9.58857633 14.25486,8.58857633 14.58816,8.08857633 Z",
691
694
  id: "Path",
692
695
  fill: jersey_fill,
693
- "fill-rule": "nonzero"
696
+ fillRule: "nonzero"
694
697
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
695
698
  d: "M20.58816,6.88837633 C17.58146,6.88837633 16.08816,7.75504633 14.58816,8.08837633 C14.25486,8.58837633 13.78816,9.58837633 14.58816,9.58837633 C15.38816,9.58837633 16.25486,9.25504633 16.58816,9.08837633 C17.01516,8.87488633 19.08816,8.33837633 20.58816,8.33837633 C22.08816,8.33837633 24.08816,8.83837633 24.58816,9.08837633 C24.92146,9.25504633 25.68816,9.58837633 26.08816,9.58837633 C26.58816,9.58837633 27.08816,9.08837633 26.08816,8.08837633 C24.75486,7.75504633 23.58816,6.88837633 20.58816,6.88837633 Z",
696
699
  id: "Path",
697
700
  fill: stripe_fill,
698
- "fill-rule": "nonzero"
701
+ fillRule: "nonzero"
699
702
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
700
703
  d: "M20.52786,0.428276331 L20.53546,0.423266331 C20.56716,0.402246331 20.60866,0.402966331 20.63966,0.425076331 C20.71256,0.477056331 20.67576,0.592016331 20.58626,0.592016331 L20.57716,0.592016331 C20.48866,0.592016331 20.45406,0.477116331 20.52786,0.428276331 Z",
701
704
  id: "Path",
702
705
  stroke: stripe_fill,
703
- "stroke-width": "0.25",
706
+ strokeWidth: "0.25",
704
707
  "stroke-linecap": "round"
705
708
  }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
706
709
  d: "M14.58816,8.08884633 C16.08816,7.75550633 17.58146,6.88884633 20.58816,6.88884633 C23.58816,6.88884633 24.75486,7.75550633 26.08816,8.08884633 M14.58816,8.08884633 C14.25486,8.58884633 13.78816,9.58887633 14.58816,9.58887633 C15.38816,9.58887633 16.25486,9.25550633 16.58816,9.08884633 C17.01516,8.87535633 19.08816,8.33884633 20.58816,8.33884633 C22.08816,8.33884633 24.08816,8.83884633 24.58816,9.08884633 C24.92146,9.25550633 25.68816,9.58887633 26.08816,9.58887633 C26.58816,9.58887633 27.08816,9.08884633 26.08816,8.08884633 M14.58816,8.08884633 C14.58816,6.11864633 13.92546,0.748096331 20.58816,0.588576331 C26.77296,0.748096331 26.08816,6.11864633 26.08816,8.08884633",
707
710
  id: "Shape",
708
711
  stroke: jersey_fill,
709
- "stroke-width": "0.25",
712
+ strokeWidth: "0.25",
710
713
  "stroke-linecap": "round"
711
714
  }))));
712
715
  };