react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.22 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 FaTrophy = (function (_React$Component) {
_inherits(FaTrophy, _React$Component);
function FaTrophy() {
_classCallCheck(this, FaTrophy);
_React$Component.apply(this, arguments);
}
FaTrophy.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1664 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm458 883q-74-162-74-371h-256v96q0 78 94.5 162t235.5 113z m1078-275v-96h-256q0 209-74 371 141-29 235.5-113t94.5-162z m128-128v128q0 71-41.5 143t-112 130-173 97.5-215.5 44.5q-42 54-95 95-38 34-52.5 72.5t-14.5 89.5q0 54 30.5 91t97.5 37q75 0 133.5 45.5t58.5 114.5v64q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-64q0-69 58.5-114.5t133.5-45.5q67 0 97.5-37t30.5-91q0-51-14.5-89.5t-52.5-72.5q-53-41-95-95-113-5-215.5-44.5t-173-97.5-112-130-41.5-143v-128q0-40 28-68t68-28h288v-96q0-66 47-113t113-47h576q66 0 113 47t47 113v96h288q40 0 68 28t28 68z' })
)
);
};
return FaTrophy;
})(React.Component);
exports['default'] = FaTrophy;
module.exports = exports['default'];