UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 798 B
import React, { Component } from 'react'; export default class MicrophoneVariantIcon 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-variant-icon ${this.props.className}`}><path d="M9 3a4 4 0 0 1 4 4H5a4 4 0 0 1 4-4zm2.84 6.818L11 18h-1v1a2 2 0 1 0 4 0v-5a4 4 0 0 1 4-4h2l-1 1 1 1h-2a2 2 0 0 0-2 2v5a4 4 0 0 1-8 0v-1H7l-.84-8.182A3.995 3.995 0 0 1 5.127 8h7.748a3.995 3.995 0 0 1-1.035 1.818zM9 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg> ) } }