@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
47 lines • 3.43 kB
JavaScript
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 IconPersonSimpleHike = 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.186 7.862a3.375 3.375 0 1 0 0-6.75 3.375 3.375 0 0 0 0 6.75m0-4.5a1.125 1.125 0 1 1 0 2.25 1.125 1.125 0 0 1 0-2.25m4.875 10.125v8.25a1.125 1.125 0 0 1-2.25 0V14.54c-2.336-.316-3.182-1.621-3.88-2.697-.145-.224-.285-.441-.437-.645l-.895 2.063 3.243 2.309a1.12 1.12 0 0 1 .469.916v5.25a1.125 1.125 0 0 1-2.25 0v-4.672l-2.379-1.699-2.965 6.819a1.124 1.124 0 1 1-2.062-.897l5.392-12.404a1.125 1.125 0 0 1 1.545-.553q.447.232.829.562c.636.552 1.04 1.175 1.396 1.724.707 1.089 1.131 1.745 3.119 1.745a1.125 1.125 0 0 1 1.125 1.125m-13.069.926-2.375-1.02a1.125 1.125 0 0 1-.587-1.475l2.25-5.25a1.125 1.125 0 0 1 1.474-.587l2.401 1.03a1.124 1.124 0 1 1-.886 2.063L7.901 8.59l-1.363 3.182 1.34.574a1.127 1.127 0 0 1 .351 1.845 1.125 1.125 0 0 1-1.237.223"
}));
}
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.187 7.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0-4.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m4.5 10.5v8.25a.75.75 0 1 1-1.5 0v-7.532c-2.414-.21-3.22-1.455-3.937-2.565-.267-.411-.521-.803-.856-1.143l-1.256 2.89 3.487 2.49a.75.75 0 0 1 .312.611v5.25a.75.75 0 1 1-1.5 0v-4.864l-2.912-2.081-3.15 7.244A.75.75 0 0 1 7 21.451l5.393-12.404a.75.75 0 0 1 1.03-.368q.406.212.75.513c.598.518.986 1.117 1.328 1.646.72 1.11 1.24 1.912 3.432 1.912a.75.75 0 0 1 .754.75m-12 .75a.75.75 0 0 0 .69-.455l2.25-5.25a.75.75 0 0 0-.394-.984L7.608 6.436a.75.75 0 0 0-.985.394l-2.25 5.25a.75.75 0 0 0 .394.984l2.625 1.125a.8.8 0 0 0 .295.061m-1.64-2.269 1.66-3.872 1.246.535-1.66 3.87z"
}));
};
IconPersonSimpleHike.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 { IconPersonSimpleHike as default };
IconPersonSimpleHike;