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 / DetectionIcon / DetectionIcon.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: 'Arrow placed inside a circle shaped image',
  title: 'Detection Icon'
};

class DetectionIcon extends react_1.default.PureComponent {
  render() {
    const {
      fill,
      stroke
    } = this.props;
    return react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording), react_1.default.createElement("g", null, react_1.default.createElement("circle", {
      className: "svg-icon-detection-pieces",
      strokeWidth: "2px",
      strokeLinecap: "round",
      strokeLinejoin: "round",
      fill: "none",
      stroke: stroke,
      cx: "23",
      cy: "23",
      r: "22"
    }), react_1.default.createElement("path", {
      className: "svg-icon-detection-pieces",
      d: "M10 20l23-7-7 23-3.43-12.57L10 20z"
    })));
  }

}

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