react-material-icon-svg
Version:
material icon react SVG version
49 lines (34 loc) • 3.33 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; }; }();
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
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 MusicNoteBluetoothOffIcon = function (_Component) {
_inherits(MusicNoteBluetoothOffIcon, _Component);
function MusicNoteBluetoothOffIcon(props) {
_classCallCheck(this, MusicNoteBluetoothOffIcon);
return _possibleConstructorReturn(this, (MusicNoteBluetoothOffIcon.__proto__ || Object.getPrototypeOf(MusicNoteBluetoothOffIcon)).call(this, props));
}
_createClass(MusicNoteBluetoothOffIcon, [{
key: 'render',
value: function render() {
return _react2.default.createElement(
'svg',
_extends({ xmlns: 'http://www.w3.org/2000/svg', width: '24', height: '24', baseProfile: 'full', viewBox: '0 0 24.00 24.00' }, this.props, { className: 'material material-music-note-bluetooth-off-icon ' + this.props.className }),
_react2.default.createElement('path', { d: 'M10 3v5.676l3 3V6h4V3h-7zM3.277 4.5L2 5.768l6.256 6.257C5.886 12.155 4 14.098 4 16.5A4.5 4.5 0 0 0 8.5 21c2.402 0 4.345-1.887 4.475-4.256l4.709 4.71 1.273-1.274L13 14.223l-3-3L3.277 4.5zM20 7v3.79L17.71 8.5l-.71.71L19.79 12 17 14.79l.71.71L20 13.21V17h.5l2.85-2.85L21.21 12l2.15-2.15L20.5 7H20zm1 1.91l.94.94-.94.94V8.91zm0 4.3l.94.94-.94.94v-1.88z' })
);
}
}]);
return MusicNoteBluetoothOffIcon;
}(_react.Component);
MusicNoteBluetoothOffIcon.defaultProps = {
className: ''
};
exports.default = MusicNoteBluetoothOffIcon;