@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 988 B
JavaScript
import * as React from "react";
function EmailIcon({
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", {
fillRule: "evenodd",
d: "M3.573 5.649A5.48 5.48 0 0 0 2 9.5v5A5.5 5.5 0 0 0 7.5 20h9a5.5 5.5 0 0 0 5.5-5.5v-5c0-1.5-.6-2.859-1.573-3.851l-5.042 5.671 3.163 4.276a.75.75 0 0 1-1.206.892l-2.975-4.022-.685.771a2.25 2.25 0 0 1-3.364 0l-.958-1.078-3.202 4.328a.75.75 0 0 1-1.206-.892l3.39-4.582zm1.19-.92 6.676 7.512a.75.75 0 0 0 1.122 0l6.677-7.512A5.5 5.5 0 0 0 16.5 4h-9c-.997 0-1.931.265-2.738.729",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(EmailIcon);
export default ForwardRef;