@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
34 lines • 1.49 kB
JavaScript
const React = require("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: "currentColor",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
d: "M13.25 14a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12 16.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12Zm-6 1.5h6A1.5 1.5 0 0 1 19.5 6v12a1.5 1.5 0 0 1-1.5 1.5H6A1.5 1.5 0 0 1 4.5 18V6A1.5 1.5 0 0 1 6 4.5v4.691a.5.5 0 0 0 .724.447l1.829-.914a1 1 0 0 1 .894 0l1.83.914A.5.5 0 0 0 12 9.191V4.5Zm-1.5 0h-3v3.073l.382-.191a2.5 2.5 0 0 1 2.236 0l.382.19V4.5Z",
clipRule: "evenodd"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("rect", {
width: 24,
height: 24
}))));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconPersonalWork);
module.exports = ForwardRef;