react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.13 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 FaObjectGroup = (function (_React$Component) {
_inherits(FaObjectGroup, _React$Component);
function FaObjectGroup() {
_classCallCheck(this, FaObjectGroup);
_React$Component.apply(this, arguments);
}
FaObjectGroup.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 2048 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm2048 384h-128v1024h128v384h-384v-128h-1280v128h-384v-384h128v-1024h-128v-384h384v128h1280v-128h384v384z m-256-256v128h128v-128h-128z m-1664 0v128h128v-128h-128z m128 1536v-128h-128v128h128z m1408-128v-128h128v-1024h-128v-128h-1280v128h-128v1024h128v128h1280z m256 128v-128h-128v128h128z m-640-1024h384v768h-896v-256h-384v-768h896v256z m-768 384h640v-512h-640v512z m1024 256v-512h-256v384h-384v128h640z' })
)
);
};
return FaObjectGroup;
})(React.Component);
exports['default'] = FaObjectGroup;
module.exports = exports['default'];