@heroicons/react
Version:
20 lines (18 loc) • 613 B
JavaScript
import * as React from "react";
function FolderDownloadIcon(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M2 6a2 2 0 012-2h5l2 2h5a2 2 0 012 2v6a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#fff",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 2,
d: "M10 9v4m0 0l-2-2m2 2l2-2"
}));
}
export default FolderDownloadIcon;