"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 LinkedinWhite(_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 : 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: "M32.694 5H7.13c-1.223 0-2.215.969-2.215 2.162v25.673C4.915 34.03 5.907 35 7.13 35h25.564c1.223 0 2.22-.97 2.22-2.165V7.163c0-1.194-.995-2.163-2.22-2.163zm-18.88 11.248v14.317h-4.45V16.248h4.45zm-2.226-7.117a2.581 2.581 0 11-.004 5.163 2.581 2.581 0 01.004-5.163zm9.284 7.117h-4.27v14.319h4.447v-7.084c0-1.869.356-3.677 2.67-3.677 2.282 0 2.313 2.136 2.313 3.796v6.965h4.446v-7.855c0-3.856-.831-6.82-5.338-6.82-2.164 0-3.616 1.187-4.21 2.312h-.058v-1.956z",
    fill: props.color || '#fff'
  }));
}

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