@exah/react-icons
Version:
svg react icons of popular icon packs using ES6 imports
18 lines (15 loc) • 527 B
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import React from 'react';
import Icon from 'react-icon-base';
var MdMusicNote = function MdMusicNote(props) {
return React.createElement(
Icon,
_extends({ viewBox: '0 0 40 40' }, props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm20 5h10v6.6h-6.6v16.8c0 3.6-3.1 6.6-6.8 6.6s-6.6-3-6.6-6.6 3-6.8 6.6-6.8c1.3 0 2.4 0.4 3.4 1v-17.6z' })
)
);
};
export default MdMusicNote;