beehively-icons
Version:
Beehively App Icon Set
29 lines • 2.79 kB
JavaScript
var _excluded = ["color", "size"];
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
var Hourglass = /*#__PURE__*/forwardRef(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 24 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
viewBox: "0 0 24 24",
fill: color
}, rest), /*#__PURE__*/React.createElement("path", {
d: "m17 24h-9.995a4.02 4.02 0 0 1 -3.045-1.4 3.945 3.945 0 0 1 -.916-3.158 12.517 12.517 0 0 1 4.401-7.442 12.517 12.517 0 0 1 -4.4-7.444 3.945 3.945 0 0 1 .915-3.156 4.02 4.02 0 0 1 3.045-1.4h9.995a4.017 4.017 0 0 1 3.044 1.4 3.943 3.943 0 0 1 .918 3.155 12.556 12.556 0 0 1 -4.411 7.445 12.557 12.557 0 0 1 4.406 7.448 3.944 3.944 0 0 1 -.918 3.156 4.017 4.017 0 0 1 -3.039 1.396zm0-22h-9.995a2.014 2.014 0 0 0 -1.528.7 1.917 1.917 0 0 0 -.455 1.556c.375 2.5 1.922 4.84 4.6 6.957a1 1 0 0 1 0 1.568c-2.678 2.119-4.222 4.461-4.6 6.96a1.917 1.917 0 0 0 .455 1.559 2.014 2.014 0 0 0 1.528.7h9.995a2.014 2.014 0 0 0 1.528-.7 1.917 1.917 0 0 0 .456-1.554c-.373-2.487-1.92-4.829-4.6-6.962a1 1 0 0 1 0-1.564c2.681-2.133 4.228-4.475 4.6-6.963a1.916 1.916 0 0 0 -.461-1.557 2.014 2.014 0 0 0 -1.523-.7z"
}));
});
Hourglass.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
Hourglass.displayName = 'Hourglass';
export default Hourglass;