
      import React, { Component } from 'react';

      export default class AccountKeyIcon 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-account-key-icon ${this.props.className}`}><path d="M11 10v2h-1v2H8v-2H5.83a3.001 3.001 0 1 1 0-2H11zm-8 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm13 4c2.667 0 8 1.335 8 4v2H8v-2c0-2.665 5.333-4 8-4zm0-2c-2.208 0-4-1.793-4-4 0-2.208 1.792-4 4-4s4 1.792 4 4c0 2.207-1.792 4-4 4z"/></svg>
          )
        }
      }