import * as React from 'react';
const HeartIconProduct = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={24}
    height={25}
    fill='none'
    {...props}
  >
    <path
      fill={props?.is_favorite ? 'red' : '#1D4787'}
      d='M12.621 20.89c-.34.12-.9.12-1.24 0-2.9-.99-9.38-5.12-9.38-12.12 0-3.09 2.49-5.59 5.56-5.59 1.82 0 3.43.88 4.44 2.24a5.529 5.529 0 0 1 4.44-2.24c3.07 0 5.56 2.5 5.56 5.59 0 7-6.48 11.13-9.38 12.12Z'
    />
  </svg>
);
export default HeartIconProduct;
