19 lines
692 B
TypeScript
19 lines
692 B
TypeScript
import * as React from 'react';
|
|
import Svg, { Path } from 'react-native-svg';
|
|
|
|
interface Props {
|
|
color: string;
|
|
width?: number;
|
|
height?: number;
|
|
}
|
|
|
|
const Location = ({ color, height = 24, width = 24 }: Props) => (
|
|
<Svg width={width} height={height} fill="none" viewBox="0 0 24 24">
|
|
<Path
|
|
fill={color}
|
|
d="M18 4.48a8.485 8.485 0 1 0-12 12l5.27 5.28a1.001 1.001 0 0 0 1.42 0L18 16.43a8.45 8.45 0 0 0 0-11.95ZM16.57 15 12 19.59 7.43 15a6.46 6.46 0 1 1 9.14 0ZM9 7.41a4.32 4.32 0 0 0 0 6.1 4.31 4.31 0 0 0 7.36-3 4.239 4.239 0 0 0-1.26-3.05A4.3 4.3 0 0 0 9 7.41Zm4.69 4.68a2.33 2.33 0 1 1 .67-1.63 2.33 2.33 0 0 1-.72 1.63h.05Z"
|
|
/>
|
|
</Svg>
|
|
);
|
|
export default Location;
|