
      import React, { Component } from 'react';

      export default class BellOffIcon 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-bell-off-icon ${this.props.className}`}><path d="M14 20a2 2 0 1 1-4 0h4zm5.738 1.566L17.172 19H3l3-3v-6c0-.654.105-1.284.298-1.873L3.474 5.303 4.89 3.889l2.398 2.398 13.865 13.865-1.414 1.414zM11 4.083V3a1 1 0 1 1 2 0v1.083c2.838.476 5 2.944 5 5.917v4.172l-9.23-9.23A5.964 5.964 0 0 1 11 4.083z"/></svg>
          )
        }
      }