
      import React, { Component } from 'react';

      export default class EmailAlertIcon 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-email-alert-icon ${this.props.className}`}><path d="M16 9V7l-6 4-6-4v2l6 4 6-4zm0-4a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2l.01-9c0-1.105.885-2 1.99-2h12zm4 7V7h2v5h-2zm0 4v-2h2v2h-2z"/></svg>
          )
        }
      }