
      import React, { Component } from 'react';

      export default class FullscreenExitIcon 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-fullscreen-exit-icon ${this.props.className}`}><path d="M14 14h5v2h-3v3h-2v-5zm-9 0h5v5H8v-3H5v-2zm3-9h2v5H5V8h3V5zm11 3v2h-5V5h2v3h3z"/></svg>
          )
        }
      }