react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 754 B
JSX
import React, { Component } from 'react';
export default class MusicOffIcon 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-off-icon ${this.props.className}`}><path d="M2 5.268L3.277 4 20 20.723 18.732 22 9 12.268V17.5a3.5 3.5 0 1 1-2-3.163v-4.069l-5-5zM21 3v12.5a3.49 3.49 0 0 1-1.115 2.562l-4.947-4.947A3.49 3.49 0 0 1 17.5 12c.537 0 1.045.12 1.5.337V6.47l-8.83 1.877-2.511-2.511L21 3z"/></svg>
)
}
}