
      import React, { Component } from 'react';

      export default class CertificateIcon 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-certificate-icon ${this.props.className}`}><path d="M4 2.998c-1.105 0-1.99.896-1.99 2l-.01 10c0 1.104.886 2 1.99 2H12V22l3-3 3 3v-5.002h2a2 2 0 0 0 2-2V5c0-1.105-.904-1.863-2-2h-3.998L16 2.998H4zM12 5l3 2 3-2v3.5l3 1.5-3 1.5V15l-3-2-3 2v-3.5L9 10l3-1.5V5zM4 5h5v2H4V5zm0 4h3v2H4V9zm0 4h5v2H4v-2z"/></svg>
          )
        }
      }