import { Button } from "@repo/shadcn-ui/components"; import { ChevronLeftIcon } from "lucide-react"; import { useNavigate } from "react-router-dom"; import { useTranslation } from "../../locales/i18n.ts"; export const BackHistoryButton = () => { const { t } = useTranslation(); const navigate = useNavigate(); return ( ); };