Files
drip/assets/home-circle.js
T
2018-10-03 19:14:53 +02:00

16 lines
588 B
JavaScript

import React from 'react'
import Svg, { G, Path } from 'react-native-svg'
export default function HomeCycleIcon() {
return (
<Svg width={80} height={80} viewBox='340 345 170 170'>
<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>
)
}