import Link from "next/link"; import { cn } from "@/lib/utils"; import { useTranslations } from "next-intl"; import { ArrowLeftIcon } from "lucide-react"; import { TooltipButton } from "@/components/tooltip-button"; interface BackButtonProps { href: string; className?: string; } export const BackButton = ({ href, className }: BackButtonProps) => { const t = useTranslations(); return ( ); };