UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.12 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconRegexp({ 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="M3.006 2.75H3a.75.75 0 0 0-.75.75v17c0 .414.336.75.75.75h4a.75.75 0 0 0 0-1.5H3.75V4.25H7a.75.75 0 0 0 0-1.5H3.006Z" /><Path d="M21.75 3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0 0 1.5h3.25v15.5H17a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 .75-.745V3.588l-.001-.044.001-.044Z" /><Path d="M5.84 12.644 9.337 6.15a.748.748 0 0 1 .941-.347.747.747 0 0 1 .384.344l3.498 6.497a.75.75 0 1 1-1.32.711L10 8.082l-2.84 5.274a.75.75 0 0 1-1.32-.712Z" /><Path d="M10 17.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" /><Path d="M14.5 16.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" /><Path d="M17 17.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconRegexp;