Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / components / atoms / Icons / LocationAddIcon / LocationAddIcon.js
Size: Mime:
"use strict";

var __importDefault = this && this.__importDefault || function (mod) {
  return mod && mod.__esModule ? mod : {
    "default": mod
  };
};

Object.defineProperty(exports, "__esModule", {
  value: true
});

const react_1 = __importDefault(require("react"));

const Vector_1 = __importDefault(require("../../Vector"));

const wording = {
  description: 'accompanied in the bottom right by a plus sign, signifying "add" action',
  title: 'Location Add Icon'
};

class LocationAddIcon extends react_1.default.PureComponent {
  render() {
    return react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording), react_1.default.createElement("g", null, react_1.default.createElement("circle", {
      cx: "15.5",
      cy: "15.84",
      r: "5.5"
    }), react_1.default.createElement("path", {
      d: "M26.12 27.17C28.33 23.29 30 19.26 30 15.5a14.5 14.5 0 0 0-29 0c0 11.14 14.5 24.59 14.5 29.34 0-1.67 1.77-4.43 4.09-7.77"
    }), react_1.default.createElement("circle", {
      cx: "28.5",
      cy: "35.84",
      r: "9"
    }), react_1.default.createElement("path", {
      d: "M28.88 32.15v8m4-4h-8"
    })));
  }

}

LocationAddIcon.defaultProps = {
  width: '39px',
  height: '46px',
  viewBox: '0 0 39 46',
  stroke: '#000000',
  fill: 'none'
};
exports.LocationAddIcon = LocationAddIcon;
exports.default = LocationAddIcon; //# sourceMappingURL=LocationAddIcon.js.map