react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.71 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: 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; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
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('react-icon-base');
var FaHeartO = function (_React$Component) {
_inherits(FaHeartO, _React$Component);
function FaHeartO() {
_classCallCheck(this, FaHeartO);
return _possibleConstructorReturn(this, Object.getPrototypeOf(FaHeartO).apply(this, arguments));
}
_createClass(FaHeartO, [{
key: 'render',
value: function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 40 40' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm37.142857142857146 13.302857142857142q0-1.8085714285714296-0.4799999999999969-3.1914285714285704t-1.2285714285714278-2.2-1.817142857142855-1.3285714285714283-2.1000000000000014-0.6899999999999995-2.1842857142857213-0.1785714285714297-2.5 0.5685714285714285-2.467142857142857 1.4285714285714288-1.9314285714285724 1.6071428571428577-1.3399999999999999 1.3714285714285719q-0.3999999999999986 0.492857142857142-1.0942857142857143 0.492857142857142t-1.095714285714287-0.4914285714285711q-0.5357142857142847-0.6257142857142863-1.3399999999999999-1.3714285714285719t-1.9314285714285724-1.6085714285714285-2.467142857142857-1.4285714285714288-2.4999999999999982-0.5685714285714285-2.185714285714285 0.17857142857142883-2.0999999999999996 0.6914285714285713-1.8185714285714285 1.3285714285714292-1.2285714285714286 2.1971428571428575-0.4757142857142864 3.1928571428571413q0 3.75 4.174285714285714 7.924285714285716l12.968571428571428 12.5 12.947142857142858-12.478571428571428q4.195714285714288-4.195714285714288 4.195714285714288-7.945714285714288z m2.857142857142854 0q0 4.9328571428571415-5.1114285714285685 10.042857142857144l-13.905714285714286 13.394285714285715q-0.3999999999999986 0.3999999999999986-0.9828571428571422 0.3999999999999986t-0.9828571428571422-0.3999999999999986l-13.928571428571429-13.43714285714286q-0.22285714285714242-0.17857142857142705-0.6142857142857139-0.5799999999999983t-1.2385714285714284-1.46142857142857-1.5171428571428573-2.1757142857142853-1.1942857142857142-2.6999999999999993-0.5242857142857187-3.082857142857147q0-4.91 2.8342857142857145-7.678571428571429t7.8342857142857145-2.7671428571428565q1.3857142857142861 0 2.8242857142857147 0.4814285714285713t2.678571428571427 1.294285714285714 2.1314285714285717 1.5285714285714285 1.6971428571428575 1.5171428571428578q0.8028571428571425-0.8028571428571425 1.6971428571428575-1.5171428571428578t2.1314285714285717-1.5285714285714285 2.6785714285714306-1.2942857142857145 2.824285714285711-0.4814285714285709q5.0000000000000036 0 7.834285714285716 2.768571428571429t2.8342857142857127 7.678571428571429z' })
)
);
}
}]);
return FaHeartO;
}(React.Component);
exports.default = FaHeartO;