(props)
| 30 | } & ({ href: string; to?: never } | { href?: never; to: string }); |
| 31 | |
| 32 | export const InteractiveLink: React.VFC<InteractiveLinkProps> = (props) => { |
| 33 | const as = props.href ? 'a' : Link; |
| 34 | return <Interactive as={as} {...linkStyle} {...props} />; |
| 35 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected