react-icons
Version:
svg react icons of popular icon packs using ES6 imports
39 lines (28 loc) • 2.1 kB
JavaScript
;
exports.__esModule = 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; };
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
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('../IconBase');
var FaYoutubePlay = (function (_React$Component) {
_inherits(FaYoutubePlay, _React$Component);
function FaYoutubePlay() {
_classCallCheck(this, FaYoutubePlay);
_React$Component.apply(this, arguments);
}
FaYoutubePlay.prototype.render = function render() {
return React.createElement(
IconBase,
_extends({ viewBox: '0 0 1792 1896.0833' }, this.props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm1280 896q0-37-30-54l-512-320q-31-20-65-2-33 18-33 56v640q0 38 33 56 16 8 31 8 20 0 34-10l512-320q30-17 30-54z m512 0q0 96-1 150t-8.5 136.5-22.5 147.5q-16 73-69 123t-124 58q-222 25-671 25t-671-25q-71-8-124.5-58t-69.5-123q-14-65-21.5-147.5t-8.5-136.5-1-150 1-150 8.5-136.5 22.5-147.5q16-73 69-123t124-58q222-25 671-25t671 25q71 8 124.5 58t69.5 123q14 65 21.5 147.5t8.5 136.5 1 150z' })
)
);
};
return FaYoutubePlay;
})(React.Component);
exports['default'] = FaYoutubePlay;
module.exports = exports['default'];