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 FaMicrophoneSlash = (function (_React$Component) {
_inherits(FaMicrophoneSlash, _React$Component);
function FaMicrophoneSlash() {
_classCallCheck(this, FaMicrophoneSlash);
_React$Component.apply(this, arguments);
}
FaMicrophoneSlash.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: 'm271 945l-101 101q-42-103-42-214v-128q0-26 19-45t45-19 45 19 19 45v128q0 53 15 113z m1114-602l-361 361v128q0 132-94 226t-226 94q-55 0-109-19l-96 96q97 51 205 51 185 0 316.5-131.5t131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 221-147.5 384.5t-364.5 187.5v132h256q26 0 45 19t19 45-19 45-45 19h-640q-26 0-45-19t-19-45 19-45 45-19h256v-132q-125-13-235-81l-254 254q-10 10-23 10t-23-10l-82-82q-10-10-10-23t10-23l1234-1234q10-10 23-10t23 10l82 82q10 10 10 23t-10 23z m-380-132l-621 621v-512q0-132 94-226t226-94q102 0 184.5 59t116.5 152z' })
)
);
};
return FaMicrophoneSlash;
})(React.Component);
exports['default'] = FaMicrophoneSlash;
module.exports = exports['default'];