react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.27 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 TiFlashOutline = function (_React$Component) {
_inherits(TiFlashOutline, _React$Component);
function TiFlashOutline() {
_classCallCheck(this, TiFlashOutline);
return _possibleConstructorReturn(this, Object.getPrototypeOf(TiFlashOutline).apply(this, arguments));
}
_createClass(TiFlashOutline, [{
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: 'm24.166666666666668 6.666666666666667h0.00833333333333286z m0 0l-4.166666666666668 10 8.333333333333336 4.830000000000002-12.500000000000002 11.836666666666666 4.166666666666666-10-8.333333333333334-4.833333333333332 12.500000000000002-11.833333333333336z m0-3.3333333333333335c-0.9366666666666674 0.020000000000000018-1.716666666666665 0.3666666666666667-2.3000000000000007 0.9166666666666665l-12.491666666666667 11.828333333333333c-0.7633333333333336 0.7250000000000014-1.1416666666666675 1.7666666666666657-1.0166666666666657 2.8099999999999987 0.11999999999999922 1.043333333333333 0.7283333333333335 1.9699999999999989 1.6366666666666667 2.496666666666666l5.803333333333335 3.366666666666667-3.043333333333333 7.303333333333335c-0.6033333333333335 1.4500000000000028-0.10999999999999943 3.133333333333333 1.1866666666666674 4.026666666666664 0.5733333333333341 0.39333333333333087 1.2333333333333343 0.5900000000000034 1.8916666666666675 0.5900000000000034 0.8283333333333349 0 1.6533333333333342-0.3100000000000023 2.290000000000001-0.913333333333334l12.5-11.838333333333331c0.7633333333333319-0.7216666666666676 1.1416666666666657-1.7616666666666667 1.0166666666666657-2.806666666666665-0.12166666666666615-1.0450000000000017-0.7300000000000004-1.9716666666666676-1.6366666666666667-2.496666666666666l-5.803333333333338-3.366666666666669 2.9833333333333343-7.154999999999999c0.20333333333333314-0.43333333333333357 0.31666666666666643-0.916666666666667 0.31666666666666643-1.4283333333333337 0-1.836666666666667-1.4833333333333343-3.3266666666666667-3.333333333333332-3.3333333333333335z' })
)
);
}
}]);
return TiFlashOutline;
}(React.Component);
exports.default = TiFlashOutline;
;