beehively-icons
Version:
Beehively App Icon Set
29 lines • 3.01 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 Subscription = /*#__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: "m20.999,24c.02,0-.021,0,0,0h0ZM19.5,0H4.5C2.019,0,0,2.019,0,4.5v2c0,2.481,2.019,4.5,4.5,4.5h.5c.553,0,1-.448,1-1s-.447-1-1-1h-.5c-1.379,0-2.5-1.122-2.5-2.5v-2c0-1.378,1.121-2.5,2.5-2.5h15c1.379,0,2.5,1.122,2.5,2.5v2c0,1.378-1.121,2.5-2.5,2.5h-2.5c-.553,0-1,.448-1,1s.447,1,1,1h2.5c2.481,0,4.5-2.019,4.5-4.5v-2c0-2.481-2.019-4.5-4.5-4.5Zm-.737,18.552l-4.756-1.783v-4.662c0-1.516-1.076-2.834-2.504-3.066-.879-.144-1.768.103-2.439.674s-1.057,1.404-1.057,2.286v7.563l-.999-.795c-1.21-1.087-3.078-1.011-4.192.182-1.13,1.208-1.066,3.11.13,4.23l.558.538c.186.18.435.28.694.28.9,0,1.342-1.095.694-1.72l-.568-.548c-.403-.378-.424-1.013-.046-1.416.373-.399.999-.42,1.401-.055.022.021,1.781,1.423,1.781,1.423.477.38,1.113.448,1.66.186.548-.265.888-.807.888-1.415v-8.455c0-.294.129-.572.353-.762.228-.194.519-.271.822-.224.463.076.825.556.825,1.093v5.354c0,.417.259.79.648.937l5.404,2.027c1.111.416,1.873,1.45,1.942,2.633.031.532.472.942.997.942.551-.032,1.031-.507.999-1.058-.115-1.973-1.385-3.696-3.235-4.39Z"
}));
});
Subscription.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
Subscription.displayName = 'Subscription';
export default Subscription;