UNPKG

@nomercyicons/react

Version:
26 lines 1.06 kB
const React = require("react"); function MarkEmailReadRoundedIcon({ 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 21.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.08 20H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v6.68A6.995 6.995 0 0012 19c0 .34.03.67.08 1zm-.61-7.33c.32.2.74.2 1.06 0l7.07-4.42a.85.85 0 10-.9-1.44L12 11 5.3 6.81a.85.85 0 10-.9 1.44l7.07 4.42z" })); } const ForwardRef = React.forwardRef(MarkEmailReadRoundedIcon); module.exports = ForwardRef;