
      import React, { Component } from 'react';

      export default class FlashlightOffIcon 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-flashlight-off-icon ${this.props.className}`}><path d="M2 5.268L3.277 4 20 20.723 18.732 22 15 18.268V22H9v-9.732l-7-7zM18 5l-3 5h-3.177l-5-5H18zm0-1H6V2h12v2zm-3 7v2.177L12.823 11H15z"/></svg>
          )
        }
      }