mirror of
https://github.com/skidoodle/erettsegi-browser.git
synced 2026-04-27 21:17:36 +02:00
19 lines
348 B
TypeScript
19 lines
348 B
TypeScript
"use client";
|
|
|
|
import { Button } from "@heroui/button";
|
|
import { VscGithubInverted } from "react-icons/vsc";
|
|
|
|
export const Source = () => {
|
|
return (
|
|
<Button
|
|
aria-label="Source Code"
|
|
size="sm"
|
|
onPress={() =>
|
|
window.open("https://github.com/skidoodle/erettsegi-browser")
|
|
}
|
|
>
|
|
<VscGithubInverted size={20} />
|
|
</Button>
|
|
);
|
|
};
|