@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
26 lines (23 loc) • 1.9 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 SvgIconWheelchair = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
"aria-hidden": "true",
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
viewBox: "0 0 31 40"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M30.33 18.136a2.345 2.345 0 00-1.82-.714l-8.22.461 4.52-5.193c.65-.74.83-1.726.58-2.607a2.35 2.35 0 00-1.05-1.505L13.53 2.244c-.88-.516-2-.402-2.76.282L5.5 7.268a2.388 2.388 0 00-.19 3.355 2.346 2.346 0 003.33.191l4-3.595 3.3 1.935-5.83 6.698c-2.42.398-4.6 1.522-6.31 3.142l3.05 3.071a7.683 7.683 0 015.21-2.033c4.27 0 7.75 3.506 7.75 7.814 0 2.02-.76 3.864-2.01 5.252l3.04 3.071a12.161 12.161 0 003.28-8.323c0-1.919-.44-3.734-1.23-5.348l3.18-.179-.77 9.571a2.368 2.368 0 002.35 2.569c1.22 0 2.25-.941 2.35-2.183l.99-12.288c.06-.685-.18-1.36-.66-1.852zm-4.37-10.18c2.18 0 3.95-1.781 3.95-3.978S28.14 0 25.96 0s-3.94 1.781-3.94 3.978 1.76 3.978 3.94 3.978zM12.06 35.66c-4.28 0-7.75-3.505-7.75-7.814 0-1.623.49-3.133 1.33-4.384l-3.08-3.104A12.185 12.185 0 000 27.846C0 34.559 5.4 40 12.06 40c2.8 0 5.38-.967 7.43-2.585l-3.08-3.104a7.667 7.667 0 01-4.35 1.349z"
}));
};
SvgIconWheelchair.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 SvgIconWheelchair;