const ChevronDownIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="14"
      height="8"
      viewBox="0 0 14 8"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path d="M13 1L7 7L1 1" stroke="currentColor" strokeLinecap="square" />
    </svg>
  );
};

export { ChevronDownIcon };
