"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 TwitterWhite(_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", {
    d: "M14.039 33.054c12.125 0 18.757-10.045 18.757-18.757 0-.285 0-.57-.019-.852a13.414 13.414 0 003.289-3.412c-1.203.533-2.48.882-3.786 1.037a6.615 6.615 0 002.898-3.647 13.212 13.212 0 01-4.186 1.6 6.599 6.599 0 00-11.235 6.013A18.717 18.717 0 016.17 8.148a6.597 6.597 0 002.041 8.8 6.544 6.544 0 01-2.992-.825v.084a6.595 6.595 0 005.29 6.462 6.581 6.581 0 01-2.977.113 6.6 6.6 0 006.159 4.579 13.228 13.228 0 01-9.757 2.732 18.663 18.663 0 0010.105 2.956",
    fill: props.color || '#fff'
  }));
}

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