Update Appbar with a new logo

This commit is contained in:
Ken Hibino
2021-04-19 06:56:00 -07:00
parent 948d0c761a
commit 72bcbadf72
9 changed files with 41 additions and 41 deletions

View File

@@ -25,3 +25,7 @@ export function useTheme(themePreference: ThemePreference): Theme {
},
});
}
export function isDarkTheme(theme: Theme): boolean {
return theme.palette.type === "dark";
}