@heroicons/react
Version:
18 lines (16 loc) • 598 B
JavaScript
const React = require("react");
function NewspaperIcon(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", {
fillRule: "evenodd",
d: "M2 5a2 2 0 012-2h8a2 2 0 012 2v10a2 2 0 002 2H4a2 2 0 01-2-2V5zm3 1h6v4H5V6zm6 6H5v2h6v-2z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M15 7h1a2 2 0 012 2v5.5a1.5 1.5 0 01-3 0V7z"
}));
}
module.exports = NewspaperIcon;