
      import React, { Component } from 'react';

      export default class MapMarkerMultipleIcon 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-map-marker-multiple-icon ${this.props.className}`}><path d="M14 11.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM14 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S7 14.25 7 9a7 7 0 0 1 7-7zM5 9c-.016 4.477 5.078 10.664 6.006 11.814L10 22S3 14.25 3 9a7.004 7.004 0 0 1 5.003-6.71A8.978 8.978 0 0 0 5 9z"/></svg>
          )
        }
      }