
      import React, { Component } from 'react';

      export default class VideoOffIcon 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-video-off-icon ${this.props.className}`}><path d="M3.272 1.998L2 3.271l2.728 2.727H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a.973.973 0 0 0 .544-.183l3.184 3.183L21 19.725m0-13.227l-4 4v-3.5a1 1 0 0 0-1-1H9.82l11.18 11.181V6.5z"/></svg>
          )
        }
      }