import React from 'react'

export const Chevron: React.FC = () => {
  return (
    <svg
      width="25"
      height="25"
      viewBox="0 0 25 25"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M10.5 16L14.5 12.5L10.5 9"
        stroke="currentColor"
        strokeWidth="2"
      />
    </svg>
  )
}
