"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 GithubBlack(_ref) {
  var title = _ref.title,
      props = _objectWithoutProperties(_ref, ["title"]);

  return _react["default"].createElement("span", {
    className: "g-svg-autofix-canvas"
  }, _react["default"].createElement("canvas", {
    width: "40",
    height: "40",
    role: "presentation"
  }), _react["default"].createElement("svg", _extends({
    width: props.width ? props.width : props.height ? 1 * props.height : 40,
    height: props.height ? props.height : props.width ? props.width / 1 : 40,
    viewBox: "0 0 40 40",
    fill: "none",
    role: "presentation"
  }, props), title ? _react["default"].createElement("title", null, title) : null, _react["default"].createElement("path", {
    fillRule: "evenodd",
    clipRule: "evenodd",
    d: "M19.819 4c-9.106 0-16.5 7.111-16.5 15.89 0 7.023 4.73 12.973 11.284 15.08.82.147 1.124-.341 1.124-.77 0-.38-.01-1.376-.02-2.702-4.589.956-5.561-2.127-5.561-2.127-.75-1.834-1.834-2.321-1.834-2.321-1.499-.986.112-.966.112-.966 1.65.117 2.532 1.639 2.532 1.639 1.469 2.428 3.86 1.726 4.801 1.317.152-1.025.578-1.727 1.043-2.127-3.666-.4-7.515-1.765-7.515-7.852 0-1.736.638-3.15 1.701-4.263-.172-.4-.739-2.019.163-4.204 0 0 1.387-.43 4.537 1.629a16.586 16.586 0 014.133-.537c1.398.01 2.816.186 4.133.537 3.15-2.058 4.537-1.629 4.537-1.629.902 2.185.334 3.804.162 4.204 1.054 1.112 1.692 2.527 1.692 4.263 0 6.106-3.86 7.442-7.536 7.842.587.488 1.124 1.463 1.124 2.946 0 2.127-.02 3.834-.02 4.36 0 .43.294.917 1.134.761C31.6 32.863 36.32 26.913 36.32 19.9c0-8.789-7.394-15.9-16.5-15.9z",
    fill: props.color || '#000'
  })));
}

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