UNPKG

@nomercyicons/react

Version:
32 lines 1.05 kB
const React = require("react"); function MarkUnreadChatAltOutlinedIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "none", d: "M0 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M20 16H4V4h10.1a5 5 0 010-2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V6.98c-.58.44-1.26.77-2 .92V16z" }), /*#__PURE__*/React.createElement("circle", { cx: 19, cy: 3, r: 3 }), /*#__PURE__*/React.createElement("path", { d: "M6 12h8v2H6zM6 9h12v2H6zM6 8h12v-.1A5.013 5.013 0 0115.03 6H6v2z" })); } const ForwardRef = React.forwardRef(MarkUnreadChatAltOutlinedIcon); module.exports = ForwardRef;