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 / DownloadIcon / DownloadIcon.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: 'a closed square bracket tilted 90 degree clockwise and  a down arrow is placed on the top of the tilted sqaure bracket',
  title: 'Download Icon'
};

class DownloadIcon extends react_1.default.PureComponent {
  render() {
    const {
      stroke
    } = this.props;
    return react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording), react_1.default.createElement("g", {
      stroke: "none",
      strokeWidth: "1",
      fill: "none",
      fillRule: "evenodd",
      strokeLinecap: "round",
      strokeLinejoin: "round"
    }, react_1.default.createElement("g", {
      transform: "translate(-386.000000, -195.000000)",
      stroke: stroke,
      strokeWidth: "2"
    }, react_1.default.createElement("g", {
      transform: "translate(297.000000, 195.000000)"
    }, react_1.default.createElement("path", {
      d: "M108,1 L108,30"
    }), react_1.default.createElement("polyline", {
      points: "119.3137 18.6523 107.9997 29.9663 96.6867 18.6523"
    }), react_1.default.createElement("path", {
      d: "M126,27.966 L126,33.966 C126,36.175 124.209,37.966 122,37.966 L94,37.966 C91.791,37.966 90,36.175 90,33.966 L90,27.966"
    })))));
  }

}

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