@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
31 lines • 1.45 kB
JavaScript
const React = require("react");
function FieldIconRegexp({
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: "M3.006 2.75H3a.75.75 0 0 0-.75.75v17c0 .414.336.75.75.75h4a.75.75 0 0 0 0-1.5H3.75V4.25H7a.75.75 0 0 0 0-1.5H3.006Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M21.75 3.5a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0 0 1.5h3.25v15.5H17a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 .75-.745V3.588l-.001-.044.001-.044Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.84 12.644 9.337 6.15a.748.748 0 0 1 .941-.347.747.747 0 0 1 .384.344l3.498 6.497a.75.75 0 1 1-1.32.711L10 8.082l-2.84 5.274a.75.75 0 0 1-1.32-.712Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M10 17.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.5 16.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M17 17.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconRegexp);
module.exports = ForwardRef;