UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.16 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconPagination({ 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="M2.75 3a.75.75 0 0 1 .75.75V6c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V3.75a.75.75 0 0 1 1.5 0V6a2.75 2.75 0 0 1-2.75 2.75H4.75A2.75 2.75 0 0 1 2 6V3.75A.75.75 0 0 1 2.75 3Z" /><Path d="M21.25 21a.75.75 0 0 1-.75-.75V18c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v2.25a.75.75 0 0 1-1.5 0V18a2.75 2.75 0 0 1 2.75-2.75h14.5A2.75 2.75 0 0 1 22 18v2.25a.75.75 0 0 1-.75.75Z" /><Path d="M3 11.25a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5H3Z" /><Path d="M9.25 12a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z" /><Path d="M17 11.25a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconPagination;