UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.71 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconAddress({ 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="M9.256 8.337c0-1.483 1.229-2.686 2.744-2.686 1.515 0 2.744 1.203 2.744 2.686 0 1.484-1.229 2.686-2.744 2.686-1.515 0-2.744-1.202-2.744-2.686ZM12 7.117c-.689 0-1.247.546-1.247 1.22 0 .675.558 1.221 1.247 1.221.689 0 1.247-.546 1.247-1.22 0-.675-.558-1.222-1.247-1.222Z" /><Path d="M12.555 18.672c1.653-1.274 6.43-5.353 6.43-9.98a7.302 7.302 0 0 0-2.046-5.085A6.884 6.884 0 0 0 12 1.5a6.884 6.884 0 0 0-4.939 2.107 7.302 7.302 0 0 0-2.046 5.085c0 4.627 4.777 8.706 6.43 9.98.33.254.78.254 1.11 0Zm2.655-4.634c-1.114 1.397-2.381 2.52-3.21 3.19-.829-.67-2.096-1.793-3.21-3.19-1.317-1.652-2.278-3.51-2.278-5.346 0-1.542.596-3.007 1.634-4.076A5.372 5.372 0 0 1 12 2.966c1.43 0 2.818.584 3.854 1.65a5.854 5.854 0 0 1 1.634 4.076c0 1.835-.961 3.694-2.278 5.346Z" /><Path d="M4.412 15.419c-.854 0-1.582.604-1.723 1.428l-.665 3.663c-.177 1.042.644 1.99 1.723 1.99h16.506c1.08 0 1.9-.948 1.723-1.99l-.665-3.663a1.736 1.736 0 0 0-1.723-1.428H18.44a.74.74 0 0 0-.748.732.74.74 0 0 0 .748.733h1.148c.122 0 .226.086.246.204l.666 3.663a.246.246 0 0 1-.247.284H3.747a.246.246 0 0 1-.246-.284l.665-3.663a.248.248 0 0 1 .246-.204H5.56a.74.74 0 0 0 .748-.733.74.74 0 0 0-.748-.732H4.412Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconAddress;