@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.44 kB
JavaScript
import * as React from "react";
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconNumber({
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 fillRule="evenodd" d="M4.004 4.61h15.992c.278 0 .504.226.504.504v13.77a.504.504 0 0 1-.504.504H4.004a.504.504 0 0 1-.504-.504V5.114c0-.278.226-.504.504-.504ZM2 5.114c0-1.107.897-2.004 2.004-2.004h15.992c1.107 0 2.004.897 2.004 2.004v13.77a2.004 2.004 0 0 1-2.004 2.004H4.004A2.004 2.004 0 0 1 2 18.884V5.114Zm5.194 2.44a.75.75 0 1 0-1.5 0v8.89a.75.75 0 0 0 1.5 0v-8.89Zm1.473-.75a.75.75 0 0 0 0 1.5H11a.25.25 0 0 1 .25.25V11a.25.25 0 0 1-.25.25H9.667a1.75 1.75 0 0 0-1.75 1.75v2.444c0 .967.783 1.75 1.75 1.75H12a.75.75 0 0 0 0-1.5H9.667a.25.25 0 0 1-.25-.25V13a.25.25 0 0 1 .25-.25H11a1.75 1.75 0 0 0 1.75-1.75V8.554A1.75 1.75 0 0 0 11 6.804H8.667Zm4.805.75a.75.75 0 0 1 .75-.75h2.334c.966 0 1.75.784 1.75 1.75V15.443a1.75 1.75 0 0 1-1.75 1.75h-2.334a.75.75 0 0 1 0-1.5h2.334a.25.25 0 0 0 .25-.25V12.75h-2.584a.75.75 0 1 1 0-1.5h2.584V8.554a.25.25 0 0 0-.25-.25h-2.334a.75.75 0 0 1-.75-.75Z" clipRule="evenodd" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
export default FieldIconNumber;