
      import React, { Component } from 'react';

      export default class FormatParagraphIcon 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-paragraph-icon ${this.props.className}`}><path d="M13 4a4 4 0 0 1 0 8h-2v6H9V4h4zm0 6a2 2 0 1 0 0-4h-2v4h2z"/></svg>
          )
        }
      }