import * as React from 'react';
const HeartNavbarIcon = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={25}
    height={25}
    fill='none'
    {...props}
  >
    <path
      fill='#1D4787'
      d='M16.94 3.6c-1.81 0-3.43.88-4.44 2.23A5.549 5.549 0 0 0 8.06 3.6C4.99 3.6 2.5 6.1 2.5 9.19c0 1.19.19 2.29.52 3.31 1.58 5 6.45 7.99 8.86 8.81.34.12.9.12 1.24 0 2.41-.82 7.28-3.81 8.86-8.81.33-1.02.52-2.12.52-3.31 0-3.09-2.49-5.59-5.56-5.59Z'
    />
  </svg>
);
export default HeartNavbarIcon;
