
      import React, { Component } from 'react';

      export default class ChurchIcon 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-church-icon ${this.props.className}`}><path d="M11 2h2v2h2v2h-2v3.4l9 3.6v2l-2-.8V22h-6v-5a2 2 0 1 0-4 0v5H4v-7.8L2 15v-2l9-3.6V6H9V4h2V2zM6 20h2v-5l-1-1-1 1v5zm10 0h2v-5l-1-1-1 1v5z"/></svg>
          )
        }
      }