
      import React, { Component } from 'react';

      export default class AirplayIcon 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-airplay-icon ${this.props.className}`}><path d="M6 22.005h11.996l-5.995-6.001M21 3H2.996A2.007 2.007 0 0 0 1 5.003v12.002c0 1.098.899 1.996 1.996 1.996h4.005v-1.996H2.996V5.003H21v12.002h-3.999v1.996H21a2.002 2.002 0 0 0 1.996-1.996V5.003A2.006 2.006 0 0 0 21 3z"/></svg>
          )
        }
      }