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 / dist / components / atoms / Icons / SeparatorIcon / SeparatorIcon.js
Size: Mime:
"use strict";

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

const tslib_1 = require("tslib");

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

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

const wording = {
  description: 'a vertical line which is used as separator',
  title: 'Separator Pipe Icon'
};

class SeparatorIcon 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("path", {
      d: "M1 0h1v15H1z"
    })));
  }

}

SeparatorIcon.defaultProps = {
  width: '3px',
  height: '15px',
  viewBox: '0 0 3 15',
  fill: '#000000'
};
exports.SeparatorIcon = SeparatorIcon;
exports.default = SeparatorIcon; //# sourceMappingURL=SeparatorIcon.js.map