
      import React, { Component } from 'react';

      export default class TabletAndroidIcon 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-tablet-android-icon ${this.props.className}`}><path d="M19.25 18.999H4.75v-16h14.5m-5.25 19h-4v-1h4m4-21H6a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-18a3 3 0 0 0-3-3z"/></svg>
          )
        }
      }