react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 5.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: 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; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
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('react-icon-base');
var FaBug = function (_React$Component) {
_inherits(FaBug, _React$Component);
function FaBug() {
_classCallCheck(this, FaBug);
return _possibleConstructorReturn(this, Object.getPrototypeOf(FaBug).apply(this, arguments));
}
_createClass(FaBug, [{
key: 'render',
value: function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 40 40' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm37.85714285714286 21.42857142857143q0 0.5799999999999983-0.42428571428571615 1.0042857142857144t-1.0042857142857144 0.4242857142857126h-5q0 3.8171428571428585-1.4957142857142856 6.4714285714285715l4.642857142857146 4.667142857142856q0.42428571428571615 0.42428571428571615 0.42428571428571615 1.0042857142857144t-0.42428571428571615 1.0042857142857144q-0.3999999999999986 0.42428571428571615-1.0042857142857144 0.42428571428571615t-1.0042857142857144-0.42428571428571615l-4.420000000000002-4.397142857142857q-0.1114285714285721 0.1114285714285721-0.33428571428571274 0.28999999999999915t-0.9385714285714286 0.6357142857142826-1.451428571428572 0.8142857142857167-1.8285714285714292 0.6471428571428604-2.1657142857142873 0.29142857142856826v-20h-2.8571428571428577v20q-1.138571428571428 0-2.265714285714285-0.3028571428571425t-1.942857142857143-0.7371428571428567-1.4714285714285715-0.8714285714285737-0.9714285714285715-0.7242857142857133l-0.3342857142857145-0.31428571428571317-4.085714285714285 4.62142857142857q-0.44571428571428573 0.46857142857142975-1.0714285714285712 0.46857142857142975-0.5342857142857138 0-0.9571428571428573-0.3571428571428541-0.42571428571428527-0.3999999999999986-0.4571428571428573-0.9928571428571402t0.3428571428571425-1.03857142857143l4.510000000000001-5.0671428571428585q-1.295714285714288-2.5457142857142863-1.295714285714288-6.117142857142859h-5q-0.5785714285714283 0-1.0028571428571427-0.4242857142857126t-0.4257142857142857-1 0.4257142857142857-1.0042857142857144 1.0042857142857144-0.4242857142857126h4.998571428571428v-6.565714285714289l-3.8571428571428568-3.862857142857143q-0.4285714285714288-0.4214285714285708-0.4285714285714288-1t0.42571428571428616-1.0042857142857144 1.0028571428571427-0.42714285714285616 1.0057142857142862 0.4242857142857144l3.8614285714285703 3.8614285714285703h18.84l3.8614285714285685-3.861428571428571q0.42428571428571615-0.4242857142857144 1.0042857142857144-0.4242857142857144t1.0057142857142836 0.4242857142857144 0.42428571428571615 1.0042857142857136-0.42285714285713993 1.0042857142857144l-3.865714285714283 3.862857142857143v6.562857142857142h5q0.5814285714285745 0 1.0057142857142836 0.4242857142857126t0.42428571428571615 1.0042857142857144z m-10.714285714285719-12.85714285714286h-14.285714285714285q0-2.968571428571428 2.0857142857142854-5.057142857142857t5.057142857142857-2.0857142857142854 5.057142857142857 2.0857142857142854 2.0857142857142854 5.057142857142857z' })
)
);
}
}]);
return FaBug;
}(React.Component);
exports.default = FaBug;