MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / CreatureButtons

Function CreatureButtons

components/creature-buttons.tsx:11–23  ·  view source on GitHub ↗
({
  githubProfileUrl,
}: CreatureButtonsProps)

Source from the content-addressed store, hash-verified

9}
10
11export 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 );

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected