@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 780 B
JavaScript
import * as React from "react";
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconCny({
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="M5.47 2.22a.75.75 0 0 1 1.06 0L12 7.69l5.47-5.47a.75.75 0 1 1 1.06 1.06L13.81 8H18a.75.75 0 0 1 0 1.5h-5.25v3H17a.75.75 0 0 1 0 1.5h-4.25v7.25a.75.75 0 0 1-1.5 0V14H7a.75.75 0 0 1 0-1.5h4.25v-3H6A.75.75 0 0 1 6 8h4.19L5.47 3.28a.75.75 0 0 1 0-1.06Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
export default FieldIconCny;