
      import React, { Component } from 'react';

      export default class HeadphonesSettingsIcon 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-headphones-settings-icon ${this.props.className}`}><path d="M12 .998a9 9 0 0 1 9 9v7a3 3 0 0 1-3 3h-3v-8h4v-2a7 7 0 1 0-14 0v2h4v8H6a3 3 0 0 1-3-3v-7a9 9 0 0 1 9-9zM15 24v-2h2v2h-2zm-4 0v-2h2v2h-2zm-4 0v-2h2v2H7z"/></svg>
          )
        }
      }