react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 787 B
JSX
import React, { Component } from 'react';
export default class MicrophoneSettingsIcon 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-microphone-settings-icon ${this.props.className}`}><path d="M19 10h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72zm-4 14h2v-2h-2m-4 2h2v-2h-2m1-9c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zM7 24h2v-2H7v2z"/></svg>
)
}
}