optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.6 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const MailIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "mail",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10.54 2.61a115.99 115.99 0 0 1 4.384.027l1.108.03c1.053.033 1.95.083 2.708.214 1.049.183 1.918.537 2.653 1.275l.133.14c.642.702.962 1.515 1.13 2.484.173.99.196 2.22.228 3.725l.013.748c.005.498.005.996 0 1.495l-.013.748c-.032 1.505-.055 2.734-.227 3.725-.169.969-.49 1.782-1.131 2.485l-.133.14c-.735.737-1.604 1.09-2.653 1.274-.757.131-1.655.18-2.708.213l-1.108.03c-1.466.038-2.922.047-4.384.028l-1.463-.027c-1.548-.04-2.807-.069-3.816-.244-.984-.172-1.809-.494-2.514-1.141l-.14-.134c-.73-.734-1.083-1.59-1.263-2.624-.129-.743-.175-1.621-.203-2.648l-.024-1.077a70.025 70.025 0 0 1 0-2.99l.024-1.078c.028-1.027.074-1.905.203-2.648.18-1.034.532-1.89 1.264-2.624l.14-.134c.704-.647 1.53-.97 2.513-1.14 1.01-.176 2.268-.206 3.816-.245l1.463-.027Zm4.99 8.09c-1.297.735-2.377 1.2-3.53 1.2-1.01 0-1.963-.355-3.054-.937l-.477-.262-5.426-3.075c-.054.511-.081 1.11-.101 1.836l-.026 1.082c-.02.973-.02 1.94 0 2.912l.026 1.083c.028.997.068 1.754.176 2.374.135.782.366 1.26.765 1.662l.152.141c.37.313.829.507 1.535.63.847.148 1.95.178 3.551.218l1.442.027c1.438.018 2.872.01 4.316-.027l1.112-.03c1.025-.033 1.804-.077 2.44-.188.807-.14 1.29-.374 1.686-.771l.143-.155c.313-.37.504-.823.623-1.507.143-.826.168-1.897.201-3.457l.012-.728c.005-.485.005-.97 0-1.455l-.012-.729c-.026-1.242-.05-2.174-.13-2.919l-5.424 3.076Zm-4.967-6.29-1.442.027c-1.6.04-2.704.07-3.551.218-.707.123-1.166.317-1.535.63l-.152.141a2.396 2.396 0 0 0-.334.418l5.807 3.29.446.245c.988.524 1.62.721 2.197.721.66 0 1.393-.257 2.644-.966l5.808-3.292a2.318 2.318 0 0 0-.19-.261l-.143-.155c-.396-.397-.88-.63-1.687-.771-.636-.11-1.415-.155-2.44-.188l-1.112-.03a114.208 114.208 0 0 0-4.316-.027Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default MailIcon;