
      import React, { Component } from 'react';

      export default class FlashOutlineIcon 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-flash-outline-icon ${this.props.className}`}><path d="M7 2h10l-3.5 7H17l-7 13v-8H7V2zm2 2v8h3v2.66L14 11h-3.758l3.515-7H9z"/></svg>
          )
        }
      }