UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 795 B
import React, { Component } from 'react'; export default class TextToSpeechIcon 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-text-to-speech-icon ${this.props.className}`}><path d="M8 7a2 2 0 0 1 2 2v5a2 2 0 1 1-4 0V9a2 2 0 0 1 2-2zm6 7a6.002 6.002 0 0 1-5 5.917V22H7v-2.083A6.002 6.002 0 0 1 2 14h2a4 4 0 0 0 8 0h2zm7.414-4.586l-4.242 4.243L18.176 10H14a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4c0 .552-.224 1.052-.586 1.414z"/></svg> ) } }