react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 768 B
JSX
import React, { Component } from 'react';
export default class SpeakerIcon 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-speaker-icon ${this.props.className}`}><path d="M12 11.998a3.001 3.001 0 0 0 0 6 3.001 3.001 0 0 0 0-6zm0 8a5 5 0 1 1 0-10.001 5 5 0 0 1 0 10.001zm0-16c1.102 0 2 .896 2 2s-.898 2-2 2a2 2 0 1 1 0-4zm5-2H7a2 2 0 0 0-2 2v16c0 1.104.894 1.99 2 1.99l10 .01a2 2 0 0 0 2-2v-16a2 2 0 0 0-2-2z"/></svg>
)
}
}