import { IconType } from "@/types/utils";

const HeartFillOutlinedIcon: IconType = ({ size, ...otherProps }) => (
  <svg
    width={size || "26"}
    height={size || "26"}
    {...otherProps}
    viewBox="0 0 26 26"
    fill="none"
    xmlns="http://www.w3.org/2000/svg"
  >
    <path
      d="M12.9998 2.16699C7.01984 2.16699 2.1665 7.02033 2.1665 13.0003C2.1665 18.9803 7.01984 23.8337 12.9998 23.8337C18.9798 23.8337 23.8332 18.9803 23.8332 13.0003C23.8332 7.02033 18.9798 2.16699 12.9998 2.16699ZM13.3573 18.417C13.1623 18.482 12.8265 18.482 12.6315 18.417C10.9415 17.8428 7.14984 15.427 7.14984 11.332C7.14984 9.52283 8.6015 8.06033 10.3998 8.06033C11.4615 8.06033 12.404 8.56949 12.9998 9.37116C13.5848 8.58032 14.5382 8.06033 15.5998 8.06033C17.3982 8.06033 18.8498 9.52283 18.8498 11.332C18.8498 15.427 15.0582 17.8428 13.3573 18.417Z"
      fill="currentColor"
    />
  </svg>
);

export default HeartFillOutlinedIcon;
