
      import React, { Component } from 'react';

      export default class HeadsetDockIcon 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-headset-dock-icon ${this.props.className}`}><path d="M2 18h7V6.126C7.275 6.57 6 8.136 6 10v1h2v6H6a2 2 0 0 1-2-2v-5a6 6 0 0 1 6-6h1a6 6 0 0 1 6 6v2h1V9h2v3a2 2 0 0 1-2 2h-1v1a2 2 0 0 1-2 2h-2v-6h2v-1a4.002 4.002 0 0 0-3-3.874V18h10v2H2v-2z"/></svg>
          )
        }
      }