react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 726 B
JSX
import React, { Component } from 'react';
export default class SurroundSound20Icon 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-surround-sound20-icon ${this.props.className}`}><path d="M17 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2zm0 2v6h2V9h-2zm-8 8H3v-1.995L7 9H3V7h4a2 2 0 0 1 1.65 3.132L5.406 15H9v2zm3 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/></svg>
)
}
}