
      import React, { Component } from 'react';

      export default class CameraSwitchIcon 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-camera-switch-icon ${this.props.className}`}><path d="M15 15.498v-2.5H9v2.5l-3.5-3.5 3.5-3.5v2.5h6v-2.5l3.5 3.5m1.5-8h-3.173l-1.828-2H9l-1.828 2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-12a2 2 0 0 0-2-2z"/></svg>
          )
        }
      }