
      import React, { Component } from 'react';

      export default class HomeModernIcon 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-home-modern-icon ${this.props.className}`}><path d="M6 21V8a2 2 0 0 1 2-2l8-3v3a2 2 0 0 1 2 2v13h-6v-5H8v5H6zm8-2h2v-3h-2v3zm-6-6h2V9H8v4zm4 0h4V9h-4v4z"/></svg>
          )
        }
      }