react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.07 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 FaMapSigns = (function (_React$Component) {
_inherits(FaMapSigns, _React$Component);
function FaMapSigns() {
_classCallCheck(this, FaMapSigns);
_React$Component.apply(this, arguments);
}
FaMapSigns.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: 'm1745 297q10 10 10 23t-10 23l-141 141q-28 28-68 28h-1344q-26 0-45-19t-19-45v-256q0-26 19-45t45-19h576v-64q0-26 19-45t45-19h128q26 0 45 19t19 45v64h512q40 0 68 28z m-977 919h256v512q0 26-19 45t-45 19h-128q-26 0-45-19t-19-45v-512z m832-448q26 0 45 19t19 45v256q0 26-19 45t-45 19h-1344q-40 0-68-28l-141-141q-10-10-10-23t10-23l141-141q28-28 68-28h512v-192h256v192h576z' })
)
);
};
return FaMapSigns;
})(React.Component);
exports['default'] = FaMapSigns;
module.exports = exports['default'];