react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.07 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 FaMobile = (function (_React$Component) {
_inherits(FaMobile, _React$Component);
function FaMobile() {
_classCallCheck(this, FaMobile);
_React$Component.apply(this, arguments);
}
FaMobile.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1056.9019 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm464 1408q0-33-23.5-56.5t-56.5-23.5-56.5 23.5-23.5 56.5 23.5 56.5 56.5 23.5 56.5-23.5 23.5-56.5z m208-160v-704q0-13-9.5-22.5t-22.5-9.5h-512q-13 0-22.5 9.5t-9.5 22.5v704q0 13 9.5 22.5t22.5 9.5h512q13 0 22.5-9.5t9.5-22.5z m-192-848q0-16-16-16h-160q-16 0-16 16t16 16h160q16 0 16-16z m288-16v1024q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-1024q0-52 38-90t90-38h512q52 0 90 38t38 90z' })
)
);
};
return FaMobile;
})(React.Component);
exports['default'] = FaMobile;
module.exports = exports['default'];