UNPKG

beehively-icons

Version:
29 lines 2.79 kB
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 LampDesk = /*#__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: "m15.059,13.988c.084.009-.083,0,0,0h0Zm7.207-5.91l-.834.834c.809.982.755,2.437-.163,3.355s-2.373.973-3.355.163l-.835.835c-.473.474-1.077.722-2.019.722-.75-.074-1.42-.477-1.837-1.104l-3.077-4.615-1.68,1.68c-.944.944-1.465,2.2-1.465,3.536v8.515h4c.553,0,1,.447,1,1s-.447,1-1,1H1c-.553,0-1-.447-1-1s.447-1,1-1h4v-8.515c0-1.87.729-3.628,2.051-4.95l2.157-2.157c-.388-1.393-.193-2.877.594-4.08.75-1.146,1.894-1.926,3.219-2.197,1.321-.271,2.672-.007,3.798.743l5.065,3.378c.627.417,1.029,1.086,1.104,1.836.075.75-.188,1.486-.722,2.02Zm-1.269-1.821c-.009-.089-.049-.255-.222-.369l-5.066-3.379c-.504-.336-1.082-.51-1.674-.51-.204,0-.41.021-.614.062-.799.163-1.49.637-1.945,1.333-.646.985-.599,2.368.117,3.441l3.293,4.939c.115.174.281.214.37.223.089.011.261.002.406-.146l5.189-5.188c.147-.147.154-.318.146-.407Z" })); }); LampDesk.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; LampDesk.displayName = 'LampDesk'; export default LampDesk;