@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.4 kB
JavaScript
import * as React from "react";
function EmailSentIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M18.386 3c-.4 0-.723.34-.723.761 0 .42.323.761.723.761h.963c.4 0 .723-.34.723-.76 0-.421-.323-.762-.723-.762zM18.386 5.03c-.4 0-.723.34-.723.761 0 .42.323.761.723.761h2.891c.4 0 .723-.34.723-.761 0-.42-.324-.761-.723-.761z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M15.777 20H7.5A5.5 5.5 0 0 1 2 14.5V9.261c0-1.226.402-2.36 1.08-3.274l4.87 5.099-3.137 4.464a.75.75 0 1 0 1.227.863l2.966-4.221 1.108 1.16c.865.905 2.28.898 3.137-.014l.768-.82 2.736 3.896a.75.75 0 0 0 1.228-.862l-2.916-4.15.974-1.038.004-.004 1.553-1.681q.502.183 1.146.242c1.345.127 2.533 1.101 2.533 2.452V14.5a5.5 5.5 0 0 1-5.5 5.5m.595-12.205L14.945 9.34l-2.788 2.971a.645.645 0 0 1-.959.005L4.13 4.914A5.48 5.48 0 0 1 7.5 3.761h7.03c.532 0 .96.434.989.966.078 1.403.342 2.397.853 3.068",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(EmailSentIcon);
export default ForwardRef;