UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 861 B
const React = require("react"); import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconGender({ 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="M15.75 2.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0V4.31l-2.331 2.332A7.001 7.001 0 0 1 11.5 17.71v.79h2a.75.75 0 0 1 0 1.5h-2v1.5a.75.75 0 0 1-1.5 0V20H8a.75.75 0 0 1 0-1.5h2v-.79a7.001 7.001 0 1 1 5.412-12.182l2.277-2.278H16.5a.75.75 0 0 1-.75-.75Zm-5 13.75a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } module.exports = FieldIconGender;