"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("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", {
    fillRule: "evenodd",
    clipRule: "evenodd",
    d: "M11.963.325C5.358.325 0 5.683 0 12.29c0 5.284 3.45 9.761 8.147 11.376.587.073.807-.294.807-.587v-2.055c-3.303.734-4.037-1.615-4.037-1.615-.513-1.395-1.32-1.762-1.32-1.762-1.102-.733.073-.733.073-.733 1.174.073 1.835 1.247 1.835 1.247 1.1 1.835 2.789 1.321 3.45 1.028.073-.807.44-1.321.733-1.615-2.642-.293-5.431-1.321-5.431-5.945 0-1.32.44-2.348 1.248-3.23-.074-.22-.514-1.467.146-3.082 0 0 1.028-.293 3.303 1.248.954-.294 1.982-.367 3.01-.367 1.027 0 2.054.147 3.008.367 2.276-1.541 3.303-1.248 3.303-1.248.66 1.615.22 2.863.147 3.156a4.747 4.747 0 011.248 3.23c0 4.623-2.79 5.578-5.432 5.871.44.367.808 1.101.808 2.202v3.303c0 .293.22.66.807.587A11.976 11.976 0 0024 12.289C23.927 5.683 18.569.325 11.963.325z",
    fill: "#252937"
  }));
}

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