Revert early return, fixes gaps in LTL line

This commit is contained in:
Julia Friesel
2018-09-27 19:29:26 +02:00
parent 6b606866e5
commit 17bb23fd91
3 changed files with 49 additions and 13 deletions
+16
View File
@@ -0,0 +1,16 @@
import React from 'react'
import Svg, { G, Path } from 'react-native-svg'
export default function HomeCycleIcon() {
return (
<Svg width={140} height={100} viewBox='200 200 350 350'>
<G>
<Path fill="none" stroke="#1E0B7A" strokeWidth="2" d="M379.708,350.568
C356.431,365.455,341,391.529,341,421.21c0,46.275,37.515,83.79,83.791,83.79s83.79-37.515,83.79-83.79
c0-31.784-17.696-59.436-43.773-73.637"/>
<Path fill="none" stroke="#1E0B7A" strokeWidth="2" d="M383.809,369.885v-18.398
c0,0,0-4.843-4.842-4.843h-18.399"/>
</G>
</Svg>
)
}