UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.07 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconChinese({ 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 fillRule="evenodd" clipPath="url(#a)" clipRule="evenodd"><Path d="M12.75 7a.75.75 0 0 0-1.5 0v1.25H7.258a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h3.992V17a.75.75 0 0 0 1.5 0v-2.75h4.008a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75H12.75V7Zm3.258 2.75v3H12.75v-3h3.258Zm-4.758 0H8.008v3h3.242v-3Z" /><Path d="M5.5 2.75A2.75 2.75 0 0 0 2.75 5.5v13a2.75 2.75 0 0 0 2.75 2.75h13a2.75 2.75 0 0 0 2.75-2.75v-13a2.75 2.75 0 0 0-2.75-2.75h-13ZM4.25 5.5c0-.69.56-1.25 1.25-1.25h13c.69 0 1.25.56 1.25 1.25v13c0 .69-.56 1.25-1.25 1.25h-13c-.69 0-1.25-.56-1.25-1.25v-13Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconChinese;