15 lines
520 B
JavaScript
15 lines
520 B
JavaScript
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>
|
|
)
|
|
}
|