UNPKG

@jinshuju/field-icons-react

Version:

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

25 lines 1.44 kB
const React = require("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: "currentColor", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("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" }), /*#__PURE__*/React.createElement("path", { d: "M11 20.375a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" }), /*#__PURE__*/React.createElement("path", { d: "M19.5 21.875a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" }))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPictureProduct); module.exports = ForwardRef;