| 13 | import NextLink from 'next/link'; |
| 14 | |
| 15 | interface ButtonLinkProps { |
| 16 | size?: 'md' | 'lg'; |
| 17 | type?: 'primary' | 'secondary'; |
| 18 | label?: string; |
| 19 | target?: '_self' | '_blank'; |
| 20 | } |
| 21 | |
| 22 | function ButtonLink({ |
| 23 | href, |
nothing calls this directly
no outgoing calls
no test coverage detected