Browse Source

deno format

pull/520/head
bkimmel 1 year ago
parent
commit
1f109d161f
  1. 10
      src/components/ThemeSwitcher.tsx

10
src/components/ThemeSwitcher.tsx

@ -34,9 +34,15 @@ export default function ThemeSwitcher({
className, className,
)} )}
onClick={toggleTheme} onClick={toggleTheme}
aria-description={'Change current theme'} aria-description={"Change current theme"}
> >
<span data-label className="transition-all block absolute w-full mb-auto mt-auto ml-0 mr-0 text-xs left-0 -top-5 opacity-0 rounded-lg">{firstCharOfPreference.toLocaleUpperCase() + (restOfPreference ?? []).join("")}</span> <span
data-label
className="transition-all block absolute w-full mb-auto mt-auto ml-0 mr-0 text-xs left-0 -top-5 opacity-0 rounded-lg"
>
{firstCharOfPreference.toLocaleUpperCase() +
(restOfPreference ?? []).join("")}
</span>
{themeIcons[preference]} {themeIcons[preference]}
</button> </button>
); );

Loading…
Cancel
Save