@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
31 lines • 1.05 kB
JavaScript
import * as React from "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: "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: 1.8,
d: "M18.57 20a2.286 2.286 0 0 0 2.287-2.286V6.286A2.285 2.285 0 0 0 18.57 4M5.429 4a2.285 2.285 0 0 0-2.286 2.286v11.428A2.285 2.285 0 0 0 5.43 20M13 12.5l-3-6-3 6"
}), /*#__PURE__*/React.createElement("path", {
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2,
d: "M17 16.5h.01m-3.52 0h.01m-3.51 0H10"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconRegexp);
export default ForwardRef;