"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 ConsulIconWhite(_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", {
    fillRule: "evenodd",
    clipRule: "evenodd",
    d: "M21.614 25.888a3.638 3.638 0 113.633-3.643 3.628 3.628 0 01-3.633 3.643zM28.695 23.926a1.68 1.68 0 111.68-1.676 1.672 1.672 0 01-1.68 1.676M34.834 25.51a1.628 1.628 0 11.032-.132c0 .037 0 .08-.032.133zM33.647 21.186a1.681 1.681 0 111.245-2.016c.042.216.042.439 0 .655a1.597 1.597 0 01-1.26 1.361M39.614 25.325a1.558 1.558 0 11.032-.155.466.466 0 00-.032.154M38.247 21.112a1.648 1.648 0 111.399-1.495 1.676 1.676 0 01-1.4 1.495M37.078 31.133a1.702 1.702 0 11.208-.691 1.49 1.49 0 01-.208.691M36.47 15.719a1.68 1.68 0 11.644-2.293c.172.294.243.636.202.973a1.676 1.676 0 01-.846 1.32",
    fill: props.color || '#fff'
  }), _react["default"].createElement("path", {
    d: "M21.678 39.154a16.86 16.86 0 1110.266-30.26l-2.059 2.66a13.478 13.478 0 100 21.42l2.059 2.718a16.707 16.707 0 01-10.266 3.462z",
    fill: props.color || '#fff'
  }));
}

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