Files
Hayden Bleasel 1c752e3873 Update docs
2025-12-06 23:33:36 -08:00

20 lines
505 B
TypeScript

import { SiGithub } from "@icons-pack/react-simple-icons";
import { github } from "@/geistdocs";
import { Button } from "../ui/button";
export const GitHubButton = () => {
if (!(github.owner && github.repo)) {
return null;
}
const url = `https://github.com/${github.owner}/${github.repo}`;
return (
<Button asChild size="icon-sm" type="button" variant="ghost">
<a href={url} rel="noopener" target="_blank">
<SiGithub className="size-4" />
</a>
</Button>
);
};