react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.13 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 FaCalendarO = (function (_React$Component) {
_inherits(FaCalendarO, _React$Component);
function FaCalendarO() {
_classCallCheck(this, FaCalendarO);
_React$Component.apply(this, arguments);
}
FaCalendarO.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1672.2646 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm128 1664h1408v-1024h-1408v1024z m384-1216v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23z m768 0v-288q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v288q0 14 9 23t23 9h64q14 0 23-9t9-23z m384-64v1280q0 52-38 90t-90 38h-1408q-52 0-90-38t-38-90v-1280q0-52 38-90t90-38h128v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h384v-96q0-66 47-113t113-47h64q66 0 113 47t47 113v96h128q52 0 90 38t38 90z' })
)
);
};
return FaCalendarO;
})(React.Component);
exports['default'] = FaCalendarO;
module.exports = exports['default'];