
      import React, { Component } from 'react';

      export default class BootstrapIcon 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-bootstrap-icon ${this.props.className}`}><path d="M3 5a2 2 0 0 1 2-2h14c1.104 0 2 .896 2 2v14c0 1.104-.896 2-2 2H5a2 2 0 0 1-2-2V5zm4.5 1v12h5c2.25 0 4-1.25 4-3.5 0-2-1.731-3-3.25-3A2.75 2.75 0 0 0 16 8.75C16 7.231 14.269 6 12.75 6H7.5zm2.5 5V8h1.5a1.5 1.5 0 0 1 0 3H10zm0 2h2a1.5 1.5 0 0 1 0 3h-2v-3z"/></svg>
          )
        }
      }