@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 798 B
JavaScript
const React = require("react");
function FieldIconResume({
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: "M14 2v4a2 2 0 0 0 2 2h4m-8 4v6m-3-3 3-3 3 3m0-13H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7l-5-5Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconResume);
module.exports = ForwardRef;