
      import React, { Component } from 'react';

      export default class CallMergeIcon 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-call-merge-icon ${this.props.className}`}><path d="M17.003 20.41l1.406-1.411L15 15.59l-1.411 1.412M7.5 7.997h3.501v5.592l-5.41 5.41 1.412 1.411 5.995-6.001V7.997h3.5l-4.496-4.496"/></svg>
          )
        }
      }