UNPKG

@jinshuju/field-icons-react

Version:

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

32 lines 1.39 kB
const React = require("react"); function FieldIconTextProduct({ 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", { clipPath: "url(#a)" }, /*#__PURE__*/React.createElement("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" }), /*#__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" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconTextProduct); module.exports = ForwardRef;