react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.06 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 FaCheckCircle = function (_React$Component) {
_inherits(FaCheckCircle, _React$Component);
function FaCheckCircle() {
_classCallCheck(this, FaCheckCircle);
return _possibleConstructorReturn(this, Object.getPrototypeOf(FaCheckCircle).apply(this, arguments));
}
_createClass(FaCheckCircle, [{
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: 'm31.517142857142858 16.385714285714286q0-0.6285714285714281-0.3999999999999986-1.0285714285714285l-2.032857142857143-2.008571428571429q-0.42571428571428527-0.4242857142857144-1.0057142857142871-0.4242857142857144t-1.0042857142857144 0.4242857142857144l-9.107142857142858 9.085714285714285-5.042857142857143-5.045714285714286q-0.42571428571428527-0.4242857142857126-1.0057142857142853-0.4242857142857126t-1.0042857142857144 0.4242857142857126l-2.0285714285714285 2.008571428571429q-0.40285714285714214 0.3999999999999986-0.40285714285714214 1.0285714285714285 0 0.6000000000000014 0.40000000000000036 1.0028571428571418l8.081428571428571 8.080000000000002q0.4242857142857126 0.4242857142857126 1.0042857142857144 0.4242857142857126 0.6028571428571432 0 1.0285714285714285-0.4242857142857126l12.118571428571432-12.120000000000001q0.4028571428571439-0.3999999999999986 0.4028571428571439-1.0042857142857144z m5.625714285714288 3.614285714285714q0 4.665714285714287-2.299999999999997 8.604285714285716t-6.237142857142857 6.238571428571426-8.605714285714292 2.3000000000000043-8.6-2.3000000000000043-6.242857142857143-6.238571428571426-2.295714285714286-8.604285714285716 2.3000000000000003-8.604285714285714 6.234285714285714-6.238571428571428 8.604285714285714-2.3000000000000003 8.605714285714285 2.3000000000000003 6.238571428571426 6.238571428571428 2.298571428571435 8.604285714285714z' })
)
);
}
}]);
return FaCheckCircle;
}(React.Component);
exports.default = FaCheckCircle;