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 / LocationRemoveIcon / LocationRemoveIcon.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 minus sign, signifying "remove" action',
  title: 'Location Remove Icon'
};

class LocationRemoveIcon extends react_1.default.PureComponent {
  render() {
    return react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording, {
      fill: "none"
    }), 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: "M32.5 37.15h-8"
    })));
  }

}

LocationRemoveIcon.defaultProps = {
  width: '38.5px',
  height: '45.84px',
  viewBox: '0 0 38.5 45.84',
  fill: 'none',
  stroke: '#000000',
  strokeWidth: '2px'
};
exports.LocationRemoveIcon = LocationRemoveIcon;
exports.default = LocationRemoveIcon; //# sourceMappingURL=LocationRemoveIcon.js.map