import { useTranslation } from "react-i18next"; import { SUPPORT_PAGE } from "~/utils/urls"; import { LinkButton } from "../elements/Button"; import { HeartIcon } from "../icons/Heart"; import { AnythingAdder } from "./AnythingAdder"; import { CommandPalette } from "./CommandPalette"; import styles from "./TopRightButtons.module.css"; export function TopRightButtons({ showSupport, openNavDialog: _openNavDialog, }: { showSupport: boolean; openNavDialog: () => void; }) { const { t } = useTranslation(["common"]); return (