
      import React, { Component } from 'react';

      export default class TextToSpeechOffIcon 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-off-icon ${this.props.className}`}><path d="M2 5.268L3.277 4 20 20.723 18.732 22l-5.348-5.348A6.008 6.008 0 0 1 9 19.917V22H7v-2.083A6.002 6.002 0 0 1 2 14h2a4 4 0 0 0 7.843 1.112L10 13.268V14a2 2 0 1 1-4 0V9.268l-4-4zm19.414 4.146l-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>
          )
        }
      }