
      import React, { Component } from 'react';

      export default class MemoryIcon 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-memory-icon ${this.props.className}`}><path d="M17 16.998H7v-10h10m4 4v-2h-2v-2a2 2 0 0 0-2-2h-2v-2h-2v2h-2v-2H9v2H7a2 2 0 0 0-2 2v2H3v2h2v2H3v2h2v2a2 2 0 0 0 2 2h2v2h2v-2h2v2h2v-2h2a2 2 0 0 0 2-2v-2h2v-2h-2v-2m-6 2h-2v-2h2m2-2H9v6h6v-6z"/></svg>
          )
        }
      }