react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.55 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 MdVisibilityOff = function (_React$Component) {
_inherits(MdVisibilityOff, _React$Component);
function MdVisibilityOff() {
_classCallCheck(this, MdVisibilityOff);
return _possibleConstructorReturn(this, Object.getPrototypeOf(MdVisibilityOff).apply(this, arguments));
}
_createClass(MdVisibilityOff, [{
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: 'm19.766666666666666 15h0.23333333333333428q2.0333333333333314 0 3.5166666666666657 1.4833333333333343t1.4833333333333343 3.5166666666666657v0.3133333333333326z m-7.188333333333333 1.3283333333333331q-0.9383333333333326 1.8750000000000036-0.9383333333333326 3.671666666666667 0 3.4383333333333326 2.461666666666666 5.899999999999999t5.898333333333333 2.4583333333333357q1.7966666666666669 0 3.671666666666667-0.9383333333333326l-2.578333333333333-2.578333333333333q-0.6266666666666687 0.15833333333333144-1.0933333333333337 0.15833333333333144-2.0333333333333314 0-3.5166666666666657-1.4833333333333343t-1.4833333333333343-3.5166666666666657q0-0.466666666666665 0.1566666666666663-1.0933333333333337z m-9.216666666666667-9.216666666666667l2.1050000000000004-2.1116666666666664 29.53333333333333 29.53333333333333-2.1116666666666646 2.1083333333333343q-0.39000000000000057-0.39000000000000057-2.461666666666666-2.421666666666667t-3.163333333333334-3.125q-3.3599999999999994 1.4066666666666663-7.266666666666666 1.4066666666666663-6.163333333333334-0.0016666666666651508-11.163333333333336-3.434999999999995t-7.191666666666667-9.06666666666667q1.9533333333333331-4.843333333333334 6.25-8.283333333333333-0.9383333333333335-0.9366666666666674-2.6166666666666663-2.6549999999999994t-1.9133333333333336-1.953333333333334z m16.638333333333335 4.526666666666667q-1.5633333333333326 0-3.046666666666667 0.625l-3.593333333333332-3.5933333333333337q3.046666666666665-1.17 6.639999999999999-1.17 6.171666666666667 0 11.133333333333333 3.4383333333333344t7.149999999999999 9.061666666666666q-1.8766666666666652 4.611666666666665-5.704999999999998 7.891666666666666l-4.844999999999999-4.841666666666665q0.6266666666666652-1.4866666666666681 0.6266666666666652-3.0500000000000007 0-3.4366666666666674-2.461666666666666-5.8966666666666665t-5.898333333333333-2.461666666666666z' })
)
);
}
}]);
return MdVisibilityOff;
}(React.Component);
exports.default = MdVisibilityOff;
;