| 5 | import { Arrow } from "components/icons"; |
| 6 | |
| 7 | export interface ArrowLinkProps { |
| 8 | href: string; |
| 9 | text: string; |
| 10 | className?: string; |
| 11 | external?: boolean; |
| 12 | size?: "small" | "large"; |
| 13 | } |
| 14 | |
| 15 | export default function ArrowLink({ |
| 16 | href, |
nothing calls this directly
no outgoing calls
no test coverage detected