react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.05 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 FaQrcode = (function (_React$Component) {
_inherits(FaQrcode, _React$Component);
function FaQrcode() {
_classCallCheck(this, FaQrcode);
_React$Component.apply(this, arguments);
}
FaQrcode.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1408 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm384 1152v128h-128v-128h128z m0-768v128h-128v-128h128z m768 0v128h-128v-128h128z m-1024 1023h384v-383h-384v383z m0-767h384v-384h-384v384z m768 0h384v-384h-384v384z m-256 256v640h-640v-640h640z m512 512v128h-128v-128h128z m256 0v128h-128v-128h128z m0-512v384h-384v-128h-128v384h-128v-640h384v128h128v-128h128z m-768-768v640h-640v-640h640z m768 0v640h-640v-640h640z' })
)
);
};
return FaQrcode;
})(React.Component);
exports['default'] = FaQrcode;
module.exports = exports['default'];