
      import React, { Component } from 'react';

      export default class InformationOutlineIcon 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-information-outline-icon ${this.props.className}`}><path d="M11 8.998h2v-2h-2m1 13c-4.412 0-8-3.589-8-8s3.588-8 8-8c4.41 0 8 3.589 8 8s-3.59 8-8 8zm0-18c-5.524 0-10 4.477-10 10s4.476 10 10 10c5.522 0 10-4.477 10-10s-4.478-10-10-10zm-1 15h2v-6h-2v6z"/></svg>
          )
        }
      }