react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.35 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 TiZoomOut = function (_React$Component) {
_inherits(TiZoomOut, _React$Component);
function TiZoomOut() {
_classCallCheck(this, TiZoomOut);
return _possibleConstructorReturn(this, Object.getPrototypeOf(TiZoomOut).apply(this, arguments));
}
_createClass(TiZoomOut, [{
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: 'm21.666666666666668 18.333333333333336h-8.333333333333334c-0.46000000000000085 0-0.8333333333333339 0.37333333333333485-0.8333333333333339 0.8333333333333321s0.3733333333333331 0.8333333333333321 0.8333333333333339 0.8333333333333321h8.333333333333334c0.46000000000000085 0 0.8333333333333321-0.37333333333333485 0.8333333333333321-0.8333333333333321s-0.37333333333333485-0.8333333333333321-0.8333333333333321-0.8333333333333321z m10.63333333333333 8.259999999999998l-1.5799999999999983-1.6433333333333344-2.1433333333333344-2.1449999999999996c0.37833333333333385-1.1466666666666683 0.5899999999999999-2.366666666666667 0.5899999999999999-3.638333333333332 0-6.433333333333334-5.233333333333334-11.666666666666668-11.666666666666668-11.666666666666668s-11.666666666666668 5.233333333333334-11.666666666666668 11.666666666666668 5.233333333333334 11.666666666666668 11.666666666666668 11.666666666666668c1.2716666666666683 0 2.4933333333333323-0.211666666666666 3.6400000000000006-0.5899999999999999l3.870000000000001 3.8666666666666636 0.10833333333333428 0.09166666666666856c1.0033333333333339 0.8449999999999989 2.25 1.30833333333333 3.508333333333333 1.30833333333333 2.876666666666665 0 5.216666666666669-2.3399999999999963 5.216666666666669-5.216666666666669 0-1.3999999999999986-0.5466666666666669-2.7166666666666686-1.5399999999999991-3.6999999999999993z m-23.13333333333333-7.426666666666666c0-4.595000000000001 3.7383333333333333-8.333333333333334 8.333333333333332-8.333333333333334s8.333333333333336 3.7383333333333333 8.333333333333336 8.333333333333334-3.7383333333333333 8.333333333333332-8.333333333333336 8.333333333333332-8.333333333333334-3.7383333333333333-8.333333333333334-8.333333333333336z' })
)
);
}
}]);
return TiZoomOut;
}(React.Component);
exports.default = TiZoomOut;
;