UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

47 lines 3.1 kB
const _excluded = ["bold", "width", "height"]; function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; } import React from "react"; import PropTypes from "prop-types"; const IconPersonSimpleBike = props => { const _props$bold = props.bold, bold = _props$bold === void 0 ? true : _props$bold, _props$width = props.width, width = _props$width === void 0 ? "24px" : _props$width, _props$height = props.height, height = _props$height === void 0 ? "24px" : _props$height, restProps = _objectWithoutPropertiesLoose(props, _excluded); if (bold) { return /*#__PURE__*/React.createElement("svg", _extends({ viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", "aria-hidden": "true", fill: "currentColor", width: width, height: height }, restProps), /*#__PURE__*/React.createElement("path", { d: "M15.75 8.625a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0-3.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m3.375 9a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5m0 5.25a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3M5.062 13.502a3.937 3.937 0 1 0 0 7.874 3.937 3.937 0 0 0 0-7.874m0 5.624a1.688 1.688 0 1 1 0-3.375 1.688 1.688 0 0 1 0 3.375m12.563-6.374H14.25a1.13 1.13 0 0 1-.796-.33L11.25 10.22l-1.406 1.407 2.955 2.954c.21.211.327.497.326.796v4.5a1.125 1.125 0 1 1-2.25 0v-4.032l-3.421-3.423a1.125 1.125 0 0 1 0-1.593l3-3a1.124 1.124 0 0 1 1.594 0l2.67 2.673h2.907a1.125 1.125 0 1 1 0 2.25" })); } return /*#__PURE__*/React.createElement("svg", _extends({ viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", "aria-hidden": "true", fill: "currentColor", width: width, height: height }, restProps), /*#__PURE__*/React.createElement("path", { d: "M15.375 8.25a2.625 2.625 0 1 0 0-5.25 2.625 2.625 0 0 0 0 5.25m0-3.75a1.125 1.125 0 1 1 0 2.25 1.125 1.125 0 0 1 0-2.25m3.375 9a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5m0 6a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5m-13.5-6a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5m0 6a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5M18 12h-3.75a.75.75 0 0 1-.53-.22l-2.47-2.47-1.94 1.94 3.22 3.22a.75.75 0 0 1 .22.53v4.5a.75.75 0 1 1-1.5 0v-4.19l-3.53-3.53a.75.75 0 0 1 0-1.06l3-3a.75.75 0 0 1 1.06 0l2.78 2.78H18a.75.75 0 1 1 0 1.5" })); }; IconPersonSimpleBike.propTypes = process.env.NODE_ENV !== "production" ? { bold: PropTypes.bool, width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), className: PropTypes.string, fill: PropTypes.string, 'aria-hidden': PropTypes.bool, 'aria-label': PropTypes.string } : {}; export { IconPersonSimpleBike as default }; IconPersonSimpleBike;