metadata-based-explorer1
Version:
Box UI Elements
27 lines (25 loc) • 961 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
var IconMail = function IconMail(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? '#444444' : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 11 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 14 : _ref$width;
return React.createElement(AccessibleSVG, {
className: "icon-mail ".concat(className),
height: height,
title: title,
viewBox: "0 0 14 11",
width: width
}, React.createElement("path", {
className: "fill-color",
d: "M13 0H1C.4 0 0 .4 0 1v9c0 .6.5 1 1 1h12c.6 0 1-.4 1-1V1c0-.6-.5-1-1-1zM7 5.5L1.8 1h10.5L7 5.5zM1 1zm12 9H1V1.7l5.7 4.8.3.3.3-.3L13 1.7V10z",
fill: color
}));
};
export default IconMail;