
      import React, { Component } from 'react';

      export default class FlipToBackIcon 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-flip-to-back-icon ${this.props.className}`}><path d="M15 16.998h2v-2h-2m0-10h2v-2h-2m-10 4H3v12a2 2 0 0 0 2 2h12v-2H5m14-2c1.102 0 2-.896 2-2h-2m0-6h2v-2h-2m0 6h2v-2h-2m-10 6v-2H7a2 2 0 0 0 2 2zm4-14h-2v2h2m6-2v2h2c0-1.104-.898-2-2-2zm-6 12h-2v2h2m-4-14a2 2 0 0 0-2 2h2m0 6H7v2h2m0-6H7v2h2v-2z"/></svg>
          )
        }
      }