Add new home screen

This commit is contained in:
Julia Friesel
2018-09-30 15:02:11 +02:00
parent bd37c118f1
commit 7b8b905550
40 changed files with 367 additions and 356 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from 'react'
import Svg, { G, Path } from 'react-native-svg'
export default function HomeDropIcon() {
return (
<Svg width={80} height={102.56} viewBox="350 275 145 144">
<G>
<Path fill="none" stroke="#89113E" stroke-width="2" stroke-miterlimit="10" d="M492.723,455.44
c-5.531,39.136-41.74,66.377-80.876,60.847C372.712,510.757,351,483.64,351,444.115c0-37.555,79.739-114.673,80.391-105.969
C434.248,376.247,499.843,405.058,492.723,455.44z"/>
</G>
</Svg>
)
}