
      import React, { Component } from 'react';

      export default class RepeatOffIcon 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-repeat-off-icon ${this.props.className}`}><path d="M2 5.268L3.277 4 20 20.723 18.732 22l-3-3H7v3l-4-4 4-4v3h6.732L7 10.268V11H5V8.268l-3-3zM17 13h2v4.177l-2-2V13zm0-8V2l4 4-4 4V7H8.823l-2-2H17z"/></svg>
          )
        }
      }