import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; interface StopButtonProps { isDisabled?: boolean; onClick?: () => void; } export function StopButton({ isDisabled, onClick }: StopButtonProps) { const { t } = useTranslation(); return ( ); }