react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.03 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 FaThumbTack = (function (_React$Component) {
_inherits(FaThumbTack, _React$Component);
function FaThumbTack() {
_classCallCheck(this, FaThumbTack);
_React$Component.apply(this, arguments);
}
FaThumbTack.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1183.1139 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm480 864v-448q0-14-9-23t-23-9-23 9-9 23v448q0 14 9 23t23 9 23-9 9-23z m672 352q0 26-19 45t-45 19h-429l-51 483q-2 12-10.5 20.5t-20.5 8.5h-1q-27 0-32-27l-76-485h-404q-26 0-45-19t-19-45q0-123 78.5-221.5t177.5-98.5v-512q-52 0-90-38t-38-90 38-90 90-38h640q52 0 90 38t38 90-38 90-90 38v512q99 0 177.5 98.5t78.5 221.5z' })
)
);
};
return FaThumbTack;
})(React.Component);
exports['default'] = FaThumbTack;
module.exports = exports['default'];