react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.19 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 FaCubes = (function (_React$Component) {
_inherits(FaCubes, _React$Component);
function FaCubes() {
_classCallCheck(this, FaCubes);
_React$Component.apply(this, arguments);
}
FaCubes.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 2304 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm640 1632l384-192v-314l-384 164v342z m-64-454l404-173-404-173-404 173z m1088 454l384-192v-314l-384 164v342z m-64-454l404-173-404-173-404 173z m-448-293l384-165v-266l-384 164v267z m-64-379l441-189-441-189-441 189z m1088 518v416q0 36-19 67t-52 47l-448 224q-25 14-57 14t-57-14l-448-224q-5-2-7-4-2 2-7 4l-448 224q-25 14-57 14t-57-14l-448-224q-33-16-52-47t-19-67v-416q0-38 21.5-70t56.5-48l434-186v-400q0-38 21.5-70t56.5-48l448-192q23-10 50-10t50 10l448 192q35 16 56.5 48t21.5 70v400l434 186q36 16 57 48t21 70z' })
)
);
};
return FaCubes;
})(React.Component);
exports['default'] = FaCubes;
module.exports = exports['default'];