react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 1.97 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 FaYahoo = (function (_React$Component) {
_inherits(FaYahoo, _React$Component);
function FaYahoo() {
_classCallCheck(this, FaYahoo);
_React$Component.apply(this, arguments);
}
FaYahoo.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1536 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm859 957l13 707q-62-11-105-11-41 0-105 11l13-707q-40-69-168.5-295.5t-216.5-374.5-181-287q58 15 108 15 43 0 111-15 63 111 133.5 229.5t167 276.5 138.5 227q37-61 109.5-177.5t117.5-190 105-176 107-189.5q54 14 107 14 56 0 114-14v0q-28 39-60 88.5t-49.5 78.5-56.5 96-49 84q-146 248-353 610z' })
)
);
};
return FaYahoo;
})(React.Component);
exports['default'] = FaYahoo;
module.exports = exports['default'];