react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.51 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 TiArrowBackOutline = function (_React$Component) {
_inherits(TiArrowBackOutline, _React$Component);
function TiArrowBackOutline() {
_classCallCheck(this, TiArrowBackOutline);
return _possibleConstructorReturn(this, Object.getPrototypeOf(TiArrowBackOutline).apply(this, arguments));
}
_createClass(TiArrowBackOutline, [{
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.940000000000005 32.57833333333333c-2.7333333333333343-4.166666666666668-6.116666666666667-5.475000000000001-10.273333333333333-5.806666666666665v2.3949999999999996c0 0.8900000000000006-0.34666666666666757 1.7266666666666666-0.9766666666666666 2.3566666666666656-1.2600000000000016 1.259999999999998-3.461666666666666 1.25-4.705 0.00833333333333286l-10.485000000000005-10.34833333333333c-0.3199999999999994-0.31333333333333613-0.5-0.7366666666666681-0.5-1.1833333333333371s0.17833333333333368-0.875 0.49666666666666703-1.1883333333333326l10.48-10.338333333333335c1.2566666666666677-1.2583333333333329 3.4549999999999983-1.2599999999999998 4.716666666666669 0 0.6266666666666652 0.6333333333333329 0.9733333333333327 1.4666666666666668 0.9733333333333327 2.3583333333333343v2.838333333333333c7.699999999999999 1.5549999999999997 13.333333333333332 8.328333333333335 13.333333333333332 16.326666666666668v1.6666666666666679c0 0.7333333333333307-0.4833333333333343 1.3833333333333364-1.1899999999999977 1.5950000000000024-0.15833333333333144 0.045000000000001705-0.31666666666667 0.07000000000000028-0.47666666666666657 0.07000000000000028-0.5499999999999972 0-1.076666666666668-0.27666666666666373-1.3933333333333344-0.7550000000000026z m-11.899999999999999-9.226666666666667c3.676666666666666 0.09499999999999886 7.728333333333332 0.658333333333335 11.261666666666667 3.5366666666666653-1.2783333333333324-5.359999999999999-5.793333333333333-9.503333333333334-11.486666666666668-10.133333333333336-0.8416666666666686-0.09499999999999531-1.4816666666666691-0.0883333333333276-1.4816666666666691-0.0883333333333276v-5.828333333333333l-9.293333333333335 9.161666666666665 9.293333333333335 9.166666666666668v-5.833333333333332s1.2300000000000004 0.01666666666666572 1.7049999999999983 0.01666666666666572z' })
)
);
}
}]);
return TiArrowBackOutline;
}(React.Component);
exports.default = TiArrowBackOutline;
;