react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.24 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 FaTruck = (function (_React$Component) {
_inherits(FaTruck, _React$Component);
function FaTruck() {
_classCallCheck(this, FaTruck);
_React$Component.apply(this, arguments);
}
FaTruck.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1792 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm640 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90z m-384-512h384v-256h-158q-13 0-22 9l-195 195q-9 9-9 22v30z m1280 512q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90z m256-1088v1024q0 15-4 26.5t-13.5 18.5-16.5 11.5-23.5 6-22.5 2-25.5 0-22.5-0.5q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-64q-3 0-22.5 0.5t-25.5 0-22.5-2-23.5-6-16.5-11.5-13.5-18.5-4-26.5q0-26 19-45t45-19v-320q0-8-0.5-35t0-38 2.5-34.5 6.5-37 14-30.5 22.5-30l198-198q19-19 50.5-32t58.5-13h160v-192q0-26 19-45t45-19h1024q26 0 45 19t19 45z' })
)
);
};
return FaTruck;
})(React.Component);
exports['default'] = FaTruck;
module.exports = exports['default'];