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 / SocialIcon / GoogleIcon / GoogleIcon.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 deps_1 = require("../../deps");

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

const wording = {
  title: 'Google Icon',
  description: 'G icon representing google + (plus)'
};

class GoogleIcon extends react_1.default.PureComponent {
  render() {
    const identifier = deps_1.fromPropsToIdentifier(this.props);
    return react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording, {
      vectorClassName: 'googleicon',
      namespace: identifier
    }), react_1.default.createElement("g", null, react_1.default.createElement("polygon", {
      points: "448,224 448,160 416,160 416,224 352,224 352,256 416,256 416,320 448,320 448,256 512,256 512,224"
    })), react_1.default.createElement("g", null, react_1.default.createElement("path", {
      d: "M160,224v64h90.528c-13.216,37.248-48.8,64-90.528,64c-52.928,0-96-43.072-96-96c0-52.928,43.072-96,96-96 c22.944,0,45.024,8.224,62.176,23.168l42.048-48.256C235.424,109.824,198.432,96,160,96C71.776,96,0,167.776,0,256 s71.776,160,160,160s160-71.776,160-160v-32H160z"
    })));
  }

}

GoogleIcon.defaultProps = {
  width: '75px',
  height: '75px',
  viewBox: '0 0 512 512'
};
exports.GoogleIcon = GoogleIcon;
exports.default = GoogleIcon; //# sourceMappingURL=GoogleIcon.js.map