import * as React from 'react';
const LocationIcon = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={21}
    height={21}
    className='min-w-[21px]'
    fill='none'
    {...props}
  >
    <path
      fill='#1D4787'
      d='M10.375 11.886a3.22 3.22 0 1 1 0-6.442 3.22 3.22 0 1 1 0 6.442Zm0-5.192a1.974 1.974 0 1 0 0 3.95 1.974 1.974 0 1 0 0-3.95Z'
    />
    <path
      fill='#1D4787'
      d='M10.375 19.044a4.976 4.976 0 0 1-3.442-1.391c-2.458-2.367-5.175-6.142-4.15-10.634.925-4.075 4.484-5.9 7.592-5.9h.008c3.109 0 6.667 1.825 7.592 5.909 1.017 4.491-1.7 8.258-4.158 10.625a4.976 4.976 0 0 1-3.442 1.391Zm0-16.675c-2.425 0-5.542 1.292-6.367 4.925-.9 3.925 1.567 7.309 3.8 9.45a3.688 3.688 0 0 0 5.142 0c2.225-2.141 4.692-5.525 3.808-9.45-.833-3.633-3.958-4.925-6.383-4.925Z'
    />
  </svg>
);
export default LocationIcon;
