"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports["default"] = void 0;

var _react = _interopRequireDefault(require("react"));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }

function _extends() { _extends = Object.assign || 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; }

function DiscussionBlack(_ref) {
  var title = _ref.title,
      props = _objectWithoutProperties(_ref, ["title"]);

  return _react["default"].createElement("svg", _extends({
    width: props.width ? props.width : props.height ? 1 * props.height : 24,
    height: props.height ? props.height : props.width ? props.width / 1 : 24,
    viewBox: "0 0 24 24",
    fill: "none",
    role: "presentation"
  }, props), title ? _react["default"].createElement("title", null, title) : null, _react["default"].createElement("path", {
    d: "M8.67 18.42a7.439 7.439 0 006.203 3.327c1.09 0 2.126-.235 3.06-.656l4.164 1.406a.75.75 0 00.951-.948l-1.391-4.175a7.421 7.421 0 00.662-3.073c0-2.137-.9-4.064-2.343-5.422v.103c0 .67-.068 1.325-.199 1.956a5.918 5.918 0 011.042 3.363c0 .967-.23 1.878-.639 2.684a.75.75 0 00-.042.576l1.01 3.032-3.024-1.02a.75.75 0 00-.577.04 5.918 5.918 0 01-2.674.634c-1.61 0-3.07-.64-4.141-1.68a9.742 9.742 0 01-2.062-.147z",
    fill: props.color || '#000'
  }), _react["default"].createElement("path", {
    fillRule: "evenodd",
    clipRule: "evenodd",
    d: "M10.385 2.5A6.482 6.482 0 004.6 11.907a.75.75 0 01.043.576l-1.13 3.39 3.38-1.14a.75.75 0 01.579.04A6.482 6.482 0 1010.386 2.5zM2.403 8.982a7.982 7.982 0 114.68 7.269l-4.52 1.526a.75.75 0 01-.95-.948l1.51-4.531a7.955 7.955 0 01-.72-3.316z",
    fill: props.color || '#000'
  }));
}

var _default = DiscussionBlack;
exports["default"] = _default;