
      import React, { Component } from 'react';

      export default class FileLockIcon 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-file-lock-icon ${this.props.className}`}><path d="M6 2c-1.105 0-1.99.896-1.99 2L4 20c0 1.104.886 2 1.99 2H18a2 2 0 0 0 2-2V8l-6-6H6zm7 1.5L18.5 9H13V3.5zm-1 7.518a3 3 0 0 1 3 3v1h1v4H8v-4h1v-1a3 3 0 0 1 3-3zm0 2a1 1 0 0 0-1 1v1h2v-1a1 1 0 0 0-1-1z"/></svg>
          )
        }
      }