@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.13 kB
JavaScript
const React = require("react");
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconPictureCheck({
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="M8.487 6.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-.75 2.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Z" /><Path d="M2.987 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3l.026 7.556a1 1 0 0 1-1 1.003h-.066a.998.998 0 0 1-.726-.312c-.935-.988-3.34-3.53-3.921-4.15L6.484 19.5h5.753a.75.75 0 0 1 0 1.5h-6.25a3 3 0 0 1-3-3V6Zm3-1.5a1.5 1.5 0 0 0-1.5 1.5v12c0 .391.15.748.396 1.015l9.87-10.528a.75.75 0 0 1 1.094 0l3.64 3.883V6a1.5 1.5 0 0 0-1.5-1.5h-12Z" /><Path d="M15.263 17a.75.75 0 0 0 0 1.5h1.75v1.75a.75.75 0 0 0 1.5 0V18.5h1.75a.75.75 0 0 0 0-1.5h-1.75v-1.75a.75.75 0 0 0-1.5 0V17h-1.75Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
module.exports = FieldIconPictureCheck;