react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 1.93 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 FaSendO = (function (_React$Component) {
_inherits(FaSendO, _React$Component);
function FaSendO() {
_classCallCheck(this, FaSendO);
_React$Component.apply(this, arguments);
}
FaSendO.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1792.003 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm1764.003 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-527-215-298 327q-18 21-47 21-14 0-23-4-19-7-30-23.5t-11-36.5v-452l-472-193q-37-14-40-55-3-39 32-59l1664-960q35-21 68 2z m-342 1499l221-1323-1434 827 336 137 863-639-478 797z' })
)
);
};
return FaSendO;
})(React.Component);
exports['default'] = FaSendO;
module.exports = exports['default'];