"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 JumpLinkBlack(_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: "M2.007 5.985a1 1 0 011-1h5v2h-5a1 1 0 01-1-1zM2.007 11.985a1 1 0 011-1h9.998a1 1 0 110 2H3.007a1 1 0 01-1-1zM3.007 16.985a1 1 0 000 2h8a1 1 0 100-2h-8z",
    fill: props.color || '#000'
  }), _react["default"].createElement("path", {
    d: "M14.098 6.985h-3.991v-2h3.991a5 5 0 015 5v6.81l1.409-1.374a.875.875 0 011.222 1.253l-2.63 2.567v.029h-.03l-.36.351a.875.875 0 01-1.223 0l-.358-.351h-.03v-.03l-2.624-2.567a.875.875 0 011.224-1.25l1.4 1.37V9.984a3 3 0 00-3-3z",
    fill: props.color || '#000'
  }));
}

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