import * as React from "react";
const ChevronDown= ({
    className,
    title,
  }: {
    className?: string;
    title?: string;
  }) => (
  <svg
    fill="#000000"
    xmlns="http://www.w3.org/2000/svg"
    width="800px"
    height="800px"
    viewBox="0 0 52 52"
    enableBackground="new 0 0 52 52"
    xmlSpace="preserve"
    {...(!title ? { 'aria-hidden': 'true' } : {})}
    focusable="false"
    role="img"
    className={className}
    aria-label={title}
  >
    <path d="M47.6,17.8L27.1,38.5c-0.6,0.6-1.6,0.6-2.2,0L4.4,17.8c-0.6-0.6-0.6-1.6,0-2.2l2.2-2.2 c0.6-0.6,1.6-0.6,2.2,0l16.1,16.3c0.6,0.6,1.6,0.6,2.2,0l16.1-16.2c0.6-0.6,1.6-0.6,2.2,0l2.2,2.2C48.1,16.3,48.1,17.2,47.6,17.8z" />
  </svg>
);
export default ChevronDown;
