({
githubProfileUrl,
}: CreatureButtonsProps)
| 9 | } |
| 10 | |
| 11 | export default function CreatureButtons({ |
| 12 | githubProfileUrl, |
| 13 | }: CreatureButtonsProps) { |
| 14 | return ( |
| 15 | <div className="flex gap-2 px-2"> |
| 16 | <Link |
| 17 | aria-label="Open GitHub profile" |
| 18 | className={buttonVariants({ size: "icon" })} |
| 19 | href={githubProfileUrl} |
| 20 | rel="noopener noreferrer" |
| 21 | target="_blank" |
| 22 | > |
| 23 | <HugeiconsIcon icon={Github} /> |
| 24 | </Link> |
| 25 | </div> |
| 26 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected