
      import React, { Component } from 'react';

      export default class RadioHandheldIcon 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-radio-handheld-icon ${this.props.className}`}><path d="M9 2c-.554 0-1 .446-1 1v17c0 1.108.892 2 2 2h5c1.108 0 2-.892 2-2V9c0-1.108-.892-2-2-2h-5V3c0-.554-.446-1-1-1zm1 7h5v4h-5V9z"/></svg>
          )
        }
      }