@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
26 lines (23 loc) • 1.32 kB
JavaScript
function _extends() { _extends = Object.assign || 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 PropTypes from "prop-types";
const SvgIconFax = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
viewBox: "0 0 20 18",
"aria-hidden": "true"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M16.667 8.182V4.934C16.667 3.97 13.222 0 11.94 0H3.333v8.182H0V18h20V8.182zm-4.168 1.852l-.773.402c-2.089 1.013-5.653-5.54-3.622-6.661l.78-.408 1.089 2.009-.771.403c-.612.349.811 2.972 1.439 2.649l.771-.401zM15 12.273H5V1.636h6.39c1.156 0 1.279 2.097.902 2.762C13.099 4.181 15 4.309 15 5.403z"
}));
};
SvgIconFax.propTypes = process.env.NODE_ENV !== "production" ? {
title: PropTypes.string,
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
className: PropTypes.string,
fill: PropTypes.string,
label: PropTypes.string
} : {};
export default SvgIconFax;