
      import React, { Component } from 'react';

      export default class BabyIcon 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-baby-icon ${this.props.className}`}><path d="M18.5 4a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zm-14 16a1.5 1.5 0 0 1 0-3h7a1.5 1.5 0 0 1 0 3h-7zm11.59-1.003L14.687 15H11l-4.25-4.25S9 8.25 12.5 8.25c3 0 3.348 1.002 3.564 1.615l2.857 8.138a1.5 1.5 0 1 1-2.83.994z"/></svg>
          )
        }
      }