
      import React, { Component } from 'react';

      export default class FormatLineSpacingIcon 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-line-spacing-icon ${this.props.className}`}><path d="M10 12.998h12v-2H10m0 8h12v-2H10m0-10h12v-2H10m-4 2h2.5L5 3.498l-3.5 3.5H4v10H1.5l3.5 3.5 3.5-3.5H6v-10z"/></svg>
          )
        }
      }