"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 VaultIconWhite(_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: "M4.754 5.484l17.128 34.383L39.137 5.484H4.754zM23.903 12.4h1.995v1.979h-1.995v-1.979zm-3.968 7.979H17.96v-2.01h1.99l-.016 2.01zm0-2.99H17.96v-2.01h1.99l-.016 2.01zm0-2.989H17.96v-2.01h1.99l-.016 2.01zm2.99 8.974H20.95v-2.016h1.99l-.017 2.016zm0-2.995H20.95v-2.01h1.99l-.017 2.01zm0-2.99H20.95v-2.01h1.99l-.017 2.01zm0-2.989H20.95v-2.01h1.99l-.017 2.01zm.978.979h1.995v1.99h-1.995v-1.99zm0 4.979v-1.99h1.99v1.99h-1.99z",
    fill: props.color || '#fff'
  }));
}

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