react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.16 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 FaCar = (function (_React$Component) {
_inherits(FaCar, _React$Component);
function FaCar() {
_classCallCheck(this, FaCar);
_React$Component.apply(this, arguments);
}
FaCar.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: 'm480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113z m36-320h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5z m1372 320q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113z m160-96v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z' })
)
);
};
return FaCar;
})(React.Component);
exports['default'] = FaCar;
module.exports = exports['default'];