@heroicons/react
Version:
15 lines (13 loc) • 553 B
JavaScript
const React = require("react");
function DocumentDuplicateIcon(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M9 2a2 2 0 00-2 2v8a2 2 0 002 2h6a2 2 0 002-2V6.414A2 2 0 0016.414 5L14 2.586A2 2 0 0012.586 2H9z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 8a2 2 0 012-2v10h8a2 2 0 01-2 2H5a2 2 0 01-2-2V8z"
}));
}
module.exports = DocumentDuplicateIcon;