
      import React, { Component } from 'react';

      export default class SeatLegroomExtraIcon 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-legroom-extra-icon ${this.props.className}`}><path d="M3.999 12.002V2.998H2.002v9.005a5 5 0 0 0 5 5h5.996V15H7.003a2.996 2.996 0 0 1-3.004-2.998zm18.833 5.24c-.38-.723-1.294-.972-2.03-.63l-1.09.497L16.3 10.13A2.002 2.002 0 0 0 14.51 9.01l-3.51-.01V2.998H5V11A2.992 2.992 0 0 0 7.997 14H15L18.409 21l3.72-1.7c.771-.361 1.104-1.303.703-2.06z"/></svg>
          )
        }
      }