UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 1.1 kB
const React = require("react"); const { forwardRef } = require("react"); const EmailIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M20.2 3.997a.8.8 0 0 1-.08.15l-4.69 6.876 3.654 4.505a.75.75 0 1 1-1.165.945l-3.371-4.157-.508.744c-.116.17-.31.455-.608.665a2.25 2.25 0 0 1-3-.372l-.005-.007-.915-1.114-3.29 4.305a.75.75 0 0 1-1.192-.911l3.462-4.53.045-.053L3.14 4.467A5.24 5.24 0 0 0 1.25 8.5v7c0 2.9 2.35 5.25 5.25 5.25h11c2.9 0 5.25-2.35 5.25-5.25v-7a5.25 5.25 0 0 0-2.55-4.503" }), /*#__PURE__*/React.createElement("path", { d: "m4.43 3.674 7.144 8.706a.75.75 0 0 0 .994.12c.05-.037.11-.105.238-.292l6-8.794A5.3 5.3 0 0 0 17.5 3.25h-11c-.735 0-1.435.152-2.07.424" })); const ForwardRef = forwardRef(EmailIcon); module.exports = ForwardRef;