
      import React, { Component } from 'react';

      export default class SetRightIcon 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-set-right-icon ${this.props.className}`}><path d="M15 19a7.001 7.001 0 0 1-3.002-.684c-.936.448-1.96.681-2.998.684A7 7 0 1 1 9 5a7 7 0 0 1 3.002.684A7 7 0 0 1 15 5a7 7 0 1 1 0 14zm-6-2l1.004-.107A7 7 0 0 1 8 12a7 7 0 0 1 2.002-4.898L9 7a5 5 0 0 0 0 10zm3-1.008A5 5 0 0 0 14 12a5 5 0 0 0-2-3.992A5 5 0 0 0 10 12a5 5 0 0 0 2 3.992z"/></svg>
          )
        }
      }