
      import React, { Component } from 'react';

      export default class CellphoneDockIcon 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-dock-icon ${this.props.className}`}><path d="M16 14.998H8v-10h8m0-3.99l-8-.01a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-14c0-1.104-.897-1.99-2-1.99zm-8 21.99h8v-2H8v2z"/></svg>
          )
        }
      }