react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.46 kB
JavaScript
;
exports.__esModule = true;
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var React = require('react');
var IconBase = require('../IconBase');
var FaGoogle = (function (_React$Component) {
_inherits(FaGoogle, _React$Component);
function FaGoogle() {
_classCallCheck(this, FaGoogle);
_React$Component.apply(this, arguments);
}
FaGoogle.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1280 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm981 1339q0-25-7-49t-14.5-42-27-41.5-29.5-35-38.5-34.5-36.5-29-41.5-30-36.5-26q-16-2-49-2-53 0-104.5 7t-107 25-97 46-68.5 74.5-27 105.5q0 56 23.5 102t61 75.5 87 50 100 29 101.5 8.5q58 0 111.5-13t99-39 73-73 27.5-109z m-117-858q0-59-17-125.5t-48-129-84-103.5-117-41q-42 0-82.5 19.5t-66.5 52.5q-46 59-46 160 0 46 10 97.5t31.5 103 52 92.5 75 67 96.5 26q37 0 77.5-16.5t65.5-43.5q53-56 53-159z m-112-481h417l-137 88h-132q75 63 113 133t38 160q0 72-24.5 129.5t-59.5 93-69.5 65-59 61.5-24.5 66q0 36 32 70.5t77 68 90.5 73.5 77.5 104 32 142q0 91-49 173-71 122-209.5 179.5t-298.5 57.5q-132 0-246.5-41.5t-172.5-137.5q-36-59-36-131 0-81 44.5-150t118.5-115q131-82 404-100-32-41-47.5-73.5t-15.5-73.5q0-40 21-85-46 4-68 4-148 0-249.5-96.5t-101.5-244.5q0-82 36-159t99-131q76-66 182-98t218-32z' })
)
);
};
return FaGoogle;
})(React.Component);
exports['default'] = FaGoogle;
module.exports = exports['default'];