UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.19 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconLocation({ title, titleId, ...props }) { return <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" data-slot="icon" width="1em" height="1em" aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<G clipPath="url(#a)"><Path d="M12 6.325a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Zm-2.25 3.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z" /><Path d="M20.5 10.256c0 4.968-5.18 9.62-7.452 11.319a1.74 1.74 0 0 1-2.096 0C8.679 19.877 3.5 15.224 3.5 10.255c0-2.17.896-4.25 2.49-5.785C7.584 2.937 9.746 2.075 12 2.075s4.416.862 6.01 2.396c1.595 1.534 2.49 3.615 2.49 5.785Zm-1.5 0c0-1.753-.723-3.447-2.03-4.704-1.309-1.26-3.095-1.977-4.97-1.977-1.875 0-3.661.717-4.97 1.977C5.723 6.809 5 8.503 5 10.256c0 1.977 1.045 3.988 2.536 5.818 1.47 1.803 3.226 3.486 4.314 4.299a.248.248 0 0 0 .15.052.248.248 0 0 0 .15-.052c1.088-.813 2.844-2.496 4.314-4.3C17.955 14.245 19 12.234 19 10.257Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconLocation;