react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.23 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 FaSupport = (function (_React$Component) {
_inherits(FaSupport, _React$Component);
function FaSupport() {
_classCallCheck(this, FaSupport);
_React$Component.apply(this, arguments);
}
FaSupport.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1792 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm896 0q182 0 348 71t286 191 191 286 71 348-71 348-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71z m0 128q-190 0-361 90l194 194q82-28 167-28t167 28l194-194q-171-90-361-90z m-678 1129l194-194q-28-82-28-167t28-167l-194-194q-90 171-90 361t90 361z m678 407q190 0 361-90l-194-194q-82 28-167 28t-167-28l-194 194q171 90 361 90z m0-384q159 0 271.5-112.5t112.5-271.5-112.5-271.5-271.5-112.5-271.5 112.5-112.5 271.5 112.5 271.5 271.5 112.5z m484-217l194 194q90-171 90-361t-90-361l-194 194q28 82 28 167t-28 167z' })
)
);
};
return FaSupport;
})(React.Component);
exports['default'] = FaSupport;
module.exports = exports['default'];