tutorbookapp/tutorbook

View on GitHub
components/icons/chevron-right.tsx

Summary

Maintainability
A
2 hrs
Test Coverage
export default function ChevronRight(): JSX.Element {
  return (
    <svg
      xmlns='http://www.w3.org/2000/svg'
      height='24'
      viewBox='0 0 24 24'
      width='24'
    >
      <path d='M0 0h24v24H0z' fill='none' />
      <path d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z' />
    </svg>
  );
}