
      import React, { Component } from 'react';

      export default class PiIcon 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-pi-icon ${this.props.className}`}><path d="M3.999 5v2.003H6v11.996h1.996V7.003H14V16A3 3 0 0 0 17.003 19 2.998 2.998 0 0 0 20 16h-2.003a.998.998 0 1 1-1.996 0V7.003h1.996V5"/></svg>
          )
        }
      }