"use client"; import { Button } from "ui/button"; import { ArrowLeft } from "lucide-react"; import Link from "next/link"; interface BackButtonProps extends React.HTMLAttributes { returnUrl: string; title: string; } export function BackButton({ returnUrl, title, ...props }: BackButtonProps) { return ( ); }