@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.68 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var MailOutline = function MailOutline(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "MailOutline",
ref: ref,
width: size,
height: size,
viewBox: "0 0 16 16",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M15.5936 3.02492C15.5936 2.23901 14.9763 1.59961 14.2175 1.59961H2.01613C1.2575 1.59964 0.640278 2.23874 0.640015 3.02516V11.7738C0.640015 12.5696 1.26363 13.1996 2.0166 13.1996H14.217C14.9852 13.1996 15.5936 12.5537 15.5936 11.7738V3.02541L15.5936 3.02492ZM2.01613 2.50715H14.2175C14.4931 2.50715 14.7174 2.73945 14.7174 3.02568C14.7174 3.17778 14.6444 3.31896 14.5221 3.40342L8.39442 7.63473C8.22581 7.75116 8.00788 7.7512 7.83924 7.63473L1.71157 3.40342C1.58931 3.31905 1.51621 3.17778 1.51621 3.02492C1.51621 2.73942 1.74048 2.50715 2.01613 2.50715ZM14.217 12.2921H2.0166C1.74384 12.2921 1.51621 12.0637 1.51621 11.7738V4.35924L7.35319 8.38978C7.58514 8.54996 7.85098 8.63003 8.11681 8.63003C8.38268 8.63003 8.64855 8.54996 8.88047 8.38978L14.7174 4.35924V11.7738C14.7174 12.0563 14.4969 12.2921 14.217 12.2921Z",
fill: color
}));
};
export default MailOutline;