UNPKG

@jfstech/icons-react

Version:

<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color

26 lines 900 B
const React = require("react"); function EmailIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m4.688 6.75 6.672 4.79c.385.277.895.277 1.28 0l6.672-4.79M5.25 19h13.5c1.243 0 2.25-1.045 2.25-2.333V7.333C21 6.045 19.993 5 18.75 5H5.25C4.007 5 3 6.045 3 7.333v9.334C3 17.955 4.007 19 5.25 19" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(EmailIcon); module.exports = ForwardRef;