react-icons
Version:
svg react icons of popular icon packs using ES6 imports
47 lines (34 loc) • 4.48 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 FaArrowCircleODown = function (_React$Component) {
_inherits(FaArrowCircleODown, _React$Component);
function FaArrowCircleODown() {
_classCallCheck(this, FaArrowCircleODown);
return _possibleConstructorReturn(this, Object.getPrototypeOf(FaArrowCircleODown).apply(this, arguments));
}
_createClass(FaArrowCircleODown, [{
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: 'm27.857142857142858 20.714285714285715q0 0.2671428571428578-0.2228571428571442 0.5357142857142847l-7.120000000000001 7.12142857142857q-0.24571428571428555 0.1999999999999993-0.5142857142857125 0.1999999999999993t-0.5114285714285707-0.1999999999999993l-7.142857142857142-7.142857142857142q-0.3342857142857145-0.35714285714285765-0.15714285714285658-0.7828571428571429 0.17999999999999972-0.4471428571428575 0.6714285714285708-0.4471428571428575h4.2857142857142865v-7.855714285714285q0-0.31428571428571495 0.1999999999999993-0.5142857142857142t0.5142857142857125-0.1999999999999993h4.285714285714285q0.31428571428571317 0 0.5142857142857125 0.1999999999999993t0.1999999999999993 0.5142857142857142v7.857142857142858h4.285714285714285q0.31428571428571317 0 0.514285714285716 0.1999999999999993t0.1999999999999993 0.514285714285716z m-7.857142857142858-12.857142857142858q-3.3028571428571425 0-6.094285714285714 1.6285714285714281t-4.42 4.4228571428571435-1.6285714285714281 6.091428571428571 1.6285714285714281 6.095714285714287 4.42 4.420000000000002 6.094285714285714 1.6314285714285717 6.094285714285714-1.62857142857143 4.419999999999998-4.421428571428571 1.6285714285714334-6.09714285714286-1.62857142857143-6.092857142857142-4.419999999999998-4.42-6.094285714285718-1.6300000000000008z m17.142857142857146 12.142857142857142q0 4.665714285714287-2.299999999999997 8.604285714285716t-6.237142857142857 6.238571428571426-8.605714285714292 2.3000000000000043-8.6-2.3000000000000043-6.242857142857143-6.238571428571426-2.295714285714286-8.604285714285716 2.3000000000000003-8.604285714285714 6.234285714285714-6.238571428571428 8.604285714285714-2.3000000000000003 8.605714285714285 2.3000000000000003 6.238571428571426 6.238571428571428 2.298571428571435 8.604285714285714z' })
)
);
}
}]);
return FaArrowCircleODown;
}(React.Component);
exports.default = FaArrowCircleODown;