
      import React, { Component } from 'react';

      export default class FormatHorizontalAlignCenterIcon 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-horizontal-align-center-icon ${this.props.className}`}><path d="M19 16v-3h4v-2h-4V8l-4 4 4 4zM5 8v3H1v2h4v3l4-4-4-4zm6 12h2V4h-2v16z"/></svg>
          )
        }
      }