téma váltó funkció gomb implementálása a kódbau

This commit is contained in:
2023-09-21 22:13:37 +02:00
parent 455cf84850
commit 3eb48a80c1
7 changed files with 2339 additions and 754 deletions
+16
View File
@@ -0,0 +1,16 @@
import { RiOpenSourceFill } from 'react-icons/ri'
import { Button } from '@nextui-org/button'
export const Source = () => {
return (
<Button
aria-label="Source Code"
size="sm"
onClick={() =>
window.open('https://github.com/skidoodle/erettsegi-browser')
}
>
<RiOpenSourceFill size={20} />
</Button>
)
}