UNPKG

beehively-icons

Version:
29 lines 3.76 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 Feedback = /*#__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,14.494h1.5c.21,0,.398.131.47.329s.013.419-.148.554l-1.183.964.489,1.49c.067.202,0,.424-.169.553-.169.129-.4.138-.578.023l-1.377-.897-1.354.906c-.084.056-.181.084-.278.084-.106,0-.211-.033-.3-.1-.17-.127-.241-.348-.177-.55l.47-1.508-1.189-.967c-.16-.136-.218-.357-.146-.553.072-.197.26-.328.469-.328h1.5l.531-1.49c.073-.196.26-.325.469-.325s.396.13.469.325l.531,1.49Zm-4.5,0h-1.5l-.531-1.49c-.073-.196-.26-.325-.469-.325s-.396.13-.469.325l-.531,1.49h-1.5c-.21,0-.397.131-.469.328-.073.197-.014.418.146.553l1.189.967-.47,1.508c-.063.202.007.423.177.55.089.066.194.1.3.1.097,0,.194-.028.278-.084l1.354-.906,1.377.897c.178.115.409.106.578-.023.168-.13.236-.352.169-.553l-.489-1.49,1.183-.964c.161-.135.22-.357.148-.554s-.26-.329-.47-.329Zm-6,0h-1.5l-.531-1.49c-.073-.196-.26-.325-.469-.325s-.396.13-.469.325l-.531,1.49h-1.5c-.21,0-.397.131-.469.328-.073.197-.014.418.146.553l1.189.967-.47,1.508c-.063.202.007.423.177.55.089.066.194.1.3.1.097,0,.194-.028.278-.084l1.354-.906,1.377.897c.178.115.409.106.578-.023.168-.13.236-.352.169-.553l-.489-1.49,1.183-.964c.161-.135.22-.357.148-.554s-.26-.329-.47-.329Zm14.5-1.494v5c0,2.206-1.794,4-4,4h-3.862l-1.837,1.519c-.361.322-.824.484-1.292.484-.476,0-.955-.168-1.337-.507l-1.775-1.495h-3.896c-2.206,0-4-1.794-4-4v-5c0-2.206,1.794-4,4-4h14c2.206,0,4,1.794,4,4Zm-2,0c0-1.103-.897-2-2-2H6c-1.103,0-2,.897-2,2v5c0,1.103.897,2,2,2h4.262c.235,0,.464.083.645.235l2.074,1.748,2.161-1.754c.179-.148.404-.229.637-.229h4.222c1.103,0,2-.897,2-2v-5ZM2,4c0-1.103.897-2,2-2h14c1.103,0,2,.897,2,2v2c0,.552.447,1,1,1s1-.448,1-1v-2c0-2.206-1.794-4-4-4H4C1.794,0,0,1.794,0,4v4c0,.552.447,1,1,1s1-.448,1-1v-4Zm3,1c-.553,0-1,.448-1,1s.447,1,1,1h6c.553,0,1-.448,1-1s-.447-1-1-1h-6Zm10,0c-.553,0-1,.448-1,1s.447,1,1,1h2c.553,0,1-.448,1-1s-.447-1-1-1h-2Z" })); }); Feedback.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) }; Feedback.displayName = 'Feedback'; export default Feedback;