
      import React, { Component } from 'react';

      export default class CubeUnfoldedIcon 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-cube-unfolded-icon ${this.props.className}`}><path d="M6 9V4h7v5h10v7h-5v5h-7v-5H1V9h5zm10 7h-3v3h3v-3zM8 9h3V6H8v3zm-2 5v-3H3v3h3zm12-3v3h3v-3h-3zm-5 0v3h3v-3h-3zm-5 0v3h3v-3H8z"/></svg>
          )
        }
      }