({ href })
| 7 | } |
| 8 | |
| 9 | export const BackButton: FC<BackButtonProps> = ({ href }) => { |
| 10 | return ( |
| 11 | <Link |
| 12 | className="mb-8 flex flex-row items-center text-red-500 no-underline hover:text-red-500/70" |
| 13 | href={href} |
| 14 | > |
| 15 | <ChevronLeft size={17} /> |
| 16 | Back |
| 17 | </Link> |
| 18 | ) |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected