
      import React, { Component } from 'react';

      export default class QualityHighIcon 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-quality-high-icon ${this.props.className}`}><path d="M14.5 13.498h2v-3h-2m3.5 3.5a1 1 0 0 1-1 1h-.75v1.5h-1.5v-1.5H14a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1m-7 5H9.5v-2h-2v2H6v-6h1.5v2.5h2v-2.5H11m8-5H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-12a2 2 0 0 0-2-2z"/></svg>
          )
        }
      }