react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.1 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 FaMicrophone = (function (_React$Component) {
_inherits(FaMicrophone, _React$Component);
function FaMicrophone() {
_classCallCheck(this, FaMicrophone);
_React$Component.apply(this, arguments);
}
FaMicrophone.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1246.5988 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm1152 704v128q0 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-217-24-364.5-187.5t-147.5-384.5v-128q0-26 19-45t45-19 45 19 19 45v128q0 185 131.5 316.5t316.5 131.5 316.5-131.5 131.5-316.5v-128q0-26 19-45t45-19 45 19 19 45z m-256-384v512q0 132-94 226t-226 94-226-94-94-226v-512q0-132 94-226t226-94 226 94 94 226z' })
)
);
};
return FaMicrophone;
})(React.Component);
exports['default'] = FaMicrophone;
module.exports = exports['default'];