react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 1.92 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 FaDropbox = (function (_React$Component) {
_inherits(FaDropbox, _React$Component);
function FaDropbox() {
_classCallCheck(this, FaDropbox);
_React$Component.apply(this, arguments);
}
FaDropbox.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1792 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm402 707l494 305-342 285-490-319z m986 555v108l-490 293v1l-1-1-1 1v-1l-489-293v-108l147 96 342-284v-2l1 1 1-1v2l343 284z m-834-1144l342 285-494 304-338-270z m836 589l338 271-489 319-343-285z m-151-589l489 319-338 270-494-304z' })
)
);
};
return FaDropbox;
})(React.Component);
exports['default'] = FaDropbox;
module.exports = exports['default'];