UNPKG

@nomercyicons/react

Version:
26 lines 968 B
const React = require("react"); function MarkChatReadRoundedIcon({ 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: "M18.05 19.29a.996.996 0 01-1.41 0l-2.12-2.12a.996.996 0 111.41-1.41l1.41 1.41 3.54-3.54a.996.996 0 111.41 1.41l-4.24 4.25zM12 17a6.995 6.995 0 0110-6.32V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.17.01-.33.03-.5-.02-.17-.03-.33-.03-.5z" })); } const ForwardRef = React.forwardRef(MarkChatReadRoundedIcon); module.exports = ForwardRef;