
      import React, { Component } from 'react';

      export default class TheaterIcon 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-theater-icon ${this.props.className}`}><path d="M4 15h2a2 2 0 0 1 2 2v2h1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2h1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2h1v3H1v-3h1v-2a2 2 0 0 1 2-2zm7-8l4 3-4 3V7zM4 2h16a2 2 0 0 1 2 2v9.535A3.982 3.982 0 0 0 20 13V4H4v9c-.729 0-1.412.195-2 .535V4a2 2 0 0 1 2-2z"/></svg>
          )
        }
      }