
      import React, { Component } from 'react';

      export default class SeatIndividualSuiteIcon 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-seat-individual-suite-icon ${this.props.className}`}><path d="M7.003 12.998A3.005 3.005 0 0 0 10 10a3.005 3.005 0 0 0-2.997-2.997A3.01 3.01 0 0 0 3.999 10a3.01 3.01 0 0 0 3.004 2.998zm11.996-5.995H11v6.996H2.998V7.002H1v10h21.997v-6a3.994 3.994 0 0 0-4-4z"/></svg>
          )
        }
      }