@jinshuju/field-icons-react
Version:
First, install `@jinshuju/field-icons-react` from npm:
25 lines • 827 B
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: "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: "m21.44 11.05-9.19 9.19a6.003 6.003 0 0 1-8.49-8.49l8.57-8.57A4.006 4.006 0 0 1 18 8.84l-8.59 8.57a2.001 2.001 0 0 1-2.83-2.83l8.49-8.48"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconUpload);
module.exports = ForwardRef;