export const OrpheusReferenceIcon: React.FC<React.SVGProps<SVGSVGElement>> = (
  props
) => {
  return (
    <svg
      width='1em'
      height='1em'
      viewBox='0 0 24 24'
      fill='currentColor'
      xmlns='http://www.w3.org/2000/svg'
      {...props}
    >
      <path d='M15 19L13.6 17.575L17.175 14H7.5C6.25 14 5.1875 13.5625 4.3125 12.6875C3.4375 11.8125 3 10.75 3 9.5C3 8.25 3.4375 7.1875 4.3125 6.3125C5.1875 5.4375 6.25 5 7.5 5H8V7H7.5C6.8 7 6.20833 7.24167 5.725 7.725C5.24167 8.20833 5 8.8 5 9.5C5 10.2 5.24167 10.7917 5.725 11.275C6.20833 11.7583 6.8 12 7.5 12H17.175L13.6 8.4L15 7L21 13L15 19Z' />
    </svg>
  );
};
