| 3 | import { cn } from '../../lib/utils'; |
| 4 | |
| 5 | interface GutterIconProps { |
| 6 | icon: React.ReactNode; |
| 7 | tooltip: string; |
| 8 | to?: string; |
| 9 | href?: string; |
| 10 | } |
| 11 | |
| 12 | export default function GutterIcon({ icon, tooltip, to, href }: GutterIconProps) { |
| 13 | const location = useLocation(); |
nothing calls this directly
no outgoing calls
no test coverage detected