@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
30 lines (27 loc) • 1.55 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 SvgIconReport = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
"aria-hidden": "true",
viewBox: "0 0 14 18",
width: "1em",
height: "1em",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M3.1 10.7h1.8v3.7H3.1zm2.8.9h1.8v2.9H5.9zm2.8-2.5h1.8v5.3H8.7z"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.7 0H0v17.8h13.7V4.5L8.7 0zm2.2 4.1H9.3V2.6l1.6 1.5zM1.4 16.3V1.5h6.4v3c0 .9.6 1.1 1 1.1h3.3v10.7H1.4z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 3h4.5v1H3zm0 2h4.5v1H3zm6.8 1.6l-1.3.3c-.1 0-.1.2-.1.2l.5.4-2.2 2.9-1.4-1.8c0-.1-.1-.1-.2-.1s-.1 0-.2.1L3.6 9.9c-.1.1-.1.3 0 .3.1.1.3.1.3 0L5 9.1l1.4 1.8c0 .1.1.1.2.1s.1 0 .2-.1l2.4-3.1.5.4c.1.1.2 0 .2-.1V6.7c.1-.1 0-.1-.1-.1z"
}));
};
SvgIconReport.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 SvgIconReport;