({
href,
icon: Icon,
children,
}: {
href: string
icon: React.ComponentType<{ className?: string }>
children: React.ReactNode
})
| 73 | } |
| 74 | |
| 75 | function SocialLink({ |
| 76 | href, |
| 77 | icon: Icon, |
| 78 | children, |
| 79 | }: { |
| 80 | href: string |
| 81 | icon: React.ComponentType<{ className?: string }> |
| 82 | children: React.ReactNode |
| 83 | }) { |
| 84 | return ( |
| 85 | <Link href={href} target="_blank" rel="noreferrer" className="group"> |
| 86 | <span className="sr-only">{children}</span> |
| 87 | <Icon className="h-5 w-5 fill-zinc-700 transition group-hover:fill-zinc-900 dark:fill-gray-100 dark:group-hover:fill-zinc-500" /> |
| 88 | </Link> |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | function SmallPrint() { |
| 93 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected