diff options
| author | schererleander <leander@schererleander.de> | 2025-06-04 01:24:36 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-06-04 01:24:36 +0200 |
| commit | 6fb8b3f0c2cbe1c158713f2bf1f3c5e848eaf2c2 (patch) | |
| tree | c20936d42caca075ffd2aa0aa7b84abb9bcde510 /src/components/ThemeToggle.tsx | |
| parent | f9295a3f3fb36b3fc04e1616c9344fa81a4fa0e3 (diff) | |
add accessible names to buttons and links
Diffstat (limited to 'src/components/ThemeToggle.tsx')
| -rw-r--r-- | src/components/ThemeToggle.tsx | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/src/components/ThemeToggle.tsx b/src/components/ThemeToggle.tsx index 74dbf57..8e1e2aa 100644 --- a/src/components/ThemeToggle.tsx +++ b/src/components/ThemeToggle.tsx @@ -4,12 +4,26 @@ import { useTheme } from "../hooks/theme"; export default function ThemeToggle() { const { theme, toggleTheme } = useTheme(); return ( - <button type="button" onClick={toggleTheme}> + <button type="button" aria-label="Toogle dark mode" onClick={toggleTheme}> {theme === 'dark' ? ( - <svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"></path></svg> + <svg + className="w-5 h-5" + fill="none" + viewBox="0 0 24 24" + stroke="currentColor" + aria-hidden="true" + > + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"></path></svg> ) : ( - <svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"></path></svg> + <svg + className="w-5 h-5" + fill="none" + viewBox="0 0 24 24" + stroke="currentColor" + aria-hidden="true" + > + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"></path></svg> )} </button> ); -} +}
\ No newline at end of file |
