
      import React, { Component } from 'react';

      export default class SetLeftRightIcon 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-left-right-icon ${this.props.className}`}><path d="M9 5a7.001 7.001 0 0 1 3.002.684A6.998 6.998 0 0 1 15 5a7 7 0 1 1 0 14 7.001 7.001 0 0 1-3.002-.684c-.936.448-1.96.681-2.998.684A7 7 0 1 1 9 5zm0 7c0 2.22 1.207 4.16 3 5.197A5.998 5.998 0 0 0 15 12c0-2.22-1.207-4.16-3-5.197A5.998 5.998 0 0 0 9 12z"/></svg>
          )
        }
      }