
      import React, { Component } from 'react';

      export default class BorderBottomIcon 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-border-bottom-icon ${this.props.className}`}><path d="M5 14.998H3v2h2m-2 4h18v-2H3m2-8H3v2h2m14-4h2v-2h-2m0-2h2v-2h-2m-14 4H3v2h2m14 8h2v-2h-2m0-2h2v-2h-2m-2-8h-2v2h2m-4-2h-2v2h2m4 6h-2v2h2m-4-6h-2v2h2m-8-6H3v2h2m8 6h-2v2h2m-4-10H7v2h2m4 10h-2v2h2m-4-6H7v2h2v-2z"/></svg>
          )
        }
      }