| 12 | import { useMemo } from 'react'; |
| 13 | |
| 14 | interface SocialButtonProps { |
| 15 | href: string; |
| 16 | icon: React.ElementType; |
| 17 | label: string; |
| 18 | } |
| 19 | |
| 20 | function SocialButton({ href, icon: Icon, label }: SocialButtonProps) { |
| 21 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected