export const QuoteIcon: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      width={26}
      height={19}
      viewBox="0 0 26 19"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        d="M2.337 16.795C.877 15.339 0 13.751 0 11.104 0 6.472 3.652 2.369 8.764.25l1.315 1.72c-4.82 2.383-5.843 5.427-6.135 7.412.73-.397 1.753-.53 2.775-.397 2.63.265 4.674 2.118 4.674 4.633 0 1.19-.584 2.382-1.46 3.308-1.023.927-2.191 1.324-3.652 1.324-1.607 0-3.068-.662-3.944-1.456zm14.607 0c-1.46-1.456-2.337-3.044-2.337-5.691 0-4.632 3.651-8.735 8.764-10.853l1.314 1.72c-4.82 2.383-5.842 5.427-6.134 7.412.73-.397 1.752-.53 2.775-.397C23.956 9.251 26 11.104 26 13.62c0 1.19-.584 2.382-1.46 3.308-.877.927-2.192 1.324-3.652 1.324-1.607 0-3.068-.662-3.944-1.456z"
        fill="currentColor"
      />
    </svg>
  );
};