
      import React, { Component } from 'react';

      export default class CastIcon 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-cast-icon ${this.props.className}`}><path d="M1 9.998v2a9 9 0 0 1 9 9h2c0-6.075-4.927-11-11-11zm0 4v2a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7zm0 4v3h3c0-1.656-1.345-3-3-3zm20-15H3a2 2 0 0 0-2 2v3h2v-3h18v14h-7v2h7c1.103 0 2-.896 2-2v-14c0-1.104-.897-2-2-2z"/></svg>
          )
        }
      }