@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 980 B
JavaScript
const React = require("react");
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconTextProduct({
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="M.25 2.875a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 .733.591l.521 2.409H23a.75.75 0 0 1 .74.876l-1.6 9.39-.004.02a2.75 2.75 0 0 1-2.743 2.214H9.687a2.75 2.75 0 0 1-2.741-2.207L4.395 3.625H1a.75.75 0 0 1-.75-.75Zm6.328 3.75 1.838 8.494a1.25 1.25 0 0 0 1.25 1.006h9.748a1.25 1.25 0 0 0 1.249-.997l1.448-8.503H6.578Z" /><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>;
}
module.exports = FieldIconTextProduct;