
      import React, { Component } from 'react';

      export default class PackageUpIcon 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-package-up-icon ${this.props.className}`}><path d="M20.54 5.23c.29.34.46.79.46 1.27V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V6.5c0-.48.17-.93.46-1.27l1.38-1.68C5.12 3.21 5.53 3 6 3h12c.47 0 .88.21 1.15.55l1.39 1.68zM5.12 5h13.75l-.94-1h-12l-.81 1zM12 9.5L6.5 15H10v2h4v-2h3.5L12 9.5z"/></svg>
          )
        }
      }