22. Nutmeg is a hallucinogen.

This commit is contained in:
2023-09-28 21:34:59 +02:00
parent bc51a5cfa9
commit 6fa0520c7b
8 changed files with 64 additions and 64 deletions
+4 -4
View File
@@ -1,16 +1,16 @@
import { RiOpenSourceFill } from 'react-icons/ri'
import { VscGithubInverted } from 'react-icons/vsc'
import { Button } from '@nextui-org/button'
export const Source = () => {
return (
<Button
aria-label="Source Code"
size="sm"
aria-label='Source Code'
size='sm'
onClick={() =>
window.open('https://github.com/skidoodle/erettsegi-browser')
}
>
<RiOpenSourceFill size={20} />
<VscGithubInverted size={20} />
</Button>
)
}