import * as React from "react" import Svg, { SvgProps, Path } from "react-native-svg" interface Props { color: string; width?: number; height?: number; } const LocationArrow = ({ color, height = 24, width = 24 }: Props) => ( ) export default LocationArrow