
      import React, { Component } from 'react';

      export default class MinusCircleOutlineIcon 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-minus-circle-outline-icon ${this.props.className}`}><path d="M12 19.998c-4.412 0-8-3.589-8-8 0-4.41 3.588-8 8-8 4.41 0 8 3.59 8 8 0 4.411-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-5 11h10v-2H7"/></svg>
          )
        }
      }