UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 938 B
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconSort({ 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="M6.567 3.26a.76.76 0 0 0-1.522 0v16.335L3.314 17.77a.762.762 0 0 0-1.076-.029.76.76 0 0 0-.03 1.075l2.17 2.286c.788.831 2.19.274 2.19-.871V3.26Z" /><Path d="M9.567 6.554a.76.76 0 1 0 0 1.52h11.672a.76.76 0 1 0 0-1.52H9.567Z" /><Path d="M9.567 11.621a.76.76 0 1 0 0 1.52h8.373a.76.76 0 1 0 0-1.52H9.567Z" /><Path d="M8.806 17.448c0-.42.34-.76.761-.76h6.343a.76.76 0 1 1 0 1.52H9.567a.76.76 0 0 1-.761-.76Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconSort;