
      import React, { Component } from 'react';

      export default class FaxIcon 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-fax-icon ${this.props.className}`}><path d="M11 6h5v2h-5V6zM8 9V3h11v6c1.66 0 3 1.34 3 3v6h-3v3H8v-3H7V9h1zm2-4v4h7V5h-7zm0 10v4h7v-4h-7zm9-4a1 1 0 1 0 0 2 1 1 0 0 0 0-2zM4 9h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2z"/></svg>
          )
        }
      }