@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.38 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function MailOpen({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "MailOpen",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6.146 7.737a1 1 0 0 0-1.292 1.526l6.5 5.5a1 1 0 0 0 1.292 0l6.5-5.5a1 1 0 1 0-1.292-1.526L12 12.69 6.146 7.737Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.67.217a1.5 1.5 0 0 0-1.34 0l-9.5 4.75A1.5 1.5 0 0 0 1 6.31V19.5A1.5 1.5 0 0 0 2.5 21h19a1.5 1.5 0 0 0 1.5-1.5V6.309a1.5 1.5 0 0 0-.83-1.342l-9.5-4.75ZM3 6.618l9-4.5 9 4.5V19H3V6.618Z",
shapeRendering: "geometricPrecision"
}));
}
MailOpen.displayName = 'MailOpen';
export default createBaseComponent(MailOpen);