import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from "../ui/dropdown-menu"; import { Button } from "../ui/button"; import { useTranslation } from "react-i18next"; import { FaFilm } from "react-icons/fa6"; type ActionsDropdownProps = { onDebugReplayClick: () => void; onExportClick: () => void; }; export default function ActionsDropdown({ onDebugReplayClick, onExportClick, }: ActionsDropdownProps) { const { t } = useTranslation(["components/dialog", "views/replay", "common"]); return ( {t("menu.export", { ns: "common" })} {t("title", { ns: "views/replay" })} ); }