react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 5.16 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 FaHeadphones = function (_React$Component) {
_inherits(FaHeadphones, _React$Component);
function FaHeadphones() {
_classCallCheck(this, FaHeadphones);
return _possibleConstructorReturn(this, Object.getPrototypeOf(FaHeadphones).apply(this, arguments));
}
_createClass(FaHeadphones, [{
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: 'm38.57142857142857 19.777142857142856q0 3.7057142857142864-1.3400000000000034 7.008571428571429l-0.4471428571428575 1.0942857142857143-4.131428571428572 0.7371428571428567q-0.4914285714285711 1.8528571428571432-2.0199999999999996 3.0471428571428554t-3.489999999999995 1.1928571428571502v0.7142857142857153q0 0.3142857142857167-0.20285714285714462 0.5142857142857125t-0.5142857142857125 0.20000000000000284h-1.428571428571427q-0.3114285714285714 0-0.5114285714285707-0.20000000000000284t-0.20000000000000284-0.5142857142857196v-12.857142857142858q0-0.3114285714285714 0.1999999999999993-0.5114285714285707t0.514285714285716-0.1999999999999993h1.428571428571427q0.3114285714285714 0 0.5114285714285707 0.1999999999999993t0.1999999999999993 0.5142857142857125v0.7142857142857153q1.5857142857142854 0 2.902857142857144 0.7914285714285718t2.0757142857142874 2.1314285714285717l1.5171428571428578-0.2671428571428578q0.6471428571428604-2.1185714285714283 0.6471428571428604-4.307142857142857 0-3.3028571428571425-1.9642857142857153-6.2285714285714295t-5.2785714285714285-4.665714285714282-7.0428571428571445-1.7428571428571429-7.042857142857143 1.7428571428571429-5.2785714285714285 4.6657142857142855-1.9642857142857144 6.2285714285714295q0 2.185714285714287 0.6471428571428568 4.307142857142857l1.5185714285714287 0.2685714285714269q0.7571428571428571-1.3399999999999999 2.0757142857142865-2.1314285714285717t2.8985714285714277-0.7957142857142827v-0.7142857142857153q0-0.3114285714285714 0.20285714285714285-0.5114285714285707t0.5142857142857142-0.1999999999999993h1.4285714285714288q0.3114285714285714 0 0.5114285714285707 0.1999999999999993t0.1999999999999993 0.514285714285716v12.857142857142861q0 0.3114285714285714-0.1999999999999993 0.5114285714285742t-0.5142857142857142 0.20000000000000284h-1.4285714285714288q-0.3114285714285714 0-0.5114285714285707-0.20000000000000284t-0.1999999999999993-0.5142857142857125v-0.7142857142857224q-1.9657142857142862 0-3.4942857142857147-1.192857142857143t-2.0199999999999996-3.047142857142859l-4.128571428571429-0.7371428571428567-0.4485714285714284-1.0942857142857143q-1.3399999999999999-3.3028571428571425-1.3399999999999999-7.008571428571429 0-3.37142857142857 1.4957142857142856-6.4957142857142856t3.9957142857142864-5.414285714285715 5.937142857142858-3.6485714285714286 7.142857142857142-1.3614285714285712 7.142857142857142 1.3614285714285712 5.937142857142856 3.6500000000000004 3.9957142857142856 5.4142857142857155 1.4942857142857164 6.494285714285716z' })
)
);
}
}]);
return FaHeadphones;
}(React.Component);
exports.default = FaHeadphones;