UNPKG

@jinshuju/field-icons-react

Version:

First, install `@jinshuju/field-icons-react` from npm:

43 lines 1.45 kB
import * as React from "react"; function FieldIconPictureProduct({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }), /*#__PURE__*/React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M19 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }), /*#__PURE__*/React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }), /*#__PURE__*/React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.8, d: "M2.05 2.05h2l1.07 5m0 0 1.59 7.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12Zm15.232 4.808-.648-.648a2.4 2.4 0 0 0-3.408 0L13.5 15.75" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPictureProduct); export default ForwardRef;