import {Theme} from "Frontend/theming/theme"; import {Card, Tooltip} from "@nextui-org/react"; import GameyfinLogo from "Frontend/components/theming/GameyfinLogo"; export default function ThemePreview({theme, mode, isSelected}: { theme: Theme, mode: "light" | "dark", isSelected?: boolean }) { return ( {theme.name?.replace("-", " ")}

} placement="bottom">
); } /* */