
      import React, { Component } from 'react';

      export default class CellphoneIcon 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-icon ${this.props.className}`}><path d="M17 18.998H7v-14h10m0-3.99L7 .998a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-18c0-1.104-.897-1.99-2-1.99z"/></svg>
          )
        }
      }