import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; import ThumbsUpIcon from "#/icons/thumbs-up.svg?react"; import ThumbDownIcon from "#/icons/thumbs-down.svg?react"; import ExportIcon from "#/icons/export.svg?react"; import { TrajectoryActionButton } from "#/components/shared/buttons/trajectory-action-button"; interface TrajectoryActionsProps { onPositiveFeedback: () => void; onNegativeFeedback: () => void; onExportTrajectory: () => void; } export function TrajectoryActions({ onPositiveFeedback, onNegativeFeedback, onExportTrajectory, }: TrajectoryActionsProps) { const { t } = useTranslation(); return (