
      import React, { Component } from 'react';

      export default class CellphoneAndroidIcon 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-cellphone-android-icon ${this.props.className}`}><path d="M17.25 17.998H6.75v-14h10.5m-3.25 17h-4v-1h4m2-19H8a3 3 0 0 0-3 3v16a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-16a3 3 0 0 0-3-3z"/></svg>
          )
        }
      }