
      import React, { Component } from 'react';

      export default class ArrowCollapseUpIcon 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-arrow-collapse-up-icon ${this.props.className}`}><path d="M4.08 11.92L12 4l7.92 7.92-1.41 1.41L13 7.83V22h-2V7.83l-5.51 5.5-1.41-1.41zM12 4h10V2H2v2h10z"/></svg>
          )
        }
      }