"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 HashicorpIconWhite(_ref) {
  var title = _ref.title,
      props = _objectWithoutProperties(_ref, ["title"]);

  return _react["default"].createElement("svg", _extends({
    width: props.width ? props.width : props.height ? 0.9230769230769231 * props.height : 36,
    height: props.height ? props.height : props.width ? props.width / 0.9230769230769231 : 39,
    viewBox: "0 0 36 39",
    fill: "none",
    role: "presentation"
  }, props), title ? _react["default"].createElement("title", null, title) : null, _react["default"].createElement("path", {
    d: "M.18 9.335L14.841.875v6.356l-9.154 5.284v20.318L.18 29.653V9.334z",
    fill: props.color || '#fff'
  }), _react["default"].createElement("path", {
    d: "M20.696.876v16.181h-5.854v-6.039l-5.509 3.18V34.93l5.509 3.188V21.983h5.854v6l5.508-3.182V4.057L20.696.876z",
    fill: props.color || '#fff'
  }), _react["default"].createElement("path", {
    d: "M35.358 29.665l-14.662 8.46v-6.356l9.153-5.285V6.167l5.51 3.18v20.318z",
    fill: props.color || '#fff'
  }));
}

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