
      import React, { Component } from 'react';

      export default class KeyboardTabIcon 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-keyboard-tab-icon ${this.props.className}`}><path d="M20 17.998h2v-12h-2m-8.415 1.414l3.586 3.586H1v2h14.172l-3.586 3.586L13 17.998l6-6-6-6-1.414 1.414z"/></svg>
          )
        }
      }