@heroicons/react
Version:
20 lines (18 loc) • 594 B
JavaScript
const React = require("react");
function FolderRemoveIcon(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: "M8 11h4"
}));
}
module.exports = FolderRemoveIcon;