konva Stage setup

This commit is contained in:
Oliver Bryan
2026-01-07 15:52:33 +00:00
parent 57978f511a
commit 042af07874
5 changed files with 30 additions and 7 deletions

View File

@@ -23,13 +23,14 @@ function ThemeToggle() {
<Button
type="button"
variant="dummy"
size="none"
className="rounded cursor-pointer"
onClick={() => {
if (!theme || theme === "light") updateTheme("dark");
else updateTheme("light");
}}
>
{theme === "dark" ? <Sun /> : <Moon />}
{theme === "dark" ? <Sun className="size-6" /> : <Moon className="size-6" />}
</Button>
);
}