"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 NomadIconWhite(_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 : 44,
    height: props.height ? props.height : props.width ? props.width / 1 : 44,
    viewBox: "0 0 44 44",
    fill: "none",
    role: "presentation"
  }, props), title ? _react["default"].createElement("title", null, title) : null, _react["default"].createElement("path", {
    d: "M21.67 4.184L5.95 13.264l10.607 6.228 2.143-1.308 5.213 2.91V15.05l4.995-3v6.053l8.739-4.846v-.021L21.669 4.184z",
    fill: props.color || '#fff'
  }), _react["default"].createElement("path", {
    d: "M28.91 18.104v6.01l-4.182 2.416-2.925-1.814v15.686l.08.005 15.765-9.058v-18.09h-.292l-8.447 4.845zM19.69 23.514v6.032l-4.755 3.016v-12.07l1.803-1.111-10.691-6.123-.096.006v18.085l15.851 9.053V24.716l-2.111-1.202z",
    fill: props.color || '#fff'
  }));
}

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