react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 1.9 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 FaSend = (function (_React$Component) {
_inherits(FaSend, _React$Component);
function FaSend() {
_classCallCheck(this, FaSend);
_React$Component.apply(this, arguments);
}
FaSend.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1792.0013 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm1764.0013 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z' })
)
);
};
return FaSend;
})(React.Component);
exports['default'] = FaSend;
module.exports = exports['default'];