@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
47 lines • 3.26 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 IconPersonSimpleSki = 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: "M16.531 8.814a3 3 0 1 0 0-5.999 3 3 0 0 0 0 6m0-3.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5M2.701 7.75a1.125 1.125 0 0 1 1.395-.765l6.328 1.845.812-.81a1.124 1.124 0 0 1 1.594 0l2.67 2.67h3.281a1.125 1.125 0 1 1 0 2.25h-3.75c-.298 0-.584-.118-.795-.329l-.458-.458L3.465 9.145a1.125 1.125 0 0 1-.764-1.396m19.704 12.275a6.92 6.92 0 0 1-5.78.884L1.967 16.643a1.123 1.123 0 0 1-.616-1.813 1.125 1.125 0 0 1 1.245-.343l7.493 2.182 1.294-1.295-3.411-.979a1.126 1.126 0 0 1-.248-2.076 1.12 1.12 0 0 1 .866-.086l5.25 1.5a1.124 1.124 0 0 1 .487 1.875l-1.775 1.775 4.697 1.369a4.67 4.67 0 0 0 3.908-.6 1.126 1.126 0 0 1 1.247 1.876z"
}));
}
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: "M16.132 8.625a2.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.037 7.665a.75.75 0 0 1 .93-.51l6.54 1.908.968-.969a.75.75 0 0 1 1.06 0l2.782 2.781h3.44a.75.75 0 0 1 0 1.5h-3.75a.75.75 0 0 1-.53-.22l-.527-.53L3.544 8.591a.75.75 0 0 1-.507-.926m19.136 11.858a6.54 6.54 0 0 1-5.472.839L2.048 16.094a.752.752 0 0 1-.387-1.196.75.75 0 0 1 .806-.244l7.125 2.075 2.483-2.479-4.024-1.154a.748.748 0 0 1-.382-1.188.75.75 0 0 1 .794-.255l5.25 1.5a.75.75 0 0 1 .325 1.252l-2.803 2.803 5.886 1.714a5.04 5.04 0 0 0 4.219-.647.748.748 0 0 1 1.152.478.75.75 0 0 1-.32.77z"
}));
};
IconPersonSimpleSki.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 { IconPersonSimpleSki as default };
IconPersonSimpleSki;