
      import React, { Component } from 'react';

      export default class AppleKeyboardCapsIcon 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-apple-keyboard-caps-icon ${this.props.className}`}><path d="M15 14V8h2.172L12 2.828 6.828 8H9v6h6zM12 0l10 10h-5v6H7v-6H2L12 0zM7 18h10v6H7v-6zm8 2H9v2h6v-2z"/></svg>
          )
        }
      }