UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.46 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconEnglish({ 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.844 9.493c.412 0 .757.05 1.037.148.288.09.519.23.692.42.173.19.296.424.37.704.074.272.111.593.111.963v3.806a.75.75 0 1 1-1.502 0v-3.336c0-.223-.016-.412-.049-.569a.875.875 0 0 0-.173-.395.597.597 0 0 0-.32-.21c-.14-.05-.45-.077-.673-.077-.37 0-.754.07-.992.2-.24.133-.408.371-.507.717v3.673a.748.748 0 1 1-1.497 0v-5.172a.748.748 0 0 1 1.497 0v.054c.181-.313.453-.543.815-.691a2.792 2.792 0 0 1 1.19-.235Z" /><Path d="M11.19 15.535a.75.75 0 0 0-.752-.751H7.444v-2.137h2.991a.75.75 0 0 0 0-1.5h-2.99V9.213h2.991a.75.75 0 1 0 0-1.5H6.66a.715.715 0 0 0-.714.715v7.141c0 .395.32.715.715.715h3.777a.75.75 0 0 0 .751-.75Z" /><Path fillRule="evenodd" d="M2.75 5.5A2.75 2.75 0 0 1 5.5 2.75h13a2.75 2.75 0 0 1 2.75 2.75v13a2.75 2.75 0 0 1-2.75 2.75h-13a2.75 2.75 0 0 1-2.75-2.75v-13ZM5.5 4.25c-.69 0-1.25.56-1.25 1.25v13c0 .69.56 1.25 1.25 1.25h13c.69 0 1.25-.56 1.25-1.25v-13c0-.69-.56-1.25-1.25-1.25h-13Z" clipRule="evenodd" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconEnglish;