
      import React, { Component } from 'react';

      export default class FormatBoldIcon 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-format-bold-icon ${this.props.className}`}><path d="M13.5 15.498H10v-3h3.5a1.5 1.5 0 0 1 0 3zm-3.5-9h3a1.5 1.5 0 0 1 0 3h-3m5.6 1.288c.965-.674 1.65-1.767 1.65-2.788 0-2.255-1.746-4-4-4H7v14h7.041c2.094 0 3.708-1.698 3.708-3.792a3.75 3.75 0 0 0-2.15-3.42z"/></svg>
          )
        }
      }