@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 812 B
JavaScript
import * as React from "react";
function FieldIconPersonalWork({
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: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5Zm0 0A2.5 2.5 0 0 1 6.5 17H20m-8-4V7m3 3-3-3-3 3"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPersonalWork);
export default ForwardRef;