@heroicons/react
Version:
17 lines (15 loc) • 565 B
JavaScript
const React = require("react");
function FolderRemoveIcon(props, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M4 4a2 2 0 00-2 2v8a2 2 0 002 2h12a2 2 0 002-2V8a2 2 0 00-2-2h-5L9 4H4zm4 6a1 1 0 100 2h4a1 1 0 100-2H8z"
}));
}
const ForwardRef = React.forwardRef(FolderRemoveIcon);
module.exports = ForwardRef;