
      import React, { Component } from 'react';

      export default class FlagOutlineIcon 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-flag-outline-icon ${this.props.className}`}><path d="M14.5 6H20v10h-7l-.5-2H7v7H5V4h9l.5 2zM7 6v6h6l.5 2H18V8h-4l-.5-2H7z"/></svg>
          )
        }
      }