beehively-icons
Version:
Beehively App Icon Set
29 lines • 2.94 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 Tap = /*#__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: "m22,19.279v3.721c0,.552-.447,1-1,1s-1-.448-1-1v-3.721c0-1.425-1.015-2.662-2.412-2.942l-6.784-1.357c-.467-.093-.804-.504-.804-.98v-6.893c0-.538-.362-1.018-.824-1.092-.306-.05-.596.03-.823.223-.224.19-.353.468-.353.762v13.638c0,.384-.22.734-.566.901-.344.167-.756.122-1.057-.119l-2.637-2.1c-.463-.428-1.095-.406-1.47-.004-.376.403-.355,1.039.047,1.417l1.377,1.328c.397.383.409,1.016.025,1.414-.383.397-1.016.408-1.414.025l-1.367-1.318c-1.195-1.121-1.259-3.023-.13-4.231,1.129-1.206,3.029-1.271,4.237-.144l.955.759V7c0-.881.385-1.714,1.057-2.286.671-.572,1.561-.818,2.439-.674,1.427.231,2.503,1.55,2.503,3.066v6.073l5.98,1.196c2.329.466,4.02,2.528,4.02,4.903ZM3.544,10.5c.14,0,.281-.029.417-.091.502-.23.722-.824.492-1.326-.301-.655-.453-1.356-.453-2.083,0-2.757,2.243-5,5-5s5,2.243,5,5c0,.729-.152,1.429-.452,2.083-.231.502-.011,1.096.49,1.326.505.231,1.097.011,1.326-.491.422-.917.636-1.899.636-2.917,0-3.86-3.14-7-7-7S2,3.14,2,7c0,1.017.214,1.998.635,2.917.168.367.531.583.91.583Z"
}));
});
Tap.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
Tap.displayName = 'Tap';
export default Tap;