@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
29 lines • 1.45 kB
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: "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", {
fillRule: "evenodd",
d: "M14.5 8.25c0 .645-.244 1.232-.644 1.675a4.25 4.25 0 0 1 2.394 3.825.75.75 0 0 1-1.5 0 2.75 2.75 0 1 0-5.5 0 .75.75 0 0 1-1.5 0 4.25 4.25 0 0 1 2.394-3.825A2.5 2.5 0 1 1 14.5 8.25Zm-1.5 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.5 16a.75.75 0 0 0 0 1.5H11a.75.75 0 0 0 0-1.5H8.5Z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h6.757a3 3 0 0 0 2.122-.879l3.242-3.242A3 3 0 0 0 20 15.757V5a3 3 0 0 0-3-3H7Zm10 1.5H7A1.5 1.5 0 0 0 5.5 5v14A1.5 1.5 0 0 0 7 20.5h6.25V19A3.75 3.75 0 0 1 17 15.25h1.5V5A1.5 1.5 0 0 0 17 3.5Zm-2.182 16.56a1.576 1.576 0 0 1-.068.065V19A2.25 2.25 0 0 1 17 16.75h1.125l-.064.068-3.243 3.243Z",
clipRule: "evenodd"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconResume);
module.exports = ForwardRef;