react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 731 B
JSX
import React, { Component } from 'react';
export default class MusicNoteOffIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg 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-off-icon ${this.props.className}`}><path d="M12 3v5.676l3 3V6h4V3h-7zM5.277 4.5L4 5.768l6.256 6.257C7.886 12.155 6 14.098 6 16.5a4.5 4.5 0 0 0 4.5 4.5c2.402 0 4.345-1.887 4.475-4.256l4.709 4.71 1.273-1.274L15 14.223l-3-3L5.277 4.5z"/></svg>
)
}
}