@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.25 kB
JavaScript
import * as React from "react";
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconPictureProduct({
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="M1 2.125a.75.75 0 0 0 0 1.5h3.45l2.587 11.794c.129.633.478 1.2.984 1.601a2.794 2.794 0 0 0 1.783.605h9.839a2.794 2.794 0 0 0 1.783-.605c.508-.403.858-.972.986-1.607l.003-.019.004-.025 1.324-9.39A.75.75 0 0 0 23 5.126H6.315l-.528-2.41a.75.75 0 0 0-.733-.59H1Zm7.503 12.98-1.859-8.48h15.493l-.905 6.421-1.702-1.701a.75.75 0 0 0-1.06 0L17 12.815l-3.47-3.47a.75.75 0 0 0-1.154.114l-3.843 5.765a1.233 1.233 0 0 1-.027-.107l-.003-.013Zm1.232 1.02 3.382-5.073 3.353 3.353a.75.75 0 0 0 1.06 0l1.47-1.47 1.97 1.97-.033.23c-.06.278-.216.53-.444.71a1.294 1.294 0 0 1-.83.28H9.735Z" /><Path d="M11 20.375a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" /><Path d="M19.5 21.875a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
export default FieldIconPictureProduct;