@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
23 lines • 1.06 kB
JavaScript
const React = require("react");
function FieldIconUpload({
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", {
d: "M12.287 3.057a.748.748 0 0 0-.817.163l-4 4a.75.75 0 0 0 1.06 1.06l2.72-2.72v11.19a.75.75 0 0 0 1.5 0V5.56l2.72 2.72a.75.75 0 1 0 1.06-1.06l-4-4a.748.748 0 0 0-.243-.163Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.25 13.5a.75.75 0 0 1 .75.75v5a1.25 1.25 0 0 0 1.25 1.25h13.5A1.25 1.25 0 0 0 20 19.25v-5a.75.75 0 0 1 1.5 0v5A2.75 2.75 0 0 1 18.75 22H5.25a2.75 2.75 0 0 1-2.75-2.75v-5a.75.75 0 0 1 .75-.75Z"
})));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconUpload);
module.exports = ForwardRef;