UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

47 lines 2.73 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 IconWaitTime = 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: "M12.625 7.5v3.864l3.203 1.921a1.126 1.126 0 1 1-1.156 1.93l-3.75-2.25a1.13 1.13 0 0 1-.547-.965V7.5a1.125 1.125 0 1 1 2.25 0M11.5 2.625a9.32 9.32 0 0 0-6.634 2.75c-.44.445-.843.88-1.241 1.313V6a1.125 1.125 0 0 0-2.25 0v3.75A1.125 1.125 0 0 0 2.5 10.875h3.75a1.125 1.125 0 1 0 0-2.25H4.916a36 36 0 0 1 1.546-1.663A7.125 7.125 0 1 1 6.61 17.18a1.125 1.125 0 1 0-1.545 1.636A9.375 9.375 0 1 0 11.5 2.625" })); } 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: "M12.75 7.5v4.075l3.386 2.032a.75.75 0 0 1-.772 1.286l-3.75-2.25A.75.75 0 0 1 11.25 12V7.5a.75.75 0 1 1 1.5 0M12 3a8.95 8.95 0 0 0-6.367 2.64A39 39 0 0 0 3.75 7.687V6a.75.75 0 0 0-1.5 0v3.75a.75.75 0 0 0 .75.75h3.75a.75.75 0 1 0 0-1.5H4.594c.67-.79 1.338-1.533 2.099-2.303a7.5 7.5 0 1 1 .155 10.757.752.752 0 0 0-1.03 1.092A9 9 0 1 0 12 3" })); }; IconWaitTime.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 { IconWaitTime as default }; IconWaitTime;