
      import React, { Component } from 'react';

      export default class AccountOffIcon 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-account-off-icon ${this.props.className}`}><path d="M12 4a4 4 0 0 1 .752 7.93L8.072 7.246A4.001 4.001 0 0 1 12 4zm.28 10.002L18.278 20 20 21.723l-1.27 1.28L15.729 20H4v-2c0-1.841 2.487-3.392 5.874-3.857L2.78 7.047l1.272-1.272 8.227 8.227zM20 18v1.178l-4.857-4.857C18 14.93 20 16.349 20 18z"/></svg>
          )
        }
      }