react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.91 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 FaBellO = function (_React$Component) {
_inherits(FaBellO, _React$Component);
function FaBellO() {
_classCallCheck(this, FaBellO);
return _possibleConstructorReturn(this, Object.getPrototypeOf(FaBellO).apply(this, arguments));
}
_createClass(FaBellO, [{
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: 'm20.357142857142858 37.85714285714286q0-0.3571428571428541-0.35714285714285765-0.3571428571428541-1.3171428571428585 0-2.265714285714285-0.9485714285714266t-0.9485714285714302-2.265714285714296q0-0.3571428571428541-0.35714285714285765-0.3571428571428541t-0.35714285714285765 0.3571428571428541q0 1.6285714285714263 1.1499999999999986 2.778571428571432t2.778571428571432 1.1499999999999986q0.35714285714285765 0 0.35714285714285765-0.3571428571428541z m-14.865714285714287-6.428571428571431h29.017142857142858q-5.937142857142856-6.6971428571428575-5.937142857142856-18.571428571428573 0-1.138571428571428-0.5357142857142847-2.3428571428571434t-1.5399999999999991-2.3000000000000007-2.71142857142857-1.7971428571428572-3.784285714285719-0.702857142857142-3.7814285714285703 0.7028571428571428-2.7114285714285717 1.797142857142858-1.5399999999999991 2.299999999999999-0.5357142857142865 2.3428571428571434q0 11.875714285714285-5.937142857142857 18.571428571428573z m33.08 0q0 1.1599999999999966-0.8485714285714252 2.008571428571429t-2.008571428571429 0.8485714285714252h-10q0 2.365714285714283-1.6742857142857126 4.039999999999999t-4.040000000000003 1.6742857142857162-4.039999999999999-1.6742857142857162-1.6742857142857144-4.039999999999999h-10q-1.160000000000001 0-2.0085714285714293-0.8485714285714252t-0.8485714285714285-2.008571428571429q1.114285714285714-0.937142857142856 2.031428571428571-1.9642857142857153t1.8971428571428577-2.6671428571428564 1.6628571428571428-3.53857142857143 1.1142857142857148-4.597142857142856 0.43714285714285595-5.804285714285715q0-3.3928571428571423 2.611428571428572-6.305714285714285t6.852857142857141-3.5385714285714283q-0.17857142857142705-0.4271428571428584-0.17857142857142705-0.8700000000000014 0-0.8928571428571428 0.6257142857142846-1.5171428571428573t1.5171428571428578-0.6257142857142854 1.5171428571428578 0.6257142857142858 0.6257142857142846 1.517142857142857q0 0.44714285714285706-0.17857142857142705 0.8714285714285714 4.242857142857144 0.6242857142857146 6.852857142857143 3.5371428571428574t2.611428571428572 6.305714285714286q0 3.102857142857143 0.43571428571428683 5.8028571428571425t1.1142857142857174 4.600000000000001 1.664285714285711 3.5371428571428574 1.8971428571428604 2.6671428571428564 2.031428571428563 1.9642857142857153z' })
)
);
}
}]);
return FaBellO;
}(React.Component);
exports.default = FaBellO;