react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.29 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 FaStethoscope = (function (_React$Component) {
_inherits(FaStethoscope, _React$Component);
function FaStethoscope() {
_classCallCheck(this, FaStethoscope);
_React$Component.apply(this, arguments);
}
FaStethoscope.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1408 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm1280 704q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45z m128 0q0 62-35.5 111t-92.5 70v395q0 159-131.5 271.5t-316.5 112.5-316.5-112.5-131.5-271.5v-132q-164-20-274-128t-110-252v-512q0-26 19-45t45-19q6 0 16 2 17-30 47-48t65-18q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5q-33 0-64-18v402q0 106 94 181t226 75 226-75 94-181v-402q-31 18-64 18-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5q35 0 65 18t47 48q10-2 16-2 26 0 45 19t19 45v512q0 144-110 252t-274 128v132q0 106 94 181t226 75 226-75 94-181v-395q-57-21-92.5-70t-35.5-111q0-80 56-136t136-56 136 56 56 136z' })
)
);
};
return FaStethoscope;
})(React.Component);
exports['default'] = FaStethoscope;
module.exports = exports['default'];