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

const AnchorDownIcon: IconType = (props) => (
  <svg
    width="20"
    height="20"
    {...props}
    viewBox="0 0 20 20"
    fill="none"
    xmlns="http://www.w3.org/2000/svg"
  >
    <g clipPath="url(#clip0_1_7372)">
      <path
        d="M9.99865 10.9766L14.1236 6.85156L15.302 8.0299L9.99865 13.3332L4.69531 8.0299L5.87365 6.85156L9.99865 10.9766Z"
        fill="currentColor"
      />
    </g>
    <defs>
      <clipPath id="clip0_1_7372">
        <rect width="20" height="20" fill="white" />
      </clipPath>
    </defs>
  </svg>
);

export default AnchorDownIcon;
